* {
  margin: 0;

  padding: 0;

  outline: 0;

  box-sizing: border-box;
}

.form-control:focus {
  color: #212529;

  background-color: #fff;

  border-color: #ced4da;

  outline: 0;

  box-shadow: 0 0 0 0rem rgb(13 110 253 / 25%);
}

body {
  font-family: "Futura Next Book", sans-serif;

  color: #383838;

  font-size: 16px;
}

body.head-fix {
  padding-top: 80px;
}

a {
  text-decoration: none;
  transition: 0.5s;
}

ul,
ol {
  margin: 0;

  padding: 0;

  list-style: none;
}

.section-padding-heading-hr {
  padding-left: 4% !important;

  padding-right: 4% !important;
}

.section-padding-hr {
  padding-left: 6% !important;

  padding-right: 6% !important;
}

.main {
  padding-top: 30px;

  padding-bottom: 80px;
}



.heading-sectiong {
  display: flex;

  align-items: center;

  justify-content: space-between;
}

.main-heading {
  position: relative;

  font-size: 50px;

  padding-left: 20px;

  display: inline-block;
}

.main-heading::before {
  content: "";

  height: 60px;

  width: 7px;

  background-color: #ee3124;

  position: absolute;

  top: 0;

  left: 0;
}

.blog-filter {
  display: flex;

  width: 50%;

  border-radius: 3px;

  border: 1px solid #383838;

  align-items: center;

  opacity: 0.7;
  z-index: 9;
}

.blog-filter select.form-control {
  width: 40%;

  border: 0;
}

.blog-filter input.form-control {
  background: url("../images/search-icon-dark.png") no-repeat -10px;

  border: 0;

  border-left: 1px solid #383838;

  border-radius: 0;

  padding-top: 10px;

  padding-bottom: 10px;

  background-size: 50px 50px;
}

.blog-filter .form-control:focus {
  box-shadow: 0 0 0 0rem rgb(13 110 253 / 25%);
}

.blogs-wrapper {
  display: flex;

  flex-wrap: wrap;

  gap: 70px 20px;

  justify-content: space-between;

  padding-top: 20px;
}

.blogs-wrapper > div {
  width: calc(33% - 20px);

  border: 0px solid rgba(0, 0, 0, 0.125);

  border-radius: 0.25rem;

  box-shadow: 0px 1px 6px 0px rgba(0, 0, 0, 0.125);
}

.blogs-wrapper .card {
  overflow: hidden;

  height: auto;

  padding-bottom: 20px;
}

.blogs-wrapper .card:hover {
  overflow: hidden;

  height: auto;

  padding-bottom: 20px;
}

.img-wrap {
  position: relative;
}

.posted-on {
  position: absolute;

  bottom: 20px;

  text-transform: uppercase;

  color: #fff;

  left: 20px;

  transition: bottom ease 0.5s;
}

.blogs-wrapper .carda.btn-read {
  position: relative;

  bottom: -20px;

  transition: letter-spacing ease 0.5s;

  display: inline-block;

  border: #383838 1px solid;

  border-radius: 5px;

  color: #383838;

  letter-spacing: 1px;

  padding: 5px 10px 8px;

  border-radius: 2px;

  opacity: 0.7;

  height: 38px;
}

.blogs-wrapper .carda.btn-read::after {
  content: "";

  height: 38px;

  padding: 0;

  background-image: url(../images/forword-arrow.png);

  background-repeat: no-repeat;

  position: absolute;

  right: -30px;

  width: 30px;

  border: #383838 1px solid;

  top: -1px;

  display: flex;

  background-position: center;
}

.blogs-wrapper .card-title {
  font-size: 20px;

  margin-bottom: 25px;

  transition: top ease 0.5s;

  position: relative;

  top: 0;

  font-weight: 600;
}

.blogs-wrapper .card-text {
  height: 0px;

  margin-bottom: 0;

  transition: bottom ease 0.5s;

  position: absolute;

  bottom: -70px;

  width: 80%;
}

.blogs-wrapper .cardimg {
  transition: top ease 0.5s;

  position: relative;

  top: 0;
}

.blogs-wrapper .card-body {
  padding: 1.25rem 1.25rem;

  line-height: normal;
}

.blogs-wrapper .card:hover .card-title {
  top: -70px;
}

.blogs-wrapper .card:hover img {
  top: -70px;
}

.blogs-wrapper .card:hover a.btn-read,
.blogs-wrapper .card a.btn-read:hover {
  bottom: -20px;

  letter-spacing: 1.5px;

  color: #ee3124;

  border-color: #ee3124;

  opacity: 1;

  font-weight: 600;
}

.blogs-wrapper .card:hover a.btn-read::after,
.blogs-wrapper .card a.btn-read:hover::after {
  border-color: #ee3124;
}

.blogs-wrapper .card:hover .card-text {
  display: block;

  bottom: 70px;

  height: 75px;
}

.blogs-wrapper .card:hover .posted-on {
  bottom: 90px;
}

.section-padding-bottom {
  padding-bottom: 50px;
}

.blog-carousel {
  padding-top: 20px;
}

.schedule-btn {
  background-color: #ee3124;

  color: #fff;

  position: relative;

  padding: 8px 15px 11px 15px;

  border-radius: 3px;

  display: inline-block;

  margin-top: 30px;

  margin-left: 20px;

  transition: letter-spacing ease 0.5s;

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;
}

.schedule-btn:hover {
  color: #fff;

  letter-spacing: 1.5px;
}

.schedule-btn span {
  position: absolute;

  top: 0;

  right: -36px;

  width: 40px;

  color: #fff;

  background: #ee3124;

  height: 100%;

  display: flex;

  justify-content: center;

  font-size: 20px;

  align-items: center;

  border-left: 1px solid #fff;

  text-transform: uppercase;

  border-top-right-radius: 3px;

  border-bottom-right-radius: 3px;
}

.pagination {
  justify-content: center;

  margin: 50px 0 0;
}

.page-link {
  padding: 0.275rem 0.755rem;

  margin: 0 15px;

  border: 0;
}

.page-link:first-child,
.page-link:last-child {
  color: #ee3124;
}

.page-link:hover,
.page-link:focus {
  background-color: #ee3124;

  color: #fff;

  border-radius: 5px;

  box-shadow: 0 0 0 0;
}

.page-item.active .page-link {
  z-index: 3;

  color: #fff;

  background-color: #ee3124;

  border-color: #ee3124;

  border-radius: 5px;
}

/* start select*/

.select-hidden {
  display: none;
  visibility: hidden;
  padding-right: 10px;
}
.select {
  cursor: pointer;
  position: relative;
  font-size: 16px;
  color: #000;
  width: 370px;
  margin: 0;
  top: 0;
  float: left;
  background: none;
  height: 44px;
}
.select-styled {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 7px 12px;
  border-right: 1px solid #000;
  color: #636466;
  font-size: 16px;
}

.select-styled:after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  top: 18px;
  right: 17px;
  background: url(../images/icon_new.png) no-repeat;
  width: 13px;
  height: 13px;
  background-size: 100%;
}

.select-styled:active:after,
.select-styled.active:after {
}

.select-options {
  display: none;
  position: absolute;
  top: 104%;
  right: 0;
  left: 0;
  z-index: 999;
  margin: 0;
  padding: 0;
  list-style: none;
  -webkit-box-shadow: 0px 0px 6px -1px rgb(0 0 0 / 51%);
  -moz-box-shadow: 0px 0px 6px -1px rgba(0, 0, 0, 0.51);
  box-shadow: 0px 0px 6px -1px rgb(0 0 0 / 51%);
  background: #fff;
  border-radius: 4px;
  max-height: 240px;
  overflow-y: auto;
}

.select-options li {
  margin: 0;
  padding: 12px 0;
  text-indent: 15px;
  color: #707070;
  border-bottom: 1px solid #0000000d;
  border-radius: 0px;
}
.select-options li:first-child {
  display: none;
}

