@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");
:root {
  --marquee-width: 80vw;
  --marquee-height: 20vh;
  /* --marquee-elements: 12; */ /* defined with JavaScript */
  --marquee-elements-displayed: 5;
  --marquee-element-width: calc(var(--marquee-width) / var(--marquee-elements-displayed));
  --marquee-animation-duration: calc(var(--marquee-elements) * 3s);
}

@media (max-width: 767px) {
  :root {
    --marquee-width: 100vw;
    --marquee-height: 20vh;
    --marquee-elements-displayed: 3;
  }
}
@media (max-width: 480px) {
  :root {
    --marquee-width: 100vw;
    --marquee-height: 12vh;
    --marquee-elements-displayed: 3;
  }
}
body {
  margin: 0;
  font-size: 1rem;
  line-height: 24px;
  overflow-x: hidden !important;
  overflow-y: scroll;
  font-family: "Plus Jakarta Sans", sans-serif;
  background: white-color;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  position: relative;
}

p {
  margin: 10px 0 0 0;
  color: #494C53;
  line-height: 24px;
}
@media (max-width: 480px) {
  p {
    font-size: 0.875rem;
  }
}

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

.ml-10 {
  margin-left: 10px;
}
@media (max-width: 767px) {
  .ml-10 {
    margin-left: 0px;
  }
}

.form-label {
  font-size: 0.875rem;
}
@media (max-width: 480px) {
  .form-label {
    font-size: 0.813rem;
  }
}

#scrl::-webkit-scrollbar {
  width: 6px;
  background-color: #2BB4D4;
}

#scrl::-webkit-scrollbar-thumb {
  background-color: #F5F5F5;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

ul {
  padding: 0;
  margin: 0;
}

