@import url("https://fonts.googleapis.com/css?family=Barlow:400,500,600,700,800&amp;display=swap");
@import url("https://fonts.googleapis.com/css?family=DM+Serif+Display:400,400i&amp;display=swap");
@import url("https://fonts.googleapis.com/css?family=Muli:300,300i,400,400i,500,500i,600,600i,700,700i,800&amp;display=swap");

:root {
  --primary: #e81b22;
  --secondary: #025d8a;
  --tertiary: #024182;
}

body {
  padding: 0;
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  font-family: "Barlow";
  color: #333333;
}

a {
  display: inline-block;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  text-decoration: none;
  color: #0160e7;
}

a:hover {
  text-decoration: none;
  color: #333333;
}

a:focus {
  text-decoration: none;
}

button {
  outline: 0 !important;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none;
}

button:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--tertiary);
  font-weight: 700;
  font-family: "Muli", sans-serif !important;
}
h3 {
  font-size: 25px;
}

.d-table {
  width: 100%;
  height: 100%;
}

.d-table-cell {
  vertical-align: middle;
}

p {
  font-size: 16px;
  margin-bottom: 15px;
  color: #4b473e;
}

p:last-child {
  margin-bottom: 0;
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.form-control {
  height: 50px;
  color: #333333;
  border: 1px solid #e8e8e8;
  background-color: #f9f9f9;
  border-radius: 10px;
  font-size: 15px;
  padding: 10px 20px;
  width: 100%;
}

.form-control::-webkit-input-placeholder {
  color: #495057;
}

.form-control:-ms-input-placeholder {
  color: #495057;
}

.form-control::-ms-input-placeholder {
  color: #495057;
}

.form-control::placeholder {
  color: #495057;
}

.form-control:focus {
  color: #000000;
  background-color: transparent;
  -webkit-box-shadow: unset;
  box-shadow: unset;
  outline: 0;
  border: 1px solid #0160e7;
}

.form-control:hover:focus,
.form-control:focus {
  -webkit-box-shadow: unset;
  box-shadow: unset;
}

textarea.form-control {
  height: auto;
  height: 250px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pt-70 {
  padding-top: 70px;
}

.pb-70 {
  padding-bottom: 70px;
}

.mt-30 {
  margin-top: 30px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mt-minus-70 {
  margin-top: -70px;
}

.mb-minus-70 {
  margin-bottom: -70px;
}

.ml-30 {
  margin-left: 30px;
}

.mr-30 {
  margin-right: 30px;
}

.fun-blue-bg {
  background-color: #24416b;
}

/*
Go Top Style
======================================================*/
.go-top {
  position: fixed;
  cursor: pointer;
  top: 0;
  right: 15px;
  background-color: #333333;
  z-index: 4;
  width: 40px;
  text-align: center;
  height: 42px;
  line-height: 42px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.9s;
  transition: 0.9s;
}

.go-top i {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  color: #ffffff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 20px;
}

.go-top i:last-child {
  opacity: 0;
  visibility: hidden;
  top: 60%;
}

.go-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #0160e7;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.go-top:hover {
  color: #ffffff;
  background-color: #0160e7;
}

.go-top:hover::before {
  opacity: 1;
  visibility: visible;
}

.go-top:hover i:first-child {
  opacity: 0;
  top: 0;
  visibility: hidden;
}

.go-top:hover i:last-child {
  opacity: 1;
  visibility: visible;
  top: 50%;
}

.go-top:focus {
  color: #ffffff;
}

.go-top:focus::before {
  opacity: 1;
  visibility: visible;
}

.go-top:focus i:first-child {
  opacity: 0;
  top: 0;
  visibility: hidden;
}

.go-top:focus i:last-child {
  opacity: 1;
  visibility: visible;
  top: 50%;
}

.go-top.active {
  top: 98%;
  -webkit-transform: translateY(-98%);
  transform: translateY(-98%);
  opacity: 1;
  visibility: visible;
}

/*
Page-navigation Area Style
======================================================*/
.page-navigation-area {
  text-align: center;
  margin: 20px auto 0;
  display: table;
}

.page-navigation-area .page-link {
  color: #0160e7;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 15px #d0d0d0;
  box-shadow: 0 0 15px #d0d0d0;
  width: 40px;
  height: 40px;
  border: 1px solid #ffffff;
  line-height: 24px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  font-weight: 700;
}

.page-navigation-area .page-link i {
  margin-right: -4px;
  font-size: 21px;
}

.page-navigation-area .page-link:hover {
  color: #ffffff;
  background-color: #0160e7;
  border: 1px solid #0160e7;
}

.page-navigation-area .page-link:focus {
  z-index: 2;
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.page-navigation-area .page-link.page-links i::before {
  margin-left: -4px;
}

.page-navigation-area .page-item {
  padding: 0 8px 0;
}

.page-navigation-area .page-item:first-child .page-link {
  border-radius: none;
}

.page-navigation-area .page-item:last-child .page-link {
  border-radius: none;
}

.page-navigation-area .page-item.active .page-link {
  z-index: 1;
  color: #ffffff;
  background-color: #0160e7;
  border-color: #0160e7;
}

@keyframes ripple {
  0%,
  35% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(2);
    transform: scale(2);
  }
}

/*
Default Btn Area Style
======================================================*/
.default-btn {
  font-size: 16px;
  color: #ffffff;
  padding: 10px 20px 10px 20px;
  line-height: 1;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 1;
  text-transform: capitalize;
  background-color: #01164f;
  border-radius: 4px;
  position: relative;
  cursor: pointer;
  border-radius: 4px;
  text-transform: uppercase;
  text-align: center;
}

.default-btn i {
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  background-color: #fff;
  color: #01164f;
  border-radius: 4px;
  position: relative;
  left: 10px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.default-btn.jewelry-btn {
  padding: 15px 20px;
  border-radius: 0;
}

.default-btn.jewelry-btn:hover {
  background-color: #333333;
  color: #ffffff;
}

.default-btn.page-btn {
  padding: 15px 30px;
}

.default-btn.page-btn:hover {
  background-color: #0160e7;
}

.default-btn:hover {
  color: #ffffff;
}

.default-btn:hover i {
  background-color: #01164f;
  color: #fff;
  -webkit-animation: fadeInLeft 1s linear;
  animation: fadeInLeft 1s linear;
}

/*
Read More Area Style
======================================================*/
.read-more {
  line-height: 1;
  color: #0160e7;
  font-weight: 500;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  display: block;
  font-size: 14px;
}

.read-more i {
  position: relative;
  top: 2px;
  font-size: 16px;
  left: 8px;
  width: 20px;
  height: 20px;
  line-height: 19px;
  border-radius: 50%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  display: inline-block;
  font-weight: 600;
}

.read-more:hover {
  color: #0160e7;
}

.read-more:hover i {
  color: #0160e7;
  -webkit-animation: fadeInLeft 1s linear;
  animation: fadeInLeft 1s linear;
}

/*
Section Title Area Style
======================================================*/
.section-title {
  max-width: 625px;
  margin: -8px auto 60px;
  text-align: center;
  position: relative;
}

.section-title span {
  color: #0160e7;
  font-size: 14px;
  display: block;
  margin-bottom: 10px;
  color: #333333;
  text-transform: capitalize;
}

.section-title h2 {
  font-size: 40px;
  margin-bottom: 20px;
  position: relative;
  display: block;
  text-transform: capitalize;
}

.section-title h2:last-child {
  margin-bottom: 0;
}

.section-title.watch-section-title h2 {
  text-transform: uppercase;
}

.section-title.jewelry-title span {
  color: #999999;
}

.section-title.jewelry-title h2 {
  font-family: "DM Serif Display", serif;
}

/*
Preloader Area Style
======================================================*/
.preloader {
  width: 100%;
  height: 100%;
  position: fixed;
  background-color: #0160e7;
  top: 0;
  left: 0;
  z-index: 99999;
}

.preloader .lds-ripple {
  position: relative;
  width: 80px;
  height: 80px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.preloader .lds-ripple div {
  position: absolute;
  border: 4px solid #ffffff;
  opacity: 1;
  border-radius: 50%;
  -webkit-animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
  animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.preloader .lds-ripple div:nth-child(2) {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}

@-webkit-keyframes lds-ripple {
  0% {
    top: 28px;
    left: 28px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: -1px;
    left: -1px;
    width: 58px;
    height: 58px;
    opacity: 0;
  }
}

@keyframes lds-ripple {
  0% {
    top: 28px;
    left: 28px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: -1px;
    left: -1px;
    width: 58px;
    height: 58px;
    opacity: 0;
  }
}

/*
Keyframes Area Style
======================================================*/
@-webkit-keyframes moveLeftBounces {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(45px);
    transform: translateX(45px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes moveLeftBounces {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(45px);
    transform: translateX(45px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes moVebounce {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
  50% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}

@keyframes moVebounce {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
  50% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}

@-webkit-keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

@keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

@-webkit-keyframes border-transform {
  0%,
  100% {
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
  }
  14% {
    border-radius: 40% 60% 54% 46% / 49% 60% 40% 51%;
  }
  28% {
    border-radius: 54% 46% 38% 62% / 49% 70% 30% 51%;
  }
  42% {
    border-radius: 61% 39% 55% 45% / 61% 38% 62% 39%;
  }
  56% {
    border-radius: 61% 39% 67% 33% / 70% 50% 50% 30%;
  }
  70% {
    border-radius: 50% 50% 34% 66% / 56% 68% 32% 44%;
  }
  84% {
    border-radius: 46% 54% 50% 50% / 35% 61% 39% 65%;
  }
}

@keyframes border-transform {
  0%,
  100% {
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
  }
  14% {
    border-radius: 40% 60% 54% 46% / 49% 60% 40% 51%;
  }
  28% {
    border-radius: 54% 46% 38% 62% / 49% 70% 30% 51%;
  }
  42% {
    border-radius: 61% 39% 55% 45% / 61% 38% 62% 39%;
  }
  56% {
    border-radius: 61% 39% 67% 33% / 70% 50% 50% 30%;
  }
  70% {
    border-radius: 50% 50% 34% 66% / 56% 68% 32% 44%;
  }
  84% {
    border-radius: 46% 54% 50% 50% / 35% 61% 39% 65%;
  }
}

/*===== DEFAULT STYLE END ======*/

/*
Header Area Style
======================================================*/
.header-area .top-header-area {
  background-color: #ffffff;
  padding: 15px 0;
}
.header-area .top-header-area {
  background-color: #ffffff;
  padding: 15px 0;
}
.header-content-middle img {
  width: 100%;
  height: 50px;
  object-fit: contain;
}
.header-nav-style .navbar-area.is-sticky .navbar-brand img {
  background-color: #fff;
  width: 100%;
  height: 40px;
  border-radius: 5px;
}
.header-area .top-header-area .header-content-left li {
  display: inline-block;
  padding-right: 15px;
}

.header-area .top-header-area .header-content-left li a {
  font-weight: 600;
  color: #333333;
}

.header-area .top-header-area .header-content-left li a i {
  color: #0d0548;
  line-height: 1;
  margin-right: 5px;
  font-size: 20px;
  position: relative;
  top: 3px;
}

.header-area .top-header-area .header-content-left li a i:after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: -3px;
  background-color: #0160e7;
  opacity: 0.3;
  width: 25px;
  height: 25px;
  border-radius: 50%;
}

.header-area .top-header-area .header-content-left li a:hover {
  color: #0160e7;
}

.header-area .top-header-area .header-content-right {
  float: right;
}

.header-area .top-header-area .header-content-right p {
  font-weight: 600;
  font-size: 14px;
  font-family: "Barlow";
}
.header-content-right .bx.bxs-map {
  color: #0160e7;
  line-height: 1;
  margin-right: 9px;
  position: relative;
  top: 3px;
  font-size: 24px;
}
.header-content-right .bx.bxs-map {
  color: #0d0548;
  line-height: 1;
  font-size: 24px;
}
.header-content-right .bx.bxs-map::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -1px;
  background-color: #0160e7;
  opacity: 0.3;
  width: 25px;
  height: 25px;
  border-radius: 50%;
}
.navbar-brand img {
  width: 200px;
}
/*
Header Nav Area Style
======================================================*/
.header-nav-style .navbar {
  padding: 0;
}

.header-nav-style .navbar-area .navbar-brand {
  padding: 0;
  display: none;
}
.header-nav-style .navbar-area.is-sticky .navbar-brand {
  display: block;
}
.header-nav-style .navbar-area .main-nav {
  position: unset;
  background-color: #025d8a;
  padding-top: 10px;
  padding-bottom: 10px;
}
.header-nav-style .navbar-area.is-sticky .main-nav {
  background-color: #025d8a;
}
.header-nav-style .navbar-area .main-nav nav .navbar-nav .nav-item a {
  font-weight: 500;
  font-size: 16px;
  color: #ffffff;
  text-transform: capitalize;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  margin-left: 0;
  margin: 0 30px;
  position: relative;
}

.header-nav-style .navbar-area .main-nav nav .navbar-nav .nav-item a i {
  font-size: 25px;
  line-height: 0;
  position: relative;
  top: 6px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.header-nav-style .navbar-area .main-nav nav .navbar-nav .nav-item a::before {
  content: "";
  position: absolute;
  bottom: -4px;
  right: 0;
  width: 0;
  height: 2px;
  background-color: #ffffff;
  opacity: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.header-nav-style
  .navbar-area
  .main-nav
  nav
  .navbar-nav
  .nav-item
  a:hover::before {
  opacity: 1;
  width: 100%;
  right: auto;
  left: 0;
}

.header-nav-style
  .navbar-area
  .main-nav
  nav
  .navbar-nav
  .nav-item
  a.active::before {
  opacity: 1;
  width: 100%;
  right: auto;
  left: 0;
}

.header-nav-style
  .navbar-area
  .main-nav
  nav
  .navbar-nav
  .nav-item
  .dropdown-menu {
  background-color: #ffffff;
  border: none;
  border-radius: 0;
  top: 100%;
  left: 0;
}

.header-nav-style
  .navbar-area
  .main-nav
  nav
  .navbar-nav
  .nav-item
  .dropdown-menu::before {
  position: absolute;
  width: 0;
  height: 0;
  content: "";
  border-top: 0;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #ffffff;
  border-left: 8px solid transparent;
  top: -8px;
  left: 20px;
}

.header-nav-style
  .navbar-area
  .main-nav
  nav
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  a {
  font-size: 14px;
  color: #333333;
  position: relative;
  padding: 10px 15px;
  border-bottom: 1px dashed #eeeeee;
  margin-left: 0;
  margin-right: 0;
}

.header-nav-style
  .navbar-area
  .main-nav
  nav
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  a
  i {
  float: right;
  top: 12px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.header-nav-style
  .navbar-area
  .main-nav
  nav
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  a::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #0160e7;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.header-nav-style
  .navbar-area
  .main-nav
  nav
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  a::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #0160e7;
  -webkit-transition: all 1s;
  transition: all 1s;
}

.header-nav-style
  .navbar-area
  .main-nav
  nav
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  a:hover {
  color: #0160e7;
}

.header-nav-style
  .navbar-area
  .main-nav
  nav
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  a:hover::before {
  width: 100%;
}

.header-nav-style
  .navbar-area
  .main-nav
  nav
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  a:hover::after {
  width: 80%;
}

.header-nav-style
  .navbar-area
  .main-nav
  nav
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  a.active {
  color: #0160e7;
}

.header-nav-style
  .navbar-area
  .main-nav
  nav
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  a.active::before {
  width: 100%;
}

.header-nav-style
  .navbar-area
  .main-nav
  nav
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  a.active::after {
  width: 80%;
}

.header-nav-style
  .navbar-area
  .main-nav
  nav
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu {
  left: 102%;
}

.header-nav-style
  .navbar-area
  .main-nav
  nav
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu::before {
  position: absolute;
  width: 0;
  height: 0;
  content: "";
  border-top: 0;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #ffffff;
  border-left: 8px solid transparent;
  top: 35px;
  left: -11px;
  -webkit-transform: rotate(-86deg);
  transform: rotate(-86deg);
}

.header-nav-style
  .navbar-area
  .main-nav
  nav
  .navbar-nav
  .nav-item
  .dropdown-menu
  li:last-child
  a {
  border-bottom: none;
}

.header-nav-style
  .navbar-area
  .main-nav
  nav
  .navbar-nav
  .nav-item:hover
  .dropdown-menu {
  -webkit-animation: fadeInUp 0.4s linear;
  animation: fadeInUp 0.4s linear;
}

.header-nav-style .navbar-area.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 999;
  background-color: #313538;
  -webkit-box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.4);
  box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.4);
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  width: 100% !important;
}

.header-nav-style .dropdown-toggle::after {
  display: none;
}

.header-nav-style .others-option .menu-wrap {
  display: inline-block;
  margin-left: 15px;
}

.header-nav-style .others-option .menu-wrap .sidebar-menu {
  background-color: transparent;
  cursor: pointer;
  position: relative;
  top: 2px;
  padding: 0;
}

.header-nav-style .others-option .menu-wrap .sidebar-menu span {
  border-bottom: 2px solid #333333;
  display: block;
  padding-bottom: 5px;
  width: 25px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.header-nav-style .others-option .menu-wrap .sidebar-menu:hover span {
  border-color: #0160e7;
}

/*
Discover Products Area Style
======================================================*/
.single-discover-products {
  text-align: center;
  background-color: #f4faff;
  overflow: hidden;
  position: relative;
  margin-bottom: 30px;
}

.single-discover-products .product-img {
  padding: 20px;
}

.single-discover-products .product-img .product-img-1 {
  opacity: 1;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  position: relative;
}

.single-discover-products .product-img .product-img-1 .product-img-2 {
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transform: scale(3);
  transform: scale(3);
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.single-discover-products .product-content {
  padding: 0 25px 30px 25px;
}
.product-content h3 {
  color: #01164f;
}
.single-discover-products .product-content .title {
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 9px;
}

.single-discover-products .product-content .price {
  color: #4b473e;
  font-size: 18px;
}

.single-discover-products .purchase-bar {
  background-color: #f7f7f7;
  padding: 30px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -175px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
}

.single-discover-products .purchase-bar ul {
  line-height: 1;
  margin-bottom: 20px;
}

.single-discover-products .purchase-bar ul li {
  display: inline-block;
  padding: 0 5px;
}

.single-discover-products .purchase-bar ul li a i {
  font-size: 20px;
  color: #d98a0e;
  background-color: #f9eedb;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

/*
Best Week Area Style
======================================================*/
.tab .tabs_item {
  display: none;
}

.tab .tabs_item:first-child {
  display: block;
}

/*
All Product Area Style
======================================================*/
.all-product-area .tab .tabs li.current a {
  color: #0160e7 !important;
  position: relative;
}

.all-product-area .tab .tabs li.current a::before {
  background-color: #0160e7;
}

.all-product-area .tab .tabs li a:hover {
  color: #0160e7 !important;
}

.all-product-area .rating {
  line-height: 1;
  background-color: #ffffff;
  display: inline-block;
  padding: 5px 10px;
}

.all-product-area .rating li {
  display: inline-block;
  color: #f4a708;
}

.all-product-area .single-trendy-products {
  padding-bottom: 30px;
  position: relative;
}

.all-product-area .single-trendy-products .product-content {
  padding: 0 15px 12px 15px;
}

.all-product-area .single-trendy-products .purchase-bar {
  position: absolute;
  bottom: 30px;
  right: 0;
  left: 0;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  padding: 15px;
  max-width: 200px;
  margin: auto;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform: scale(0);
  transform: scale(0);
}

.all-product-area .single-trendy-products .purchase-bar ul li a i {
  font-size: 15px;
  color: #0160e7;
  background-color: #b4c0ec;
  width: 30px;
  height: 30px;
  line-height: 30px;
}

.all-product-area .single-trendy-products:hover .purchase-bar {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.all-product-area .single-trendy-products .product-img .trend {
  top: 0;
}

.social-areatop ul li {
  display: inline-block;
  padding: 5px;
}
.social-areatop ul li a:hover {
  color: #0d0548;
  background: #fff;
}
.social-areatop ul li a {
  color: #fff;
  font-size: 19px;
  background: #28a4ba;
  width: 35px;
  text-align: center;
  border-radius: 5px;
}

.header-nav-style .navbar-area.is-sticky .social-areatop ul li a:hover {
  color: #28a4ba;
  background: #fff;
}
.header-nav-style .navbar-area.is-sticky .social-areatop ul li a {
  color: #fff;
  background: #28a4ba;
}

/*
MAin Slider Area Style
======================================================*/
.slider_one {
  background: url(../img/slider/slider1.png);
  background-position: right;
  background-size: cover;
  padding: 40px 0;
}
.slider_two {
  background: url(../img/slider/slider2.png);
  background-position: right;
  background-size: cover;
  padding: 40px 0;
}
.slider_three {
  background: url(../img/slider/slider3.png);
  background-position: right;
  background-size: cover;
  padding: 40px 0;
}

.main-slider-area .main-slider-text .offer {
  color: #ffffff;
  font-size: 15px;
  display: inline-block;
  margin-bottom: 10px;
}
.offer {
  margin-top: 115px;
}
.main-slider-wrap.owl-theme.owl-carousel.owl-loaded {
  height: 550px;
}
.main-slider-area .main-slider-text h1 {
  font-size: 48px;
  color: #ffffff;
  margin-bottom: 40px;
}

.main-slider-area .main-slider-text h1 span {
  color: #ffd797;
}

.main-slider-area .main-slider-text p {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 40px;
}

.main-slider-area .main-slider-text .slider-btn .price {
  color: #ffffff;
  font-size: 25px;
  margin-right: 30px;
  display: inline-block;
}

.main-slider-area .slider-img img {
  margin: auto;
}

.main-slider-area .main-slider-thumb {
  max-width: 1110px;
  margin: 0 auto -6px;
  position: relative;
  z-index: 1;
}

.main-slider-area .main-slider-thumb .owl-thumb-item {
  display: inline-block;
}

.main-slider-area .main-slider-thumb .owl-thumb-item span {
  color: #75aeff;
  font-size: 20px;
  display: inline-block;
  margin-right: 15px;
  line-height: 1;
  cursor: pointer;
}

.main-slider-area .main-slider-thumb .owl-thumb-item.active span {
  color: #ffffff;
  border-bottom: 1px solid #ffffff;
}

.main-slider-area .owl-next {
  position: absolute;
  top: 50%;
  right: 50px;
  margin: 0 !important;
  border-radius: 0 !important;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  opacity: 0;
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
}

.main-slider-area .owl-next i {
  background-color: #28189d;
  color: #ffffff;
  width: 40px;
  height: 40px;
  line-height: 40px;
  display: inline-block;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  border-radius: 4px;
  font-size: 25px;
  transition: all 0.5s;
}

.main-slider-area .owl-next:hover i {
  background-color: #ffffff !important;
  color: #0160e7 !important;
}

.main-slider-area .owl-prev {
  position: absolute;
  top: 50%;
  left: 50px;
  margin: 0 !important;
  border-radius: 0 !important;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  opacity: 0;
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
}

.main-slider-area .owl-prev i {
  background-color: #28189d !important;
  color: #ffffff;
  width: 40px;
  height: 40px;
  line-height: 40px;
  display: inline-block;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  font-size: 25px;
  border-radius: 4px;
  transition: all 0.5s;
}

.main-slider-area .owl-prev:hover i {
  background-color: #ffffff !important;
  color: #0160e7;
}

.main-slider-area:hover .owl-prev {
  opacity: 1;
  left: 0;
}

.main-slider-area:hover .owl-next {
  opacity: 1;
  right: 0;
}

.main-slider-area .owl-theme .owl-nav {
  margin-top: 0 !important;
}

.main-slider-area .owl-theme .owl-nav [class*="owl-"]:hover {
  background-color: transparent;
}

.main-slider-area .owl-item.active .main-slider-text.overflow-hidden {
  overflow: hidden;
}

.main-slider-area .owl-item.active .main-slider-text.one .offer {
  -webkit-animation: 1s 0.1s fadeInUpBig both;
  animation: 1s 0.1s fadeInUpBig both;
}

.main-slider-area .owl-item.active .main-slider-text.one h1 {
  -webkit-animation: 2s 0.2s fadeInUpBig both;
  animation: 2s 0.2s fadeInUpBig both;
}

.main-slider-area .owl-item.active .main-slider-text.one p {
  -webkit-animation: 3s 0.3s fadeInUpBig both;
  animation: 3s 0.3s fadeInUpBig both;
}

.main-slider-area .owl-item.active .main-slider-text.one .slider-btn {
  -webkit-animation: 4s 0.4s fadeInUpBig both;
  animation: 4s 0.4s fadeInUpBig both;
}

.main-slider-area .owl-item.active .main-slider-text.two .offer {
  -webkit-animation: 1s 0.1s fadeInDownBig both;
  animation: 1s 0.1s fadeInDownBig both;
}

.main-slider-area .owl-item.active .main-slider-text.two h1 {
  -webkit-animation: 2s 0.2s fadeInLeft both;
  animation: 2s 0.2s fadeInLeft both;
}

.main-slider-area .owl-item.active .main-slider-text.two p {
  -webkit-animation: 3s 0.3s fadeInLeft both;
  animation: 3s 0.3s fadeInLeft both;
}

.main-slider-area .owl-item.active .main-slider-text.two h3 {
  -webkit-animation: 4s 0.4s fadeInLeft both;
  animation: 4s 0.4s fadeInLeft both;
}

.main-slider-area .owl-item.active .main-slider-text.two .slider-btn {
  -webkit-animation: 1s 0.1s fadeInUpBig both;
  animation: 1s 0.1s fadeInUpBig both;
}

.main-slider-area .owl-item.active .main-slider-text.three .offer {
  -webkit-animation: 2s 0.2s fadeInDown both;
  animation: 2s 0.2s fadeInDown both;
}

.main-slider-area .owl-item.active .main-slider-text.three h1 {
  -webkit-animation: 2s 0.2s fadeInDown both;
  animation: 2s 0.2s fadeInDown both;
}

.main-slider-area .owl-item.active .main-slider-text.three p {
  -webkit-animation: 2s 0.2s fadeInDown both;
  animation: 2s 0.2s fadeInDown both;
}

.main-slider-area .owl-item.active .main-slider-text.three h3 {
  -webkit-animation: 2s 0.2s fadeInDown both;
  animation: 2s 0.2s fadeInDown both;
}

.main-slider-area .owl-item.active .main-slider-text.three .slider-btn {
  -webkit-animation: 2s 0.2s fadeInUp both;
  animation: 2s 0.2s fadeInUp both;
}

.main-slider-area .owl-item.active .slider-img img {
  -webkit-animation: 3s 0.3s fadeInLeft both;
  animation: 3s 0.3s fadeInLeft both;
}

.main-slider-area .slider-bottom-shape {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  margin: auto;
}

/*
Footer Bottom Area Style
======================================================*/
.footer-bottom-area {
  background-color: #000000;
  padding: 20px 0;
}
.single-widget img {
  width: 100%;
  height: 60px;
  object-fit: contain;
}
.single-widget.contact_info li {
  padding-bottom: 20px;
}
.single-widget.contact_info li i {
  padding-right: 5px;
  font-size: 18px;
}
.single-widget.useful_link a {
  text-decoration: none;
  padding: 3px 0px;
}
.single-widget.service_link a {
  text-decoration: none;
  padding: 3px 0px;
}
.footer-bottom-area .social-area ul {
  line-height: 1;
}

.footer-bottom-area .social-area ul li {
  display: inline-block;
}

.footer-bottom-area .social-area ul li a {
  margin-right: 5px;
  width: 25px;
  height: 25px;
  line-height: 23px;
  border: 1px dashed #eeeeee;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-bottom-area .social-area ul li a i {
  color: #eeeeee;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.footer-bottom-area .social-area ul li a:hover {
  border-color: #6f90ec;
}

.footer-bottom-area .social-area ul li a:hover i {
  color: #28a4ba;
}

.footer-bottom-area .copy-right {
  text-align: center;
}

.footer-bottom-area .copy-right p {
  margin-bottom: 0;
  color: #eeeeee;
}

.footer-bottom-area .copy-right p a {
  color: #43b7cc;
}
.footer-bottom-area .copy-right p a:hover {
  color: #fff;
}
.footer-bottom-area .payment-method {
  float: right;
  position: relative;
  top: 3px;
}

.footer-bottom-area .payment-method ul {
  line-height: 1;
}

.footer-bottom-area .payment-method ul li {
  display: inline-block;
}

.footer-bottom-area .payment-method ul li a img {
  width: 35px;
}
.single-widget a {
  color: var(--tertiary);
}
.single-widget a:hover {
  color: #4b473e;
}
/*about-section*/
img {
  max-width: 100%;
}
.video_over {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(24, 40, 53, 0.3);
  z-index: 1;
}
.about_video::after,
.about_video::before {
  content: "";
  background-color: #28a4ba;
  height: 1220px;
  top: -440px;
  display: block;
}
.aboutus-section {
  padding: 150px 0;
  border-bottom: 1px solid #f6f6f6;
  overflow: hidden;
  margin-top: 0px;
}
.about-title {
  text-align: center;
  margin-bottom: 40px;
}
.aboutus-section h2 {
  color: #025d8a;
  font-size: 23px;
  font-family: initial;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.aboutus-section h2 span {
  font-weight: 600;
}
.aboutus-section h2::after {
  content: "";
  background: #025d8a;
  height: 2px;
  width: 26%;
  position: relative;
  display: block;
  margin: 4px auto 9px;
}
.aboutus-section h4 {
  position: relative;
  padding-bottom: 30px;
  margin-bottom: 0px;
  font-weight: 500;
  padding-left: 30px;
  text-transform: capitalize;
  font-size: 33px;
  color: #28a4ba;
  text-align: center;
}
.aboutus-section .about-title p {
  font-weight: 500;
  font-size: 22px;
  color: #393939;
  width: 53%;
  margin: 0 auto;
  font-family: "Raleway", sans-serif;
}
.about_video:before {
  position: absolute;
  width: 380px;
  -webkit-transform: rotate(210deg);
  transform: rotate(210deg);
  left: 238px;
  z-index: 0;
}
.aboutus-section .section-title {
  position: relative;
  z-index: 9;
}
.about_video:after {
  position: absolute;
  width: 15000px;
  left: 445px;
  z-index: 0;
}
.about_video p,
.btn_about > span,
p.letstalk > span {
  z-index: 2;
  position: relative;
}
.aboutus-section .abcontent {
  color: #777;
  font-size: 15px;
  font-weight: 400;
  text-align: justify;
}
.aboutus-section .abcontent p span {
  color: #333;
}
.about_video p {
  border-style: solid;
  border-width: 5px;
  border-color: #fff;
  background-color: #f77a1e;
  -webkit-box-shadow: -1.8px 0.88px 12px 0 rgba(0, 0, 0, 0.39);
  box-shadow: -1.8px 0.88px 12px 0 rgba(0, 0, 0, 0.39);
  display: block;
}
.shape1 {
  -webkit-animation: movebounce 5s linear infinite;
  animation: movebounce 5s linear infinite;
  opacity: 0.6;
  position: absolute;
}
.shape2 {
  right: 70px;
  bottom: 70px;
  z-index: 1;
  opacity: 0.6;
}
.shape3 {
  position: absolute;
  left: 70px;
  opacity: 0.6;
  margin-top: -40px;
}
.shape4 {
  position: absolute;
  right: 100px;
  opacity: 0.6;
  -webkit-animation: movebounce 5s linear infinite;
  animation: movebounce 5s linear infinite;
  margin-top: -40px;
}
.rotateme {
  -webkit-animation-name: rotateme;
  animation-name: rotateme;
  -webkit-animation-duration: 40s;
  animation-duration: 40s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}
@-webkit-keyframes rotateme {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes movebounce {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}
.shape1 {
  position: absolute;
  left: 70px;
  bottom: 70px;
  z-index: -1;
  animation: movebounce 5s linear infinite;
  opacity: 0.6;
}

.budspay_about_shape01 {
  padding: 80px 0 145px;
  background: #f4f6fd;
}
h5.budspay_center {
  text-align: center;
  margin-bottom: 35px;
  position: relative;
  color: #28a4ba;
  font-family: initial;
  font-size: 19px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}
h5.budspay_center::before {
  position: absolute;
  content: "";
  background-color: #28a4ba;
  height: 7px;
  width: 7px;
  left: 0;
  right: 0;
  bottom: -18px;
  margin: auto;
  z-index: 1;
}
h5.budspay_center::after {
  position: absolute;
  content: "";
  background-color: #025d8a;
  height: 1px;
  width: 80px;
  left: 0;
  right: 0;
  bottom: -15px;
  margin: auto;
}
.budspay_about_shape01 h2 {
  color: #025d8a;
  text-align: center;
  font-size: 28px;
  padding-bottom: 34px;
  font-family: initial;
}
#Service-section h5 {
  font-weight: 500;
  letter-spacing: 1px;
  color: #025d8a;
  font-size: 23px;
}
.list-category {
  display: block;
}
.list-category-item a {
  position: relative;
  display: block;
  padding: 20px 0;
  border-bottom: 1px solid #e1e1e1;
  letter-spacing: 0.5px;
  font-size: 16px;
  color: #464646;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
}
.list-category-item a:hover {
  color: #28a4ba;
}
.service-left-heading {
  padding-left: 66px;
  padding-bottom: 6px;
  font-family: "Viaoda Libre", cursive;
  text-transform: uppercase;
  position: relative;
  letter-spacing: 2px;
}
.service-left-heading {
  position: relative;
  font-size: 18px;
  /* letter-spacing: 0.5px; */
  color: #fff;
  font-weight: 600;
  background: #28a4ba;
  padding: 10px 0px 10px 66px;
  /* padding-left: 66px 0; */
}
.tab-pane .row::after {
  background: #ffffff8c;
  width: 73%;
  content: "";
  position: absolute;
  height: 100%;
  z-index: 1;
}
.service-left-heading::before {
  position: absolute;
  display: inline-block;
  content: "";
  top: 25px;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: #fff;
}

.service-left-heading {
  font-family: initial;
  text-transform: uppercase;
  letter-spacing: 2px;
  z-index: 9;
}
.tab-content .tab-pane p {
  color: rgba(0, 0, 0, 0.7);
  text-align: justify;
  z-index: 9;
  position: relative;
  height: 500px;
}
.list-category-item a::before {
  position: absolute;
  content: "";
  bottom: -1px;
  left: 0;
  height: 2px;
  width: 0;
  background: #28a4ba;
  transition: all 0.3s ease;
}
.list-category-item a.active::before {
  width: 47px;
}
.list-category-item a:hover:not(.active)::before {
  width: 100%;
}
.service-stage-outer {
  position: relative;
  top: 50px;
  z-index: 9;
}
/*----====== recharge-section------=====-- */

.recharge-section {
  padding: 80px 0;
}

.recharge-img-bar .recharge-detail {
  background-color: var(--tertiary);
  padding: 50px 100px 50px 50px;
  width: 100%;
  border-radius: 8px;
  height: 450px;
}
.recharge-content-bar p {
  text-align: justify;
  margin-top: 20px;
  color: #fff;
}
.recharge-services-name {
  font-size: 30px;
  font-weight: 600;
  color: #fff;
}
.recharge-icon-pic {
  position: relative;
  left: -70px;
  top: 62px;
  /* border-radius: 50%; */
  /* border: 0px solid; */
  border-right: 0px solid;
  /* background: #fff; */
}
.recharge-icon-pic img {
  background: #fff;
  border-radius: 8px;
}
.section-head {
  margin-bottom: 40px;
}
:root {
  --color-primary: #28a4ba;
  --color-secondry: #28a4ba;
  --color-hover: #025d8a;
}
.recharge-img-bar {
  display: flex;
}
.text-white {
  color: #fff;
}
.title {
  margin-bottom: 10px;
  color: #28a4ba;
  font-family: initial;
}
.section-head h1 {
  color: #025d8a;
  font-size: 36px;
  font-weight: 600;
  font-family: initial;
}
.heading h2 {
  margin-bottom: 40px;
}
/*----====== recharge-section-end------=====-- */
/*-- count-section --*/
.fun-fact-section-two {
  background: url(../img/resource/counter_bg.png);
}
.fun-fact-section-two {
  background: url(../img/shape/9.png);
  padding: 42px;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
}
.counter-column.col-lg-4.col-md-6.col-sm-6.wow.fadeInUp {
  padding: 45px;
  text-align: center;
  color: #fff;
}
.count-text {
  font-size: 37px;
  font-weight: 600;
}
.counter-title {
  font-size: 25px;
  color: #fff;
}
.fa.fa-users {
  padding: 20px;
  background: rgb(255, 255, 255, 0.5);
  font-size: 36px;
}
.fun-fact-section-two::before {
  position: absolute;
  content: "";
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.count-plus {
  font-size: 37px;
  font-weight: 600;
  margin-left: 6px;
}

/*work choose new*/
.choose-box {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  position: relative;
  box-shadow: 2px 2px 7px 0 #00000057;
  height: 200px;
}
.choose-left:after {
  content: "";
  border-top: 15px solid #ffffff;
  border-bottom: 15px solid #ffffff;
  border-left: 15px solid #ffffff;
  border-right: 15px solid #ffffff;
  display: inline-grid;
  position: absolute;
  right: -15px;
  top: 42%;
  transform: rotate(45deg);
  box-shadow: 3px -2px 3px 0 #00000036;
  z-index: 1;
}
.choose-right::after {
  content: "";
  border-top: 15px solid #ffffff00;
  border-bottom: 15px solid #ffffff;
  border-left: 15px solid #ffffff;
  border-right: 15px solid #ffffff00;
  display: inline-grid;
  position: absolute;
  left: -15px;
  top: 42%;
  transform: rotate(45deg);
  box-shadow: -1px 2px 3px 0 #00000042;
  z-index: 1;
}
.number {
  position: absolute;
  top: 24px;
  left: 25px;
  color: #28a4ba;
}
.choose-step-number {
  background: #ebf5f7;
  text-align: center;
  margin: 0 auto;
  color: #fff;
  height: 100%;
  padding-top: 15px;
  position: relative;
  top: -36px;
  border-radius: 0 0 10px 10px;
  box-shadow: -6px 8px 0 0 #00000014;
}
.choose-step-number img {
  max-width: 45%;
}

.choose-point-right {
  background: #ffffff;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 2px dotted #28a4ba;
  /* box-shadow: 0 0 0 4px #156ba9; */
  margin: auto 0;
  position: absolute;
  bottom: 60px;
  left: -170px;
  top: 59px;
  padding: 40px;
}
.choose-point-right::before {
  content: "";
  height: 130px;
  width: 11px;
  /* background: #156ba9; */
  display: inline-grid;
  /* transform: rotate(30deg); */
  position: relative;
  left: 0px;
  top: 41px;
  border-left: 2px dotted #28a4ba;
}
.choose-point-left {
  background: #ffffff;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 2px dotted #28a4ba;
  /* box-shadow: 0 0 0 4px #156ba9; */
  margin: auto 0;
  position: absolute;
  bottom: 60px;
  right: -105px;
  top: 60px;
  padding: 40px;
}
.choose-point-left::before {
  content: "";
  height: 125px;
  width: 11px;
  /* background: #156ba9; */
  display: inline-grid;
  /* transform: rotate(-30deg); */
  position: relative;
  left: 0px;
  top: 40px;
  border-left: 2px dotted #28a4ba;
}
.choose-box.choose-right {
  position: relative;
  left: -65px;
}

.choose-last:before {
  display: none;
}
.choose-box p {
  z-index: 9;
}
.choose-step-number h2 {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
}

.choose-step-number::after {
  content: "";
  border-top: 8px solid #04889800;
  border-bottom: 8px solid #f2f2f2;
  border-left: 8px solid #04889800;
  border-right: 8px solid #f2f2f2;
  display: inline-grid;
  position: absolute;
  left: -16px;
  top: 0;
}
.choose-step-number::before {
  content: "";
  border-top: 8px solid #ff000000;
  border-bottom: 8px solid #f2f2f2;
  border-left: 8px solid #f2f2f2;
  border-right: 8px solid #ff000000;
  display: inline-grid;
  position: absolute;
  right: -16px;
  top: 0;
}

@media (min-width: 320px) and (max-width: 1199px) {
  .choose-line-l,
  .choose-line-r,
  .choose-point-left,
  .choose-point-right {
    display: none;
  }
  .choose-none {
    display: none;
  }
  .choose-width.col-lg-5 {
    margin-top: 40px;
    width: 100% !important;
    max-width: 100% !important;
    flex: auto;
  }
  .choose-right:after,
  .choose-left:after {
    display: none;
  }
}
.lead {
  font-size: 16px;
}
.color-secondary {
  font-size: 23px;
  /* margin-bottom: 118px; */
  color: #28a4ba;
  font-family: initial;
}
.choose-section {
  padding: 100px 0;
}
.choose-bar {
  margin-bottom: 10px;
  margin-top: 5px;
  font-family: initial;
  color: #025d8a;
}

.patform-content {
  text-align: center;
  box-shadow: 0 0 5px #d0d0d0;
  padding: 50px 50px;
}
.patform-section {
  background: url(../img/wave.png);
}
.patform-section {
  background: url(../img/wave.png);
  background-size: cover;
  padding-bottom: 100px;
}
.patform-content {
  text-align: center;
  box-shadow: 0 0 5px #e1e1e1;
  padding: 40px 30px;
  background: #fff;
}

.patform-content img {
  width: 100%;
  height: 100px;
  object-fit: contain;
}
.ourServices {
  color: var(--tertiary);
  font-weight: 600;
}
.patform-content h3 {
  color: var(--tertiary);
  padding: 5px 0;
}
.readMore {
  text-align: center;
  padding: 20px 0;
}
.readMore a {
  background-color: var(--tertiary);
  color: white;
  padding: 5px 20px;
  border-radius: 3px;
}
.aboutUs {
  padding: 30px 0;
  background-color: #fff;
}

.aboutUs .about_img img {
  border-radius: 30px;
  margin: 30px 0;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
    rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
.aboutUs h1 {
  padding-top: 30px;
  font-size: 25px;
}
footer {
  background-color: #f0f0f0;
}
#brand-logo {
  text-align: center;
  padding: 50px 0;
  color: #fff;
  position: relative;
  background-image: url(../img/conact.jpg);
  background-size: cover;
  background-position: center;
}
#brand-logo::before {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, #151313a8, #446477);
  position: absolute;
  top: 0;
  left: 0;
}
#brand-logo .brand-text h2 {
  color: white;
}
#brand-logo .brand-text p {
  color: white;
}
#brand-logo .brand-text .button-part a {
  background-color: #fff;
  padding: 5px 20px;
  color: var(--tertiary);
  border-radius: 3px;
  font-weight: 600;
}
.services_section {
  padding: 50px 0;
  background-color: #f0f0f0;
}
.services_section .patform-content {
  text-align: center;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
  padding: 25px 20px;
  margin: 20px 0;
  background: #fff;
  border-bottom: 2px solid var(--tertiary);
}
.contactUs {
  padding: 50px 0;
  background-color: #f0f0f0;
}
.contactUs h2 {
  text-align: center;
}
.contactUs .contactDetails-Div p {
  color: var(--tertiary);
  text-align: left;
}
.contactUs .contactDetails-Div h4 {
  margin-bottom: 20px;
}
.contactUs .contactDetails-Div p {
  color: #000;
}
.contactUs .contactDetails-Div p strong {
  color: var(--secondary);
}
.contactUs .ContactForm {
  background: #fff;
  padding: 20px;
  border-radius: 3px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
    rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.termsCondition {
  padding: 40px 0;
  background-color: #fff;
}
.termsCondition h2 {
  text-align: center;
}
.termsCondition .terms {
  padding: 30px 0 0;
}
.termsCondition .terms p strong {
  color: var(--primary);
}
.primary-bg {
  background-color: #d2eaf9;
  padding: 10px 0 10px 20px;
  font-size: 15px;
  color: #000;
  border-radius: 10px;
  font-weight: bold;
  margin-top: 15px;
  font-family: "Josefin Sans", sans-serif;
}

/* media query  */

@media only screen and (max-width: 500px) {
  .main-slider-area {
    padding-top: 0 !important;
  }
  .slider_one {
    background-position: left;
  }
  .choose-box.choose-right {
    left: 0;
  }
  .aboutUs {
    padding: 60px 0;
  }
  .services_section {
    padding: 70px 0;
  }
  .contactUs {
    padding: 70px 0;
  }
  .mobile-nav nav .navbar-nav {
    height: auto;
  }
}

/* mobile responsive  */

@media only screen and (max-width: 767px) {
  .header-area .top-header-area .header-content-left li {
    padding: 0 3px;
  }
  .mobile-nav .logo {
    background-color: #fff;
    border-radius: 3px;
  }
  .slider_one{
    background-blend-mode: multiply;
    background-color: #7b7b7b;
    object-position: center;
    width: 100%;
  }
  .slider_two{
    background-blend-mode: multiply;
    background-color: #7b7b7b;
    object-position: center;
    width: 100%;
  }
  .slider_three{
    background-blend-mode: multiply;
    background-color: #7b7b7b;
    object-position: center;
    width: 100%;
  }
  ._about_shape01{
     padding: 30px 0;
  }
}