.select-options li:first-child:hover {
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
}

.select-options li:hover,
.select-options li:first-child {
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
}

.select-options li:hover,
.select-options li:last-child {
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}

.select-options li:hover,
.select-options li.is-selected {
  color: #383838;
  background: #fde8e7;
}

.select-options li[rel="hide"] {
  display: none;
}

.blogs-wrapper .card:hover a.btn-read::after,
.blogs-wrapper .card a.btn-read:hover::after {
  border-color: #383838;
  height: 38px;
  top: 4px;
  opacity: 0.7;
}

.blogs-wrapper {
  padding-top: 25px;
}

.blog-filter {
  opacity: inherit;
}

.blog-filter {
  border: 1px solid #66646380;
}
.select-styled {
  border-right: 1px solid #66646380;
}

.pagination .left_arrow .page-link:hover {
  background: none;
}
.pagination .next_arrow .page-link:hover {
  background: none;
}

.pagination .left_arrow .page-link:focus {
  background: none;
}
.pagination .next_arrow .page-link:focus {
  background: none;
}

.pagination .left_arrow .page-link span img {
  width: 50px;
}
.pagination .next_arrow .page-link span img {
  width: 50px;
}

.pagination .left_arrow {
  margin-top: -8px;
  padding: 0;
}

.pagination .left_arrow a {
  padding: 0;
  margin: 0;
  margin-right: 20px;
}

.pagination .next_arrow {
  margin-top: -8px;
  padding: 0;
}

.pagination .next_arrow a {
  padding: 0;
  margin: 0;
  margin-left: 20px;
}

.brake_text {
  display: block;
}
.main-heading {
  display: block;
}

.select-hidden {
  display: none;
  visibility: hidden;
  padding-right: 10px;
}
.select {
  cursor: pointer;
  position: relative;
  font-size: 16px;
  color: #000;
  width: 370px;
  margin: 0;
  top: 0;
  float: left;
  background: none;
  height: 44px;
}
.select-styled {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 7px 12px;
  border-right: 1px solid #000;
  color: #636466;
  font-size: 16px;
}

.select-styled:after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  top: 18px;
  right: 17px;
  background: url(../images/icon_new.png) no-repeat;
  width: 13px;
  height: 13px;
  background-size: 100%;
}
.country-select .btn-select::after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  right: 15px;
  background: url(../images/icon_new.png) no-repeat;
  width: 13px;
  height: 13px;
  background-size: 100%;
}

.select-styled:active:after,
.select-styled.active:after {
}
.country-picker {
  display: none;
}

.select-options {
  display: none;
  position: absolute;
  top: 104%;
  right: 0;
  left: 0;
  z-index: 999;
  margin: 0;
  padding: 0;
  list-style: none;
  -webkit-box-shadow: 0px 0px 6px -1px rgb(0 0 0 / 51%);
  -moz-box-shadow: 0px 0px 6px -1px rgba(0, 0, 0, 0.51);
  box-shadow: 0px 0px 6px -1px rgb(0 0 0 / 51%);
  background: #fff;
  border-radius: 4px;
}
.country-dropdown {
  display: none;
  position: absolute;
  top: 104%;
  right: 0;
  left: 0;
  z-index: 999;
  margin: 0;
  padding: 0;
  list-style: none;
  -webkit-box-shadow: 0px 0px 6px -1px rgb(0 0 0 / 51%);
  -moz-box-shadow: 0px 0px 6px -1px rgba(0, 0, 0, 0.51);
  box-shadow: 0px 0px 6px -1px rgb(0 0 0 / 51%);
  background: #fff;
  border-radius: 4px;
}

.select-options li,
.country-dropdown li {
  margin: 0;
  padding: 12px 0;
  text-indent: 15px;
  color: #707070;
  border-bottom: 1px solid #0000000d;
  border-radius: 0px;
}

.select-options li:first-child:hover,
.country-dropdown li:first-child:hover {
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
}

.select-options li:hover,
.select-options li:first-child,
.country-dropdown li:hover,
.country-dropdown li:first-child {
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
}

.select-options li:hover,
.select-options li:last-child,
.country-dropdown li:last-child {
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}

.select-options li:hover,
.select-options li.is-selected,
.country-dropdown li:hover {
  color: #383838;
  background: #fde8e7;
}

.select-options li[rel="hide"] {
  display: none;
}