h3 {
  font-size: 2.5rem;
  color: #000;
  font-weight: 700;
  text-align: center;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  h3 {
    font-size: 2.2rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  h3 {
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  h3 {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  h3 {
    font-size: 1.6rem;
  }
}
h3 span {
  color: #2BB4D4;
}

section {
  padding: 80px 0px;
}
@media (max-width: 991px) {
  section {
    padding: 60px 0px;
  }
}
@media (max-width: 480px) {
  section {
    padding: 40px 0px;
  }
}

.scrollup {
  width: 50px;
  height: 50px;
  position: fixed;
  bottom: 40px;
  right: 20px;
  display: none;
  text-indent: -9999px;
  z-index: 99999;
  background: url(../images/up-arrow.svg) no-repeat;
}
.scrollup img {
  width: 50px;
  height: 50px;
}

.form-group,
.form-floating {
  position: relative;
}
.form-group input,
.form-group .form-select,
.form-group select,
.form-floating input,
.form-floating .form-select,
.form-floating select {
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  height: 40px;
  padding: 0 10px;
  width: 100%;
  font-size: 0.875rem;
  transition: all 0.4s ease;
  color: #5a5a59;
  border: 1px solid #ced4da;
  background: #fff;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group .form-select:focus,
.form-group select:focus,
.form-floating input:focus,
.form-floating textarea:focus,
.form-floating .form-select:focus,
.form-floating select:focus {
  color: #5a5a59;
  outline: 0;
  box-shadow: none;
  border-color: #2BB4D4;
  transition: all 0.6s ease-in-out;
}
.form-group input:disabled,
.form-group input[readonly],
.form-floating input:disabled,
.form-floating input[readonly] {
  background-color: #2BB4D4;
}
.form-group textarea,
.form-floating textarea {
  height: 80px;
  padding: 10px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  resize: none;
  width: 100%;
  font-size: 0.875rem;
  border: 1px solid #ced4da;
  transition: all 0.4s ease;
}
.form-group ::-moz-placeholder, .form-floating ::-moz-placeholder {
  color: #9c9c99;
  font-weight: 500;
  opacity: 1;
  /* Firefox */
}
.form-group ::placeholder,
.form-floating ::placeholder {
  color: #9c9c99;
  font-weight: 500;
  opacity: 1;
  /* Firefox */
}
.form-group :-ms-input-placeholder,
.form-floating :-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #9c9c99;
  font-weight: 500;
}
.form-group ::-ms-input-placeholder,
.form-floating ::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #9c9c99;
  font-weight: 500;
}

header {
  width: 100%;
}
header .header-top {
  width: 100%;
}
header .header-top .header-top-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-left: 240px;
  padding: 8px 20px;
}
@media only screen and (min-width: 992px) and (max-width: 1400px) {
  header .header-top .header-top-wrapper {
    margin-left: 180px;
  }
}
@media (max-width: 1200px) {
  header .header-top .header-top-wrapper {
    border-left: none;
    border-bottom: none;
  }
}
header .header-top .header-top-wrapper .contact-list ul {
  display: flex;
}
@media (max-width: 992px) {
  header .header-top .header-top-wrapper .contact-list ul {
    display: none;
  }
}
header .header-top .header-top-wrapper .contact-list ul li {
  list-style: none;
  padding: 5px;
  color: #494C53;
}
@media only screen and (min-width: 992px) and (max-width: 1400px) {
  header .header-top .header-top-wrapper .contact-list ul li {
    font-size: 0.875rem;
  }
}
header .header-top .header-top-wrapper .contact-list ul li a {
  color: #494C53;
}
header .header-top .header-top-wrapper .contact-list ul li i {
  color: #2BB4D4;
}
header .header-top .header-top-wrapper .search {
  margin-left: 1rem;
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  header .header-top .header-top-wrapper .search {
    margin-left: 0rem;
    margin-right: 3rem;
    top: 12px;
  }
}
@media (max-width: 767px) {
  header .header-top .header-top-wrapper .search {
    display: none;
  }
}
header .header-top .header-top-wrapper .search .icon {
  position: absolute;
  top: 5px;
  left: 10px;
}
header .header-top .header-top-wrapper .search .icon i {
  color: #9A9EA6;
  position: relative;
  z-index: 99;
}
header .header-top .header-top-wrapper .search .search-form {
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  background: #F0F1F2;
  border: none;
  font-size: 0.813rem;
  padding: 5px 15px 5px 30px;
  position: relative;
}
header .header-1 {
  position: relative;
  z-index: 99;
  overflow-x: clip;
}
header .header-1 .search_icon {
  display: none;
}
@media (max-width: 767px) {
  header .header-1 .search_icon {
    display: block;
    position: absolute;
    top: 12px;
    cursor: pointer;
    right: 65px;
    color: #1E87C7;
  }
  header .header-1 .search_icon i {
    font-size: 1.5rem;
  }
}
@media (max-width: 767px) and (max-width: 480px) {
  header .header-1 .search_icon {
    top: 1px;
  }
}
header .header-1 .owl-carousel {
  margin: 30px 0px;
}
header .header-1 .owl-carousel .owl-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
header .header-1 .owl-carousel .owl-item {
  text-align: center;
}
header .header-1 .owl-controls .owl-buttons div {
  cursor: pointer;
  display: block;
}
header .header-1 .owl-theme .owl-controls {
  margin-top: -50px;
  z-index: 9;
  position: relative;
}
header .header-1 .owl-pagination {
  display: none;
}
header .header-1 .owl-theme .owl-controls .owl-buttons div {
  display: inline-block;
  zoom: 1;
  background: #2BB4D4;
  margin: 0 5px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.5s ease-in-out;
}
@media (max-width: 562px) {
  header .header-1 .owl-theme .owl-controls .owl-buttons div {
    width: 20px;
    height: 20px;
  }
}
header .header-1 .owl-prev {
  position: absolute;
  left: 20px;
  right: auto;
}
header .header-1 .owl-next {
  position: absolute;
  right: 20px;
  left: auto;
}
header .header-1 .owl-theme .owl-controls,
header .header-1 .products .owl-theme .owl-controls {
  position: absolute;
  width: 100%;
  top: 35%;
  margin: 0;
}
header .header-1 .owl-prev::before {
  content: "\ec49";
  position: absolute;
  font-family: unicons-line !important;
  font-size: 20px;
  color: #fff;
}
header .header-1 .owl-next::before {
  content: "\eb9f";
  position: absolute;
  font-family: unicons-line !important;
  font-size: 20px;
  color: #fff;
}
header .header-1 .nav-header {
  position: absolute;
  top: -35px;
  left: 25px;
}
@media only screen and (min-width: 992px) and (max-width: 1400px) {
  header .header-1 .nav-header img {
    width: 140px;
    height: 64px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  header .header-1 .nav-header img {
    width: 120px;
    height: 54px;
  }
}
@media (max-width: 767px) {
  header .header-1 .nav-header {
    top: 0px;
    left: 13px;
  }
  header .header-1 .nav-header img {
    width: 120px;
    height: 54px;
  }
}
@media (max-width: 480px) {
  header .header-1 .nav-header {
    top: -8px;
    left: 13px;
  }
  header .header-1 .nav-header img {
    width: 100px;
    height: 45px;
  }
}
header .header-1 .nav-menus-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-left: 190px;
  padding-left: 50px;
}
@media only screen and (min-width: 992px) and (max-width: 1400px) {
  header .header-1 .nav-menus-wrapper {
    padding-left: 0;
    margin-left: 180px;
  }
}
@media (max-width: 992px) {
  header .header-1 .nav-menus-wrapper {
    padding-left: 0;
    margin-left: 0;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
  }
}
header .sticky {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  width: 100%;
  z-index: 99;
  transition: all 0.9s;
  background-color: #fff;
  box-shadow: 0px 0px 62px 0px rgba(0, 22, 89, 0.17);
}
@media (max-width: 992px) {
  header .sticky {
    padding-left: 0px;
    height: 10vh;
  }
}
header .sticky .search_icon {
  display: none;
}
@media (max-width: 767px) {
  header .sticky .search_icon {
    display: block;
    position: absolute;
    top: 12px;
    cursor: pointer;
    right: 65px;
    color: #1E87C7;
  }
  header .sticky .search_icon i {
    font-size: 1.5rem;
  }
}
@media (max-width: 767px) and (max-width: 480px) {
  header .sticky .search_icon {
    top: 21px;
  }
}
header .sticky .nav-header {
  position: absolute;
  top: 10px;
  left: 12px;
}
header .sticky .nav-header img {
  width: 100px;
  height: 45px;
}
header .sticky .nav-menus-wrapper {
  padding-left: 0px;
  margin-left: 130px;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  header .sticky .nav-toggle {
    margin-top: 14px;
  }
}
@media (max-width: 480px) {
  header .sticky .nav-toggle {
    margin-top: 20px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1400px) {
  header .sticky .nav-menu li a {
    padding: 22px 12px;
    font-size: 0.875rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  header .sticky .nav-menu li a {
    padding: 22px 12px;
  }
}

.intro {
  height: auto;
  background: url(../images/shape1.png) right center no-repeat, url(../images/shape2.png) left bottom no-repeat #FAF8F5;
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-top: 0px;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .intro {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .intro {
    margin-top: 62px;
  }
}
@media (max-width: 480px) {
  .intro {
    margin-top: 45px;
  }
}
.intro .slider-caption {
  display: flex;
  position: absolute;
  width: 100%;
  height: 100%;
  justify-content: flex-end;
  top: 0;
  padding: 3rem;
  align-items: center;
}
@media (max-width: 1200px) {
  .intro .slider-caption {
    padding: 30px 60px;
  }
}
@media (max-width: 767px) {
  .intro .slider-caption {
    padding: 20px;
    position: relative;
  }
}
@media (max-width: 480px) {
  .intro .slider-caption {
    padding: 10px;
    flex-direction: column-reverse;
  }
}
.intro .slider-caption .left_side {
  width: 50%;
  padding: 25px;
  position: absolute;
  left: 8rem;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.36) 100%);
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .intro .slider-caption .left_side {
    left: 4rem;
  }
}
@media (max-width: 767px) {
  .intro .slider-caption .left_side {
    left: 1.5rem;
  }
}
@media (max-width: 480px) {
  .intro .slider-caption .left_side {
    width: 100%;
    position: relative;
    left: 0rem;
    padding: 1rem;
  }
}
.intro .slider-caption .left_side h2 {
  font-size: 50px;
  color: #494C53;
  font-weight: 700;
  line-height: 65px;
  text-align: left;
  align-self: flex-start;
}
.intro .slider-caption .left_side h2::after {
  display: none;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .intro .slider-caption .left_side h2 {
    font-size: 2.5rem;
    line-height: 48px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .intro .slider-caption .left_side h2 {
    font-size: 1.5rem;
    line-height: 38px;
  }
}
@media (max-width: 767px) {
  .intro .slider-caption .left_side h2 {
    font-size: 18px;
    line-height: 20px;
  }
}
@media (max-width: 480px) {
  .intro .slider-caption .left_side h2 {
    font-size: 1.2rem;
    line-height: 20px;
  }
}
.intro .slider-caption .left_side .btnbox {
  margin-top: 20px;
  display: inline-flex;
}
@media (max-width: 480px) {
  .intro .slider-caption .left_side .btnbox {
    margin-top: 0px;
  }
}
@media (max-width: 767px) {
  .intro .slider-caption .left_side .btnbox .btn {
    margin-right: 5px;
    margin-top: 5px;
    font-size: 0.813rem;
  }
}
@media (max-width: 480px) {
  .intro .slider-caption .left_side .btnbox .btn {
    margin-top: 10px;
    font-size: 0.813rem;
  }
}
@media (max-width: 767px) {
  .intro .slider-caption .left_side .btnbox {
    flex-direction: column;
    display: block;
    margin-top: 10px;
  }
}
@media (max-width: 480px) {
  .intro .slider-caption .left_side .btnbox {
    display: block;
  }
}
.intro .slider-caption .right_side {
  width: 50%;
  padding: 2%;
}
@media (max-width: 480px) {
  .intro .slider-caption .right_side {
    width: 100%;
    padding: 0;
  }
}
.intro .owl-carousel {
  margin: 0px;
}
@media (max-width: 480px) {
  .intro .owl-carousel {
    margin-bottom: 10px;
  }
}
.intro .owl-carousel .owl-item {
  height: 90vh !important;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .intro .owl-carousel .owl-item {
    height: 60vh !important;
  }
}
@media (max-width: 767px) {
  .intro .owl-carousel .owl-item {
    height: auto !important;
  }
}
.intro .owl-controls .owl-buttons div {
  cursor: pointer;
  display: block;
}
.intro .owl-theme .owl-controls {
  margin-top: -50px;
  z-index: 9;
  position: relative;
}
.intro .owl-pagination {
  display: none;
}
.intro .owl-theme .owl-controls .owl-buttons div {
  display: inline-block;
  zoom: 1;
  background: #fff;
  border: 1px solid #dddcdc;
  margin: 0 5px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.5s ease-in-out;
}
@media (max-width: 562px) {
  .intro .owl-theme .owl-controls .owl-buttons div {
    background: none;
  }
}
.intro .owl-prev {
  position: absolute;
  right: 40px;
  left: auto;
}
.intro .owl-next {
  position: absolute;
  right: 5px;
  left: auto;
}
.intro .owl-theme .owl-controls,
.intro .products .owl-theme .owl-controls {
  position: absolute;
  width: 100%;
  bottom: 80px;
  margin: 0;
}
@media (max-width: 480px) {
  .intro .owl-theme .owl-controls,
  .intro .products .owl-theme .owl-controls {
    bottom: 30px;
  }
}
.intro .owl-prev::before {
  content: "\ec49";
  position: absolute;
  font-family: unicons-line !important;
  font-size: 20px;
  color: #000;
}
.intro .owl-next::before {
  content: "\eb9f";
  position: absolute;
  font-family: unicons-line !important;
  font-size: 20px;
  color: #000;
}

.category-bg {
  width: 100%;
  padding: 0 0 60px 0;
  position: relative;
  transform: translateY(-15px);
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .category-bg {
    transform: translateY(0px);
    padding: 0 0 20px 0;
  }
}
@media (max-width: 767px) {
  .category-bg {
    padding: 0;
    transform: translateY(0px);
  }
}
.category-bg .main-category {
  padding: 0;
  background: #fff;
  width: 98%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  transform: translateY(-25px);
}
@media (max-width: 992px) {
  .category-bg .main-category {
    display: none;
  }
}
.category-bg .main-category ul {
  display: flex;
  padding: 5px;
  width: 100%;
}
.category-bg .main-category ul li {
  width: 20%;
  list-style: none;
}
.category-bg .main-category ul li .main-box {
  padding: 10px;
}
.category-bg .main-category ul li .main-box .img-box {
  background: rgb(255, 255, 255);
  background: radial-gradient(circle, rgb(255, 255, 255) 0%, rgb(228, 244, 248) 65%);
  position: relative;
  height: 200px;
}
.category-bg .main-category ul li .main-box .img-box .overlay_content {
  transition: all 0.4s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 15px;
  background: rgb(43, 180, 212);
  background: linear-gradient(0deg, rgba(43, 180, 212, 0.7484243697) 0%, rgba(30, 135, 199, 0.8408613445) 100%);
  display: flex;
  align-items: center;
  opacity: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .category-bg .main-category ul li .main-box .img-box .overlay_content {
    padding: 10px;
  }
}
.category-bg .main-category ul li .main-box .img-box .overlay_content p {
  text-align: center;
  color: #fff;
  font-size: 0.875rem;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .category-bg .main-category ul li .main-box .img-box .overlay_content p {
    font-size: 0.813rem;
  }
}
.category-bg .main-category ul li .main-box .heading {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding-top: 5px;
  position: relative;
}
.category-bg .main-category ul li .main-box .heading h3 {
  font-size: 0.875rem;
  color: #000;
  font-weight: 600;
}
.category-bg .main-category ul li .main-box .heading .btn_3 {
  transition: all 0.4s ease-in-out;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  position: absolute;
  right: 5px;
  width: 30px;
  height: 30px;
  background: #2BB4D4;
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-15px);
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .category-bg .main-category ul li .main-box .heading .btn_3 {
    width: 30px;
    height: 30px;
    transform: translateY(-10px);
  }
}
.category-bg .main-category ul li .main-box .heading .btn_3 i {
  transition: all 0.4s ease-in-out;
  font-size: 1.5rem;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .category-bg .main-category ul li .main-box .heading .btn_3 i {
    font-size: 1.2rem;
  }
}
.category-bg .main-category ul li .main-box .heading .btn_3:hover {
  background: #1E87C7;
}
.category-bg .main-category ul li .main-box .heading .btn_3:hover i {
  transform: rotate(45deg);
}
.category-bg .main-category ul li .main-box:hover .overlay_content {
  opacity: 1;
}
.category-bg .main-category_tab {
  display: none;
}
.category-bg .main-category_tab .main-box {
  padding: 10px;
  width: 100%;
}
.category-bg .main-category_tab .main-box .img-box {
  background: rgb(255, 255, 255);
  background: radial-gradient(circle, rgb(255, 255, 255) 0%, rgb(228, 244, 248) 65%);
  position: relative;
  height: 150px;
}
.category-bg .main-category_tab .main-box .img-box .overlay_content {
  transition: all 0.4s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 15px;
  background: rgb(43, 180, 212);
  background: linear-gradient(0deg, rgba(43, 180, 212, 0.7484243697) 0%, rgba(30, 135, 199, 0.8408613445) 100%);
  display: flex;
  align-items: center;
  opacity: 0;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .category-bg .main-category_tab .main-box .img-box .overlay_content {
    padding: 10px;
  }
}
@media (max-width: 480px) {
  .category-bg .main-category_tab .main-box .img-box .overlay_content {
    display: none;
  }
}
.category-bg .main-category_tab .main-box .img-box .overlay_content p {
  text-align: center;
  color: #fff;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .category-bg .main-category_tab .main-box .img-box .overlay_content p {
    font-size: 0.813rem;
  }
}
@media (max-width: 767px) {
  .category-bg .main-category_tab .main-box .img-box .overlay_content p {
    font-size: 0.875rem;
  }
}
.category-bg .main-category_tab .main-box .heading {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding-top: 5px;
  position: relative;
}
.category-bg .main-category_tab .main-box .heading h3 {
  font-size: 1.3rem;
  color: #000;
  font-weight: 600;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .category-bg .main-category_tab .main-box .heading h3 {
    font-size: 1rem;
  }
}
@media (max-width: 767px) {
  .category-bg .main-category_tab .main-box .heading h3 {
    font-size: 1rem;
  }
}
.category-bg .main-category_tab .main-box .heading .btn_3 {
  transition: all 0.4s ease-in-out;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  position: absolute;
  right: 5px;
  right: 10px;
  width: 30px;
  height: 30px;
  background: #2BB4D4;
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-15px);
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .category-bg .main-category_tab .main-box .heading .btn_3 {
    width: 30px;
    height: 30px;
    transform: translateY(-10px);
  }
}
@media (max-width: 480px) {
  .category-bg .main-category_tab .main-box .heading .btn_3 {
    width: 30px;
    height: 30px;
    transform: translateY(-10px);
    right: 0px;
  }
}
.category-bg .main-category_tab .main-box .heading .btn_3 i {
  transition: all 0.4s ease-in-out;
  font-size: 1.5rem;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .category-bg .main-category_tab .main-box .heading .btn_3 i {
    font-size: 1.3rem;
  }
}
@media (max-width: 480px) {
  .category-bg .main-category_tab .main-box .heading .btn_3 i {
    font-size: 1rem;
  }
}
.category-bg .main-category_tab .main-box .heading .btn_3:hover {
  background: #1E87C7;
}
.category-bg .main-category_tab .main-box .heading .btn_3:hover i {
  transform: rotate(45deg);
}
.category-bg .main-category_tab .main-box:hover .overlay_content {
  opacity: 1;
}
@media (max-width: 992px) {
  .category-bg .main-category_tab {
    padding: 0;
    background: #fff;
    width: 100%;
    display: flex;
    justify-content: center;
  }
}
.category-bg .main-category_tab .owl-carousel {
  margin: 0;
}

