@import "https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&amp;display=swap";
@import "https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&amp;display=swap";
body {
  padding: 0;
  margin: 0;
  font-family: roboto, sans-serif;
  font-size: 16px;
}
a {
  text-decoration: none;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #202647;
  display: inline-block;
}
a:hover,
a:focus {
  color: #0dbcc0;
  text-decoration: none;
}
button {
  outline: 0 !important;
}
p {
  margin-bottom: 15px;
  line-height: 1.8;
  color: #6b6b84;
  font-weight: 400;
  font-family: roboto, sans-serif;
  font-size: 16px;
}
p:last-child {
  margin-bottom: 0;
}
i {
  line-height: normal;
}
.d-table {
  width: 100%;
  height: 100%;
}
.d-table-cell {
  vertical-align: middle;
}
img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}
.ptb-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}
.pt-100 {
  padding-top: 100px;
}
.pb-100 {
  padding-bottom: 100px;
}
.pt-70 {
  padding-top: 70px;
}
.pb-70 {
  padding-bottom: 70px;
}

.pt-50 {
  padding-top: 50px;
}
.pb-50 {
  padding-bottom: 0px;
}
.ptb-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #202647;
  font-family: poppins, sans-serif;
  font-weight: 600;
  text-transform: capitalize;
}
.h1:last-child,
.h2:last-child,
.h3:last-child,
.h4:last-child,
.h5:last-child,
.h6:last-child,
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
  margin-bottom: 0;
}
.default-btn {
  display: inline-block;
  padding: 18px 35px;
  background-color: #0dbcc0;
  color: #fff;
  border-radius: 10px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-weight: 500;
}
.default-btn:hover {
  background-color: #0473b9;
  color: #fff;
}
.section-title {
  text-align: center;
  margin-bottom: 10px;
  margin-top: 40px;
}
.section-title h2 {
  font-size: 45px;
  margin-bottom: 0;
}
.section-title .bar {
  height: 5px;
  width: 100px;
  background: #0dbcc0;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  margin: 20px auto;
}
.section-title .bar::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  width: 5px;
  background: #fff;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: MOVE-BG;
  animation-name: MOVE-BG;
}
.section-title p {
  max-width: 750px;
  margin: auto;
}
@-webkit-keyframes MOVE-BG {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(85px);
    transform: translateX(85px);
  }
}
@keyframes MOVE-BG {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(85px);
    transform: translateX(85px);
  }
}
.preloader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999999;
  background: #0dbcc0;
}
.preloader .spinner {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #fff;
  margin: 0 auto;
  -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
  animation: sk-rotateplane 1.2s infinite ease-in-out;
  position: absolute;
  right: 0;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  margin-top: -50px;
}
@-webkit-keyframes sk-rotateplane {
  0% {
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    transform: perspective(120px) rotateX(0deg) rotateY(0deg);
  }
  50% {
    -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
  }
  100% {
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}
@keyframes sk-rotateplane {
  0% {
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    transform: perspective(120px) rotateX(0deg) rotateY(0deg);
  }
  50% {
    -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
  }
  100% {
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}
.top-bar-area {
  padding-top: 12px;
  padding-bottom: 12px;
}
.top-bar-area.bg-color {
  background-color: #0090cc;
}
.top-bar-area.bg-color .top-bar-information li {
  color: #fff;
}
.top-bar-area.bg-color .top-bar-information li a {
  color: #fff;
}
.top-bar-area.bg-color .top-bar-information li i {
  color: #fff;
}
.top-bar-area.bg-color .top-bar-optional li .languages-list .nice-select {
  color: #fff;
}
.top-bar-area.bg-color .top-bar-optional li .languages-list .nice-select::after {
  border-color: #fff;
}
.top-bar-area.bg-black {
  background-color: #202647;
}
.top-bar-area.bg-black .top-bar-information li {
  color: #fff;
  position: relative;
}
.top-bar-area.bg-black .top-bar-information li::before {
  position: absolute;
  right: -10px;
  top: 2px;
  width: 1px;
  content: "";
  height: 15px;
  background-color: #0473b9;
}
.top-bar-area.bg-black .top-bar-information li:last-child::before {
  display: none;
}
.top-bar-area.bg-black .top-bar-information li a {
  color: #fff;
}
.top-bar-area.bg-black .top-bar-information li i {
  color: #0473b9;
}
.top-bar-area.bg-black .top-bar-optional li a i {
  color: #0473b9;
}
.top-bar-area.bg-black .top-bar-optional li a i:hover {
  color: #fff;
}
.top-bar-area.bg-black .top-bar-optional li .languages-list .nice-select {
  color: #fff;
}
.top-bar-area.bg-black .top-bar-optional li .languages-list .nice-select::after {
  border-color: #fff;
}
.top-bar-area.bg-000000 {
  background-color: #202647;
}
.top-bar-area.bg-000000 .top-bar-information li {
  color: #fff;
  position: relative;
}
.top-bar-area.bg-000000 .top-bar-information li::before {
  position: absolute;
  right: -10px;
  top: 2px;
  width: 1px;
  content: "";
  height: 15px;
  background-color: #0dbcc0;
}
.top-bar-area.bg-000000 .top-bar-information li:last-child::before {
  display: none;
}
.top-bar-area.bg-000000 .top-bar-information li a {
  color: #fff;
}
.top-bar-area.bg-000000 .top-bar-information li i {
  color: #0dbcc0;
}
.top-bar-area.bg-000000 .top-bar-optional li a i {
  color: #0dbcc0;
}
.top-bar-area.bg-000000 .top-bar-optional li a i:hover {
  color: #fff;
}
.top-bar-area.bg-000000 .top-bar-optional li .languages-list .nice-select {
  color: #fff;
}
.top-bar-area.bg-000000 .top-bar-optional li .languages-list .nice-select::after {
  border-color: #fff;
}
.top-bar-information {
  padding-left: 0;
  margin-bottom: 0;
}
.top-bar-information li {
  font-size: 14px;
  color: #202647;
  font-weight: 500;
  list-style-type: none;
  display: inline-block;
  position: relative;
  margin-right: 15px;
  padding-left: 20px;
}
.top-bar-information li:last-child {
  margin-right: 0;
}
.top-bar-information li i {
  position: absolute;
  left: 0;
  top: 2px;
  color: #0dbcc0;
}
.top-bar-optional {
  padding-left: 0;
  margin-bottom: 0;
  text-align: right;
}
.top-bar-optional li {
  list-style-type: none;
  display: inline-block;
  margin-right: 10px;
}
.top-bar-optional li:last-child {
  margin-right: 0;
}
.top-bar-optional li a i {
  display: inline-block;
  height: 35px;
  width: 35px;
  line-height: 35px;
  background-color: #fff;
  color: #0dbcc0;
  -webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  text-align: center;
  font-size: 18px;
  border-radius: 50px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.top-bar-optional li a i:hover {
  background-color: #0dbcc0;
  color: #fff;
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}
.top-bar-optional li .languages-list .nice-select {
  background-color: transparent;
  border-radius: 0;
  border: none;
  font-size: 16px;
  font-weight: 500;
  height: auto;
  line-height: initial;
  color: #202647;
  padding-left: 0;
  padding-right: 20px;
  position: relative;
  top: 2px;
}
.top-bar-optional li .languages-list .nice-select::after {
  border-color: #202647;
  height: 8px;
  width: 8px;
  right: 4px;
  margin-top: -5px;
}
.top-bar-optional li .languages-list .nice-select .list {
  background-color: #fff;
  -webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  border-radius: 0;
  width: 150px;
  height: 200px;
  overflow-y: scroll;
  margin-top: 18px;
  margin-bottom: 0;
}
.top-bar-optional li .languages-list .nice-select .list .option {
  line-height: 40px;
  min-height: 40px;
  color: #6b6b84;
  padding-left: 15px;
  padding-top: 5px;
  padding-right: 15px;
  display: block;
  margin-right: 0;
}
.top-bar-optional li .languages-list .nice-select .list .option.selected {
  background-color: #0dbcc0 !important;
  color: #fff;
  font-weight: 400;
}
.top-bar-optional li .languages-list .nice-select .list::-webkit-scrollbar {
  display: none;
}
.main-responsive-nav {
  display: none;
}
.main-navbar {
  padding: 10px 0;
}
.main-navbar .navbar {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  padding: 0;
}
.main-navbar .navbar ul {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
}
.main-navbar .navbar .navbar-nav .nav-item {
  position: relative;
  margin-left: 15px;
  margin-right: 15px;
}
.main-navbar .navbar .navbar-nav .nav-item a {
  color: #202647;
  font-size: 16px;
  font-weight: 500;
  padding-left: 0;
  padding-right: 0;
  padding-top: 25px;
  padding-bottom: 25px;
  position: relative;
}
.main-navbar .navbar .navbar-nav .nav-item a::before {
  content: "";
  position: absolute;
  bottom: 2px;
  right: 0;
  width: 0;
  height: 2px;
  background-color: #0dbcc0;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
.main-navbar .navbar .navbar-nav .nav-item a i {
  font-size: 18px;
  position: relative;
  top: 2px;
  display: inline-block;
  margin-left: -5px;
  margin-right: -5px;
}
.main-navbar .navbar .navbar-nav .nav-item a:hover,
.main-navbar .navbar .navbar-nav .nav-item a:focus,
.main-navbar .navbar .navbar-nav .nav-item a.active {
  color: #0dbcc0;
}
.main-navbar .navbar .navbar-nav .nav-item a:hover::before,
.main-navbar .navbar .navbar-nav .nav-item a:focus::before,
.main-navbar .navbar .navbar-nav .nav-item a.active::before {
  width: 100%;
  right: auto;
  left: 0;
}
.main-navbar .navbar .navbar-nav .nav-item:last-child {
  margin-right: 0;
}
.main-navbar .navbar .navbar-nav .nav-item:first-child {
  margin-left: 0;
}
.main-navbar .navbar .navbar-nav .nav-item:hover a,
.main-navbar .navbar .navbar-nav .nav-item.active a {
  color: #0dbcc0;
}
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu {
  border: none;
  top: 70px;
  left: 0;
  z-index: 99;
  opacity: 0;
  width: 235px;
  display: block;
  border-radius: 0;
  padding: 10px 0;
  position: absolute;
  visibility: hidden;
  -webkit-transform: translateY(5px);
  transform: translateY(5px);
  background: #fff;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li {
  margin: 0;
}
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li a {
  padding: 10px 20px;
  position: relative;
  display: block;
  color: #202647;
  font-size: 15px;
  font-weight: 500;
}
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li a i {
  margin: 0;
  position: absolute;
  top: 50%;
  font-size: 20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 15px;
}
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li a:hover,
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li a:focus,
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li a.active {
  color: #0dbcc0;
}
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li a:hover::before,
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li a:focus::before,
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li a.active::before {
  display: none;
}
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu {
  top: 0;
  opacity: 0;
  right: -235px;
  left: auto;
  visibility: hidden;
  -webkit-transform: translateY(5px);
  transform: translateY(5px);
}
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a {
  color: #202647;
}
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:hover,
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:focus,
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a.active {
  color: #0dbcc0;
}
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:hover::before,
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:focus::before,
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a.active::before {
  display: none;
}
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu {
  top: 0;
  opacity: 0;
  left: 235px;
  visibility: hidden;
}
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: #202647;
}
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover,
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus,
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: #0dbcc0;
}
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover::before,
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus::before,
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active::before {
  display: none;
}
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
  top: 0;
  opacity: 0;
  left: -235px;
  visibility: hidden;
}
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: #202647;
}
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover,
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus,
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: #0dbcc0;
}
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover::before,
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus::before,
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active::before {
  display: none;
}
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
  top: 0;
  opacity: 0;
  left: 235px;
  visibility: hidden;
}
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: #202647;
}
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover,
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus,
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: #0dbcc0;
}
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover::before,
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus::before,
.main-navbar
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  a.active::before {
  display: none;
}
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
  top: 0;
  opacity: 0;
  left: -235px;
  visibility: hidden;
}
.main-navbar
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  a {
  color: #202647;
}
.main-navbar
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  a:hover,
.main-navbar
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  a:focus,
.main-navbar
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  a.active {
  color: #0dbcc0;
}
.main-navbar
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  a:hover::before,
.main-navbar
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  a:focus::before,
.main-navbar
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  a.active::before {
  display: none;
}
.main-navbar
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu {
  top: 0;
  opacity: 0;
  left: 235px;
  visibility: hidden;
}
.main-navbar
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  a {
  color: #202647;
}
.main-navbar
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  a:hover,
.main-navbar
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  a:focus,
.main-navbar
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  a.active {
  color: #0dbcc0;
}
.main-navbar
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  a:hover::before,
.main-navbar
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  a:focus::before,
.main-navbar
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  a.active::before {
  display: none;
}
.main-navbar
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li.active
  a {
  color: #0dbcc0;
}
.main-navbar
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li.active
  a::before {
  display: none;
}
.main-navbar
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li:hover
  .dropdown-menu {
  opacity: 1;
  visibility: visible;
}
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
  color: #0dbcc0;
}
.main-navbar
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li.active
  a::before {
  display: none;
}
.main-navbar
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li:hover
  .dropdown-menu {
  opacity: 1;
  visibility: visible;
}
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
  color: #0dbcc0;
}
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a::before {
  display: none;
}
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
  color: #0dbcc0;
}
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a::before {
  display: none;
}
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li.active a {
  color: #0dbcc0;
}
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li.active a::before {
  display: none;
}
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li.active a {
  color: #0dbcc0;
}
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li.active a::before {
  display: none;
}
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.main-navbar .navbar .navbar-nav .nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.main-navbar .navbar .others-options .option-item .hotline {
  font-size: 16px;
  font-weight: 500;
  color: #202647;
}
.main-navbar .navbar .others-options .option-item .hotline a {
  color: #202647;
}
.main-navbar .navbar .others-options .option-item .hotline a:hover {
  color: #0dbcc0;
}
.main-navbar .navbar .others-options .option-item .default-btn {
  padding: 12px 25px;
  background-color: #0dbcc0;
}
.main-navbar .navbar .others-options .option-item .default-btn:hover {
  background-color: #0473b9;
}
.main-navbar .navbar .others-options .cart-wrapper-btn {
  margin-left: 20px;
  font-size: 25px;
  line-height: 1;
  color: #0dbcc0;
  position: relative;
  top: 5px;
}
.main-navbar .navbar .others-options .cart-wrapper-btn i {
  line-height: 1;
}
.main-navbar .navbar .others-options .cart-wrapper-btn span {
  position: absolute;
  right: -10px;
  top: -5px;
  width: 20px;
  height: 20px;
  background-color: #202647;
  color: #fff;
  line-height: 20.5px;
  text-align: center;
  border-radius: 30px;
  font-size: 10px;
  font-weight: 500;
}
.main-navbar .navbar .others-options .search-box {
  margin-left: 25px;
  cursor: pointer;
  font-size: 25px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  line-height: 1;
  color: #0dbcc0;
  position: relative;
  top: 5px;
}
.main-navbar .navbar .others-options .search-box i {
  line-height: 1;
}
.main-navbar .navbar .others-options .search-box:hover {
  color: #0473b9;
}
.relative-color .main-navbar {
  background-color: #0dbcc0;
  padding: 10px 0;
}
.relative-color .main-navbar .navbar .navbar-nav .nav-item a {
  color: #fff;
  padding-top: 20px;
  padding-bottom: 20px;
}
.relative-color .main-navbar .navbar .navbar-nav .nav-item a::before {
  background-color: #fff;
}
.relative-color .main-navbar .navbar .navbar-nav .nav-item a:hover,
.relative-color .main-navbar .navbar .navbar-nav .nav-item a:focus,
.relative-color .main-navbar .navbar .navbar-nav .nav-item a.active {
  color: #fff;
}
.relative-color .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu {
  top: 60px;
}
.relative-color .main-navbar .navbar .others-options .option-item .hotline {
  color: #fff;
}
.relative-color .main-navbar .navbar .others-options .option-item .hotline a {
  color: #fff;
}
.relative-color .main-navbar .navbar .others-options .option-item .hotline a:hover {
  color: #fff;
}
.navbar-optional-color .main-navbar .navbar .navbar-nav .nav-item a {
  color: #202647;
}
.navbar-optional-color .main-navbar .navbar .navbar-nav .nav-item a::before {
  background-color: #0473b9;
}
.navbar-optional-color .main-navbar .navbar .navbar-nav .nav-item a:hover,
.navbar-optional-color .main-navbar .navbar .navbar-nav .nav-item a:focus,
.navbar-optional-color .main-navbar .navbar .navbar-nav .nav-item a.active {
  color: #0473b9;
}
.navbar-optional-color .main-navbar .navbar .navbar-nav .nav-item:hover a,
.navbar-optional-color .main-navbar .navbar .navbar-nav .nav-item.active a {
  color: #0473b9;
}
.navbar-optional-color .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li a {
  color: #202647;
}
.navbar-optional-color .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li a:hover,
.navbar-optional-color .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li a:focus,
.navbar-optional-color .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li a.active {
  color: #0473b9;
}
.navbar-optional-color .main-navbar .navbar .others-options .option-item .default-btn {
  background-color: #0473b9;
}
.navbar-optional-color .main-navbar .navbar .others-options .option-item .default-btn:hover {
  background-color: #0dbcc0;
}
.navbar-optional-color .main-navbar .navbar .others-options .cart-wrapper-btn {
  color: #0473b9;
}
.navbar-optional-color .main-navbar .navbar .others-options .search-box {
  color: #0473b9;
}
.navbar-optional-color .main-navbar .navbar .others-options .search-box:hover {
  color: #0dbcc0;
}
.navbar-area.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  -webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  background-color: #fff !important;
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}
.others-option-for-responsive {
  display: none;
}
.others-option-for-responsive .dot-menu {
  padding: 0 10px;
  height: 30px;
  cursor: pointer;
  z-index: 9991;
  position: absolute;
  right: 60px;
  top: -28px;
}
.others-option-for-responsive .dot-menu .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 30px;
}
.others-option-for-responsive .dot-menu .inner .circle {
  height: 5px;
  width: 5px;
  border-radius: 100%;
  margin: 0 2px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: #202647;
}
.others-option-for-responsive .dot-menu:hover .inner .circle {
  background-color: #0dbcc0;
}
.others-option-for-responsive .container {
  position: relative;
}
.others-option-for-responsive .container .container {
  position: absolute;
  right: 0;
  top: 10px;
  max-width: 260px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  margin-left: auto;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  z-index: 2;
  padding-left: 15px;
  padding-right: 15px;
}
.others-option-for-responsive .container .container.active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
.others-option-for-responsive .option-inner .others-options .option-item .hotline {
  font-size: 16px;
  font-weight: 500;
  color: #202647;
}
.others-option-for-responsive .option-inner .others-options .option-item .hotline a {
  color: #202647;
}
.others-option-for-responsive .option-inner .others-options .option-item .hotline a:hover {
  color: #0dbcc0;
}
.others-option-for-responsive .option-inner .others-options .option-item .default-btn {
  padding: 12px 25px;
  background-color: #28a5f5;
}
.others-option-for-responsive .option-inner .others-options .option-item .default-btn:hover {
  background-color: #0dbcc0;
}
.others-option-for-responsive .option-inner .others-options .cart-wrapper-btn {
  margin-left: 20px;
  font-size: 25px;
  line-height: 1;
  color: #0473b9;
  position: relative;
  top: 5px;
}
.others-option-for-responsive .option-inner .others-options .cart-wrapper-btn i {
  line-height: 1;
}
.others-option-for-responsive .option-inner .others-options .cart-wrapper-btn span {
  position: absolute;
  right: -10px;
  top: -5px;
  width: 20px;
  height: 20px;
  background-color: #202647;
  color: #fff;
  line-height: 20.5px;
  text-align: center;
  border-radius: 30px;
  font-size: 10px;
  font-weight: 500;
}
.others-option-for-responsive .option-inner .others-options .search-box {
  margin-left: 25px;
  cursor: pointer;
  font-size: 25px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  line-height: 1;
  color: #0473b9;
  position: relative;
  top: 5px;
}
.others-option-for-responsive .option-inner .others-options .search-box i {
  line-height: 1;
}
.others-option-for-responsive .option-inner .others-options .search-box:hover {
  color: #0dbcc0;
}
@media only screen and (max-width: 1199px) {
  .main-responsive-nav {
    display: block;
  }
  .main-responsive-nav .main-responsive-menu {
    position: relative;
  }
  .main-responsive-nav .main-responsive-menu.mean-container .mean-nav ul {
    font-size: 15px;
  }
  .main-responsive-nav .main-responsive-menu.mean-container .mean-nav ul li a.active {
    color: #0dbcc0;
  }
  .main-responsive-nav .main-responsive-menu.mean-container .mean-nav ul li a i {
    display: none;
  }
  .main-responsive-nav .main-responsive-menu.mean-container .mean-nav ul li li a {
    font-size: 14px;
  }
  .main-responsive-nav .main-responsive-menu.mean-container .others-options {
    display: none !important;
  }
  .main-responsive-nav .main-responsive-menu.mean-container .navbar-nav {
    overflow-y: scroll;
    height: 360px;
    -webkit-box-shadow: 0 7px 13px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 7px 13px 0 rgba(0, 0, 0, 0.1);
    background-color: #fff;
  }
  .main-responsive-nav .mean-container a.meanmenu-reveal {
    color: #202647;
  }
  .main-responsive-nav .mean-container a.meanmenu-reveal span {
    background: #202647;
    position: relative;
  }
  .main-responsive-nav .logo {
    position: relative;
  }
  .main-responsive-nav .logo img {
    max-width: 83px !important;
    height: 55px;
    margin-top: -10px;
  }
  .navbar-area {
    background-color: #fff;
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .main-navbar {
    display: none;
  }
  .others-option-for-responsive {
    display: block;
  }
}
.search-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}
.search-overlay .search-overlay-layer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}
.search-overlay .search-overlay-layer:nth-child(1) {
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.search-overlay .search-overlay-layer:nth-child(2) {
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-transition: all 0.3s ease-in-out 0.3s;
  transition: all 0.3s ease-in-out 0.3s;
}
.search-overlay .search-overlay-layer:nth-child(3) {
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  -webkit-transition: all 0.9s ease-in-out 0.6s;
  transition: all 0.9s ease-in-out 0.6s;
}
.search-overlay .search-overlay-close {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 50px;
  z-index: 2;
  text-align: center;
  cursor: pointer;
  padding: 10px;
  -webkit-transition: all 0.9s ease-in-out 1.5s;
  transition: all 0.9s ease-in-out 1.5s;
  opacity: 0;
  visibility: hidden;
}
.search-overlay .search-overlay-close .search-overlay-close-line {
  width: 100%;
  height: 3px;
  float: left;
  margin-bottom: 5px;
  background-color: #fff;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.search-overlay .search-overlay-close .search-overlay-close-line:nth-child(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.search-overlay .search-overlay-close .search-overlay-close-line:nth-child(2) {
  margin-top: -7px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.search-overlay .search-overlay-close:hover .search-overlay-close-line {
  background: #0dbcc0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.search-overlay .search-overlay-form {
  -webkit-transition: all 0.9s ease-in-out 1.4s;
  transition: all 0.9s ease-in-out 1.4s;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  z-index: 2;
  max-width: 500px;
  width: 500px;
}
.search-overlay .search-overlay-form form {
  position: relative;
}
.search-overlay .search-overlay-form form .input-search {
  display: block;
  width: 100%;
  height: 55px;
  border: none;
  border-radius: 30px;
  padding-left: 20px;
  color: #202647;
  font-size: 16px;
  outline: 0;
}
.search-overlay .search-overlay-form form button {
  position: absolute;
  right: 5px;
  top: 5px;
  width: 45px;
  color: #fff;
  height: 45px;
  border-radius: 50%;
  background-color: #0dbcc0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border: none;
  font-size: 20px;
  line-height: 45px;
  cursor: pointer;
}
.search-overlay .search-overlay-form form button:hover {
  background-color: #202647;
  color: #fff;
}
.search-overlay.search-overlay-active.search-overlay {
  opacity: 1;
  visibility: visible;
}
.search-overlay.search-overlay-active.search-overlay .search-overlay-layer {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.search-overlay.search-overlay-active.search-overlay .search-overlay-close {
  opacity: 1;
  visibility: visible;
}
.search-overlay.search-overlay-active.search-overlay .search-overlay-form {
  opacity: 1;
  visibility: visible;
}
.main-banner {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.main-banner-item {
  background-image: url(../img/main-banner/banner-bg-1.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 600px;
  position: relative;
  z-index: 1;
}
.main-banner-item::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background-color: #000;
  left: 0;
  right: 0;
  top: 0;
  z-index: -1;
  opacity: 0.5;
}
.main-banner-item.item-two {
  background-image: url(../img/main-banner/banner-bg-2.jpg);
  height: unset;
  padding-top: 15px;
}
.main-banner-item.item-two .container-fluid {
  max-width: 1920px;
  margin: auto;
}
.main-banner-item.item-two::before {
  display: none;
}
.main-banner-item.item-two .main-banner-content {
  text-align: left;
}
.main-banner-item.item-two .main-banner-content h1 {
  font-size: 50px;
  color: #202647;
  margin-bottom: 25px;
  line-height: 1.4;
  font-weight: 700;
}
.main-banner-item.item-two .main-banner-content p {
  color: #202647;
  font-size: 16px;
}
.main-banner-item.item-two .main-banner-search-form {
  background-color: #e0eefa;
  max-width: unset;
}
.main-banner-item.item-two .main-banner-search-form form .form-group label {
  color: #1d39da;
}
.main-banner-item.item-two .main-banner-search-form form button {
  background-color: #1d39da;
  color: #fff;
}
.main-banner-item.item-two .main-banner-search-form form button:hover {
  background-color: #0dbcc0;
}
.main-banner-item.item-two .main-banner-inner {
  max-width: 630px;
  margin-left: auto;
}
.main-banner-item.item-three {
  background-image: url(../img/main-banner/banner-bg-3.jpg);
}
.main-banner-item.item-three::before {
  background-color: #fff;
  opacity: 0.5;
}
.main-banner-item.item-three .main-banner-content {
  text-align: left;
  max-width: 730px;
}
.main-banner-item.item-three .main-banner-content h1 {
  font-size: 50px;
  color: #202647;
  line-height: 1.5;
  font-weight: 700;
}
.main-banner-item.item-three .main-banner-content p {
  font-size: 18px;
  color: #202647;
}
.main-banner-item.item-three .main-banner-content .banner-btn {
  margin-top: 30px;
}
.main-banner-item.item-three .main-banner-content .banner-btn .default-btn {
  background-color: #0473b9;
}
.main-banner-item.item-three .main-banner-content .banner-btn .default-btn:hover {
  background-color: #0dbcc0;
}
.main-banner-item.item-four {
  background-image: url(../img/main-banner/banner-bg-4.jpg);
}
.main-banner-item.item-four .main-banner-content {
  text-align: left;
}
.main-banner-item.item-four .main-banner-content h1 {
  margin-bottom: 20px;
  line-height: 1.4;
  font-size: 60px;
  font-weight: 700;
}
.main-banner-item.item-four .main-banner-content p {
  font-size: 16px;
}
.main-banner-item.item-four .main-banner-content .banner-btn {
  margin-top: 30px;
}
.main-banner-content {
  text-align: center;
}
.main-banner-content h1 {
  font-size: 50px;
  color: #fff;
  margin-bottom: 15px;
  font-weight: 700;
}
.main-banner-content p {
  font-size: 20px;
  margin-bottom: 0;
  color: #fff;
  font-weight: 500;
}
.main-banner-search-form {
  background-color: #dde3e8;
  border-radius: 10px;
  padding: 15px 20px;
  max-width: 780px;
  margin: 30px auto 0;
}
.main-banner-search-form form {
  position: relative;
}
.main-banner-search-form form .col-lg-5 {
  padding-right: 5px;
}
.main-banner-search-form form .col-lg-7 {
  padding-left: 5px;
}
.main-banner-search-form form .form-group {
  margin-bottom: 0;
  position: relative;
}
.main-banner-search-form form .form-group label {
  z-index: 1;
  display: block;
  margin-bottom: 0;
  position: absolute;
  left: 15px;
  color: #0dbcc0;
  font-size: 22px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.main-banner-search-form form .form-group label a {
  display: block;
  color: #0dbcc0;
}
.main-banner-search-form form .form-group .form-control {
  display: block;
  padding: 10px 10px 10px 45px;
  width: 100%;
  border: none;
  background-color: #fff;
  border-right: 1px solid #eee;
  height: 55px;
  border-radius: 10px;
  color: #202647;
  font-size: 15px;
}
.main-banner-search-form form .form-group .form-control::-webkit-input-placeholder {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #6b6b84;
}
.main-banner-search-form form .form-group .form-control:-ms-input-placeholder {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #6b6b84;
}
.main-banner-search-form form .form-group .form-control::-ms-input-placeholder {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #6b6b84;
}
.main-banner-search-form form .form-group .form-control::placeholder {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #6b6b84;
}
.main-banner-search-form form .form-group .form-control:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.main-banner-search-form form .form-group .form-control:focus::-webkit-input-placeholder {
  color: transparent;
}
.main-banner-search-form form .form-group .form-control:focus:-ms-input-placeholder {
  color: transparent;
}
.main-banner-search-form form .form-group .form-control:focus::-ms-input-placeholder {
  color: transparent;
}
.main-banner-search-form form .form-group .form-control:focus::placeholder {
  color: transparent;
}
.main-banner-search-form form button {
  border: none;
  background-color: #0dbcc0;
  color: #fff;
  height: 35px;
  width: 35px;
  position: absolute;
  right: 12px;
  padding: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  top: 10px;
  font-size: 20px;
  cursor: pointer;
  border-radius: 30px;
}
.main-banner-search-form form button i {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.main-banner-search-form form button:hover,
.main-banner-search-form form button:focus {
  background-color: #0473b9;
  color: #fff;
}
.main-banner-image {
  position: relative;
  text-align: center;
}
.main-banner-image .image-shape-1 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  -webkit-animation: moveBounce 15s linear infinite;
  animation: moveBounce 15s linear infinite;
}
.main-banner-image .image-shape-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  -webkit-animation: moveLeftBounce 15s linear infinite;
  animation: moveLeftBounce 15s linear infinite;
}
.main-banner-shape .shape-1 {
  position: absolute;
  top: -100px;
  left: -45px;
  z-index: 1;
  -webkit-animation: moveBounce 15s linear infinite;
  animation: moveBounce 15s linear infinite;
}
.main-banner-shape .shape-1 img {
  -webkit-transform: rotate(65deg);
  transform: rotate(65deg);
}
.main-banner-shape .shape-2 {
  position: absolute;
  bottom: -100px;
  left: -45px;
  z-index: 1;
  -webkit-animation: moveBounce 15s linear infinite;
  animation: moveBounce 15s linear infinite;
}
.banner-form {
  background-color: #fff;
  padding: 50px 30px;
  border-radius: 10px;
}
.banner-form h3 {
  font-size: 30px;
  margin-bottom: 35px;
  text-align: center;
}
.banner-form form .form-group {
  margin-bottom: 15px;
}
.banner-form form .form-group .form-control {
  height: 60px;
  padding: 0 15px;
  line-height: initial;
  color: #202647;
  background-color: transparent;
  border-color: #eee;
  border-radius: 0;
  -webkit-box-shadow: unset !important;
  box-shadow: unset !important;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 15px;
  font-weight: 400;
  width: 100%;
}
.banner-form form .form-group .form-control:focus {
  border-color: #0dbcc0;
  background-color: transparent;
  outline: 0;
}
.banner-form form .form-group textarea.form-control {
  height: 120px;
  padding-top: 15px;
}
.banner-form form .nice-select {
  height: 60px;
  width: 100%;
  line-height: 60px;
  font-size: 14px;
  padding-left: 12px;
  padding-right: 12px;
  background-color: transparent;
  border-color: #eee;
  color: #6b6b84;
  border-radius: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  margin-bottom: 15px;
}
.banner-form form .nice-select:focus {
  border-color: #0dbcc0;
  background-color: transparent;
}
.banner-form form .nice-select .list {
  background-color: #fff;
  -webkit-box-shadow: 0 0 29px 0 rgba(102, 102, 102, 0.1);
  box-shadow: 0 0 29px 0 rgba(102, 102, 102, 0.1);
  border-radius: 0;
  margin-top: 0;
  margin-bottom: 0;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
}
.banner-form form .nice-select .list .option {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #202647;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 14px;
}
.banner-form form .nice-select .list .option:hover {
  background-color: #0dbcc0 !important;
  color: #fff;
}
.banner-form form .nice-select .list .option.selected {
  background-color: transparent;
  font-weight: 600;
}
.banner-form form .nice-select::after {
  height: 8px;
  width: 8px;
  border-color: #0dbcc0;
  right: 15px;
}
.banner-form form .banner-btn {
  text-align: center;
}
.banner-form form .banner-btn .default-btn {
  border: none;
  width: 100%;
  font-size: 15px;
  padding: 15px;
  cursor: pointer;
}
.banner-form form .form-check {
  margin-bottom: 20px;
  font-weight: 400;
  color: #6b6b84;
  font-size: 15px;
}
.banner-form form .form-check a {
  color: #0dbcc0;
}
.categories-area {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.categories-item {
  text-align: center;
}
.categories-item .icon {
  background-color: #9ad6fc;
  border-radius: 50%;
  display: inline-block;
  height: 130px;
  width: 130px;
  line-height: 130px;
  margin-bottom: 20px;
}
.categories-item .icon img {
  display: inline-block;
  height: 100px;
  width: 100px;
  line-height: 100px;
  background-color: #fff;
  color: #0473b9;
  text-align: center;
  border-radius: 50%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 55px;
  padding: 10px;
}
.categories-item .icon i {
  display: inline-block;
  height: 100px;
  width: 100px;
  line-height: 100px;
  background-color: #fff;
  color: #0473b9;
  text-align: center;
  border-radius: 50%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 55px;
}
.categories-item .icon i:hover {
  background-color: #0dbcc0;
  color: #fff;
}
.categories-item h3 {
  font-size: 22px;
  margin-bottom: 0;
}
.categories-item h3 a {
  color: #202647;
}
.categories-item-box {
  text-align: center;
  background-color: #fff;
  -webkit-box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  margin: 5px;
  padding: 25px;
}
.categories-item-box .icon {
  margin-bottom: 20px;
}
.categories-item-box .icon i {
  display: inline-block;
  height: 100px;
  width: 100px;
  line-height: 100px;
  background-color: transparent;
  border: 1px dashed #209eec;
  color: #0473b9;
  text-align: center;
  border-radius: 50%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 55px;
}
.categories-item-box .icon i:hover {
  background-color: #0dbcc0;
  color: #fff;
  border: 1px dashed #0dbcc0;
}
.categories-item-box h3 {
  font-size: 22px;
  margin-bottom: 0;
}
.categories-item-box h3 a {
  color: #202647;
}
.categories-slider.owl-theme .owl-nav {
  margin-top: 0;
}
.categories-slider.owl-theme .owl-nav .owl-prev,
.categories-slider.owl-theme .owl-nav .owl-next {
  position: absolute;
  left: -50px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: 0;
  outline: 0;
  width: 50px;
  height: 50px;
  line-height: 51px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: transparent;
  border-style: solid;
  border-color: #0dbcc0;
  color: #0dbcc0;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
}
.categories-slider.owl-theme .owl-nav .owl-prev:hover,
.categories-slider.owl-theme .owl-nav .owl-prev:focus,
.categories-slider.owl-theme .owl-nav .owl-next:hover,
.categories-slider.owl-theme .owl-nav .owl-next:focus {
  background-color: #0dbcc0;
  color: #fff;
  border-color: #0dbcc0;
  -webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
}
.categories-slider.owl-theme .owl-nav .owl-prev i,
.categories-slider.owl-theme .owl-nav .owl-next i {
  font-size: 40px;
  position: relative;
  top: 2px;
}
.categories-slider.owl-theme .owl-nav .owl-next {
  left: auto;
  right: -50px;
}
.categories-slider.owl-theme:hover .owl-nav .owl-prev,
.categories-slider.owl-theme:hover .owl-nav .owl-next {
  opacity: 1;
  visibility: visible;
  left: -70px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.categories-slider.owl-theme:hover .owl-nav .owl-next {
  left: auto;
  right: -70px;
}
.categories-shape {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.about-area .container-fluid {
  max-width: 1920px;
  margin: auto;
  overflow: hidden;
}
.about-image {
  position: relative;
  text-align: right;
  padding-bottom: 200px;
  padding-right: 30px;
}
.about-image img {
  border-radius: 10px;
}
.about-image img:nth-child(2) {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  border-radius: 0;
}
.about-shape .shape-1 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-animation: moveLeftBounce 3s linear infinite;
  animation: moveLeftBounce 3s linear infinite;
}
.about-shape .shape-2 {
  position: absolute;
  bottom: -115px;
  right: 30px;
  z-index: -1;
  max-width: 275px;
  -webkit-animation: moveBounce 5s linear infinite;
  animation: moveBounce 5s linear infinite;
}
@-webkit-keyframes moveBounce {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}
@keyframes moveBounce {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}
@-webkit-keyframes moveLeftBounce {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
  50% {
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}
@keyframes moveLeftBounce {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
  50% {
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}
.about-content {
  max-width: 645px;
}
.about-content h3 {
  font-size: 38px;
  margin-bottom: 0;
}
.about-content .bar {
  height: 5px;
  width: 100px;
  background: #0dbcc0;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  margin: 25px auto 20px 0;
}
.about-content .bar::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  width: 5px;
  background: #fff;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: MOVE-BG;
  animation-name: MOVE-BG;
}
.about-content p {
  margin-bottom: 0;
}
.about-content .about-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-top: 25px;
}
.about-content .about-list li {
  list-style-type: none;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 500;
  color: #202647;
  position: relative;
  padding-left: 38px;
  padding-top: 2px;
}
.about-content .about-list li:last-child {
  margin-bottom: 0;
}
.about-content .about-list li i {
  display: inline-block;
  height: 30px;
  width: 30px;
  line-height: 30px;
  background-color: #dafafc;
  color: #0dbcc0;
  text-align: center;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 30px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.about-content .about-list li:hover i {
  background-color: #0dbcc0;
  color: #fff;
}
.about-content .about-btn {
  margin-top: 30px;
}
.doctor-area {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.doctor-area.bg-shape {
  position: relative;
}
.doctor-area.bg-shape::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  background-image: url(../img/doctor-bg.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 55%;
  z-index: -1;
}
.overview-area {
  background-color: #f7f7f7;
}
.darkbg {
  background-color: #f7f7f7;
}
.header_text {
  margin-left: auto;
}
.doctor-area .section-title {
  text-align: left;
}
.doctor-area .section-title .bar {
  margin: 20px auto 20px 0;
}
.doctor-area .section-title p {
  margin: 0 auto 0 0;
}
.doctor-area .specialist-btn {
  text-align: right;
}
.doctor-area .container-fluid {
  max-width: 1920px;
  margin: auto;
}
.single-doctor {
  margin-bottom: 30px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  padding: 15px 15px 7px;
  border-radius: 5px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.single-doctor .doctor-image {
  position: relative;
  border: 1px solid #eee;
  overflow: hidden;
}
.single-doctor .doctor-image img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: rotate(2deg) scale(1.2);
  transform: rotate(2deg) scale(1.2);
  margin-top: 45px;
}
.single-doctor .doctor-image a i {
  display: inline-block;
  height: 60px;
  width: 60px;
  line-height: 60px;
  background-color: #e8f1fa;
  color: #0dbcc0;
  font-size: 30px;
  text-align: center;
  border-radius: 50px;
  position: absolute;
  top: 5px;
  right: 5px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.single-doctor .doctor-image a i:hover {
  background-color: #0dbcc0;
  color: #fff;
}
.single-doctor .doctor-content {
  margin-top: 7px;
  position: relative;
}
.single-doctor .doctor-content h3 {
  font-size: 22px;
  margin-bottom: 5px;
  text-align: center;
}
.single-doctor .doctor-content h3 a {
  color: #202647;
  font-size: 16px;
}
.single-doctor .doctor-content .designation {
  font-size: 14px;
  color: #202647;
  font-weight: 500;
  margin-bottom: 5px;
  text-align: center;
}
.single-doctor .doctor-content .department-btn {
  display: inline-block;
  padding: 8px 20px;
  background-color: #0dbcc0;
  color: #fff;
  border-radius: 10px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-weight: 500;
  font-size: 14px;
  position: absolute;
  right: 0;
  top: 0;
}
.single-doctor .doctor-content .department-btn:hover {
  background-color: #0473b9;
  color: #fff;
}
.single-doctor .doctor-content .rating {
  padding-left: 0;
  margin-bottom: 0;
}
.single-doctor .doctor-content .rating li {
  list-style-type: none;
  display: inline-block;
}
.single-doctor .doctor-content .rating li i {
  font-size: 15px;
  color: #f9c23e;
}
.single-doctor .doctor-content .information-list {
  padding-left: 0;
  margin-top: 15px;
  margin-bottom: 25px;
}
.single-doctor .doctor-content .information-list li {
  list-style-type: none;
  font-size: 14px;
  color: #202647;
  font-weight: 500;
  margin-bottom: 12px;
  position: relative;
  padding-left: 22px;
}
.single-doctor .doctor-content .information-list li:last-child {
  margin-bottom: 0;
}
.single-doctor .doctor-content .information-list li i {
  font-size: 16px;
  color: #0dbcc0;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.single-doctor .doctor-content .doctor-btn .default-btn {
  padding: 10px 25px;
  font-size: 15px;
  background-color: #34bed8;
  margin-right: 10px;
}
.single-doctor .doctor-content .doctor-btn .default-btn:hover {
  background-color: #0dbcc0;
}
.single-doctor .doctor-content .doctor-btn .optional-btn {
  display: inline-block;
  padding: 10px 25px;
  background-color: #0dbcc0;
  color: #fff;
  border-radius: 10px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-weight: 500;
  font-size: 15px;
}
.single-doctor .doctor-content .doctor-btn .optional-btn:hover {
  background-color: #0473b9;
  color: #fff;
}
.single-doctor:hover {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}
.single-doctor:hover .doctor-image img {
  -webkit-transform: rotate(2deg) scale(1.3);
  transform: rotate(2deg) scale(1.3);
}
.doctor-inner-box {
  max-width: 1280px;
  margin: auto;
}
.doctor-slider {
  left: calc((100% - 1280px) / 2);
  position: relative;
}
.doctor-slider .single-doctor {
  border: 1px solid #eee;
}
.doctor-slider .single-doctor .doctor-image img {
  height: 100%;
  -webkit-transform: rotate(2deg) scale(1.2);
  transform: rotate(2deg) scale(1.2);
}
.doctor-slider .single-doctor:hover {
  -webkit-transform: unset;
  transform: unset;
}
.doctor-slider .single-doctor:hover .doctor-image img {
  -webkit-transform: rotate(2deg) scale(1.3);
  transform: rotate(2deg) scale(1.3);
}
.doctor-shape .shape-1 {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.doctor-shape .shape-2 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.queries-area {
  overflow: hidden;
}
.queries-area .container-fluid {
  max-width: 1920px;
  margin: auto;
}
.queries-form {
  background-color: #fff;
  -webkit-box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  padding: 50px 40px;
  border-radius: 5px;
  border: 1px solid #eee;
}
.queries-form .content {
  margin-bottom: 30px;
}
.queries-form .content h3 {
  font-size: 32px;
  margin-bottom: 0;
  line-height: 1.4;
}
.queries-form form .form-group {
  position: relative;
  margin-bottom: 15px;
}
.queries-form form .form-group .form-control {
  padding: 10px 10px 10px 45px;
  color: #202647;
  background-color: #f2f9fc;
  border: 1px solid #f2f9fc;
  font-size: 14px;
  font-weight: 400;
  height: 60px;
  font-family: poppins, sans-serif;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 5px;
}
.queries-form form .form-group .form-control::-webkit-input-placeholder {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #6b6b84;
}
.queries-form form .form-group .form-control:-ms-input-placeholder {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #6b6b84;
}
.queries-form form .form-group .form-control::-ms-input-placeholder {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #6b6b84;
}
.queries-form form .form-group .form-control::placeholder {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #6b6b84;
}
.queries-form form .form-group .form-control:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: transparent;
  border: 1px solid #0dbcc0;
}
.queries-form form .form-group .form-control:focus::-webkit-input-placeholder {
  color: transparent;
}
.queries-form form .form-group .form-control:focus:-ms-input-placeholder {
  color: transparent;
}
.queries-form form .form-group .form-control:focus::-ms-input-placeholder {
  color: transparent;
}
.queries-form form .form-group .form-control:focus::placeholder {
  color: transparent;
}
.queries-form form .form-group textarea.form-control {
  height: 150px;
  padding: 15px 0 0 15px;
}
.queries-form form .form-group label {
  z-index: 1;
  display: block;
  margin-bottom: 0;
  position: absolute;
  left: 15px;
  color: #0dbcc0;
  font-size: 22px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.queries-form form .form-group label a {
  display: block;
  color: #0dbcc0;
}
.queries-form form .nice-select {
  height: 60px;
  width: 100%;
  line-height: 58px;
  font-size: 14px;
  padding-left: 12px;
  padding-right: 12px;
  background-color: #f2f9fc;
  border: 1px solid #f2f9fc;
  color: #6b6b84;
  border-radius: 5px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  margin-bottom: 15px;
}
.queries-form form .nice-select:focus {
  background-color: transparent;
  border: 1px solid #0dbcc0;
}
.queries-form form .nice-select .list {
  background-color: #fff;
  -webkit-box-shadow: 0 0 29px 0 rgba(102, 102, 102, 0.1);
  box-shadow: 0 0 29px 0 rgba(102, 102, 102, 0.1);
  border-radius: 0;
  margin-top: 0;
  margin-bottom: 0;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
}
.queries-form form .nice-select .list .option {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #202647;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 14px;
}
.queries-form form .nice-select .list .option:hover {
  background-color: #0dbcc0 !important;
  color: #fff;
}
.queries-form form .nice-select .list .option.selected {
  background-color: transparent;
  font-weight: 600;
}
.queries-form form .nice-select::after {
  height: 8px;
  width: 8px;
  border-color: #0dbcc0;
  right: 15px;
}
.queries-form form .queries-btn {
  margin-top: 5px;
}
.queries-form form .queries-btn .default-btn {
  border: none;
  padding: 15px;
  width: 100%;
  cursor: pointer;
}
.queries-form form .form-check {
  margin-bottom: 10px;
  font-weight: 400;
  color: #6b6b84;
  font-size: 15px;
}
.queries-form form .form-check a {
  color: #0dbcc0;
}
.queries-form.queries-form-width {
  max-width: 630px;
}
.queries-image {
  position: relative;
  text-align: center;
}
.queries-image .queries-shape .shape-1 {
  position: absolute;
  bottom: -50px;
  z-index: -1;
  -webkit-animation: moveLeftBounce 3s linear infinite;
  animation: moveLeftBounce 3s linear infinite;
}
.queries-image .queries-shape .shape-2 {
  position: absolute;
  bottom: 0;
  z-index: -1;
  -webkit-animation: moveBounce 20s linear infinite;
  animation: moveBounce 20s linear infinite;
}
.queries-image .queries-shape .shape-3 {
  position: absolute;
  bottom: -85px;
  z-index: -1;
  -webkit-animation: moveLeftBounce 3s linear infinite;
  animation: moveLeftBounce 3s linear infinite;
  max-width: 800px;
  left: 0;
  right: 0;
  margin: auto;
}
.overview-content h3 {
  font-size: 38px;
  margin-bottom: 0;
}
.overview-content .bar {
  height: 5px;
  width: 100px;
  background: #0dbcc0;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  margin: 20px auto 20px 0;
}
.overview-content .bar::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  width: 5px;
  background: #fff;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: MOVE-BG;
  animation-name: MOVE-BG;
}
.overview-content p {
  margin-bottom: 0;
}
.overview-content .overview-btn {
  margin-top: 25px;
}
.overview-image {
  position: relative;
}
.overview-image .video-btn {
  display: inline-block;
  width: 75px;
  height: 75px;
  line-height: 75px;
  background-color: #0dbcc0;
  border-radius: 50%;
  color: #fff;
  position: absolute;
  text-align: center;
  margin: auto;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 30px;
}
.overview-image .video-btn::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  bottom: 0;
  left: 0;
  border-radius: 50%;
  border: 2px solid #fff;
  -webkit-animation: ripple 1s linear infinite;
  animation: ripple 1s linear infinite;
}
.overview-image .video-btn:hover {
  background-color: #fff;
}
.overview-image .video-btn:hover i {
  color: #0dbcc0;
}
@-webkit-keyframes ripple {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  75% {
    -webkit-transform: scale(1.75);
    transform: scale(1.75);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(2);
    transform: scale(2);
    opacity: 0;
  }
}
@keyframes ripple {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  75% {
    -webkit-transform: scale(1.75);
    transform: scale(1.75);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(2);
    transform: scale(2);
    opacity: 0;
  }
}
.client-area {
  background-color: #f1f9fd;
  overflow: hidden;
}
.client-area.bg-ffffff {
  background-color: #fff;
}
.client-area.bg-ffffff .client-inner-box {
  -webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
}
.client-inner-box {
  background-color: #fff;
  padding: 50px;
  margin-top: 50px;
  margin-bottom: 50px;
}
.client-inner-box .title {
  margin-bottom: 30px;
  text-align: center;
}
.client-inner-box .title h3 {
  font-size: 38px;
  margin-bottom: 0;
}
.client-item {
  text-align: center;
}
.client-item p {
  font-size: 18px;
  font-style: italic;
  margin-bottom: 0;
}
.client-item .client-info {
  margin-top: 25px;
}
.client-item .client-info img {
  display: inline-block;
  height: 80px;
  width: 80px;
  border-radius: 50%;
  margin-bottom: 15px;
}
.client-item .client-info h3 {
  font-size: 20px;
  margin-bottom: 5px;
}
.client-item .client-info span {
  font-size: 14px;
  font-weight: 500;
  color: #0dbcc0;
}
.client-slider.owl-theme .owl-dots {
  position: absolute;
  right: 0;
  bottom: 0;
  display: -ms-grid;
  display: grid;
}
.client-slider.owl-theme .owl-dots .owl-dot span {
  width: 20px;
  height: 20px;
  background-color: transparent;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 50%;
  margin: 5px;
  border: 1px solid #0dbcc0;
  position: relative;
}
.client-slider.owl-theme .owl-dots .owl-dot span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: #0dbcc0;
  border-radius: 50%;
  margin: 4px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: scale(0);
  transform: scale(0);
}
.client-slider.owl-theme .owl-dots .owl-dot:hover span::before,
.client-slider.owl-theme .owl-dots .owl-dot.active span::before {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.client-slider.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 0;
}
.client-image {
  position: relative;
  z-index: 1;
  margin-top: 30px;
  text-align: center;
}
.client-image .client-shape {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  -webkit-animation: moveBounce 10s linear infinite;
  animation: moveBounce 10s linear infinite;
}
.single-blog {
  margin-bottom: 30px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.single-blog .blog-image {
  overflow: hidden;
  position: relative;
}
.single-blog .blog-image img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.single-blog .blog-image span {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background-color: #0dbcc0;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  padding: 10px 25px;
}
.single-blog .blog-content {
  padding: 30px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
}
.single-blog .blog-content h3 {
  margin-bottom: 12px;
  font-size: 25px;
  line-height: 1.4;
}
.single-blog .blog-content h3 a {
  color: #202647;
}
.single-blog .blog-content p {
  margin-bottom: 12px;
}
.single-blog .blog-content .blog-btn {
  font-size: 15px;
  color: #0dbcc0;
  font-weight: 500;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.single-blog:hover {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}
.single-blog:hover .blog-image img {
  -webkit-transform: rotate(2deg) scale(1.2);
  transform: rotate(2deg) scale(1.2);
}
.single-blog:hover .blog-content h3 a {
  color: #0dbcc0;
}
.single-blog:hover .blog-content .blog-btn {
  letter-spacing: 1px;
}
.fun-facts-area {
  background-color: #0dbcc0;
}
.single-fun-fact {
  margin-bottom: 30px;
  text-align: center;
}
.single-fun-fact h3 {
  line-height: 1;
  font-size: 75px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #fff;
  margin-bottom: 5px;
  font-weight: 500;
}
.single-fun-fact p {
  font-weight: 500;
  color: #fff;
}
.newsletter-area {
  background-color: #eaf6fc;
}
.newsletter-area.bg-color {
  background-color: #f3f7fb;
}
.newsletter-area.bg-color .newsletter-form button {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#0090cc),
    color-stop(#0080d8),
    color-stop(#006de1),
    color-stop(#0056e3),
    to(#1f35db)
  );
  background: linear-gradient(to bottom, #0090cc, #0080d8, #006de1, #0056e3, #1f35db);
}
.newsletter-content h2 {
  font-size: 35px;
  margin-bottom: 15px;
}
.newsletter-content p {
  margin-bottom: 0;
}
.newsletter-form {
  position: relative;
}
.newsletter-form .input-newsletter {
  display: block;
  width: 100%;
  background-color: #fff;
  border: none;
  height: 70px;
  padding: 15px 15px 14px;
  border-radius: 5px;
  outline: 0;
  color: #202647;
  font-family: poppins, sans-serif;
}
.newsletter-form .input-newsletter::-webkit-input-placeholder {
  color: #6b6b84;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.newsletter-form .input-newsletter:-ms-input-placeholder {
  color: #6b6b84;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.newsletter-form .input-newsletter::-ms-input-placeholder {
  color: #6b6b84;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.newsletter-form .input-newsletter::placeholder {
  color: #6b6b84;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.newsletter-form .input-newsletter:focus::-webkit-input-placeholder {
  color: transparent;
}
.newsletter-form .input-newsletter:focus:-ms-input-placeholder {
  color: transparent;
}
.newsletter-form .input-newsletter:focus::-ms-input-placeholder {
  color: transparent;
}
.newsletter-form .input-newsletter:focus::placeholder {
  color: transparent;
}
.newsletter-form button {
  position: absolute;
  right: 4px;
  top: 4px;
  background-color: #0dbcc0;
  color: #fff;
  border: none;
  height: 62px;
  padding: 0 30px;
  border-radius: 5px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  line-height: 50px;
  text-transform: capitalize;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
}
.newsletter-form button:hover {
  background-color: #202647;
  color: #fff;
}
.newsletter-form #validator-newsletter {
  color: red;
  position: relative;
  top: 8px;
  font-size: 15px;
  font-weight: 400;
}
.healthcare-area {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#018ecc),
    color-stop(#007ed8),
    color-stop(#006ce0),
    color-stop(#0055e2),
    to(#1f35db)
  );
  background: linear-gradient(to bottom, #018ecc, #007ed8, #006ce0, #0055e2, #1f35db);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.healthcare-content h3 {
  font-size: 35px;
  margin-bottom: 18px;
  color: #fff;
}
.healthcare-content p {
  color: #fff;
  margin-bottom: 0;
}
.healthcare-content .healthcare-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-top: 25px;
}
.healthcare-content .healthcare-list li {
  list-style-type: none;
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  position: relative;
  padding-left: 38px;
  padding-top: 2px;
}
.healthcare-content .healthcare-list li:last-child {
  margin-bottom: 0;
}
.healthcare-content .healthcare-list li i {
  display: inline-block;
  height: 30px;
  width: 30px;
  line-height: 30px;
  background-color: #dafafc;
  color: #0dbcc0;
  text-align: center;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 30px;
  margin-right: 5px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.healthcare-content .healthcare-list li:hover i {
  background-color: #0dbcc0;
  color: #fff;
}
.healthcare-content .healthcare-btn {
  margin-top: 35px;
}
.healthcare-content .healthcare-btn .default-btn {
  background-color: #fff;
  color: #0dbcc0;
  padding: 12px 25px;
}
.healthcare-content .healthcare-btn .default-btn:hover {
  background-color: #0dbcc0;
  color: #fff;
}
.healthcare-image {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}
.healthcare-image img {
  border-radius: 0 0 0 100px;
}
.healthcare-image::before {
  position: absolute;
  content: "";
  height: 90%;
  width: 95%;
  background-color: #b5bef2;
  right: -20px;
  bottom: -20px;
  z-index: -1;
  border-radius: 0 0 0 100px;
}
.healthcare-image .image-shape-1 {
  position: absolute;
  bottom: -100px;
  left: -60px;
  z-index: -1;
  -webkit-animation: moveBounce 10s linear infinite;
  animation: moveBounce 10s linear infinite;
}
.healthcare-shape .shape-1 {
  position: absolute;
  left: -10px;
  top: -80px;
  z-index: -1;
  max-width: 320px;
  -webkit-animation: moveBounce 15s linear infinite;
  animation: moveBounce 15s linear infinite;
}
.healthcare-shape .shape-2 {
  position: absolute;
  right: -50px;
  top: -50px;
  z-index: -1;
  -webkit-animation: moveLeftBounce 10s linear infinite;
  animation: moveLeftBounce 10s linear infinite;
}
.specialist-area {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.specialist-area .container-fluid {
  max-width: 1920px;
  margin: auto;
  overflow: hidden;
  padding-left: 0;
  padding-right: 0;
}
.specialist-area .container-fluid .row .col-lg-6 {
  padding-left: 0;
  padding-right: 0;
}
.specialist-inner {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#018ecc),
    color-stop(#007ed8),
    color-stop(#006ce0),
    color-stop(#0055e2),
    to(#1f35db)
  );
  background: linear-gradient(to bottom, #018ecc, #007ed8, #006ce0, #0055e2, #1f35db);
  padding: 100px 25px 100px 0;
  position: relative;
  z-index: 1;
}
.specialist-inner .specialist-content {
  max-width: 615px;
  margin-left: auto;
}
.specialist-inner .specialist-content .title {
  margin-bottom: 35px;
}
.specialist-inner .specialist-content .title h3 {
  font-size: 38px;
  margin-bottom: 25px;
  color: #fff;
}
.specialist-inner .specialist-content .title h4 {
  font-size: 25px;
  margin-bottom: 10px;
  color: #fff;
}
.specialist-inner .specialist-content .title span {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
}
.specialist-inner .specialist-content p {
  color: #fff;
  margin-bottom: 20px;
}
.specialist-inner .specialist-content span {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}
.specialist-inner .specialist-content .specialist-info {
  padding-left: 0;
  margin-bottom: 0;
  margin-top: 25px;
}
.specialist-inner .specialist-content .specialist-info li {
  list-style-type: none;
  display: inline-block;
}
.specialist-inner .specialist-content .specialist-info li span {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  margin-right: 5px;
}
.specialist-inner .specialist-content .specialist-info li a {
  margin-right: 10px;
}
.specialist-inner .specialist-content .specialist-info li a:last-child {
  margin-right: 0;
}
.specialist-inner .specialist-content .specialist-info li a i {
  display: inline-block;
  height: 35px;
  width: 35px;
  line-height: 35px;
  background-color: #fff;
  color: #0dbcc0;
  -webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  text-align: center;
  font-size: 18px;
  border-radius: 50px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.specialist-inner .specialist-content .specialist-info li a i:hover {
  background-color: #0dbcc0;
  color: #fff;
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}
.specialist-inner .specialist-content .specialist-btn {
  margin-top: 35px;
}
.specialist-inner .specialist-content .specialist-btn .default-btn {
  background-color: #fff;
  color: #0dbcc0;
}
.specialist-inner .specialist-content .specialist-btn .default-btn:hover {
  background-color: #0dbcc0;
  color: #fff;
}
.specialist-inner .specialist-shape {
  position: absolute;
  top: 0;
  left: -50%;
  opacity: 20%;
  z-index: -1;
}
.specialist-inner.two .specialist-content .specialist-btn .default-btn {
  color: #0473b9;
}
.specialist-inner.two .specialist-content .specialist-btn .default-btn:hover {
  color: #fff;
}
.specialist-inner.two .specialist-content .specialist-info li a i {
  color: #0473b9;
}
.specialist-inner.two .specialist-content .specialist-info li a i:hover {
  color: #fff;
}
.specialist-image {
  background-image: url(../img/specialist/specialist.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
}
.specialist-image.two {
  background-image: url(../img/specialist/specialist-2.jpg);
}
.team-card {
  position: relative;
  margin-bottom: 30px;
}
.team-card img {
  position: relative;
  margin-bottom: 120px;
  border-radius: 5px 5px 0 0;
}
.team-card .content {
  position: absolute;
  background-color: #fff;
  -webkit-box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  padding: 30px 20px;
  bottom: 0;
  left: 0;
  text-align: center;
  width: 100%;
  border-radius: 0 0 5px 5px;
}
.team-card .content h3 {
  margin-bottom: 10px;
}
.team-card .content h3 a {
  font-size: 22px;
  color: #202647;
}
.team-card .content span {
  color: #0dbcc0;
  display: inline-block;
}
.team-card .content .social-link {
  padding: 0;
  margin: 15px 0 -50px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}
.team-card .content .social-link li {
  list-style-type: none;
  display: inline-block;
  margin: 0 5px;
}
.team-card .content .social-link li i {
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  color: #fff;
  background-color: #0dbcc0;
  border-radius: 50%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.team-card .content .social-link li i:hover {
  background-color: #0dbcc0;
}
.team-card:hover .content .social-link {
  opacity: 1;
  visibility: visible;
  margin: 15px 0 0;
}
.single-process {
  margin-bottom: 30px;
}
.single-process .process-list {
  padding-left: 0;
  margin-bottom: 0;
}
.single-process .process-list li {
  list-style-type: none;
  font-size: 20px;
  font-weight: 600;
  background-color: #f1f9fd;
  color: #202647;
  padding: 22px 15px;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 5px;
}
.single-process .process-list li::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background-color: #0473b9;
  z-index: -1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 5px;
}
.single-process .process-list li:last-child {
  margin-bottom: 0;
}
.single-process .process-list li i {
  margin-right: 5px;
  color: #0473b9;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.single-process .process-list li:hover {
  color: #fff;
}
.single-process .process-list li:hover::before {
  width: 100%;
}
.single-process .process-list li:hover i {
  color: #fff;
}
.single-process .process-form {
  text-align: center;
  background-color: #fff;
  -webkit-box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  padding: 25px 20px;
  border-radius: 5px;
}
.single-process .process-form h3 {
  font-size: 22px;
  margin-bottom: 20px;
}
.single-process .process-form form .form-group {
  margin-bottom: 15px;
}
.single-process .process-form form .form-group .form-control {
  padding: 10px;
  color: #202647;
  background-color: transparent;
  border: 1px solid #eee;
  font-size: 14px;
  font-weight: 400;
  height: 45px;
  font-family: poppins, sans-serif;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 5px;
}
.single-process .process-form form .form-group .form-control::-webkit-input-placeholder {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #6b6b84;
}
.single-process .process-form form .form-group .form-control:-ms-input-placeholder {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #6b6b84;
}
.single-process .process-form form .form-group .form-control::-ms-input-placeholder {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #6b6b84;
}
.single-process .process-form form .form-group .form-control::placeholder {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #6b6b84;
}
.single-process .process-form form .form-group .form-control:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: transparent;
  border: 1px solid #0dbcc0;
}
.single-process .process-form form .form-group .form-control:focus::-webkit-input-placeholder {
  color: transparent;
}
.single-process .process-form form .form-group .form-control:focus:-ms-input-placeholder {
  color: transparent;
}
.single-process .process-form form .form-group .form-control:focus::-ms-input-placeholder {
  color: transparent;
}
.single-process .process-form form .form-group .form-control:focus::placeholder {
  color: transparent;
}
.single-process .process-form form .nice-select {
  height: 45px;
  width: 100%;
  line-height: 45px;
  font-size: 14px;
  padding-left: 12px;
  padding-right: 12px;
  background-color: transparent;
  border: 1px solid #eee;
  color: #6b6b84;
  border-radius: 5px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  margin-bottom: 1rem;
}
.single-process .process-form form .nice-select:focus {
  background-color: transparent;
  border: 1px solid #0dbcc0;
}
.single-process .process-form form .nice-select .list {
  background-color: #fff;
  -webkit-box-shadow: 0 0 29px 0 rgba(102, 102, 102, 0.1);
  box-shadow: 0 0 29px 0 rgba(102, 102, 102, 0.1);
  border-radius: 0;
  margin-top: 0;
  margin-bottom: 0;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
}
.single-process .process-form form .nice-select .list .option {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #202647;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 14px;
}
.single-process .process-form form .nice-select .list .option:hover {
  background-color: #0dbcc0 !important;
  color: #fff;
}
.single-process .process-form form .nice-select .list .option.selected {
  background-color: transparent;
  font-weight: 600;
}
.single-process .process-form form .nice-select::after {
  height: 8px;
  width: 8px;
  border-color: #0dbcc0;
  right: 15px;
}
.single-process .process-form form .process-btn .default-btn {
  padding: 10px 25px;
  display: block;
  width: 100%;
  cursor: pointer;
  border: none;
  font-size: 15px;
  background-color: #0473b9;
  border-radius: 5px;
}
.single-process .process-form form .process-btn .default-btn:hover {
  background-color: #0dbcc0;
}
.consult-area {
  background-color: #047daf;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.consult-image {
  text-align: center;
}
.consult-content h3 {
  color: #fff;
  font-size: 38px;
  line-height: 1.4;
  margin-bottom: 20px;
}
.consult-content p {
  color: #fff;
  margin-bottom: 0;
}
.consult-content .consult-inner-content {
  position: relative;
  padding-left: 85px;
  margin-top: 30px;
}
.consult-content .consult-inner-content .icon {
  position: absolute;
  left: 0;
  top: 0;
}
.consult-content .consult-inner-content .icon i {
  display: inline-block;
  background-color: #b5e2fa;
  color: #0473b9;
  height: 65px;
  width: 65px;
  line-height: 65px;
  text-align: center;
  font-size: 35px;
  border-radius: 50px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.consult-content .consult-inner-content h4 {
  font-size: 25px;
  margin-bottom: 12px;
  color: #fff;
}
.consult-content .consult-inner-content p {
  font-size: 15px;
}
.consult-content .consult-inner-content:hover .icon i {
  background-color: #0dbcc0;
  color: #fff;
}
.consult-shape {
  position: absolute;
  top: -100px;
  left: -110px;
  z-index: -1;
  -webkit-animation: moveBounce 10s linear infinite;
  animation: moveBounce 10s linear infinite;
}
.live-area {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.live-area .container-fluid {
  max-width: 1920px;
  margin: auto;
}
.live-image {
  text-align: center;
  position: relative;
  z-index: 1;
}
.live-image .shape {
  position: absolute;
  bottom: 0;
  z-index: -1;
  -webkit-animation: moveLeftBounce 5s linear infinite;
  animation: moveLeftBounce 5s linear infinite;
}
.live-inner-box {
  padding-left: 20px;
  max-width: 615px;
}
.live-inner-box .title {
  margin-bottom: 30px;
}
.live-inner-box .title h3 {
  font-size: 38px;
  line-height: 1.4;
}
.live-inner-box .live-content {
  text-align: center;
  margin-bottom: 30px;
}
.live-inner-box .live-content .icon {
  background-color: #fff;
  -webkit-box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  padding: 50px 30px 30px;
  border-radius: 20px;
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}
.live-inner-box .live-content .icon::before {
  position: absolute;
  content: "";
  height: 150px;
  width: 150px;
  background-color: #edf7fb;
  right: 45px;
  top: 30px;
  z-index: -1;
  border-radius: 50%;
}
.live-inner-box .live-content .icon i {
  font-size: 130px;
  color: #0473b9;
}
.live-inner-box .live-content h4 {
  font-size: 22px;
  margin-bottom: 0;
  font-weight: 600;
  line-height: 1.4;
}
.live-shape {
  position: absolute;
  top: 10%;
  -webkit-transform: translateY(-10%);
  transform: translateY(-10%);
  right: 0;
  z-index: -1;
  -webkit-animation: moveLeftBounce 5s linear infinite;
  animation: moveLeftBounce 5s linear infinite;
}
.testimonial-area {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.testimonial-image {
  background-image: url(../img/testimonial.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}
.testimonial-inner-box {
  padding: 50px 30px 10px;
}
.testimonial-inner-box .title {
  margin-bottom: 30px;
  text-align: center;
}
.testimonial-inner-box .title h3 {
  font-size: 38px;
  margin-bottom: 0;
}
.testimonial-item {
  text-align: center;
}
.testimonial-item .icon {
  margin-bottom: 20px;
}
.testimonial-item .icon i {
  display: inline-block;
  height: 65px;
  width: 65px;
  line-height: 65px;
  background-color: #e1f1fc;
  color: #0473b9;
  font-size: 35px;
  border-radius: 50px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.testimonial-item .icon i:hover {
  background-color: #0dbcc0;
  color: #fff;
}
.testimonial-item p {
  font-size: 18px;
  font-style: italic;
  margin-bottom: 0;
}
.testimonial-item .testimonial-info {
  margin-top: 25px;
}
.testimonial-item .testimonial-info img {
  display: inline-block;
  height: 80px;
  width: 80px;
  border-radius: 50%;
  margin-bottom: 15px;
}
.testimonial-item .testimonial-info h3 {
  font-size: 20px;
  margin-bottom: 5px;
}
.testimonial-item .testimonial-info span {
  font-size: 14px;
  font-weight: 500;
  color: #0dbcc0;
}
.testimonial-shape {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  -webkit-animation: moveBounce 15s linear infinite;
  animation: moveBounce 15s linear infinite;
}
.single-services {
  margin-bottom: 30px;
}
.single-services .services-image {
  overflow: hidden;
}
.single-services .services-image img {
  border-radius: 5px 5px 0 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.single-services .services-content {
  text-align: center;
  background-color: #fff;
  -webkit-box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  padding: 30px 20px;
  position: relative;
  z-index: 1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 0 0 5px 5px;
  overflow: hidden;
}
.single-services .services-content h3 {
  font-size: 25px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  margin-bottom: 15px;
}
.single-services .services-content p {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  margin-bottom: 15px;
}
.single-services .services-content .read-more-btn {
  display: inline-block;
  color: #0dbcc0;
  font-weight: 500;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.single-services .services-content::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0%;
  background-color: #0dbcc0;
  z-index: -1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 0 0 5px 5px;
}
.single-services:hover .services-content::before {
  height: 100%;
}
.single-services:hover .services-content h3 a {
  color: #fff;
}
.single-services:hover .services-content p {
  color: #fff;
}
.single-services:hover .services-content .read-more-btn {
  color: #fff;
}
.single-services:hover .services-image img {
  -webkit-transform: rotate(2deg) scale(1.2);
  transform: rotate(2deg) scale(1.2);
}
.pricing-area {
  background-color: #fafafa;
}
.tab .tabs_item {
  display: none;
}
.tab .tabs_item:first-child {
  display: block;
}
.pricing-list-tab .tabs {
  text-align: center;
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 40px;
}
.pricing-list-tab .tabs li {
  display: inline-block;
}
.pricing-list-tab .tabs li a {
  display: block;
  background-color: #f2f2f2;
  color: #202647;
  padding: 10px 30px 10px 35px;
  position: relative;
  border-radius: 5px;
  margin-left: -1px;
  margin-right: -1px;
  font-size: 16px;
  font-weight: 400;
}
.pricing-list-tab .tabs li.current a {
  color: #fff;
  background-color: #202647;
}
.pricing-list-tab .tabs li:nth-child(1) a {
  border-radius: 30px 0 0 30px;
}
.pricing-list-tab .tabs li:nth-child(2) a {
  border-radius: 0 30px 30px 0;
}
.single-pricing-table {
  margin-bottom: 30px;
  text-align: center;
  background-color: #fff;
  border: 1px solid #fff;
  padding: 35px 25px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.single-pricing-table .pricing-header h3 {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 0;
}
.single-pricing-table .price {
  font-size: 50px;
  color: #0dbcc0;
  margin-top: 20px;
  margin-bottom: 25px;
  line-height: 1;
}
.single-pricing-table .pricing-features {
  padding-left: 0;
  margin-bottom: 0;
}
.single-pricing-table .pricing-features li {
  list-style-type: none;
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 400;
}
.single-pricing-table .pricing-features li:last-child {
  margin-bottom: 0;
}
.single-pricing-table .pricing-features li i {
  color: #0dbcc0;
  margin-right: 5px;
  font-size: 15px;
}
.single-pricing-table .pricing-features li.color-gray {
  color: #b4b4b4;
}
.single-pricing-table .pricing-btn {
  margin-top: 25px;
}
.single-pricing-table .pricing-btn .default-btn {
  padding: 12px 35px;
  border-radius: 5px;
  font-size: 15px;
}
.single-pricing-table:hover {
  border: 1px solid #0dbcc0;
}
.page-banner-area {
  position: relative;
  z-index: 1;
  background-image: url(../img/page-banner/page-banner-1.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 120px;
  padding-bottom: 120px;
  background-attachment: fixed;
}
.page-banner-area::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background-color: #000;
  left: 0;
  right: 0;
  top: 0;
  z-index: -1;
  opacity: 0.7;
}
.page-banner-area.item-bg1 {
  background-image: url(../img/page-banner/page-banner-2.jpg);
}
.page-banner-area.item-bg2 {
  background-image: url(../img/page-banner/page-banner-3.jpg);
}
.page-banner-area.item-bg3 {
  background-image: url(../img/page-banner/page-banner-4.jpg);
}
.page-banner-area.item-bg4 {
  background-image: url(../img/page-banner/page-banner-5.jpg);
}
.page-banner-content {
  text-align: center;
}
.page-banner-content h2 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 42px;
}
.page-banner-content ul {
  text-align: center;
  padding-left: 0;
  margin-bottom: 0;
}
.page-banner-content ul li {
  display: inline-block;
  list-style-type: none;
  margin-left: 15px;
  font-weight: 600;
  color: #0dbcc0;
  position: relative;
}
.page-banner-content ul li::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 6px;
  height: 12px;
  width: 1px;
  background: #0dbcc0;
}
.page-banner-content ul li:first-child {
  margin-left: 0;
}
.page-banner-content ul li:first-child::before {
  display: none;
}
.page-banner-content ul li a {
  display: block;
  color: #fff;
}
.page-banner-area-two {
  background-color: #e4e3e3;
  padding-top: 50px;
  padding-bottom: 50px;
}
.page-banner-content-two h2 {
  color: #202647;
  margin-bottom: 12px;
  font-size: 35px;
}
.page-banner-content-two ul {
  padding-left: 0;
  margin-bottom: 0;
}
.page-banner-content-two ul li {
  display: inline-block;
  list-style-type: none;
  margin-left: 15px;
  font-weight: 600;
  color: #0dbcc0;
  position: relative;
  font-size: 15px;
}
.page-banner-content-two ul li::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 6px;
  height: 12px;
  width: 1px;
  background: #0dbcc0;
}
.page-banner-content-two ul li:first-child {
  margin-left: 0;
}
.page-banner-content-two ul li:first-child::before {
  display: none;
}
.page-banner-content-two ul li a {
  display: block;
  color: #202647;
}
.single-gallery-box {
  text-align: center;
  position: relative;
  margin-bottom: 30px;
}
.single-gallery-box::before {
  width: 100%;
  content: "";
  position: absolute;
  height: 100%;
  background-color: #000;
  left: 0;
  top: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}
.single-gallery-box .gallery-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  font-size: 35px;
  color: #fff;
  margin-top: 20px;
  opacity: 0;
  visibility: hidden;
}
.single-gallery-box:hover::before {
  opacity: 0.3;
  visibility: visible;
}
.single-gallery-box:hover .gallery-btn {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}
.login-form {
  padding: 35px;
  border-radius: 5px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  max-width: 650px;
  margin: auto;
}
.login-form h2 {
  margin-bottom: 30px;
  font-size: 25px;
  border-bottom: 1px solid #dedddf;
  padding-bottom: 15px;
  font-weight: 600;
  position: relative;
}
.login-form h2::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  border-bottom: 1px solid #0dbcc0;
  height: 100%;
  width: 100px;
}
.login-form form .form-group {
  margin-bottom: 25px;
}
.login-form form .form-group label {
  display: block;
  margin-bottom: 5px;
  color: #6b6b84;
  font-weight: 500;
  font-size: 16px;
}
.login-form form .form-group .form-control {
  height: 60px;
  padding: 0 0 0 15px;
  line-height: initial;
  color: #202647;
  background-color: transparent;
  border: 1px solid #eee;
  border-radius: 0;
  -webkit-box-shadow: unset;
  box-shadow: unset;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 15px;
  font-weight: 400;
}
.login-form form .form-group .form-control:focus {
  border: 1px solid #0dbcc0;
  background-color: transparent;
}
.login-form form .form-group .form-control:focus::-webkit-input-placeholder {
  color: transparent;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.login-form form .form-group .form-control:focus:-ms-input-placeholder {
  color: transparent;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.login-form form .form-group .form-control:focus::-ms-input-placeholder {
  color: transparent;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.login-form form .form-group .form-control:focus::placeholder {
  color: transparent;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.login-form form .lost-your-password {
  text-align: right;
}
.login-form form .lost-your-password a {
  display: inline-block;
  position: relative;
  font-weight: 500;
  font-size: 15px;
  color: #6b6b84;
}
.login-form form .lost-your-password a::before {
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: #eee;
}
.login-form form .lost-your-password a::after {
  width: 0;
  height: 1px;
  position: absolute;
  left: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  bottom: 0;
  content: "";
  background-color: #0dbcc0;
}
.login-form form .lost-your-password a:hover::before {
  width: 0;
}
.login-form form .lost-your-password a:hover::after {
  width: 100%;
}
.login-form form button {
  border: none;
  margin-top: 25px;
  padding: 15px 30px;
  width: 100%;
  border-radius: 5px;
  cursor: pointer;
  background-color: #0dbcc0;
  color: #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.login-form form button:hover {
  background-color: #0473b9;
}
.login-form.mb-30 {
  margin-bottom: 30px;
}
.register-form {
  padding: 35px;
  border-radius: 5px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  max-width: 650px;
  margin: auto;
}
.register-form h2 {
  margin-bottom: 30px;
  font-size: 25px;
  border-bottom: 1px solid #dedddf;
  padding-bottom: 15px;
  font-weight: 600;
  position: relative;
}
.register-form h2::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  border-bottom: 1px solid #0dbcc0;
  height: 100%;
  width: 100px;
}
.register-form form .form-group {
  margin-bottom: 25px;
}
.register-form form .form-group label {
  display: block;
  margin-bottom: 5px;
  color: #6b6b84;
  font-weight: 500;
  font-size: 16px;
}
.register-form form .form-group .form-control {
  height: 60px;
  padding: 0 0 0 15px;
  line-height: initial;
  color: #202647;
  background-color: transparent;
  border: 1px solid #eee;
  border-radius: 0;
  -webkit-box-shadow: unset;
  box-shadow: unset;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 15px;
  font-weight: 400;
}
.register-form form .form-group .form-control:focus {
  border: 1px solid #0dbcc0;
  background-color: transparent;
}
.register-form form .form-group .form-control:focus::-webkit-input-placeholder {
  color: transparent;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.register-form form .form-group .form-control:focus:-ms-input-placeholder {
  color: transparent;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.register-form form .form-group .form-control:focus::-ms-input-placeholder {
  color: transparent;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.register-form form .form-group .form-control:focus::placeholder {
  color: transparent;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.register-form form .description {
  font-style: italic;
  font-size: 13.5px;
  margin-top: -10px;
  margin-bottom: 15px;
}
.register-form form button {
  border: none;
  padding: 15px 30px;
  width: 100%;
  border-radius: 5px;
  cursor: pointer;
  background-color: #0dbcc0;
  color: #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.register-form form button:hover {
  background-color: #0473b9;
}
.change-password-form {
  padding: 35px;
  border-radius: 5px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  max-width: 650px;
  margin: auto;
}
.change-password-form h2 {
  margin-bottom: 30px;
  font-size: 25px;
  border-bottom: 1px solid #dedddf;
  padding-bottom: 15px;
  font-weight: 600;
  position: relative;
}
.change-password-form h2::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  border-bottom: 1px solid #0dbcc0;
  height: 100%;
  width: 100px;
}
.change-password-form form .form-group {
  margin-bottom: 25px;
}
.change-password-form form .form-group label {
  display: block;
  margin-bottom: 5px;
  color: #6b6b84;
  font-weight: 500;
  font-size: 16px;
}
.change-password-form form .form-group .form-control {
  height: 60px;
  padding: 0 0 0 15px;
  line-height: initial;
  color: #202647;
  background-color: transparent;
  border: 1px solid #eee;
  border-radius: 0;
  -webkit-box-shadow: unset;
  box-shadow: unset;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 15px;
  font-weight: 400;
}
.change-password-form form .form-group .form-control:focus {
  border: 1px solid #0dbcc0;
  background-color: transparent;
}
.change-password-form form .form-group .form-control:focus::-webkit-input-placeholder {
  color: transparent;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.change-password-form form .form-group .form-control:focus:-ms-input-placeholder {
  color: transparent;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.change-password-form form .form-group .form-control:focus::-ms-input-placeholder {
  color: transparent;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.change-password-form form .form-group .form-control:focus::placeholder {
  color: transparent;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.change-password-form form button {
  border: none;
  padding: 15px 30px;
  width: 100%;
  border-radius: 5px;
  cursor: pointer;
  background-color: #0dbcc0;
  color: #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.change-password-form form button:hover {
  background-color: #0473b9;
}
.faq-accordion .accordion {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}
.faq-accordion .accordion .accordion-item {
  display: block;
  background: #fff;
  -webkit-box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  margin-bottom: 10px;
}
.faq-accordion .accordion .accordion-item:last-child {
  margin-bottom: 0;
}
.faq-accordion .accordion .accordion-title {
  padding: 20px 40px 20px 20px;
  color: #202647;
  position: relative;
  display: block;
  text-transform: capitalize;
  font-size: 18px;
  font-weight: 500;
}
.faq-accordion .accordion .accordion-title i {
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #202647;
  font-size: 20px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.faq-accordion .accordion .accordion-title.active i::before {
  content: "\eaed";
  color: #0dbcc0;
}
.faq-accordion .accordion .accordion-content {
  display: none;
  position: relative;
  padding: 18px 20px;
  border-top: 1px solid #0dbcc0;
  color: #6b6b84;
  font-size: 15px;
  font-weight: 400;
}
.faq-accordion .accordion .accordion-content.show {
  display: block;
}
.faq-contact-image {
  background-image: url(../img/faq-contact.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
}
.error-content {
  text-align: center;
  margin: 0 auto;
  max-width: 750px;
}
.error-content h3 {
  font-size: 38px;
  margin-top: 45px;
  margin-bottom: 20px;
}
.error-content p {
  max-width: 520px;
  margin: 0 auto 25px;
  font-size: 15px;
}
.error-content .default-btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 30px;
  background-color: #0dbcc0;
  color: #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.error-content .default-btn:hover {
  background-color: #0473b9;
}
.terms-of-service-accordion .accordion {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}
.terms-of-service-accordion .accordion .accordion-item {
  display: block;
  background: #fff;
  -webkit-box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  margin-bottom: 10px;
}
.terms-of-service-accordion .accordion .accordion-item:last-child {
  margin-bottom: 0;
}
.terms-of-service-accordion .accordion .accordion-title {
  padding: 20px 40px 20px 20px;
  color: #202647;
  position: relative;
  display: block;
  text-transform: capitalize;
  font-size: 18px;
  font-weight: 500;
}
.terms-of-service-accordion .accordion .accordion-title i {
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #202647;
  font-size: 20px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.terms-of-service-accordion .accordion .accordion-title.active i::before {
  content: "\eaed";
  color: #0dbcc0;
}
.terms-of-service-accordion .accordion .accordion-content {
  display: none;
  position: relative;
  padding: 18px 20px;
  border-top: 1px solid #0dbcc0;
  color: #6b6b84;
  font-size: 15px;
  font-weight: 400;
}
.terms-of-service-accordion .accordion .accordion-content.show {
  display: block;
}
.privacy-policy-accordion .accordion {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}
.privacy-policy-accordion .accordion .accordion-item {
  display: block;
  background: #fff;
  -webkit-box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  margin-bottom: 10px;
}
.privacy-policy-accordion .accordion .accordion-item:last-child {
  margin-bottom: 0;
}
.privacy-policy-accordion .accordion .accordion-title {
  padding: 20px 40px 20px 20px;
  color: #202647;
  position: relative;
  display: block;
  text-transform: capitalize;
  font-size: 18px;
  font-weight: 500;
}
.privacy-policy-accordion .accordion .accordion-title i {
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #202647;
  font-size: 20px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.privacy-policy-accordion .accordion .accordion-title.active i::before {
  content: "\eaed";
  color: #0dbcc0;
}
.privacy-policy-accordion .accordion .accordion-content {
  display: none;
  position: relative;
  padding: 18px 20px;
  border-top: 1px solid #0dbcc0;
  color: #6b6b84;
  font-size: 15px;
  font-weight: 400;
}
.privacy-policy-accordion .accordion .accordion-content.show {
  display: block;
}
.coming-soon-area {
  height: 100vh;
  background-image: url(../img/coming-soon-bg.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.coming-soon-content {
  max-width: 750px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  padding: 45px 30px;
  -webkit-box-shadow: 1px 5px 24px 0 rgba(68, 102, 242, 0.05);
  box-shadow: 1px 5px 24px 0 rgba(68, 102, 242, 0.05);
  margin: auto;
}
.coming-soon-content .logo {
  display: inline-block;
}
.coming-soon-content h2 {
  font-size: 30px;
  margin-top: 30px;
  margin-bottom: 0;
}
.coming-soon-content #timer {
  margin-top: 45px;
}
.coming-soon-content #timer div {
  background-color: #333;
  color: #fff;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  font-size: 40px;
  font-weight: 700;
  margin-left: 5px;
  margin-right: 5px;
}
.coming-soon-content #timer div span {
  display: block;
  margin-top: -2px;
  font-size: 15px;
  font-weight: 500;
}
.coming-soon-content .newsletter-form {
  position: relative;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 45px;
}
.coming-soon-content .newsletter-form .form-group {
  margin-bottom: 25px;
  width: 100%;
  position: relative;
}
.coming-soon-content .newsletter-form .form-group .label-title {
  margin-bottom: 0;
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  color: #202647;
}
.coming-soon-content .newsletter-form .form-group .label-title i {
  position: absolute;
  left: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 22px;
}
.coming-soon-content .newsletter-form .form-group .input-newsletter {
  border-radius: 0;
  border: none;
  border-bottom: 2px solid #eee;
  padding: 4px 0 0 32px;
  color: #202647;
  height: 45px;
  display: block;
  width: 100%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 15px;
  font-weight: 400;
}
.coming-soon-content .newsletter-form .form-group .input-newsletter::-webkit-input-placeholder {
  color: #6b6b84;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.coming-soon-content .newsletter-form .form-group .input-newsletter:-ms-input-placeholder {
  color: #6b6b84;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.coming-soon-content .newsletter-form .form-group .input-newsletter::-ms-input-placeholder {
  color: #6b6b84;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.coming-soon-content .newsletter-form .form-group .input-newsletter::placeholder {
  color: #6b6b84;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.coming-soon-content .newsletter-form .form-group .input-newsletter:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: 0;
}
.coming-soon-content .newsletter-form .form-group .input-newsletter:focus::-webkit-input-placeholder {
  color: transparent;
}
.coming-soon-content .newsletter-form .form-group .input-newsletter:focus:-ms-input-placeholder {
  color: transparent;
}
.coming-soon-content .newsletter-form .form-group .input-newsletter:focus::-ms-input-placeholder {
  color: transparent;
}
.coming-soon-content .newsletter-form .form-group .input-newsletter:focus::placeholder {
  color: transparent;
}
.coming-soon-content .newsletter-form .default-btn {
  border: none;
  position: relative;
  right: 0;
  top: 0;
  padding: 15px 45px;
  border-radius: 5px;
  height: unset;
  line-height: unset;
}
.coming-soon-content .newsletter-form .validation-danger {
  margin-top: 5px;
  color: red;
}
.coming-soon-content .newsletter-form .validation-success {
  margin-top: 15px;
}
.coming-soon-content .newsletter-form p {
  margin-top: 25px;
  margin-bottom: 0;
  font-size: 15px;
}
.contact-info-box {
  text-align: center;
  border-radius: 5px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
  background: #fff;
  padding: 30px;
  margin-bottom: 30px;
}
.contact-info-box .icon {
  margin-bottom: 22px;
}
.contact-info-box .icon i {
  display: inline-block;
  width: 70px;
  height: 70px;
  line-height: 70px;
  background: #f5f5f5;
  border-radius: 50%;
  font-size: 35px;
  color: #0dbcc0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.contact-info-box h3 {
  margin-bottom: 12px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 20px;
}
.contact-info-box p {
  margin-bottom: 2px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.contact-info-box p a {
  display: inline-block;
  color: #6b6b84;
}
.contact-info-box p a:hover {
  color: #0dbcc0;
}
.contact-info-box p:last-child {
  margin-bottom: 0;
}
.contact-info-box:hover {
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
}
.contact-info-box:hover .icon i {
  background: #0dbcc0;
  color: #fff;
}
.contact-form {
  background-color: #fff;
  -webkit-box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  padding: 35px;
}
.contact-form .title {
  margin-bottom: 30px;
}
.contact-form .title span {
  font-size: 16px;
  font-weight: 500;
  color: #0dbcc0;
}
.contact-form .title h3 {
  font-size: 30px;
  margin-bottom: 0;
  margin-top: 12px;
}
.contact-form .form-group {
  margin-bottom: 15px;
}
.contact-form .form-group .form-control {
  display: block;
  width: 100%;
  height: 60px;
  outline: 0;
  background-color: transparent;
  border: 1px solid #eee;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 15px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-family: poppins, sans-serif;
}
.contact-form .form-group .form-control::-webkit-input-placeholder {
  color: #6b6b84;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.contact-form .form-group .form-control:-ms-input-placeholder {
  color: #6b6b84;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.contact-form .form-group .form-control::-ms-input-placeholder {
  color: #6b6b84;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.contact-form .form-group .form-control::placeholder {
  color: #6b6b84;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.contact-form .form-group .form-control:focus {
  outline: 0;
  background-color: #fff;
  border-color: #0dbcc0;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.contact-form .form-group .form-control:focus::-webkit-input-placeholder {
  color: transparent;
}
.contact-form .form-group .form-control:focus:-ms-input-placeholder {
  color: transparent;
}
.contact-form .form-group .form-control:focus::-ms-input-placeholder {
  color: transparent;
}
.contact-form .form-group .form-control:focus::placeholder {
  color: transparent;
}
.contact-form .form-group textarea.form-control {
  height: auto;
  padding: 15px;
}
.contact-form .form-group .help-block.with-errors ul {
  color: red;
  margin-bottom: 0;
  margin-top: 10px;
}
.contact-form .form-group .help-block.with-errors ul li {
  font-size: 14px;
}
.contact-form .form-check {
  margin-bottom: 10px;
  font-weight: 400;
  color: #6b6b84;
  font-size: 15px;
}
.contact-form .form-check a {
  color: #0dbcc0;
}
.contact-form #msgSubmit {
  margin: 0;
  font-size: 1.3rem;
}
.contact-form #msgSubmit.text-danger,
.contact-form #msgSubmit.text-success {
  margin-top: 20px;
  font-size: 20px;
}
.contact-form .default-btn {
  border: none;
  margin-top: 10px;
  padding: 12px 25px;
  width: 100%;
  border-radius: 5px;
}
.contact-map iframe {
  border: none;
  width: 100%;
  height: 650px;
}
.pagination-area {
  text-align: center;
}
.pagination-area .page-numbers {
  width: 35px;
  height: 35px;
  margin: 0 5px;
  display: inline-block;
  background-color: #fff;
  line-height: 35px;
  color: #202647;
  -webkit-box-shadow: 0 2px 10px 0 #d8dde6;
  box-shadow: 0 2px 10px 0 #d8dde6;
  font-size: 14px;
  font-weight: 700;
  border-radius: 50px;
  text-align: center;
}
.pagination-area .page-numbers.current,
.pagination-area .page-numbers:hover,
.pagination-area .page-numbers:focus {
  background: #0dbcc0;
  color: #fff;
  -webkit-box-shadow: 0 2px 10px 0 #d8dde6;
  box-shadow: 0 2px 10px 0 #d8dde6;
}
.pagination-area .page-numbers i {
  position: relative;
  top: 1px;
}
.service-details-image {
  margin-bottom: 30px;
}
.service-details-content h3 {
  font-size: 25px;
  margin-bottom: 15px;
  font-weight: 600;
}
.service-details-content p {
  font-size: 15px;
  margin-bottom: 20px;
}
.service-details-content .service-details-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 30px;
  background: #f4f5fe;
  padding: 35px 30px 30px;
  border-radius: 10px;
}
.service-details-content .service-details-info .single-info-box {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%;
  padding-left: 15px;
  padding-right: 15px;
}
.service-details-content .service-details-info .single-info-box h4 {
  margin-bottom: 14px;
  font-size: 22px;
  font-weight: 600;
}
.service-details-content .service-details-info .single-info-box span {
  display: block;
  color: #6b6b84;
  font-size: 16px;
}
.service-details-content .service-details-info .single-info-box .social {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.service-details-content .service-details-info .single-info-box .social li {
  display: inline-block;
  margin-right: 5px;
}
.service-details-content .service-details-info .single-info-box .social li a {
  background-color: #fff;
  color: #6b6b84;
  display: inline-block;
  width: 30px;
  height: 30px;
  text-align: center;
  border-radius: 30px;
  line-height: 32px;
}
.service-details-content .service-details-info .single-info-box .social li a:hover {
  color: #fff;
  background: #0dbcc0;
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}
.service-details-content .service-details-info .single-info-box .social li:last-child {
  margin-right: 0;
}
.service-details-content .service-details-info .single-info-box .default-btn {
  display: inline-block;
  padding: 12px 30px;
  color: #fff;
  text-transform: capitalize;
  background-color: #0dbcc0;
  border: 1px solid #0dbcc0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
}
.service-details-content .service-details-info .single-info-box .default-btn:hover {
  background-color: #fff;
  color: #0dbcc0;
}
.service-details-content .service-details-info .single-info-box:first-child {
  padding-left: 0;
}
.service-details-content .service-details-info .single-info-box:last-child {
  text-align: right;
  padding-right: 0;
  margin-top: 10px;
}
.blog-details-desc .article-content {
  margin-top: 25px;
}
.blog-details-desc .article-content p {
  font-size: 15px;
  margin-bottom: 20px;
}
.blog-details-desc .article-content h3 {
  font-size: 25px;
  margin-top: 12px;
  margin-bottom: 20px;
}
.blog-details-desc .article-content h3 a {
  color: #202647;
}
.blog-details-desc .article-content .details-content h3 {
  font-size: 25px;
  margin-top: 12px;
  margin-bottom: 20px;
}
.blog-details-desc .article-content .details-content h3 a {
  color: #202647;
}
.blog-details-desc .article-content .details-content p {
  font-size: 15px;
}
.blog-details-desc .article-content .features-list {
  padding-left: 0;
  margin-bottom: 20px;
}
.blog-details-desc .article-content .features-list li {
  list-style-type: none;
  margin-bottom: 15px;
  font-weight: 500;
  font-size: 16px;
}
.blog-details-desc .article-content .features-list li:last-child {
  margin-bottom: 0;
}
.blog-details-desc .article-content .features-list li i {
  color: #0dbcc0;
  margin-right: 5px;
}
.blog-details-desc .article-content .details-image img {
  margin-bottom: 20px;
}
blockquote,
.blockquote {
  background-color: #f4f4f4;
  padding: 30px !important;
  margin-top: 20px;
  margin-bottom: 20px;
  border-radius: 5px;
  position: relative;
  z-index: 1;
  border-left: 1px solid #0dbcc0;
}
blockquote .icon,
.blockquote .icon {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 30px;
  z-index: -1;
}
blockquote .icon i,
.blockquote .icon i {
  font-size: 30px;
  color: #0dbcc0;
}
blockquote p,
.blockquote p {
  color: #202647;
  margin-bottom: 0;
  font-size: 18px !important;
  font-weight: 500;
  padding-left: 50px;
}
.comments-area {
  margin-top: 30px;
}
.comments-area .comments-title {
  margin-bottom: 30px;
  font-size: 25px;
  position: relative;
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
}
.comments-area .comments-title::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100px;
  height: 1px;
  bottom: -1px;
  background: #0dbcc0;
}
.comments-area ol,
.comments-area ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.comments-area .comment-list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.comments-area .children {
  margin-left: 30px;
}
.comments-area .comment-body {
  color: #202647;
  margin-bottom: 20px;
  background: #fff;
  -webkit-box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  padding: 30px 30px 30px 100px;
}
.comments-area .comment-body .reply {
  margin-top: 10px;
}
.comments-area .comment-body .reply a {
  display: inline-block;
  padding: 5px 20px;
  font-size: 14px;
  font-weight: 400;
  color: #6b6b84;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border: 1px solid #e1e1e1;
  border-radius: 30px;
}
.comments-area .comment-body .reply a:hover {
  color: #fff;
  background-color: #0dbcc0;
  border: 1px solid #0dbcc0;
}
.comments-area .comment-author {
  font-size: 18px;
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
}
.comments-area .comment-author .avatar {
  height: 50px;
  left: -65px;
  position: absolute;
  width: 50px;
  border-radius: 50px;
}
.comments-area .comment-author .fn {
  font-weight: 600;
}
.comments-area .comment-metadata {
  color: #6b6b84;
  margin-bottom: 10px;
  font-size: 14px;
}
.comments-area .comment-metadata a {
  display: inline-block;
  color: #6b6b84;
}
.comments-area .comment-metadata a:hover {
  color: #0473b9;
}
.comments-area .comment-respond {
  margin-top: 30px;
  background-color: #f4f4f4;
  padding: 30px;
}
.comments-area .comment-respond .comment-reply-title {
  margin-bottom: 0;
  font-size: 25px;
  position: relative;
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
  margin-bottom: 30px;
}
.comments-area .comment-respond .comment-reply-title::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100px;
  height: 1px;
  bottom: -1px;
  background: #0dbcc0;
}
.comments-area .comment-respond .comment-form {
  overflow: hidden;
}
.comments-area .comment-respond .comment-form-comment {
  float: left;
  width: 100%;
}
.comments-area .comment-respond input[type="date"],
.comments-area .comment-respond input[type="time"],
.comments-area .comment-respond input[type="datetime-local"],
.comments-area .comment-respond input[type="week"],
.comments-area .comment-respond input[type="month"],
.comments-area .comment-respond input[type="text"],
.comments-area .comment-respond input[type="email"],
.comments-area .comment-respond input[type="url"],
.comments-area .comment-respond input[type="password"],
.comments-area .comment-respond input[type="search"],
.comments-area .comment-respond input[type="tel"],
.comments-area .comment-respond input[type="number"],
.comments-area .comment-respond textarea {
  display: inline-block;
  width: 100%;
  background-color: #fff;
  border: none;
  padding: 0 0 0 15px;
  height: 50px;
  outline: 0;
  border-radius: 2px;
  color: #202647;
  border: 1px solid #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.comments-area .comment-respond input[type="date"]:focus,
.comments-area .comment-respond input[type="time"]:focus,
.comments-area .comment-respond input[type="datetime-local"]:focus,
.comments-area .comment-respond input[type="week"]:focus,
.comments-area .comment-respond input[type="month"]:focus,
.comments-area .comment-respond input[type="text"]:focus,
.comments-area .comment-respond input[type="email"]:focus,
.comments-area .comment-respond input[type="url"]:focus,
.comments-area .comment-respond input[type="password"]:focus,
.comments-area .comment-respond input[type="search"]:focus,
.comments-area .comment-respond input[type="tel"]:focus,
.comments-area .comment-respond input[type="number"]:focus,
.comments-area .comment-respond textarea:focus {
  border: 1px solid #0dbcc0;
}
.comments-area .comment-respond input[type="date"]::-webkit-input-placeholder,
.comments-area .comment-respond input[type="time"]::-webkit-input-placeholder,
.comments-area .comment-respond input[type="datetime-local"]::-webkit-input-placeholder,
.comments-area .comment-respond input[type="week"]::-webkit-input-placeholder,
.comments-area .comment-respond input[type="month"]::-webkit-input-placeholder,
.comments-area .comment-respond input[type="text"]::-webkit-input-placeholder,
.comments-area .comment-respond input[type="email"]::-webkit-input-placeholder,
.comments-area .comment-respond input[type="url"]::-webkit-input-placeholder,
.comments-area .comment-respond input[type="password"]::-webkit-input-placeholder,
.comments-area .comment-respond input[type="search"]::-webkit-input-placeholder,
.comments-area .comment-respond input[type="tel"]::-webkit-input-placeholder,
.comments-area .comment-respond input[type="number"]::-webkit-input-placeholder,
.comments-area .comment-respond textarea::-webkit-input-placeholder {
  color: #6b6b84;
}
.comments-area .comment-respond input[type="date"]:-ms-input-placeholder,
.comments-area .comment-respond input[type="time"]:-ms-input-placeholder,
.comments-area .comment-respond input[type="datetime-local"]:-ms-input-placeholder,
.comments-area .comment-respond input[type="week"]:-ms-input-placeholder,
.comments-area .comment-respond input[type="month"]:-ms-input-placeholder,
.comments-area .comment-respond input[type="text"]:-ms-input-placeholder,
.comments-area .comment-respond input[type="email"]:-ms-input-placeholder,
.comments-area .comment-respond input[type="url"]:-ms-input-placeholder,
.comments-area .comment-respond input[type="password"]:-ms-input-placeholder,
.comments-area .comment-respond input[type="search"]:-ms-input-placeholder,
.comments-area .comment-respond input[type="tel"]:-ms-input-placeholder,
.comments-area .comment-respond input[type="number"]:-ms-input-placeholder,
.comments-area .comment-respond textarea:-ms-input-placeholder {
  color: #6b6b84;
}
.comments-area .comment-respond input[type="date"]::-ms-input-placeholder,
.comments-area .comment-respond input[type="time"]::-ms-input-placeholder,
.comments-area .comment-respond input[type="datetime-local"]::-ms-input-placeholder,
.comments-area .comment-respond input[type="week"]::-ms-input-placeholder,
.comments-area .comment-respond input[type="month"]::-ms-input-placeholder,
.comments-area .comment-respond input[type="text"]::-ms-input-placeholder,
.comments-area .comment-respond input[type="email"]::-ms-input-placeholder,
.comments-area .comment-respond input[type="url"]::-ms-input-placeholder,
.comments-area .comment-respond input[type="password"]::-ms-input-placeholder,
.comments-area .comment-respond input[type="search"]::-ms-input-placeholder,
.comments-area .comment-respond input[type="tel"]::-ms-input-placeholder,
.comments-area .comment-respond input[type="number"]::-ms-input-placeholder,
.comments-area .comment-respond textarea::-ms-input-placeholder {
  color: #6b6b84;
}
.comments-area .comment-respond input[type="date"]::placeholder,
.comments-area .comment-respond input[type="time"]::placeholder,
.comments-area .comment-respond input[type="datetime-local"]::placeholder,
.comments-area .comment-respond input[type="week"]::placeholder,
.comments-area .comment-respond input[type="month"]::placeholder,
.comments-area .comment-respond input[type="text"]::placeholder,
.comments-area .comment-respond input[type="email"]::placeholder,
.comments-area .comment-respond input[type="url"]::placeholder,
.comments-area .comment-respond input[type="password"]::placeholder,
.comments-area .comment-respond input[type="search"]::placeholder,
.comments-area .comment-respond input[type="tel"]::placeholder,
.comments-area .comment-respond input[type="number"]::placeholder,
.comments-area .comment-respond textarea::placeholder {
  color: #6b6b84;
}
.comments-area .comment-respond textarea {
  height: auto !important;
  padding-top: 15px;
}
.comments-area .comment-respond .comment-form-author {
  float: left;
  width: 100%;
  margin-bottom: 20px;
}
.comments-area .comment-respond .comment-form-email {
  float: left;
  width: 100%;
  margin-bottom: 20px;
}
.comments-area .comment-respond .comment-form-url {
  float: left;
  width: 100%;
  margin-bottom: 20px;
}
.comments-area .comment-respond .comment-form-cookies-consent {
  width: 100%;
  float: left;
  position: relative;
  padding-left: 20px;
  margin-top: 15px;
  margin-bottom: 20px;
}
.comments-area .comment-respond .comment-form-cookies-consent input {
  position: absolute;
  left: 0;
  top: 7.5px;
}
.comments-area .comment-respond .comment-form-cookies-consent label {
  display: inline-block;
  margin: 0;
  color: #6b6b84;
}
.comments-area .comment-respond .form-submit {
  float: left;
  width: 100%;
}
.comments-area .comment-respond .form-submit input {
  background: #0dbcc0;
  border: none;
  color: #fff;
  padding: 10px 30px;
  display: inline-block;
  cursor: pointer;
  text-transform: capitalize;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 0;
  font-weight: 500;
  font-size: 15px;
}
.comments-area .comment-respond .form-submit input:hover {
  background-color: #0473b9;
}
.widget-area .widget {
  margin-bottom: 30px;
}
.widget-area .widget:last-child {
  margin-bottom: 0;
}
.widget-area .widget .widget-title {
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
  font-size: 22px;
}
.widget-area .widget .widget-title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 1px;
  bottom: -1px;
  background: #0dbcc0;
}
.widget-area .widget_search {
  background-color: #fff;
  -webkit-box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  padding: 25px;
}
.widget-area .widget_search form {
  position: relative;
}
.widget-area .widget_search form label {
  display: block;
  margin-bottom: 0;
}
.widget-area .widget_search form .screen-reader-text {
  display: none;
}
.widget-area .widget_search form .search-field {
  background-color: transparent;
  height: 50px;
  padding: 8px 15px;
  border: 1px solid #eee;
  width: 100%;
  display: block;
  outline: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 5px;
}
.widget-area .widget_search form .search-field:focus {
  border-color: #0dbcc0;
}
.widget-area .widget_search form button {
  border: none;
  background-color: #eee;
  color: #0dbcc0;
  height: 40px;
  width: 40px;
  position: absolute;
  right: 5px;
  padding: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  top: 5px;
  font-size: 20px;
  border-radius: 5px;
  cursor: pointer;
}
.widget-area .widget_search form button i {
  position: absolute;
  left: 0;
  right: 0;
  top: 52%;
  -webkit-transform: translateY(-52%);
  transform: translateY(-52%);
}
.widget-area .widget_search form button:hover,
.widget-area .widget_search form button:focus {
  background-color: #0dbcc0;
  color: #fff;
}
.widget-area .widget_categories {
  background-color: #fff;
  -webkit-box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  padding: 25px;
}
.widget-area .widget_categories ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.widget-area .widget_categories ul li {
  margin-bottom: 15px;
  color: #202647;
  font-size: 15px;
  font-weight: 500;
  position: relative;
  padding-left: 14px;
}
.widget-area .widget_categories ul li::before {
  background: #0dbcc0;
  height: 8px;
  width: 8px;
  content: "";
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  position: absolute;
  border-radius: 30px;
}
.widget-area .widget_categories ul li:last-child {
  margin-bottom: 0;
}
.widget-area .widget_categories ul li a {
  color: #202647;
  display: inline-block;
  position: relative;
  width: 100%;
}
.widget-area .widget_categories ul li a:hover {
  color: #0dbcc0;
}
.widget-area .widget_categories ul li a i {
  font-size: 20px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.widget-area .widget_mediva_posts_thumb {
  position: relative;
  overflow: hidden;
  background-color: #fff;
  -webkit-box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  padding: 25px;
}
.widget-area .widget_mediva_posts_thumb .item {
  overflow: hidden;
  margin-bottom: 15px;
}
.widget-area .widget_mediva_posts_thumb .item:last-child {
  margin-bottom: 0;
}
.widget-area .widget_mediva_posts_thumb .item .thumb {
  float: left;
  height: 80px;
  overflow: hidden;
  display: block;
  position: relative;
  width: 80px;
  margin-right: 15px;
  z-index: 1;
}
.widget-area .widget_mediva_posts_thumb .item .thumb .fullimage {
  width: 80px;
  height: 80px;
  display: inline-block;
  border-radius: 5px;
  background-size: cover !important;
  background-repeat: no-repeat;
  background-position: center center !important;
}
.widget-area .widget_mediva_posts_thumb .item .thumb .fullimage.bg1 {
  background-image: url(../img/blog/blog-1.jpg);
}
.widget-area .widget_mediva_posts_thumb .item .thumb .fullimage.bg2 {
  background-image: url(../img/blog/blog-2.jpg);
}
.widget-area .widget_mediva_posts_thumb .item .thumb .fullimage.bg3 {
  background-image: url(../img/blog/blog-3.jpg);
}
.widget-area .widget_mediva_posts_thumb .item .thumb .fullimage.bg4 {
  background-image: url(../img/blog/blog-4.jpg);
}
.widget-area .widget_mediva_posts_thumb .item .thumb .fullimage.bg5 {
  background-image: url(../img/blog/blog-5.jpg);
}
.widget-area .widget_mediva_posts_thumb .item .thumb .fullimage.bg6 {
  background-image: url(../img/blog/blog-6.jpg);
}
.widget-area .widget_mediva_posts_thumb .item .info {
  overflow: hidden;
  margin-top: 5px;
}
.widget-area .widget_mediva_posts_thumb .item .info span {
  display: block;
  color: #6b6b84;
  margin-top: -2px;
  margin-bottom: 5px;
  font-size: 14px;
}
.widget-area .widget_mediva_posts_thumb .item .info .title {
  margin-bottom: 0;
  line-height: 1.4;
  font-size: 16px;
  font-weight: 700;
}
.widget-area .widget_mediva_posts_thumb .item .info .title a {
  display: inline-block;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.widget-area .widget_mediva_posts_thumb .item .info .title a:hover {
  color: #0dbcc0;
}
.widget-area .widget_tag_cloud {
  background-color: #fff;
  -webkit-box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  padding: 25px;
}
.widget-area .widget_tag_cloud .widget-title {
  margin-bottom: 18px;
}
.widget-area .tagcloud a {
  background: #f5f5f5;
  display: inline-block;
  color: #202647;
  padding: 7px 15px;
  border: none;
  border-radius: 3px;
  font-weight: 500;
  font-size: 15px !important;
  margin-top: 8px;
  margin-right: 5px;
}
.widget-area .tagcloud a:hover,
.widget-area .tagcloud a:focus {
  color: #fff;
  background-color: #0dbcc0;
}
.widget-area .widget_popular_products {
  position: relative;
  overflow: hidden;
  background-color: #fff;
  -webkit-box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  padding: 25px;
}
.widget-area .widget_popular_products .widget-title {
  margin-bottom: 30px;
}
.widget-area .widget_popular_products .item {
  overflow: hidden;
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}
.widget-area .widget_popular_products .item:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}
.widget-area .widget_popular_products .item .thumb {
  float: left;
  height: 110px;
  overflow: hidden;
  display: block;
  position: relative;
  width: 110px;
  margin-right: 15px;
  z-index: 1;
}
.widget-area .widget_popular_products .item .thumb .fullimage {
  width: 110px;
  height: 110px;
  display: inline-block;
  border-radius: 2px;
  background-size: cover !important;
  background-repeat: no-repeat;
  background-position: center center !important;
}
.widget-area .widget_popular_products .item .thumb .fullimage.bg1 {
  background-image: url(../img/shop/shop-1.jpg);
}
.widget-area .widget_popular_products .item .thumb .fullimage.bg2 {
  background-image: url(../img/shop/shop-2.jpg);
}
.widget-area .widget_popular_products .item .thumb .fullimage.bg3 {
  background-image: url(../img/shop/shop-3.jpg);
}
.widget-area .widget_popular_products .item .info {
  overflow: hidden;
  margin-top: 5px;
}
.widget-area .widget_popular_products .item .info span {
  display: block;
  color: #6b6b84;
  text-transform: uppercase;
  margin-top: -5px;
  margin-bottom: 6px;
  font-weight: 500;
}
.widget-area .widget_popular_products .item .info .title {
  margin-bottom: 0;
  line-height: 1.4;
  font-weight: 500;
  font-size: 18px;
}
.widget-area .widget_popular_products .item .info .title a {
  display: inline-block;
}
.widget-area .widget_popular_products .item .info .title a:hover {
  color: #0dbcc0;
}
.widget-area .widget_popular_products .item .info .rating {
  margin-top: 8px;
}
.widget-area .widget_popular_products .item .info .rating i {
  color: #f6b500;
  display: inline-block;
  margin-right: -2px;
}
.mediva-grid-sorting {
  margin-bottom: 40px;
}
.mediva-grid-sorting .result-count p .count {
  font-weight: 700;
  color: #202647;
}
.mediva-grid-sorting .ordering {
  text-align: right;
}
.mediva-grid-sorting .ordering label {
  display: inline-block;
  margin-bottom: 0;
  color: #0dbcc0;
  margin-right: 5px;
  font-weight: 600;
}
.mediva-grid-sorting .ordering .nice-select {
  display: inline-block;
  float: unset;
  width: 215px;
  background: #f8f8f8;
  border-color: #eee;
  color: #202647;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  padding: 0 0 0 12px;
  height: 45px;
  line-height: 45px;
  font-size: 15px;
  font-weight: 500;
}
.mediva-grid-sorting .ordering .nice-select .list {
  background-color: #fff;
  border-radius: 5px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  list-style-type: none;
  border: none;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  padding-top: 10px;
  padding-bottom: 10px;
}
.mediva-grid-sorting .ordering .nice-select .list .option {
  line-height: 38px;
  min-height: 38px;
  color: #202647;
  position: relative;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  padding-left: 15px;
  padding-right: 25px;
  font-size: 15px;
  font-weight: 500;
}
.mediva-grid-sorting .ordering .nice-select .list .option:hover {
  background-color: #0dbcc0;
  color: #fff;
}
.mediva-grid-sorting .ordering .nice-select:after {
  border-color: #202647;
  height: 8px;
  width: 8px;
  margin-top: -5px;
}
.mediva-grid-sorting .ordering .nice-select:hover {
  border-color: #0dbcc0;
  background-color: transparent;
}
.single-products-box {
  position: relative;
  margin-bottom: 30px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.single-products-box .products-image {
  text-align: center;
  position: relative;
  overflow: hidden;
}
.single-products-box .products-image a {
  position: relative;
  display: block;
}
.single-products-box .products-image a img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.single-products-box .products-content {
  margin-top: 20px;
  position: relative;
}
.single-products-box .products-content h3 {
  margin-bottom: 0;
  font-size: 25px;
}
.single-products-box .products-content h3 a {
  display: inline-block;
  color: #202647;
}
.single-products-box .products-content h3 a:hover {
  color: #0dbcc0;
}
.single-products-box .products-content .price {
  margin-top: 15px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-weight: 600;
  color: #0dbcc0;
}
.single-products-box .products-content .price .old-price {
  text-decoration: line-through;
  color: #999;
  font-weight: 500;
}
.single-products-box .products-content .star-rating {
  position: absolute;
  right: 0;
  bottom: 0;
  color: #f49f0b;
}
.single-products-box .products-content .star-rating i {
  display: inline-block;
  margin-left: -2px;
}
.single-products-box .products-content .add-to-cart {
  position: absolute;
  left: 0;
  bottom: 0;
  text-transform: capitalize;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  display: inline-block;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(20px);
  transform: translateX(20px);
  font-weight: 600;
  font-size: 15px;
}
.single-products-box .products-content .add-to-cart:hover {
  color: #0dbcc0;
}
.single-products-box:hover .products-content .price {
  opacity: 0;
  visibility: hidden;
}
.single-products-box:hover .products-content .add-to-cart {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
.single-products-box:hover .products-image a img {
  -webkit-transform: scale(1.08);
  transform: scale(1.08);
}
.cart-table table {
  margin-bottom: 0;
}
.cart-table table thead tr th {
  border-bottom-width: 0;
  vertical-align: middle;
  padding: 25px 0;
  border: none;
  white-space: nowrap;
  font-weight: 700;
  font-size: 20px;
}
.cart-table table tbody tr td {
  vertical-align: middle;
  color: 0.6s;
  white-space: nowrap;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 0;
  padding-right: 0;
  border-color: #eaedff;
  border-left: none;
  border-right: none;
}
.cart-table table tbody tr td.product-thumbnail a {
  display: block;
}
.cart-table table tbody tr td.product-thumbnail a img {
  width: 100px;
  height: 100px;
  border: 1px solid #eee;
}
.cart-table table tbody tr td.product-name a {
  color: #666;
  font-weight: 500;
  display: inline-block;
  text-decoration: none;
}
.cart-table table tbody tr td.product-name a:hover {
  color: #0dbcc0;
}
.cart-table table tbody tr td.product-subtotal .remove {
  color: #0dbcc0;
  float: right;
  position: relative;
  top: -1px;
}
.cart-table table tbody tr td.product-quantity .input-counter {
  max-width: 130px;
  min-width: 130px;
  text-align: center;
  display: inline-block;
  position: relative;
}
.cart-table table tbody tr td.product-quantity .input-counter span {
  position: absolute;
  top: 0;
  background-color: transparent;
  cursor: pointer;
  color: #d0d0d0;
  width: 40px;
  height: 100%;
  line-height: 48px;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
.cart-table table tbody tr td.product-quantity .input-counter span.minus-btn {
  left: 0;
}
.cart-table table tbody tr td.product-quantity .input-counter span.plus-btn {
  right: 0;
}
.cart-table table tbody tr td.product-quantity .input-counter span:hover {
  color: #0dbcc0;
}
.cart-table table tbody tr td.product-quantity .input-counter input {
  height: 45px;
  color: #0dbcc0;
  outline: 0;
  display: block;
  border: none;
  background-color: #f8f8f8;
  text-align: center;
  width: 100%;
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  font-weight: 600;
}
.cart-table table tbody tr td.product-quantity .input-counter input::-webkit-input-placeholder {
  color: #0dbcc0;
}
.cart-table table tbody tr td.product-quantity .input-counter input:-ms-input-placeholder {
  color: #0dbcc0;
}
.cart-table table tbody tr td.product-quantity .input-counter input::-ms-input-placeholder {
  color: #0dbcc0;
}
.cart-table table tbody tr td.product-quantity .input-counter input::placeholder {
  color: #0dbcc0;
}
.cart-table table tbody tr td.product-subtotal {
  overflow: hidden;
}
.cart-buttons {
  margin-top: 30px;
  text-align: right;
}
.cart-buttons .shopping-coupon-code {
  position: relative;
  max-width: 530px;
}
.cart-buttons .shopping-coupon-code .form-control {
  height: 50px;
  color: #202647;
  -webkit-box-shadow: unset;
  box-shadow: unset;
  border: 1px solid #f5f5f5;
  background-color: #f5f5f5;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 5px;
  padding: 1px 0 0 15px;
  font-size: 15px;
  font-weight: 500;
}
.cart-buttons .shopping-coupon-code .form-control::-webkit-input-placeholder {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #6b6b84;
}
.cart-buttons .shopping-coupon-code .form-control:-ms-input-placeholder {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #6b6b84;
}
.cart-buttons .shopping-coupon-code .form-control::-ms-input-placeholder {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #6b6b84;
}
.cart-buttons .shopping-coupon-code .form-control::placeholder {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #6b6b84;
}
.cart-buttons .shopping-coupon-code .form-control:focus {
  border-color: #0dbcc0;
  background-color: transparent;
}
.cart-buttons .shopping-coupon-code .form-control:focus::-webkit-input-placeholder {
  color: transparent;
}
.cart-buttons .shopping-coupon-code .form-control:focus:-ms-input-placeholder {
  color: transparent;
}
.cart-buttons .shopping-coupon-code .form-control:focus::-ms-input-placeholder {
  color: transparent;
}
.cart-buttons .shopping-coupon-code .form-control:focus::placeholder {
  color: transparent;
}
.cart-buttons .shopping-coupon-code button {
  position: absolute;
  right: 0;
  top: 0;
  height: 50px;
  background: #202647;
  color: #fff;
  border: none;
  padding: 0 25px;
  line-height: 48px;
  outline: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
}
.cart-buttons .shopping-coupon-code button:hover {
  background-color: #0dbcc0;
}
.cart-buttons .default-btn {
  padding: 12px 25px;
  border-radius: 5px;
}
.cart-totals {
  background: #fff;
  padding: 30px;
  max-width: 750px;
  -webkit-box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
  border-radius: 5px;
  margin: 50px auto 0;
}
.cart-totals h3 {
  margin-bottom: 25px;
  font-size: 25px;
}
.cart-totals ul {
  padding-left: 0;
  margin: 0 0 25px;
  list-style-type: none;
}
.cart-totals ul li {
  border: 1px solid #eaedff;
  padding: 20px 15px;
  color: #202647;
  overflow: hidden;
  font-weight: 600;
}
.cart-totals ul li:first-child {
  border-bottom: none;
}
.cart-totals ul li:last-child {
  border-top: none;
}
.cart-totals ul li b {
  font-weight: 500;
}
.cart-totals ul li span {
  float: right;
  color: #6b6b84;
  font-weight: 500;
}
.cart-totals .default-btn {
  width: 100%;
  text-align: center;
  font-size: 15px;
}
.user-actions {
  -webkit-box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
  background: #fff;
  padding: 15px 20px;
  border-top: 3px solid #0dbcc0;
  position: relative;
  margin-bottom: 40px;
}
.user-actions i {
  color: #0dbcc0;
  margin-right: 2px;
  font-size: 20px;
  position: relative;
  top: 3px;
}
.user-actions span {
  display: inline-block;
  font-weight: 500;
  color: #0dbcc0;
}
.user-actions span a {
  display: inline-block;
  color: #202647;
}
.user-actions span a:hover,
.user-actions span a:focus {
  color: #0dbcc0;
}
.billing-details .title {
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
  font-size: 25px;
  font-weight: 600;
}
.billing-details .title::before {
  content: "";
  position: absolute;
  background: #0dbcc0;
  bottom: -1px;
  left: 0;
  width: 50px;
  height: 1px;
}
.billing-details .form-group {
  margin-bottom: 25px;
}
.billing-details .form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
}
.billing-details .form-group label .required {
  color: red;
}
.billing-details .form-group .nice-select {
  float: unset;
  height: 60px !important;
  line-height: 58px;
  color: #6b6b84;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 16px;
  font-weight: 400;
}
.billing-details .form-group .nice-select .list {
  background-color: #fff;
  -webkit-box-shadow: 0 0 29px 0 rgba(102, 102, 102, 0.1);
  box-shadow: 0 0 29px 0 rgba(102, 102, 102, 0.1);
  border-radius: 0;
  margin-top: 0;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
}
.billing-details .form-group .nice-select .list .option {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  padding-left: 20px;
  padding-right: 20px;
}
.billing-details .form-group .nice-select .list .option:hover {
  background-color: #0dbcc0 !important;
  color: #fff;
}
.billing-details .form-group .nice-select .list .option.selected {
  background-color: transparent;
  font-weight: 600;
}
.billing-details .form-group .nice-select:after {
  right: 20px;
  width: 8px;
  height: 8px;
}
.billing-details .form-group .form-control {
  background: #f3f3f3;
  border-color: #f3f3f3;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  height: 60px;
}
.billing-details .form-group .form-control::-webkit-input-placeholder {
  color: #6b6b84;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.billing-details .form-group .form-control:-ms-input-placeholder {
  color: #6b6b84;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.billing-details .form-group .form-control::-ms-input-placeholder {
  color: #6b6b84;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.billing-details .form-group .form-control::placeholder {
  color: #6b6b84;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.billing-details .form-group .form-control:focus {
  background-color: transparent;
  border-color: #eee;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.billing-details .form-group .form-control:focus::-webkit-input-placeholder {
  color: transparent;
}
.billing-details .form-group .form-control:focus:-ms-input-placeholder {
  color: transparent;
}
.billing-details .form-group .form-control:focus::-ms-input-placeholder {
  color: transparent;
}
.billing-details .form-group .form-control:focus::placeholder {
  color: transparent;
}
.billing-details .form-group textarea {
  height: 120px !important;
}
.billing-details .form-check {
  margin-bottom: 20px;
}
.billing-details .form-check .form-check-label {
  color: #202647;
}
.billing-details .form-check label {
  position: relative;
  left: -3px;
  top: 1px;
  font-weight: 500;
}
.billing-details .col-lg-12:last-child .form-group {
  margin-bottom: 0;
}
.order-details .title {
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
  font-size: 25px;
  font-weight: 600;
}
.order-details .title::before {
  content: "";
  position: absolute;
  background: #0dbcc0;
  bottom: -1px;
  left: 0;
  width: 50px;
  height: 1px;
}
.order-details .order-table table {
  margin-bottom: 0;
}
.order-details .order-table table thead tr th {
  border-bottom-width: 0;
  vertical-align: middle;
  border-color: #eaedff;
  padding: 12px 20px 10px;
  font-weight: 600;
}
.order-details .order-table table tbody tr td {
  vertical-align: middle;
  color: #6b6b84;
  border-color: #eaedff;
  font-size: 14.5px;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 15px;
  padding-bottom: 12px;
}
.order-details .order-table table tbody tr td.product-name a {
  color: #6b6b84;
  display: inline-block;
}
.order-details .order-table table tbody tr td.product-name a:hover {
  color: #0dbcc0;
}
.order-details .order-table table tbody tr td.order-subtotal span,
.order-details .order-table table tbody tr td.order-shipping span,
.order-details .order-table table tbody tr td.total-price span {
  color: #202647;
  font-weight: 600;
}
.order-details .order-table table tbody tr td.shipping-price,
.order-details .order-table table tbody tr td.order-subtotal-price,
.order-details .order-table table tbody tr td.product-subtotal {
  font-weight: 600;
  color: #202647;
}
.order-details .payment-box {
  background-color: #fff;
  -webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
  margin-top: 30px;
  padding: 30px;
}
.order-details .payment-box .payment-method p [type="radio"]:checked,
.order-details .payment-box .payment-method p [type="radio"]:not(:checked) {
  display: none;
}
.order-details .payment-box .payment-method p [type="radio"]:checked + label,
.order-details .payment-box .payment-method p [type="radio"]:not(:checked) + label {
  padding-left: 27px;
  cursor: pointer;
  display: block;
  color: #202647;
  position: relative;
  margin-bottom: 8px;
  font-weight: 500;
}
.order-details .payment-box .payment-method p [type="radio"]:checked + label::before,
.order-details .payment-box .payment-method p [type="radio"]:not(:checked) + label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  border: 1px solid #ddd;
  border-radius: 50%;
  background: #fff;
}
.order-details .payment-box .payment-method p [type="radio"]:checked + label::after,
.order-details .payment-box .payment-method p [type="radio"]:not(:checked) + label::after {
  content: "";
  width: 12px;
  height: 12px;
  background: #0dbcc0;
  position: absolute;
  top: 6px;
  left: 3px;
  border-radius: 50%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.order-details .payment-box .payment-method p [type="radio"]:not(:checked) + label::after {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(0);
  transform: scale(0);
}
.order-details .payment-box .payment-method p [type="radio"]:checked + label::after {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.order-details .payment-box .default-btn {
  margin-top: 15px;
  -webkit-box-shadow: 0 5px 28.5px 1.5px rgba(149, 152, 200, 0.2);
  box-shadow: 0 5px 28.5px 1.5px rgba(149, 152, 200, 0.2);
  border-radius: 3px;
}
.product-details-image {
  background-image: url(../img/shop/shop-7.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 1;
}
.product-details-desc {
  padding: 15px;
  padding-left: 0;
  padding-right: 0;
}
.product-details-desc h3 {
  margin-bottom: 18px;
  font-size: 25px;
}
.product-details-desc .price {
  margin-bottom: 15px;
  color: #000;
  font-size: 15px;
  font-weight: 600;
}
.product-details-desc .price .old-price {
  text-decoration: line-through;
  color: #828893;
}
.product-details-desc p {
  margin-bottom: 0;
}
.product-details-desc .product-review {
  margin-bottom: 15px;
}
.product-details-desc .product-review .rating {
  display: inline-block;
  padding-right: 5px;
  font-size: 14px;
}
.product-details-desc .product-review .rating i {
  color: #ffba0a;
}
.product-details-desc .product-review .rating-count {
  display: inline-block;
  color: #000;
  border-bottom: 1px solid #000;
  line-height: initial;
}
.product-details-desc .product-review .rating-count:hover {
  color: #0dbcc0;
  border-color: #0dbcc0;
  text-decoration: none;
}
.product-details-desc .product-add-to-cart {
  margin-top: 20px;
}
.product-details-desc .product-add-to-cart .input-counter {
  max-width: 130px;
  min-width: 130px;
  margin-right: 10px;
  text-align: center;
  display: inline-block;
  position: relative;
}
.product-details-desc .product-add-to-cart .input-counter span {
  position: absolute;
  top: 0;
  background-color: transparent;
  cursor: pointer;
  color: #d0d0d0;
  width: 50px;
  height: 100%;
  line-height: 55px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.product-details-desc .product-add-to-cart .input-counter span.minus-btn {
  left: 0;
}
.product-details-desc .product-add-to-cart .input-counter span.plus-btn {
  right: 0;
}
.product-details-desc .product-add-to-cart .input-counter span:hover {
  color: #0dbcc0;
}
.product-details-desc .product-add-to-cart .input-counter input {
  height: 50px;
  color: #000;
  outline: 0;
  display: block;
  border: none;
  background-color: #f8f8f8;
  text-align: center;
  width: 100%;
  font-size: 16px;
  font-weight: 600;
}
.product-details-desc .product-add-to-cart .input-counter input::-webkit-input-placeholder {
  color: #000;
}
.product-details-desc .product-add-to-cart .input-counter input:-ms-input-placeholder {
  color: #000;
}
.product-details-desc .product-add-to-cart .input-counter input::-ms-input-placeholder {
  color: #000;
}
.product-details-desc .product-add-to-cart .input-counter input::placeholder {
  color: #000;
}
.product-details-desc .product-add-to-cart .default-btn {
  position: relative;
  padding: 12px 30px;
  background-color: #0dbcc0;
  color: #fff;
  border: 1px solid #0dbcc0;
  cursor: pointer;
}
.product-details-desc .product-add-to-cart .default-btn i {
  margin-right: 2px;
}
.product-details-desc .product-add-to-cart .default-btn:hover {
  background-color: #fff;
  color: #0dbcc0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.product-details-desc .buy-checkbox-btn {
  margin-top: 20px;
}
.product-details-desc .buy-checkbox-btn input {
  display: none;
}
.product-details-desc .buy-checkbox-btn .cbx {
  margin: auto;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
}
.product-details-desc .buy-checkbox-btn .cbx span {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.product-details-desc .buy-checkbox-btn .cbx span:first-child {
  position: relative;
  width: 18px;
  height: 18px;
  border-radius: 3px;
  -webkit-transform: scale(1);
  transform: scale(1);
  vertical-align: middle;
  border: 1px solid #eee;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.product-details-desc .buy-checkbox-btn .cbx span:first-child svg {
  position: absolute;
  top: 3px;
  left: 2px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 16px;
  stroke-dashoffset: 16px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.product-details-desc .buy-checkbox-btn .cbx span:first-child:before {
  content: "";
  width: 100%;
  height: 100%;
  background: #000;
  display: block;
  -webkit-transform: scale(0);
  transform: scale(0);
  opacity: 1;
  border-radius: 50%;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
.product-details-desc .buy-checkbox-btn .cbx span:last-child {
  position: relative;
  top: 1px;
  padding-left: 4px;
  color: #666;
}
.product-details-desc .buy-checkbox-btn .cbx:hover span:first-child {
  border-color: #0dbcc0;
}
.product-details-desc .buy-checkbox-btn .inp-cbx:checked + .cbx span:first-child {
  background: #0dbcc0;
  border-color: #0dbcc0;
  -webkit-animation: wave 0.4s ease;
  animation: wave 0.4s ease;
}
.product-details-desc .buy-checkbox-btn .inp-cbx:checked + .cbx span:first-child svg {
  stroke-dashoffset: 0;
}
.product-details-desc .buy-checkbox-btn .inp-cbx:checked + .cbx span:first-child:before {
  -webkit-transform: scale(3.5);
  transform: scale(3.5);
  opacity: 0;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.product-details-desc .buy-checkbox-btn .item:not(:first-child) {
  margin-top: 15px;
}
.product-details-desc .buy-checkbox-btn .btn-light {
  background-color: #f2f2f2;
  border: none;
  padding: 13px 25px 10px;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  font-weight: 600;
  display: block;
  width: 100%;
}
.product-details-desc .buy-checkbox-btn .btn-light:hover {
  background-color: #0dbcc0;
  color: #fff;
}
.product-details-desc .products-share {
  margin-top: 30px;
}
.product-details-desc .products-share .social {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
}
.product-details-desc .products-share .social li {
  display: inline-block;
}
.product-details-desc .products-share .social li span {
  display: inline-block;
  margin-right: 3px;
  font-weight: 700;
  position: relative;
  top: -2px;
}
.product-details-desc .products-share .social li a {
  display: block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  border-radius: 50%;
  background-color: #0dbcc0;
  color: #fff;
  border: 1px solid #0dbcc0;
  text-align: center;
  font-size: 18px;
  margin-left: 2px;
}
.product-details-desc .products-share .social li a:hover,
.product-details-desc .products-share .social li a:focus {
  color: #0dbcc0;
  background-color: transparent;
}
.product-details-desc .products-share .social li a.facebook {
  background-color: #3b5998;
  border-color: #3b5998;
  color: #fff;
}
.product-details-desc .products-share .social li a.facebook:hover,
.product-details-desc .products-share .social li a.facebook:focus {
  color: #3b5998;
  background-color: transparent;
}
.product-details-desc .products-share .social li a.twitter {
  background-color: #1da1f2;
  border-color: #1da1f2;
  color: #fff;
}
.product-details-desc .products-share .social li a.twitter:hover,
.product-details-desc .products-share .social li a.twitter:focus {
  color: #1da1f2;
  background-color: transparent;
}
.product-details-desc .products-share .social li a.linkedin {
  background-color: #007bb5;
  border-color: #007bb5;
  color: #fff;
}
.product-details-desc .products-share .social li a.linkedin:hover,
.product-details-desc .products-share .social li a.linkedin:focus {
  color: #007bb5;
  background-color: transparent;
}
.product-details-desc .products-share .social li a.instagram {
  background-color: #c13584;
  border-color: #c13584;
  color: #fff;
}
.product-details-desc .products-share .social li a.instagram:hover,
.product-details-desc .products-share .social li a.instagram:focus {
  color: #c13584;
  background-color: transparent;
}
.products-details-tabs {
  margin-top: 50px;
}
.products-details-tabs .nav {
  padding-left: 0;
  margin-bottom: 30px;
  list-style-type: none;
  display: block;
}
.products-details-tabs .nav .nav-item {
  display: inline-block;
  margin-right: 30px;
}
.products-details-tabs .nav .nav-item:last-child {
  margin-right: 0;
}
.products-details-tabs .nav .nav-item .nav-link {
  border: none;
  border-bottom: 1px solid #eee;
  padding: 0;
  background-color: transparent;
  position: relative;
  padding-bottom: 8px;
  font-size: 18px;
  font-weight: 700;
  color: #202647;
}
.products-details-tabs .nav .nav-item .nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  width: 0;
  height: 3px;
  background-color: #0dbcc0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  bottom: -2px;
}
.products-details-tabs .nav .nav-item .nav-link:hover,
.products-details-tabs .nav .nav-item .nav-link.active {
  color: #202647;
}
.products-details-tabs .nav .nav-item .nav-link:hover::before,
.products-details-tabs .nav .nav-item .nav-link.active::before {
  width: 100%;
}
.products-details-tabs .tab-content .tab-pane h2 {
  font-size: 20px;
  margin-bottom: 20px;
}
.products-details-tabs .tab-content .tab-pane p {
  font-size: 15px;
}
.products-details-tabs .tab-content .tab-pane ul {
  padding-left: 0;
  list-style-type: none;
  margin-top: 20px;
  margin-bottom: 0;
}
.products-details-tabs .tab-content .tab-pane ul li {
  margin-bottom: 12px;
  position: relative;
  color: #6b6b84;
  padding-left: 15px;
  font-weight: 500;
  font-size: 15px;
}
.products-details-tabs .tab-content .tab-pane ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #6b6b84;
}
.products-details-tabs .tab-content .tab-pane ul li:last-child {
  margin-bottom: 0;
}
.products-details-tabs .tab-content .tab-pane .products-reviews h3 {
  display: inline-block;
  font-size: 20px;
  margin-bottom: 15px;
}
.products-details-tabs .tab-content .tab-pane .products-reviews .row {
  overflow: hidden;
  margin-left: 0;
  margin-right: 0;
}
.products-details-tabs .tab-content .tab-pane .products-reviews .side {
  float: left;
  width: 9%;
  margin-top: 10px;
}
.products-details-tabs .tab-content .tab-pane .products-reviews .side div {
  font-weight: 700;
}
.products-details-tabs .tab-content .tab-pane .products-reviews .middle {
  margin-top: 14px;
  float: left;
  width: 82%;
}
.products-details-tabs .tab-content .tab-pane .products-reviews .right {
  text-align: right;
}
.products-details-tabs .tab-content .tab-pane .products-reviews .bar-container {
  width: 100%;
  background-color: #f1f1f1;
  text-align: center;
  color: #fff;
  border-radius: 5px;
}
.products-details-tabs .tab-content .tab-pane .products-reviews .bar-5 {
  width: 70%;
  height: 18px;
  background-color: #0dbcc0;
  border-radius: 5px;
}
.products-details-tabs .tab-content .tab-pane .products-reviews .bar-4 {
  width: 20%;
  height: 18px;
  background-color: #0dbcc0;
  border-radius: 5px;
  border-radius: 5px;
}
.products-details-tabs .tab-content .tab-pane .products-reviews .bar-3 {
  width: 5%;
  height: 18px;
  background-color: #0dbcc0;
  border-radius: 5px;
}
.products-details-tabs .tab-content .tab-pane .products-reviews .bar-2 {
  width: 3%;
  height: 18px;
  background-color: #0dbcc0;
  border-radius: 5px;
}
.products-details-tabs .tab-content .tab-pane .products-reviews .bar-1 {
  width: 2%;
  height: 18px;
  background-color: #0dbcc0;
  border-radius: 5px;
}
.products-details-tabs .tab-content .tab-pane .products-review-form {
  margin-top: 45px;
}
.products-details-tabs .tab-content .tab-pane .products-review-form h3 {
  font-size: 20px;
  margin-bottom: 15px;
}
.products-details-tabs .tab-content .tab-pane .products-review-form .review-title {
  position: relative;
}
.products-details-tabs .tab-content .tab-pane .products-review-form .review-title .rating {
  display: inline-block;
}
.products-details-tabs .tab-content .tab-pane .products-review-form .review-title .rating .bx.bxs-star {
  color: #ffba0a;
}
.products-details-tabs .tab-content .tab-pane .products-review-form .review-title .rating i {
  color: #eee;
  font-size: 16px;
  margin-right: -1px;
}
.products-details-tabs .tab-content .tab-pane .products-review-form .review-title .default-btn {
  position: absolute;
  right: 0;
  bottom: 50%;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
  color: #fff !important;
  padding: 10px 25px;
}
.products-details-tabs .tab-content .tab-pane .products-review-form .review-title .default-btn span {
  background-color: #202647;
}
.products-details-tabs .tab-content .tab-pane .products-review-form .review-comments {
  margin-top: 35px;
}
.products-details-tabs .tab-content .tab-pane .products-review-form .review-comments .review-item {
  margin-top: 30px;
  position: relative;
  border-top: 1px dashed #eee;
  padding-top: 30px;
}
.products-details-tabs .tab-content .tab-pane .products-review-form .review-comments .review-item .rating .bx.bxs-star {
  color: #ffba0a;
}
.products-details-tabs .tab-content .tab-pane .products-review-form .review-comments .review-item .rating i {
  font-size: 16px;
  color: #eee;
  margin-right: -1px;
}
.products-details-tabs .tab-content .tab-pane .products-review-form .review-comments .review-item h3 {
  font-size: 18px;
  margin-top: 8px;
  margin-bottom: 8px;
}
.products-details-tabs .tab-content .tab-pane .products-review-form .review-comments .review-item span {
  margin-bottom: 10px;
  font-size: 16px;
  display: block;
}
.products-details-tabs .tab-content .tab-pane .products-review-form .review-comments .review-item span strong {
  font-weight: 500;
}
.products-details-tabs .tab-content .tab-pane .products-review-form .review-comments .review-item p {
  margin-bottom: 0;
}
.products-details-tabs .tab-content .tab-pane .products-review-form .review-form {
  margin-top: 30px;
}
.products-details-tabs .tab-content .tab-pane .products-review-form .review-form h3 {
  font-size: 20px;
  margin-bottom: 20px;
}
.products-details-tabs .tab-content .tab-pane .products-review-form .review-form .form-group {
  margin-bottom: 15px;
}
.products-details-tabs .tab-content .tab-pane .products-review-form .review-form .form-control {
  height: 55px;
  color: #202647;
  -webkit-box-shadow: unset !important;
  box-shadow: unset !important;
  border: 1px solid #eee;
  background-color: #eee;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 3px;
  padding: 1px 0 0 15px;
  font-size: 15px;
  font-weight: 500;
}
.products-details-tabs .tab-content .tab-pane .products-review-form .review-form .form-control::-webkit-input-placeholder {
  color: #7e7e7e;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.products-details-tabs .tab-content .tab-pane .products-review-form .review-form .form-control:-ms-input-placeholder {
  color: #7e7e7e;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.products-details-tabs .tab-content .tab-pane .products-review-form .review-form .form-control::-ms-input-placeholder {
  color: #7e7e7e;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.products-details-tabs .tab-content .tab-pane .products-review-form .review-form .form-control::placeholder {
  color: #7e7e7e;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.products-details-tabs .tab-content .tab-pane .products-review-form .review-form .form-control:focus {
  border-color: #0dbcc0;
  background-color: transparent;
}
.products-details-tabs .tab-content .tab-pane .products-review-form .review-form .form-control:focus::-webkit-input-placeholder {
  color: transparent;
}
.products-details-tabs .tab-content .tab-pane .products-review-form .review-form .form-control:focus:-ms-input-placeholder {
  color: transparent;
}
.products-details-tabs .tab-content .tab-pane .products-review-form .review-form .form-control:focus::-ms-input-placeholder {
  color: transparent;
}
.products-details-tabs .tab-content .tab-pane .products-review-form .review-form .form-control:focus::placeholder {
  color: transparent;
}
.products-details-tabs .tab-content .tab-pane .products-review-form .review-form textarea.form-control {
  height: auto;
  padding-top: 15px;
}
.products-details-tabs .tab-content .tab-pane .products-review-form .review-form .default-btn {
  color: #fff !important;
  cursor: pointer;
  border: none;
}
.products-details-tabs .tab-content .tab-pane .products-review-form .review-form .default-btn span {
  background-color: #202647;
}
.doctor-details-image img {
  border: 1px solid #eee;
}
.doctor-details-image .details-content {
  text-align: center;
  background-color: #fff;
  -webkit-box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  padding: 25px;
}
.doctor-details-image .details-content h3 {
  font-size: 25px;
  margin-bottom: 10px;
}
.doctor-details-image .details-content span {
  color: #0dbcc0;
  font-size: 16px;
  font-weight: 500;
}
.doctor-details-image .details-content .share-link {
  padding-left: 0;
  margin-bottom: 0;
  margin-top: 15px;
}
.doctor-details-image .details-content .share-link li {
  list-style-type: none;
}
.doctor-details-image .details-content .share-link li a {
  margin: 0 5px;
}
.doctor-details-image .details-content .share-link li a i {
  display: inline-block;
  color: #0dbcc0;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  background-color: #def5ee;
  text-align: center;
  font-size: 20px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.doctor-details-image .details-content .share-link li a i:hover {
  background-color: #0dbcc0;
  color: #fff;
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}
.doctor-details-desc h2 {
  font-size: 38px;
  margin-bottom: 20px;
}
.doctor-details-desc .signature-image {
  margin-top: 20px;
}
.doctor-details-tabs {
  margin-top: 50px;
}
.doctor-details-tabs .nav {
  padding-left: 0;
  margin-bottom: 20px;
  list-style-type: none;
  display: block;
}
.doctor-details-tabs .nav .nav-item {
  display: inline-block;
  margin-right: 20px;
}
.doctor-details-tabs .nav .nav-item:last-child {
  margin-right: 0;
}
.doctor-details-tabs .nav .nav-item .nav-link {
  border: none;
  padding: 0;
  background-color: #eee;
  position: relative;
  z-index: 1;
  padding: 15px 35px;
  font-size: 16px;
  font-weight: 600;
  color: #202647;
  margin-bottom: 15px;
}
.doctor-details-tabs .nav .nav-item .nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #0dbcc0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  bottom: 0;
  z-index: -1;
}
.doctor-details-tabs .nav .nav-item .nav-link:hover,
.doctor-details-tabs .nav .nav-item .nav-link.active {
  color: #fff;
}
.doctor-details-tabs .nav .nav-item .nav-link:hover::before,
.doctor-details-tabs .nav .nav-item .nav-link.active::before {
  width: 100%;
}
.doctor-details-tabs .nav-tabs {
  border-bottom: 1px solid #eee;
}
.doctor-details-tabs .tab-content .tab-pane .designation-title {
  margin-bottom: 20px;
}
.doctor-details-tabs .tab-content .tab-pane .designation-title h3 {
  font-size: 25px;
  margin-bottom: 10px;
}
.doctor-details-tabs .tab-content .tab-pane .designation-title p {
  margin-bottom: 5px;
}
.doctor-details-tabs .tab-content .tab-pane .designation-title span {
  color: #0dbcc0;
}
.doctor-details-tabs .tab-content .tab-pane h3 {
  font-size: 22px;
  margin-bottom: 20px;
}
.doctor-details-tabs .tab-content .tab-pane .specialties-list {
  padding-left: 0;
  list-style-type: none;
  margin-top: 20px;
  margin-bottom: 20px;
}
.doctor-details-tabs .tab-content .tab-pane .specialties-list li {
  margin-bottom: 12px;
  position: relative;
  color: #6b6b84;
  padding-left: 15px;
  font-weight: 400;
  font-size: 15px;
}
.doctor-details-tabs .tab-content .tab-pane .specialties-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #6b6b84;
}
.doctor-details-tabs .tab-content .tab-pane .specialties-list li:last-child {
  margin-bottom: 0;
}
.doctor-details-tabs .tab-content .tab-pane .educational-list {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 20px;
}
.doctor-details-tabs .tab-content .tab-pane .educational-list li {
  margin-bottom: 12px;
  color: #202647;
  font-weight: 500;
  font-size: 16px;
  position: relative;
  padding-left: 15px;
}
.doctor-details-tabs .tab-content .tab-pane .educational-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #6b6b84;
}
.doctor-details-tabs .tab-content .tab-pane .educational-list li:last-child {
  margin-bottom: 0;
}
.doctor-details-tabs .tab-content .tab-pane .educational-list li span {
  font-size: 16px;
  color: #6b6b84;
  font-weight: 400;
}
.doctor-details-tabs .tab-content .tab-pane .awards-list {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
  margin-top: 20px;
}
.doctor-details-tabs .tab-content .tab-pane .awards-list li {
  margin-bottom: 12px;
  color: #6b6b84;
  font-weight: 400;
  font-size: 16px;
  position: relative;
  padding-left: 15px;
}
.doctor-details-tabs .tab-content .tab-pane .awards-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #6b6b84;
}
.doctor-details-tabs .tab-content .tab-pane .awards-list li:last-child {
  margin-bottom: 0;
}
.doctor-details-tabs .tab-content .tab-pane .awards-list li span {
  font-size: 16px;
  color: #6b6b84;
  font-weight: 400;
}
.doctor-details-tabs .tab-content .tab-pane .skills-list {
  padding-left: 0;
  list-style-type: none;
  margin-top: 20px;
  margin-bottom: 20px;
}
.doctor-details-tabs .tab-content .tab-pane .skills-list li {
  margin-bottom: 12px;
  position: relative;
  color: #6b6b84;
  padding-left: 15px;
  font-weight: 400;
  font-size: 15px;
}
.doctor-details-tabs .tab-content .tab-pane .skills-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #6b6b84;
}
.doctor-details-tabs .tab-content .tab-pane .skills-list li:last-child {
  margin-bottom: 0;
}
.doctor-details-tabs .tab-content .tab-pane #map iframe {
  border: none;
  width: 100%;
  height: 550px;
}
.doctor-details-tabs .tab-content .tab-pane .doctor-reviews h3 {
  display: inline-block;
  font-size: 20px;
  margin-bottom: 15px;
}
.doctor-details-tabs .tab-content .tab-pane .doctor-reviews .row {
  overflow: hidden;
  margin-left: 0;
  margin-right: 0;
}
.doctor-details-tabs .tab-content .tab-pane .doctor-reviews .side {
  float: left;
  width: 9%;
  margin-top: 10px;
}
.doctor-details-tabs .tab-content .tab-pane .doctor-reviews .side div {
  font-weight: 700;
}
.doctor-details-tabs .tab-content .tab-pane .doctor-reviews .middle {
  margin-top: 14px;
  float: left;
  width: 82%;
}
.doctor-details-tabs .tab-content .tab-pane .doctor-reviews .right {
  text-align: right;
}
.doctor-details-tabs .tab-content .tab-pane .doctor-reviews .bar-container {
  width: 100%;
  background-color: #f1f1f1;
  text-align: center;
  color: #fff;
  border-radius: 5px;
}
.doctor-details-tabs .tab-content .tab-pane .doctor-reviews .bar-5 {
  width: 70%;
  height: 18px;
  background-color: #0dbcc0;
  border-radius: 5px;
}
.doctor-details-tabs .tab-content .tab-pane .doctor-reviews .bar-4 {
  width: 20%;
  height: 18px;
  background-color: #0dbcc0;
  border-radius: 5px;
  border-radius: 5px;
}
.doctor-details-tabs .tab-content .tab-pane .doctor-reviews .bar-3 {
  width: 5%;
  height: 18px;
  background-color: #0dbcc0;
  border-radius: 5px;
}
.doctor-details-tabs .tab-content .tab-pane .doctor-reviews .bar-2 {
  width: 3%;
  height: 18px;
  background-color: #0dbcc0;
  border-radius: 5px;
}
.doctor-details-tabs .tab-content .tab-pane .doctor-reviews .bar-1 {
  width: 2%;
  height: 18px;
  background-color: #0dbcc0;
  border-radius: 5px;
}
.doctor-details-tabs .tab-content .tab-pane .doctor-review-form {
  margin-top: 45px;
}
.doctor-details-tabs .tab-content .tab-pane .doctor-review-form h3 {
  font-size: 20px;
  margin-bottom: 15px;
}
.doctor-details-tabs .tab-content .tab-pane .doctor-review-form .review-title {
  position: relative;
}
.doctor-details-tabs .tab-content .tab-pane .doctor-review-form .review-title .rating {
  display: inline-block;
}
.doctor-details-tabs .tab-content .tab-pane .doctor-review-form .review-title .rating .bx.bxs-star {
  color: #ffba0a;
}
.doctor-details-tabs .tab-content .tab-pane .doctor-review-form .review-title .rating i {
  color: #eee;
  font-size: 16px;
  margin-right: -1px;
}
.doctor-details-tabs .tab-content .tab-pane .doctor-review-form .review-title .default-btn {
  position: absolute;
  right: 0;
  bottom: 50%;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
  color: #fff !important;
  padding: 10px 25px;
}
.doctor-details-tabs .tab-content .tab-pane .doctor-review-form .review-title .default-btn span {
  background-color: #202647;
}
.doctor-details-tabs .tab-content .tab-pane .doctor-review-form .review-comments {
  margin-top: 35px;
}
.doctor-details-tabs .tab-content .tab-pane .doctor-review-form .review-comments .review-item {
  margin-top: 30px;
  position: relative;
  border-top: 1px dashed #eee;
  padding-top: 30px;
}
.doctor-details-tabs .tab-content .tab-pane .doctor-review-form .review-comments .review-item .rating .bx.bxs-star {
  color: #ffba0a;
}
.doctor-details-tabs .tab-content .tab-pane .doctor-review-form .review-comments .review-item .rating i {
  font-size: 16px;
  color: #eee;
  margin-right: -1px;
}
.doctor-details-tabs .tab-content .tab-pane .doctor-review-form .review-comments .review-item h3 {
  font-size: 18px;
  margin-top: 8px;
  margin-bottom: 8px;
}
.doctor-details-tabs .tab-content .tab-pane .doctor-review-form .review-comments .review-item span {
  margin-bottom: 10px;
  font-size: 16px;
  display: block;
}
.doctor-details-tabs .tab-content .tab-pane .doctor-review-form .review-comments .review-item span strong {
  font-weight: 500;
}
.doctor-details-tabs .tab-content .tab-pane .doctor-review-form .review-comments .review-item p {
  margin-bottom: 0;
}
.doctor-details-tabs .tab-content .tab-pane .doctor-review-form .review-form {
  margin-top: 30px;
}
.doctor-details-tabs .tab-content .tab-pane .doctor-review-form .review-form h3 {
  font-size: 20px;
  margin-bottom: 20px;
}
.doctor-details-tabs .tab-content .tab-pane .doctor-review-form .review-form .form-group {
  margin-bottom: 15px;
}
.doctor-details-tabs .tab-content .tab-pane .doctor-review-form .review-form .form-control {
  height: 55px;
  color: #202647;
  -webkit-box-shadow: unset !important;
  box-shadow: unset !important;
  border: 1px solid #eee;
  background-color: #eee;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 3px;
  padding: 1px 0 0 15px;
  font-size: 15px;
  font-weight: 500;
}
.doctor-details-tabs .tab-content .tab-pane .doctor-review-form .review-form .form-control::-webkit-input-placeholder {
  color: #7e7e7e;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.doctor-details-tabs .tab-content .tab-pane .doctor-review-form .review-form .form-control:-ms-input-placeholder {
  color: #7e7e7e;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.doctor-details-tabs .tab-content .tab-pane .doctor-review-form .review-form .form-control::-ms-input-placeholder {
  color: #7e7e7e;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.doctor-details-tabs .tab-content .tab-pane .doctor-review-form .review-form .form-control::placeholder {
  color: #7e7e7e;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.doctor-details-tabs .tab-content .tab-pane .doctor-review-form .review-form .form-control:focus {
  border-color: #0dbcc0;
  background-color: transparent;
}
.doctor-details-tabs .tab-content .tab-pane .doctor-review-form .review-form .form-control:focus::-webkit-input-placeholder {
  color: transparent;
}
.doctor-details-tabs .tab-content .tab-pane .doctor-review-form .review-form .form-control:focus:-ms-input-placeholder {
  color: transparent;
}
.doctor-details-tabs .tab-content .tab-pane .doctor-review-form .review-form .form-control:focus::-ms-input-placeholder {
  color: transparent;
}
.doctor-details-tabs .tab-content .tab-pane .doctor-review-form .review-form .form-control:focus::placeholder {
  color: transparent;
}
.doctor-details-tabs .tab-content .tab-pane .doctor-review-form .review-form textarea.form-control {
  height: auto;
  padding-top: 15px;
}
.doctor-details-tabs .tab-content .tab-pane .doctor-review-form .review-form .default-btn {
  color: #fff !important;
  cursor: pointer;
  border: none;
}
.doctor-details-tabs .tab-content .tab-pane .doctor-review-form .review-form .default-btn span {
  background-color: #202647;
}
.submit-review-form {
  padding: 35px;
  border-radius: 5px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  max-width: 650px;
  margin: auto;
}
.submit-review-form h2 {
  margin-bottom: 30px;
  font-size: 25px;
  border-bottom: 1px solid #dedddf;
  padding-bottom: 15px;
  font-weight: 600;
  position: relative;
}
.submit-review-form h2::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  border-bottom: 1px solid #0dbcc0;
  height: 100%;
  width: 100px;
}
.submit-review-form form .form-group {
  margin-bottom: 25px;
}
.submit-review-form form .form-group label {
  display: block;
  margin-bottom: 5px;
  color: #6b6b84;
  font-weight: 500;
  font-size: 16px;
}
.submit-review-form form .form-group .form-control {
  height: 60px;
  padding: 0 0 0 15px;
  line-height: initial;
  color: #202647;
  background-color: transparent;
  border: 1px solid #eee;
  border-radius: 0;
  -webkit-box-shadow: unset;
  box-shadow: unset;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 15px;
  font-weight: 400;
}
.submit-review-form form .form-group .form-control:focus {
  border: 1px solid #0dbcc0;
  background-color: transparent;
}
.submit-review-form form .form-group .form-control:focus::-webkit-input-placeholder {
  color: transparent;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.submit-review-form form .form-group .form-control:focus:-ms-input-placeholder {
  color: transparent;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.submit-review-form form .form-group .form-control:focus::-ms-input-placeholder {
  color: transparent;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.submit-review-form form .form-group .form-control:focus::placeholder {
  color: transparent;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.submit-review-form form .form-group textarea.form-control {
  height: 120px;
  padding: 15px;
}
.submit-review-form form button {
  border: none;
  padding: 15px 30px;
  width: 100%;
  border-radius: 5px;
  cursor: pointer;
  background-color: #0dbcc0;
  color: #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.submit-review-form form button:hover {
  background-color: #0473b9;
}
.submit-review-form form .form-check {
  margin-top: 10px;
  margin-bottom: 20px;
  font-weight: 400;
  color: #6b6b84;
  font-size: 15px;
}
.submit-review-form form .form-check a {
  color: #0dbcc0;
}
.book-appointment-form {
  padding: 35px;
  border-radius: 5px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
}
.book-appointment-form h2 {
  margin-bottom: 30px;
  font-size: 25px;
  border-bottom: 1px solid #dedddf;
  padding-bottom: 15px;
  font-weight: 600;
  position: relative;
}
.book-appointment-form h2::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  border-bottom: 1px solid #0dbcc0;
  height: 100%;
  width: 100px;
}
.book-appointment-form form .form-group {
  margin-bottom: 25px;
}
.book-appointment-form form .form-group .form-control {
  height: 60px;
  padding: 0 15px;
  line-height: initial;
  color: #202647;
  background-color: transparent;
  border-color: #eee;
  border-radius: 0;
  -webkit-box-shadow: unset !important;
  box-shadow: unset !important;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 15px;
  font-weight: 400;
  width: 100%;
}
.book-appointment-form form .form-group .form-control:focus {
  border-color: #0dbcc0;
  background-color: transparent;
  outline: 0;
}
.book-appointment-form form .form-group textarea.form-control {
  height: 120px;
  padding-top: 15px;
}
.book-appointment-form form label {
  display: block;
  margin-bottom: 5px;
  color: #6b6b84;
  font-weight: 400;
  font-size: 16px;
}
.book-appointment-form form .nice-select {
  height: 60px;
  width: 100%;
  line-height: 60px;
  font-size: 14px;
  padding-left: 12px;
  padding-right: 12px;
  background-color: transparent;
  border-color: #eee;
  color: #6b6b84;
  border-radius: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  margin-bottom: 25px;
}
.book-appointment-form form .nice-select:focus {
  border-color: #0dbcc0;
  background-color: transparent;
}
.book-appointment-form form .nice-select .list {
  background-color: #fff;
  -webkit-box-shadow: 0 0 29px 0 rgba(102, 102, 102, 0.1);
  box-shadow: 0 0 29px 0 rgba(102, 102, 102, 0.1);
  border-radius: 0;
  margin-top: 0;
  margin-bottom: 0;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
}
.book-appointment-form form .nice-select .list .option {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #202647;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 14px;
}
.book-appointment-form form .nice-select .list .option:hover {
  background-color: #0dbcc0 !important;
  color: #fff;
}
.book-appointment-form form .nice-select .list .option.selected {
  background-color: transparent;
  font-weight: 600;
}
.book-appointment-form form .nice-select::after {
  height: 8px;
  width: 8px;
  border-color: #0dbcc0;
  right: 15px;
}
.book-appointment-form form .banner-btn {
  text-align: center;
}
.book-appointment-form form .banner-btn .default-btn {
  border: none;
  width: 100%;
  font-size: 15px;
  padding: 15px;
  cursor: pointer;
}
.book-appointment-form form .form-check {
  margin-bottom: 20px;
  font-weight: 400;
  color: #6b6b84;
  font-size: 15px;
}
.book-appointment-form form .form-check a {
  color: #0dbcc0;
}
.booking-summary {
  background: #fff;
  padding: 30px;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
}
.booking-summary h3 {
  margin-bottom: 30px;
  font-size: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
  position: relative;
}
.booking-summary h3::before {
  content: "";
  position: absolute;
  left: 0;
  width: 50px;
  height: 1px;
  bottom: -1px;
  background: #0dbcc0;
}
.booking-summary ul {
  padding-left: 0;
  margin: 0 0 20px;
  list-style-type: none;
}
.booking-summary ul li {
  border-bottom: 1px solid #ebebeb;
  padding: 10px 0 15px;
  color: #6b6b84;
  overflow: hidden;
  font-size: 15px;
  font-weight: 500;
}
.booking-summary ul li:first-child {
  padding-top: 0;
}
.booking-summary ul li:last-child {
  font-size: 18px;
  border-bottom: none;
  padding-bottom: 0;
  color: #202647;
}
.booking-summary ul li:last-child span {
  color: #202647;
  font-weight: 600;
}
.booking-summary ul li span {
  float: right;
  color: #6b6b84;
}
.booking-summary .default-btn {
  color: #fff;
  width: 100%;
  border-radius: 0;
  text-align: center;
  border-radius: 5px;
}
.doctor-dashboard-area .container-fluid {
  max-width: 1920px;
  margin: auto;
}
.dashboard-profile {
  background-color: #fff;
  -webkit-box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  padding: 20px 15px;
}
.dashboard-profile .profile-box {
  text-align: center;
}
.dashboard-profile .profile-box .profile-designation {
  padding: 25px;
}
.dashboard-profile .profile-box .profile-designation h3 {
  font-size: 28px;
  margin-bottom: 10px;
}
.dashboard-profile .profile-box .profile-designation p {
  margin-bottom: 8px;
}
.dashboard-profile .profile-box .profile-designation span {
  color: #0dbcc0;
}
.dashboard-profile .dashboard-profile-info .info-list {
  padding-left: 0;
  margin-bottom: 0;
}
.dashboard-profile .dashboard-profile-info .info-list li {
  list-style-type: none;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 15px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.dashboard-profile .dashboard-profile-info .info-list li:last-child {
  margin-bottom: 0;
}
.dashboard-profile .dashboard-profile-info .info-list li a {
  color: #6b6b84;
  display: inline-block;
  border: 1px solid #eee;
  padding: 15px 15px 15px 50px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  width: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.dashboard-profile .dashboard-profile-info .info-list li a::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 0%;
  background-color: #0dbcc0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  top: 0;
  z-index: -1;
}
.dashboard-profile .dashboard-profile-info .info-list li a i {
  font-size: 22px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 20px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #6b6b84;
}
.dashboard-profile .dashboard-profile-info .info-list li a:hover,
.dashboard-profile .dashboard-profile-info .info-list li a.active {
  color: #fff;
  border: 1px solid #fff;
}
.dashboard-profile .dashboard-profile-info .info-list li a:hover::before,
.dashboard-profile .dashboard-profile-info .info-list li a.active::before {
  height: 100%;
}
.dashboard-profile .dashboard-profile-info .info-list li a:hover i,
.dashboard-profile .dashboard-profile-info .info-list li a.active i {
  color: #fff;
}
.single-stats-box {
  text-align: center;
  margin-bottom: 30px;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#a794fc),
    color-stop(#9480ec),
    color-stop(#816cdd),
    color-stop(#6e58cd),
    to(#5b45be)
  );
  background: linear-gradient(to bottom, #a794fc, #9480ec, #816cdd, #6e58cd, #5b45be);
  padding: 30px;
  border-radius: 10px;
}
.single-stats-box .icon {
  margin-bottom: 20px;
}
.single-stats-box .icon i {
  display: inline-block;
  height: 80px;
  width: 80px;
  line-height: 80px;
  border: 1px solid #fff;
  font-size: 40px;
  border-radius: 50px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #fff;
}
.single-stats-box h3 {
  font-size: 45px;
  color: #fff;
  margin-bottom: 5px;
}
.single-stats-box p {
  font-size: 16px;
  color: #fff;
  margin-bottom: 0;
  font-weight: 500;
}
.single-stats-box:hover .icon i {
  background-color: #fff;
  color: #0dbcc0;
}
.single-stats-box.bg-2 {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#6dc3f8),
    color-stop(#58b1eb),
    color-stop(#429fde),
    color-stop(#2a8dd1),
    to(#057bc4)
  );
  background: linear-gradient(to bottom, #6dc3f8, #58b1eb, #429fde, #2a8dd1, #057bc4);
}
.single-stats-box.bg-3 {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#59dfa0),
    color-stop(#4ace8f),
    color-stop(#39be7d),
    color-stop(#27ae6d),
    to(#0f9e5c)
  );
  background: linear-gradient(to bottom, #59dfa0, #4ace8f, #39be7d, #27ae6d, #0f9e5c);
}
.single-stats-box.bg-4 {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#f6688a),
    color-stop(#ef6082),
    color-stop(#e8587a),
    color-stop(#e05072),
    to(#d9486a)
  );
  background: linear-gradient(to bottom, #f6688a, #ef6082, #e8587a, #e05072, #d9486a);
}
.doctors-appointment {
  overflow-x: auto;
}
.doctors-appointment .title-box {
  background: #fff;
  border: 1px solid #eee;
  padding: 30px 45px;
  margin-bottom: 30px;
}
.doctors-appointment .title-box h3 {
  font-size: 25px;
  margin-bottom: 0;
}
.doctors-appointment .title-box .btn-box {
  margin-top: 30px;
}
.doctors-appointment .title-box .btn-box .btn-one {
  display: inline-block;
  padding: 12px 35px;
  background-color: #0dbcc0;
  border: 1px solid #0dbcc0;
  color: #fff;
  border-radius: 30px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-weight: 500;
  font-size: 14px;
  margin-right: 15px;
}
.doctors-appointment .title-box .btn-box .btn-one:hover {
  background-color: #0473b9;
  border: 1px solid #0473b9;
  color: #fff;
}
.doctors-appointment .title-box .btn-box .btn-two {
  display: inline-block;
  padding: 12px 35px;
  background-color: transparent;
  border: 1px solid #0dbcc0;
  color: #0dbcc0;
  border-radius: 30px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-weight: 500;
  font-size: 14px;
}
.doctors-appointment .title-box .btn-box .btn-two:hover {
  background-color: #0dbcc0;
  color: #fff;
}
.doctors-appointment .title-box .search-form {
  position: relative;
}
.doctors-appointment .title-box .search-form label {
  display: block;
  margin-bottom: 0;
}
.doctors-appointment .title-box .search-form .screen-reader-text {
  display: none;
}
.doctors-appointment .title-box .search-form .search-field {
  background-color: transparent;
  height: 50px;
  padding: 8px 15px;
  border: 1px solid #eee;
  width: 100%;
  display: block;
  outline: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 5px;
}
.doctors-appointment .title-box .search-form .search-field:focus {
  border-color: #0dbcc0;
}
.doctors-appointment .title-box .search-form button {
  border: none;
  background-color: #eee;
  color: #0dbcc0;
  height: 40px;
  width: 40px;
  position: absolute;
  right: 5px;
  padding: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  top: 5px;
  font-size: 20px;
  border-radius: 5px;
  cursor: pointer;
}
.doctors-appointment .title-box .search-form button i {
  position: absolute;
  left: 0;
  right: 0;
  top: 52%;
  -webkit-transform: translateY(-52%);
  transform: translateY(-52%);
}
.doctors-appointment .title-box .search-form button:hover,
.doctors-appointment .title-box .search-form button:focus {
  background-color: #0dbcc0;
  color: #fff;
}
.doctors-appointment .doctors-table {
  width: 100%;
  min-width: 1070px;
}
.doctors-appointment .doctors-table .table-header th {
  font-size: 18px;
  color: #202647;
  font-weight: 600;
  padding: 20px 10px;
  font-family: poppins, sans-serif;
}
.doctors-appointment .doctors-table .table-header th:first-child {
  padding-left: 20px;
}
.doctors-appointment .doctors-table .table-header th:nth-child(2) {
  text-align: center;
}
.doctors-appointment .doctors-table .table-header th:nth-child(3) {
  text-align: center;
}
.doctors-appointment .doctors-table .table-header th:nth-child(4) {
  text-align: center;
}
.doctors-appointment .doctors-table .table-header th:nth-child(5) {
  text-align: center;
}
.doctors-appointment .doctors-table tr {
  border-top: none;
  border: 1px solid #e5eded;
  font-family: poppins, sans-serif;
}
.doctors-appointment .doctors-table tr td {
  padding: 20px 10px;
}
.doctors-appointment .doctors-table tr td:first-child {
  padding-left: 20px;
}
.doctors-appointment .doctors-table tr td:last-child {
  padding-right: 20px;
}
.doctors-appointment .doctors-table tr td:nth-child(2) {
  text-align: center;
}
.doctors-appointment .doctors-table tr td:nth-child(3) {
  text-align: center;
}
.doctors-appointment .doctors-table tr td:nth-child(4) {
  text-align: center;
}
.doctors-appointment .doctors-table tr td:nth-child(5) {
  text-align: center;
}
.doctors-appointment .doctors-table tr td .name-box {
  position: relative;
  padding-left: 75px;
}
.doctors-appointment .doctors-table tr td .name-box .image {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
}
.doctors-appointment .doctors-table tr td .name-box .image img {
  width: 100%;
  border-radius: 50%;
}
.doctors-appointment .doctors-table tr td .name-box h5 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.doctors-appointment .doctors-table tr td .name-box .designation {
  font-size: 15px;
  color: #6b6b84;
  font-weight: 400;
}
.doctors-appointment .doctors-table tr td p {
  font-size: 15px;
  font-weight: 400;
  color: #6b6b84;
  margin-bottom: 0;
}
.doctors-appointment .doctors-table tr td span {
  font-size: 15px;
  color: #0dbcc0;
  font-weight: 400;
}
.doctors-appointment .doctors-table tr td .view {
  font-size: 14px;
  font-weight: 500;
  padding: 8px 25px;
  background: #eee;
  color: #202647;
  border-radius: 25px;
  margin-right: 5px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.doctors-appointment .doctors-table tr td .view:hover {
  background-color: #0dbcc0;
  color: #fff;
}
.doctors-appointment .doctors-table tr td .accept {
  font-size: 14px;
  font-weight: 500;
  padding: 8px 25px;
  background: #0dbcc0;
  color: #fff;
  border-radius: 25px;
  margin-right: 5px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.doctors-appointment .doctors-table tr td .accept:hover {
  background-color: #0473b9;
  color: #fff;
}
.doctors-appointment .doctors-table tr td .cancel {
  font-size: 14px;
  font-weight: 500;
  padding: 8px 25px;
  background: #0473b9;
  color: #fff;
  border-radius: 25px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.doctors-appointment .doctors-table tr td .cancel:hover {
  background-color: #0dbcc0;
  color: #fff;
}
.doctors-appointment .doctors-table tr td.right {
  text-align: right;
}
.doctors-appointment .patients-table {
  width: 100%;
  min-width: 1070px;
}
.doctors-appointment .patients-table .table-header th {
  font-size: 16px;
  color: #202647;
  font-weight: 600;
  padding: 20px 10px;
  font-family: poppins, sans-serif;
}
.doctors-appointment .patients-table .table-header th:first-child {
  padding-left: 20px;
}
.doctors-appointment .patients-table .table-header th:nth-child(2) {
  text-align: center;
}
.doctors-appointment .patients-table .table-header th:nth-child(3) {
  text-align: center;
}
.doctors-appointment .patients-table .table-header th:nth-child(4) {
  text-align: center;
}
.doctors-appointment .patients-table .table-header th:nth-child(5) {
  text-align: center;
}
.doctors-appointment .patients-table .table-header th:nth-child(6) {
  text-align: center;
}
.doctors-appointment .patients-table .table-header th:nth-child(7) {
  text-align: center;
}
.doctors-appointment .patients-table .table-header th:nth-child(8) {
  text-align: center;
}
.doctors-appointment .patients-table tr {
  border-top: none;
  border: 1px solid #e5eded;
  font-family: poppins, sans-serif;
}
.doctors-appointment .patients-table tr td {
  padding: 35px 10px;
}
.doctors-appointment .patients-table tr td:first-child {
  padding-left: 20px;
}
.doctors-appointment .patients-table tr td:last-child {
  padding-right: 20px;
}
.doctors-appointment .patients-table tr td:nth-child(2) {
  text-align: center;
}
.doctors-appointment .patients-table tr td:nth-child(3) {
  text-align: center;
}
.doctors-appointment .patients-table tr td:nth-child(4) {
  text-align: center;
}
.doctors-appointment .patients-table tr td:nth-child(5) {
  text-align: center;
}
.doctors-appointment .patients-table tr td:nth-child(6) {
  text-align: center;
}
.doctors-appointment .patients-table tr td:nth-child(7) {
  text-align: center;
}
.doctors-appointment .patients-table tr td:nth-child(8) {
  text-align: center;
}
.doctors-appointment .patients-table tr td .name-box {
  position: relative;
  padding-left: 60px;
}
.doctors-appointment .patients-table tr td .name-box .image {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.doctors-appointment .patients-table tr td .name-box .image img {
  width: 100%;
  border-radius: 50%;
}
.doctors-appointment .patients-table tr td .name-box h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
}
.doctors-appointment .patients-table tr td .name-box .designation {
  font-size: 15px;
  color: #6b6b84;
  font-weight: 400;
}
.doctors-appointment .patients-table tr td p {
  font-size: 15px;
  font-weight: 400;
  color: #6b6b84;
  margin-bottom: 0;
}
.doctors-appointment .patients-table tr td span {
  font-size: 15px;
  color: #0dbcc0;
  font-weight: 400;
}
.doctors-appointment .patients-table tr td .cancel {
  font-size: 14px;
  font-weight: 500;
  padding: 8px 25px;
  background: #0dbcc0;
  color: #fff;
  border-radius: 25px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.doctors-appointment .patients-table tr td .cancel:hover {
  background-color: #0473b9;
  color: #fff;
}
.doctors-appointment .patients-table tr td .edit {
  font-size: 14px;
  font-weight: 500;
  padding: 8px 25px;
  background: #eee;
  color: #202647;
  border-radius: 25px;
  margin-right: 5px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.doctors-appointment .patients-table tr td .edit:hover {
  background-color: #0dbcc0;
  color: #fff;
}
.doctors-appointment .patients-table tr td.right {
  text-align: right;
}
.doctors-appointment .invoices-table {
  width: 100%;
  min-width: 1070px;
}
.doctors-appointment .invoices-table .table-header th {
  font-size: 18px;
  color: #202647;
  font-weight: 600;
  padding: 30px;
  font-family: poppins, sans-serif;
  text-align: center;
}
.doctors-appointment .invoices-table .table-header th:last-child {
  text-align: right;
}
.doctors-appointment .invoices-table tr {
  border-top: none;
  border: 1px solid #e5eded;
  font-family: poppins, sans-serif;
  text-align: center;
}
.doctors-appointment .invoices-table tr td {
  padding: 30px;
}
.doctors-appointment .invoices-table tr td:last-child {
  text-align: right;
}
.doctors-appointment .invoices-table tr td h4 {
  font-size: 16px;
  margin-bottom: 5px;
}
.doctors-appointment .invoices-table tr td p {
  font-size: 15px;
  font-weight: 400;
  color: #6b6b84;
  margin-bottom: 0;
}
.doctors-appointment .invoices-table tr td span {
  font-size: 15px;
  color: #0dbcc0;
  font-weight: 400;
}
.doctors-appointment .invoices-table tr td .view {
  font-size: 14px;
  font-weight: 500;
  padding: 8px 25px;
  background: #0dbcc0;
  color: #fff;
  border-radius: 25px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  margin-right: 5px;
}
.doctors-appointment .invoices-table tr td .view:hover {
  background-color: #eee;
  color: #202647;
}
.doctors-appointment .invoices-table tr td .print {
  font-size: 14px;
  font-weight: 500;
  padding: 8px 25px;
  background: #eee;
  color: #202647;
  border-radius: 25px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.doctors-appointment .invoices-table tr td .print:hover {
  background-color: #0dbcc0;
  color: #fff;
}
.appointments-area .container-fluid {
  max-width: 1920px;
  margin: auto;
}
.appointments-list .appointments-box {
  padding: 35px 40px;
  background-color: #f3f3f3;
  border-radius: 5px;
  position: relative;
  margin-bottom: 30px;
}
.appointments-list .appointments-box:last-child {
  margin-bottom: 0;
}
.appointments-list .appointments-box .image-box {
  position: absolute;
  left: 40px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 170px;
  height: 170px;
}
.appointments-list .appointments-box .image-box img {
  border-radius: 5px;
}
.appointments-list .appointments-box .appointments-information {
  padding-left: 190px;
  position: relative;
}
.appointments-list .appointments-box .appointments-information h4 {
  font-size: 20px;
  margin-bottom: 15px;
}
.appointments-list .appointments-box .appointments-information .info-list {
  padding-left: 0;
  margin-bottom: 0;
}
.appointments-list .appointments-box .appointments-information .info-list li {
  font-size: 14px;
  color: #6b6b84;
  font-weight: 400;
  list-style-type: none;
  position: relative;
  margin-bottom: 15px;
  padding-left: 20px;
}
.appointments-list .appointments-box .appointments-information .info-list li:last-child {
  margin-bottom: 0;
}
.appointments-list .appointments-box .appointments-information .info-list li i {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #0dbcc0;
}
.appointments-list .appointments-box .appointments-information .info-list li a {
  color: #6b6b84;
}
.appointments-list .appointments-box .appointments-information .confirm-list {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
  padding-left: 0;
  margin-bottom: 0;
}
.appointments-list .appointments-box .appointments-information .confirm-list li {
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  padding: 10px 30px;
  background: #edeaea;
  border-radius: 25px;
  color: #0dbcc0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  margin-right: 10px;
}
.appointments-list .appointments-box .appointments-information .confirm-list li:last-child {
  margin-right: 0;
}
.appointments-list .appointments-box .appointments-information .confirm-list li:hover {
  background-color: #0dbcc0;
  color: #fff;
}
.reviews-area .container-fluid {
  max-width: 1920px;
  margin: auto;
}
.reviews-list .reviews-box {
  padding: 35px 40px;
  background-color: transparent;
  border: 1px solid #eee;
  border-radius: 5px;
  position: relative;
  margin-bottom: 30px;
}
.reviews-list .reviews-box:last-child {
  margin-bottom: 0;
}
.reviews-list .reviews-box .image-box {
  position: absolute;
  left: 40px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 170px;
  height: 170px;
}
.reviews-list .reviews-box .image-box img {
  border-radius: 5px;
}
.reviews-list .reviews-box .reviews-content {
  padding-left: 190px;
  position: relative;
}
.reviews-list .reviews-box .reviews-content h3 {
  font-size: 25px;
  margin-bottom: 12px;
}
.reviews-list .reviews-box .reviews-content span {
  font-size: 15px;
  color: #6b6b84;
  margin-bottom: 10px;
  display: inline-block;
}
.reviews-list .reviews-box .reviews-content p {
  font-size: 15px;
  margin-bottom: 10px;
}
.reviews-list .reviews-box .reviews-content .reply-btn {
  display: inline-block;
  padding: 5px 20px;
  font-size: 14px;
  font-weight: 400;
  color: #6b6b84;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border: 1px solid #e1e1e1;
  border-radius: 30px;
}
.reviews-list .reviews-box .reviews-content .reply-btn:hover {
  background-color: #0dbcc0;
  border: 1px solid #0dbcc0;
  color: #fff;
}
.reviews-list .reviews-box .reviews-content .rating {
  padding-left: 0;
  margin-bottom: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.reviews-list .reviews-box .reviews-content .rating i {
  font-size: 16px;
  color: #ffab01;
}
.schedule-time .title-box {
  background: #fff;
  border: 1px solid #eee;
  padding: 25px 30px;
}
.schedule-time .title-box h3 {
  font-size: 25px;
  margin-bottom: 0;
}
.schedule-time .title-box .btn-box {
  margin-top: 30px;
}
.schedule-time .title-box .btn-box .btn-one {
  display: inline-block;
  padding: 12px 35px;
  background-color: #0dbcc0;
  border: 1px solid #0dbcc0;
  color: #fff;
  border-radius: 30px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-weight: 500;
  font-size: 14px;
  margin-right: 15px;
}
.schedule-time .title-box .btn-box .btn-one:hover {
  background-color: #0473b9;
  border: 1px solid #0473b9;
  color: #fff;
}
.schedule-time .title-box .btn-box .btn-two {
  display: inline-block;
  padding: 12px 35px;
  background-color: transparent;
  border: 1px solid #0dbcc0;
  color: #0dbcc0;
  border-radius: 30px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-weight: 500;
  font-size: 14px;
}
.schedule-time .title-box .btn-box .btn-two:hover {
  background-color: #0dbcc0;
  color: #fff;
}
.schedule-time .title-box .search-form {
  position: relative;
}
.schedule-time .title-box .search-form label {
  display: block;
  margin-bottom: 0;
}
.schedule-time .title-box .search-form .screen-reader-text {
  display: none;
}
.schedule-time .title-box .search-form .search-field {
  background-color: transparent;
  height: 50px;
  padding: 8px 15px;
  border: 1px solid #eee;
  width: 100%;
  display: block;
  outline: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 5px;
}
.schedule-time .title-box .search-form .search-field:focus {
  border-color: #0dbcc0;
}
.schedule-time .title-box .search-form button {
  border: none;
  background-color: #eee;
  color: #0dbcc0;
  height: 40px;
  width: 40px;
  position: absolute;
  right: 5px;
  padding: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  top: 5px;
  font-size: 20px;
  border-radius: 5px;
  cursor: pointer;
}
.schedule-time .title-box .search-form button i {
  position: absolute;
  left: 0;
  right: 0;
  top: 52%;
  -webkit-transform: translateY(-52%);
  transform: translateY(-52%);
}
.schedule-time .title-box .search-form button:hover,
.schedule-time .title-box .search-form button:focus {
  background-color: #0dbcc0;
  color: #fff;
}
.schedule-time .calendar-content {
  text-align: center;
}
.schedule-time .calendar-content .schedule-list {
  padding: 20px;
  margin-bottom: 0;
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
}
.schedule-time .calendar-content .schedule-list li {
  list-style-type: none;
  display: inline-block;
}
.schedule-time .calendar-content .schedule-list li a {
  display: inline-block;
  padding: 10px 20px;
  background-color: #eee;
  color: #202647;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-weight: 500;
  font-size: 15px;
  border-radius: 30px;
}
.schedule-time .calendar-content .schedule-list li a:hover {
  background-color: #0dbcc0;
  color: #fff;
}
.schedule-time .calendar-content .schedule-list li .color {
  background-color: #0dbcc0;
  color: #fff;
}
.footer-area {
  background-color: #000711;
}
.footer-area.bg-color {
  background-color: #f1f7fd;
  border-top: 1px solid #eee;
}
.footer-area.bg-color .single-footer-widget p {
  color: #202647;
}
.footer-area.bg-color .single-footer-widget .footer-social li i {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#0090cc),
    color-stop(#0080d8),
    color-stop(#006de1),
    color-stop(#0056e3),
    to(#1f35db)
  );
  background: linear-gradient(to bottom, #0090cc, #0080d8, #006de1, #0056e3, #1f35db);
}
.footer-area.bg-color .single-footer-widget .quick-links li {
  color: #202647;
}
.footer-area.bg-color .single-footer-widget .quick-links li a {
  color: #202647;
}
.footer-area.bg-color .single-footer-widget .quick-links li a:hover {
  color: #0dbcc0;
}
.footer-area.bg-color .single-footer-widget .opening-hours li {
  color: #202647;
}
.footer-area.bg-color .single-footer-widget .footer-contact-info li {
  color: #202647;
}
.footer-area.bg-color .single-footer-widget .footer-contact-info li span {
  color: #202647;
}
.footer-area.bg-color .single-footer-widget .footer-contact-info li a {
  color: #202647;
}
.footer-area.bg-color .single-footer-widget .footer-contact-info li a:hover {
  color: #0dbcc0;
}
.single-footer-widget {
  margin-bottom: 30px;
}
.single-footer-widget a img {
  margin-bottom: 25px;
}
.single-footer-widget p {
  color: #fff;
  margin-bottom: 0;
}
.single-footer-widget .footer-social {
  padding-left: 0;
  margin-bottom: 0;
  margin-top: 20px;
}
.single-footer-widget .footer-social li {
  list-style-type: none;
  display: inline-block;
  margin-right: 10px;
}
.single-footer-widget .footer-social li:last-child {
  margin-right: 0;
}
.single-footer-widget .footer-social li i {
  display: inline-block;
  height: 35px;
  width: 35px;
  line-height: 35px;
  background-color: #0dbcc0;
  color: #fff;
  font-size: 16px;
  text-align: center;
  border-radius: 50%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.single-footer-widget .footer-social li i:hover {
  background-color: #fff;
  color: #0dbcc0;
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}
.single-footer-widget h2 {
  font-size: 25px;
  color: #0dbcc0;
  font-weight: 500;
  margin-bottom: 25px;
}
.single-footer-widget .quick-links {
  padding-left: 0;
  margin-bottom: 0;
}
.single-footer-widget .quick-links li {
  color: #fff;
  font-size: 15px;
  list-style-type: none;
  margin-bottom: 15px;
}
.single-footer-widget .quick-links li a {
  display: inline-block;
  color: #fff;
  font-weight: 400;
  position: relative;
}
.single-footer-widget .quick-links li a:hover {
  color: #0dbcc0;
}
.single-footer-widget .quick-links li a:hover::before {
  width: 100%;
}
.single-footer-widget .quick-links li a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: #0dbcc0;
}
.single-footer-widget .quick-links li:last-child {
  margin-bottom: 0;
}
.single-footer-widget .opening-hours {
  padding-left: 0;
  margin-bottom: 0;
}
.single-footer-widget .opening-hours li {
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  list-style-type: none;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid #e1e1e1;
}
.single-footer-widget .opening-hours li:last-child {
  margin-bottom: 0;
}
.single-footer-widget .opening-hours li span {
  float: right;
}
.single-footer-widget .footer-contact-info {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.single-footer-widget .footer-contact-info li {
  margin-bottom: 24px;
  color: #fff;
  position: relative;
  padding-left: 35px;
  font-size: 14px;
  font-family: poppins, sans-serif;
}
.single-footer-widget .footer-contact-info li i {
  position: absolute;
  left: 0;
  top: 5px;
  font-size: 25px;
  color: #0dbcc0;
}
.single-footer-widget .footer-contact-info li span {
  display: block;
  font-weight: 500;
  margin-bottom: 5px;
  color: #fff;
  font-size: 20px;
}
.single-footer-widget .footer-contact-info li a {
  display: inline-block;
  color: #fff;
  font-weight: 400;
  position: relative;
  font-size: 14px;
}
.single-footer-widget .footer-contact-info li a:hover {
  color: #0dbcc0;
}
.single-footer-widget .footer-contact-info li:last-child {
  margin-bottom: 0;
}
.copyright-area {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #fff;
}
.copyright-area.bg-color {
  background-color: #000;
}
.copyright-area.bg-color .copyright-area-content p {
  color: #fff;
}
.copyright-area.bg-color .copyright-area-content p a:hover {
  color: #fff;
}
.copyright-area .copyright-area-content {
  text-align: center;
}
.copyright-area .copyright-area-content p {
  color: #202647;
}
.copyright-area .copyright-area-content p a {
  display: inline-block;
  font-weight: 600;
  color: #0dbcc0;
}
.copyright-area .copyright-area-content p a:hover {
  color: #202647;
}
.go-top {
  position: fixed;
  cursor: pointer;
  bottom: -100px;
  right: 20px;
  color: #fff;
  background-color: #202647;
  z-index: 4;
  width: 45px;
  text-align: center;
  height: 45px;
  opacity: 0;
  visibility: hidden;
  border-radius: 50%;
  font-size: 22px;
  -webkit-transition: 0.9s;
  transition: 0.9s;
  overflow: hidden;
  -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}
.go-top i {
  position: absolute;
  right: 0;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
  font-size: 30px;
  margin: auto;
}
.go-top.active {
  opacity: 1;
  visibility: visible;
  bottom: 20px;
}
.go-top:hover {
  background-color: #0dbcc0;
  color: #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}

.dektop_only {
  display: block;
}
@media only screen and (max-width: 1199px) {
  .dektop_only {
    display: none;
  }
}