* {
    margin: 0;

    padding: 0;

    outline: 0;

    box-sizing: border-box;
  }

  .form-control:focus {
    color: #212529;

    background-color: #fff;

    border-color: #ced4da;

    outline: 0;

    box-shadow: 0 0 0 0rem rgb(13 110 253 / 25%);
  }

  body {
    font-family: 'Futura Next Book';

    color: #383838;

    font-size: 16px;
  }

  body.head-fix {
    padding-top: 80px;
  }

  a {
    text-decoration: none;
    transition: 0.5s;
  }

  ul,
  ol {
    margin: 0;

    padding: 0;

    list-style: none;
  }
  .relative-box {
    position: relative !important;
  }
  .section-padding-heading-hr {
    padding-left: 4% !important;

    padding-right: 4% !important;
  }

  .section-padding-hr {
    padding-left: 6% !important;

    padding-right: 6% !important;
  }

  .main {
    padding-top: 30px;

    padding-bottom: 80px;
  }

  .breadcrumb-item a {
    color: #065BAA;

    opacity: 0.6;
  }

  .breadcrumb-item.active {
    color: #065BAA;
    opacity: 0.8;
  }
  .breadcrumb-item + .breadcrumb-item {
    padding-left: 8px;
  }

  .breadcrumb-item + .breadcrumb-item::before {
    padding-right: 0.5rem;
    color: #6c757d;
    content: "";
    /* background-image: url(../images/forword-arrow.png); */
    background-image: url(../images/breadcrumb-arrow.png);
    background-repeat: no-repeat;
    width: 30px;
    height: 22px;
    display: inline-block;
    margin-top: 2px;
    background-size: 24px;
    margin-right: 7px;
    background-position: 0 center;
  height: 100%;
  }
  .ecommerce nav .breadcrumb-item + .breadcrumb-item::before {
    background-image: url(../images/forword-arrow.png);
  }
  .ecommerce nav  .breadcrumb-item.active {
    color: #fff;
  }

  /* .breadcrumb-item+.breadcrumb-item.active::before{

      background-image: url(../images/forword-arrow.png);

  } */

  .heading-sectiong {
    display: flex;

    align-items: center;

    justify-content: space-between;
  }

  .main-heading {
    position: relative;

    font-size: 50px;

    padding-left: 20px;

    display: inline-block;
    font-stretch: condensed;
  }

  .main-heading::before {
    content: "";

    height: 60px;

    width: 7px;

    background-color: #ee3124;

    position: absolute;

    top: 0;

    left: 0;
  }

  .blog-filter {
    display: flex;

    width: 50%;

    border-radius: 3px;

    border: 1px solid #383838;

    align-items: center;

    opacity: 0.7;

    z-index: 9;
  }

  .blog-filter select.form-control {
    width: 40%;

    border: 0;
  }

  .blog-filter input.form-control {
    background: url("../images/search-icon-dark.png") no-repeat -3px;

    border: 0;

    border-left: 1px solid #383838;

    border-radius: 0;

    padding-top: 10px;

    padding-bottom: 10px;

    background-size: 50px 50px;
  }

  .blog-filter .form-control:focus {
    box-shadow: 0 0 0 0rem rgb(13 110 253 / 25%);
  }

  .blogs-wrapper {
    display: flex;

    flex-wrap: wrap;

    gap: 100px 20px;

    justify-content: space-between;

    padding-top: 20px;
  }

  .blogs-wrapper > div {
    width: calc(33% - 20px);

    border: 0px solid rgba(0, 0, 0, 0.125);

    border-radius: 0.25rem;

    box-shadow: 0px 3px 15px 0px rgb(0 0 0 / 9%);
  }
  .blogs-wrapper.card_industries > div {
    width: calc(30%);
  }
  .recent-blogs .owl-carousel {
    margin-left: -10px;
    margin-right: -10px;
  }
  .recent-blogs .owl-item {
    padding: 10px;
  }


  .section-padding-bottom {
    padding-bottom: 0px;
  }

  .blog-carousel {
    padding-top: 20px;
  }

  .schedule-btn {
    background-color: #ee3124;

    color: #fff;

    position: relative;

    padding: 8px 15px 11px 15px;

    border-radius: 3px;

    display: inline-block;

    margin-top: 30px;

    margin-left: 20px;

    transition: letter-spacing ease 0.5s;

    border-top-right-radius: 0;

    border-bottom-right-radius: 0;
  }

  .schedule-btn:hover {
    color: #fff;

    letter-spacing: 1.5px;
  }

  .schedule-btn span {
    position: absolute;

    top: 0;

    right: -36px;

    width: 40px;

    color: #fff;

    background: #ee3124;

    height: 100%;

    display: flex;

    justify-content: center;

    font-size: 20px;

    align-items: center;

    border-left: 1px solid #fff;

    text-transform: uppercase;

    border-top-right-radius: 3px;

    border-bottom-right-radius: 3px;
  }

  .pagination {
    justify-content: center;

    margin: 50px 0 0;
  }

  .page-link {
    padding: 0.275rem 0.755rem;

    margin: 0 15px;

    border: 0;
  }

  .page-link:first-child,
  .page-link:last-child {
    color: #ee3124;
  }

  .page-link:hover,
  .page-link:focus {
    background-color: #ee3124;

    color: #fff;

    border-radius: 5px;

    box-shadow: 0 0 0 0;
  }

  .page-item.active .page-link {
    z-index: 3;

    color: #fff;

    background-color: #ee3124;

    border-color: #ee3124;

    border-radius: 5px;
  }

  /* start select*/

  .select-hidden {
    display: none;

    visibility: hidden;

    padding-right: 10px;
  }

  .select {
    cursor: pointer;
    position: relative;
    font-size: 16px;
    color: #000;
    width: 370px;
    margin: 0;
    top: 0;
    float: left;
    background: none;
    height: 44px;
  }
  .select-styled {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 7px 12px;
    border-right: 1px solid #000;
    color: #636466;
    font-size: 16px;
  }

  .select-styled:after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    top: 18px;
    right: 17px;
    background: url(../images/icon_new.png) no-repeat;
    width: 13px;
    height: 13px;
    background-size: 100%;
  }
  .country-select .btn-select::after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    right: 15px;
    background: url(../images/icon_new.png) no-repeat;
    width: 13px;
    height: 13px;
    background-size: 100%;
  }

  .select-styled:active:after,
  .select-styled.active:after {
  }
  .country-picker {
    display: none;
  }

  .select-options {
    display: none;
    position: absolute;
    top: 104%;
    right: 0;
    left: 0;
    z-index: 999;
    margin: 0;
    padding: 0;
    list-style: none;
    -webkit-box-shadow: 0px 0px 6px -1px rgb(0 0 0 / 51%);
    -moz-box-shadow: 0px 0px 6px -1px rgba(0, 0, 0, 0.51);
    box-shadow: 0px 0px 6px -1px rgb(0 0 0 / 51%);
    background: #fff;
    border-radius: 4px;
  }
  .country-dropdown {
    display: none;
    position: absolute;
    top: 104%;
    right: 0;
    left: 0;
    z-index: 999;
    margin: 0;
    padding: 0;
    list-style: none;
    -webkit-box-shadow: 0px 0px 6px -1px rgb(0 0 0 / 51%);
    -moz-box-shadow: 0px 0px 6px -1px rgba(0, 0, 0, 0.51);
    box-shadow: 0px 0px 6px -1px rgb(0 0 0 / 51%);
    background: #fff;
    border-radius: 4px;
  }

  .select-options li,
  .country-dropdown li {
    margin: 0;
    padding: 12px 0;
    text-indent: 15px;
    color: #707070;
    border-bottom: 1px solid #0000000d;
    border-radius: 0px;
  }

  .select-options li:first-child:hover,
  .country-dropdown li:first-child:hover {
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
  }

  .select-options li:hover,
  .select-options li:first-child,
  .country-dropdown li:hover,
  .country-dropdown li:first-child {
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
  }

  .select-options li:hover,
  .select-options li:last-child,
  .country-dropdown li:last-child {
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
  }

  .select-options li:hover,
  .select-options li.is-selected,
  .country-dropdown li:hover {
    color: #383838;
    background: #fde8e7;
  }

  .select-options li[rel="hide"] {
    display: none;
  }

  .card:hover a.btn-read::after,
  .card a.btn-read:hover::after {
    border-color: #383838;

    height: 38px;

    top: 4px;

    opacity: 0.7;
  }

  .blogs-wrapper {
    padding-top: 25px;
  }

  .blog-filter {
    opacity: inherit;
  }

  .blog-filter {
    border: 1px solid #66646380;
  }

  .select-styled {
    border-right: 1px solid #66646380;
  }

  .pagination .left_arrow .page-link:hover {
    background: none;
  }

  .pagination .next_arrow .page-link:hover {
    background: none;
  }

  .pagination .left_arrow .page-link:focus {
    background: none;
  }

  .pagination .next_arrow .page-link:focus {
    background: none;
  }

  .pagination .left_arrow .page-link span img {
    width: 50px;
  }

  .pagination .next_arrow .page-link span img {
    width: 50px;
  }

  .pagination .left_arrow {
    margin-top: -8px;

    padding: 0;
  }

  .pagination .left_arrow a {
    padding: 0;

    margin: 0;

    margin-right: 20px;
  }

  .pagination .next_arrow {
    margin-top: -8px;

    padding: 0;
  }

  .pagination .next_arrow a {
    padding: 0;

    margin: 0;

    margin-left: 20px;
  }

  .brake_text {
    display: block;
  }

  .main-heading {
    display: block;
  }

  /* start detail page */

  .blog_banner {
    display: block;
  }

  .blog_banner img {
    width: 100%;
  }

  .date_media_sec {
    display: flex;

    justify-content: space-between;

    padding: 25px 0;
  }

  .date_media_sec .left_date_sec {
    color: #383838;
    font-size: 18px;
    display: block;
    width: 50%;
  }

  .date_media_sec .right_media_sec {
    width: 50%;

    display: flex;

    justify-content: end;

    align-items: center;
  }

  .date_media_sec .right_media_sec .media_title {
    color: #383838;

    font-size: 16px;

    font-weight: 600;

    margin-right: 20px;
  }

  .date_media_sec .right_media_sec .social_media {
    display: block;
  }

  .date_media_sec .right_media_sec .social_media ul {
    list-style: none;

    padding: 0;

    display: flex;

    justify-content: space-between;

    gap: 10px;
  }

  .date_media_sec .right_media_sec .social_media ul li {
  }

  .date_media_sec .right_media_sec .social_media ul li a {
    width: 45px;

    height: 45px;

    border-radius: 50px;

    border: 1px solid #636466;

    display: flex;

    align-items: center;

    justify-content: center;

    transition: 0.5s;
  }

  .hover_icon {
    display: none;
  }

  .date_media_sec .right_media_sec .social_media ul li a img {
    width: 35px;
  }

  .date_media_sec .right_media_sec .social_media ul li a:hover {
    background: #ee3124;

    border-color: #ee3124;
  }

  .date_media_sec .right_media_sec .social_media ul li a:hover .without_hover {
    display: none;
  }

  .date_media_sec .right_media_sec .social_media ul li a:hover .hover_icon {
    display: block;
  }

  .blog_detail_content {
    display: block;

    margin-bottom: 70px;
  }

  .blog_detail_content h2 {
    color: #383838;

    margin: 0;

    font-size: 35px;

    margin-top: 25px;
  }

  .blog_detail_content h3 {
    color: #383838;

    margin: 0;

    font-size: 30px;

    margin-top: 25px;
  }

  .blog_detail_content h4 {
    color: #383838;

    margin: 0;

    font-size: 25px;

    margin-top: 25px;
  }

  .blog_detail_content h5 {
    color: #383838;

    margin: 0;

    font-size: 20px;

    margin-top: 25px;
  }

  .blog_detail_content ul {
    list-style: none;

    padding: 0;

    margin-top: 25px;
  }

  .blog_detail_content ul li {
    display: block;

    margin: 0;

    color: #383838;

    font-size: 16px;

    margin: 10px 0;

    padding-left: 20px;

    position: relative;
  }

  .blog_detail_content ul li::before {
    content: "";

    width: 7px;

    display: block;

    height: 7px;

    background: #ee3124;

    position: absolute;

    left: 0;

    top: 10px;

    border-radius: 50%;
  }

  .blog_detail_content p {
    display: block;

    margin: 0;

    color: #383838;

    font-size: 16px;

    margin-top: 25px;
  }

  .blog_email_part {
    display: flex;

    justify-content: space-between;

    width: 555px;

    margin-top: 40px;
  }

  .blog_email_part .form_group {
    width: 340px;
  }

  .blog_email_part .form_group input {
    width: 100%;

    height: 55px;

    box-shadow: 0px 1px 6px 0px rgb(0 0 0 / 5%);

    border: 1px solid #bfbfbf;

    border-radius: 5px;

    padding-left: 20px;
  }

  .blog_email_part .form_group_btn {
    width: 180px;
  }

  .blog_email_part .form_group_btn button {
    height: 55px;

    border: none;

    background: #ee3124;

    color: #fff;

    padding: 0px 57px 0px 15px;

    vertical-align: middle;

    position: relative;

    transition: 0.5s;

    display: inline-block;

    text-align: left;

    font-size: 18px;

    border-radius: 5px;
  }

  .blog_email_part .form_group_btn button:hover {
    letter-spacing: 1.5px;
  }

  .blog_email_part .form_group_btn button span {
    position: absolute;

    top: 0;

    right: -36px;

    width: 57px;

    color: #fff;

    background: #ee3124;

    height: 100%;

    display: flex;

    justify-content: center;

    font-size: 20px;

    align-items: center;

    border-left: 1px solid #fff;

    text-transform: uppercase;

    border-top-right-radius: 5px;

    border-bottom-right-radius: 5px;
  }

  .social_media_fixed {
    display: inline-block;

    width: 50px;

    height: 50px;

    text-align: center;

    border-radius: 4px;

    position: fixed;

    top: 30%;

    right: 20px;

    transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;

    opacity: 0;

    visibility: hidden;

    z-index: 1000;
  }

  .social_media_fixed ul {
    list-style: none;
    padding: 0;
  }

  .social_media_fixed ul li {
    display: block;

    margin-bottom: 11px;
  }

  .social_media_fixed ul li a {
    width: 45px;

    height: 45px;

    border-radius: 50px;

    border: 1px solid #636466;

    display: flex;

    align-items: center;

    justify-content: center;

    transition: 0.5s;
  }

  .social_media_fixed ul li a img {
    width: 35px;
  }

  .social_media_fixed ul li a .hover_icon {
    display: none;
  }

  .social_media_fixed ul li a .without_hover {
    display: block;
  }

  .social_media_fixed ul li a:hover {
    background: #ee3124;

    border-color: #ee3124;
  }

  .social_media_fixed ul li a:hover .hover_icon {
    display: block;
  }

  .social_media_fixed ul li a:hover .without_hover {
    display: none;
  }

  .show {
    opacity: 1;

    visibility: visible;
  }

  /* end detail page */

  /* start industries page css */

  .industries_banner_main ,.banner{
    display: block;
    position: relative;
  }

  .banner::before{
    content: '';
    background-color: #3f51b500;
    background-image: linear-gradient(266deg, transparent, #24242dcf);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
  }

  .indurtries_banner_design {
    position: relative;
  }
  .industries_banner_main .slider_image, .banner .bannerWrap  {
    display: block;
    position: relative;
  }
  .industries_banner_main .slider_image img,  .banner .bannerWrap  img {
    width: 100%;
  }
  .industries_banner_main .slider_image::before,  .banner .bannerWrap  img::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(
      90deg,
      rgba(28, 28, 30, 0.9164040616246498) 35%,
      rgba(255, 255, 255, 0) 70%
    );
    opacity: 60%;
  }

  .ecommerce nav{
    position: absolute;
    top:20px;
    z-index: 2;
  }
  .ecommerce nav li a {
    opacity: 1;
    color:#fff
  }

  .banner-content {
    position: absolute;
    top: 30%;
    width: 100%;
    z-index: 2;
  }
  .single-banner .banner-content {
    top: 37%;
  }
  .banner-content .schedule-btn{
    margin-left: 0;
  }
  .banner-content h2 {
    position: relative;
    color: #fff;
    left: 0;
    top: 0;
  }
  .industries_banner_main .slider_image .main-heading {
    position: relative;
    color: #fff;
    left: 0;
    top: 0
  }
  .industries_banner_main .ecommerce .slider_image .main-heading {
    position: relative;
    color: #fff;
    left: 0;
    top: 0;
  }
  .industries_banner_main .ecommerce .slider_image .banner-text {
    position: relative;
    color: #fff;
    font-size: 24px;
    width: 80%;
    margin-top: 35px;
  }

  .banner-text {
    position: relative;
    color: #fff;
    font-size: 24px;
    width: 80%;
    margin-top: 35px;
  }

  .industries_banner_main .owl-dots {
    position: absolute;
    bottom: 134px;
    left: 0;
    right: 0;
    /* top: 80%; */
    text-align: left;
    left: 165px;
  }

  .industries_banner_main .owl-dots .owl-dot {
    width: 15px;
    height: 15px;
    padding: 0 !important;
    margin: 0 10px;
  }

  .industries_banner_main .owl-dots .owl-dot span {
    width: 100%;
    height: 100%;
    background: #fff;
    margin: 0;
    opacity: 0.5;
  }
  .industries_banner_main .owl-dots.active .owl-dot span {
    background: #ee3124;
  }

  .industries_banner_main {
    position: relative;
  }

  .industries_cntent {
    text-align: center;
    margin-bottom: 80px;
    padding-top: 11px;
  }

  .industries_cntent p {
    text-align: left;
    margin: 0;
    color: #38383880;
    font-size: 24px;
    display: block;
  }

  .industries_cntent a {
    margin-left: 0;
  }

  .contact {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .contactWrap {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
  }
  .contactWrap .contact-left {
    width: calc(35%);
  }
  .contactWrap .contact-right {
    width: calc(65% - 30px);
  }
  .wrap-items {
    display: flex;
    flex-wrap: wrap;
    gap: 33px 20px;
    margin-top: 10px
  }
  .fielsWrap {
    margin-bottom: 0px;
    width: calc(50% - 10px);
    display: flex;
  }
  .fielsWrap.fullWidth {
    width: calc(100%);
  }

  .fielsWrap .select {
    width: 100%;
    border: 1px solid #38383850;
    font-size: 16px;
    border-radius: 0.25rem;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .grouped.fielsWrap .select {
    width: 120px;
  }
  .grouped.fielsWrap .select:last-child {
    width: 100%;
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-left: 0;
  }

  .fielsWrap .form-control {
    border: 1px solid #38383850;
    font-size: 16px;
    padding: 9px 12px;
  }

  .fielsWrap .select-styled {
    border: 0;
  }
  .border-left-none {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-left: 0;
  }
  .directon-column {
    flex-direction: column;
  }
  .term-text {
    font-size: 14px;
    line-height: 14px;
  }
  .contact .form-check-input {
    width: 18px;
    height: 18px;
    border-radius: 0;
  }
  .contact .form-check-input:focus {
    box-shadow: 0 0 0 0 #000;
  }
  .captcha img {
    max-width: 100%;
  }

  .card_industries .card a.btn-read {
    min-width: inherit;
    padding: 0px 80px 0px 15px;
    display: table-cell;
    vertical-align: middle;
  }

  .card_industries .card a.btn-read:hover {
    min-width: inherit;
  }

  .explore {
    display: flex;
    height: 44px;
    align-items: center;
    background-color: #fff;
    color: #383838;
    padding: 0 15px;
    font-size: 18px;
    border-radius: 5px;
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
    transition: all ease 0.4s;
  }
  .explore:hover {
    color: #ee3124;
  }


  .submitbutton {
    margin-top: 16px;
    margin-left: 40%;
  }
  button.explore {
    border: 0;
    background-color: #ee3124;
    color: #ffffff;
    position: relative;
    left: 0;
    font-weight: 100;
  }
  button.explore:hover {
    color: #fff;
    opacity: 1;
    font-weight: 600;
  }
  button.explore span {
    background-color: #ee3124;
    padding: 8px 18px 9px;
    position: absolute;
    right: -45px;
    border-bottom-right-radius: 5px;
    border-top-right-radius: 5px;
    display: block;
  }
  button.explore:hover::after {
    height: calc(100% - 6px);
  }
  button.explore a {
    display: flex;
    height: 100%;
    color:#fff;
    align-items: center;
  }

  .explore img {
    background-color: #fff;
    padding: 10px;
    position: absolute;
    right: -45px;
    border-bottom-right-radius: 5px;
    border-top-right-radius: 5px;
  }
  .small .card-title {
    position: absolute;
    bottom: 68px;
    left: 0px;
    transform: rotate(-90deg);
    color: #fff;
    width: 115px;
  }
  .small:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    background: #000;
    border-radius: 7px;
    opacity: 0.6;
  }
  .expand:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    background: #000;
    border-radius: 7px;
    opacity: 0.3;
  }

  /* end industries page css */
  .owl-stage {
    transition: all 2s ease 0s !important;
  }

  .blogs-wrapper.card_industries {

  }
  .blogs-wrapper.card_industries {
    padding-top: 60px;
  }

  /* sticky social */
  .sticy-social {
    position: fixed;
    bottom: 40px;
    right: 31px;
    z-index: 99;
  }
  .sticy-social ul li a {
    display: flex;
    border-radius: 50%;
    background-color: #fff;
    border: 1px solid #f1f1f1;
    margin-top: 13px;
    width: 55px;
    position: relative;
    align-items: center;
    color: #383838;
  }
  .sticy-social ul li a .title {
    position: absolute;
    right: -100px;
    background-color: #fff;
    border:1px solid #f1f1f1;
    font-size: 12px;
    border-radius: 3px;
    padding: 1px 3px;
    opacity: 0;
    transition:  opacity ease 0.4s;

  }
  .sticy-social ul li a:hover .title {
    position: absolute;
    right: calc(50px);
    opacity: 1;
  }
  .sticy-social ul li a img{
    border-radius: 50%;
    max-width: 100%;
  }



  .progress {
    position: fixed;
    top: 80px;
    left: 0;
    height: 4px;
    background-color: #EE3124;
    transition: all linear 0.1s;
    min-width: 0%;
    z-index: 9
  }

  /* challenges section start */

  .challenges {
    padding-top: 80px;
    padding-bottom: 140px;
    background-image: url('../images/challenges-section.png');
    background-repeat: no-repeat;
    object-fit: cover;
    background-size: 100%;
  }
  .section-text {
    width: 53%;
  }
  .section-text p{
    font-size: 24px;
    margin-bottom: 0;
    line-height: 28px;
    color: #38383880;
  }
  .owl-carousel.off
   {
    display: flex;
   }
   .owl-carousel.off::-webkit-scrollbar {
    display: block;
   }

   .news-list .owl-carousel.off {
    display: flex;
    width: 100%;
    gap: 20px;
    flex-wrap: wrap;
    overflow-y: auto;
}
   .challengesWrap {
    margin-top: 350px;
    gap: 20px;
  }
   .challengesWrap .item {
    width: calc(20% - 8px);
    position: relative;
    background-color: #fff;
    padding: 60px 60px 0px 30px;
    min-height: 240px;
    box-shadow: 0px 3px 50px #00000029;
    border-radius: 5px;
  }
  .challengesWrap .item  h4 {
    font-size: 26px;
  }
   .cnumber {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    font-weight: bold;
    background: #EE3124;
    color: #fff;
    height: 64px;
    width: 64px;
    border: 2px solid #fff;
    border-radius: 50%;
    top: -34px
  }

  /* automation destribution sect start */
  .accordionWrap {
    margin-top: 70px;
  }
  .accordion-list {
    position: relative;
    width: 100%;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .accordion-list li {
    margin-bottom: 35px;
  }
  .accordion-list li:last-child{
    margin-bottom: 0;
  }
  .accordion-list li h4 {
    width: 32.953%;
    font-size: 34px;
    color: #383838;
    opacity: 0.5;
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    border-bottom: 1px solid #38383850;
    padding-bottom: 40px;

  }
  .accordion-list li:last-child h4 {
    border-bottom: 0px solid #38383850;
  }
  .accordion-list li.active h4 {
    color: #EE3124;
    opacity: 1;
  }
  .accordion-list li h4::after {
    position: absolute;
    content: '';
    background-image: url('../images/down_arrow.png');
    background-repeat: no-repeat;
    background-size: 100%;
    width: 21px;
    height: 21px;
    right: 0;
  }
  .accordion-list li.active h4::after {
    background-image: url('../images/up_arrow.png');
  }

  .accordion-list li .accordion-left {
    width: 32.953%;
    font-size: 20px;
  }
  .accordion-list li .accordion-left p {
    font-size: 20px;
    padding-right: 30px;
    line-height: 22px;
  }
  .accordion-list li.active .accordion-left {
    border-bottom: 1px solid #38383850;
    padding-bottom: 25px;
  }
  .accordion-list li .accordion-right {
    width: 59.695%;
    position: absolute;
    right: 0;
    top:0
  }
  .accordion-list li .accordion-right .owl-carousel.off {
    display: flex;
    gap: 15px;
  }
  .accordion-list li .accordion-right .item {
    max-width: 303px;
    width: 100%;
  }
  .accordion-list li .accordion-right .item {
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: baseline;
    overflow: hidden;
    transition: all ease 0.5s;
  }
  .accordion-list li .accordion-right .item img{
    border-radius: 10px;
    transform: scale(1);
    max-width: 100%;
    transition: top ease 0.5s;
    position: relative;
    top: 0
  }
  .accordion-list li .accordion-right .item:hover img{
    border-radius: 10px;
    transform: scale(1);
    max-width: 100%;
    top: -40px;
  }
  .accordion-list li .accordion-right .item p {
    position: absolute;
    bottom: 30px;
    padding-left: 30px;
    padding-right: 30px;
    font-size: 26px;
    color: #fff;
    transition: all ease 0.4s;
    display: none;
    line-height: 34px;
  }
  .accordion-list li .accordion-right .item:hover p{
    display: block;
  }
  .hoverOverlay {
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: #000;
    background-color: transparent; /* For browsers that do not support gradients */
    background-image: linear-gradient(0deg, black, transparent);
    opacity: 1;
    border-radius: 10px;
    transition: all ease 0.4s;
    display: none
  }
  .accordion-list li .accordion-right .item:hover .hoverOverlay {
    display: block;
  }

  /* why addverb section */

  .whyaddverb {
    background-image: url('../images/why_addverb.png');
    background-color: #f7f7f7;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 150px;
    padding-bottom: 90px;
  }
  .wrapwhyadd  {
     display: flex;
     flex-wrap: wrap;
     gap: 0;
     justify-content: space-between;
  }
  .wrapwhyadd > div {
      width: 50%;
  }
  .wrapwhyadd > div:first-child {
    width: 40%;
  }
  .wrapwhyadd > div.btnWrap {
  width: 100%;
  }
  .contsect .item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .contsect .item > div {
    width: 43.34%;
  }

  .itemContent {
    border-top: 3px solid #EE3124;
    padding-top: 10px;
    margin-top: 10px;
    margin-bottom: 28px;
  }
  .itemContent h3 {
    font-size: 21px;
  }
  .itemContent p {
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 18px;
    color:#38383880
  }
  .wrapwhyadd .owl-dots {
    display: flex;
    justify-content: center;
  }
  .wrapwhyadd .owl-dots button span {
    width: 12px;
    height: 12px;
    background-color: #63646650;
    border-radius: 50%;
    display: block;
    margin: 0 10px;
  }
  .wrapwhyadd .owl-dots button.active span {
    background-color: #EE3124;
  }
  .btnWrap {
    text-align: center;
  }



  /* case studies section */
  .caseStudies {
    padding-top: 75px;
    padding-bottom: 50px;
    background-color: transparent; /* For browsers that do not support gradients */
    background-image: linear-gradient(0deg, transparent, #f9f9f9);

  }
  .sectionDesc {
    margin-top: 20px;
  }
  .sectionDesc p {
    font-size: 24px;
    margin-bottom: 0;
    color: #38383880;
  }
  .caseWrap {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    justify-content: space-between;
  }
  .caseWrap > div {
    width: 74.6%;
    height: auto;

  }
  .caseWrap > div:last-child {
    width: 20.6%
  }
  .cases {
    box-shadow: 55px 0px 33px -34px #065baa29;
    padding-top: 50px;
    padding-right: 75px;
  }
  .cases .item {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    align-items: center;
  }
  .casebox {
    width: 29.5%;
    height: 424px;
  }
  .casebox .head {
    background-color: #EE3124;
    border-top-left-radius: 7px;
    padding-left: 40px;
    height: 68px;
  }
  .casebox .head h4 {
    color: #EFEFEF;
    font-size: 34px;
    font-weight: bold;
    padding: 11px 0px;
    margin: 0;
  }
  .casebox .body {
    background-color: #eaeaea;
    padding-left: 40px;
    padding-top: 40px;
    padding-bottom: 40px;
    padding-right: 40px;
    position: relative;
    height: calc(100% - 68px);
  }
  .casebox .body h5 {
    font-size: 26px;
      font-weight: 600;
      margin-bottom: 16px;
  }
  .casebox .body p {
    font-size: 18px;
    line-height: 25px;
  }
  .casebox .body .readMore {
    font-size: 20px;
    bottom: 40px;
    position: absolute;
    color: #ee3124;
  }
  .videobox {
    width: 70.5%;
    position: relative;
    display: flex;
      align-items: center;
      justify-content: center;
  }
  .videobox h5 {
    position: absolute;
    top: 20px;
    left: 26px;
    color: #fff;
    display: none;
  }
  .videobox img , .videobox video {
    max-width: 100%;
    border-radius: 7px;
  }
  .videobox img.playBtn{
    position: absolute;
    width: auto;
    z-index: 1;
    cursor: pointer;
  }
  .cases .owl-dots {
    width: 70.5%;

  }
  .cases .owl-dots {
    width: 70.5%;
    margin-left: auto;
    text-align: center;
    margin-top: 18px;
    margin-right: 0;
  }
  .owl-dots {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .cases .owl-dots button span,.owl-dots button span {
    width: 18px;
    height: 18px;
    background-color: #b1b1b2;
    border-radius: 50%;
    margin: 0 12px;
    display: inline-block;
  }
  .cases .owl-dots button.active span,
  .owl-dots button.active span {
    background-color: #ee3124;
  }
  .caseWrap .latest {
    padding-top: 50px;
  }
  .relatedBlogs {
    margin-top: 45px
  }
  .overlayWithImg {
    position: relative;
  }
  .overlayWithImg img {
    position: relative;
    z-index: 0;
    border-radius: 7px;
    max-width: 100%;
  }
  .overlayWithImg .imgOverlay {
    position: absolute;
    z-index: 1;
    background-color: #EE3124;
    opacity: 0.3;
    border-radius: 7px;
    width: 100%;
    height: 100%;
  }
  .overlayWithImg .overlayText {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    display: inline-block;
    padding: 5px;
    font-size: 18px;
    background-color: #1c1c1e;
    color: #fff;
    font-size: 22px;
    border-top-right-radius: 7px;
    border-bottom-left-radius: 7px;
    width: 58%;
    text-align: center;
  }


  /* other industry section  */
  .otherIndustry {
    padding-top: 20px;
    padding-bottom: 100px;
  }
  .otherIndCarousel {
    margin-top: 45px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
  }
  .otherIndCarousel  .item {
    width: calc(25% - 22.5px);
  }
  .otherIndCarousel .item {
    box-shadow: 0px 3px 15px 0px rgb(0 0 0 / 9%);
    border: 0px solid rgba(0, 0, 0, 0.125);
    border-radius: 5px;
    min-height: 566px;
    display: flex;
    flex-flow: column;
  }
  .otherIndCarousel .item .itemImage {
    flex: 0 auto;
  }
  .otherIndCarousel .item img {
    max-width: 100%;
    border-radius: 5px;
  }
  .otherIndCarousel .item .itemBody {
    padding: 15px 30px;
    flex: 1 auto;
    position: relative;
  }
  .otherIndCarousel .item .itemBody h3{
    font-size: 30px;
    margin-bottom: 15px;
    font-weight: 600;
  }
  .otherIndCarousel .item .itemBody p {
    font-size: 24px;
    line-height: 30px;
    color:#38383880
  }
  .readBtnWrap {
    position: absolute;
    bottom: 30px;
    border: #38383850 1px solid;
      border-radius: 5px;
      height: 68px;
  }
  .readBtnWrap:hover {

    border: #EE3124 1px solid;
  }
  .readBtnWrap a.btn-read {
      position: relative;
      transition: letter-spacing ease 0.5s;
      display: inline-block;
      color: #383838;
      letter-spacing: 0px;
      padding-left: 15px;
      border-radius: 2px;
      opacity: 0.7;
      height: 100%;
      font-size: 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;

  }
  .readBtnWrap a.btn-read:hover {
    letter-spacing: 1px;
    color:#EE3124;
  }
  .readBtnWrap a.btn-read span {
    margin-right: 15px;
  }

  .readBtnWrap a.btn-read::after {
    content: "";
    height: calc(100%);
    padding: 0;
    background-image: url(../images/forword-arrow.png);
    background-repeat: no-repeat;
    position: relative;
    width: 80px;
    border-left: #383838 1px solid;
    display: inline-block;
    background-position: center;
  }
  .readBtnWrap a.btn-read:hover::after {
    height: calc(100% - 4px);
  }

  /* product section */

  .productSec {
    padding-top: 50px;
    padding-bottom: 100px;
  }
  .proSecDesc {
    margin-top: 40px;
    font-size: 24px;
    line-height: 30px;
    color:#38383880;
  }
  .productCarousel {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 35px;
  }
  .productCarousel .item  {
    width: calc(25% - 22.5px);
  }
  .proBox {
    display: flex;
    position: relative;
    padding: 30px 30px;
    min-height: 467px;
    flex-direction: column;
    border-radius: 10px;
    transition: all ease 0.5s;
  }
  .proBox h3 {
    font-size: 44px;
    position: relative;
    transform: translateX(50%);
    width: 100%;
    transition: all ease 0.5s;
    display: block;
  }
  .proBox h3 span {
    display: inline-block;
     transform: translateX(-50%);
     transition: all ease 0.5s;
  }
  .proBox .proDesc {
    font-size: 20px;
    align-self: flex-start;
    display: none;
    color:#38383880;
  }
  .proImage {
    position: absolute;
    max-width: 320px;
    top: 135px;
    left: 30px;
    transition: all ease 0.5s;
    width: calc(100% - 60px);
  }
  .proImage img {
    max-width: 100%;
  }
  .proBox .readBtnWrap {
    bottom: -32px;
    left:70px;
  }
  .proBox .readBtnWrap a.btn-read {
    background-color: #fff;
  }
  .proBox .readBtnWrap a.btn-read span {
    padding-right: 20px;
  }
  .proBox .readBtnWrap a.btn-read::after {
    width: 68px;
  }
  .proBox:hover {
    background-color: #f2f2f2;
  }
  .proBox:hover h3 {
    transform: translateX(0%);
  }
  .proBox:hover h3 span{
    transform: translateX(0%);
  }
  .proBox:hover .proDesc {
    display: block;
  }
  .proBox:hover .proImage {
    top: 175px;
    left: 100px;
  }
  #privacyModal .popProForm {
    width: 100%;
}
.privacy_button {
  text-align: center;
  margin-bottom: 1.5vw;
}
  /* @keyframes move {
    from { top: 0; left: 0; }
    to   { top: 1px; left: 100px; }
  } */

  /* product popup */
  @media (min-width: 576px){
    .modal-dialog {
        max-width: 83.43%;
        margin: 1.75rem auto;
    }
    .btn-close {
    box-sizing: content-box;
    width: 1em;
    height: 1em;
    padding: 0.25em 0.25em;
    color: #EE3124;
    background: transparent url(../images/close_icon.png) center/1.5em auto no-repeat;
    border: 0;
    border-radius: 0.25rem;
    opacity: .5;
    position: absolute;
    top: 20px;
    right: 20px;
    opacity: 1;
    }
    #productModal .btn-close{
      position: absolute;
      top:40px;
      right:40px;
    }
    .modal-dialog {
      max-width: 60.43%;
      margin: 1.75rem auto;
  }
  }
  .modal-content  {
    padding: 50px 80px 60px;
  }
  .modal-content {
    padding: max(30px,3.125vw) max(30px,3.64583vw);
    border-radius: 1rem;
}
  .modal-body {
    padding: 20px 0;
  }
  .modal-header {
    margin:0;
    padding: 0;
    border:0;
    margin-bottom: 0px;
  }
  .popProdcutWrap {
    display: flex;
    flex-wrap: wrap;
    gap: 0px;
    justify-content: space-between;
  }
  .popProdcutWrap .popProdcut {
    width: 77%;
    display: flex;
    gap: 60px;
  }
  .popProdcut .popImg {
    max-width: 410px;
    width: 35%;
  }
  .popProdcut .popImg  img {
    max-width: 100%;
  }
  .popProdcutWrap .popProForm  {
    width: 23%;
  }
  .modal-header .modal-title{
    font-size: 44px;
    margin-left: 17px;
  }
  .popProInfo {
    width: 51%;
  }
  .popProInfo h4 {
    font-size: 30px;
    margin-bottom: 25px;
  }
  .popProInfo ul {
    font-size: 26px;
  }
  .popProInfo ul li span {
    color:#EE3124
  }
  .varientTab {
    margin-bottom: 60px;
  }
  .varientTab button {
    font-size: 26px;
    color: #383838;
    padding: 5px 10px;
    border:1px solid transparent;
    border-radius: 5px;
    background-color: transparent;
  }
  .varientTab button.active {
    color: #EE3124;
    border:1px solid #EE3124;
    padding-left: 20px;
      padding-right: 20px;
  }
  .popProForm .fielsWrap {
    margin-bottom: 25px;
  }
  .popProForm .submitbutton {
    margin-left: 15%;
  }

  /* case study page start  */
  /* section challenges */
  .casestudyChallenges {
    padding-bottom: 50px;
  }
  .caseStudyTabs {
    position: relative;
  }
  .caseStudyTabs  .owl-carousel{
    margin-left: 113px;
    margin-right: 113px;
    width: auto;
  }
  .caseStudyTabs .owl-theme .owl-nav {
    margin-top: 35px;
    margin-bottom:50px;
  }
  .caseStudyTabs .owl-carousel .owl-nav button.owl-prev{
    background-image: url('../images/left_arrow_small.png');
    height: 15px;
    width: 21px;
    background-position: 0 14px;
    position: absolute;
    left:-110px;
    top: 16px;
  }
  .caseStudyTabs .owl-carousel .owl-nav button.owl-next{
    background-image: url('../images/right_arrow.png');
    height: 15px;
    width: 21px;
    background-position: 0 14px;
    position: absolute;
    right:-110px;
    top: 16px;
  }
  .caseStudyTabs .owl-carousel .owl-nav button.owl-next.disabled,
  .caseStudyTabs .owl-carousel .owl-nav button.owl-prev.disabled {
    background-position: 0 30px;
    opacity: 1;
  }
  .caseStudyTabs .owl-theme .owl-nav [class*=owl-]:hover {
    background-color: transparent;
  }
  .caseStudyTabs .owl-theme .owl-nav [class*=owl-] {
    margin: 5px 15px
  }

  .caseStudyTabs .item button {
    width: 100%;
    border:1px solid #707070;
    border-radius: 5px;
    outline: 0;
    background-color: transparent;
    color: #383838;
    height: 52px;
    line-height: 100%;
  }
  .caseStudyTabs .item button.active,.caseStudyTabs .item button:hover {
    border:1px solid #EE3124;
    background-color: #EE3124;
    color:#fff;
  }
  .section-padding-hr.pdding-right-0 {
    padding-right: 0  !important;
  }
  .caseStudyTabContent {
    display: flex;
    gap: 0;
    justify-content: space-between;
  }
  .tab-box {
    display: none;
    }
  .tab-box.show {
    display: flex;
  }
  .tab-box-content {
    width: 56.66%;
  }
  .tab-box-image {
    width: 35%;
  }
  .tab-box-image img {
    max-width: 100%;
  }
  ul.problist {
    display: flex;
    justify-content: space-between;
  }
  ul.problist li{
    width: 33%;
    border-right: 1px solid #cdcdcd;
    text-align: center;
  }
  ul.problist li:first-child{
    text-align: left;
  }
  ul.problist li:last-child{
    text-align: right;
    border:0
  }

  /* solutions section */
  .solutions-section .accordion-list li h4 {
    width: 39.5%;
  }
  .solutions-section .accordion-list li .accordion-right {
    width: 57.695%;
  }
  .solutions-section .accordion-list li .accordion-right .item {
    width: calc(33% - 22px);
    max-width: 100%;
  }
  .solutions-section .accordion-list li .accordion-right .owl-carousel.off {
    display: flex;
    gap: 22px;
    justify-content: flex-end;
  }

  /* event page start  */
  .events-section {
    padding-top: 20px;
    padding-bottom:20px;
}
.eventsWrap {
    margin-top: 17px;
}
.events-section .breadcrumb{
    margin-bottom: 0;
}
.eventTabs {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.tabs {
    border: 1px solid #38383850;
    border-radius: 5px;
    width: 37.375%;
    height: 68px;
    display: flex;
}
.tabs button {
    width: 50%;
    border:0;
    outline: 0;
    background-color: #fff;
    color:#383838;
    border-radius: 5px;
    font-size: 24px;
}
.tabs button.active {
    background-color: #EE3124;
    color:#fff;
}

form.yearFilter {
    position: absolute;
    right: 0;
    width: 14.365%;
    border: 0px solid red;
}

form.yearFilter .select {
    border: 1px solid #38383850;
    border-radius: 5px;
    width: 100%;
    border-right: 0;
}
form.yearFilter .select .select-styled {
  border-radius: 5px;;
}
.envetContent {
    margin-top: 65px;
    margin-bottom: 35px;
}
.event-box {
    display: none;
}
.event-box.show {
    display: block;
}
.event-box .item {
    display: flex;
    position: relative;
    width: 100%;
}
.event-info {
  width: calc(55% - 8px);
  height: calc(100% - 16px);
  background-color: #fff;
  border-radius: 7px;
  position: absolute;
  right: 16px;
  top: 8px;
  padding: 55px 40px 40px;
}
.event-box .explore {
  position: absolute;
  left: 40px;
  bottom: 40px;
}
.event-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    font-family: 'Futura Next Medium';
}
.event-info .eventDesc {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 36px;
}
.eventdate,  .eventlocation{
    padding-left: 40px;
    background-repeat: no-repeat;
    height: 35px;
    margin-bottom: 22px;
    font-size: 20px;
    background-position: left !important;
}
.eventdate {
    background-image: url('../images/calendar-icon.png');
}
.eventlocation {
    background-image: url('../images/location-icon.png');
}
.event-box .explore {
    font-size: 22px;
    margin-top: 40px
}

.envetContent .owl-dots,
.envetContent .owl-nav {
    margin-top: 70px;
}

.banner-conntent-mobile {
  display: none;
}
/* functionality overview */
.section-padding-pr {
  padding-left: 5.416%;
  padding-right: 5.416%;
}
.functionality-wrapper {
  padding-left: 3.563%;
  padding-right: 2.563%;
  padding-top:2.4%;
  padding-bottom: 2.4%;
  box-shadow: 0px 3px 15px 0px rgb(0 0 0 / 9%);
  border-radius: 5px;

}
.functionality-wrapper .item {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-right: 5px;
}
.functionality-wrapper .funcleft {
  width: 50%;
  display: flex;
    justify-content: space-around;
    flex-direction: column;
}
.funcleft .main-heading {
  font-size: 3.90625vw !important;
  letter-spacing: -0.1171875vw;
  padding-left: 1.657vw !important;
}
.funcleft .desc {
  width: 75%;
  font-size: 24px;
  line-height: initial;
}
.funcleft .explore {
  position: relative;
  width: max-content;
  border:1px solid #707070;
  color: #38383880;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  font-size: 24px;
  height: 68px;

}
.functionality-wrapper .explore:hover {
  border-color: #ee3124;
  color: #ee3124;
  font-weight: bold;
}
.funcleft .explore img {
  background-color: none;

  padding: 18px;
    position: relative;
    border-bottom-right-radius: 5px;
    border-top-right-radius: 5px;
    left: 10px;
    width: auto;
    border-left: 1px solid #707070;
}
.functionality-wrapper .funcright {
  width: 50%;
}
.funcright .imgbox img{
 max-width: 100%;
}
.funcright .owl-dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
}
.functionality-wrapper > .owl-carousel > .owl-dots,.functionality-wrapper > .owl-carousel > .owl-nav{
  position: absolute;
  bottom: -24%;
  width: 100%;
}
.section-func {
  padding-bottom: 9.635416vw;
  margin-top: 2.60416vw;
}
.selfContainer{
  margin-top: 25px;
}