.certification {
  background: #FFFAF5;
  position: relative;
  /* .marquee-content:hover {
    animation-play-state: paused;
  } */
}
.certification .shape3 {
  position: absolute;
  right: 50px;
  top: 50px;
}
.certification .shape3 img {
  width: 130px;
}
.certification .marquee {
  width: 100%;
  height: 20vh;
  background-color: #fff;
  color: #eee;
  overflow: hidden;
  position: relative;
}
.certification .marquee-content {
  list-style: none;
  height: 100%;
  display: flex;
  animation: scrolling var(--marquee-animation-duration) linear infinite;
}
.certification .marquee-content li {
  display: flex;
  justify-content: center;
  align-items: center;
  /* text-align: center; */
  flex-shrink: 0;
  width: var(--marquee-element-width);
  max-height: 100%;
  font-size: calc(var(--marquee-height) * 3 / 4); /* 5rem; */
  white-space: nowrap;
}
.certification .marquee-content li img {
  width: 100%;
  /* height: 100%; */
  border: 2px solid #eee;
}

@keyframes scrolling {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-1 * var(--marquee-element-width) * var(--marquee-elements)));
  }
}
.about_bg {
  background: url(../images/shape4.png) no-repeat top left;
}
.about_bg h1 {
  font-size: 2.5rem;
  color: #000;
  font-weight: 700;
  text-align: left;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .about_bg h1 {
    font-size: 2.4rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .about_bg h1 {
    font-size: 1.8rem;
  }
}
@media (max-width: 767px) {
  .about_bg h1 {
    font-size: 1.8rem;
  }
}
@media (max-width: 480px) {
  .about_bg h1 {
    font-size: 1.4rem;
  }
}
.about_bg h1 span {
  color: #2BB4D4;
}
.about_bg h4 {
  font-size: 1rem;
  color: #000;
  position: relative;
  letter-spacing: 8px;
  font-weight: 400;
  text-align: left;
  padding-left: 65px;
}
@media (max-width: 1200px) {
  .about_bg h4 {
    margin-bottom: 10px;
  }
}
@media (max-width: 480px) {
  .about_bg h4 {
    font-size: 0.813rem;
    letter-spacing: 4px;
    padding-left: 40px;
  }
}
.about_bg h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  background: #1E87C7;
  width: 50px;
  height: 1px;
}
@media (max-width: 480px) {
  .about_bg h4::before {
    width: 35px;
  }
}
.about_bg .about-img {
  position: relative;
  padding-right: 2rem;
}
.about_bg .about-img .video-play-button {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: all 0.4s ease-in-out;
  position: absolute;
  bottom: 3rem;
  left: 3rem;
  width: 80px;
  height: 80px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about_bg .about-img .video-play-button i {
  color: #2BB4D4;
}
.about_bg .about-img .video-play-button::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
}
.about_bg .about-img .video-play-button:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 50%;
  transition: all 0.5s;
}
.about_bg .about-img .video-play-button img {
  position: relative;
  z-index: 3;
  max-width: 100%;
  width: auto;
  height: auto;
}
.about_bg .about-img .video-play-button span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  border-left: 25px solid #2BB4D4;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
}

.achievement {
  background: #EFFCFF;
  width: 100%;
}
.achievement .achive {
  width: 100%;
  margin-top: 30px;
}
.achievement .achive ul {
  display: flex;
  flex-wrap: wrap;
}
.achievement .achive ul li {
  width: 25%;
  list-style: none;
}
@media (max-width: 767px) {
  .achievement .achive ul li {
    width: 50%;
    margin-bottom: 15px;
  }
}
.achievement .achive ul li .achieve_box {
  display: flex;
  align-items: center;
}
.achievement .achive ul li .achieve_box .icon {
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .achievement .achive ul li .achieve_box .icon img {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 480px) {
  .achievement .achive ul li .achieve_box .icon img {
    width: 40px;
    height: 40px;
  }
}
.achievement .achive ul li .achieve_box .texts {
  padding-left: 10px;
}
.achievement .achive ul li .achieve_box .texts h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #000;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .achievement .achive ul li .achieve_box .texts h2 {
    font-size: 1.8rem;
  }
}
@media (max-width: 767px) {
  .achievement .achive ul li .achieve_box .texts h2 {
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .achievement .achive ul li .achieve_box .texts h2 {
    font-size: 1.5rem;
  }
}
@media (max-width: 767px) {
  .achievement .achive ul li .achieve_box .texts h2 {
    font-size: 1.2rem;
  }
}
.achievement .achive ul li .achieve_box .texts h5 {
  font-size: 1.2rem;
  font-weight: 500;
  color: #6D737A;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .achievement .achive ul li .achieve_box .texts h5 {
    font-size: 1.1rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .achievement .achive ul li .achieve_box .texts h5 {
    font-size: 1rem;
  }
}
@media (max-width: 767px) {
  .achievement .achive ul li .achieve_box .texts h5 {
    font-size: 0.875rem;
  }
}

.latest_news {
  background: url(/images/shape5.png) no-repeat right bottom;
}
.latest_news h3 {
  text-align: left;
}
.latest_news .news_box {
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  position: relative;
  z-index: 9;
}
.latest_news .news_box img {
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.latest_news .news_box .overlay {
  transition: all 0.4s ease-in-out;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  position: absolute;
  width: 100%;
  height: 50%;
  left: 0;
  bottom: 0;
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(0, 0, 0) 100%);
}
.latest_news .news_box .news-content {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 15px;
}
.latest_news .news_box .news-content .date {
  color: #fff;
  font-weight: 400;
  font-size: 0.875rem;
}
.latest_news .news_box .news-content .content {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  display: -webkit-box;
  height: 52px;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .latest_news .news_box .news-content .content {
    font-size: 1rem;
    line-height: 22px;
    height: 50px;
  }
}
@media (max-width: 767px) {
  .latest_news .news_box .news-content .content {
    font-size: 1rem;
  }
}
.latest_news .news_box::before {
  position: absolute;
  content: url(/images/shape3.png);
  left: -20px;
  bottom: -20px;
  z-index: -1;
}
.latest_news .news_box:hover .overlay {
  height: 80%;
}
.latest_news .btn_div {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.latest_news .news_right {
  width: 100%;
}
@media (max-width: 767px) {
  .latest_news .news_right {
    display: none;
  }
}
.latest_news .news_right li {
  list-style: none;
  border-bottom: 1px solid #E3E3E3;
  padding: 32px 20px;
}
@media only screen and (min-width: 1200px) and (max-width: 1400px) {
  .latest_news .news_right li {
    padding: 20px 15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .latest_news .news_right li {
    padding: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .latest_news .news_right li {
    padding: 10px;
  }
}
@media (max-width: 767px) {
  .latest_news .news_right li {
    padding: 10px;
  }
}
.latest_news .news_right li .date {
  color: #858080;
  font-weight: 400;
  font-size: 0.875rem;
}
@media (max-width: 992px) {
  .latest_news .news_right li .date {
    font-size: 0.813rem;
  }
}
.latest_news .news_right li .date i {
  color: #2BB4D4;
}
.latest_news .news_right li .content {
  font-size: 1.2rem;
  font-weight: 700;
  color: #000;
  display: -webkit-box;
  line-height: 28px;
  height: 58px;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .latest_news .news_right li .content {
    font-size: 1rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .latest_news .news_right li .content {
    font-size: 1rem;
    line-height: 22px;
    height: 50px;
  }
}
@media (max-width: 767px) {
  .latest_news .news_right li .content {
    font-size: 1rem;
  }
}
.latest_news .news_right li:hover {
  background: #EFFCFF;
}

.testimonial-bg {
  background: #6B6D6D;
}
.testimonial-bg .testi_content {
  padding-right: 2rem;
}
.testimonial-bg .testi_content h3 {
  text-align: left;
  color: #fff;
}
.testimonial-bg .testi_content p {
  color: #fff;
  margin-bottom: 20px;
}
.testimonial-bg .testi_box {
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  padding: 20px;
  margin: 0px 10px;
  position: relative;
}
@media (max-width: 480px) {
  .testimonial-bg .testi_box {
    margin: 0px;
  }
}
.testimonial-bg .testi_box .quote {
  position: relative;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 480px) {
  .testimonial-bg .testi_box .quote img {
    width: 60px;
    height: 60px;
  }
}
.testimonial-bg .testi_box .heading {
  display: flex;
  align-items: center;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #E2E4E9;
}
@media (max-width: 992px) {
  .testimonial-bg .testi_box .heading {
    margin-top: 15px;
    padding-top: 15px;
  }
}
.testimonial-bg .testi_box .heading .icon {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  width: 50px;
  height: 50px;
}
.testimonial-bg .testi_box .heading .icon img {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.testimonial-bg .testi_box .heading .name {
  margin-left: 10px;
}
.testimonial-bg .testi_box .heading .name h5 {
  font-size: 0.875rem;
  font-weight: 600;
  color: #000;
}
.testimonial-bg .testi_box .heading .name h5 span {
  display: block;
  color: #2BB4D4;
  font-weight: 400;
  font-size: 0.813rem;
}
.testimonial-bg .testi_box p {
  text-align: left;
  font-size: 0.875rem;
}
.testimonial-bg .owl-carousel {
  margin: 0px;
}
.testimonial-bg .owl-carousel .owl-wrapper-outer {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.testimonial-bg .owl-controls .owl-buttons div {
  cursor: pointer;
  display: block;
}
.testimonial-bg .owl-pagination {
  display: none;
}
.testimonial-bg .owl-theme .owl-controls .owl-buttons div {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  display: flex;
  zoom: 1;
  background: #2BB4D4;
  margin: 0 5px;
  width: 35px;
  height: 35px;
  padding: 0px;
  text-align: center;
  line-height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease-in-out;
}
@media (max-width: 767px) {
  .testimonial-bg .owl-theme .owl-controls .owl-buttons div {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
}
.testimonial-bg .owl-theme .owl-controls .owl-buttons div:hover {
  background: #1E87C7;
}
.testimonial-bg .owl-prev {
  position: absolute;
  right: 52px;
  left: auto;
}
@media (max-width: 767px) {
  .testimonial-bg .owl-prev {
    right: 50px;
  }
}
.testimonial-bg .owl-next {
  position: absolute;
  right: 5px;
  left: auto;
}
@media (max-width: 767px) {
  .testimonial-bg .owl-next {
    right: 10px;
  }
}
.testimonial-bg .owl-theme .owl-controls,
.testimonial-bg .products .owl-theme .owl-controls {
  position: absolute;
  width: 100%;
  right: 10px;
  bottom: -10px;
  margin: 0;
}
.testimonial-bg .owl-prev::before {
  content: "\ec49";
  position: absolute;
  font-family: unicons-line !important;
  font-size: 20px;
  color: #fff;
}
.testimonial-bg .owl-next::before {
  content: "\eb9f";
  position: absolute;
  font-family: unicons-line !important;
  font-size: 20px;
  color: #fff;
}

.footer {
  background: #fff;
  position: relative;
  width: 100%;
  z-index: 9;
}
.footer::before {
  position: absolute;
  content: "";
  background: url(../images/shape6.png);
  right: 0;
  bottom: 0;
  width: 500px;
  height: 432px;
  z-index: -1;
}
@media (max-width: 767px) {
  .footer::before {
    display: none;
  }
}
.footer .logo {
  margin-bottom: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .footer .logo img {
    width: 150px;
  }
}
@media (max-width: 767px) {
  .footer .logo img {
    width: 120px;
  }
}
.footer .ftr_list {
  margin-top: 10px;
}
.footer .ftr_list ul li {
  transition: all 0.4s ease-in-out;
  padding: 2px 0px;
  list-style: none;
  color: #494C53;
  font-size: 0.875rem;
  font-weight: 400;
}
.footer .ftr_list ul li a {
  transition: all 0.4s ease-in-out;
  color: #494C53;
}
.footer .ftr_list ul li a:hover {
  color: #1E87C7;
}
.footer .ftr_list_2 {
  padding-left: 0;
  padding-bottom: 20px;
}
.footer .ftr_list_2 ul li {
  list-style: none;
  padding: 5px 0px 5px 30px;
  position: relative;
  font-weight: 400;
  color: #494C53;
  font-size: 0.875rem;
}
.footer .ftr_list_2 ul li a {
  transition: all 0.4s ease-in-out;
  color: #494C53;
  position: relative;
}
.footer .ftr_list_2 ul li a:hover {
  color: #1E87C7;
}
.footer .ftr_list_2 ul li i {
  position: absolute;
  left: 0;
  font-size: 1.5rem;
  font-weight: 400;
  color: #2BB4D4;
  top: 3px;
}
.footer h4 {
  color: #000;
  font-weight: 700;
  font-size: 1.4rem;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .footer h4 {
    font-size: 1.2rem;
  }
}
@media (max-width: 767px) {
  .footer h4 {
    font-size: 1rem;
  }
}
.footer .social-icons {
  display: flex;
}
.footer .social-icons li {
  padding: 0px 5px;
  list-style: none;
  font-size: 26px;
}
.footer .social-icons li a {
  color: #9A9EA6;
}
.footer .social-icons li a:hover {
  color: #1E87C7;
}
.footer .social-icons li:first-child {
  padding-left: 0px;
}
.footer .powered {
  font-size: 0.875rem;
}
.footer .powered a {
  font-size: 0.875rem;
  color: #494C53;
}

.inner-banner {
  width: 100%;
  background: #1E87C7;
  padding: 45px 0px;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .inner-banner {
    padding: 40px 0px;
  }
}
.inner-banner h3 {
  color: #fff;
  text-align: left;
  font-weight: 700;
  font-size: 2rem;
}
@media (max-width: 767px) {
  .inner-banner h3 {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .inner-banner {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .inner-banner {
    margin-top: 62px;
  }
}
@media (max-width: 480px) {
  .inner-banner {
    margin-top: 45px;
  }
}

.inner-banner-product {
  width: 100%;
  padding: 0;
  background: #1E87C7;
  height: auto;
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .inner-banner-product {
    margin-top: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .inner-banner-product {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .inner-banner-product {
    margin-top: 62px;
  }
}
@media (max-width: 480px) {
  .inner-banner-product {
    margin-top: 45px;
  }
}
.inner-banner-product .position-relative {
  position: relative !important;
}
.inner-banner-product .custom-bannre-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 1200px) {
  .inner-banner-product .custom-bannre-left {
    position: relative;
  }
}
.inner-banner-product .custom-bannre-left .product_box {
  padding: 3rem;
}
@media (max-width: 1400px) {
  .inner-banner-product .custom-bannre-left .product_box {
    padding: 1.5rem;
  }
}
@media (max-width: 480px) {
  .inner-banner-product .custom-bannre-left .product_box {
    padding: 1rem;
  }
}
.inner-banner-product .custom-bannre-left .product_box h1 {
  color: #fff;
  text-align: left;
  font-weight: 700;
  font-size: 2rem;
  position: relative;
  margin-bottom: 15px;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .inner-banner-product .custom-bannre-left .product_box h1 {
    font-size: 1.8rem;
  }
}
@media (max-width: 767px) {
  .inner-banner-product .custom-bannre-left .product_box h1 {
    font-size: 1.5rem;
  }
}
.inner-banner-product .custom-bannre-left .product_box h1::before {
  position: absolute;
  content: "";
  width: 40px;
  height: 5px;
  background: #A8DAF8;
  bottom: -8px;
  left: 0;
}
.inner-banner-product .custom-bannre-left .product_box p {
  color: #fff;
}

.navs {
  background: #EFFCFF;
  padding: 5px 0px;
}
.navs .breadcrumb {
  margin-bottom: 0;
}
.navs .breadcrumb li {
  font-size: 0.875rem;
}
.navs .breadcrumb li a {
  color: #2BB4D4;
}
.navs .breadcrumb li::before {
  color: #000;
}

.inner-container {
  width: 100%;
  background: rgb(43, 180, 212);
  background: linear-gradient(0deg, rgba(43, 180, 212, 0.1069677871) 0%, rgba(255, 255, 255, 0.8408613445) 100%);
}
.inner-container h1 {
  font-size: 2rem;
  color: #000;
  font-weight: 700;
  text-align: center;
}
.inner-container h1 span {
  color: #2BB4D4;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .inner-container h1 {
    font-size: 1.8rem;
  }
}
@media (max-width: 767px) {
  .inner-container h1 {
    font-size: 1.5rem;
  }
}
.inner-container h3 {
  font-size: 2rem;
  font-weight: 700;
  text-align: left;
}
.inner-container h3 span {
  color: #2BB4D4;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .inner-container h3 {
    font-size: 1.8rem;
  }
}
@media (max-width: 767px) {
  .inner-container h3 {
    font-size: 1.5rem;
  }
}
.inner-container h4 {
  font-size: 1.3rem;
  color: #2BB4D4;
  font-weight: 500;
  text-align: left;
}
.inner-container .testi_box {
  background: #f6f4f3;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  padding: 40px;
  width: 100%;
  margin: 0px;
  position: relative;
}
@media (max-width: 480px) {
  .inner-container .testi_box {
    margin: 0px;
    padding: 25px;
  }
}
.inner-container .testi_box .quote {
  position: absolute;
  right: 15px;
  top: 15px;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 480px) {
  .inner-container .testi_box .quote img {
    width: 60px;
    height: 60px;
  }
}
.inner-container .testi_box .heading {
  display: flex;
  align-items: center;
  padding-bottom: 15px;
  border-bottom: 1px solid #E2E4E9;
}
@media (max-width: 992px) {
  .inner-container .testi_box .heading {
    margin-top: 15px;
    padding-top: 15px;
  }
}
.inner-container .testi_box .heading .icon {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  width: 50px;
  height: 50px;
}
.inner-container .testi_box .heading .icon img {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.inner-container .testi_box .heading .name {
  margin-left: 10px;
}
.inner-container .testi_box .heading .name h5 {
  font-size: 0.875rem;
  font-weight: 600;
  color: #000;
}
.inner-container .testi_box .heading .name h5 span {
  display: block;
  color: #2BB4D4;
  font-weight: 400;
  font-size: 0.813rem;
}
.inner-container .testi_box p {
  text-align: left;
  font-size: 0.875rem;
}
.inner-container .search_boxes {
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  background: #fff;
  padding: 20px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  margin-bottom: 20px;
}
.inner-container .search_boxes p {
  transition: all 0.4s ease-in-out;
  text-align: left;
  color: #494C53;
  display: -webkit-box;
  height: 50px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 10px;
}
@media (max-width: 480px) {
  .inner-container .search_boxes p {
    height: 38px;
    min-height: 40px;
  }
}
@media (max-width: 767px) {
  .inner-container .search_boxes p {
    height: 48px;
  }
}
.inner-container .search_boxes h3 {
  font-size: 1.5rem;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .inner-container .search_boxes h3 {
    font-size: 1.4rem;
  }
}
@media (max-width: 767px) {
  .inner-container .search_boxes h3 {
    font-size: 1.3rem;
  }
}
.inner-container .no-result-found {
  width: 100%;
}
.inner-container .no-result-found h4 {
  text-align: center;
  font-weight: 600;
  font-size: 1.5rem;
  color: #000;
}
.inner-container .no-result-found h4 span {
  color: #1E87C7;
}
.inner-container .no-result-found p {
  text-align: center;
}
.inner-container .contact {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  padding-left: 0;
  padding-bottom: 20px;
  background: #2BB4D4;
  padding: 2rem 1.5rem;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}
.inner-container .contact ul li {
  list-style: none;
  padding: 5px 0px 5px 30px;
  position: relative;
  font-weight: 400;
  color: #494C53;
  font-size: 0.875rem;
}
.inner-container .contact ul li a {
  transition: all 0.4s ease-in-out;
  color: #494C53;
  position: relative;
}
.inner-container .contact ul li a:hover {
  color: #1E87C7;
}
.inner-container .contact ul li i {
  position: absolute;
  left: 0;
  font-size: 1.5rem;
  font-weight: 400;
  color: #2BB4D4;
  top: 3px;
}
.inner-container .contact h4 {
  color: #fff;
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 28px;
}
.inner-container .contact h4 span {
  display: block;
  font-size: 1rem;
  font-weight: 600;
}
.inner-container .contact .social-icons {
  display: flex;
  margin-top: 3rem;
}
.inner-container .contact .social-icons li {
  padding: 0px 5px;
  list-style: none;
  font-size: 26px;
}
.inner-container .contact .social-icons li a {
  color: #9A9EA6;
}
.inner-container .contact .social-icons li a:hover {
  color: #1E87C7;
}
.inner-container .contact .social-icons li:first-child {
  padding-left: 0px;
}
.inner-container .contact .social-icons li {
  color: #fff;
}
.inner-container .contact .social-icons li a {
  color: #fff;
}
.inner-container .contact .social-icons li a:hover {
  color: #fff;
}
.inner-container .contact ul {
  margin-top: 20px;
}
.inner-container .contact ul li {
  list-style: none;
  color: #fff;
}
.inner-container .contact ul li a {
  color: #fff;
}
.inner-container .contact ul li a:hover {
  color: #fff;
}
.inner-container .contact ul li i {
  color: #fff;
}
.inner-container .img_box {
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  background: #fff;
  padding: 15px;
  margin-left: 2rem;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
@media (max-width: 767px) {
  .inner-container .img_box {
    margin-left: 0rem;
  }
}
.inner-container .img_box img {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.inner-container .contact-form {
  padding: 1.5rem;
  background: #fff;
}
.inner-container .contact-form h3 {
  margin-bottom: 10px;
}
.inner-container .news_box {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 2rem;
  margin-bottom: 3rem;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
}
@media (max-width: 992px) {
  .inner-container .news_box {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 767px) {
  .inner-container .news_box {
    flex-direction: column;
  }
}
.inner-container .news_box:last-child {
  margin-bottom: 0;
}
.inner-container .news_box .img_box {
  transition: all 0.4s ease-in-out;
  background: #1E87C7;
}
@media (max-width: 767px) {
  .inner-container .news_box .img_box {
    width: 100%;
    margin-bottom: 10px;
  }
}
.inner-container .news_box .img_box img {
  transition: all 0.4s ease-in-out;
}
.inner-container .news_box .content_area {
  width: 60%;
  padding-left: 2rem;
}
@media (max-width: 767px) {
  .inner-container .news_box .content_area {
    width: 100%;
    padding-left: 0rem;
  }
}
.inner-container .news_box .content_area .date {
  font-size: 1rem;
  font-weight: 300;
}
@media (max-width: 992px) {
  .inner-container .news_box .content_area .date {
    font-size: 0.813rem;
  }
}
.inner-container .news_box .content_area .date i {
  color: #2BB4D4;
}
.inner-container .news_box .content_area h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #000;
  display: -webkit-box;
  line-height: 28px;
  height: 58px;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.inner-container .news_box .content_area p {
  display: -webkit-box;
  line-height: 28px;
  height: 80px;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.inner-container .news_box .content_area .btn_1 {
  margin-top: 20px;
}
.inner-container .news_box:hover .img_box img {
  opacity: 0.5;
}
.inner-container .recent {
  border: 1px solid #ededed;
  background: #F1F2F2;
  padding: 20px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}
.inner-container .recent h2 {
  font-size: 1.5rem;
  font-weight: 700;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .inner-container .recent h2 h2 {
    font-size: 20px;
  }
}
@media only screen and (min-width: 991px) and (max-width: 1200px) {
  .inner-container .recent h2 h2 {
    font-size: 22px;
  }
}
.inner-container .recent .line {
  border-bottom: 1px solid #dad7d7;
  margin: 10px 0px;
}
.inner-container .recent h4 {
  font-size: 16px;
  color: #494C53;
  font-weight: 400;
  text-align: left;
  display: -webkit-box;
  height: 40px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.inner-container .recent .btn_3 {
  padding: 10px 0px;
  background: none;
}
.inner-container .recent .btn_3 i {
  transition: all 0.4s ease-in-out;
}
.inner-container .recent .btn_3:hover i {
  padding-left: 10px;
}
.inner-container .recent span {
  font-size: 0.875rem;
  color: #494C53;
  font-weight: 400;
  display: block;
  margin-bottom: 5px;
  background: #E1DBDB;
  padding: 2px 10px;
  display: inline-block;
}
.inner-container .recent span i {
  color: #1E87C7;
  font-size: 14px;
}
.inner-container .recent p {
  transition: all 0.4s ease-in-out;
  text-align: left;
  color: #494C53;
  display: -webkit-box;
  height: 50px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 10px;
}
@media (max-width: 480px) {
  .inner-container .recent p {
    height: 38px;
    min-height: 40px;
  }
}
.inner-container .details {
  padding-right: 1.5rem;
}
@media (max-width: 767px) {
  .inner-container .details {
    padding-right: 0rem;
  }
}
.inner-container .details span {
  font-size: 1rem;
  color: #494C53;
  font-weight: 400;
}
@media (max-width: 480px) {
  .inner-container .details span {
    font-size: 0.875rem;
  }
}
.inner-container .details span i {
  color: #2BB4D4;
  font-size: 14px;
}
.inner-container .details img {
  width: 100%;
  margin-top: 15px;
}
.inner-container .details h4 {
  font-size: 1.5rem;
  color: #000;
  font-weight: 700;
}
.inner-container .products-page-item {
  margin-bottom: 2.25rem;
  padding-bottom: 2.25rem;
}
.inner-container .products-page-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}
.inner-container .products-page-item .products-image-back {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  width: 100%;
  height: 400px;
  background: rgb(222, 223, 223);
}
.inner-container .products-page-item .products-image-back img {
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .inner-container .products-page-item .products-image-back {
    height: 300px;
  }
}
@media (max-width: 767px) {
  .inner-container .products-page-item .products-image-back {
    height: 200px;
  }
}
.inner-container .products-page-item .owl-carousel {
  margin: 0px;
}
.inner-container .products-page-item .owl-carousel .owl-wrapper-outer {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.inner-container .products-page-item .owl-controls .owl-buttons div {
  cursor: pointer;
  display: block;
}
.inner-container .products-page-item .owl-pagination {
  display: none;
}
.inner-container .products-page-item .owl-theme .owl-controls .owl-buttons div {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  display: flex;
  zoom: 1;
  background: #2BB4D4;
  margin: 0 5px;
  width: 35px;
  height: 35px;
  padding: 0px;
  text-align: center;
  line-height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease-in-out;
}
@media (max-width: 767px) {
  .inner-container .products-page-item .owl-theme .owl-controls .owl-buttons div {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
}
.inner-container .products-page-item .owl-theme .owl-controls .owl-buttons div:hover {
  background: #1E87C7;
}
.inner-container .products-page-item .owl-prev {
  position: absolute;
  right: auto;
  left: 5px;
}
@media (max-width: 767px) {
  .inner-container .products-page-item .owl-prev {
    left: 5px;
  }
}
.inner-container .products-page-item .owl-next {
  position: absolute;
  right: 5px;
  left: auto;
}
@media (max-width: 767px) {
  .inner-container .products-page-item .owl-next {
    right: 5px;
  }
}
.inner-container .products-page-item .owl-theme .owl-controls,
.inner-container .products-page-item .products .owl-theme .owl-controls {
  position: absolute;
  width: 100%;
  top: 50%;
  margin: 0;
}
.inner-container .products-page-item .owl-prev::before {
  content: "\ec49";
  position: absolute;
  font-family: unicons-line !important;
  font-size: 20px;
  color: #fff;
}
.inner-container .products-page-item .owl-next::before {
  content: "\eb9f";
  position: absolute;
  font-family: unicons-line !important;
  font-size: 20px;
  color: #fff;
}
.inner-container .products-page-item .product-content {
  padding-left: 2rem;
}
.inner-container .products-page-item .product-content .mtop-3 {
  margin-top: 10px;
}
@media (max-width: 767px) {
  .inner-container .products-page-item .product-content .mtop-3 {
    margin-top: 5px;
  }
}
@media (max-width: 767px) {
  .inner-container .products-page-item .product-content {
    padding-left: 0;
  }
}
.inner-container .products-page-item .product-content h2 {
  position: relative;
  margin-bottom: 15px;
  color: #494C53;
  font-weight: 700;
}
.inner-container .products-page-item .product-content h4 {
  font-size: 1.3rem;
  color: #1E87C7;
  font-weight: 700;
  margin: 15px 0 10px 0;
}
.inner-container .products-page-item .product-content ul {
  display: flex;
  margin-top: 10px;
  flex-wrap: wrap;
}
.inner-container .products-page-item .product-content ul li {
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  transition: all 0.4s ease-in-out;
  list-style: none;
  padding: 5px 10px;
  border: 1px solid #D5C6C6;
  margin-right: 5px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 5px;
}
.inner-container .products-page-item .product-content ul li:hover {
  background-color: #1E87C7;
  color: #fff;
}
.inner-container .mission-vision {
  border-radius: 0px 0px 20px 0px;
  -webkit-border-radius: 0px 0px 20px 0px;
  -moz-border-radius: 0px 0px 20px 0px;
  -ms-border-radius: 0px 0px 20px 0px;
  -o-border-radius: 0px 0px 20px 0px;
}
.inner-container .mission-vision img {
  border-radius: 0px 0px 20px 0px;
  -webkit-border-radius: 0px 0px 20px 0px;
  -moz-border-radius: 0px 0px 20px 0px;
  -ms-border-radius: 0px 0px 20px 0px;
  -o-border-radius: 0px 0px 20px 0px;
}
.inner-container .main {
  width: 100%;
}
.inner-container .main p {
  text-align: center;
}
.inner-container .career_heading {
  background: #F6F6F6;
  padding: 2rem;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
@media (max-width: 767px) {
  .inner-container .career_heading {
    padding: 1.5rem;
  }
}
.inner-container .imgcareer {
  position: relative;
}
.inner-container .faq {
  width: 100%;
  background: #fff;
}
.inner-container .faq h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .inner-container .faq h3 {
    font-size: 1.3rem;
  }
}
@media (max-width: 767px) {
  .inner-container .faq h3 {
    font-size: 1.1rem;
  }
}
.inner-container .faqitem .header {
  padding: 15px;
  background: #1E87C7;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  border-bottom: 1px solid #1875AD;
}
.inner-container .faqitem .header h4 {
  margin: 0;
  color: #fff;
  font-size: 1rem;
}
.inner-container .faqitem .header .fa.fa-minus {
  display: none;
}
.inner-container .faqitem.jquery-accordion-active .fa.fa-minus {
  display: block;
}
.inner-container .faqitem.jquery-accordion-active .fa.fa-plus {
  display: none;
}
.inner-container .faqitem .content {
  padding: 15px;
  display: none;
}
.inner-container .faqitem .content .experience {
  font-size: 1rem;
  color: #1E87C7;
  font-weight: 700;
  margin-bottom: 5px;
}
.inner-container .faqitem .content p {
  margin: 0;
}
.inner-container .faqitem .content h5 {
  font-size: 1rem;
  font-weight: 600;
  margin: 15px 0px 10px 0px;
}
.inner-container .faqitem .content ul {
  margin-left: 20px;
}
@media (max-width: 480px) {
  .inner-container .faqitem .content ul {
    margin-left: 12px;
  }
}
.inner-container .faqitem .content ul li {
  color: #494C53;
}
@media (max-width: 480px) {
  .inner-container .faqitem .content ul li {
    font-size: 0.875rem;
  }
}
.inner-container .faqitem .content ul ::marker {
  color: #2BB4D4;
}
.inner-container .apply-box {
  background: #fff;
  padding: 2rem;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
}
@media (max-width: 767px) {
  .inner-container .apply-box {
    padding: 1.5rem;
  }
}
.inner-container .apply-box p span {
  font-weight: 600;
  color: #2BB4D4;
}

.sub_container {
  width: 100%;
  background: rgb(43, 180, 212);
  background: linear-gradient(90deg, rgba(43, 180, 212, 0.3534663866) 0%, rgba(255, 255, 255, 0.8408613445) 100%);
}
.sub_container h2 {
  font-size: 2rem;
  color: #000;
  font-weight: 700;
  text-align: left;
}
.sub_container h2 span {
  color: #2BB4D4;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .sub_container h2 {
    font-size: 1.8rem;
  }
}
@media (max-width: 767px) {
  .sub_container h2 {
    font-size: 1.5rem;
  }
}
.sub_container .img-box {
  margin: 2rem;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
  border: 10px solid #fff;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
  position: relative;
}
@media (max-width: 1200px) {
  .sub_container .img-box {
    margin: 0;
  }
}
.sub_container .img-box img {
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}
.sub_container .pic {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  width: 30%;
  margin-bottom: 10px;
  position: relative;
  z-index: 9;
}
.sub_container .pic::before {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  position: absolute;
  content: "";
  right: -35px;
  top: 0;
  width: 100px;
  height: 100px;
  background: rgba(65, 180, 251, 0.3607843137);
  z-index: -1;
}
.sub_container .pic img {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border: 5px solid #fff;
}

.sub_3 {
  background: rgb(43, 180, 212);
  background: linear-gradient(270deg, rgba(43, 180, 212, 0.3534663866) 0%, rgba(255, 255, 255, 0.8408613445) 100%);
}

.sub_4 {
  background: #1E87C7;
}
.sub_4 h2 {
  color: #fff;
}
.sub_4 p {
  color: #fff;
}
@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
.fancybox-bg {
  background: #1E87C7;
}

.btn-whatsapp-pulse {
  background: #25d366;
  color: white;
  position: fixed;
  left: 20px;
  font-size: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: 30px;
  z-index: 99;
  width: 50px;
  height: 50px;
  padding: 35px;
  text-decoration: none;
  border-radius: 50%;
  animation-name: pulse;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}
@media (max-width: 767px) {
  .btn-whatsapp-pulse {
    width: 40px;
    height: 40px;
    bottom: 20px;
    font-size: 30px;
    padding: 26px;
  }
}

.btn-whatsapp-pulse:hover {
  color: white;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  80% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
}
.btn-whatsapp-pulse-border {
  bottom: 120px;
  right: 20px;
  animation-play-state: paused;
}

.btn-whatsapp-pulse-border::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  padding: 25px;
  border: 5px solid #25d366;
  opacity: 0.75;
  animation-name: pulse-border;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}

.modal .modal-content {
  border: 8px solid #1E87C7;
}
.modal .modal-header h5 {
  font-weight: 700;
}
.modal .modal-body {
  padding: 1.5rem;
}
.modal .modal-body h3 {
  font-weight: 600;
  font-size: 1.2rem;
  color: #494C53;
  text-align: left;
}
.modal .modal-body h3 span {
  color: #1E87C7;
}

.desktop_hide {
  display: none !important;
}
@media (max-width: 992px) {
  .desktop_hide {
    display: block !important;
  }
}

.search_products .modal-header h5 {
  font-size: 1rem;
}
.search_products .modal-body {
  padding: 20px 15px;
}
.search_products .modal-body .search {
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .search_products .modal-body .search {
    margin-left: 0rem;
    margin-right: 3rem;
    top: 12px;
  }
}
.search_products .modal-body .search .icon {
  position: absolute;
  top: 5px;
  left: 10px;
}
.search_products .modal-body .search .icon i {
  color: #9A9EA6;
  position: relative;
  z-index: 99;
}
.search_products .modal-body .search .search-form {
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  background: #F0F1F2;
  width: 100%;
  border: none;
  font-size: 0.813rem;
  padding: 5px 15px 5px 30px;
  position: relative;
}

.btn_1 {
  transition: all 0.4s ease-in-out;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  padding: 10px 15px;
  border: none;
  background: #2BB4D4;
  color: #fff;
}
@media (max-width: 992px) {
  .btn_1 {
    padding: 8px 10px;
    font-size: 0.875rem;
  }
}
.btn_1 i {
  transition: all 0.4s ease-in-out;
}
.btn_1:hover {
  background: #1E87C7;
  color: #fff;
}
.btn_1:hover i {
  padding-left: 5px;
}
@media (max-width: 767px) {
  .btn_1:hover i {
    padding-left: 0px;
  }
}

.btn_2 {
  transition: all 0.4s ease-in-out;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  background: #F0F0EF;
  padding: 10px 15px;
  border: none;
  color: #494C53;
}
@media (max-width: 992px) {
  .btn_2 {
    padding: 8px 10px;
    font-size: 0.875rem;
  }
}
.btn_2 i {
  transition: all 0.4s ease-in-out;
}
.btn_2:hover {
  background: #E8E7E5;
}
.btn_2:hover i {
  padding-left: 5px;
}
@media (max-width: 767px) {
  .btn_2:hover i {
    padding-left: 0px;
  }
}

.btn_3 {
  transition: all 0.4s ease-in-out;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  padding: 10px;
}

.btn_4 {
  transition: all 0.4s ease-in-out;
  color: #2BB4D4;
  padding: 10px 0px;
  border: none;
  font-weight: 600;
  background: none;
}

.navigation {
  width: 100%;
  position: relative;
  font-family: inherit;
}
.navigation * {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

.align-to-right-mob {
  float: right;
  display: none !important;
}
@media (max-width: 1006px) {
  .align-to-right-mob {
    display: block !important;
  }
}

.navigation-portrait .nav-menu > li span {
  font-size: 0;
}
.navigation-portrait .boxes span {
  width: 26px !important;
  height: 26px !important;
}
.navigation-portrait .boxes h5 {
  color: #494C53 !important;
  font-size: 14px !important;
}
.navigation-portrait .boxes h5 a {
  color: #494C53 !important;
}
.navigation-portrait .searchlist {
  display: none;
}
.navigation-portrait .top__section {
  display: none;
}
.navigation-portrait .nav-toggle {
  display: block;
}
.navigation-portrait .align-to-left .nav-menu > li span {
  display: none;
}
.navigation-portrait .dropdown {
  width: 100% !important;
}
.navigation-portrait .btn1 {
  padding: 4px 15px;
}
.navigation-portrait .nav-menus-wrapper {
  width: 320px;
  height: 100%;
  top: 0;
  left: -400px;
  position: fixed;
  background-color: #ffffff;
  z-index: 20000;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition-duration: 0.8s;
  transition-timing-function: ease;
}
.navigation-portrait .nav-menus-wrapper.nav-menus-wrapper-right {
  left: auto;
  right: -400px;
}
.navigation-portrait .nav-menus-wrapper.nav-menus-wrapper-open {
  left: 0;
}
.navigation-portrait .nav-menus-wrapper.nav-menus-wrapper-right.nav-menus-wrapper-open {
  left: auto;
  right: 0;
}
.navigation-portrait .nav-menus-wrapper-close-button {
  display: block;
}
.navigation-portrait .nav-menu {
  width: 100%;
}
.navigation-portrait .nav-menu > li {
  width: 100%;
  position: relative;
  border-top: solid 1px #f0f0f0;
}
.navigation-portrait .nav-menu > li:last-child {
  border-bottom: solid 1px #f0f0f0;
}
.navigation-portrait .nav-menu > li > a {
  width: 100%;
  height: auto;
  padding: 12px 15px 12px 26px;
  color: #494C53;
}
.navigation-portrait .nav-menu.nav-menu-social {
  width: 100%;
  text-align: center;
}
.navigation-portrait .nav-menu.nav-menu-social > li {
  width: auto;
}
.navigation-portrait .nav-menu.nav-menu-social > li > a {
  padding: 15px;
}
.navigation-portrait .submenu-indicator {
  width: 54px;
  height: 44px;
  margin-top: 0;
  position: absolute;
  top: 0;
  right: 0;
  text-align: center;
  z-index: 20000;
}
.navigation-portrait .submenu-indicator-chevron {
  position: absolute;
  top: 18px;
  left: 24px;
}
.navigation-portrait .submenu-indicator.submenu-indicator-up {
  transform: rotate(-180deg);
}
.navigation-portrait .nav-search {
  height: 48px;
  padding: 0 10px;
  margin-right: 52px;
}
.navigation-portrait .nav-search-button {
  width: 50px;
  height: 48px;
  line-height: 46px;
  font-size: 22px;
}
.navigation-portrait .nav-search-inner {
  height: 48px;
}
.navigation-portrait .nav-search-inner input[type=text] {
  height: 48px;
  font-size: 18px;
  line-height: 48px;
}
.navigation-portrait .nav-search-inner input[type=search] {
  height: 48px;
  font-size: 18px;
  line-height: 48px;
}
.navigation-portrait .nav-search-close-button {
  top: 10px;
  right: 14px;
}
.navigation-portrait .nav-button {
  width: calc(100% - 52px);
  margin: 17px 38px;
}
.navigation-portrait .nav-text {
  width: calc(100% - 52px);
  margin: 12px 26px 0;
}
.navigation-portrait .nav-text + ul {
  margin-top: 15px;
}
.navigation-portrait .nav-dropdown {
  width: 100%;
  position: static;
  left: 0;
}
.navigation-portrait .nav-dropdown > li > a {
  padding: 12px 20px 12px 30px;
}
.navigation-portrait .nav-dropdown > li > ul > li > a {
  padding-left: 50px;
}
.navigation-portrait .nav-dropdown > li > ul > li > ul > li > a {
  padding-left: 70px;
}
.navigation-portrait .nav-dropdown > li > ul > li > ul > li > ul > li > a {
  padding-left: 90px;
}
.navigation-portrait .nav-dropdown > li > ul > li > ul > li > ul > li > ul > li > a {
  padding-left: 110px;
}
.navigation-portrait .nav-dropdown .submenu-indicator {
  right: 0;
  top: 0;
}
.navigation-portrait .nav-dropdown .submenu-indicator .submenu-indicator-chevron {
  transform: rotate(45deg);
}
.navigation-portrait .nav-dropdown-horizontal .nav-dropdown-horizontal {
  border-top: none;
}
.navigation-portrait .nav-dropdown-horizontal > li {
  width: 100%;
}
.navigation-portrait .nav-dropdown-horizontal .submenu-indicator {
  height: 42px;
  top: 0;
  transform: rotate(0deg);
}
.navigation-portrait .nav-dropdown-horizontal .submenu-indicator.submenu-indicator-up {
  transform: rotate(-180deg);
}

.navigation-fixed-wrapper {
  width: 100%;
  left: 0;
  z-index: 19998;
  will-change: opacity;
}
.navigation-fixed-wrapper .navigation {
  margin-right: auto;
  margin-left: auto;
}

.navigation-fixed-wrapper.fixed {
  position: fixed !important;
  animation: fade 0.5s;
}

.navigation-fixed-placeholder {
  width: 100%;
  display: none;
}

.navigation-fixed-placeholder.navigation-fixed-placeholder.visible {
  display: block;
}

.navigation-hidden {
  width: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  position: absolute;
  top: -9999px;
}
.navigation-hidden .nav-header {
  display: none;
}
.navigation-hidden .nav-search {
  display: none;
}

.align-to-right {
  float: right;
}

.nav-header {
  float: left;
}

.nav-brand {
  padding: 0 10px;
  text-decoration: none !important;
}

.nav-logo > img {
  height: 48px;
  margin: 11px auto;
  padding: 0 15px;
  float: left;
}
.nav-logo:focus > img {
  outline: initial;
}

.nav-toggle {
  width: 30px;
  height: 30px;
  padding: 6px 2px 0;
  position: absolute;
  top: 50%;
  margin-top: 14px;
  right: 15px;
  display: none;
  cursor: pointer;
}
.nav-toggle:before {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: #1E87C7;
  border-radius: 10px;
  box-shadow: 0 0.5em 0 0 #1E87C7, 0 1em 0 0 #1E87C7;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .nav-toggle {
    margin-top: -26px;
  }
}
@media (max-width: 767px) {
  .nav-toggle {
    margin-top: 10px;
  }
}
@media (max-width: 480px) {
  .nav-toggle {
    margin-top: 0px;
  }
}

.nav-menus-wrapper-close-button {
  width: 30px;
  height: 40px;
  margin: 10px 7px;
  display: none;
  float: right;
  color: #70798b;
  font-size: 26px;
  cursor: pointer;
}

.nav-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: normal;
  font-size: 0;
  transition: all 0.4s ease-in-out;
}
.nav-menu > li {
  display: inline-block;
  text-align: left;
  float: left;
  transition: all 0.4s ease-in-out;
}
.nav-menu > li > a {
  transition: all 0.4s ease-in-out;
  padding: 20px 15px;
  display: inline-block;
  position: relative;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  color: #494C53;
  transition: color 0.3s, background 0.3s;
}
.nav-menu > li > a > i {
  width: 18px;
  height: 16px;
  line-height: 16px;
  transform: scale(1.4);
}
.nav-menu > li > a > [class*=ion-] {
  width: 18px;
  height: 16px;
  line-height: 16px;
  transform: scale(1.4);
  width: 16px;
  display: inline-block;
  transform: scale(1.8);
}
.nav-menu > li:hover {
  transition: all 0.4s ease-in-out;
}
.nav-menu > li:hover > a {
  color: #494C53;
  transition: all 0.4s ease-in-out;
}
.nav-menu > li:hover > a .submenu-indicator-chevron {
  border-color: transparent #2BB4D4 #2BB4D4 transparent;
}
.nav-menu > li.active {
  transition: all 0.4s ease-in-out;
}
.nav-menu > li.active > a {
  transition: all 0.4s ease-in-out;
  color: #2BB4D4;
}
.nav-menu > li.focus {
  transition: all 0.4s ease-in-out;
}
.nav-menu > li.focus > a {
  color: #2BB4D4;
  transition: all 0.4s ease-in-out;
}
.nav-menu > .active > a .submenu-indicator-chevron {
  border-color: transparent #2BB4D4 #2BB4D4 transparent;
}
.nav-menu > .focus > a .submenu-indicator-chevron {
  border-color: transparent #2BB4D4 #2BB4D4 transparent;
}

.nav-menu.nav-menu-centered {
  text-align: center;
}
.nav-menu.nav-menu-centered > li {
  float: none;
}

.nav-menu.nav-menu-left {
  text-align: left;
}
.nav-menu.nav-menu-left > li {
  float: none;
}

.nav-menu + .nav-menu > li:first-child {
  border-top: none;
}

.nav-menu.nav-menu-social > li {
  text-align: center;
  float: none;
  border: none !important;
}
.nav-menu.nav-menu-social > li > a > [class*=ion-] {
  font-size: 12px;
}
.nav-menu.nav-menu-social > li > a > .fa {
  font-size: 14px;
}

.submenu-indicator {
  margin-left: 6px;
  margin-top: 6px;
  float: right;
  transition: all 0.3s;
}

.submenu-indicator-chevron {
  height: 6px;
  width: 6px;
  display: block;
  border-style: solid;
  border-width: 0 2px 2px 0;
  border-color: transparent #2BB4D4 #2BB4D4 transparent;
  transform: rotate(45deg);
  transition: border 0.3s;
}

.nav-overlay-panel {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: fixed;
  display: none;
  z-index: 19999;
}

.no-scroll {
  touch-action: none;
  overflow-x: hidden;
}

.nav-search {
  height: 70px;
  float: right;
  z-index: 19998;
}
.nav-search > form {
  width: 100%;
  height: 100%;
  padding: 0 auto;
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #ffffff;
  z-index: 99;
}

.nav-search-button {
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  cursor: pointer;
  background-color: #fbfcfd;
}
.nav-search-button:hover .nav-search-icon {
  color: #8CC152;
}

.nav-search-icon {
  width: 14px;
  height: 14px;
  margin: 2px 8px 8px 4px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  color: #70798b;
  text-align: left;
  text-indent: -9999px;
  border: 2px solid;
  border-radius: 50%;
  transform: rotate(-45deg);
  transition: color 0.3s;
}
.nav-search-icon:after {
  content: "";
  pointer-events: none;
}
.nav-search-icon:before {
  content: "";
  pointer-events: none;
  width: 2px;
  height: 11px;
  top: 11px;
  position: absolute;
  left: 50%;
  border-radius: 0 0 1px 1px;
  box-shadow: inset 0 0 0 32px;
  transform: translateX(-50%);
}

.nav-search-inner {
  width: 70%;
  height: 70px;
  margin: auto;
  display: table;
}
.nav-search-inner input[type=text] {
  height: 70px;
  width: 100%;
  margin: 0;
  padding: 0 12px;
  font-size: 26px;
  text-align: center;
  color: #70798b;
  outline: none;
  line-height: 70px;
  border: none;
  background-color: transparent;
  transition: all 0.3s;
}
.nav-search-inner input[type=search] {
  height: 70px;
  width: 100%;
  margin: 0;
  padding: 0 12px;
  font-size: 26px;
  text-align: center;
  color: #70798b;
  outline: none;
  line-height: 70px;
  border: none;
  background-color: transparent;
  transition: all 0.3s;
}

.nav-search-close-button {
  width: 28px;
  height: 28px;
  display: block;
  position: absolute;
  right: 20px;
  top: 20px;
  line-height: normal;
  color: #70798b;
  font-size: 20px;
  cursor: pointer;
  text-align: center;
}

.nav-button {
  margin: 12px 13px 0;
  padding: 0px 14px;
  display: inline-block;
  color: #fff;
  font-size: 14px;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  transition: opacity 0.3s;
}
.nav-button .box {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.nav-button .box h4 {
  font-size: 12px;
  font-weight: 400;
  text-align: left;
  color: #868484;
}
.nav-button .box h4 span {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #2BB4D4;
}
.nav-button:hover {
  color: #fff;
  text-decoration: none;
  opacity: 0.85;
}
.nav-button:focus {
  color: #fff;
  text-decoration: none;
  opacity: 0.85;
}

.nav-text {
  margin: 25px 15px;
  display: inline-block;
  color: #70798b;
  font-size: 14px;
}

.nav-dropdown {
  min-width: 180px;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 98;
  white-color-space: nowrap;
}
@media (max-width: 992px) {
  .nav-dropdown {
    flex-direction: column;
  }
}
.nav-dropdown .nav-dropdown {
  left: 100%;
}
.nav-dropdown > li {
  width: 100%;
  float: left;
  clear: both;
  position: relative;
  text-align: left;
}
.nav-dropdown > li > a {
  transition: all 0.4s ease-in-out;
  width: 100%;
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2784313725);
  display: inline-block;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
  float: left;
  background: #1E87C7;
  transition: color 0.3s, background 0.3s;
}
@media only screen and (min-width: 1200px) and (max-width: 1400px) {
  .nav-dropdown > li > a {
    padding: 6px 5px !important;
  }
}
@media only screen and (min-width: 900px) and (max-width: 1200px) {
  .nav-dropdown > li > a {
    padding: 6px 5px !important;
  }
}
@media (max-width: 992px) {
  .nav-dropdown > li > a {
    text-align: left;
  }
}
.nav-dropdown > li > a .menubox {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 992px) {
  .nav-dropdown > li > a .menubox {
    align-items: flex-start;
  }
}
.nav-dropdown > li > a .menubox h4 {
  transition: all 0.4s ease-in-out;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  color: #fff;
}
@media only screen and (min-width: 992px) and (max-width: 1400px) {
  .nav-dropdown > li > a .menubox h4 {
    font-size: 0.813rem;
  }
}
@media (max-width: 992px) {
  .nav-dropdown > li > a .menubox h4 {
    text-align: left;
    font-weight: 500;
    font-size: 0.875rem;
  }
}
.nav-dropdown > li > a .menubox .img_pic {
  margin-top: 15px;
  width: 100%;
}
@media (max-width: 992px) {
  .nav-dropdown > li > a .menubox .img_pic {
    display: none;
  }
}
.nav-dropdown > li > a .menubox .img_pic img {
  width: 60px;
  height: 60px;
}
@media (max-width: 992px) {
  .nav-dropdown > li > a .menubox .img_pic img {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 480px) {
  .nav-dropdown > li > a .menubox .img_pic img {
    width: 30px;
    height: 30px;
  }
}
.nav-dropdown > li:hover {
  transition: all 0.4s ease-in-out;
}
.nav-dropdown > li:hover > a {
  transition: all 0.4s ease-in-out;
  color: #fff;
}
.nav-dropdown > li:hover > a .submenu-indicator-chevron {
  border-color: transparent #fff #fff transparent;
}
.nav-dropdown > li > .nav-dropdown-left {
  left: auto;
  right: 100%;
}
.nav-dropdown > li.focus > a {
  color: #fff;
  background: #2BB4D4;
}
.nav-dropdown .submenu-indicator {
  right: 15px;
  top: 14px;
  position: absolute;
}
.nav-dropdown .submenu-indicator .submenu-indicator-chevron {
  transform: rotate(-45deg);
  border-color: transparent #2BB4D4 #2BB4D4 transparent;
  display: none;
}
.nav-dropdown > .focus > a .submenu-indicator-chevron {
  border-color: transparent #fff #fff transparent;
}

.nav-dropdown.nav-dropdown-left {
  right: 0;
}

.navigation-landscape .nav-dropdown.nav-dropdown-left > li > a {
  text-align: right;
}
.navigation-landscape .nav-dropdown.nav-dropdown-left .submenu-indicator {
  left: 10px;
}
.navigation-landscape .nav-dropdown.nav-dropdown-left .submenu-indicator .submenu-indicator-chevron {
  transform: rotate(135deg);
}

.nav-dropdown-horizontal {
  width: 100%;
  left: 0;
  background-color: #1E87C7;
}
.nav-dropdown-horizontal .nav-dropdown-horizontal {
  width: 100%;
  top: 100%;
  left: 0;
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgb(255, 255, 255) 35%, rgb(205, 237, 245) 100%);
}
.nav-dropdown-horizontal .nav-dropdown-horizontal .main-box {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.nav-dropdown-horizontal .nav-dropdown-horizontal .main-box .img-box {
  position: relative;
  margin-bottom: 15px;
}
.nav-dropdown-horizontal .nav-dropdown-horizontal .main-box .img-box img {
  width: 100px;
}
.nav-dropdown-horizontal .nav-dropdown-horizontal .main-box h5 {
  text-align: center;
  font-weight: 500;
  font-size: 0.875rem;
  color: #000;
}
@media only screen and (min-width: 992px) and (max-width: 1400px) {
  .nav-dropdown-horizontal .nav-dropdown-horizontal .main-box h5 .nav-dropdown > li > a .menubox h4 {
    font-size: 0.813rem;
  }
}
.nav-dropdown-horizontal .nav-dropdown-horizontal .main_boxes {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px 0px;
}
@media (max-width: 992px) {
  .nav-dropdown-horizontal .nav-dropdown-horizontal .main_boxes {
    display: none;
  }
}
.nav-dropdown-horizontal .nav-dropdown-horizontal .main_boxes .main-box_sub {
  width: 200px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.nav-dropdown-horizontal .nav-dropdown-horizontal .main_boxes .main-box_sub .img-box {
  position: relative;
  margin-bottom: 15px;
}
.nav-dropdown-horizontal .nav-dropdown-horizontal .main_boxes .main-box_sub .img-box img {
  width: 100px;
}
.nav-dropdown-horizontal .nav-dropdown-horizontal .main_boxes .main-box_sub h5 {
  text-align: center;
  font-weight: 500;
  font-size: 0.875rem;
  color: #000;
}
.nav-dropdown-horizontal > li {
  width: 16.6%;
  clear: none;
  position: static;
}
.nav-dropdown-horizontal > li > a {
  position: relative;
}
.nav-dropdown-horizontal .submenu-indicator {
  height: 18px;
  top: 11px;
  transform: rotate(90deg);
}

@media only screen and (min-width: 1200px) and (max-width: 1400px) {
  .nav-menu li a {
    padding: 10px 12px;
    font-size: 0.875rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .nav-menu li a {
    padding: 10px 12px;
    font-size: 0.875rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .nav-menu li a {
    padding: 8px 15px;
  }
}
/*owl theme start */
.carousel-control-prev {
  left: 0;
  font-size: 0px;
}

.carousel-control-next {
  right: 0;
  font-size: 0px;
}

.owl-item {
  display: flex;
  height: auto !important;
}

.owl-carousel {
  position: relative;
  width: 100%;
  float: left;
  margin: 30px 0 0;
}
.owl-carousel .owl-wrapper {
  display: none;
  position: relative;
  transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.owl-carousel .owl-wrapper-outer {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.owl-carousel .owl-wrapper-outer.autoHeight {
  transition: height 0.5s ease-in-out;
}
.owl-carousel .owl-item {
  float: left;
  padding: 0;
  transform: translate3d(0, 0, 0);
}

.owl-controls {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.owl-controls .owl-buttons div {
  cursor: pointer;
  display: none;
}
.owl-controls .owl-page {
  cursor: pointer;
  display: none;
}

.owl-theme .owl-controls {
  margin-top: 35px;
  text-align: center;
  margin: 0 0 0;
  width: 100%;
  float: left;
}
.owl-theme .owl-controls .owl-page {
  display: inline-block;
  zoom: 1;
}
.owl-theme .owl-controls .owl-page span {
  display: block;
  width: 15px;
  height: 15px;
  margin: 5px 2px;
  background: #d4d2d2;
  border: #fff 1px solid;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.owl-theme .owl-controls .owl-page span.owl-numbers {
  height: auto;
  width: auto;
  color: #fff;
  padding: 2px 10px;
  font-size: 12px;
  border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}
.owl-theme .owl-controls .owl-page.active span {
  background: #959597;
  border: #959597 1px solid;
}
.owl-theme .owl-controls.clickable .owl-page:hover span {
  background: #959597;
  border: #959597 1px solid;
}
.owl-theme .owl-page.active span {
  background: #a4a1a1;
  border: #a4a1a1 1px solid;
}

.owl-goDown-out {
  animation: scaleToFade 0.7s ease both;
}

.owl-goDown-in {
  transition: all 0.4s ease-in-out;
  animation: goDown 0.6s ease both;
}

.owl-fade-out {
  z-index: 10;
  transition: all 0.4s ease-in-out;
  animation: fadeOut 0.7s both ease;
}

.owl-fade-in {
  transition: all 0.4s ease-in-out;
  animation: fadeIn 0.7s both ease;
}
@keyframes empty {
  0% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes scaleToFade {
  to {
    opacity: 0;
    transform: scale(0.8);
  }
}
@keyframes goDown {
  from {
    transform: translateY(-100%);
  }
}/*# sourceMappingURL=main.css.map */