/* investor page css */
.inner_banner .item .banner_caption {
  position: absolute;
  left: 0;
  top: 47%;
  transform: translateY(-50%);
  z-index: 10;
}
.investor-section{
  display: flex;
  justify-content: space-between;
}
.investor-section .left-block {
  padding-top: 1vw
}
.left-0.investor-section .left-block {
  padding-left: 4.7916vw;
}
.left-block {
  width: 41.40625vw;
}
.right-block {
  width: 50vw;
}
.right-block img {
  max-width: 100%;
}
.left-block .main-heading {
  margin-top: 2.60416vw
}
.left-block .tabs-container {
  width: 35.885416vw;
  padding-top: 1.675vw;
}
.tabsWithFilter {
  display: flex;
  justify-content: space-between;
}
.tabsWithFilter .select {
    width: 7.864583vw;
    height: 3.4375vw;
}
.tabsWithFilter .select-styled {
  border: 1px solid #66646380;
  border-radius: 5px;
  padding: 0;
  line-height: 3.4375vw;
  padding-left: 1vw;
  font-size: 1.0416vw;
}
.left-block ul.tabing {
  display: flex;
  width: 97%;
}
.left-block .tabsWithFilter ul.tabing {
  width: 74%;
}
.left-block ul.tabing li {
  width: 50%;
}
.left-block ul.tabing li button {
  width: 100%;
  display:flex;
  font-size: max(14px,1.0416vw);
  justify-content: center;
  align-items: center;
  border:0;
  outline: 0;
  height: 3.4375vw;
  line-height: 3.4375vw;
  background-color: transparent;
  border:1px solid #38383850;
  border-radius: 5px;

}
.left-block ul.tabing li:first-child button {
  border-right: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.left-block ul.tabing li:last-child button {
  border-left: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.left-block ul.tabing li button.active {
  background-color: #EE3124;
  color:#fff;
  border-color: #EE3124;
}
.tabBox.hide {
  display: none;
}
.tabBox.show {
  display: block;
  padding-top: max(20px,2.4vw);
  width: 99%;
}
.tabBox  ul {
  max-height: 21.09375vw;
  overflow-y: auto;
  padding-right: 20px;
}
/* ::-webkit-scrollbar {
  width: 10px;
} */

/* Track */
.tabBox  ul::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
.tabBox  ul::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
.tabBox  ul::-webkit-scrollbar-thumb:hover {
  background: #555;
}
.tabBox li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top:1.77083vw;
  padding-bottom:1.77083vw;
  border-bottom: 2px solid #dbdbdb;
}
.tabBox li:last-child {
  border-bottom: 0
}
.text-with-icon {
  display: flex;
  align-items: center;
  font-size: max(16px, 1.25vw);
}
.tabBox li a {
  align-self: baseline;
}
.text-with-icon span {
  width:  26.822916vw;
}
.text-with-icon img {
  max-width: 2.1875vw;
  margin-right: 1.4583vw;
}
.download-button img {
  max-width: 1.77083vw;
}



  /* .screenshot {
    position: fixed;
    top: -46px;
    z-index: 9999;
    width: 100%;
    opacity: .6;
    left: 0px;
  } */
  .screenshot {
    position: fixed;
    z-index: 9999;
    width: 100%;
    top: -46px;
    opacity: 0.5;
    left: 0;
}




/* start error 404 page design */

.eror_page_design {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 0;
  min-height: calc(100vh - 100px);
}

/* end error 404 page design */




/* start privacy-policy page design */


.content_wrapper_tnc {
  display: block;
  padding-top: 20px;
  padding-bottom: 20px;
}

.content_wrapper_tnc h1 {
  margin: 0;
  margin-top: 20px;
  /* color: #ee3124; */
}

.content_wrapper_tnc h3 {
  margin: 0;
  margin-top: 20px;
  /* color: #ee3124; */
}

.content_wrapper_tnc h4{
  margin: 0;
  margin-top: 20px;
}

.content_wrapper_tnc p {
  margin: 0;
  margin-top: 20px;
  padding-left: 20px;
}

.content_wrapper_tnc p a{
  text-decoration: none;
  color: #383838;
}

.content_wrapper_tnc ul {
  display: block;
  margin-top: 20px;
}


 .content_wrapper_tnc ul li {
  display: block;
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
  margin-left: 20px;
}

.content_wrapper_tnc ul li::before {
  content: "";
  width: 5px;
  height: 5px;
  position: absolute;
  background: #383838;
  border-radius: 50%;
  left: 0;
  top: 10px;
}

.content_wrapper_tnc ol {
  display: block;
  margin-top: 20px;
  position: relative;
}


.content_wrapper_tnc ol li {
  display: block;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
  margin-left: 20px;
}


.content_wrapper_tnc ol li::before{
  content: "";
  width: 5px;
  height: 5px;
  position: absolute;
  background: #ee3124;
  border-radius: 50%;
  left: 0;
  top: 10px;
}

.content_wrapper_tnc ul li:last-child{margin-bottom: 0;}












/* end privacy-policy page design */
