@import url(https://fonts.googleapis.com/css?family=Source);@import url(https://fonts.googleapis.com/css?family=Raleway:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i);@import url(https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i);@import url(https://fonts.googleapis.com/css?family=Roboto);@import url(https://fonts.googleapis.com/css?family=Quicksand:300,400,500,700);@import url(https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.0/animate.css);@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.12.0-2/js/fontawesome.min.js);@import url(https://fonts.googleapis.com/css?family=Roboto:300,400,500,700);@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css);.Toastify__toast-container {
  z-index: 9999;
  -webkit-transform: translate3d(0, 0, 9999px);
  position: fixed;
  padding: 4px;
  width: 320px;
  box-sizing: border-box;
  color: #fff;
}
.Toastify__toast-container--top-left {
  top: 1em;
  left: 1em;
}
.Toastify__toast-container--top-center {
  top: 1em;
  left: 50%;
  transform: translateX(-50%);
}
.Toastify__toast-container--top-right {
  top: 1em;
  right: 1em;
}
.Toastify__toast-container--bottom-left {
  bottom: 1em;
  left: 1em;
}
.Toastify__toast-container--bottom-center {
  bottom: 1em;
  left: 50%;
  transform: translateX(-50%);
}
.Toastify__toast-container--bottom-right {
  bottom: 1em;
  right: 1em;
}

@media only screen and (max-width : 480px) {
  .Toastify__toast-container {
    width: 100vw;
    padding: 0;
    left: 0;
    margin: 0;
  }
  .Toastify__toast-container--top-left, .Toastify__toast-container--top-center, .Toastify__toast-container--top-right {
    top: 0;
    transform: translateX(0);
  }
  .Toastify__toast-container--bottom-left, .Toastify__toast-container--bottom-center, .Toastify__toast-container--bottom-right {
    bottom: 0;
    transform: translateX(0);
  }
  .Toastify__toast-container--rtl {
    right: 0;
    left: initial;
  }
}
.Toastify__toast {
  position: relative;
  min-height: 64px;
  box-sizing: border-box;
  margin-bottom: 1rem;
  padding: 8px;
  border-radius: 1px;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1), 0 2px 15px 0 rgba(0, 0, 0, 0.05);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  max-height: 800px;
  overflow: hidden;
  font-family: sans-serif;
  cursor: pointer;
  direction: ltr;
}
.Toastify__toast--rtl {
  direction: rtl;
}
.Toastify__toast--dark {
  background: #121212;
  color: #fff;
}
.Toastify__toast--default {
  background: #fff;
  color: #aaa;
}
.Toastify__toast--info {
  background: #3498db;
}
.Toastify__toast--success {
  background: #07bc0c;
}
.Toastify__toast--warning {
  background: #f1c40f;
}
.Toastify__toast--error {
  background: #e74c3c;
}
.Toastify__toast-body {
  margin: auto 0;
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
}

@media only screen and (max-width : 480px) {
  .Toastify__toast {
    margin-bottom: 0;
  }
}
.Toastify__close-button {
  color: #fff;
  background: transparent;
  outline: none;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s ease;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.Toastify__close-button--default {
  color: #000;
  opacity: 0.3;
}
.Toastify__close-button > svg {
  fill: currentColor;
  height: 16px;
  width: 14px;
}
.Toastify__close-button:hover, .Toastify__close-button:focus {
  opacity: 1;
}

@keyframes Toastify__trackProgress {
  0% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
.Toastify__progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  z-index: 9999;
  opacity: 0.7;
  background-color: rgba(255, 255, 255, 0.7);
  transform-origin: left;
}
.Toastify__progress-bar--animated {
  animation: Toastify__trackProgress linear 1 forwards;
}
.Toastify__progress-bar--controlled {
  transition: transform 0.2s;
}
.Toastify__progress-bar--rtl {
  right: 0;
  left: initial;
  transform-origin: right;
}
.Toastify__progress-bar--default {
  background: linear-gradient(to right, #4cd964, #5ac8fa, #007aff, #34aadc, #5856d6, #ff2d55);
}
.Toastify__progress-bar--dark {
  background: #bb86fc;
}
@keyframes Toastify__bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes Toastify__bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes Toastify__bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes Toastify__bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.Toastify__bounce-enter--top-left, .Toastify__bounce-enter--bottom-left {
  animation-name: Toastify__bounceInLeft;
}
.Toastify__bounce-enter--top-right, .Toastify__bounce-enter--bottom-right {
  animation-name: Toastify__bounceInRight;
}
.Toastify__bounce-enter--top-center {
  animation-name: Toastify__bounceInDown;
}
.Toastify__bounce-enter--bottom-center {
  animation-name: Toastify__bounceInUp;
}

.Toastify__bounce-exit--top-left, .Toastify__bounce-exit--bottom-left {
  animation-name: Toastify__bounceOutLeft;
}
.Toastify__bounce-exit--top-right, .Toastify__bounce-exit--bottom-right {
  animation-name: Toastify__bounceOutRight;
}
.Toastify__bounce-exit--top-center {
  animation-name: Toastify__bounceOutUp;
}
.Toastify__bounce-exit--bottom-center {
  animation-name: Toastify__bounceOutDown;
}

@keyframes Toastify__zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes Toastify__zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.Toastify__zoom-enter {
  animation-name: Toastify__zoomIn;
}

.Toastify__zoom-exit {
  animation-name: Toastify__zoomOut;
}

@keyframes Toastify__flipIn {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
@keyframes Toastify__flipOut {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.Toastify__flip-enter {
  animation-name: Toastify__flipIn;
}

.Toastify__flip-exit {
  animation-name: Toastify__flipOut;
}

@keyframes Toastify__slideInRight {
  from {
    transform: translate3d(110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInLeft {
  from {
    transform: translate3d(-110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInUp {
  from {
    transform: translate3d(0, 110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInDown {
  from {
    transform: translate3d(0, -110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(110%, 0, 0);
  }
}
@keyframes Toastify__slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-110%, 0, 0);
  }
}
@keyframes Toastify__slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 500px, 0);
  }
}
@keyframes Toastify__slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -500px, 0);
  }
}
.Toastify__slide-enter--top-left, .Toastify__slide-enter--bottom-left {
  animation-name: Toastify__slideInLeft;
}
.Toastify__slide-enter--top-right, .Toastify__slide-enter--bottom-right {
  animation-name: Toastify__slideInRight;
}
.Toastify__slide-enter--top-center {
  animation-name: Toastify__slideInDown;
}
.Toastify__slide-enter--bottom-center {
  animation-name: Toastify__slideInUp;
}

.Toastify__slide-exit--top-left, .Toastify__slide-exit--bottom-left {
  animation-name: Toastify__slideOutLeft;
}
.Toastify__slide-exit--top-right, .Toastify__slide-exit--bottom-right {
  animation-name: Toastify__slideOutRight;
}
.Toastify__slide-exit--top-center {
  animation-name: Toastify__slideOutUp;
}
.Toastify__slide-exit--bottom-center {
  animation-name: Toastify__slideOutDown;
}.alice-carousel {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  margin: auto;
  direction: ltr; }

.alice-carousel__wrapper {
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  width: 100%;
  height: auto; }

.alice-carousel__stage {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  white-space: nowrap; }
  .alice-carousel__stage-item {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 100%;
    vertical-align: top;
    white-space: normal;
    line-height: 0; }
    .alice-carousel__stage-item * {
      line-height: initial; }
    .alice-carousel__stage-item.__cloned {
      visibility: hidden;
      opacity: 0; }

.alice-carousel__prev-btn,
.alice-carousel__next-btn {
  display: inline-block;
  box-sizing: border-box;
  width: 50%;
  padding: 15px 10px; }
  .alice-carousel__prev-btn [data-area]::after,
  .alice-carousel__next-btn [data-area]::after {
    position: relative;
    content: attr(data-area);
    text-transform: capitalize; }

.alice-carousel__prev-btn {
  text-align: right; }

.alice-carousel__prev-btn-item,
.alice-carousel__next-btn-item {
  display: inline-block;
  cursor: pointer;
  color: #465798; }
  .alice-carousel__prev-btn-item:hover,
  .alice-carousel__next-btn-item:hover {
    color: darkred; }
  .alice-carousel__prev-btn-item.__inactive,
  .alice-carousel__next-btn-item.__inactive {
    opacity: 0.4; }

.alice-carousel__play-btn {
  position: absolute;
  top: 30px;
  left: 20px;
  display: inline-block; }
  .alice-carousel__play-btn:hover {
    cursor: pointer; }
  .alice-carousel__play-btn-wrapper {
    position: relative;
    width: 32px;
    height: 32px;
    padding: 10px;
    border-radius: 50%;
    background-color: #fff; }

.alice-carousel__play-btn-item {
  position: absolute;
  width: 32px;
  height: 32px;
  cursor: pointer;
  border: 0;
  outline: none;
  background: transparent; }
  .alice-carousel__play-btn-item::before, .alice-carousel__play-btn-item::after {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    content: '';
    transition: all 0.3s linear;
    border-width: 8px 0 8px 15px;
    border-style: solid;
    border-color: transparent;
    border-left-color: #465798; }
  .alice-carousel__play-btn-item::before {
    left: 5px;
    height: 14px; }
  .alice-carousel__play-btn-item::after {
    top: 7px;
    left: 18px; }
  .alice-carousel__play-btn-item.__pause::before, .alice-carousel__play-btn-item.__pause::after {
    height: 30px;
    border-width: 0 0 0 10px; }
  .alice-carousel__play-btn-item.__pause::after {
    top: 0;
    left: 18px; }

.alice-carousel__dots {
  margin: 30px 3px 5px;
  padding: 0;
  list-style: none;
  text-align: center; }
  .alice-carousel__dots-item {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 15px;
    cursor: pointer;
    border-radius: 50%;
    background-color: #e0e4fb; }
    .alice-carousel__dots-item:hover, .alice-carousel__dots-item.__active {
      background-color: #6e7ebc; }

.alice-carousel__slide-info {
  position: absolute;
  top: 20px;
  right: 20px;
  display: inline-block;
  padding: 5px 10px;
  color: #465798;
  border-radius: 5px;
  background-color: rgba(224, 228, 251, 0.6); }
  .alice-carousel__slide-info-item {
    vertical-align: middle;
    line-height: 0; }

.alice-carousel .animated {
  animation-fill-mode: both; }

.alice-carousel .animated-out {
  z-index: 1; }

.alice-carousel .fadeOut {
  animation-name: fadeOut; }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    visibility: hidden; } }
/*!
 * https://github.com/YouCanBookMe/react-datetime
 */

.rdt {
  position: relative;
}
.rdtPicker {
  display: none;
  position: absolute;
  width: 450px;
  padding: 4px;
  margin-top: 1px;
  z-index: 99999 !important;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,.1);
  border: 1px solid #f9f9f9;
}
.rdtOpen .rdtPicker {
  display: block;
}
.rdtStatic .rdtPicker {
  box-shadow: none;
  position: static;
}

.rdtPicker .rdtTimeToggle {
  text-align: center;
}

.rdtPicker table {
  width: 100%;
  margin: 0;
}
.rdtPicker td,
.rdtPicker th {
  text-align: center;
  height: 28px;
}
.rdtPicker td {
  cursor: pointer;
}
.rdtPicker td.rdtDay:hover,
.rdtPicker td.rdtHour:hover,
.rdtPicker td.rdtMinute:hover,
.rdtPicker td.rdtSecond:hover,
.rdtPicker .rdtTimeToggle:hover {
  background: #eeeeee;
  cursor: pointer;
}
.rdtPicker td.rdtOld,
.rdtPicker td.rdtNew {
  color: #999999;
}
.rdtPicker td.rdtToday {
  position: relative;
}
.rdtPicker td.rdtToday:before {
  content: '';
  display: inline-block;
  border-left: 7px solid transparent;
  border-bottom: 7px solid #428bca;
  border-top-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  bottom: 4px;
  right: 4px;
}
.rdtPicker td.rdtActive,
.rdtPicker td.rdtActive:hover {
  background-color: #428bca;
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.rdtPicker td.rdtActive.rdtToday:before {
  border-bottom-color: #fff;
}
.rdtPicker td.rdtDisabled,
.rdtPicker td.rdtDisabled:hover {
  background: none;
  color: #999999;
  cursor: not-allowed;
}

.rdtPicker td span.rdtOld {
  color: #999999;
}
.rdtPicker td span.rdtDisabled,
.rdtPicker td span.rdtDisabled:hover {
  background: none;
  color: #999999;
  cursor: not-allowed;
}
.rdtPicker th {
  border-bottom: 1px solid #f9f9f9;
}
.rdtPicker .dow {
  width: 14.2857%;
  border-bottom: none;
  cursor: default;
}
.rdtPicker th.rdtSwitch {
  width: 100px;
}
.rdtPicker th.rdtNext,
.rdtPicker th.rdtPrev {
  font-size: 21px;
  vertical-align: top;
}

.rdtPrev span,
.rdtNext span {
  display: block;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none;   /* Chrome/Safari/Opera */
  -khtml-user-select: none;    /* Konqueror */
  -moz-user-select: none;      /* Firefox */
  -ms-user-select: none;       /* Internet Explorer/Edge */
  user-select: none;
}

.rdtPicker th.rdtDisabled,
.rdtPicker th.rdtDisabled:hover {
  background: none;
  color: #999999;
  cursor: not-allowed;
}
.rdtPicker thead tr:first-child th {
  cursor: pointer;
}
.rdtPicker thead tr:first-child th:hover {
  background: #eeeeee;
}

.rdtPicker tfoot {
  border-top: 1px solid #f9f9f9;
}

.rdtPicker button {
  border: none;
  background: none;
  cursor: pointer;
}
.rdtPicker button:hover {
  background-color: #eee;
}

.rdtPicker thead button {
  width: 100%;
  height: 100%;
}

td.rdtMonth,
td.rdtYear {
  height: 50px;
  width: 25%;
  cursor: pointer;
}
td.rdtMonth:hover,
td.rdtYear:hover {
  background: #eee;
}

.rdtCounters {
  display: inline-block;
}

.rdtCounters > div {
  float: left;
}

.rdtCounter {
  height: 100px;
}

.rdtCounter {
  width: 40px;
}

.rdtCounterSeparator {
  line-height: 100px;
}

.rdtCounter .rdtBtn {
  height: 40%;
  line-height: 40px;
  cursor: pointer;
  display: block;

  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none;   /* Chrome/Safari/Opera */
  -khtml-user-select: none;    /* Konqueror */
  -moz-user-select: none;      /* Firefox */
  -ms-user-select: none;       /* Internet Explorer/Edge */
  user-select: none;
}
.rdtCounter .rdtBtn:hover {
  background: #eee;
}
.rdtCounter .rdtCount {
  height: 20%;
  font-size: 1.2em;
}

.rdtMilli {
  vertical-align: middle;
  padding-left: 8px;
  width: 48px;
}

.rdtMilli input {
  width: 100%;
  font-size: 1.2em;
  margin-top: 37px;
}

.rdtTime td {
  cursor: default;
}
.rdtNew, .rdtOld{
  visibility: hidden; 
}.carousel .control-arrow,.carousel.carousel-slider .control-arrow{-webkit-transition:all .25s ease-in;-moz-transition:all .25s ease-in;-ms-transition:all .25s ease-in;-o-transition:all .25s ease-in;transition:all .25s ease-in;opacity:.4;position:absolute;z-index:2;top:20px;background:0 0;border:0;font-size:32px;cursor:pointer}.carousel .control-arrow:hover{opacity:1}.carousel .control-arrow:before,.carousel.carousel-slider .control-arrow:before{margin:0 5px;display:inline-block;border-top:8px solid transparent;border-bottom:8px solid transparent;content:''}.carousel .control-disabled.control-arrow{opacity:0;cursor:inherit;display:none}.carousel .control-prev.control-arrow{left:0}.carousel .control-prev.control-arrow:before{border-right:8px solid #fff}.carousel .control-next.control-arrow{right:0}.carousel .control-next.control-arrow:before{border-left:8px solid #fff}.carousel{position:relative;width:100%}.carousel *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.carousel img{width:100%;display:inline-block;pointer-events:none}.carousel .carousel{position:relative}.carousel .control-arrow{outline:0;border:0;background:0 0;top:50%;margin-top:-13px;font-size:18px}.carousel .thumbs-wrapper{margin:20px;overflow:hidden}.carousel .thumbs{-webkit-transition:all .15s ease-in;-moz-transition:all .15s ease-in;-ms-transition:all .15s ease-in;-o-transition:all .15s ease-in;transition:all .15s ease-in;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);transform:translate3d(0,0,0);position:relative;list-style:none;white-space:nowrap}.carousel .thumb{-webkit-transition:border .15s ease-in;-moz-transition:border .15s ease-in;-ms-transition:border .15s ease-in;-o-transition:border .15s ease-in;transition:border .15s ease-in;display:inline-block;width:80px;margin-right:6px;white-space:nowrap;overflow:hidden;border:3px solid #fff;padding:2px}.carousel .thumb:focus{border:3px solid #ccc;outline:0}.carousel .thumb.selected,.carousel .thumb:hover{border:3px solid #333}.carousel .thumb img{vertical-align:top}.carousel.carousel-slider{position:relative;margin:0;overflow:hidden}.carousel.carousel-slider .control-arrow{top:0;color:#fff;font-size:26px;bottom:0;margin-top:0;padding:5px}.carousel.carousel-slider .control-arrow:hover{background:rgba(0,0,0,.2)}.carousel .slider-wrapper{overflow:hidden;margin:auto;width:100%;-webkit-transition:height .15s ease-in;-moz-transition:height .15s ease-in;-ms-transition:height .15s ease-in;-o-transition:height .15s ease-in;transition:height .15s ease-in}.carousel .slider-wrapper.axis-horizontal .slider{-ms-box-orient:horizontal;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-moz-flex;display:-webkit-flex;display:flex}.carousel .slider-wrapper.axis-horizontal .slider .slide{flex-direction:column;flex-flow:column}.carousel .slider-wrapper.axis-vertical{-ms-box-orient:horizontal;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-moz-flex;display:-webkit-flex;display:flex}.carousel .slider-wrapper.axis-vertical .slider{-webkit-flex-direction:column;flex-direction:column}.carousel .slider{margin:0;padding:0;position:relative;list-style:none;width:100%}.carousel .slider.animated{-webkit-transition:all .35s ease-in-out;-moz-transition:all .35s ease-in-out;-ms-transition:all .35s ease-in-out;-o-transition:all .35s ease-in-out;transition:all .35s ease-in-out}.carousel .slide{min-width:100%;margin:0;position:relative;text-align:center;background:#000}.carousel .slide img{width:100%;vertical-align:top;border:0}.carousel .slide iframe{display:inline-block;width:calc(100% - 80px);margin:0 40px 40px;border:0}.carousel .slide .legend{-webkit-transition:all .5s ease-in-out;-moz-transition:all .5s ease-in-out;-ms-transition:all .5s ease-in-out;-o-transition:all .5s ease-in-out;transition:all .5s ease-in-out;position:absolute;bottom:40px;left:50%;margin-left:-45%;width:90%;border-radius:10px;background:#000;color:#fff;padding:10px;font-size:12px;text-align:center;opacity:.25;-webkit-transition:opacity .35s ease-in-out;-moz-transition:opacity .35s ease-in-out;-ms-transition:opacity .35s ease-in-out;-o-transition:opacity .35s ease-in-out;transition:opacity .35s ease-in-out}.carousel .control-dots{position:absolute;bottom:0;margin:10px 0;text-align:center;width:100%}@media (min-width:960px){.carousel .control-dots{bottom:0}}.carousel .control-dots .dot{-webkit-transition:opacity .25s ease-in;-moz-transition:opacity .25s ease-in;-ms-transition:opacity .25s ease-in;-o-transition:opacity .25s ease-in;transition:opacity .25s ease-in;opacity:.3;box-shadow:1px 1px 2px rgba(0,0,0,.9);background:#fff;border-radius:50%;width:8px;height:8px;cursor:pointer;display:inline-block;margin:0 8px}.carousel .control-dots .dot.selected,.carousel .control-dots .dot:hover{opacity:1}.carousel .carousel-status{position:absolute;top:0;right:0;padding:5px;font-size:10px;text-shadow:1px 1px 1px rgba(0,0,0,.9);color:#fff}.carousel:hover .slide .legend{opacity:1}/*------------------------------------------------------------------
        File Name: style.css
        Template Name: auricle
-------------------------------------------------------------------*/


/*------------------------------------------------------------------
        1. import fonts
-------------------------------------------------------------------*/

/*@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,400i,600,700,900);*/
/*@import url('https://fonts.googleapis.com/css?family=Raleway:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i');*/
/*@import url('https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i');*/
/*@import url(https://fonts.googleapis.com/css?family=Roboto:300,400,400i,500,500i,700,700i);*/
/*@import url('https://fonts.googleapis.com/css?family=Quicksand:300,400,500,700');*/

/*------------------------------------------------------------------
        2. import files
    -------------------------------------------------------------------*/

/*@import url(https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.0/animate.css);*/
/*@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.12.0-2/js/fontawesome.min.js);*/


/*------------------------------------------------------------------
        3. basic
-------------------------------------------------------------------*/


/** {*/
/*    margin: 0;*/
/*    padding: 0;*/
/*    outline: none !important;*/
/*    box-sizing: border-box;*/
/*    transition: ease all 0.5s;*/
/*    -webkit-transition: ease all 0.5s;*/
/*    -moz-transition: ease all 0.5s;*/
/*    -ms-transition: ease all 0.5s;*/
/*    -o-transition: ease all 0.5s;*/
/*}*/

/*.table-textColor{*/
/*    color: red !important;*/
/*    text-align: center;*/

/*}*/
/*.table-textBlack{*/
/*    text-align: center;*/
/*    color: black !important;*/
/*}*/
/*input,button,select,textarea {*/
/*	outline: none !important;*/
/*}*/

/*html,*/
/*body {*/
/*    color: black;*/
/*    font-size: 15px;*/
/*    font-family: 'Poppins', sans-serif;*/
/*    line-height: normal;*/
/*    font-weight: 400;*/
/*    overflow-x: hidden !important;*/
/*}*/

/*body {*/
/*    overflow: hidden !important;*/
/*}*/

/*a {*/
/*    color: #1f1f1f;*/
/*    text-decoration: none !important;*/
/*    outline: none !important;*/
/*    -webkit-transition: all .3s ease-in-out;*/
/*    -moz-transition: all .3s ease-in-out;*/
/*    -ms-transition: all .3s ease-in-out;*/
/*    -o-transition: all .3s ease-in-out;*/
/*    transition: all .3s ease-in-out;*/
/*}*/

/*h1,*/
/*h2,*/
/*h3,*/
/*h4,*/
/*h5,*/
/*h6 {*/
/*    letter-spacing: 0;*/
/*    font-weight: normal;*/
/*    position: relative;*/
/*    padding: 0;*/
/*    font-weight: normal;*/
/*    line-height: normal;*/
/*    color: #1f1f1f;*/
/*    margin: 0*/
/*}*/

/*h6 {*/
/*    font-size: 14px;*/
/*    margin-bottom: 10px;*/
/*}*/

/*h1 {*/
/*    font-size: 24px*/
/*}*/

/*.small_heading.main-heading h2 {*/
/*    font-size: 21px;*/
/*}*/

/*.small_heading.main-heading::after {*/
/*    top: 18px;*/
/*}*/

/*.small_heading.main-heading {*/
/*    margin-bottom: 20px;*/
/*    width: 100%;*/
/*}*/

/*h3 {*/
/*    font-size: 18px*/
/*}*/

/*h4 {*/
/*    font-size: 16px*/
/*}*/

/*h5 {*/
/*    font-size: 14px*/
/*}*/

/*h1 a,*/
/*h2 a,*/
/*h3 a,*/
/*h4 a,*/
/*h5 a,*/
/*h6 a {*/
/*    color: #212121;*/
/*    text-decoration: none!important;*/
/*    opacity: 1*/
/*}*/

/*ol,*/
/*ul {*/
     
/*    margin: 0;*/
/*    color: #000;*/
/*}*/

/*a {*/
/*    color: #000;*/
/*    text-decoration: none;*/
/*    outline: none;*/
/*}*/

/*a,*/
/*.btn {*/
/*    text-decoration: none !important;*/
/*    outline: none !important;*/
/*    -webkit-transition: all .3s ease-in-out;*/
/*    -moz-transition: all .3s ease-in-out;*/
/*    -ms-transition: all .3s ease-in-out;*/
/*    -o-transition: all .3s ease-in-out;*/
/*    transition: all .3s ease-in-out;*/
/*}*/

/*.btn-custom {*/
/*    margin-top: 20px;*/
/*    background-color: transparent;*/
/*    border: 2px solid #ddd;*/
/*    padding: 12px 40px;*/
/*    font-size: 16px;*/
/*}*/

/*.button_section {*/
/*    float: left;*/
/*    width: 100%;*/
/*}*/

/*.right_bt {*/
/*    float: right;*/
/*}*/

/*a.btn,*/
/*button.btn {*/
/*    min-width: 170px;*/
/*    height: 50px;*/
/*    border-radius: 100px;*/
/*    padding: 0;*/
/*    text-align: center;*/
/*    line-height: 52px;*/
/*    font-size: 14px;*/
/*    font-weight: 400;*/
/*    text-transform: uppercase;*/
/*    margin-top: 10px;*/
/*    color: #fff;*/
/*    border: solid transform 1px;*/
/*}*/

/*a.btn:hover,*/
/*button.btn:hover,*/
/*a.btn:focus,*/
/*button.btn:focus {*/
/*    background: #252525;*/
/*    color: #fff;*/
/*}*/

/*button {*/
/*	transition: ease all 0.5s;*/
/*	cursor: pointer;*/
/*}*/

/*.bt_main {*/

/*    color: #fff;*/
/*    font-size: 14px;*/
/*    min-width: 148px;*/
/*    float: left;*/
/*    text-align: center;*/
/*    height: 48px;*/
/*    line-height: 50px;*/
/*    font-weight: 500;*/
/*    border: none;*/
/*    padding: 0 35px;*/
/*    transition: ease all 0.5s;*/

/*}*/

/*.bt_main:hover,*/
/*.bt_main:focus {*/
/*    color: #fff;*/
/*}*/

/*.reverse_bt.bt_main {*/
/*    color: #fff;*/
/*}*/

/*.white_bt.bt_main {*/
/*    background: #fff;*/
/*}*/

/*.white_bt.bt_main:hover,*/
/*.white_bt.bt_main:focus {*/
/*    color: #fff;*/
/*}*/

/*.field button {*/
/*    background: #f96495;*/
/*    color: #fff;*/
/*    font-size: 14px;*/
/*    width: auto;*/
    
/*    text-align: center;*/
/*    height: 48px;*/
/*    border-radius: 25px;*/
/*    line-height: 50px;*/
/*    font-weight: 500;*/
/*    border: none;*/
/*    margin-top: 15px;*/
/*    transition: ease all 0.5s;*/
/*    cursor: pointer;*/
/*    min-width: 148px;*/
/*	padding-left:75px;*/
/*	padding-right:75px;*/
/*}*/

/*.field button:hover, .field button:focus {*/
/*    background: #ffffff;*/
/*    color: #1e72bc;*/
/*}*/

/*.border_circle_bt {*/
/*    border-radius: 50px;*/
/*}*/

/*.padding-bottom_0 {*/
/*    padding-bottom: 0 !important;*/
/*}*/

/*.padding-top_0 {*/
/*    padding-top: 0 !important;*/
/*}*/

/*.padding-bottom_1 {*/
/*    padding-bottom: 10px !important;*/
/*}*/

/*.padding-bottom_2 {*/
/*    padding-bottom: 20px !important;*/
/*}*/

/*.padding-bottom_3 {*/
/*    padding-bottom: 30px !important;*/
/*}*/

/*.padding-bottom_4 {*/
/*    padding-bottom: 40px !important;*/
/*}*/

/*.padding-bottom_5 {*/
/*    padding-bottom: 50px !important;*/
/*}*/

/*.color_black p,*/
/*.color_black p.large,*/
/*.color_black ul,*/
/*.color_black ul li {*/
/*    color: #000;*/
/*}*/

/*.black_color {*/
/*    color: #000 !important;*/
/*}*/

/*.extra_light_font {*/
/*    font-weight: 300 !important;*/
/*}*/

/*.light_font {*/
/*    font-weight: 300 !important;*/
/*}*/

/*.normal_font {*/
/*    font-weight: 400 !important;*/
/*}*/

/*.semi_bold_font {*/
/*    font-weight: 600 !important;*/
/*}*/

/*.bold_font {*/
/*    font-weight: 700 !important;*/
/*}*/

/*.extra_bold_font {*/
/*    font-weight: 900 !important;*/
/*}*/

/*.lead {*/
/*    font-size: 18px;*/
/*    line-height: 30px;*/
/*    color: #767676;*/
/*    margin: 0;*/
/*    padding: 0;*/
/*}*/

/*blockquote {*/
/*    margin: 20px 0 20px;*/
/*    padding: 30px;*/
/*}*/

/*.margin_0 {*/
/*    margin: 0 !important;*/
/*}*/

/*.padding_0 {*/
/*    padding: 0 !important;*/
/*}*/


/*h2 {*/
/*    font-size: 40px;*/
/*    font-weight: 500;*/
/*    letter-spacing: -2px;*/
/*    position: relative;*/
/*    margin-bottom: 25px;*/
/*    line-height: 50px;*/
/*    position: relative;*/
/*}*/

/*h3 {*/
/*    font-size: 24px;*/
/*    color: #000;*/
/*    line-height: normal;*/
/*    font-weight: 700;*/
/*    text-transform: uppercase;*/
/*}*/

/*h4 {*/
/*    font-size: 18px;*/
/*    color: #000;*/
/*    line-height: 21px;*/
/*    font-weight: 600;*/
/*    text-transform: uppercase;*/
/*    margin: 30px 0 20px 0;*/
/*}*/

/*h5 {*/
/*    font-size: 15px;*/
/*    font-weight: 700;*/
/*    text-transform: uppercase;*/
/*    margin: 0;*/
/*    line-height: normal;*/
/*    color: #000;*/
/*}*/

/*p {*/
   
/*    font-size: 14px;*/
/*    line-height: 21px;*/
/*    font-weight: 300;*/
/*}*/

/*p.large {*/
/*    color: #707070;*/
/*    font-size: 16px;*/
/*    font-weight: 400;*/
/*}*/

/*p.large_2 {*/
/*    font-weight: 500;*/
/*    font-size: 14px;*/
/*    color: #000;*/
/*}*/

/*.img-responsive {*/
/*    max-width: 100%;*/
/*}*/

/*button,*/
/*input,*/
/*select,*/
/*textarea,*/
/*option {*/
/*    font-family: 'Poppins', sans-serif;*/
/*}*/

/*a#submit {*/
/*    z-index: 1;*/
/*}*/

/*a:hover,*/
/*a:focus {*/
/*    color: #000;*/
/*    text-decoration: none;*/
/*}*/

/*.span1,*/
/*.span2,*/
/*.span3,*/
/*.span4,*/
/*.span5,*/
/*.span6,*/
/*.span7,*/
/*.span8,*/
/*.span9,*/
/*.span10 {*/
/*    padding: 0 15px;*/
/*    float: left;*/
/*    min-height: 25px;*/
/*}*/

/*.border_radius_0 {*/
/*    border-radius: 0 !important;*/
/*}*/

/*.span1 {*/
/*    width: 10%;*/
/*}*/

/*.span2 {*/
/*    width: 20%;*/
/*}*/

/*.span3 {*/
/*    width: 30%;*/
/*}*/

/*.span4 {*/
/*    width: 40%;*/
/*}*/

/*.span5 {*/
/*    width: 50%;*/
/*}*/

/*.span6 {*/
/*    width: 60%;*/
/*}*/

/*.span7 {*/
/*    width: 70%;*/
/*}*/

/*.span8 {*/
/*    width: 80%;*/
/*}*/

/*.span9 {*/
/*    width: 90%;*/
/*}*/

/*.span10 {*/
/*    width: 100%;*/
/*}*/

/*.container {*/
/*    width: 1200px;*/
/*    max-width: 1200px;*/
/*}*/

/*.layout_padding {*/
/*    padding-top: 80px;*/
/*    padding-bottom: 100px;*/
/*}*/

/*.layout_padding_2 {*/
/*    padding-top: 100px;*/
/*    padding-bottom: 80px;*/
/*}*/

/*.full {*/
/*    width: 100%;*/
/*    float: left;*/
/*    margin: 0;*/
/*    padding: 0;*/
/*}*/

/*.vertical-center {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    height: 100%;*/
/*    width: 100%;*/
/*}*/

/*.right_side {*/
/*    float: right;*/
/*}*/

/*.text_align_right {*/
/*    text-align: right;*/
/*}*/

/*.left_side {*/
/*    float: left;*/
/*}*/

/*.text_align_left {*/
/*    text-align: left;*/
/*}*/

/*.text_align_center {*/
/*    text-align: center;*/
/*}*/

/*.center {*/
/*    width: 100%;*/
/*    display: flex;*/
/*    justify-content: center;*/
/*}*/

/*.border_dotted_circle {*/
/*    border: dotted #e1e1e1 3px;*/
/*    width: 170px;*/
/*    height: 170px;*/
/*    border-radius: 100%;*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    position: relative;*/
/*    z-index: 1;*/
/*}*/

/*.border_dotted_circle:hover,*/
/*.border_dotted_circle:focus {*/
/*    border: dotted #e1e1e1 3px;*/
/*    animation-name: rotate;*/
/*    animation-duration: 2s;*/
/*    animation-iteration-count: infinite;*/
/*    animation-timing-function: linear;*/
/*    -webkit-animation-name: rotate;*/
/*    -webkit-animation-duration: 2s;*/
/*    -webkit-animation-iteration-count: infinite;*/
/*    -webkit-animation-timing-function: linear;*/
/*    -moz-animation-name: rotate;*/
/*    -moz-animation-duration: 2s;*/
/*    -moz-animation-iteration-count: infinite;*/
/*    -moz-animation-timing-function: linear;*/
/*    -ms-animation-name: rotate;*/
/*    -ms-animation-duration: 5s;*/
/*    -ms-animation-iteration-count: infinite;*/
/*    -ms-animation-timing-function: linear;*/
/*    -o-animation-name: rotate;*/
/*    -o-animation-duration: 2s;*/
/*    -o-animation-iteration-count: infinite;*/
/*    -o-animation-timing-function: linear;*/
/*}*/

/*@-webkit-keyframes rotate {*/
/*    from {*/
/*        -webkit-transform: rotate(0deg);*/
/*        -moz-transform: rotate(0deg);*/
/*        -ms-transform: rotate(0deg);*/
/*        -o-transform: rotate(0deg);*/
/*        transform: rotate(0deg);*/
/*    }*/
/*    to {*/
/*        -webkit-transform: rotate(360deg);*/
/*        -moz-transform: rotate(360deg);*/
/*        -ms-transform: rotate(360deg);*/
/*        -o-transform: rotate(360deg);*/
/*        transform: rotate(360deg);*/
/*    }*/
/*}*/

/*@-moz-keyframes rotate {*/
/*    from {*/
/*        -moz-transform: rotate(0deg);*/
/*    }*/
/*    to {*/
/*        -moz-transform: rotate(360deg);*/
/*    }*/
/*}*/

/*.white_fonts p,*/
/*.white_fonts h1,*/
/*.white_fonts h2,*/
/*.white_fonts h3,*/
/*.white_fonts h4,*/
/*.white_fonts h5,*/
/*.white_fonts h6,*/
/*.white_fonts ul,*/
/*.white_fonts ul li,*/
/*.white_fonts ul li a,*/
/*.white_fonts ul i,*/
/*.white_fonts .post_info i,*/
/*.white_fonts div,*/
/*.white_fonts a.read_more,*/
/*.white_fonts h2 span {*/
/*    color: #fff !important;*/
/*}*/

/*.light_gray_fonts p,*/
/*.light_gray_fonts h1,*/
/*.light_gray_fonts h2,*/
/*.light_gray_fonts h3,*/
/*.light_gray_fonts h4,*/
/*.light_gray_fonts h5,*/
/*.light_gray_fonts h6,*/
/*.light_gray_fonts ul,*/
/*.light_gray_fonts ul li,*/
/*.light_gray_fonts ul li a,*/
/*.light_gray_fonts ul i,*/
/*.light_gray_fonts .post_info i,*/
/*.light_gray_fonts div,*/
/*.light_gray_fonts a.read_more {*/
/*    color: #898989 !important;*/
/*}*/

/*.parallax_bg {*/
/*    background-repeat: no-repeat;*/
/*    background-position: center center;*/
/*    background-size: cover;*/
/*    background-attachment: fixed;*/
/*}*/

/*.dark_gray {*/
/*    background-color: #252525;*/
/*    min-height: 400px;*/
/*}*/

/*.list_style_1 {*/
/*    font-size: 14px;*/
/*    font-weight: 500;*/
/*    margin: 20px 0 15px;*/
/*}*/

/*.list_style_1 i {*/
/*    float: left;*/
/*    margin: 3px 16px 0 0;*/
/*}*/

/*.light_silver {*/
/*    background: #f4f6fe;*/
/*}*/

/*.light_silver_2 {*/
/*    background: #f8f8f8;*/
/*}*/

/*hr.dottad_border {*/
/*    border-top: dotted 3px;*/
/*    margin: 80px 0;*/
/*}*/

/*.padding_right_left_15 {*/
/*    padding-left: 15px;*/
/*    padding-right: 15px;*/
/*}*/

/*.padding_right_left_25 {*/
/*    padding-left: 25px;*/
/*    padding-right: 25px;*/
/*}*/

/*.padding_top_80 {*/
/*    padding-top: 80px;*/
/*}*/

/*.padding_bottom_80 {*/
/*    padding-bottom: 80px;*/
/*}*/

/*.padding_bottom_0 {*/
/*    padding-bottom: 0;*/
/*}*/

/*.padding_inner {*/
/*    padding-top: 75px;*/
/*    padding-bottom: 75px;*/
/*}*/

/*.theme_color_bg h2::after {*/
/*    background: #fff;*/
/*}*/

/*.layout_pur_minus {*/
/*    margin-bottom: -190px;*/
/*    position: relative;*/
/*    z-index: 1;*/
/*}*/

/*.haf_full_section {*/
/*    position: relative;*/
/*}*/

/*.haf_full_section.right_full::after {*/
/*    content: "";*/
/*    display: block;*/
/*    width: 50%;*/
/*    background-color: #333;*/
/*    height: 100%;*/
/*    position: absolute;*/
/*    top: 0;*/
/*    right: 0;*/
/*    background-repeat: no-repeat;*/
/*    background-size: cover;*/
/*}*/

/*.haf_full_section.left_full::before {*/
/*    content: "";*/
/*    display: block;*/
/*    width: 50%;*/
/*    background-color: #333;*/
/*    height: 100%;*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    background-repeat: no-repeat;*/
/*    background-size: cover;*/
/*}*/

/*.gray1 {*/
/*    background: #464646;*/
/*}*/

/*.gray2 {*/
/*    background-color: #555555;*/
/*}*/

/*.overlap_top_img_main {*/
/*    margin: -70px 0 0 0;*/
/*}*/

/*.center_padding {*/
/*    padding: 150px 0 120px;*/
/*}*/

/*.border_0 {*/
/*    border-width: 0 !important;*/
/*}*/

/*.oswald_fonts h1,*/
/*.oswald_fonts h2,*/
/*.oswald_fonts h3,*/
/*.oswald_fonts h4,*/
/*.oswald_fonts h5,*/
/*.oswald_fonts h6 {*/
/*    font-family: 'Oswald', sans-serif;*/
/*}*/

/*.small_radius {*/
/*    border-radius: 5px;*/
/*}*/

/*section .small_head h2 {*/
/*    font-size: 30px;*/
/*}*/

/*.margin_top_0 {*/
/*    margin-top: 0 !important;*/
/*}*/

/*.montserrat_fonts li,*/
/*.montserrat_fonts a,*/
/*.montserrat_fonts ul {*/
/*    font-family: 'Montserrat', sans-serif;*/
/*    font-weight: 400;*/
/*}*/

/*.margin_top_30 {*/
/*    margin-top: 30px; */
/*}*/

/*.margin_bottom_30 {*/
/*    margin-bottom: 30px; */
/*}*/

/*.padding_top_0 {*/
/*    padding-top: 0 !important;*/
/*}*/

/*------------------------------------------------------------------
        4. loader
-------------------------------------------------------------------*/


/* Preloader */

/*#preloader {*/
/*    position: fixed;*/
/*    top: 0;*/
/*    left: 0;*/
/*    background-color: #fff;*/
/*    z-index: 999;*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*}*/

/*#status {*/
/*    background: url('../images/loaders/loading.gif');*/
/*    width: 220px;*/
/*    height: 220px;*/
/*    background-size: cover;*/
/*    background-position: center center;*/
/*    background-repeat: no-repeat;*/
/*}*/


/*------------------------------------------------------------------
        5. header
-------------------------------------------------------------------*/

/*.header_information {*/
/*    float: left;*/
/*    width: 100%;*/
/*    border-bottom: solid #eee 1px;*/
/*    padding-bottom: 10px;*/
/*}*/

/*.header_fixed {*/
/*    position: fixed;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*}*/

/*.header_top {*/
/*    background: #f6f6f6;*/
/*    min-height: 45px;*/
/*    padding-bottom: 10px;*/
/*}*/

/*.heading_main h2 span {*/
/*    color: #0aceb1;*/
/*}*/

/*.header_bg_transparent {*/
/*    background: rgba(37, 37, 37, 0.2);*/
/*}*/

/*.left_head {*/
/*    float: left;*/
/*}*/

/*.left_head ul {*/
/*    margin: 12px 0 11px;*/
/*}*/

/*div.left_head ul li {*/
/*    display: inline;*/
/*    margin-right: 30px;*/
/*    font-size: 14px;*/
/*    color: #3f504d;*/
/*}*/

/*div.left_head ul li i {*/
/*    font-size: 16px;*/
/*    margin-right: 5px;*/
/*    color: #1e72bc;*/
/*}*/

/*.right_head {*/
/*    float: right;*/
/*}*/

/*.right_head .social_icon_part {*/
/*    float: left;*/

/*}*/

/*.right_head .button_section {*/
/*    float: right;*/
/*    width: auto;*/
/*}*/

/**-- logo --**/

/*.header {*/
/*    padding: 2px 0;*/
/*    position: fixed;*/
/*    z-index: 999 !important;*/
/*    width: 100%;*/
/*    background: #fff;*/
/*    box-shadow: 0 15px 30px -25px #000;*/
/*    height: 95px;*/
/*}*/

/*.header_about_us {*/
/*    padding: 2px 0;*/
/*    position: fixed;*/
/*    z-index: 11 !important;*/
/*    width: 100%;*/
/*    background: #fff;*/
/*}*/

/*.logo {*/
/*    margin: 13px 0 13px;*/
/*    float: left;*/
/*}*/


/**-- menu --**/

/*.menu {*/
/*    width: 100%;*/
/*    margin: -1px 0 0;*/
/*}*/

/*.main_menu {*/
/*    margin: 20px 0 0;*/
/*}*/

/*.menu-container {*/
/*    margin: 0 auto;*/
/*    background: #e9e9e9;*/
/*}*/

/*.menu a.logo {*/
/*    display: inline-block;*/
/*    padding: 1.5em 3em;*/
/*    width: 19%;*/
/*    float: left;*/
/*}*/

/*.menu img {*/
/*    max-width: 100%;*/
/*}*/

/*.menu-mobile {*/
/*    display: none;*/
/*    padding: 20px;*/
/*}*/

/*.menu-mobile::after {*/
/*    content: "\f0c9";*/
/*    font-family: "fontawesome";*/
/*    position: relative;*/
/*    left: -2px;*/
/*    top: 2px;*/
/*}*/

/*.menu-dropdown-icon::before {*/
/*    content: "\f078";*/
/*    font-family: "fontawesome";*/
/*    display: none;*/
/*    cursor: pointer;*/
/*    float: right;*/
/*    padding: 16px 15px 16px;*/
/*    background: transparent;*/
/*    color: #333;*/
/*    border-left: solid #ddd 2px;*/
/*    font-size: 11px;*/
/*}*/

/*.menu > ul {*/
/*    margin: 0;*/
/*    width: 100%;*/
/*    list-style: none;*/
/*}*/

/*.menu > ul:before,*/
/*.menu > ul:after {*/
/*    content: "";*/
/*    display: table;*/
/*}*/

/*.menu > ul:after {*/
/*    clear: both;*/
/*}*/

/*.menu > ul > li {*/
/*    float: left;*/
/*    padding: 0;*/
/*    margin: 0;*/
/*}*/

/*.menu > ul > li a {*/
/*    padding: 15px 15px;*/
/*    display: block;*/
/*    color: #333;*/
/*    font-size: 20px;*/
/*}*/

/*.menu > ul > li:hover > a,*/
/*.menu > ul > li:focus > a,*/
/*.menu > ul > li.active > a {*/
/*    color: #f96495;*/
/*}*/

/*.menu > ul > li > ul {*/
/*    display: none;*/
/*    width: 100%;*/
/*    background-color: #fff;*/
/*    position: absolute;*/
/*    z-index: 99;*/
/*    left: 0;*/
/*    margin: 0;*/
/*    list-style: none;*/
/*    box-sizing: border-box;*/
/*    box-shadow: 0 15px 40px -20px #000;*/
/*    padding: 0;*/
    /*background-image: url('../images/landing_page/bg2.png');*/
/*    background-size: cover;*/
/*    background-position: right bottom;*/
/*    min-height: 420px;*/
/*    border-top: solid #1e72bc 5px;*/
/*}*/

/*.menu > ul > li > ul:before,*/
/*.menu > ul > li > ul:after {*/
/*    content: "";*/
/*    display: table;*/
/*}*/

/*.menu > ul > li > ul:after {*/
/*    clear: both;*/
/*}*/

/*.menu > ul > li > ul > li {*/
/*    margin: 0;*/
/*    list-style: none;*/
/*    width: 25%;*/
/*    background: none;*/
/*    float: left;*/
/*    padding: 15px 20px 0 20px;*/
/*    min-height: auto;*/
/*}*/

/*.menu > ul > li > ul > li:nth-child(4) {*/
/*    border-right: none;*/
/*}*/

/*.menu > ul > li > ul > li a {*/
/*    color: #222;*/
/*    padding: 0;*/
/*    width: 100%;*/
/*    display: block;*/
/*}*/

/*.menu > ul > li > ul > li a:hover {*/
/*    color: #1e72bc;*/
/*}*/

/*.menu > ul > li > ul > li >ul {*/
/*    display: block;*/
/*    padding: 0;*/
/*    margin: 0;*/
/*    list-style: none;*/
/*    box-sizing: border-box;*/
/*}*/

/*.menu > ul > li > ul > li > ul:before,*/
/*.menu > ul > li > ul > li > ul:after {*/
/*    content: "";*/
/*    display: table;*/
/*}*/

/*.menu > ul > li > ul > li > ul:after {*/
/*    clear: both;*/
/*}*/

/*.menu > ul > li > ul > li > ul > li {*/
/*    float: left;*/
/*    width: 100%;*/
/*    padding: 10px;*/
/*}*/

/*.menu > ul > li > ul > li > ul >li a {*/
/*    border: 0;*/
/*    font-size: 13px;*/
/*    font-weight: 400;*/
/*}*/

/*.menu > ul > li > ul.normal-sub {*/
/*    width: 300px;*/
/*    left: auto;*/
/*    padding: 15px 10px;*/
/*    min-height: auto;*/
/*    background-image: none;*/
/*}*/

/*.menu > ul > li > ul.normal-sub > li {*/
/*    width: 100%;*/
/*    padding: 10px 15px;*/
/*    min-height: auto;*/
/*}*/

/*.menu > ul > li > ul.normal-sub >li a {*/
/*    border: 0;*/
/*    font-size: 13px;*/
/*    font-weight: 400;*/
/*}*/

/*.right_bt {*/
/*    float: right;*/
/*    margin-top: 23px;*/
/*}*/

/** social icon **/

/*.social_icons {*/
/*    float: right;*/
/*    margin: 9px 0 0px;*/
/*}*/

/*section .social_icons {*/
/*    width: 100%;*/
/*}*/

/*.social_icons li {*/
/*    display: inline;*/
/*    font-size: 15px;*/
/*    margin-left: 15px;*/
/*}*/

/*.social_icons li {*/
/*    display: inline;*/
/*    font-size: 14px;*/
/*    margin-left: 15px;*/
/*}*/

/*.social_icons li a {*/
/*    color: #222;*/
/*    font-size: 18px;*/
/*}*/

/*.social_icons li a:hover,*/
/*.social_icons li a:focus {*/
/*   color: #0aceb1;*/
/*}*/

/*.logo img {*/
/*    width: 235px;*/
/*    margin: 0;*/
/*}*/


/*------------------------------------------------------------------
        6. main banner
-------------------------------------------------------------------*/

/*.slide_cont {*/
/*    float: left;*/
/*    width: 100%;*/
/*    margin-top: 85px;*/
/*}*/

/*.slide_cont h2 {*/
/*    color: #fff;*/
/*    font-size: 55px;*/
/*    font-weight: 600;*/
/*    line-height: 60px;*/
/*    margin: 0;*/
/*    letter-spacing: -1px;*/
/*    margin-bottom: 30px;*/
/*}*/

/*#banner_parallax p, */
/*#banner_slide p {*/
/*    color: #fff;*/
/*    font-weight: 300;*/
/*    margin-top: 10px;*/
/*    position: relative;*/
/*    left: 0;*/
/*    margin-bottom: 20px;*/
/*    font-size: 16px;*/
/*    line-height: 24px;*/
/*}*/

/*.slide_banner1 {*/
    /*background-image: url('../images/slide1.png');*/
/*    max-height: 560px;*/
/*    position: relative;*/
/*    background-repeat: no-repeat;*/
/*    background-size: auto;*/
/*    background-position: bottom center;*/
/*}*/

/*.slide_pc_img {*/
/*    position: relative;*/
/*    z-index: 1;*/
/*    margin-bottom: -130px;*/
/*}*/

/*.slide_pc_img img {*/
/*    margin-top: 110px;*/
/*    float: left;*/
/*    margin-right: 0;*/
/*    position: relative;*/
/*    right: 150px;*/
/*    margin-bottom: 0;*/
/*}*/

/*#banner_slide .cont_banner_center {*/
/*    position: absolute;*/
/*    top: 0;*/
/*    width: 50%;*/
/*    height: 100%;*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*}*/

/*#banner_slide {*/
/*    position: relative;*/
/*}*/

/*#banner_slide img {*/
/*    width: 100%;*/
/*}*/

/*.home_page1 .slide_cont {*/
/*    margin-top: 135px;*/
/*}*/

/*.home_page1 #banner_slide {*/
/*    margin-bottom: -145px;*/
/*}*/

/*.slide_cont .bt_main {*/
/*    margin-top: 10px;*/
/*}*/

/**-- slide style 2 **/


/*------------------------------------------------------------------
        7. section
-------------------------------------------------------------------*/


/**-- main heading --**/

/*.heading_main {*/
/*    width: 100%;*/
/*    margin: 0 0 65px;*/
/*    letter-spacing: 0;*/
/*}*/

/*.full_heading {*/
/*    width: 100%;*/
/*    margin: 0;*/
/*}*/

/*.heading_style_1 h2::after {*/
/*    width: 110px;*/
/*    background: #ddd;*/
/*    content: "";*/
/*    display: block;*/
/*    margin: 15px 0 30px;*/
/*}*/

/*.white_heading_border h2::after {*/
/*    background: #fff !important;*/
/*}*/

/*.center_head_border h2:after,*/
/*.center_head_border:after {*/
/*    margin-left: auto !important;*/
/*    margin-right: auto !important;*/
/*}*/

/*.color_heading h4 {*/
/*    color: #1e72bc;*/
/*}*/

/*.double_line_heading h2 {*/
/*    line-height: 45px;*/
/*}*/

/*h3.heading_2 {*/
/*    font-size: 42px;*/
/*    text-transform: none;*/
/*    font-weight: 500;*/
/*    color: #32414d;*/
/*    letter-spacing: -0.5px;*/
/*    line-height: 42px;*/
/*    margin-bottom: 20px;*/
/*}*/

/*.feature_information p {*/
/*    font-size: 16px;*/
/*    line-height: 21px;*/
/*}*/

/**-- contant section --**/

/*.theme_bg {*/
    /*background-image: url('../images/bg_layout.png');*/
/*    background-size: cover;*/
/*    min-height: 650px;*/
/*    background-position: center;*/
/*}*/

/*.layout_screen {*/
/*    left: -150px;*/
/*    position: relative;*/
/*}*/

/*.cross_layout {*/
/*    position: relative;*/
/*}*/

/*.feature_box {*/
/*    min-height: 315px;*/
/*    padding: 45px 0 30px;*/
/*    margin-bottom: 30px;*/
/*    box-shadow: 0 20px 35px -20px rgba(0, 0, 0, 0.2);*/
/*}*/

/*.app-features li {*/

/*    padding-left: 100px;*/
/*    position: relative;*/
/*    margin: 25px 0 0;*/
/*    float: left;*/
/*    border-bottom: dotted 1px #ddd;*/
/*    padding-bottom: 25px;*/

/*}*/

/*.app-features li > i {*/
/*    position: absolute;*/
/*    left: 0;*/
/*    width: 90px;*/
/*    height: 90px;*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    border-radius: 100px;*/
/*    background: #fff;*/
/*    font-size: 35px;*/
/*    font-weight: 500;*/
/*    transition: ease all 0.5s;*/
/*    top: 0;*/
/*    border: solid #0aceb1 2px;*/
/*    color: #0aceb1;*/
/*}*/

/*.app-features ul li:last-child {*/
/*    border-bottom: none;*/
/*}*/

/*.app-features li:hover > i,*/
/*.app-features li:focus > i {*/
/*    background: #1e72bc;*/
/*    border-color: #1e72bc;*/
/*    color: #fff;*/
/*}*/

/*.app-features h4 {*/
/*    text-transform: none;*/
/*    font-weight: 500;*/
/*    color: #666;*/
/*    margin-top: 10px;*/
/*    margin-bottom: 10px;*/
/*}*/

/*.gradiant_bg {*/
    /*background: url('../images/bg_gradinat.png');*/
/*    min-height: 420px;*/
/*    background-position: center center;*/
/*    background-size: cover;*/
/*}*/

/*.cross_layout {*/
/*    position: relative;*/
/*    overflow: hidden;*/
/*}*/

/*section.cross_layout {*/
/*    padding-top: 140px;*/
/*    padding-bottom: 70px;*/
/*}*/
/*section.cross_layout1 {*/
/*    padding-top: 40px;*/
/*    padding-bottom: 40px;*/
/*}*/

/*section.cross_layout2 {*/
/*    padding-top: 250px;*/
/*    padding-bottom: 70px;*/
/*}*/

/*.cross_layout::before {*/
/*    content: "";*/
/*    width: 100%;*/
/*    height: 120px;*/
    /*background: url('../images/top_layer.png');*/
/*    display: block;*/
/*    position: absolute;*/
/*    top: 0;*/
/*    background-size: 100% 100%;*/
/*}*/

/*.cross_layout::after {*/
/*    content: "";*/
/*    width: 100%;*/
/*    height: 120px;*/
    /*background: url('../images/bottom_layer.png');*/
/*    display: block;*/
/*    position: absolute;*/
/*    bottom: 0;*/
/*    background-size: 100% 100%;*/
/*}*/

/*.cont_theme_blog h3 {*/
/*    text-transform: uppercase;*/
/*    background: linear-gradient(to right, #1e72bc 0%, #30CFD0 100%);*/
/*    background: -webkit-linear-gradient(to right, #1e72bc 0%, #30CFD0 100%);*/
/*    background: -moz-linear-gradient(to right, #1e72bc 0%, #30CFD0 100%);*/
/*    background: -ms-linear-gradient(to right, #1e72bc 0%, #30CFD0 100%);*/
/*    background: -o-linear-gradient(to right, #1e72bc 0%, #30CFD0 100%);*/
/*    -webkit-background-clip: text;*/
/*    -webkit-text-fill-color: transparent;*/
/*    text-transform: none;*/
/*    font-size: 55px;*/
/*    line-height: 60px;*/
/*    font-weight: 400;*/
/*    margin-top: 50px;*/
/*    margin-bottom: 20px;*/
/*}*/

/*.cont_theme_blog p {*/
/*    font-size: 17px;*/
/*    line-height: normal;*/
/*    margin-top: 25px;*/
/*}*/

/*------------------------------------------------------------------
        8. price table
-------------------------------------------------------------------*/

/*.table_price {*/
/*    float: left;*/
/*    width: 100%;*/
/*    background: #fff;*/
/*    padding: 0 0 40px 0;*/
/*    box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.3);*/
/*    border: solid #fff 15px;*/
/*}*/

/*.table_price_head {*/
/*    background: #30CFD0;*/
/*    min-height: 80px;*/
/*}*/

/*.active_price .table_price_head {*/
/*    background: #1e72bc;*/
/*}*/

/*.table_price_head h5 {*/
/*    font-weight: 600;*/
/*    font-size: 21px;*/
/*    line-height: 80px;*/
/*    color: #fff;*/
/*}*/

/*.table_price_per {*/
/*    min-height: 122px;*/
/*    padding: 47px 0 0;*/
/*}*/

/*.table_price_per p {*/
/*    font-size: 45px;*/
/*    color: #1e72bc;*/
/*    font-weight: 600;*/
/*}*/

/*.table_price_per p small {*/
/*    font-size: 16px;*/
/*}*/

/*.table_price_cont_bottm {*/
/*    padding: 0 45px;*/
/*}*/

/*.table_price_cont_bottm ul {*/
/*    border-top: solid #ebebeb 2px;*/
/*    float: left;*/
/*    width: 100%;*/
/*    padding: 25px 0;*/
/*}*/

/*.table_price_cont_bottm ul li {*/
/*    float: left;*/
/*    width: 100%;*/
/*    font-size: 16px;*/
/*    color: #333;*/
/*    line-height: normal;*/
/*    margin: 6px 0;*/
/*}*/

/*.table_price_bottm {*/
/*    float: left;*/
/*    width: 100%;*/
/*    justify-content: center;*/
/*    display: flex;*/
/*}*/


/*------------------------------------------------------------------
        9. team section
-------------------------------------------------------------------*/

/*.team_imform p {*/
/*    margin: 0;*/
/*    text-align: center;*/
/*    color: #000;*/
/*    font-weight: 400;*/
/*}*/

/*.team_imform p.team_mem_name {*/
/*    color: #1e72bc;*/
/*    font-weight: 500;*/
/*    font-size: 18px;*/
/*    margin-bottom: 5px;*/
/*}*/

/*.team_imform {*/
/*    margin: 30px 0;*/
/*}*/


/*------------------------------------------------------------------
        10. blog section
-------------------------------------------------------------------*/

/*.blog_section {*/
/*    background: #fff;*/
/*    box-shadow: 0 20px 35px -25px rgba(0, 0, 0, 0.4);*/
/*    margin-top: 10px;*/
/*}*/

/*.white_bg .blog_section {*/
/*    padding: 15px 0;*/
/*}*/

/*.blog_feature_cantant {*/
/*    padding: 30px 25px 20px;*/
/*}*/

/*.blog_feature_cantant .blog_head {*/
/*    font-size: 18px;*/
/*    color: #000;*/
/*    font-weight: 400;*/
/*}*/

/*.post_info {*/
/*    color: #000;*/
/*    font-size: 14px;*/
/*    margin-bottom: 10px;*/
/*    width: 100%;*/
/*}*/

/*.post_info ul li {*/
/*    display: inline;*/
/*    margin-right: 10px;*/
/*    color: #555;*/
/*    font-size: 14px;*/
/*}*/

/*.blog_feature_cantant p {*/
/*    color: #555555;*/
/*}*/

/*.post_info ul li i {*/
/*    color: #1e72bc;*/
/*}*/


/*------------------------------------------------------------------
        11. contact section
-------------------------------------------------------------------*/

/*.contact_section {*/
    
/*	background-image: url('../img/cu.png');*/
/*    height: auto;*/
/*    position: relative;*/
/*    background-repeat: no-repeat;*/
/*    background-size: cover;*/
/*    background-position: bottom center;*/
/*}*/

/*.contact_section1 {*/
    
/*	background-image: url('../img/mobcontact.jpg');*/
/*    height: auto;*/
/*    position: relative;*/
/*    background-repeat: no-repeat;*/
/*    background-size: cover;*/
/*    background-position: bottom center;*/
/*}*/

/*.contact_form {*/
/*    min-height: 600px;*/
/*    padding: 80px 70px;*/
/*    background-size: cover;*/
/*}*/

/*.contact_form.contact_inform {*/
/*    min-height: auto;*/
/*    float: left;*/
/*    width: 100%;*/
/*}*/

/*.contact_form_inner {*/
/*    max-width: 430px;*/
/*}*/

/*.contact_form p {*/
/*    color: #fff;*/
/*}*/

/*.contact_form.contact_inform p.inform_label {*/
/*    color: #898989;*/
/*    text-transform: uppercase;*/
/*    font-weight: normal;*/
/*    margin: 0;*/
/*}*/

/*.contact_form.contact_inform p.inform_cont {*/
/*    font-size: 18px;*/
/*    color: #000;*/
/*}*/

/*.contact_form_layout .contact_form {*/
/*    padding: 0;*/
/*    margin-top: 10px;*/
/*}*/

/*.contact_form_layout .field input {*/
/*    border: solid #e1e1e1 1px;*/
/*    height: 45px;*/
/*}*/

/*.contact_form_layout .field textarea {*/
/*    border: solid #e1e1e1 1px;*/
/*    height: 160px;*/
/*    padding: 15px 30px;*/
/*}*/

/*.contact_form_layout .contact_form {*/
/*    min-height: auto;*/
/*}*/

/*.golde_yellow_theme .dark_footer .footer_bottom div.center ul li {*/
/*    margin: 0 10px;*/
/*}*/



/**-- map --**/

/*#map {*/
/*    height: 100%;*/
/*    min-height: 790px;*/
/*}*/


/**-- form --**/

/*.field input {*/
/*    width: 100%;*/
/*    margin-top: 10px;*/
/*    border: none;*/
/*    min-height: 45px;*/
/*    padding: 0 25px;*/
/*    line-height: 45px;*/
/*    font-size: 14px;*/
/*}*/

/*.field textarea {*/
/*    width: 100%;*/
/*    margin-top: 10px;*/
/*    border: none;*/
/*    font-size: 14px;*/
/*    min-height: 100px;*/
/*    padding: 30px 25px;*/
/*}*/


/*------------------------------------------------------------------
        12. footer
-------------------------------------------------------------------*/

/*.footer_style_2*/
/*{*/
/*    left: 0;*/
/*    bottom: 0;*/
/*    width: 100%;*/
/*    height: 80px;*/
/*}*/
/*footer {*/
    
/*	background-color:#8AB77D;*/
/*}*/

/*.footer_logo {*/
/*    text-align: center;*/
/*    margin-bottom: 50px;*/
/*}*/

/*.footer_top {*/
/*    padding-bottom: 50px;*/
/*}*/

/*.footer_blog {*/
/*    display: flex;*/
/*}*/

/*.footer_icon {*/
/*    margin-right: 15px;*/
/*}*/

/*.footer_cont h4 {*/
/*    font-size: 18px;*/
/*    color: #000;*/
/*    font-weight: 400;*/
/*    text-transform: none;*/
/*    margin: 0 0 7px 0;*/
/*}*/

/*.footer_blog_2 h3 {*/
/*    font-weight: 500;*/
/*    font-size: 24px;*/
/*    text-transform: none;*/
/*    margin: 0 0 25px 0;*/
/*    line-height: 30px;*/
/*}*/

/*.footer_cont p {*/
/*    color: #555555;*/
/*    line-height: 20px;*/
/*    font-size: 14px;*/
/*}*/

/*.footer_bottom {*/
/*    min-height: 50px;*/
/*    text-align: center;*/
/*    line-height: 50px;*/
/*    background: #79676a;*/
/*}*/

/*.footer_bottom p {*/
/*    margin: 0;*/
/*    line-height: 50px;*/
/*    color: #fff;*/
/*    text-align: center !important;*/
/*    padding: 0;*/
/*}*/

/*.footer_bottom p strong {*/
/*    color: #fff;*/
/*    font-weight: 500;*/
/*}*/

/*.footer-links {*/
/*    list-style: none;*/
/*    padding: 0;*/
/*}*/

/*.footer-links li {*/
/*    margin-bottom: 20px;*/
/*    display: block;*/
/*    width: 100%;*/
/*    border-bottom: 1px dashed rgba(0, 0, 0, 0.3);*/
/*    padding-bottom: 20px;*/
/*}*/

/*.footer-links li:last-child {*/
/*    border-bottom: none;*/
/*}*/

/*.footer-links a {*/
/*    color: #999;*/
/*}*/

/*.footer-links a:hover, .footer a:hover {*/
/*    color: #1e72bc !important;*/
/*}*/

/*.footer-links a i {*/
/*    font-size: 20px;*/
/*    position: relative;*/
/*    top: 1px;*/
/*    margin-right: 15px;*/
/*}*/

/*.blog_post_footer {*/
/*    display: flex;*/
/*    margin-bottom: 15px;*/
/*}*/

/*.blog_post_footer .blog_post_img {*/
/*    margin-right: 20px;*/
/*}*/

/*.blog_post_cont {*/
/*    padding: 8px 0;*/
/*}*/

/*.date {*/
/*    font-size: 12px;*/
/*    color: #999;*/
/*    margin: 0;*/
/*    font-weight: 500;*/
/*}*/

/*.post_head {*/
/*    color: #333;*/
/*    font-size: 14px;*/
/*    line-height: 16px;*/
/*    font-weight: 400;*/
/*    margin-top: 5px;*/
/*    margin-bottom: 0;*/
/*}*/



/**== dark footer ==**/

/*.dark_footer {*/
/*    background: #1f222a;*/
/*}*/

/*.dark_footer h3 {*/
/*    color: #fff !important;*/
/*}*/

/*.dark_footer .post_head {*/
/*    color: #fff !important;*/
/*}*/

/*.dark_footer .footer_bottom strong {*/
/*    color: #fff !important;*/
/*}*/

/*.dark_footer .footer_bottom {*/
/*    border-color: rgba(255, 255, 255, 0.10);*/
/*}*/


/*------------------------------------------------------------------
	13. brand logo 
-------------------------------------------------------------------*/

/*.brand_logo_section {*/
/*    padding-top: 50px;*/
/*    padding-bottom: 50px;*/
/*}*/

/*.brand_logo_section li {*/
/*    width: 16.66%;*/
/*    float: left;*/
/*    text-align: center;*/
/*    align-items: center;*/
/*    display: flex;*/
/*    min-height: 100px;*/
/*    justify-content: center;*/
/*}*/

/*.brand_logo_section img {*/
/*    width: auto;*/
/*}*/


/*------------------------------------------------------------------
	14. portfolio 
-------------------------------------------------------------------*/

/*.portfolia_blog_style1 {*/
/*    position: relative;*/
/*}*/

/*.portfolia_img img {*/
/*    width: 100%;*/
/*}*/

/*.portfolia_blog_style1 .portfolia_cont {*/
/*    position: absolute;*/
/*    top: 0;*/
/*    width: 100%;*/
/*    text-align: center;*/
/*    height: 100%;*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    background-color: rgba(0, 0, 0, .7);*/
/*    transform: scale(0);*/
/*    transition: ease all 0.3s;*/
/*    opacity: 0;*/
/*    overflow: hidden;*/
/*}*/

/*.portfolia_blog_style1:hover .portfolia_cont,*/
/*.portfolia_blog_style1:focus .portfolia_cont {*/
/*    transform: scale(1);*/
/*    opacity: 1;*/
/*}*/

/*.portfolia_cont p {*/
/*    color: #fff;*/
/*    font-size: 16px;*/
/*    padding: 0 45px;*/
/*    line-height: normal;*/
/*}*/

/** pagination **/

/*.pagination_section {*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    margin-top: 5px;*/
/*}*/

/*ul.pagination .page-item a {*/
/*    height: 40px;*/
/*    font-size: 12px;*/
/*    text-transform: uppercase;*/
/*    font-weight: 500;*/
/*    line-height: 40px;*/
/*    padding: 0;*/
/*    min-width: 40px;*/
/*    text-align: center;*/
/*    color: #898989;*/
/*}*/

/*ul.pagination li.page-item:first-child .page-link,*/
/*ul.pagination li.page-item:last-child .page-link {*/
/*    border-radius: 0;*/
/*    padding: 0 20px;*/
/*    background: #f8f8f8;*/
/*}*/

/*ul.pagination li.page-item.active .page-link {*/
/*    background: #ffb125;*/
/*    color: #fff;*/
/*    border-color: #ffb125;*/
/*}*/


/** imformation blog **/


/*.imf_icon img {*/
/*    width: 125px;*/
/*    height: 125px;*/
/*}*/

/*.imf_icon {*/
/*    width: 120px;*/
/*    height: 120px;*/
/*    text-align: center;*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    border-radius: 100%;*/
    
/*    margin: -120px auto 20px;*/
/*    padding: 25px;*/
/*    background: #fff;*/
/*}*/

/*.information_blogs {*/
/*    background: #eaeaea;*/
/*    padding: 40px 40px;*/
/*    text-align: center;*/
/*    margin-top: 65px;*/
/*    height: 250px;*/
/*	padding-left: 0px;*/
/*    padding-right: 0px;*/
/*}*/

/*.information_blogs h3 {*/
/*    font-size: 24px;*/
/*    font-weight: 300;*/
/*    text-transform: none;*/
/*    margin-bottom: 15px;*/
/*}*/
/*.information_blogs_white_left {*/
/*    background: #ffffff;*/
/*    padding: 40px 40px;*/
/*    text-align: center;*/
/*    margin-top: 85px;*/
/*	margin-bottom: 50px;*/
/*	margin-left: 38px;*/
/*	margin-right: 30px;*/
/*    height: 290px;*/
/*	padding-left: 0px;*/
/*    padding-right: 0px;*/
/*}*/

/*.information_blogs_white_left h3 {*/
/*    font-size: 24px;*/
/*    font-weight: 300;*/
/*    text-transform: none;*/
/*    margin-bottom: 15px;*/
/*}*/
/*.information_blogs_white_right {*/
/*    background: #ffffff;*/
/*    padding: 40px 40px;*/
/*    text-align: center;*/
/*    margin-top: 100px;*/
/*	margin-bottom: 100px;*/
/*	margin-left: 25px;*/
/*	margin-right: 150px;*/
/*    height: 225px;*/
/*	padding-left: 0px;*/
/*    padding-right: 0px;*/
/*}*/

/*.information_blogs_white_right h3 {*/
/*    font-size: 24px;*/
/*    font-weight: 300;*/
/*    text-transform: none;*/
/*    margin-bottom: 15px;*/
/*}*/

/*.inner_page_banner + .layout_padding {*/
/*    padding-top: 0 !important;*/
/*}*/

/**-- step section --**/


/*.step_inner {*/
/*    width: 100%;*/
/*    position: relative;*/
/*}*/

/*.step_inner p {*/
/*    font-size: 21px;*/
/*    margin: 20px 0 0 0;*/
/*    font-weight: 400;*/
/*    position: relative;*/
/*    color: #fff;*/
/*    letter-spacing: -0.5px;*/
/*    text-align: center;*/
/*}*/

/*.step_inner i {*/
/*    font-size: 65px;*/
/*    margin-bottom: 0;*/
/*    color: #fff;*/
/*    position: relative;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    line-height: normal;*/
/*    text-align: center;*/
/*}*/

/*.step_blog {*/
/*    margin-bottom: 35px;*/
/*}*/

/*.scren {*/
/*    float: left;*/
/*    width: 25%;*/
/*}*/


/*.bg-grey{background-color:#eaeaea;}*/



/*.flip-card {*/
/*  background: #eaeaea;*/
/*  width: 100%;*/
/*  height: 300px;*/
/*  perspective: 1000px;*/
/*}*/

/*.flip-card-inner {*/
/*  position: relative;*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  text-align: center;*/
/*  transition: transform 0.6s;*/
/*  transform-style: preserve-3d;*/
 
/*}*/

/*.flip-card:hover .flip-card-inner {*/
/* transform: rotateY(180deg);*/
/*  background: #ffffff !important;*/
/*}*/

/*.flip-card-front, .flip-card-back {*/
/*  background: #eaeaea;*/
/*  position: absolute;*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  -webkit-backface-visibility: hidden;*/
/*  backface-visibility: hidden;*/
/*  -webkit-perspective: 0;*/
/*  -webkit-transform: translate3d(0,0,0);*/
/*	visibility:visible;*/
/*	padding:10px;*/
  
/*}*/

/*.flip-card-front {*/
/*  color: black;*/
/*}*/

/*.flip-card-back {*/
 
/*  color: #000000;*/
/*  transform: rotateY(180deg);*/
/*}*/

/*.pad{padding: 20px 20px 20px 20px;}*/

/*.logo-alignment{float:left;}*/

/*.carousel-control.left {background-image:none !important}*/
/*.carousel-control.right {background-image:none !important}*/
/* On screens that are 992px or less, set the background color to blue */
/*@media screen and (max-width: 992px) {*/
/*  .pad {*/
/*       padding: 20px 20px 20px 20px;*/
/*  }*/
/*}*/

/* On screens that are 600px or less, set the background color to olive */
/*@media screen and (max-width: 600px) {*/
/*  .pad {*/
/*       padding: 20px 50px 20px 50px !important;*/
/*  }*/
/*  .information_blogs_white_left {*/
/*    background: #ffffff;*/
/*    padding: 40px 40px;*/
/*    text-align: center;*/
/*    margin-top: 100px;*/
/*    margin-bottom: 20px;*/
/*    margin-left: 20px;*/
/*    margin-right: 20px;*/
/*    height: 345px !important;*/
/*}*/
/*.information_blogs_white_right {*/
/*    background: #ffffff;*/
/*    padding: 40px 40px;*/
/*    text-align: center;*/
/*    margin-top: 100px;*/
/*    margin-bottom: 20px;*/
/*    margin-left: 20px;*/
/*    margin-right: 20px;*/
/*    height: 310px !important;*/
/*}*/

/*.logo-alignment{text-align: center !important; margin-left: 30%;}*/
/*}*/


/*.field1 input {*/
/*    width: 100%;*/
/*    margin-top: 10px;*/
/*    min-height: 45px;*/
/*    padding: 0 25px;*/
/*    line-height: 45px;*/
/*    font-size: 14px;*/
/*    margin-bottom: 15px;*/
/*}*/

/*.newspaper {*/
/*  column-count: 3;*/
/*  column-gap: 40px;*/
/*}*/

/*.five-column {*/
/*  column-count: 5;*/
/*  column-gap: 20px;*/
/*}*/

/*.alice-carousel ul li img{*/
/*  height: 400px;*/
/*  width: 100%;*/
/*  object-fit: cover;*/
/*}*/

/*.searchTerm {*/
/*  width: 100%;*/
/*  border: 3px solid #eaeaea;*/
/*  border-right: none;*/
/*  padding: 5px;*/
/*  height: 40px;*/
/*  margin-top:5px;*/
/*  outline: none;*/
/*  background-color: #eaeaea;*/
/*}*/

/*.searchTerm:focus{*/
/*  color: #f96495;*/
/*}*/

/*.searchButton {*/
/*  width: 40px;*/
/*  height: 40px;*/
/*  border: 1px solid #f96495;*/
/*  background: #f96495;*/
/*  text-align: center;*/
/*  color: #fff;*/
/*  border-radius: 0 5px 5px 0;*/
/*  cursor: pointer;*/
/*  font-size: 14px;*/
/*   margin-top:5px;*/
/*}*/
/*.searchButton1 {*/
/*    width: 100%;*/
/*    height: 40px;*/
/*    border: 1px solid #f96495;*/
/*    background: #f96495;*/
/*    text-align: center;*/
/*    color: #fff;*/
/*    border-radius: 5px 0 0 5px;*/
/*    cursor: pointer;*/
/*    font-size: 14px;*/
/*	 margin-top:5px;*/
/*}*/
/*.blink{*/
/*    color:red;*/
/*    font-size: 11px;*/
/*}*/

/*.listing_product {*/
    
/*	background-image: url('../img/dw.jpg');*/
/*    height: 360px;*/
/*    position: relative;*/
/*    background-repeat: no-repeat;*/
/*    background-size: cover;*/
/*    background-position: bottom center;*/
/*    margin-top: 112px;*/
/*}*/

/*.listing_product1 {*/
/*    height: 360px;*/
/*    position: relative;*/
/*    background-repeat: no-repeat;*/
/*    background-size: cover;*/
/*    background-position: bottom center;*/
/*    margin-top: 112px;*/
/*}*/

/*.third-column {*/
/*    column-count: 3;*/
/*    column-gap: 30px;*/
/*  }*/

/*  .newspaper {*/
/*    column-count: 7;*/
/*    column-gap: 10px;*/
/*    margin-top: -13px;*/
/*    margin-bottom: 17px;*/
/*  }*/
/*  .parent1 {*/
/*    display: block;*/
/*    position: relative;*/
/*    z-index: 1;*/
/*}*/
/*.parent1 a{*/
/*    color: #FFFFFF;text-decoration: none;*/
/*}*/
/*.parent1:hover > ul {*/
/*    display:block;position:absolute;*/
/*}*/
/*.child1 {*/
/*    display: none;*/
/*}*/
/*.child1 li {*/
  
/*    background-color: #ffffff;*/
/*    line-height: 30px;*/
/*     width:135px;}*/
/*.child1 li a{color: #000000;}*/
/*ul{list-style: none;*/
/*    margin: 0;padding: 0px;*/
/*     min-width:10em;}*/
/*ul ul ul{left: 100%;*/
/*    top: 0;*/
/*    margin-left:1px;}*/
{/*li:hover {background-color: #95B4CA;}*/}
/*.parent li:hover {background-color: #ccc;}*/
/*.expand1{font-size:12px;float:right;margin-right:5px;}*/


/*.dropdown3 {*/
/*    position: relative;*/
/*    display: inline-block;*/
/*  }*/
  
/*  .dropdown-content3 {*/
/*    display: none;*/
/*    position: absolute;*/
/*    background-color: white;*/
/*    width: 175px;*/
/*    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);*/
/*    padding: 12px 16px;*/
/*    z-index: 3;*/
/*    margin-left: 20px;*/
  
/*  }*/

/*  .dropdown3:hover .dropdown-content3 {*/
/*    display: block;*/
/*  }*/

  
/*.dropdown2 {*/
/*    position: relative;*/
/*    display: inline-block;*/
/*  }*/
  
/*  .dropdown-content2 {*/
/*    display: none;*/
/*    position: absolute;*/
/*    background-color: white;*/
/*    width: 400px;*/
/*    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);*/
/*    padding: 12px 16px;*/
/*    z-index: 3;*/
/*    margin-left: -230px;*/
  
/*  }*/

/*  .dropdown2:hover .dropdown-content2 {*/
/*    display: block;*/
/*  }*/

/*  @media (min-width: 768px){*/
/*    .seven-cols .col-md-1,*/
/*    .seven-cols .col-sm-1,*/
/*    .seven-cols .col-lg-1  {*/
/*      width: 100%;*/
/*      *width: 100%;*/
/*    }*/
/*  }*/
  
/*  @media (min-width: 992px) {*/
/*    .seven-cols .col-md-1,*/
/*    .seven-cols .col-sm-1,*/
/*    .seven-cols .col-lg-1 {*/
/*      width: 14.285714285714285714285714285714%;*/
/*      *width: 14.285714285714285714285714285714%;*/
/*    }*/
/*  }*/
  
  /**
   *  The following is not really needed in this case
   *  Only to demonstrate the usage of @media for large screens
   */    
/*  @media (min-width: 1200px) {*/
/*    .seven-cols .col-md-1,*/
/*    .seven-cols .col-sm-1,*/
/*    .seven-cols .col-lg-1 {*/
/*      width: 14.285714285714285714285714285714%;*/
/*      *width: 14.285714285714285714285714285714%;*/
/*    }*/
/*  }*/

/*  .fa-stack[data-count]:after{*/
/*  position:absolute;*/
/*  right:0%;*/
/*  top:0%;*/
/*  content: attr(data-count);*/
/*  font-size:40%;*/
/*  padding:.6em;*/
/*  border-radius:999px;*/
/*  line-height:.75em;*/
/*  color: white;*/
/*  color:#111111;*/
/*  text-align:center;*/
/*  min-width:2em;*/
/*  font-weight:bold;*/
/*  background: white;*/
/*  border-style:solid;*/
/*}*/
/*.fa-circle {*/
/*  color:#111111;*/
/*}*/

/*.red-cart {*/
/*	color: #111111; background:white;*/
/*}*/

/*.example {*/
/*    position: relative;*/
/*    padding: 0;*/
/*    width: 350px;*/
/*    display: block;*/
/*    cursor: pointer;*/
/*    overflow: hidden;*/
/*  }*/
/*  .content {*/
/*    opacity: 0;*/
/*    font-size: 20px;*/
/*    position: absolute;*/
/*    top: 0px;*/
/*    left: 0;*/
/*    color: #1c87c9;*/
/*    background-color: rgba(200, 200, 200, 0.5);*/
/*    width: 350px;*/
/*    height: 350px;*/
/*    -webkit-transition: all 400ms ease-out;*/
/*    -moz-transition: all 400ms ease-out;*/
/*    -o-transition: all 400ms ease-out;*/
/*    -ms-transition: all 400ms ease-out;*/
/*    transition: all 400ms ease-out;*/
/*    text-align: center;*/
/*  }*/
/*  .example .content:hover {*/
/*    opacity: 1;*/
/*  }*/
/*  .example .content .text {*/
/*    height: 0;*/
/*    opacity: 1;*/
/*    transition-delay: 0s;*/
/*    transition-duration: 0.4s;*/
/*  }*/
/*  .example .content:hover .text {*/
/*    opacity: 1;*/
/*    transform: translateY(250px);*/
/*    -webkit-transform: translateY(250px);*/
/*  }*/



  /* relevant styles */
/*.img__wrap {*/
/*    position: relative;*/
/*    height: 300px;*/
/*    width: 300px;*/
/*  }*/
  
/*  .img__description_layer {*/
/*    position: absolute;*/
/*    top: 0;*/
/*    bottom: 0;*/
/*    left: 0;*/
/*    right: 0;*/
/*    background: rgba(23,35,51,.6);*/
/*    color: #f96495;*/
/*    visibility: hidden;*/
/*    opacity: 0;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
  
    /* transition effect. not necessary */
/*    transition: opacity .2s, visibility .2s;*/
/*  }*/
  
/*  .img__wrap:hover .img__description_layer {*/
/*    visibility: visible;*/
/*    opacity: 1;*/
/*  }*/
  
/*  .img__description {*/
/*    transition: .2s;*/
/*    transform: translateY(1em);*/
/*  }*/
  
/*  .img__wrap:hover .img__description {*/
/*    transform: translateY(0);*/
/*  }*/


/*  .img__wrap1 {*/
/*    position: relative;*/
/*    height: 550px;*/
/*    width: 380px;*/
/*  }*/
  
/*  .img__description_layer1 {*/
/*    position: absolute;*/
/*    top: 0;*/
/*    bottom: 0;*/
/*    left: 0;*/
/*    right: 0;*/
/*    background: rgba(23,35,51,.6);*/
/*    color: #f96495;*/
/*    visibility: hidden;*/
/*    opacity: 0;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
  
    /* transition effect. not necessary */
/*    transition: opacity .2s, visibility .2s;*/
/*  }*/
  
/*  .img__wrap1:hover .img__description_layer1 {*/
/*    visibility: visible;*/
/*    opacity: 1;*/
/*  }*/
  
/*  .img__description1 {*/
/*    transition: .2s;*/
/*    transform: translateY(1em);*/
/*  }*/
  
/*  .img__wrap1:hover .img__description1 {*/
/*    transform: translateY(0);*/
/*  }*/

/*  .f14{*/
/*      font-size: 14px;*/
/*  }*/

/*  .loading {*/
/*	width: 100%;*/
/*	text-align: center;*/
/*	vertical-align: center;*/
/*	z-index: 9999;*/
/*	opacity: 10;*/
/*}*/
/*.overlay {*/
/*    background: #e9e9e9;*/
/*    position: absolute;   */
/*    top: 0;              */
/*    right: 0;              */
/*    bottom: 0;*/
/*    left: 0;*/
/*    opacity: 0.5;*/
/*}*/
/*#overlay {*/
/*    position: fixed;*/
/*    top:0; */
/*    left: 0; */
/*    z-index:9999;padding-top: 10px;*/
/*  }*/

/*#cover-spin {*/
/*    position:fixed;*/
/*    width:100%;*/
/*    left:0;right:0;top:0;bottom:0;*/
/*    background-color: rgba(255,255,255,0.7);*/
/*    z-index:9999;*/
/*}*/

/*@-webkit-keyframes spin {*/
/*	from {-webkit-transform:rotate(0deg);}*/
/*	to {-webkit-transform:rotate(360deg);}*/
/*}*/

/*@keyframes spin {*/
/*	from {transform:rotate(0deg);}*/
/*	to {transform:rotate(360deg);}*/
/*}*/

/*#cover-spin::after {*/
/*    content:'';*/
/*    display:block;*/
/*    position:absolute;*/
/*    left:48%;top:40%;*/
/*    width:40px;height:40px;*/
/*}*/

/*.column {*/
/*    float: left;*/
/*    width: 20%;*/
/*  }*/
/*  .column1 {*/
/*    float: left;*/
/*    width: 33.33%;*/
/*  }*/

/*.pl-40{*/
/*    padding-left: 40px;*/
/*    padding-right: 40px;*/
/*}*/
/*.example1{*/
/*    position: relative;*/
/*    padding: 0;*/
/*    width: 550px;*/
/*    display: block;*/
/*    cursor: pointer;*/
/*    overflow: hidden;*/
/*    border-radius: 40px;*/
/*    border:2px solid black;*/
/*}*/

/*form.example1 input[type=text] {*/
/*    padding: 10px;*/
/*    font-size: 17px;*/
/*    border: 1px solid grey;*/
/*    float: left;*/
/*    width: 90%;*/
/*    background: #f1f1f1;*/
/*  }*/
  
/*  form.example1 button {*/
/*    float: left;*/
/*    width: 10%;*/
/*    padding: 10px;*/
/*    background: #8AB77D;*/
/*    color: white;*/
/*    font-size: 17px;*/
/*    border: 1px solid grey;*/
/*    border-left: none;*/
/*    cursor: pointer;*/
/*  }*/
  
/*  form.example1 button:hover {*/
/*    background: #8AB77D;*/
/*  }*/
  
/*  form.example1::after {*/
/*    content: "";*/
/*    clear: both;*/
/*    display: table;*/
/*  }*/

/*  .third-c {*/
/*    column-count: 3;*/
/*    column-gap: 10px;*/
/*  }*/
  
/*  .margin_25px*/
/*  {*/
/*      margin-left: -34px;*/
/*  }*/
/*  .redData{*/
/*    border: 1px solid red;*/
/*  }*/

/*  .transparent {*/
/*    background-color: transparent !important;*/
/*    box-shadow: inset 0px 1px 0 rgba(0,0,0,.075);*/
/* }*/
/* .left-border-none {*/
/*    border-left:none !important;*/
/*    box-shadow: inset 0px 1px 0 rgba(0,0,0,.075);*/
/* }*/

/* .marginTopData{*/
/*    margin-top: -28px;*/
/*  }*/
/*  .locButton{*/
/*    margin-top: 20px;*/
/*    background-color: rgb(138, 183, 125);*/
/*    width: 145px;*/
/*    height: 36px;*/
/*    padding: 8px;*/
/*    border-radius: 23px;*/
/*}*/
/*.vendor{*/
    
/*        background-repeat: no-repeat;*/
/*        background-attachment: fixed;*/
/*        background-position: center;*/
/*        background-size: cover;*/
/*        width:100%;*/
/*        height:700px;*/
/*        justify-content: center;*/
/*        align-items: center;*/
/*        padding: 15px;*/
/*        justify-content: center;*/
/*        align-items: center;*/
/*        display: -webkit-flex;*/
/*        display: flex;*/
/*        flex-wrap: wrap;*/
/*}*/
/*.login-center{*/
/*    position: absolute;*/
/*    right: 0;*/
/*    margin: 20px;*/
/*    max-width: 300px;*/
/*    padding: 16px;*/
/*    background-color: white;*/
/*  }*/




  
/*//////////////////////////////////////////////////////////////////
[ login ]*/

/*.limiter {*/
/*    width: 100%;*/
/*    margin: 0 auto;*/
/*  }*/
  
/*  .container-login100 {*/
/*    width: 100%;  */
/*    min-height: 100vh;*/
/*    display: -webkit-box;*/
/*    display: -webkit-flex;*/
/*    display: -moz-box;*/
/*    display: -ms-flexbox;*/
/*    display: flex;*/
/*    flex-wrap: wrap;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    padding: 15px;*/
  
/*    background-repeat: no-repeat;*/
/*    background-position: center;*/
/*    background-size: cover;*/
/*    position: relative;*/
/*    z-index: 1;  */
/*  }*/
  
/*  .container-login100::before {*/
/*    content: "";*/
/*    display: block;*/
/*    position: absolute;*/
/*    z-index: -1;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    top: 0;*/
/*    left: 0;*/
/*    background-color: rgba(255,255,255,0.9);*/
/*  }*/
  
/*  .wrap-login100 {*/
/*    width: 500px;*/
/*    border-radius: 10px;*/
/*    overflow: hidden;*/
/*    padding: 55px 55px 37px 55px;*/
  
/*    background: #8AB77D;*/
/*  }*/
  
  
  /*------------------------------------------------------------------
  [ Form ]*/
  
/*  .login100-form {*/
/*    width: 100%;*/
/*  }*/
  
/*  .login100-form-logo {*/
/*    font-size: 60px; */
/*    color: #333333;*/
  
/*    display: -webkit-box;*/
/*    display: -webkit-flex;*/
/*    display: -moz-box;*/
/*    display: -ms-flexbox;*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    width: 120px;*/
/*    height: 120px;*/
/*    margin: 0 auto;*/
/*  }*/
  
/*  .login100-form-title {*/
/*    font-family: Poppins-Medium;*/
/*    font-size: 30px;*/
/*    color: #fff;*/
/*    line-height: 1.2;*/
/*    text-align: center;*/
/*    text-transform: uppercase;*/
  
/*    display: block;*/
/*  }*/
  
  
  /*------------------------------------------------------------------
  [ Input ]*/
  
/*  .wrap-input100 {*/
/*    width: 100%;*/
/*    position: relative;*/
/*    border-bottom: 2px solid rgba(255,255,255,0.24);*/
/*    margin-bottom: 30px;*/
/*  }*/
  
/*  .input100 {*/
/*    font-family: Poppins-Regular;*/
/*    font-size: 16px;*/
/*    color: #fff;*/
/*    line-height: 1.2;*/
  
/*    display: block;*/
/*    width: 100%;*/
/*    height: 45px;*/
/*    background: transparent;*/
/*    padding: 0 5px 0 38px;*/
/*  }*/
  
  /*---------------------------------------------*/ 
/*  .focus-input100 {*/
/*    position: absolute;*/
/*    display: block;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    top: 0;*/
/*    left: 0;*/
/*    pointer-events: none;*/
/*  }*/
  
/*  .focus-input100::before {*/
/*    content: "";*/
/*    display: block;*/
/*    position: absolute;*/
/*    bottom: -2px;*/
/*    left: 0;*/
/*    width: 0;*/
/*    height: 2px;*/
  
/*    -webkit-transition: all 0.4s;*/
/*    -o-transition: all 0.4s;*/
/*    -moz-transition: all 0.4s;*/
/*    transition: all 0.4s;*/
  
/*    background: #fff;*/
/*  }*/
  
/*  .focus-input100::after {*/
/*    font-family: Material-Design-Iconic-Font;*/
/*    font-size: 22px;*/
/*    color: #fff;*/
  
/*    content: attr(data-placeholder);*/
/*    display: block;*/
/*    width: 100%;*/
/*    position: absolute;*/
/*    top: 6px;*/
/*    left: 0px;*/
/*    padding-left: 5px;*/
  
/*    -webkit-transition: all 0.4s;*/
/*    -o-transition: all 0.4s;*/
/*    -moz-transition: all 0.4s;*/
/*    transition: all 0.4s;*/
/*  }*/
  
/*  .input100:focus {*/
/*    padding-left: 5px;*/
/*  }*/
  
/*  .input100:focus + .focus-input100::after {*/
/*    top: -22px;*/
/*    font-size: 18px;*/
/*  }*/
  
/*  .input100:focus + .focus-input100::before {*/
/*    width: 100%;*/
/*  }*/
  
/*  .has-val.input100 + .focus-input100::after {*/
/*    top: -22px;*/
/*    font-size: 18px;*/
/*  }*/
  
/*  .has-val.input100 + .focus-input100::before {*/
/*    width: 100%;*/
/*  }*/
  
/*  .has-val.input100 {*/
/*    padding-left: 5px;*/
/*  }*/
  
  
  /*==================================================================
  [ Restyle Checkbox ]*/
  
/*  .contact100-form-checkbox {*/
/*    padding-left: 5px;*/
/*    padding-top: 5px;*/
/*    padding-bottom: 35px;*/
/*  }*/
  
/*  .input-checkbox100 {*/
/*    display: none;*/
/*  }*/
  
/*  .label-checkbox100 {*/
/*    font-family: Poppins-Regular;*/
/*    font-size: 13px;*/
/*    color: #fff;*/
/*    line-height: 1.2;*/
  
/*    display: block;*/
/*    position: relative;*/
/*    padding-left: 26px;*/
/*    cursor: pointer;*/
/*  }*/
  
/*  .label-checkbox100::before {*/
/*    content: "\f26b";*/
/*    font-family: Material-Design-Iconic-Font;*/
/*    font-size: 13px;*/
/*    color: transparent;*/
  
/*    display: -webkit-box;*/
/*    display: -webkit-flex;*/
/*    display: -moz-box;*/
/*    display: -ms-flexbox;*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    position: absolute;*/
/*    width: 16px;*/
/*    height: 16px;*/
/*    border-radius: 2px;*/
/*    background: #fff;*/
/*    left: 0;*/
/*    top: 50%;*/
/*    -webkit-transform: translateY(-50%);*/
/*    -moz-transform: translateY(-50%);*/
/*    -ms-transform: translateY(-50%);*/
/*    -o-transform: translateY(-50%);*/
/*    transform: translateY(-50%);*/
/*  }*/
  
/*  .input-checkbox100:checked + .label-checkbox100::before {*/
/*    color: #555555;*/
/*  }*/
  
  
  /*------------------------------------------------------------------
  [ Button ]*/
/*  .container-login100-form-btn {*/
/*    width: 100%;*/
/*    display: -webkit-box;*/
/*    display: -webkit-flex;*/
/*    display: -moz-box;*/
/*    display: -ms-flexbox;*/
/*    display: flex;*/
/*    flex-wrap: wrap;*/
/*    justify-content: center;*/
/*  }*/
  
/*  .login100-form-btn {*/
/*    font-family: Poppins-Medium;*/
/*    font-size: 16px;*/
/*    color: #555555;*/
/*    line-height: 1.2;*/
  
/*    display: -webkit-box;*/
/*    display: -webkit-flex;*/
/*    display: -moz-box;*/
/*    display: -ms-flexbox;*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    padding: 0 20px;*/
/*    min-width: 120px;*/
/*    height: 50px;*/
/*    border-radius: 25px;*/
  
/*    background: #9152f8;*/
/*    background: -webkit-linear-gradient(bottom, #7579ff, #b224ef);*/
/*    background: -o-linear-gradient(bottom, #7579ff, #b224ef);*/
/*    background: -moz-linear-gradient(bottom, #7579ff, #b224ef);*/
/*    background: linear-gradient(bottom, #7579ff, #b224ef);*/
/*    position: relative;*/
/*    z-index: 1;*/
  
/*    -webkit-transition: all 0.4s;*/
/*    -o-transition: all 0.4s;*/
/*    -moz-transition: all 0.4s;*/
/*    transition: all 0.4s;*/
/*  }*/
  
/*  .login100-form-btn::before {*/
/*    content: "";*/
/*    display: block;*/
/*    position: absolute;*/
/*    z-index: -1;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    border-radius: 25px;*/
/*    background-color: #fff;*/
/*    top: 0;*/
/*    left: 0;*/
/*    opacity: 1;*/
  
/*    -webkit-transition: all 0.4s;*/
/*    -o-transition: all 0.4s;*/
/*    -moz-transition: all 0.4s;*/
/*    transition: all 0.4s;*/
/*  }*/
  
/*  .login100-form-btn:hover {*/
/*    color: #fff;*/
/*  }*/
  
/*  .login100-form-btn:hover:before {*/
/*    opacity: 0;*/
/*  }*/


  
  
  /*------------------------------------------------------------------
  [ Responsive ]*/
  
/*  @media (max-width: 576px) {*/
/*    .wrap-login100 {*/
/*      padding: 55px 15px 37px 15px;*/
/*    }*/
/*  }*/

/*  .screen-image{*/
    
/*    background: url('../img/Picture2.png'); */
/*    width:100%;*/
/*    height:200px;*/
/*}*/

/*.vendor-circle{*/
/*    padding-top: 30px;*/
/*    color: white;*/
/*    width:100px;*/
/*    height:100px;*/
/*    border:1px solid;*/
/*    background-color:#8AB77D;*/
/*    border-radius:60px;*/
/*}*/

/*.vendor-circle1{*/
/*    padding-top: 30px;*/
/*    color: white;*/
/*    width:100px;*/
/*    height:100px;*/
/*    border:1px solid;*/
/*    background-color:#8AB77D;*/
/*    border-radius:60px;*/
/*}*/

/*.pad10*/
/*{*/
/*    padding:15px;*/
/*    font-size:14px;*/
/*}*/
/*.pad15*/
/*{*/
/*    padding:12px;*/
/*    font-size:16px;*/
/*}*/

/*th {*/
/*    text-align: center;*/
/*}*/

/*@media print{*/
/*    .printThisFull {*/
/*        width:100%;*/
/*        height:auto;*/
/*        page-break-after:always;*/
/*    }*/
/*}*/

/*    .mydiv {*/
/*        position: relative;*/
/*        height:300px;*/
/*        width: 100%;*/
/*        overflow: hidden;*/
/*    }*/

/*    .imgData {*/
/*        width: 600px;*/
/*        height: 1000px;*/
/*    }*/


/*    @media all {*/
/*        .page-break { display: none; }*/
/*        }*/
        
/*        @media print {*/
/*        .page-break { display: block; page-break-before: always; }*/
/*        .page-right { font-size: 15px;text-align:right !important;}*/
/*        }*/
/*        @media print {*/
/*        @page { size: auto;  margin: 0mm; }*/
/*        }*/

/*        @media print {*/
/*            header,footer { */
/*              display: none; */
/*            }*/
/*          }*/

/*          @media print {*/
/*          .rotate {*/
/*            transform: rotate(90deg) translateY(-100%);*/
/*            transform-origin:top left;*/
/*          }*/
/*        }*/

/*          @media print {*/
/*            tr.divFooter {*/
/*              position: fixed;*/
/*              bottom: 0;*/
/*            }*/
/*          }*/
  
          
/*.pad5 {*/
/*    padding: 5px;*/
/*    font-size: 12px;*/
/*}*/

/*.highcharts-figure, .highcharts-data-table table {*/
/*    min-width: 320px; */
/*    max-width: 800px;*/
/*    margin: 1em auto;*/
/*  }*/
  
/*  .highcharts-data-table table {*/
/*      font-family: Verdana, sans-serif;*/
/*      border-collapse: collapse;*/
/*      border: 1px solid #EBEBEB;*/
/*      margin: 10px auto;*/
/*      text-align: center;*/
/*      width: 100%;*/
/*      max-width: 500px;*/
/*  }*/
/*  .highcharts-data-table caption {*/
/*    padding: 1em 0;*/
/*    font-size: 1.2em;*/
/*    color: #555;*/
/*  }*/
/*  .highcharts-data-table th {*/
/*      font-weight: 600;*/
/*    padding: 0.5em;*/
/*  }*/
/*  .highcharts-data-table td, .highcharts-data-table th, .highcharts-data-table caption {*/
/*    padding: 0.5em;*/
/*  }*/
/*  .highcharts-data-table thead tr, .highcharts-data-table tr:nth-child(even) {*/
/*    background: #f8f8f8;*/
/*  }*/
/*  .highcharts-data-table tr:hover {*/
/*    background: #f1f7ff;*/
/*  }*/

/*  .form-control-data {*/
/*    display: block;*/
/*    height: 34px;*/
/*    padding: 6px 12px;*/
/*    font-size: 14px;*/
/*    line-height: 1.42857143;*/
/*    color: #555;*/
/*    background-color: #fff;*/
/*    background-image: none;*/
/*    border: 1px solid #ccc;*/
/*    border-radius: 4px;*/
/*    -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);*/
/*    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);*/
/*    -webkit-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;*/
/*    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;*/
/*    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;*/
/*    transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;*/
/*    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;*/
/*    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;*/
/*}*/

/*.underline*/
/*{*/
/*    text-decoration: underline !important;*/
/*    color: blue;*/
/*}*/

/*.vendor-circle4{*/
/*    padding-top: 19px;*/
/*    color: white;*/
/*    width:100px;*/
/*    height:100px;*/
/*    border:1px solid;*/
/*    background-color:#8AB77D;*/
/*    border-radius:60px;*/
/*}*/

/*.red-error-data{*/
/*    border-color: red;*/
/*}*/
  
/*.pad10new*/
/*{*/
/*    padding:10px;*/
/*    font-size:10px;*/
/*}*/


/*------------------------------------------------------------------
        File Name: style.css
        Template Name: auricle
-------------------------------------------------------------------*/

/*------------------------------------------------------------------
        1. import fonts
-------------------------------------------------------------------*/

/*------------------------------------------------------------------
        2. import files
    -------------------------------------------------------------------*/

/*------------------------------------------------------------------
        3. basic
-------------------------------------------------------------------*/

* {
  margin: 0;
  padding: 0;
  outline: none !important;
  box-sizing: border-box;
  transition: ease all 0.5s;
  -webkit-transition: ease all 0.5s;
  -moz-transition: ease all 0.5s;
  -ms-transition: ease all 0.5s;
  -o-transition: ease all 0.5s;
}
.card {
  border: 0.4rem solid #f8f9fa;
  top: 10%;
}
.form-control {
  background-color: #f8f9fa;
  margin-bottom: 10px;
}

.form-control:focus {
  color: #000000;
  background-color: #ffffff;
  border: 3px solid #da5767;
  outline: 0;
  box-shadow: none;
}

.review-fullscreen {
  margin-top: 85px;
  background-color: rgb(255, 255, 255);
  border: 2px solid;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.product-reviewmodal-section {
  display: grid;
  grid-template-columns: 50% 50%;
  width: 100%;
  height: 88%;
}

.table-textColor {
  color: red !important;
  text-align: center;
}
.table-textBlack {
  text-align: center;
  color: black !important;
}
input,
button,
select,
textarea {
  outline: none !important;
}

html,
body {
  color: black;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  line-height: normal;
  font-weight: 400;
  overflow-x: hidden !important;
}

body {
  overflow: hidden !important;
}

a {
  color: #1f1f1f;
  text-decoration: none !important;
  outline: none !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  letter-spacing: 0;
  font-weight: normal;
  position: relative;
  padding: 0;
  font-weight: normal;
  line-height: normal;
  color: #1f1f1f;
  margin: 0;
}

h6 {
  font-size: 14px;
  margin-bottom: 10px;
}

h1 {
  font-size: 24px;
}

.small_heading.main-heading h2 {
  font-size: 21px;
}

.small_heading.main-heading::after {
  top: 18px;
}

.small_heading.main-heading {
  margin-bottom: 20px;
  width: 100%;
}

h3 {
  font-size: 18px;
}

h4 {
  font-size: 16px;
}

h5 {
  font-size: 14px;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: #212121;
  text-decoration: none !important;
  opacity: 1;
}

ol,
ul {
  margin: 0;
  color: #000;
}

a {
  color: #000;
  text-decoration: none;
  outline: none;
}

a,
.btn {
  text-decoration: none !important;
  outline: none !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.btn-custom {
  margin-top: 20px;
  background-color: transparent;
  border: 2px solid #ddd;
  padding: 12px 40px;
  font-size: 16px;
}

.button_section {
  float: left;
  width: 100%;
}

.right_bt {
  float: right;
}

a.btn,
button.btn {
  min-width: 170px;
  height: 50px;
  border-radius: 100px;
  padding: 0;
  text-align: center;
  line-height: 52px;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  margin-top: 10px;
  color: #fff;
  border: solid transform 1px;
}

a.btn:hover,
button.btn:hover,
a.btn:focus,
button.btn:focus {
  background: #252525;
  color: #fff;
}

button {
  transition: ease all 0.5s;
  cursor: pointer;
}

.bt_main {
  color: #fff;
  font-size: 14px;
  min-width: 148px;
  float: left;
  text-align: center;
  height: 48px;
  line-height: 50px;
  font-weight: 500;
  border: none;
  padding: 0 35px;
  transition: ease all 0.5s;
}

.bt_main:hover,
.bt_main:focus {
  color: #fff;
}

.reverse_bt.bt_main {
  color: #fff;
}

.white_bt.bt_main {
  background: #fff;
}

.white_bt.bt_main:hover,
.white_bt.bt_main:focus {
  color: #fff;
}

.field button {
  background: #f96495;
  color: #fff;
  font-size: 14px;
  width: auto;

  text-align: center;
  height: 48px;
  border-radius: 25px;
  line-height: 50px;
  font-weight: 500;
  border: none;
  margin-top: 15px;
  transition: ease all 0.5s;
  cursor: pointer;
  min-width: 148px;
  padding-left: 75px;
  padding-right: 75px;
}

.field button:hover,
.field button:focus {
  background: #ffffff;
  color: #1e72bc;
}

.border_circle_bt {
  border-radius: 50px;
}

.padding-bottom_0 {
  padding-bottom: 0 !important;
}

.padding-top_0 {
  padding-top: 0 !important;
}

.padding-bottom_1 {
  padding-bottom: 10px !important;
}

.padding-bottom_2 {
  padding-bottom: 20px !important;
}

.padding-bottom_3 {
  padding-bottom: 30px !important;
}

.padding-bottom_4 {
  padding-bottom: 40px !important;
}

.padding-bottom_5 {
  padding-bottom: 50px !important;
}

.color_black p,
.color_black p.large,
.color_black ul,
.color_black ul li {
  color: #000;
}

.black_color {
  color: #000 !important;
}

.extra_light_font {
  font-weight: 300 !important;
}

.light_font {
  font-weight: 300 !important;
}

.normal_font {
  font-weight: 400 !important;
}

.semi_bold_font {
  font-weight: 600 !important;
}

.bold_font {
  font-weight: 700 !important;
}

.extra_bold_font {
  font-weight: 900 !important;
}

.lead {
  font-size: 18px;
  line-height: 30px;
  color: #767676;
  margin: 0;
  padding: 0;
}

blockquote {
  margin: 20px 0 20px;
  padding: 30px;
}

.margin_0 {
  margin: 0 !important;
}

.padding_0 {
  padding: 0 !important;
}

h2 {
  font-size: 40px;
  font-weight: 500;
  letter-spacing: -2px;
  position: relative;
  margin-bottom: 25px;
  line-height: 50px;
  position: relative;
}

h3 {
  font-size: 24px;
  color: #000;
  line-height: normal;
  font-weight: 700;
  text-transform: uppercase;
}

h4 {
  font-size: 18px;
  color: #000;
  line-height: 21px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 30px 0 20px 0;
}

h5 {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
  line-height: normal;
  color: #000;
}

p {
  font-size: 14px;
  line-height: 21px;
  font-weight: 300;
}

p.large {
  color: #707070;
  font-size: 16px;
  font-weight: 400;
}

p.large_2 {
  font-weight: 500;
  font-size: 14px;
  color: #000;
}

.img-responsive {
  max-width: 100%;
}

button,
input,
select,
textarea,
option {
  font-family: "Poppins", sans-serif;
}

a#submit {
  z-index: 1;
}

a:hover,
a:focus {
  color: #000;
  text-decoration: none;
}

.span1,
.span2,
.span3,
.span4,
.span5,
.span6,
.span7,
.span8,
.span9,
.span10 {
  padding: 0 15px;
  float: left;
  min-height: 25px;
}

.border_radius_0 {
  border-radius: 0 !important;
}

.span1 {
  width: 10%;
}

.span2 {
  width: 20%;
}

.span3 {
  width: 30%;
}

.span4 {
  width: 40%;
}

.span5 {
  width: 50%;
}

.span6 {
  width: 60%;
}

.span7 {
  width: 70%;
}

.span8 {
  width: 80%;
}

.span9 {
  width: 90%;
}

.span10 {
  width: 100%;
}

.container {
  width: 1200px;
  max-width: 1200px;
}

.layout_padding {
  padding-top: 80px;
  padding-bottom: 100px;
}

.layout_padding_2 {
  padding-top: 100px;
  padding-bottom: 80px;
}

.full {
  width: 100%;
  float: left;
  margin: 0;
  padding: 0;
}

.vertical-center {
  display: flex;
  align-items: center;
  height: 100%;
  width: 100%;
}

.right_side {
  float: right;
}

.text_align_right {
  text-align: right;
}

.left_side {
  float: left;
}

.text_align_left {
  text-align: left;
}

.text_align_center {
  text-align: center;
}

.center {
  width: 100%;
  display: flex;
  justify-content: center;
}

.border_dotted_circle {
  border: dotted #e1e1e1 3px;
  width: 170px;
  height: 170px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

.border_dotted_circle:hover,
.border_dotted_circle:focus {
  border: dotted #e1e1e1 3px;
  animation-name: rotate;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -webkit-animation-name: rotate;
  -webkit-animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: rotate;
  -moz-animation-duration: 2s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: rotate;
  -ms-animation-duration: 5s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  -o-animation-name: rotate;
  -o-animation-duration: 2s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear;
}

@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-moz-keyframes rotate {
  from {
    -moz-transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(360deg);
  }
}

.white_fonts p,
.white_fonts h1,
.white_fonts h2,
.white_fonts h3,
.white_fonts h4,
.white_fonts h5,
.white_fonts h6,
.white_fonts ul,
.white_fonts ul li,
.white_fonts ul li a,
.white_fonts ul i,
.white_fonts .post_info i,
.white_fonts div,
.white_fonts a.read_more,
.white_fonts h2 span {
  color: #fff !important;
}

.light_gray_fonts p,
.light_gray_fonts h1,
.light_gray_fonts h2,
.light_gray_fonts h3,
.light_gray_fonts h4,
.light_gray_fonts h5,
.light_gray_fonts h6,
.light_gray_fonts ul,
.light_gray_fonts ul li,
.light_gray_fonts ul li a,
.light_gray_fonts ul i,
.light_gray_fonts .post_info i,
.light_gray_fonts div,
.light_gray_fonts a.read_more {
  color: #898989 !important;
}

.parallax_bg {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
}

.dark_gray {
  background-color: #252525;
  min-height: 400px;
}

.list_style_1 {
  font-size: 14px;
  font-weight: 500;
  margin: 20px 0 15px;
}

.list_style_1 i {
  float: left;
  margin: 3px 16px 0 0;
}

.light_silver {
  background: #f4f6fe;
}

.light_silver_2 {
  background: #f8f8f8;
}

hr.dottad_border {
  border-top: dotted 3px;
  margin: 80px 0;
}

.padding_right_left_15 {
  padding-left: 15px;
  padding-right: 15px;
}

.padding_right_left_25 {
  padding-left: 25px;
  padding-right: 25px;
}

.padding_top_80 {
  padding-top: 80px;
}

.padding_bottom_80 {
  padding-bottom: 80px;
}

.padding_bottom_0 {
  padding-bottom: 0;
}

.padding_inner {
  padding-top: 75px;
  padding-bottom: 75px;
}

.theme_color_bg h2::after {
  background: #fff;
}

.layout_pur_minus {
  margin-bottom: -190px;
  position: relative;
  z-index: 1;
}

.haf_full_section {
  position: relative;
}

.haf_full_section.right_full::after {
  content: "";
  display: block;
  width: 50%;
  background-color: #333;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.haf_full_section.left_full::before {
  content: "";
  display: block;
  width: 50%;
  background-color: #333;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.gray1 {
  background: #464646;
}

.gray2 {
  background-color: #555555;
}

.overlap_top_img_main {
  margin: -70px 0 0 0;
}

.center_padding {
  padding: 150px 0 120px;
}

.border_0 {
  border-width: 0 !important;
}

.oswald_fonts h1,
.oswald_fonts h2,
.oswald_fonts h3,
.oswald_fonts h4,
.oswald_fonts h5,
.oswald_fonts h6 {
  font-family: "Oswald", sans-serif;
}

.small_radius {
  border-radius: 5px;
}

section .small_head h2 {
  font-size: 30px;
}

.margin_top_0 {
  margin-top: 0 !important;
}

.montserrat_fonts li,
.montserrat_fonts a,
.montserrat_fonts ul {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

.margin_top_30 {
  margin-top: 30px;
}

.margin_bottom_30 {
  margin-bottom: 30px;
}

.padding_top_0 {
  padding-top: 0 !important;
}

/*------------------------------------------------------------------
        4. loader
-------------------------------------------------------------------*/

/* Preloader */

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

#status {
  background: url(/images/loading.gif);
  width: 220px;
  height: 220px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/*------------------------------------------------------------------
        5. header
-------------------------------------------------------------------*/

.header_information {
  float: left;
  width: 100%;
  border-bottom: solid #eee 1px;
  padding-bottom: 10px;
}

.header_fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

.header_top {
  background: #f6f6f6;
  min-height: 45px;
  padding-bottom: 10px;
}

.heading_main h2 span {
  color: #0aceb1;
}

.header_bg_transparent {
  background: rgba(37, 37, 37, 0.2);
}

.left_head {
  float: left;
}

.left_head ul {
  margin: 12px 0 11px;
}

div.left_head ul li {
  display: inline;
  margin-right: 30px;
  font-size: 14px;
  color: #3f504d;
}

div.left_head ul li i {
  font-size: 16px;
  margin-right: 5px;
  color: #1e72bc;
}

.right_head {
  float: right;
}

.right_head .social_icon_part {
  float: left;
}

.right_head .button_section {
  float: right;
  width: auto;
}

/**-- logo --**/

.header {
  padding: 2px 0;
  position: fixed;
  z-index: 999 !important;
  width: 100%;
  background: #fff;
  box-shadow: 0 15px 30px -25px #000;
  height: 95px;
}

.header_about_us {
  padding: 2px 0;
  position: fixed;
  z-index: 11 !important;
  width: 100%;
  background: #fff;
}

.logo {
  margin: 13px 0 13px;
  float: left;
}

/**-- menu --**/

.menu {
  width: 100%;
  margin: -1px 0 0;
}

.main_menu {
  margin: 20px 0 0;
}

.menu-container {
  margin: 0 auto;
  background: #e9e9e9;
}

.menu a.logo {
  display: inline-block;
  padding: 1.5em 3em;
  width: 19%;
  float: left;
}

.menu img {
  max-width: 100%;
}

.menu-mobile {
  display: none;
  padding: 20px;
}

.menu-mobile::after {
  content: "\f0c9";
  font-family: "fontawesome";
  position: relative;
  left: -2px;
  top: 2px;
}

.menu-dropdown-icon::before {
  content: "\f078";
  font-family: "fontawesome";
  display: none;
  cursor: pointer;
  float: right;
  padding: 16px 15px 16px;
  background: transparent;
  color: #333;
  border-left: solid #ddd 2px;
  font-size: 11px;
}

.menu > ul {
  margin: 0;
  width: 100%;
  list-style: none;
}

.menu > ul:before,
.menu > ul:after {
  content: "";
  display: table;
}

.menu > ul:after {
  clear: both;
}

.menu > ul > li {
  float: left;
  padding: 0;
  margin: 0;
}

.menu > ul > li a {
  padding: 15px 15px;
  display: block;
  color: #333;
  font-size: 20px;
}

.menu > ul > li:hover > a,
.menu > ul > li:focus > a,
.menu > ul > li.active > a {
  color: #f96495;
}

.menu > ul > li > ul {
  display: none;
  width: 100%;
  background-color: #fff;
  position: absolute;
  z-index: 99;
  left: 0;
  margin: 0;
  list-style: none;
  box-sizing: border-box;
  box-shadow: 0 15px 40px -20px #000;
  padding: 0;
  /*background-image: url('../images/landing_page/bg2.png');*/
  background-size: cover;
  background-position: right bottom;
  min-height: 420px;
  border-top: solid #1e72bc 5px;
}

.menu > ul > li > ul:before,
.menu > ul > li > ul:after {
  content: "";
  display: table;
}

.menu > ul > li > ul:after {
  clear: both;
}

.menu > ul > li > ul > li {
  margin: 0;
  list-style: none;
  width: 25%;
  background: none;
  float: left;
  padding: 15px 20px 0 20px;
  min-height: auto;
}

.menu > ul > li > ul > li:nth-child(4) {
  border-right: none;
}

.menu > ul > li > ul > li a {
  color: #222;
  padding: 0;
  width: 100%;
  display: block;
}

.menu > ul > li > ul > li a:hover {
  color: #1e72bc;
}

.menu > ul > li > ul > li > ul {
  display: block;
  padding: 0;
  margin: 0;
  list-style: none;
  box-sizing: border-box;
}

.menu > ul > li > ul > li > ul:before,
.menu > ul > li > ul > li > ul:after {
  content: "";
  display: table;
}

.menu > ul > li > ul > li > ul:after {
  clear: both;
}

.menu > ul > li > ul > li > ul > li {
  float: left;
  width: 100%;
  padding: 10px;
}

.menu > ul > li > ul > li > ul > li a {
  border: 0;
  font-size: 13px;
  font-weight: 400;
}

.menu > ul > li > ul.normal-sub {
  width: 300px;
  left: auto;
  padding: 15px 10px;
  min-height: auto;
  background-image: none;
}

.menu > ul > li > ul.normal-sub > li {
  width: 100%;
  padding: 10px 15px;
  min-height: auto;
}

.menu > ul > li > ul.normal-sub > li a {
  border: 0;
  font-size: 13px;
  font-weight: 400;
}

.right_bt {
  float: right;
  margin-top: 23px;
}

/** social icon **/

.social_icons {
  float: right;
  margin: 9px 0 0px;
}

section .social_icons {
  width: 100%;
}

.social_icons li {
  display: inline;
  font-size: 15px;
  margin-left: 15px;
}

.social_icons li {
  display: inline;
  font-size: 14px;
  margin-left: 15px;
}

.social_icons li a {
  color: #222;
  font-size: 18px;
}

.social_icons li a:hover,
.social_icons li a:focus {
  color: #0aceb1;
}

.logo img {
  width: 235px;
  margin: 0;
}

/*------------------------------------------------------------------
        6. main banner
-------------------------------------------------------------------*/

.slide_cont {
  float: left;
  width: 100%;
  margin-top: 85px;
}

.slide_cont h2 {
  color: #fff;
  font-size: 55px;
  font-weight: 600;
  line-height: 60px;
  margin: 0;
  letter-spacing: -1px;
  margin-bottom: 30px;
}

#banner_parallax p,
#banner_slide p {
  color: #fff;
  font-weight: 300;
  margin-top: 10px;
  position: relative;
  left: 0;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 24px;
}

.slide_banner1 {
  /*background-image: url('../images/slide1.png');*/
  max-height: 560px;
  position: relative;
  background-repeat: no-repeat;
  background-size: auto;
  background-position: bottom center;
}

.slide_pc_img {
  position: relative;
  z-index: 1;
  margin-bottom: -130px;
}

.slide_pc_img img {
  margin-top: 110px;
  float: left;
  margin-right: 0;
  position: relative;
  right: 150px;
  margin-bottom: 0;
}

#banner_slide .cont_banner_center {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#banner_slide {
  position: relative;
}

#banner_slide img {
  width: 100%;
}

.home_page1 .slide_cont {
  margin-top: 135px;
}

.home_page1 #banner_slide {
  margin-bottom: -145px;
}

.slide_cont .bt_main {
  margin-top: 10px;
}

/**-- slide style 2 **/

/*------------------------------------------------------------------
        7. section
-------------------------------------------------------------------*/

/**-- main heading --**/

.heading_main {
  width: 100%;
  margin: 0 0 65px;
  letter-spacing: 0;
}

.full_heading {
  width: 100%;
  margin: 0;
}

.heading_style_1 h2::after {
  width: 110px;
  background: #ddd;
  content: "";
  display: block;
  margin: 15px 0 30px;
}

.white_heading_border h2::after {
  background: #fff !important;
}

.center_head_border h2:after,
.center_head_border:after {
  margin-left: auto !important;
  margin-right: auto !important;
}

.color_heading h4 {
  color: #1e72bc;
}

.double_line_heading h2 {
  line-height: 45px;
}

h3.heading_2 {
  font-size: 42px;
  text-transform: none;
  font-weight: 500;
  color: #32414d;
  letter-spacing: -0.5px;
  line-height: 42px;
  margin-bottom: 20px;
}

.feature_information p {
  font-size: 16px;
  line-height: 21px;
}

/**-- contant section --**/

.theme_bg {
  /*background-image: url('../images/bg_layout.png');*/
  background-size: cover;
  min-height: 650px;
  background-position: center;
}

.layout_screen {
  left: -150px;
  position: relative;
}

.cross_layout {
  position: relative;
}

.feature_box {
  min-height: 315px;
  padding: 45px 0 30px;
  margin-bottom: 30px;
  box-shadow: 0 20px 35px -20px rgba(0, 0, 0, 0.2);
}

.app-features li {
  padding-left: 100px;
  position: relative;
  margin: 25px 0 0;
  float: left;
  border-bottom: dotted 1px #ddd;
  padding-bottom: 25px;
}

.app-features li > i {
  position: absolute;
  left: 0;
  width: 90px;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  background: #fff;
  font-size: 35px;
  font-weight: 500;
  transition: ease all 0.5s;
  top: 0;
  border: solid #0aceb1 2px;
  color: #0aceb1;
}

.app-features ul li:last-child {
  border-bottom: none;
}

.app-features li:hover > i,
.app-features li:focus > i {
  background: #1e72bc;
  border-color: #1e72bc;
  color: #fff;
}

.app-features h4 {
  text-transform: none;
  font-weight: 500;
  color: #666;
  margin-top: 10px;
  margin-bottom: 10px;
}

.gradiant_bg {
  /*background: url('../images/bg_gradinat.png');*/
  min-height: 420px;
  background-position: center center;
  background-size: cover;
}

.cross_layout {
  position: relative;
  overflow: hidden;
}

section.cross_layout {
  padding-top: 140px;
  padding-bottom: 70px;
}
section.cross_layout1 {
  padding-top: 40px;
  padding-bottom: 40px;
}

section.cross_layout2 {
  padding-top: 250px;
  padding-bottom: 70px;
}

.cross_layout::before {
  content: "";
  width: 100%;
  height: 120px;
  /*background: url('../images/top_layer.png');*/
  display: block;
  position: absolute;
  top: 0;
  background-size: 100% 100%;
}

.cross_layout::after {
  content: "";
  width: 100%;
  height: 120px;
  /*background: url('../images/bottom_layer.png');*/
  display: block;
  position: absolute;
  bottom: 0;
  background-size: 100% 100%;
}

.cont_theme_blog h3 {
  text-transform: uppercase;
  background: linear-gradient(to right, #1e72bc 0%, #30cfd0 100%);
  background: -webkit-linear-gradient(to right, #1e72bc 0%, #30cfd0 100%);
  background: -moz-linear-gradient(to right, #1e72bc 0%, #30cfd0 100%);
  background: -ms-linear-gradient(to right, #1e72bc 0%, #30cfd0 100%);
  background: -o-linear-gradient(to right, #1e72bc 0%, #30cfd0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: none;
  font-size: 55px;
  line-height: 60px;
  font-weight: 400;
  margin-top: 50px;
  margin-bottom: 20px;
}

.cont_theme_blog p {
  font-size: 17px;
  line-height: normal;
  margin-top: 25px;
}

/*------------------------------------------------------------------
        8. price table
-------------------------------------------------------------------*/

.table_price {
  float: left;
  width: 100%;
  background: #fff;
  padding: 0 0 40px 0;
  box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.3);
  border: solid #fff 15px;
}

.table_price_head {
  background: #30cfd0;
  min-height: 80px;
}

.active_price .table_price_head {
  background: #1e72bc;
}

.table_price_head h5 {
  font-weight: 600;
  font-size: 21px;
  line-height: 80px;
  color: #fff;
}

.table_price_per {
  min-height: 122px;
  padding: 47px 0 0;
}

.table_price_per p {
  font-size: 45px;
  color: #1e72bc;
  font-weight: 600;
}

.table_price_per p small {
  font-size: 16px;
}

.table_price_cont_bottm {
  padding: 0 45px;
}

.table_price_cont_bottm ul {
  border-top: solid #ebebeb 2px;
  float: left;
  width: 100%;
  padding: 25px 0;
}

.table_price_cont_bottm ul li {
  float: left;
  width: 100%;
  font-size: 16px;
  color: #333;
  line-height: normal;
  margin: 6px 0;
}

.table_price_bottm {
  float: left;
  width: 100%;
  justify-content: center;
  display: flex;
}

/*------------------------------------------------------------------
        9. team section
-------------------------------------------------------------------*/

.team_imform p {
  margin: 0;
  text-align: center;
  color: #000;
  font-weight: 400;
}

.team_imform p.team_mem_name {
  color: #1e72bc;
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 5px;
}

.team_imform {
  margin: 30px 0;
}

/*------------------------------------------------------------------
        10. blog section
-------------------------------------------------------------------*/

.blog_section {
  background: #fff;
  box-shadow: 0 20px 35px -25px rgba(0, 0, 0, 0.4);
  margin-top: 10px;
}

.white_bg .blog_section {
  padding: 15px 0;
}

.blog_feature_cantant {
  padding: 30px 25px 20px;
}

.blog_feature_cantant .blog_head {
  font-size: 18px;
  color: #000;
  font-weight: 400;
}

.post_info {
  color: #000;
  font-size: 14px;
  margin-bottom: 10px;
  width: 100%;
}

.post_info ul li {
  display: inline;
  margin-right: 10px;
  color: #555;
  font-size: 14px;
}

.blog_feature_cantant p {
  color: #555555;
}

.post_info ul li i {
  color: #1e72bc;
}

/*------------------------------------------------------------------
        11. contact section
-------------------------------------------------------------------*/

.contact_section {
  background-image: url(/images/cu.png);
  height: auto;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
}

.contact_section1 {
  background-image: url(/images/mobcontact.jpg);
  height: auto;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
}

.contact_form {
  min-height: 600px;
  padding: 80px 70px;
  background-size: cover;
}

.contact_form.contact_inform {
  min-height: auto;
  float: left;
  width: 100%;
}

.contact_form_inner {
  max-width: 430px;
}

.contact_form p {
  color: #fff;
}

.contact_form.contact_inform p.inform_label {
  color: #898989;
  text-transform: uppercase;
  font-weight: normal;
  margin: 0;
}

.contact_form.contact_inform p.inform_cont {
  font-size: 18px;
  color: #000;
}

.contact_form_layout .contact_form {
  padding: 0;
  margin-top: 10px;
}

.contact_form_layout .field input {
  border: solid #e1e1e1 1px;
  height: 45px;
}

.contact_form_layout .field textarea {
  border: solid #e1e1e1 1px;
  height: 160px;
  padding: 15px 30px;
}

.contact_form_layout .contact_form {
  min-height: auto;
}

.golde_yellow_theme .dark_footer .footer_bottom div.center ul li {
  margin: 0 10px;
}

/**-- map --**/

#map {
  height: 100%;
  min-height: 790px;
}

/**-- form --**/

.field input {
  width: 100%;
  margin-top: 10px;
  border: none;
  min-height: 45px;
  padding: 0 25px;
  line-height: 45px;
  font-size: 14px;
}

.field textarea {
  width: 100%;
  margin-top: 10px;
  border: none;
  font-size: 14px;
  min-height: 100px;
  padding: 30px 25px;
}

/*------------------------------------------------------------------
        12. footer
-------------------------------------------------------------------*/

.footer_style_2 {
  left: 0;
  bottom: 0;
  width: 100%;
  height: 80px;
}
footer {
  background-color: #8ab77d;
}

.footer_logo {
  text-align: center;
  margin-bottom: 50px;
}

.footer_top {
  padding-bottom: 50px;
}

.footer_blog {
  display: flex;
}

.footer_icon {
  margin-right: 15px;
}

.footer_cont h4 {
  font-size: 18px;
  color: #000;
  font-weight: 400;
  text-transform: none;
  margin: 0 0 7px 0;
}

.footer_blog_2 h3 {
  font-weight: 500;
  font-size: 24px;
  text-transform: none;
  margin: 0 0 25px 0;
  line-height: 30px;
}

.footer_cont p {
  color: #555555;
  line-height: 20px;
  font-size: 14px;
}

.footer_bottom {
  min-height: 50px;
  text-align: center;
  line-height: 50px;
  background: #79676a;
}

.footer_bottom p {
  margin: 0;
  line-height: 50px;
  color: #fff;
  text-align: center !important;
  padding: 0;
}

.footer_bottom p strong {
  color: #fff;
  font-weight: 500;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 20px;
  display: block;
  width: 100%;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.3);
  padding-bottom: 20px;
}

.footer-links li:last-child {
  border-bottom: none;
}

.footer-links a {
  color: #999;
}

.footer-links a:hover,
.footer a:hover {
  color: #1e72bc !important;
}

.footer-links a i {
  font-size: 20px;
  position: relative;
  top: 1px;
  margin-right: 15px;
}

.blog_post_footer {
  display: flex;
  margin-bottom: 15px;
}

.blog_post_footer .blog_post_img {
  margin-right: 20px;
}

.blog_post_cont {
  padding: 8px 0;
}

.date {
  font-size: 12px;
  color: #999;
  margin: 0;
  font-weight: 500;
}

.post_head {
  color: #333;
  font-size: 14px;
  line-height: 16px;
  font-weight: 400;
  margin-top: 5px;
  margin-bottom: 0;
}

/**== dark footer ==**/

.dark_footer {
  background: #1f222a;
}

.dark_footer h3 {
  color: #fff !important;
}

.dark_footer .post_head {
  color: #fff !important;
}

.dark_footer .footer_bottom strong {
  color: #fff !important;
}

.dark_footer .footer_bottom {
  border-color: rgba(255, 255, 255, 0.1);
}

/*------------------------------------------------------------------
	13. brand logo 
-------------------------------------------------------------------*/

.brand_logo_section {
  padding-top: 50px;
  padding-bottom: 50px;
}

.brand_logo_section li {
  width: 16.66%;
  float: left;
  text-align: center;
  align-items: center;
  display: flex;
  min-height: 100px;
  justify-content: center;
}

.brand_logo_section img {
  width: auto;
}

/*------------------------------------------------------------------
	14. portfolio 
-------------------------------------------------------------------*/

.portfolia_blog_style1 {
  position: relative;
}

.portfolia_img img {
  width: 100%;
}

.portfolia_blog_style1 .portfolia_cont {
  position: absolute;
  top: 0;
  width: 100%;
  text-align: center;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.7);
  transform: scale(0);
  transition: ease all 0.3s;
  opacity: 0;
  overflow: hidden;
}

.portfolia_blog_style1:hover .portfolia_cont,
.portfolia_blog_style1:focus .portfolia_cont {
  transform: scale(1);
  opacity: 1;
}

.portfolia_cont p {
  color: #fff;
  font-size: 16px;
  padding: 0 45px;
  line-height: normal;
}

/** pagination **/

.pagination_section {
  display: flex;
  justify-content: center;
  margin-top: 5px;
}

ul.pagination .page-item a {
  height: 40px;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 40px;
  padding: 0;
  min-width: 40px;
  text-align: center;
  color: #898989;
}

ul.pagination li.page-item:first-child .page-link,
ul.pagination li.page-item:last-child .page-link {
  border-radius: 0;
  padding: 0 20px;
  background: #f8f8f8;
}

ul.pagination li.page-item.active .page-link {
  background: #ffb125;
  color: #fff;
  border-color: #ffb125;
}

/** imformation blog **/

.imf_icon img {
  width: 125px;
  height: 125px;
}

.imf_icon {
  width: 120px;
  height: 120px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;

  margin: -120px auto 20px;
  padding: 25px;
  background: #fff;
}

.information_blogs {
  background: #eaeaea;
  padding: 40px 40px;
  text-align: center;
  margin-top: 65px;
  height: 250px;
  padding-left: 0px;
  padding-right: 0px;
}

.information_blogs h3 {
  font-size: 24px;
  font-weight: 300;
  text-transform: none;
  margin-bottom: 15px;
}
.information_blogs_white_left {
  background: #ffffff;
  padding: 40px 40px;
  text-align: center;
  margin-top: 85px;
  margin-bottom: 50px;
  margin-left: 38px;
  margin-right: 30px;
  height: 290px;
  padding-left: 0px;
  padding-right: 0px;
}

.information_blogs_white_left h3 {
  font-size: 24px;
  font-weight: 300;
  text-transform: none;
  margin-bottom: 15px;
}
.information_blogs_white_right {
  background: #ffffff;
  padding: 40px 40px;
  text-align: center;
  margin-top: 100px;
  margin-bottom: 100px;
  margin-left: 25px;
  margin-right: 150px;
  height: 225px;
  padding-left: 0px;
  padding-right: 0px;
}

.information_blogs_white_right h3 {
  font-size: 24px;
  font-weight: 300;
  text-transform: none;
  margin-bottom: 15px;
}

.inner_page_banner + .layout_padding {
  padding-top: 0 !important;
}

/**-- step section --**/

.step_inner {
  width: 100%;
  position: relative;
}

.step_inner p {
  font-size: 21px;
  margin: 20px 0 0 0;
  font-weight: 400;
  position: relative;
  color: #fff;
  letter-spacing: -0.5px;
  text-align: center;
}

.step_inner i {
  font-size: 65px;
  margin-bottom: 0;
  color: #fff;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  line-height: normal;
  text-align: center;
}

.step_blog {
  margin-bottom: 35px;
}

.scren {
  float: left;
  width: 25%;
}

.bg-grey {
  background-color: #eaeaea;
}

.flip-card {
  background: #eaeaea;
  width: 100%;
  height: 300px;
  perspective: 1000px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
  background: #ffffff !important;
}

.flip-card-front,
.flip-card-back {
  background: #eaeaea;
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 0;
  -webkit-transform: translate3d(0, 0, 0);
  visibility: visible;
  padding: 10px;
}

.flip-card-front {
  color: black;
}

.flip-card-back {
  color: #000000;
  transform: rotateY(180deg);
}

.pad {
  padding: 20px 20px 20px 20px;
}

.logo-alignment {
  float: left;
}

.carousel-control.left {
  background-image: none !important;
}
.carousel-control.right {
  background-image: none !important;
}
/* On screens that are 992px or less, set the background color to blue */
@media screen and (max-width: 992px) {
  .pad {
    padding: 20px 20px 20px 20px;
  }
}

/* On screens that are 600px or less, set the background color to olive */
@media screen and (max-width: 600px) {
  .pad {
    padding: 20px 50px 20px 50px !important;
  }
  .information_blogs_white_left {
    background: #ffffff;
    padding: 40px 40px;
    text-align: center;
    margin-top: 100px;
    margin-bottom: 20px;
    margin-left: 20px;
    margin-right: 20px;
    height: 345px !important;
  }
  .information_blogs_white_right {
    background: #ffffff;
    padding: 40px 40px;
    text-align: center;
    margin-top: 100px;
    margin-bottom: 20px;
    margin-left: 20px;
    margin-right: 20px;
    height: 310px !important;
  }

  .logo-alignment {
    text-align: center !important;
    margin-left: 30%;
  }
}

.field1 input {
  width: 100%;
  margin-top: 10px;
  min-height: 45px;
  padding: 0 25px;
  line-height: 45px;
  font-size: 14px;
  margin-bottom: 15px;
}

.newspaper {
  column-count: 3;
  column-gap: 40px;
}

.five-column {
  column-count: 5;
  column-gap: 20px;
}

.alice-carousel ul li img {
  height: 400px;
  width: 100%;
  object-fit: cover;
}

.searchTerm {
  width: 100%;
  border: 3px solid #eaeaea;
  border-right: none;
  padding: 5px;
  height: 40px;
  margin-top: 5px;
  outline: none;
  background-color: #eaeaea;
}

.searchTerm:focus {
  color: #f96495;
}

.searchButton {
  width: 40px;
  height: 40px;
  border: 1px solid #f96495;
  background: #f96495;
  text-align: center;
  color: #fff;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  font-size: 14px;
  margin-top: 5px;
}
.searchButton1 {
  width: 100%;
  height: 40px;
  border: 1px solid #f96495;
  background: #f96495;
  text-align: center;
  color: #fff;
  border-radius: 5px 0 0 5px;
  cursor: pointer;
  font-size: 14px;
  margin-top: 5px;
}
.blink {
  color: red;
  font-size: 11px;
}

.listing_product {
  background-image: url(/images/dw.jpg);
  height: 360px;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
  margin-top: 112px;
}

.listing_product1 {
  height: 360px;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
  margin-top: 112px;
}

.third-column {
  column-count: 3;
  column-gap: 30px;
}

.newspaper {
  column-count: 7;
  column-gap: 10px;
  margin-top: -13px;
  margin-bottom: 17px;
}
.parent1 {
  display: block;
  position: relative;
  z-index: 1;
}
.parent1 a {
  color: #ffffff;
  text-decoration: none;
}
.parent1:hover > ul {
  display: block;
  position: absolute;
}
.child1 {
  display: none;
}
.child1 li {
  background-color: #ffffff;
  line-height: 30px;
  width: 135px;
}
.child1 li a {
  color: #000000;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0px;
  min-width: 10em;
}
ul ul ul {
  left: 100%;
  top: 0;
  margin-left: 1px;
}

.parent li:hover {
  background-color: #ccc;
}
.expand1 {
  font-size: 12px;
  float: right;
  margin-right: 5px;
}

.dropdown3 {
  position: relative;
  display: inline-block;
}

.dropdown-content3 {
  display: none;
  position: absolute;
  background-color: white;
  width: 175px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  padding: 12px 16px;
  z-index: 3;
  margin-left: 20px;
}

.dropdown3:hover .dropdown-content3 {
  display: block;
}

.dropdown2 {
  position: relative;
  display: inline-block;
}

.dropdown-content2 {
  display: none;
  position: absolute;
  background-color: white;
  width: 400px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  padding: 12px 16px;
  z-index: 3;
  margin-left: -230px;
}

.dropdown2:hover .dropdown-content2 {
  display: block;
}

@media (min-width: 768px) {
  .seven-cols .col-md-1,
  .seven-cols .col-sm-1,
  .seven-cols .col-lg-1 {
    width: 100%;
    *width: 100%;
  }
}

@media (min-width: 992px) {
  .seven-cols .col-md-1,
  .seven-cols .col-sm-1,
  .seven-cols .col-lg-1 {
    width: 14.285714285714285714285714285714%;
    *width: 14.285714285714285714285714285714%;
  }
}

/**
   *  The following is not really needed in this case
   *  Only to demonstrate the usage of @media for large screens
   */
@media (min-width: 1200px) {
  .seven-cols .col-md-1,
  .seven-cols .col-sm-1,
  .seven-cols .col-lg-1 {
    width: 14.285714285714285714285714285714%;
    *width: 14.285714285714285714285714285714%;
  }
}

.fa-stack[data-count]:after {
  position: absolute;
  right: 0%;
  top: 0%;
  content: attr(data-count);
  font-size: 40%;
  padding: 0.6em;
  border-radius: 999px;
  line-height: 0.75em;
  color: white;
  color: #111111;
  text-align: center;
  min-width: 2em;
  font-weight: bold;
  background: white;
  border-style: solid;
}
.fa-circle {
  color: #111111;
}

.red-cart {
  color: #111111;
  background: white;
}

.example {
  position: relative;
  padding: 0;
  width: 350px;
  display: block;
  cursor: pointer;
  overflow: hidden;
}
.content {
  opacity: 0;
  font-size: 20px;
  position: absolute;
  top: 0px;
  left: 0;
  color: #1c87c9;
  background-color: rgba(200, 200, 200, 0.5);
  width: 350px;
  height: 350px;
  -webkit-transition: all 400ms ease-out;
  -moz-transition: all 400ms ease-out;
  -o-transition: all 400ms ease-out;
  -ms-transition: all 400ms ease-out;
  transition: all 400ms ease-out;
  text-align: center;
}
.example .content:hover {
  opacity: 1;
}
.example .content .text {
  height: 0;
  opacity: 1;
  transition-delay: 0s;
  transition-duration: 0.4s;
}
.example .content:hover .text {
  opacity: 1;
  transform: translateY(250px);
  -webkit-transform: translateY(250px);
}

/* relevant styles */
.img__wrap {
  position: relative;
  height: 300px;
  width: 300px;
}

.img__description_layer {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(23, 35, 51, 0.6);
  color: #f96495;
  visibility: hidden;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;

  /* transition effect. not necessary */
  transition: opacity 0.2s, visibility 0.2s;
}

.img__wrap:hover .img__description_layer {
  visibility: visible;
  opacity: 1;
}

.img__description {
  transition: 0.2s;
  transform: translateY(1em);
}

.img__wrap:hover .img__description {
  transform: translateY(0);
}

.img__wrap1 {
  position: relative;
  height: 550px;
  width: 380px;
}

.img__description_layer1 {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(23, 35, 51, 0.6);
  color: #f96495;
  visibility: hidden;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;

  /* transition effect. not necessary */
  transition: opacity 0.2s, visibility 0.2s;
}

.img__wrap1:hover .img__description_layer1 {
  visibility: visible;
  opacity: 1;
}

.img__description1 {
  transition: 0.2s;
  transform: translateY(1em);
}

.img__wrap1:hover .img__description1 {
  transform: translateY(0);
}

.f14 {
  font-size: 14px;
}

.loading {
  width: 100%;
  text-align: center;
  vertical-align: center;
  z-index: 9999;
  opacity: 10;
}
.overlay {
  background: #e9e9e9;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.5;
}
#overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  padding-top: 10px;
}

#cover-spin {
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 9999;
}

@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

#cover-spin::after {
  content: "";
  display: block;
  position: absolute;
  left: 48%;
  top: 40%;
  width: 40px;
  height: 40px;
}

.column {
  float: left;
  width: 20%;
}
.column1 {
  float: left;
  width: 33.33%;
}

.pl-40 {
  padding-left: 40px;
  padding-right: 40px;
}
.example1 {
  position: relative;
  padding: 0;
  width: 550px;
  display: block;
  cursor: pointer;
  overflow: hidden;
  border-radius: 40px;
  border: 2px solid black;
}

form.example1 input[type="text"] {
  padding: 10px;
  font-size: 17px;
  border: 1px solid grey;
  float: left;
  width: 90%;
  background: #f1f1f1;
}

form.example1 button {
  float: left;
  width: 10%;
  padding: 10px;
  background: #8ab77d;
  color: white;
  font-size: 17px;
  border: 1px solid grey;
  border-left: none;
  cursor: pointer;
}

form.example1 button:hover {
  background: #8ab77d;
}

form.example1::after {
  content: "";
  clear: both;
  display: table;
}

.third-c {
  column-count: 3;
  column-gap: 10px;
}

.margin_25px {
  margin-left: -34px;
}
.redData {
  border: 1px solid red;
}

.transparent {
  background-color: transparent !important;
  box-shadow: inset 0px 1px 0 rgba(0, 0, 0, 0.075);
}
.left-border-none {
  border-left: none !important;
  box-shadow: inset 0px 1px 0 rgba(0, 0, 0, 0.075);
}

.marginTopData {
  margin-top: -28px;
}
.locButton {
  margin-top: 20px;
  background-color: rgb(138, 183, 125);
  width: 145px;
  height: 36px;
  padding: 8px;
  border-radius: 23px;
}
.vendor {
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 700px;
  justify-content: center;
  align-items: center;
  padding: 15px;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
.login-center {
  position: absolute;
  right: 0;
  margin: 20px;
  max-width: 300px;
  padding: 16px;
  background-color: white;
}

/*//////////////////////////////////////////////////////////////////
[ login ]*/

.limiter {
  width: 100%;
  margin: 0 auto;
}

.container-login100 {
  width: 100%;
  min-height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 15px;

  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: 1;
}

.container-login100::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.9);
}

.wrap-login100 {
  width: 500px;
  border-radius: 10px;
  overflow: hidden;
  padding: 55px 55px 37px 55px;

  background: #8ab77d;
}

/*------------------------------------------------------------------
  [ Form ]*/

.login100-form {
  width: 100%;
}

.login100-form-logo {
  font-size: 60px;
  color: #333333;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
  margin: 0 auto;
}

.login100-form-title {
  font-family: Poppins-Medium;
  font-size: 30px;
  color: #fff;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;

  display: block;
}

/*------------------------------------------------------------------
  [ Input ]*/

.wrap-input100 {
  width: 100%;
  position: relative;
  border-bottom: 2px solid rgba(255, 255, 255, 0.24);
  margin-bottom: 30px;
}

.input100 {
  font-family: Poppins-Regular;
  font-size: 16px;
  color: #fff;
  line-height: 1.2;

  display: block;
  width: 100%;
  height: 45px;
  background: transparent;
  padding: 0 5px 0 38px;
}

/*---------------------------------------------*/
.focus-input100 {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.focus-input100::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;

  background: #fff;
}

.focus-input100::after {
  font-family: Material-Design-Iconic-Font;
  font-size: 22px;
  color: #fff;

  content: attr(data-placeholder);
  display: block;
  width: 100%;
  position: absolute;
  top: 6px;
  left: 0px;
  padding-left: 5px;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.input100:focus {
  padding-left: 5px;
}

.input100:focus + .focus-input100::after {
  top: -22px;
  font-size: 18px;
}

.input100:focus + .focus-input100::before {
  width: 100%;
}

.has-val.input100 + .focus-input100::after {
  top: -22px;
  font-size: 18px;
}

.has-val.input100 + .focus-input100::before {
  width: 100%;
}

.has-val.input100 {
  padding-left: 5px;
}

/*==================================================================
  [ Restyle Checkbox ]*/

.contact100-form-checkbox {
  padding-left: 5px;
  padding-top: 5px;
  padding-bottom: 35px;
}

.input-checkbox100 {
  display: none;
}

.label-checkbox100 {
  font-family: Poppins-Regular;
  font-size: 13px;
  color: #fff;
  line-height: 1.2;

  display: block;
  position: relative;
  padding-left: 26px;
  cursor: pointer;
}

.label-checkbox100::before {
  content: "\f26b";
  font-family: Material-Design-Iconic-Font;
  font-size: 13px;
  color: transparent;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 2px;
  background: #fff;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.input-checkbox100:checked + .label-checkbox100::before {
  color: #555555;
}

/*------------------------------------------------------------------
  [ Button ]*/
.container-login100-form-btn {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.login100-form-btn {
  font-family: Poppins-Medium;
  font-size: 16px;
  color: #555555;
  line-height: 1.2;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  min-width: 120px;
  height: 50px;
  border-radius: 25px;

  background: #9152f8;
  background: -webkit-linear-gradient(bottom, #7579ff, #b224ef);
  background: -o-linear-gradient(bottom, #7579ff, #b224ef);
  background: -moz-linear-gradient(bottom, #7579ff, #b224ef);
  background: linear-gradient(bottom, #7579ff, #b224ef);
  position: relative;
  z-index: 1;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.login100-form-btn::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  border-radius: 25px;
  background-color: #fff;
  top: 0;
  left: 0;
  opacity: 1;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.login100-form-btn:hover {
  color: #fff;
}

.login100-form-btn:hover:before {
  opacity: 0;
}

/*------------------------------------------------------------------
  [ Responsive ]*/

@media (max-width: 576px) {
  .wrap-login100 {
    padding: 55px 15px 37px 15px;
  }
}

.screen-image {
  background: url(/images/Picture2.png);
  width: 100%;
  height: 200px;
}

.vendor-circle {
  padding-top: 30px;
  color: white;
  width: 100px;
  height: 100px;
  border: 1px solid;
  background-color: #8ab77d;
  border-radius: 60px;
}

.vendor-circle1 {
  padding-top: 30px;
  color: white;
  width: 100px;
  height: 100px;
  border: 1px solid;
  background-color: #8ab77d;
  border-radius: 60px;
}

.pad10 {
  padding: 15px;
  font-size: 14px;
}
.pad15 {
  padding: 12px;
  font-size: 16px;
}

th {
  text-align: center;
}

@media print {
  .printThisFull {
    width: 100%;
    height: auto;
    page-break-after: always;
  }
}

.mydiv {
  position: relative;
  height: 300px;
  width: 100%;
  overflow: hidden;
}

.imgData {
  width: 600px;
  height: 1000px;
}

@media all {
  .page-break {
    display: none;
  }
}

@media print {
  .page-break {
    display: block;
    page-break-before: always;
  }
  .page-right {
    font-size: 15px;
    text-align: right !important;
  }
}
@media print {
  @page {
    size: auto;
    margin: 0mm;
  }
}

@media print {
  header,
  footer {
    display: none;
  }
}

@media print {
  .rotate {
    transform: rotate(90deg) translateY(-100%);
    transform-origin: top left;
  }
}

@media print {
  tr.divFooter {
    position: fixed;
    bottom: 0;
  }
}

.pad5 {
  padding: 5px;
  font-size: 12px;
}

.highcharts-figure,
.highcharts-data-table table {
  min-width: 320px;
  max-width: 800px;
  margin: 1em auto;
}

.highcharts-data-table table {
  font-family: Verdana, sans-serif;
  border-collapse: collapse;
  border: 1px solid #ebebeb;
  margin: 10px auto;
  text-align: center;
  width: 100%;
  max-width: 500px;
}
.highcharts-data-table caption {
  padding: 1em 0;
  font-size: 1.2em;
  color: #555;
}
.highcharts-data-table th {
  font-weight: 600;
  padding: 0.5em;
}
.highcharts-data-table td,
.highcharts-data-table th,
.highcharts-data-table caption {
  padding: 0.5em;
}
.highcharts-data-table thead tr,
.highcharts-data-table tr:nth-child(even) {
  background: #f8f8f8;
}
.highcharts-data-table tr:hover {
  background: #f1f7ff;
}

.form-control-data {
  display: block;
  height: 25px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
  box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
  -webkit-transition: border-color ease-in-out 0.15s,
    box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  -webkit-transition: border-color ease-in-out 0.15s,
    -webkit-box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s,
    -webkit-box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s,
    -webkit-box-shadow ease-in-out 0.15s;
}

.underline {
  text-decoration: underline !important;
  color: blue;
}

.vendor-circle4 {
  padding-top: 19px;
  color: white;
  width: 100px;
  height: 100px;
  border: 1px solid;
  background-color: #8ab77d;
  border-radius: 60px;
}

.red-error-data {
  border-color: red;
}

.pad10new {
  padding: 10px;
  font-size: 10px;
}

.total-item-round {
  width: 24px;
  position: absolute;
  height: 24px;
  line-height: 24px;
  border-radius: 50%;
  text-align: center;
  font-size: 11px;
  background-color: blue;
  color: #ffffff;
  margin: -11px;
}

.item-round {
  width: 24px;
  height: 24px;
  line-height: 24px;
  border-radius: 50%;
  text-align: center;
  font-size: 11px;
  background-color: blue;
  color: #ffffff;
}
.ReactTable {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.ReactTable * {
    box-sizing: border-box
}

.ReactTable .rt-table {
    -webkit-box-flex: 1;
    -ms-flex: auto 1;
    flex: auto 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%;
    border-collapse: collapse;
    overflow: auto
}

.ReactTable .rt-thead {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.ReactTable .rt-thead.-headerGroups {
    background: rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05)
}

.ReactTable .rt-thead.-filters {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.ReactTable .rt-thead.-filters input,
.ReactTable .rt-thead.-filters select {
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #fff;
    padding: 5px 7px;
    font-size: inherit;
    border-radius: 3px;
    font-weight: normal;
    outline-width: 0
}

.ReactTable .rt-thead.-filters .rt-th {
    border-right: 1px solid rgba(0, 0, 0, 0.02)
}

.ReactTable .rt-thead.-header {
    box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.15)
}

.ReactTable .rt-thead .rt-tr {
    text-align: center
}

.ReactTable .rt-thead .rt-th,
.ReactTable .rt-thead .rt-td {
    text-align: 'right';
    padding: 5px 5px;
    line-height: normal;
    position: relative;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
    transition: box-shadow .3s cubic-bezier(.175, .885, .32, 1.275);
    box-shadow: inset 0 0 0 0 transparent;
}

.ReactTable .rt-thead .rt-th.-sort-asc,
.ReactTable .rt-thead .rt-td.-sort-asc {
    box-shadow: inset 0 3px 0 0 rgba(0, 0, 0, 0.6)
}

.ReactTable .rt-thead .rt-th.-sort-desc,
.ReactTable .rt-thead .rt-td.-sort-desc {
    box-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, 0.6)
}

.ReactTable .rt-thead .rt-th.-cursor-pointer,
.ReactTable .rt-thead .rt-td.-cursor-pointer {
    cursor: pointer
}

.ReactTable .rt-thead .rt-th:last-child,
.ReactTable .rt-thead .rt-td:last-child {
    border-right: 0
}

.ReactTable .rt-thead .rt-th:focus {
    outline-width: 0
}

.ReactTable .rt-thead .rt-resizable-header {
    overflow: visible;
}

.ReactTable .rt-thead .rt-resizable-header:last-child {
    overflow: hidden
}

.ReactTable .rt-thead .rt-resizable-header-content {
    overflow: hidden;
    text-overflow: ellipsis
}

.ReactTable .rt-thead .rt-header-pivot {
    border-right-color: #f7f7f7
}

.ReactTable .rt-thead .rt-header-pivot:after,
.ReactTable .rt-thead .rt-header-pivot:before {
    left: 100%;
    top: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none
}

.ReactTable .rt-thead .rt-header-pivot:after {
    border-color: rgba(255, 255, 255, 0);
    border-left-color: #fff;
    border-width: 8px;
    margin-top: -8px
}

.ReactTable .rt-thead .rt-header-pivot:before {
    border-color: rgba(102, 102, 102, 0);
    border-left-color: #f7f7f7;
    border-width: 10px;
    margin-top: -10px
}

.ReactTable .rt-tbody {
    -webkit-box-flex: 99999;
    -ms-flex: 99999 1 auto;
    flex: 99999 1 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow: auto;
}

.ReactTable .rt-tbody .rt-tr-group {
    border-bottom: solid 1px rgba(0, 0, 0, 0.05);
}

.ReactTable .rt-tbody .rt-tr-group:last-child {
    border-bottom: 0
}

.ReactTable .rt-tbody .rt-td {
    text-align: right;
    border-right: 1px solid rgba(0, 0, 0, 0.02);
    color: blue;
    text-decoration: underline;
    white-space: nowrap;
}

.ReactTable .rt-tbody .rt-td:last-child {
    border-right: 0
}

.ReactTable .rt-tbody .rt-expandable {
    cursor: pointer;
    text-overflow: clip
}

.ReactTable .rt-tr-group {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch
}

.ReactTable .rt-tr {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex
}

.ReactTable .rt-th,
.ReactTable .rt-td {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0px;
    flex: 1 0 0;
    text-overflow: ellipsis;
    padding: 7px 5px;
    overflow: hidden;
    transition: .3s ease;
    transition-property: width, min-width, padding, opacity;
}

.ReactTable .rt-th.-hidden,
.ReactTable .rt-td.-hidden {
    width: 0 !important;
    min-width: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    opacity: 0 !important
}

.ReactTable .rt-expander {
    display: inline-block;
    position: relative;
    margin: 0;
    color: transparent;
    margin: 0 10px;
}

.ReactTable .rt-expander:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(-90deg);
    transform: translate(-50%, -50%) rotate(-90deg);
    border-left: 5.04px solid transparent;
    border-right: 5.04px solid transparent;
    border-top: 7px solid rgba(0, 0, 0, 0.8);
    transition: all .3s cubic-bezier(.175, .885, .32, 1.275);
    cursor: pointer
}

.ReactTable .rt-expander.-open:after {
    -webkit-transform: translate(-50%, -50%) rotate(0);
    transform: translate(-50%, -50%) rotate(0)
}

.ReactTable .rt-resizer {
    display: inline-block;
    position: absolute;
    width: 36px;
    top: 0;
    bottom: 0;
    right: -18px;
    cursor: col-resize;
    z-index: 10
}

.ReactTable .rt-tfoot {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.15);
}

.ReactTable .rt-tfoot .rt-td {
    border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.ReactTable .rt-tfoot .rt-td:last-child {
    border-right: 0
}

.ReactTable.-striped .rt-tr.-odd {
    background: rgb(0 0 0 / 21%);
}

.ReactTable.-highlight .rt-tbody .rt-tr:not(.-padRow):hover {
    background: rgba(0, 0, 0, 0.05)
}

.ReactTable .-pagination {
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 3px;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
    border-top: 2px solid rgba(0, 0, 0, 0.1);
}

.ReactTable .-pagination input,
.ReactTable .-pagination select {
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #fff;
    padding: 5px 7px;
    font-size: inherit;
    border-radius: 3px;
    font-weight: normal;
    outline-width: 0
}

.ReactTable .-pagination .-btn {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 3px;
    padding: 6px;
    font-size: 1em;
    color: rgba(0, 0, 0, 0.6);
    background: rgba(0, 0, 0, 0.1);
    transition: all .1s ease;
    cursor: pointer;
    outline-width: 0;
}

.ReactTable .-pagination .-btn[disabled] {
    opacity: .5;
    cursor: default
}

.ReactTable .-pagination .-btn:not([disabled]):hover {
    background: rgba(0, 0, 0, 0.3);
    color: #fff
}

.ReactTable .-pagination .-previous,
.ReactTable .-pagination .-next {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    text-align: center
}

.ReactTable .-pagination .-center {
    -webkit-box-flex: 1.5;
    -ms-flex: 1.5;
    flex: 1.5;
    text-align: center;
    margin-bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: distribute;
    justify-content: space-around
}

.ReactTable .-pagination .-pageInfo {
    display: inline-block;
    margin: 3px 10px;
    white-space: nowrap
}

.ReactTable .-pagination .-pageJump {
    display: inline-block;
}

.ReactTable .-pagination .-pageJump input {
    width: 70px;
    text-align: center
}

.ReactTable .-pagination .-pageSizeOptions {
    margin: 3px 10px
}

.ReactTable .rt-noData {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.8);
    transition: all .3s ease;
    z-index: 1;
    pointer-events: none;
    padding: 20px;
    color: rgba(0, 0, 0, 0.5)
}

.ReactTable .-loading {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    transition: all .3s ease;
    z-index: -1;
    opacity: 0;
    pointer-events: none;
}

.ReactTable .-loading>div {
    position: absolute;
    display: block;
    text-align: center;
    width: 100%;
    top: 50%;
    left: 0;
    font-size: 15px;
    color: rgba(0, 0, 0, 0.6);
    -webkit-transform: translateY(-52%);
    transform: translateY(-52%);
    transition: all .3s cubic-bezier(.25, .46, .45, .94)
}

.ReactTable .-loading.-active {
    opacity: 1;
    z-index: 2;
    pointer-events: all;
}

.ReactTable .-loading.-active>div {
    -webkit-transform: translateY(50%);
    transform: translateY(50%)
}

.ReactTable .rt-resizing .rt-th,
.ReactTable .rt-resizing .rt-td {
    transition: none !important;
    cursor: col-resize;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

/* .ReactTable .rt-tbody .rt-td {
    text-align: right;
    border-right: 1px solid rgba(0, 0, 0, 0.02);
    color: blue;
    text-decoration: underline;
} */.react-datepicker-popper[data-placement^="bottom"] .react-datepicker__triangle, .react-datepicker-popper[data-placement^="top"] .react-datepicker__triangle, .react-datepicker__year-read-view--down-arrow,
.react-datepicker__month-read-view--down-arrow,
.react-datepicker__month-year-read-view--down-arrow {
  margin-left: -8px;
  position: absolute;
}

.react-datepicker-popper[data-placement^="bottom"] .react-datepicker__triangle, .react-datepicker-popper[data-placement^="top"] .react-datepicker__triangle, .react-datepicker__year-read-view--down-arrow,
.react-datepicker__month-read-view--down-arrow,
.react-datepicker__month-year-read-view--down-arrow, .react-datepicker-popper[data-placement^="bottom"] .react-datepicker__triangle::before, .react-datepicker-popper[data-placement^="top"] .react-datepicker__triangle::before, .react-datepicker__year-read-view--down-arrow::before,
.react-datepicker__month-read-view--down-arrow::before,
.react-datepicker__month-year-read-view--down-arrow::before {
  box-sizing: content-box;
  position: absolute;
  border: 8px solid transparent;
  height: 0;
  width: 1px;
}

.react-datepicker-popper[data-placement^="bottom"] .react-datepicker__triangle::before, .react-datepicker-popper[data-placement^="top"] .react-datepicker__triangle::before, .react-datepicker__year-read-view--down-arrow::before,
.react-datepicker__month-read-view--down-arrow::before,
.react-datepicker__month-year-read-view--down-arrow::before {
  content: "";
  z-index: -1;
  border-width: 8px;
  left: -8px;
  border-bottom-color: #aeaeae;
}

.react-datepicker-popper[data-placement^="bottom"] .react-datepicker__triangle {
  top: 0;
  margin-top: -8px;
}

.react-datepicker-popper[data-placement^="bottom"] .react-datepicker__triangle, .react-datepicker-popper[data-placement^="bottom"] .react-datepicker__triangle::before {
  border-top: none;
  border-bottom-color: #f0f0f0;
}

.react-datepicker-popper[data-placement^="bottom"] .react-datepicker__triangle::before {
  top: -1px;
  border-bottom-color: #aeaeae;
}

.react-datepicker-popper[data-placement^="top"] .react-datepicker__triangle, .react-datepicker__year-read-view--down-arrow,
.react-datepicker__month-read-view--down-arrow,
.react-datepicker__month-year-read-view--down-arrow {
  bottom: 0;
  margin-bottom: -8px;
}

.react-datepicker-popper[data-placement^="top"] .react-datepicker__triangle, .react-datepicker__year-read-view--down-arrow,
.react-datepicker__month-read-view--down-arrow,
.react-datepicker__month-year-read-view--down-arrow, .react-datepicker-popper[data-placement^="top"] .react-datepicker__triangle::before, .react-datepicker__year-read-view--down-arrow::before,
.react-datepicker__month-read-view--down-arrow::before,
.react-datepicker__month-year-read-view--down-arrow::before {
  border-bottom: none;
  border-top-color: #fff;
}

.react-datepicker-popper[data-placement^="top"] .react-datepicker__triangle::before, .react-datepicker__year-read-view--down-arrow::before,
.react-datepicker__month-read-view--down-arrow::before,
.react-datepicker__month-year-read-view--down-arrow::before {
  bottom: -1px;
  border-top-color: #aeaeae;
}

.react-datepicker-wrapper {
  display: inline-block;
}

.react-datepicker {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.8rem;
  background-color: #fff;
  color: #000;
  border: 1px solid #aeaeae;
  border-radius: 0.3rem;
  display: inline-block;
  position: relative;
}

.react-datepicker--time-only .react-datepicker__triangle {
  left: 35px;
}

.react-datepicker--time-only .react-datepicker__time-container {
  border-left: 0;
}

.react-datepicker--time-only .react-datepicker__time {
  border-radius: 0.3rem;
}

.react-datepicker--time-only .react-datepicker__time-box {
  border-radius: 0.3rem;
}

.react-datepicker__triangle {
  position: absolute;
  left: 50px;
}

.react-datepicker-popper {
  z-index: 1;
}

.react-datepicker-popper[data-placement^="bottom"] {
  margin-top: 10px;
}

.react-datepicker-popper[data-placement^="top"] {
  margin-bottom: 10px;
}

.react-datepicker-popper[data-placement^="right"] {
  margin-left: 8px;
}

.react-datepicker-popper[data-placement^="right"] .react-datepicker__triangle {
  left: auto;
  right: 42px;
}

.react-datepicker-popper[data-placement^="left"] {
  margin-right: 8px;
}

.react-datepicker-popper[data-placement^="left"] .react-datepicker__triangle {
  left: 42px;
  right: auto;
}

.react-datepicker__header {
  text-align: center;
  background-color: #f0f0f0;
  border-bottom: 1px solid #aeaeae;
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem;
  padding-top: 8px;
  position: relative;
}

.react-datepicker__header--time {
  padding-bottom: 8px;
  padding-left: 5px;
  padding-right: 5px;
}

.react-datepicker__year-dropdown-container--select,
.react-datepicker__month-dropdown-container--select,
.react-datepicker__month-year-dropdown-container--select,
.react-datepicker__year-dropdown-container--scroll,
.react-datepicker__month-dropdown-container--scroll,
.react-datepicker__month-year-dropdown-container--scroll {
  display: inline-block;
  margin: 0 2px;
}

.react-datepicker__current-month,
.react-datepicker-time__header {
  margin-top: 0;
  color: #000;
  font-weight: bold;
  font-size: 0.944rem;
}

.react-datepicker-time__header {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.react-datepicker__navigation {
  background: none;
  line-height: 1.7rem;
  text-align: center;
  cursor: pointer;
  position: absolute;
  top: 10px;
  width: 0;
  padding: 0;
  border: 0.45rem solid transparent;
  z-index: 1;
  height: 10px;
  width: 10px;
  text-indent: -999em;
  overflow: hidden;
}

.react-datepicker__navigation--previous {
  left: 10px;
  border-right-color: #ccc;
}

.react-datepicker__navigation--previous:hover {
  border-right-color: #b3b3b3;
}

.react-datepicker__navigation--previous--disabled, .react-datepicker__navigation--previous--disabled:hover {
  border-right-color: #e6e6e6;
  cursor: default;
}

.react-datepicker__navigation--next {
  right: 10px;
  border-left-color: #ccc;
}

.react-datepicker__navigation--next--with-time:not(.react-datepicker__navigation--next--with-today-button) {
  right: 80px;
}

.react-datepicker__navigation--next:hover {
  border-left-color: #b3b3b3;
}

.react-datepicker__navigation--next--disabled, .react-datepicker__navigation--next--disabled:hover {
  border-left-color: #e6e6e6;
  cursor: default;
}

.react-datepicker__navigation--years {
  position: relative;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.react-datepicker__navigation--years-previous {
  top: 4px;
  border-top-color: #ccc;
}

.react-datepicker__navigation--years-previous:hover {
  border-top-color: #b3b3b3;
}

.react-datepicker__navigation--years-upcoming {
  top: -4px;
  border-bottom-color: #ccc;
}

.react-datepicker__navigation--years-upcoming:hover {
  border-bottom-color: #b3b3b3;
}

.react-datepicker__month-container {
  float: left;
}

.react-datepicker__month {
  margin: 0.4rem;
  text-align: center;
}

.react-datepicker__time-container {
  float: right;
  border-left: 1px solid #aeaeae;
  width: 70px;
}

.react-datepicker__time-container--with-today-button {
  display: inline;
  border: 1px solid #aeaeae;
  border-radius: 0.3rem;
  position: absolute;
  right: -72px;
  top: 0;
}

.react-datepicker__time-container .react-datepicker__time {
  position: relative;
  background: white;
}

.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box {
  width: 70px;
  overflow-x: hidden;
  margin: 0 auto;
  text-align: center;
}

.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list {
  list-style: none;
  margin: 0;
  height: calc(195px + (1.7rem / 2));
  overflow-y: scroll;
  padding-right: 0px;
  padding-left: 0px;
  width: 100%;
  box-sizing: content-box;
}

.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item {
  height: 30px;
  padding: 5px 10px;
}

.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item:hover {
  cursor: pointer;
  background-color: #f0f0f0;
}

.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--selected {
  background-color: #216ba5;
  color: white;
  font-weight: bold;
}

.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--selected:hover {
  background-color: #216ba5;
}

.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--disabled {
  color: #ccc;
}

.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--disabled:hover {
  cursor: default;
  background-color: transparent;
}

.react-datepicker__week-number {
  color: #ccc;
  display: inline-block;
  width: 1.7rem;
  line-height: 1.7rem;
  text-align: center;
  margin: 0.166rem;
}

.react-datepicker__week-number.react-datepicker__week-number--clickable {
  cursor: pointer;
}

.react-datepicker__week-number.react-datepicker__week-number--clickable:hover {
  border-radius: 0.3rem;
  background-color: #f0f0f0;
}

.react-datepicker__day-names,
.react-datepicker__week {
  white-space: nowrap;
}

.react-datepicker__day-name,
.react-datepicker__day,
.react-datepicker__time-name {
  color: #000;
  display: inline-block;
  width: 1.7rem;
  line-height: 1.7rem;
  text-align: center;
  margin: 0.166rem;
}

.react-datepicker__day {
  cursor: pointer;
}

.react-datepicker__day:hover {
  border-radius: 0.3rem;
  background-color: #f0f0f0;
}

.react-datepicker__day--today {
  font-weight: bold;
}

.react-datepicker__day--highlighted {
  border-radius: 0.3rem;
  background-color: #3dcc4a;
  color: #fff;
}

.react-datepicker__day--highlighted:hover {
  background-color: #32be3f;
}

.react-datepicker__day--highlighted-custom-1 {
  color: magenta;
}

.react-datepicker__day--highlighted-custom-2 {
  color: green;
}

.react-datepicker__day--selected, .react-datepicker__day--in-selecting-range, .react-datepicker__day--in-range {
  border-radius: 0.3rem;
  background-color: #216ba5;
  color: #fff;
}

.react-datepicker__day--selected:hover, .react-datepicker__day--in-selecting-range:hover, .react-datepicker__day--in-range:hover {
  background-color: #1d5d90;
}

.react-datepicker__day--keyboard-selected {
  border-radius: 0.3rem;
  background-color: #2a87d0;
  color: #fff;
}

.react-datepicker__day--keyboard-selected:hover {
  background-color: #1d5d90;
}

.react-datepicker__day--in-selecting-range:not(.react-datepicker__day--in-range) {
  background-color: rgba(33, 107, 165, 0.5);
}

.react-datepicker__month--selecting-range .react-datepicker__day--in-range:not(.react-datepicker__day--in-selecting-range) {
  background-color: #f0f0f0;
  color: #000;
}

.react-datepicker__day--disabled {
  cursor: default;
  color: #ccc;
}

.react-datepicker__day--disabled:hover {
  background-color: transparent;
}

.react-datepicker__input-container {
  position: relative;
  display: inline-block;
}

.react-datepicker__year-read-view,
.react-datepicker__month-read-view,
.react-datepicker__month-year-read-view {
  border: 1px solid transparent;
  border-radius: 0.3rem;
}

.react-datepicker__year-read-view:hover,
.react-datepicker__month-read-view:hover,
.react-datepicker__month-year-read-view:hover {
  cursor: pointer;
}

.react-datepicker__year-read-view:hover .react-datepicker__year-read-view--down-arrow,
.react-datepicker__year-read-view:hover .react-datepicker__month-read-view--down-arrow,
.react-datepicker__month-read-view:hover .react-datepicker__year-read-view--down-arrow,
.react-datepicker__month-read-view:hover .react-datepicker__month-read-view--down-arrow,
.react-datepicker__month-year-read-view:hover .react-datepicker__year-read-view--down-arrow,
.react-datepicker__month-year-read-view:hover .react-datepicker__month-read-view--down-arrow {
  border-top-color: #b3b3b3;
}

.react-datepicker__year-read-view--down-arrow,
.react-datepicker__month-read-view--down-arrow,
.react-datepicker__month-year-read-view--down-arrow {
  border-top-color: #ccc;
  float: right;
  margin-left: 20px;
  top: 8px;
  position: relative;
  border-width: 0.45rem;
}

.react-datepicker__year-dropdown,
.react-datepicker__month-dropdown,
.react-datepicker__month-year-dropdown {
  background-color: #f0f0f0;
  position: absolute;
  width: 50%;
  left: 25%;
  top: 30px;
  z-index: 1;
  text-align: center;
  border-radius: 0.3rem;
  border: 1px solid #aeaeae;
}

.react-datepicker__year-dropdown:hover,
.react-datepicker__month-dropdown:hover,
.react-datepicker__month-year-dropdown:hover {
  cursor: pointer;
}

.react-datepicker__year-dropdown--scrollable,
.react-datepicker__month-dropdown--scrollable,
.react-datepicker__month-year-dropdown--scrollable {
  height: 150px;
  overflow-y: scroll;
}

.react-datepicker__year-option,
.react-datepicker__month-option,
.react-datepicker__month-year-option {
  line-height: 20px;
  width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.react-datepicker__year-option:first-of-type,
.react-datepicker__month-option:first-of-type,
.react-datepicker__month-year-option:first-of-type {
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem;
}

.react-datepicker__year-option:last-of-type,
.react-datepicker__month-option:last-of-type,
.react-datepicker__month-year-option:last-of-type {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border-bottom-left-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}

.react-datepicker__year-option:hover,
.react-datepicker__month-option:hover,
.react-datepicker__month-year-option:hover {
  background-color: #ccc;
}

.react-datepicker__year-option:hover .react-datepicker__navigation--years-upcoming,
.react-datepicker__month-option:hover .react-datepicker__navigation--years-upcoming,
.react-datepicker__month-year-option:hover .react-datepicker__navigation--years-upcoming {
  border-bottom-color: #b3b3b3;
}

.react-datepicker__year-option:hover .react-datepicker__navigation--years-previous,
.react-datepicker__month-option:hover .react-datepicker__navigation--years-previous,
.react-datepicker__month-year-option:hover .react-datepicker__navigation--years-previous {
  border-top-color: #b3b3b3;
}

.react-datepicker__year-option--selected,
.react-datepicker__month-option--selected,
.react-datepicker__month-year-option--selected {
  position: absolute;
  left: 15px;
}

.react-datepicker__close-icon {
  background-color: transparent;
  border: 0;
  cursor: pointer;
  outline: 0;
  padding: 0;
  vertical-align: middle;
  position: absolute;
  height: 16px;
  width: 16px;
  top: 25%;
  right: 7px;
}

.react-datepicker__close-icon::after {
  background-color: #216ba5;
  border-radius: 50%;
  bottom: 0;
  box-sizing: border-box;
  color: #fff;
  content: "\00d7";
  cursor: pointer;
  font-size: 12px;
  height: 16px;
  width: 16px;
  line-height: 1;
  margin: -8px auto 0;
  padding: 2px;
  position: absolute;
  right: 0px;
  text-align: center;
}

.react-datepicker__today-button {
  background: #f0f0f0;
  border-top: 1px solid #aeaeae;
  cursor: pointer;
  text-align: center;
  font-weight: bold;
  padding: 5px 0;
  clear: left;
}

.react-datepicker__portal {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  left: 0;
  top: 0;
  justify-content: center;
  align-items: center;
  display: flex;
  z-index: 2147483647;
}

.react-datepicker__portal .react-datepicker__day-name,
.react-datepicker__portal .react-datepicker__day,
.react-datepicker__portal .react-datepicker__time-name {
  width: 3rem;
  line-height: 3rem;
}

@media (max-width: 400px), (max-height: 550px) {
  .react-datepicker__portal .react-datepicker__day-name,
  .react-datepicker__portal .react-datepicker__day,
  .react-datepicker__portal .react-datepicker__time-name {
    width: 2rem;
    line-height: 2rem;
  }
}

.react-datepicker__portal .react-datepicker__current-month,
.react-datepicker__portal .react-datepicker-time__header {
  font-size: 1.44rem;
}

.react-datepicker__portal .react-datepicker__navigation {
  border: 0.81rem solid transparent;
}

.react-datepicker__portal .react-datepicker__navigation--previous {
  border-right-color: #ccc;
}

.react-datepicker__portal .react-datepicker__navigation--previous:hover {
  border-right-color: #b3b3b3;
}

.react-datepicker__portal .react-datepicker__navigation--previous--disabled, .react-datepicker__portal .react-datepicker__navigation--previous--disabled:hover {
  border-right-color: #e6e6e6;
  cursor: default;
}

.react-datepicker__portal .react-datepicker__navigation--next {
  border-left-color: #ccc;
}

.react-datepicker__portal .react-datepicker__navigation--next:hover {
  border-left-color: #b3b3b3;
}

.react-datepicker__portal .react-datepicker__navigation--next--disabled, .react-datepicker__portal .react-datepicker__navigation--next--disabled:hover {
  border-left-color: #e6e6e6;
  cursor: default;
}
.react-responsive-modal-overlay {
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 1000;
  padding: 1.2rem;
}

.react-responsive-modal-modal {
  max-width: 800px;
  position: relative;
  padding: 1.2rem;
  background: #ffffff;
  background-clip: padding-box;
  box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.25);
  margin: 0 auto;
}

.react-responsive-modal-modalCenter {
  margin: auto;
}

.react-responsive-modal-closeButton {
  position: absolute;
  top: 14px;
  right: 14px;
  border: none;
  padding: 0;
  cursor: pointer;
  background-color: transparent;
  display: flex;
}

@keyframes react-responsive-modal-fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes react-responsive-modal-fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*------------------------------------------------------------------
        File Name: responsive.css
        Template Name: auricle
-------------------------------------------------------------------*/

@media (min-width: 1200px) and (max-width: 1390px) {

    /** ecommere style 2 **/
    
    .header_style_ecomm2 .header_top .float-left, .header_style_ecomm2 .header_top .float-right {
        width: 100%;
    }
    .header_style_ecomm2 .header_top .float-left ul, .header_style_ecomm2 .header_top .float-right ul {
        display: flex;
        justify-content: center;
        margin: 4px 0;
    }
    .header_style_ecomm2 .header_top li {
        font-size: 13px;
    }
    
    .header_style_ecomm2 .main_menu div.menu ul li a {
        font-size: 12px;
        padding: 15px 8px;
    }
    
    .right_cart_section ul li {
        margin-right: 20px;
    }
    
    .right_cart_section ul li i {
        margin-right: 5px;
        margin-top: 0px;
        float: left;
        color: #000;
        font-size: 21px;
    }
    
    .search_style_2 .top_search_bar button.submit_search {
        width: 110px;
    }
    
    }
    
    @media (min-width: 992px) and (max-width: 1199px) {
        .body {
            overflow-x: hidden;
        }
        .container {
            width: 100%;
            max-width: 990px;
        }
        .slide_cont h2 {
            font-size: 45px;
            line-height: 60px;
        }
        .cont_theme_blog h3 {
           font-size: 42px;
           line-height: 60px;
           font-weight: 600;
        }
        .home_page1 .slide_cont {
            margin-top: 145px;
        }
        .layout_screen {
            left: 0;
            width: 140%;
        }
        .padding_inner {
            padding-top: 0;
            padding-bottom: 0;
        }
        .layout_pur_minus {
            margin-bottom: 0;
        }
        .layout_padding {
            margin: 0 !important;
        }
        .bt_main {
           height: 48px;
           padding: 0 25px; 
        }
        .team_member_img img {
            width: 100%;
        }
        .footer_icon img {
            width: 50px;
        }
        /** side bar **/
        .toggle_side_bar {
            display: block;
        }
        .sidenav {
            height: 100%;
            width: 0;
        }
        .sidebar_page {
            margin-left: 0;
        }
        .sidenav .closebtn {
            display: block;
        }
        /** home pages **/
        .header .social_icons {
            border-top: none;
            padding-top: 0;
        }
        .target_section {
            padding: 50px;
            margin-top: 20px;
            margin-bottom: 45px;
        }
        .slide_banner4 h2 strong {
            font-size: 62px;
            top: 10px;
        }
        .service_blog1 {
            padding: 50px 10px;
            margin: 15px 0;
        }
        .contact_form {
            padding: 55px 15px;
        }
        .blog_section.style_2 .blog_head {
            font-size: 20px;
            line-height: 28px;
        }
        .header.header_style4.header_left_side .main_menu {
            float: right !important;
        }
        .header_bottom .main_menu {
            padding: 1px;
        }
        .header_style5 div.menu > ul > li > a {
            padding: 10px 18px;
        }
        .header_information .right_head {
            display: none;
        }
        .logo img {
            width: 190px;
            margin: 0;
        }
        .service_info_sec {
            margin-top: 40px;
            position: relative;
            margin-bottom: -30px;
        }
        section .small_head h2 {
            font-size: 25px;
        }
        .bt_main {
            font-size: 13px;
        }
        .service_blog2 {
            padding: 35px 0;
            margin: 15px 0;
        }
        .slide_banner10 .slider_information ul li {
            width: 100%;
        }
        .play_pause_control ul {
            padding-left: 30px;
        }
        .play_pause_bt ul {
            display: flex;
        }
        .audio_and_video_version .span2 {
            width: 33.33%;
        }
        .slide_banner12 {
            background-size: cover;
        }
        section.slide_banner12 .slide_cont {
            margin-top: 120px;
        }
        .slide_banner12 .slide_cont h3 {
            font-size: 65px;
        }
        .team_blog_style_cheif .team_member_img img {
            width: auto;
        }
        .team_blog_style_cheif .owl-nav .owl-prev {
            left: 0;
        }
        .team_blog_style_cheif .owl-nav .owl-next {
            right: 0;
        }
        .slide_banner15#banner_parallax h2 {
            font-size: 42px;
            line-height: 40px;
        }
        .home_page15 section.layout_padding_2.horizontal_cross_layout {
            margin-bottom: 0;
        }
        .slide_banner16 .slide_cont h2 {
            font-size: 40px;
        }
        .slide_cont {
            margin-top: 200px;
        }
        .slide_banner16 {
            min-height: 720px;
            max-height: inherit;
        }
        .header.header_style17 .header_top.top_imform {
            display: none;
        }
        .home_page17 .heading_style_3 h2 {
            font-size: 30px;
        }
        .dentist_imfor_ser .cont_list p {
            display: none;
        }
        .dentis_team_blog .team_member_img img {
            width: auto;
        }
        .inform_dentist_botm p {
            text-align: center;
        }
        .slide_bottom_icon li {
            margin: 0 5px 10px;
        }
        .doctor_ser h3 {
            font-size: 15px;
        }
        .sidebar_menu {
            float: right;
            padding: 14px 0 0;
        }
        .header_style_ecomm2 .header_top .float-left,.header_style_ecomm2 .header_top .float-right {
            width: 100%;
        }
        .header_style_ecomm2 .header_top .float-left ul, .header_style_ecomm2 .header_top .float-right ul {
            display: flex;
            justify-content: center;
            margin: 3px 0;
        }
        .header_style_ecomm2 .header_top li {
            font-size: 12px;
        }
        .search_style_2 {
            float: left;
            width: 100%;
            margin: 20px 0;
        }
        .right_cart_section {
            display: none;
        }
        .header_style_ecomm2 .main_menu div.menu ul li a {
            font-weight: 600;
            text-transform: uppercase;
            font-size: 11px;
            padding: 15px 2px;
        }
        .header_style_ecomm2 .sidebar_menu a {
            background: #2ea6ff;
            width: 36px;
            float: right;
            height: 36px;
            border-radius: 0;
            text-align: center;
            padding: 5px 4px;
            margin: 12px 0 0;
        }
        .blue_layer_image2 h2,
        .blue_layer_image h2 {
            font-size: 30px;
            line-height: 55px;
            letter-spacing: -1px;
            margin-top: 25px;
        }
        .newslatterform form {
            width: 100%;
        }
        .header_style_ecomr3 .menu {
            width: auto;
            margin: 8px 0;
            float: left;
        }
        .header.header_style_ecomr3 .menu > ul > li > a {
            padding: 7px 24px;
        }
        .header.header_style_ecomr3 .header_top.top_imform {
            display: none;
        }
        .light_red .header.header_style_ecomr3 .menu > ul > li > a {
            color: #222;
        }
        .home_page24 .with_search_bar .menu {
            width: auto;
            margin: 9px 9px 0;
            float: left;
        }
        .skyblue .portfolio img {
            width: auto;
        }
        .effect_2 {
            margin-bottom: 30px;
        }
        .brand_logo_section li {
            width: 33.33%;
        }
        .header_funky_style a.menu-mobile {
            margin: 10px;
        }
        .infor_head li {
            margin: 8px 10px;
        }
        .slide_banner25 .slide_cont h2 {
            font-size: 45px;
        }
        .bottom_service_temp_inner {
            margin-top: 50px;
        }
        .slide_banner25 .inner_slide {
            float: right;
            margin: 60px 0 0;
        }
        .bottom_service_temp_inner h4 {
            font-size: 16px;
        }
        .header.header_funky_style .menu > ul > li > a {
            font-size: 14px;
            padding: 7px 20px;
        }
        .header_style26 .menu {
            width: auto;
            margin: 8px 0 0;
            float: left;
        }
        .inform_ser_blogs_3 ul li {
            width: 50%;
        }
        .header_style_ecomm .menu > ul > li > a {
            font-size: 11px;
            padding: 17px 9px;
            font-weight: 600;
        }
        .top_search_bar .field input {
            font-size: 12px;
        }
        
        /** home page 13 **/
        
        .header.header_style13 .menu > ul > li > a {
           font-size: 13px;
           padding-left: 12px;
           padding-right: 12px;
        }
        
        .logo.desk_logo {
           margin: 10px 15px;
        }
    }
    
    @media (min-width: 768px) and (max-width: 991px) {
        .container {
            max-width: 750px;
            width: 100%;
        }
        .slide_cont h2 {
            font-size: 35px;
            line-height: 40px;
        }
        .home_page1 .slide_cont {
            margin-top: 158px;
        }
        .layout_padding {
            padding: 80px 0 75px;
        }
        .layout_screen {
            left: -90px;
            position: relative;
            width: 180%;
        }
        .padding_inner {
            padding-top: 0;
            padding-bottom: 0;
        }
        .layout_pur_minus {
            margin-bottom: 0;
        }
        .layout_padding {
            padding: 80px 0 75px;
            margin: 0 !important;
        }
        .table_price_per p {
            font-size: 40px;
            font-weight: 300;
        }
        .team_member_img img {
            width: 100%;
        }
        /**** home page 2 add custom with arrange ****/
        .margin_bottom_30 {
            margin-bottom: 30px;
        }
        .team_blog {
            margin-bottom: 30px;
        }
        .target_section .feature_icon {
            margin-top: 25px;
        }
        .header .social_icons {
            width: 100%;
            justify-content: center;
            display: flex;
            border-top: solid rgba(255, 255, 255, .1) 1px;
            padding-top: 15px;
        }
        /** side bar **/
        .toggle_side_bar {
            display: block;
        }
        .sidenav {
            height: 100%;
            width: 0;
        }
        .sidebar_page {
            margin-left: 0;
        }
        .sidenav .closebtn {
            display: block;
        }
        /** home pages **/
        .header .social_icons {
            border-top: none;
            padding-top: 0;
        }
        .target_section {
            padding: 50px;
            margin-top: 20px;
            margin-bottom: 45px;
        }
        .slide_banner4 h2 strong {
            font-size: 62px;
            top: 10px;
        }
        .service_blog1 {
            padding: 50px 10px;
            margin: 15px 0;
        }
        .contact_form {
            padding: 55px 15px;
        }
        .blog_section.style_2 .blog_head {
            font-size: 20px;
            line-height: 28px;
        }
        .header.header_style4.header_left_side .main_menu {
            float: right !important;
        }
        .header_bottom .main_menu {
            padding: 1px;
        }
        .header_style5 div.menu > ul > li > a {
            padding: 10px 18px;
        }
        .header_information .right_head {
            display: none;
        }
        .service_info_sec {
            margin-top: 40px;
            position: relative;
            margin-bottom: -30px;
        }
        section .small_head h2 {
            font-size: 25px;
        }
        .bt_main {
            font-size: 13px;
        }
        .service_blog2 {
            padding: 35px 0;
            margin: 15px 0;
        }
        .slide_banner10 .slider_information ul li {
            width: 100%;
        }
        .play_pause_control ul {
            padding-left: 30px;
        }
        .play_pause_bt ul {
            display: flex;
        }
        .audio_and_video_version .span2 {
            width: 33.33%;
        }
        .slide_banner12 {
            background-size: cover;
        }
        section.slide_banner12 .slide_cont {
            margin-top: 120px;
        }
        .slide_banner12 .slide_cont h3 {
            font-size: 65px;
        }
        .team_blog_style_cheif .team_member_img img {
            width: auto;
        }
        .team_blog_style_cheif .owl-nav .owl-prev {
            left: 0;
        }
        .team_blog_style_cheif .owl-nav .owl-next {
            right: 0;
        }
        .slide_banner15#banner_parallax h2 {
            font-size: 42px;
            line-height: 40px;
        }
        .home_page15 section.layout_padding_2.horizontal_cross_layout {
            margin-bottom: 0;
        }
        .slide_banner16 .slide_cont h2 {
            font-size: 40px;
        }
        .slide_cont {
            margin-top: 100px;
        }
        .slide_banner16 {
            min-height: 720px;
            max-height: inherit;
        }
        .header.header_style17 .header_top.top_imform {
            display: none;
        }
        .home_page17 .heading_style_3 h2 {
            font-size: 30px;
        }
        .dentist_imfor_ser .cont_list p {
            display: none;
        }
        .dentis_team_blog .team_member_img img {
            width: auto;
        }
        .inform_dentist_botm p {
            text-align: center;
        }
        .slide_bottom_icon li {
            margin: 0 5px 10px;
        }
        .doctor_ser h3 {
            font-size: 15px;
        }
        .sidebar_menu {
            float: right;
            padding: 14px 0 0;
        }
        .header.header_style_ecomm2 .header_top {
            display: none;
        }
        .search_style_2 {
            float: left;
            width: 100%;
            margin: 20px 0;
        }
        .right_cart_section {
            position: absolute;
            top: -152px; 
        }  
        .header_bottom_thirth {
            display: none;
        }
        .header_style_ecomm2 .sidebar_menu a {
            background: #0163d2;
            width: 36px;
            float: right;
            height: 36px;
            border-radius: 0;
            text-align: center;
            padding: 5px 4px;
            margin: 12px 0 0;
        }
        .blue_layer_image2 h2,
        .blue_layer_image h2 {
            font-size: 30px;
            line-height: 55px;
            letter-spacing: -1px;
            margin-top: 25px;
        }
        .newslatterform form {
            width: 100%;
        }
        .header_style_ecomr3 .menu {
            width: auto;
            margin: 8px 0;
            float: left;
        }
        .header.header_style_ecomr3 .menu > ul > li > a {
            padding: 7px 24px;
        }
        .header.header_style_ecomr3 .header_top.top_imform {
            display: none;
        }
        .light_red .header.header_style_ecomr3 .menu > ul > li > a {
            color: #222;
        }
        .home_page24 .with_search_bar .menu {
            width: auto;
            margin: 9px 9px 0;
            float: left;
        }
        .skyblue .portfolio img {
            width: auto;
        }
        .effect_2 {
            margin-bottom: 30px;
        }
        .brand_logo_section li {
            width: 33.33%;
        }
        .header_funky_style a.menu-mobile {
            margin: 10px;
        }
        .infor_head li {
            margin: 8px 10px;
        }
        .slide_banner25 .slide_cont h2 {
            font-size: 45px;
        }
        .bottom_service_temp_inner {
            margin-top: 50px;
        }
        .slide_banner25 .inner_slide {
            float: right;
            margin: 60px 0 0;
        }
        .bottom_service_temp_inner h4 {
            font-size: 16px;
        }
        .header.header_funky_style .menu > ul > li > a {
            font-size: 14px;
            padding: 7px 20px;
        }
        .header_style26 .menu {
            width: auto;
            margin: 8px 0 0;
            float: left;
        }
        .inform_ser_blogs_3 ul li {
            width: 50%;
        }
        /* responsive menu */
        .header_style26 .menu > ul > li > a {
            padding: 7px 25px;
        }
        .cake_club .menu-mobile::after {
            top: 4px;
        }
        .cake_club .menu > ul > li a {
            font-size: 13px;
            margin: 0;
        }
        .menu-dropdown-icon::before {
            padding: 13px 15px 13px;
        }
        .header.header_style14 .header_top {
            display: none;
        }
        .header_style14 .logo {
            top: 0;
        }
        .header_style14 .logo img {
            height: 85px;
        }
        .header.header_style14 .main_menu {
            width: 100%;
            padding-left: 200px;
            margin: 25px 0 0;
        }
        .header.header_style14 .main_menu > .menu > ul > li > a {
            color: #222;
        }
        .home_page14 .main_menu .clearfix {
            top: 65px;
        }
        .home_page14 .menu-dropdown-icon::before {
            padding: 16px 15px 16px;
        }
        .slide_banner19 {
            min-height: 380px;
            padding-top: 15px;
            padding-bottom: 15px;
        }
        
        /** home page 13 **/
        
        #banner_parallax.slide_banner13 .slide_cont h2 {
            font-size: 50px;
            line-height: 58px;
            margin-top: 25px;
            margin-bottom: 25px;
        }
        .information_icon {
            margin: 15px 0 0 0;
        }
        .slide_banner13 {
            min-height: auto;
            max-height: inherit;
            padding-bottom: 50px;
        }
        .slide_cont {
            margin-top: 115px;
        }
        .berber_side_img::after {
            display: none;
        }
        .hair_menu_list_cont ul {
            float: left;
            width: 100%;
        }
        .tab_bar_section ul.nav.nav-tabs li a {
            font-size: 15px;
            font-weight: 500;
            padding: 0 10px;
            line-height: 45px;
        }
        .discount_section_inner {
            top: 0;
            left: 0;
        }
        .discount_section h4 {
            line-height: 28px;
            margin: 15px 0;
        }
        .discount_section h3 {
            color: #d19d64;
            font-size: 30px;
            margin: 10px 0;
            line-height: 38px;
        }
        .join_us_section {
            text-align: center;
        }
        .join_us_section h2 {
            margin-bottom: 15px;
        }
        .cont_theme_blog h3 {
           font-size: 35px;
           line-height: 45px;
           font-weight: 700;
       }
        
    }
    
    @media (min-width:576px) and (max-width:767px) {
        /** basic css **/
        .margin_top_30_respon {
            margin-top: 30px;
        }
        .p_data{
            padding-left: 40px;
        padding-right: 40px;
        }
        .container {
            max-width: 540px;
            width: 100%;
        }
        .inform_dentist_botm p {
            text-align: center;
        }
        p.large {
            font-size: 14px;
        }
        h2 {
           font-size: 40px;
        }
        .cont_theme_blog h3 {
           font-size: 35px;
           line-height: 45px;
           font-weight: 700;
        }
        .home_page1 #banner_slide {
            margin-bottom: 0;
        }
        .slide_cont {
            text-align: center;
        }
        .slide_bt {
            display: flex;
            justify-content: center;
        }
        .home_page1 .slide_cont {
            margin-top: 75px;
        }
        .slide_banner1 {
            min-height: auto;
        }
        .slide_cont h2 {
            font-size: 30px;
            line-height: 34px;
        }
        .slide_pc_img img {
            width: 100%;
            margin-left: 0;
            margin-top: 35px;
            right: inherit;
        }
        .slide_pc_img {
        position: relative;
        z-index: 1;
        margin-bottom: 0;
        display: flex;
        justify-content: center;
        width: 100%;
    }
        .blog_feature_img img {
            width: 100%;
        }
        .contact_form_inner {
            max-width: 430px;
            margin: 0 auto;
        }
        .right_bt {
            float: right;
            width: 100%;
            justify-content: center;
            display: flex;
            margin-top: 15px;
        }
        .right_bt a.bt_main {
            width: 100%;
        }
        .home_page1 .padding_right_left_15 {
            margin-bottom: 30px;
        }
        .layout_screen {
            left: 0;
            position: relative;
            width: 100%;
        }
        .padding_inner {
            padding-top: 25px;
            padding-bottom: 25px;
        }
        .theme_bg {
            min-height: auto;
        }
        .layout_pur_minus {
            margin-bottom: 0;
        }
        .team_member_img img {
            width: 100%;
        }
        .table_price {
            margin-bottom: 30px;
        }
        .home_page1 .layout_padding_2 {
            margin: 0 !important;
        }
        .layout_padding {
            margin: 0 !important;
        }
        .blog_section {
            margin-top: 30px;
        }
        .blog_feature_cantant {
            padding: 30px 20px 20px;
        }
        .contact_form {
            min-height: auto;
            padding: 80px 30px;
        }
        .footer_blog {
            display: flex;
            margin-bottom: 25px;
        }
        /**** home page 2 add custom with arrange ****/
        .margin_bottom_30 {
            margin-bottom: 30px;
        }
        .target_section {
            width: 100%;
            background: #fff;
            padding: 50px 25px 50px;
            box-shadow: 0 0 45px -15px #000;
            margin-top: 20px;
            margin-bottom: 30px;
        }
        .team_blog {
            margin-bottom: 30px;
        }
        .target_section .feature_icon {
            margin-top: 25px;
        }
        .header .social_icons {
            width: 100%;
            justify-content: center;
            display: flex;
            border-top: solid rgba(255, 255, 255, .1) 1px;
            padding-top: 15px;
        }
        .footer_style_2 img.img-responsive {
            width: 100%;
        }
        .home_page2 .slide_cont {
            margin-top: 20px;
        }
        .home_page2 #banner_parallax .slide_cont p {
            line-height: 30px;
            font-size: 22px;
            margin-top: 30px;
        }
        .slide_banner2 {
            min-height: 480px;
        }
        .heading_style_2 p {
            font-size: 18px;
            margin-top: 0;
            margin-bottom: 45px;
        }
        .heading_style_2 h2 {
            line-height: 30px;
            margin-top: 15px;
        }
        .home_page2 .light_silver_2 div.layout_bt {
            margin-bottom: 25px;
            float: left;
            width: 100%;
        }
        /** home page 3 **/
        .haf_full_section.right_full::after {
            height: 350px;
            position: relative;
            width: 100%;
        }
        .haf_full_section.left_full::after {
            height: 350px;
            position: relative;
            width: 100%;
        }
        .center_padding {
            padding: 75px 0 60px;
        }
        .home_page3 .slide_cont h2 {
            font-size: 40px;
            line-height: 40px;
        }
        .home_page3 section#banner_parallax.slide_banner3 .slide_cont p {
            font-size: 20px;
        }
        .slide_banner3 h2::after {
            margin-left: auto;
            margin-right: auto;
        }
        .slide_banner3 {
            min-height: 720px;
        }
        .information_blog h3 {
            font-size: 21px;
        }
        .information_blog {
            margin: 15px 0;
        }
        /** side bar **/
        .toggle_side_bar {
            display: block;
        }
        .sidenav {
            height: 100%;
            width: 0;
        }
        .sidebar_page {
            margin-left: 0;
        }
        .sidenav .closebtn {
            display: block;
        }
        /** home page 4 **/
        .overlap_top_img_main {
            margin: -70px 0 0 0;
            width: 100%;
        }
        .brand_logo_section li {
            width: 33.33%;
            padding: 0 15px;
        }
        .slide_banner4 h2 strong {
            font-size: 50px;
        }
        .slide_banner4 h2::after {
            margin-left: auto;
            margin-right: auto;
        }
        .home_page4 .slide_cont p {
            font-size: 12px;
            line-height: 21px;
        }
        .golden_yellow_theme a.transparent_bt {
            padding: 0 10px;
            min-width: 148px;
            line-height: 45px;
            font-size: 13px;
        }
        .bt_main {
            font-size: 13px;
            min-width: 120px;
            height: 45px;
            line-height: 45px;
            padding: 0 10px;
        }
        #contant_slider .carousel-indicators {
            display: flex;
            bottom: -80px;
        }
        .heading_style_4 p {
            font-size: 16px;
        }
        .heading_style_4 h2 {
            font-size: 28px;
            color: #343434;
            line-height: 40px;
        }
        .tab_head ul {
            display: block;
        }
        .blog_section.style_2 .blog_head {
            font-size: 18px;
        }
        .contact_form {
            padding: 80px 30px 80px;
        }
        /** home page 5 **/
        .screen_website_bannr {
            margin-top: 30px;
            margin-bottom: 30px;
        }
        .slide_banner5 {
            margin-bottom: 0;
        }
        .heading_style_5 .small_text {
            margin: 0 0 10px 0;
        }
        .layout_pur_minus img {
            width: 100%;
            margin-top: 50px;
        }
        .overlap_top_img_main {
            margin: 0;
            width: 100%;
        }
        .feature_cs img {
            width: 100%;
        }
        /** home page 6 **/
        .header.header_style4.header_left_side .main_menu {
            float: right !important;
        }
        .home_page6 .slide_cont {
            margin-top: 280px;
        }
        .heading_style_6 h2 {
            margin-bottom: 20px;
            font-size: 25px;
        }
        .padding_right_left_25 {
            margin-top: 50px;
        }
        .blog_news1 {
            padding: 35px;
        }
        .gray_layer_bg .full img {
            width: 100%;
        }
        .field input {
            padding: 0 20px;
        }
        .contact_form_layout .field textarea {
            padding: 5px 20px;
        }
        /** home page 7 **/
        .header_style5 div.menu > ul > li > a {
            padding: 10px 18px;
        }
        .header_top p {
            margin: 0;
            color: #555;
            font-size: 13px;
            margin: 5px 0 5px;
        }
        .right_section_bottom_header {
            display: flex;
            justify-content: center;
            border-top: solid #ddd 1px;
            margin-top: 10px;
        }
        #searchbar {
            width: 90%;
            right: 5%;
            top: 50px;
        }
        .slide_banner7 .slide_cont h2 {
            line-height: normal;
            font-size: 24px;
        }
        .slide_inform {
            text-align: left;
        }
        .slider_information {
            display: flex;
            justify-content: center;
        }
        .heading_style_7 h2 {
            font-size: 28px;
            line-height: 30px;
        }
        .full.bottm_bt_style {
            position: relative;
            bottom: 0;
            right: 0;
            margin-top: 15px;
            margin-bottom: 10px;
        }
        .inform_ser_blogs_3 ul li {
            width: 100%;
        }
        .position_abs {
            position: relative;
        }
        .hight_100_per {
            margin-bottom: 35px;
        }
        .left_head ul {
            margin: 12px 0 11px;
            float: left;
            width: 100%;
        }
        /** home page 8 **/
        .with_out_menu_header div.left_head ul li {
            display: inline;
            margin-right: 0;
            font-size: 14px;
            color: #fff;
            float: left;
            width: 100%;
            text-align: center;
        }
        .home_page8 .right_head {
            display: none;
        }
        .layout_bt {
            float: left;
            width: 100%;
            display: flex;
            justify-content: center;
        }
        .service_info_sec {
            margin-top: 30px;
            position: relative;
            margin-bottom: -20px;
        }
        .heading_style_8 h2 {
            font-size: 30px;
            margin-bottom: 25px;
        }
        .tab_bar .tags li {
            float: left;
            margin: 3px;
        }
        #testimoial_slider {
            margin-bottom: 80px;
        }
        .why_peoeple_choose .col-md-2 {
            margin-bottom: 25px;
        }
        /** home page 9 **/
        #banner_parallax.slide_banner9 h2 {
            font-size: 50px;
        }
        .cont_boder_style_slide::after {
            margin-left: auto;
            margin-right: auto;
        }
        .hiren_img {
            margin-top: 30px;
        }
        .feature_cs img {
            width: 100%;
        }
        /** home page 10 **/
        #banner_parallax.slide_banner10 h2 {
            font-size: 50px;
        }
        .cont_boder_style_slide::after {
            margin-left: auto;
            margin-right: auto;
        }
        .hiren_img {
            margin-top: 30px;
        }
        .feature_cs img {
            width: 100%;
        }
        .slide_banner10 .slider_information ul li {
            display: flex;
            margin: 15px 0;
            float: left;
            width: 100%;
            justify-content: center;
        }
        /** home page 11 **/
        .play_section {
            position: relative;
        }
        .weekend_section_inner .play_pause_control {
            padding-left: 35px;
        }
        .weeked_section .play_pause {
            left: 0;
        }
        .click_section_form_change_vedio .float-left {
            width: 100%;
        }
        .click_section_form_change_vedio .profile_uploaded {
            text-align: center;
            margin: 0;
        }
        .click_section_form_change_vedio .profile_cont_uploaded {
            margin-left: 0;
            margin-top: 15px;
            text-align: center;
        }
        .click_section_form_change_vedio .float-right {
            margin-top: 0;
            width: 100%;
            text-align: center;
        }
        .profile_cont {
            display: block;
        }
        /** home page 12 **/
        .span2 {
            width: 100%;
        }
        .cake_club .menu > ul > li > a {
            font-size: 13px;
            margin: 0;
        }
        .cake_club .menu > ul > li a > {
            font-size: 14px;
        }
        .cake_club .menu > ul > li > a {
            font-size: 14px;
            padding: 13px;
        }
        .cake_club .menu-mobile::after {
            top: 4px;
        }
        .slide_banner12 {
            background-size: cover;
        }
        .slide_banner12 .slide_cont h3 {
            font-size: 50px;
            line-height: 70px;
        }
        .Courgette_font h2 {
            font-size: 35px;
        }
        div.layout_padding_2 {
            padding-top: 50px;
        }
        /** home page 13 **/
        #banner_parallax.slide_banner13 .slide_cont h2 {
            font-size: 50px;
            line-height: 58px;
            margin-top: 25px;
            margin-bottom: 25px;
        }
        .information_icon {
            margin: 15px 0 0 0;
        }
        .slide_banner13 {
            min-height: auto;
            max-height: inherit;
            padding-bottom: 50px;
        }
        .slide_cont {
            margin-top: 115px;
        }
        .berber_side_img::after {
            display: none;
        }
        .hair_menu_list_cont ul {
            float: left;
            width: 100%;
        }
        .tab_bar_section ul.nav.nav-tabs li a {
            font-size: 15px;
            font-weight: 500;
            padding: 0 10px;
            line-height: 45px;
        }
        .discount_section_inner {
            top: 0;
            left: 0;
        }
        .discount_section h4 {
            line-height: 28px;
            margin: 15px 0;
        }
        .discount_section h3 {
            color: #d19d64;
            font-size: 30px;
            margin: 10px 0;
            line-height: 38px;
        }
        .join_us_section {
            text-align: center;
        }
        .join_us_section h2 {
            margin-bottom: 15px;
        }
        /** home page 14 **/
        .header.header_style14 .header_top {
            display: none;
        }
        .header_style14 .logo {
            top: 0;
        }
        .header_style14 .logo img {
            width: 110px;
        }
        .header_style14 .logo {
            position: absolute;
            top: 0;
            padding: 10px 0;
        }
        .header_style14 .logo {
            top: -47px;
        }
        .header_style14 .header_bottom {
            min-height: 60px;
            padding-top: 55px;
        }
        .header.header_style14 .header_bottom .right_section_bottom_header {
            margin: 10px 0 18px;
            padding-top: 15px;
            width: 100%;
        }
        .header.header_style14 .main_menu > .menu > ul > li > a {
            color: #000;
        }
        .slide_banner14 {
            min-height: 450px;
        }
        .waiter_img {
            margin-top: 45px;
        }
        .style_pro_head {
            margin-top: 0;
            margin-bottom: 75px;
        }
        .top_center_pro .head_cafe_img {
            margin-left: 0;
            width: 100%;
            text-align: center;
        }
        .top_center_pro {
            display: block;
        }
        .head_cafe_img {
            text-align: center;
        }
        .top_left_pro .head_cafe_pro {
            position: relative;
            top: 0;
        }
        .top_center_pro .head_cafe_pro {
            position: relative;
            top: 0;
            left: 0;
        }
        .head_cafe_img img {
            width: 50%;
        }
        .bottom_center_pro .text_align_left {
            text-align: center;
            padding-left: 0;
            margin: 0;
        }
        .bottom_right_pro .head_cafe_img {
            text-align: center;
        }
        .bottom_center_pro .text_align_left {
            text-align: center;
            padding-left: 0;
            margin: 0;
        }
        .bottom_right_pro {
            top: 0;
        }
        .bottom_right_pro .head_cafe_img {
            text-align: center;
        }
        .head_cafe_pro.text_align_right {
            text-align: center;
        }
        .head_cafe_pro.text_align_left {
            text-align: center;
        }
        .top_center_pro .head_cafe_pro {
            text-align: center;
        }
        .top_left_pro .head_cafe_pro {
            text-align: center;
        }
        .style_pro_head {
            margin-top: 50px;
            margin-bottom: 100px;
        }
        .team_blog_style_cheif .team_blog {
            width: 80%;
            margin: 0 10%;
        }
        .time_ser {
            margin-bottom: 35px;
        }
        /** home page 15 **/
        .slide_banner15#banner_parallax h2 {
            font-size: 35px;
            line-height: 38px;
            font-weight: 400;
            color: #ffb125;
        }
        .home_page15 .slide_cont {
            margin-top: 220px;
        }
        .home_page15 section.layout_padding_2.horizontal_cross_layout {
            margin-bottom: 0;
        }
        .home_page15 .streat_section_rev img {
            height: 80px;
        }
        .white_border {
            margin-left: 0;
            padding-left: 80px;
        }
        .enter_roll_bt {
            display: flex;
            justify-content: center;
            margin-top: 35px;
        }
        .streat_section_rev_bottom img {
            position: absolute;
            bottom: 0;
            height: 85px;
        }
        .black_border {
            margin-left: 0;
            padding-left: 80px;
        }
        .team_blog_gym {
            display: block;
            margin: 15px 0;
            text-align: center;
        }
        .team_blog_gym .team_img {
            margin: 0;
            text-align: center;
            width: 100%;
            display: flex;
            justify-content: center;
        }
        .gym_cle {
            margin-bottom: 45px;
        }
        /** home page 16 **/
        .slide_banner16 .slide_cont h2 {
            font-size: 35px;
        }
        #banner_parallax.slide_banner16 .slide_cont p {
            font-size: 18px;
        }
        .heading_style_13 h2 {
            font-size: 48px;
            font-weight: 600;
            color: #343434;
            margin: 0 0 25px 0;
            line-height: 48px;
        }
        .yoga_icon {
            margin-bottom: 20px;
            text-align: center;
        }
        .yoga_icon + div {
            text-align: center;
        }
        .bg_layout_yoga .heading_style_13 h2 {
            font-size: 32px;
            line-height: 32px;
        }
        /** home page 17 **/
        .header_style17 .header_top.top_imform {
            display: none;
        }
        .slide_banner17 {
            min-height: 720px;
            max-height: inherit;
        }
        .dentist_slide img {
            width: 100%;
            margin-bottom: 50px;
        }
        .home_page17 .heading_style_3 p.small_text {
            font-size: 20px;
            line-height: 24px;
        }
        .home_page17 .heading_style_3 h2 {
            font-size: 30px;
            margin: 25px 0;
            line-height: 35px;
        }
        .dentist_imfor_ser .col-md-7 {
            margin-bottom: 50px;
        }
        .dentis_team_blog .team_member_img img {
            width: auto;
        }
        .header.header_style18 .top_imform {
            display: none;
        }
        /** home page 18 **/
        .menu_border_hover .main_menu .menu > ul > li > a {
            padding-bottom: 10px;
        }
        .fiver_boy img {
            max-width: 100%;
        }
        .slide_bottom_icon li {
            margin: 5px 5px;
        }
        .doc_ser {
            margin-bottom: 25px;
        }
        .doctor_team .team_member_img.team_member_img img {
            width: auto;
        }
        /** home page 19 **/
        .sidebar_menu {
            float: right;
            top: 15px;
            position: relative;
        }
        #banner_parallax.slide_banner19 {
            padding-top: 1px;
        }
        .home_page19 .slide_cont {
            margin-top: 35px;
        }
        .product_ecommr {
            margin-top: 45px;
        }
        .heading_style_19 h2 {
            font-size: 32px;
            line-height: 42px;
        }
        .one_line_layout {
            margin: 15px 0;
        }
        .coffee_machine {
            position: relative;
            top: 0;
        }
        .product_style_1 .product_img {
            border-right: none;
        }
        .coffee_machine img {
            margin-top: 25px;
        }
        .newslatterform form {
            position: relative;
            width: 100%;
        }
        .menu_product li {
            float: left;
            margin: 0;
            width: 50%;
        }
        /** home page 20 **/
        .header.header_style_ecomm2 .header_top {
            display: none;
        }
        .top_search_bar .field {
            display: block;
        }
        .search_style_2 .top_search_bar input {
            max-width: 100%;
            border-radius: 0;
            border: solid #e1e1e1 1px;
            margin-bottom: -1px;
        }
        .search_style_2 .top_search_bar .bootstrap-select button,
        .search_style_2 .top_search_bar .bootstrap-select button:hover,
        .search_style_2 .top_search_bar .bootstrap-select button:focus,
        .search_style_2 .top_search_bar .bootstrap-select button:active {
            width: 100%;
            margin: 0;
        }
        div.top_search_bar .btn-group.bootstrap-select {
            width: 100% !important;
        }
        .search_style_2 .top_search_bar button.submit_search {
            background: #0163d2;
            width: 100%;
            font-weight: 500;
            font-size: 14px;
            border-radius: 0;
        }
        .search_catry_bt {
            position: relative;
            top: 0;
            right: 1px;
        }
        .header_style_ecomm2 .sidebar_menu a {
            background: #0163d2;
            width: 36px;
            float: right;
            height: 36px;
            border-radius: 0;
            text-align: center;
            padding: 5px 4px;
            margin: 12px 0 0;
        }
        .right_cart_section {
            position: absolute;
            top: -248px;
        } 
        .header_bottom_thirth {
            display: none;
        }
        .home_page20 .bt_main {
            padding: 0 25px;
        }
        .top_sec {
            line-height: 24px;
            font-size: 15px;
            padding: 20px 20px;
        }
        .blue_layer_image2 h2,
        .blue_layer_image h2 {
            font-size: 28px;
            line-height: 42px;
            letter-spacing: -1px;
        }
        /** home page 21 **/
        .header_style_ecomr3 .header_top {
            display: none;
        }
        .header_style_ecomr3 .menu {
            width: auto;
            margin: 9px 0 0;
            float: left;
        }
        .right_icon_ecoomr {
            float: right;
            margin: 10px 0;
        }
        .header.header_style_ecomr3 .menu > ul > li > a {
            padding: 10px 24px;
            font-weight: 500;
        }
        .home_page21 .slide_banner18 .slide_cont h2 {
            font-size: 72px;
            line-height: 72px;
            text-align: center;
        }
        .home_page21 .slide_banner18 .slide_cont h2 span {
            float: left;
        }
        .slide_banner18#banner_parallax p {
            font-size: 15px;
        }
        .categary_part {
            width: 100%;
            min-height: 280px;
        }
        .slide_banner18 .slide_bt {
            padding-bottom: 35px;
        }
        /** home page 22 **/
        .light_red .header.header_style_ecomr3 .menu > ul > li > a {
            color: #222;
        }
        .slide_banner22 .slide_cont {
            margin-top: 55px;
        }
        .slide_banner22 .slide_cont h2 {
            font-size: 40px;
            line-height: 45px;
        }
        .date_counter_2 #clockdiv div.count {
            width: 50%;
            margin: 7px 0 0 0;
            text-align: center;
        }
        .date_counter_2 #clockdiv div > span {
            width: 90%;
            margin: 0 5%;
        }
        .full.counter_price h2 {
            line-height: normal;
        }
        .home_page22 div.full.layout_bt {
            margin-bottom: 35px;
        }
        /** home paga 23 **/
        .catergary_tab_bar ul li.nav-item {
            width: 50%;
        }
        .client_slider_main2 .testi_head {
            margin-top: 25px;
            text-align: center;
        }
        .client_slider_main2 div#testimonial2 {
            width: 90%;
            margin: 20px 5% 80px;
        }
        .service_information .pink1,
        .service_information .pink2,
        .service_information .pink3 {
            margin-bottom: 35px;
        }
        /** home page 24 **/
        .skyblue .menu-mobile {
            border-color: #fff;
            color: #fff;
            margin: 10px 5px;
        }
        .master_ji {
            margin-bottom: 30px;
        }
        .bottom_fixed {
            position: relative;
            bottom: 0;
        }
        .brand_logo_section li {
            width: 50%;
            padding: 0 15px;
        }
        /** home page 25 **/
        .header_funky_style .header_top {
            display: none;
        }
        .header_funky_style a.menu-mobile {
            margin: 10px;
        }
        .header.header_funky_style .menu > ul > li > a {
            font-size: 15px;
            font-weight: 400;
            color: #898989;
            padding: 10px 15px 9px;
        }
        .slide_banner25 .slide_cont h2 {
            text-transform: uppercase;
            font-weight: 700;
            font-family: 'Raleway', sans-serif;
            font-size: 28px;
            line-height: 35px;
            z-index: 0;
            margin-bottom: 25px;
        }
        .slide_banner25 .slide_cont {
            margin-top: 50px;
        }
        .bottom_service_temp_inner {
            margin-top: 0;
        }
        .bottom_service_temp {
            display: none;
        }
        .slide_banner25 .inner_slide {
            margin: 25px 0 0 0;
        }
        .team_blog_img {
            float: left;
            width: 100%;
            height: 170px;
            margin-top: 0px;
            margin-left: 0;
            border-radius: 0;
            text-align: center;
            align-items: center;
            display: flex;
            justify-content: center;
            margin-right: 0;
            margin-bottom: 25px;
        }
        .team_blog {
            border-radius: 5px;
            min-height: 170px;
            float: left;
            width: 100%;
        }
        .team_blog_cont {
            padding: 25px 0 15px 0;
            float: left;
            width: 100%;
        }
        /** home page 26 **/
        .header_style26 .right_side_bt {
            display: none;
        }
        .header_style26 .menu {
            width: auto;
            margin: 9px 0 0;
            float: left;
        }
        .header_style26 .menu > ul > li > a {
            padding: 10px 25px;
        }
        .slide_banner26 .slide_cont {
            margin-top: 220px;
        }
        .slide_banner26 .slide_cont h2 {
            font-size: 40px;
            line-height: 45px;
        }
        .owl-carousel-mousewheel .owl-prev {
            width: 35px;
        }
        .owl-carousel-mousewheel .owl-next {
            width: 35px;
        }
        .owl-carousel-mousewheel {
            padding: 0 35px;
        }
        .owl-carousel-mousewheel {
            background: #fff;
        }
        .step_process li {
            width: 100%;
        }
        /** inner pages **/
        .team_member_img img {
            width: 100%;
        }
        #inner_slide .slider_information ul li {
            margin: 10px 0;
            width: 100%;
        }
        .slider_information {
            margin-bottom: 25px;
        }
        .lawyer_img {
            margin-bottom: 35px;
        }
        .about_page_3.brown_color_theme .heading_style_7 h2 {
            font-size: 21px;
        }
        .left_section_head {
            margin-bottom: 35px;
        }
        .testimonial_ser2 .owl-nav.disabled {
            top: -50px;
        }
        .client_slider_main .testimonial_ser2 .owl-nav .owl-next,
        .client_slider_main .testimonial_ser2 .owl-nav .owl-next:hover,
        .client_slider_main .testimonial_ser2 .owl-nav .owl-next:focus {
            width: 50%;
            height: 45px;
            text-align: center;
            line-height: 45px;
            right: 0;
            border-radius: 0;
        }
        .client_slider_main .testimonial_ser2 .owl-nav .owl-prev,
        .client_slider_main .testimonial_ser2 .owl-nav .owl-prev:hover,
        .client_slider_main .testimonial_ser2 .owl-nav .owl-prev:focus {
            width: 50%;
            height: 45px;
            border-radius: 0;
            text-align: center;
            line-height: 45px;
            left: 0;
        }
        .testimonial_ser2 .testimo {
            margin-bottom: 25px;
        }
        .service_blog3 .padding_right_left_15 {
            background: #f8f8f8;
            padding: 15px 15px;
        }
        .inner_banner7 {
            padding-top: 180px;
        }
        .slide_banner1 {
           min-height: auto;
           position: relative;
           background-repeat: no-repeat;
           background-size: cover;
           background-position: bottom center;
        } 
        .slide_cont {
            margin: 50px 0 100px;
        }
        .blog_banner h2,
        .portfolio_banner h2 {
            margin: 85px 0 0;
            font-weight: 300;
        }
        .breadcrum_side ul {
            margin: 5px 0 30px;
            width: 100%;
        }
        .blog_detail h3 {
            text-align: left;
        }
        #default_theme.blog_detail section p {
            text-align: left;
        }
        .width_50 {
            width: 100%;
        }
        .layout_padding_grey_half {
            padding: 35px;
        }
        .portfolio .tab_bar_section ul.nav.nav-tabs li {
            margin-bottom: 15px;
            margin-left: 10px;
            margin-right: 10px;
            width: auto;
        }
        .portfolio .portfolio_layout2 .tab_bar_section ul.nav.nav-tabs li {
            margin: 0 10px 20px;
        }
        .portblog_img img {
            width: 100%;
        }
        .share_section ul li {
            margin: 0 0 10px 0;
            width: 100%;
        }
        .share_section {
            float: left;
            width: 100%;
            margin-top: 0;
            margin-bottom: 35px;
        }
        .portfolio_detail .one_line_layout .feature_icon img {
            width: 100px;
        }
        /** shop page **/
        
        .shopping-cart-cart {
            max-width: 100%;
            width: 100%;
            margin-top: 25px;
        }
        
        .product-table table.table {
            min-width: 720px;
        }
        
        .product_detail_page .tab_bar_section .nav.nav-tabs {
            display: flex;
            justify-content: center;
        }
        
        .product_detail_page .tab_bar_section .nav-tabs .nav-item {
            width: 100%;
        }
        
    }
    
    @media (max-width:575px) {
        /** cross layout **/
        .inform_dentist_botm p {
            text-align: center;
        }
        .margin_top_30_respon {
            margin-top: 30px;
        }
        .cross_layout:before {
            height: 20px;
        }
        .cross_layout:after {
            height: 20px;
        }
        .p_data{
            padding-left: 40px;
        padding-right: 40px;
        }
        p.large {
            font-size: 14px;
        }
        h2 {
            font-size: 32px;
            line-height: 35px;
            letter-spacing: -1px;
        }
        .container {
            max-width: 100%;
        }
        .home_page1 #banner_slide {
            margin-bottom: 0;
        }
        .right_bt {
            float: right;
            width: 100%;
            justify-content: center;
            display: flex;
            margin-top: 15px;
        }
        .right_bt a.bt_main {
            width: 100%;
        }
        .home_page1 .slide_cont {
            margin-top: 75px;
        }
        .slide_banner1 {
           position: relative;
           background-repeat: no-repeat;
           background-size: auto 100%;
           height: auto;
           min-height: auto;
           background-position: bottom left;
        }
        .slide_cont h2 {
            font-size: 28px;
            line-height: 34px;
        }
        .slide_pc_img img {
            width: 100%;
            margin-left: 0;
            margin-top: 35px;
            right: 0;
        }
        .slide_pc_img {
            position: relative;
            z-index: 1;
            margin-bottom: 0;
        }
        .slide_bt .bt_main {
            border: solid #1e72bc 1px;
            line-height: 43px;
        }
        .home_page1 .padding_right_left_15 {
            margin-bottom: 30px;
        }
        .layout_screen {
            left: 0;
            position: relative;
            width: 100%;
        }
        .padding_inner {
            padding-top: 25px;
            padding-bottom: 25px;
        }
        .theme_bg {
            min-height: auto;
        }
        .layout_pur_minus {
            margin-bottom: 0;
        }
        .team_member_img img {
            width: 100%;
        }
        .table_price {
            margin-bottom: 15px;
        }
        .blog_feature_img img {
            width: 100%;
        }
        .contact_form_inner {
            max-width: 100%;
        }
        .slide_cont {
            text-align: center;
        }
        .slide_bt {
            display: flex;
            justify-content: center;
        }
        .home_page1 .layout_padding_2 {
            margin: 0 !important;
        }
        .layout_padding {
            margin: 0 !important;
        }
        .blog_section {
            margin-top: 30px;
        }
        .blog_feature_cantant {
            padding: 30px 20px 20px;
        }
        .contact_form {
            min-height: auto;
            padding: 80px 30px;
        }
        .footer_blog {
            display: flex;
            margin-bottom: 25px;
        }
        .information_blog h3 {
            font-size: 21px;
        }
        .information_blog {
            margin: 15px 0;
        }
        /** portfolio popup **/
        
        .description_popup {
            padding: 30px;
        }
        #portfolio_pop .modal-content {
            width: 90%;
            margin: 0 auto;
        }
        
        .description_popup h3 {
            font-size: 18px;
        }
        
        /**** home page 2 add custom with arrange ****/
        .margin_bottom_30 {
            margin-bottom: 30px;
        }
        .target_section {
            width: 100%;
            background: #fff;
            padding: 50px 25px 50px;
            box-shadow: 0 0 45px -15px #000;
            margin-top: 20px;
            margin-bottom: 30px;
        }
        .team_blog {
            margin-bottom: 30px;
        }
        .target_section .feature_icon {
            margin-top: 25px;
        }
        .header .social_icons {
            width: 100%;
            justify-content: center;
            display: flex;
            border-top: solid rgba(255, 255, 255, .1) 1px;
            padding-top: 15px;
        }
        .home_page2 .slide_cont {
            margin-top: 20px;
        }
        .home_page2 #banner_parallax .slide_cont p {
            line-height: 30px;
            font-size: 22px;
            margin-top: 30px;
        }
        .slide_banner2 {
            min-height: 480px;
        }
        .heading_style_2 p {
            font-size: 18px;
            margin-top: 0;
            margin-bottom: 45px;
        }
        .heading_style_2 h2 {
            line-height: 30px;
            margin-top: 15px;
        }
        .home_page2 .light_silver_2 div.layout_bt {
            margin-bottom: 25px;
            float: left;
            width: 100%;
        }
        /** home page 3 **/
        .haf_full_section.right_full::after {
            height: 350px;
            position: relative;
            width: 100%;
        }
        .haf_full_section.left_full::after {
            height: 350px;
            position: relative;
            width: 100%;
        }
        .center_padding {
            padding: 75px 0 60px;
        }
        .home_page3 .slide_cont h2 {
            font-size: 40px;
            line-height: 40px;
        }
        .home_page3 section#banner_parallax.slide_banner3 .slide_cont p {
            font-size: 20px;
        }
        .slide_banner3 h2::after {
            margin-left: auto;
            margin-right: auto;
        }
        .slide_banner3 {
            min-height: 720px;
        }
        .information_blog h3 {
            font-size: 21px;
        }
        .information_blog {
            margin: 15px 0;
        }
        /** side bar **/
        .toggle_side_bar {
            display: block;
        }
        .sidenav {
            height: 100%;
            width: 0;
        }
        .sidebar_page {
            margin-left: 0;
        }
        .sidenav .closebtn {
            display: block;
        }
        /** home page 4 **/
        .overlap_top_img_main {
            margin: -70px 0 0 0;
            width: 100%;
        }
        .brand_logo_section li {
            width: 33.33%;
            padding: 0 15px;
        }
        .slide_banner4 h2 strong {
            font-size: 50px;
        }
        .slide_banner4 h2::after {
            margin-left: auto;
            margin-right: auto;
        }
        .home_page4 .slide_cont p {
            font-size: 12px;
            line-height: 21px;
        }
        .golden_yellow_theme a.transparent_bt {
            padding: 0 10px;
            min-width: 148px;
            line-height: 45px;
            font-size: 13px;
        }
        .bt_main {
            font-size: 13px;
            min-width: 120px;
            height: 45px;
            line-height: 45px;
            padding: 0 10px;
        }
        #contant_slider .carousel-indicators {
            display: flex;
            bottom: -80px;
        }
        .heading_style_4 p {
            font-size: 16px;
        }
        .heading_style_4 h2 {
            font-size: 28px;
            color: #343434;
            line-height: 40px;
        }
        .tab_head ul {
            display: block;
        }
        .blog_section.style_2 .blog_head {
            font-size: 18px;
        }
        .contact_form {
            padding: 80px 30px 80px;
        }
        /** home page 5 **/
        .screen_website_bannr {
            margin-top: 30px;
            margin-bottom: 30px;
        }
        .slide_banner5 {
            margin-bottom: 0;
        }
        .heading_style_5 .small_text {
            margin: 0 0 10px 0;
        }
        .layout_pur_minus img {
            width: 100%;
            margin-top: 50px;
        }
        .overlap_top_img_main {
            margin: 0;
            width: 100%;
        }
        .feature_cs img {
            width: 100%;
        }
        /** home page 6 **/
        .header.header_style4.header_left_side .main_menu {
            float: right !important;
        }
        .home_page6 .slide_cont {
            margin-top: 280px;
        }
        .heading_style_6 h2 {
            margin-bottom: 20px;
            font-size: 25px;
        }
        .padding_right_left_25 {
            margin-top: 50px;
        }
        .blog_news1 {
            padding: 35px;
        }
        .gray_layer_bg .full img {
            width: 100%;
        }
        .field input {
            padding: 0 20px;
        }
        .contact_form_layout .field textarea {
            padding: 5px 20px;
        }
        /** home page 7 **/
        .header_style5 div.menu > ul > li > a {
            padding: 10px 18px;
        }
        .header_top p {
            margin: 0;
            color: #555;
            font-size: 13px;
            margin: 5px 0 5px;
        }
        .right_section_bottom_header {
            display: flex;
            justify-content: center;
            border-top: solid #ddd 1px;
            margin-top: 10px;
        }
        #searchbar {
            width: 90%;
            right: 5%;
            top: 50px;
        }
        .slide_banner7 .slide_cont h2 {
            line-height: normal;
            font-size: 24px;
        }
        .slide_inform {
            text-align: left;
        }
        .slider_information {
            display: flex;
            justify-content: center;
        }
        .heading_style_7 h2 {
            font-size: 28px;
            line-height: 30px;
        }
        .full.bottm_bt_style {
            position: relative;
            bottom: 0;
            right: 0;
            margin-top: 15px;
            margin-bottom: 10px;
        }
        .inform_ser_blogs_3 ul li {
            width: 100%;
        }
        .position_abs {
            position: relative;
        }
        .hight_100_per {
            margin-bottom: 35px;
        }
        .left_head ul {
            margin: 12px 0 11px;
            float: left;
            width: 100%;
        }
        /** home page 8 **/
        .with_out_menu_header div.left_head ul li {
            display: inline;
            margin-right: 0;
            font-size: 14px;
            color: #fff;
            float: left;
            width: 100%;
            text-align: center;
        }
        .home_page8 .right_head {
            display: none;
        }
        .layout_bt {
            float: left;
            width: 100%;
            display: flex;
            justify-content: center;
        }
        .service_info_sec {
            margin-top: 30px;
            position: relative;
            margin-bottom: -20px;
        }
        .heading_style_8 h2 {
            font-size: 30px;
            margin-bottom: 25px;
        }
        .tab_bar .tags li {
            float: left;
            margin: 3px;
        }
        #testimoial_slider {
            margin-bottom: 80px;
        }
        .why_peoeple_choose .col-md-2 {
            margin-bottom: 25px;
        }
        /** home page 9 **/
        #banner_parallax.slide_banner9 h2 {
            font-size: 50px;
        }
        .cont_boder_style_slide::after {
            margin-left: auto;
            margin-right: auto;
        }
        .hiren_img {
            margin-top: 30px;
        }
        .feature_cs img {
            width: 100%;
        }
        /** home page 10 **/
        #banner_parallax.slide_banner10 h2 {
            font-size: 50px;
        }
        .cont_boder_style_slide::after {
            margin-left: auto;
            margin-right: auto;
        }
        .hiren_img {
            margin-top: 30px;
        }
        .feature_cs img {
            width: 100%;
        }
        .slide_banner10 .slider_information ul li {
            display: flex;
            margin: 15px 0;
            float: left;
            width: 100%;
            justify-content: center;
        }
        /** home page 11 **/
        .play_section {
            position: relative;
        }
        .weekend_section_inner .play_pause_control {
            padding-left: 35px;
        }
        .weeked_section .play_pause {
            left: 0;
        }
        .click_section_form_change_vedio .float-left {
            width: 100%;
        }
        .click_section_form_change_vedio .profile_uploaded {
            text-align: center;
            margin: 0;
        }
        .click_section_form_change_vedio .profile_cont_uploaded {
            margin-left: 0;
            margin-top: 15px;
            text-align: center;
        }
        .click_section_form_change_vedio .float-right {
            margin-top: 0;
            width: 100%;
            text-align: center;
        }
        .profile_cont {
            display: block;
        }
        /** home page 12 **/
        .span2 {
            width: 100%;
        }
        .cake_club .menu > ul > li > a {
            font-size: 13px;
            margin: 0;
        }
        .cake_club .menu > ul > li a > {
            font-size: 14px;
        }
        .cake_club .menu > ul > li > a {
            font-size: 14px;
            padding: 13px;
        }
        .cake_club .menu-mobile::after {
            top: 4px;
        }
        .slide_banner12 {
            background-size: cover;
        }
        .slide_banner12 .slide_cont h3 {
            font-size: 50px;
            line-height: 70px;
        }
        .Courgette_font h2 {
            font-size: 35px;
        }
        div.layout_padding_2 {
            padding-top: 50px;
        }
        /** home page 13 **/
        #banner_parallax.slide_banner13 .slide_cont h2 {
            font-size: 50px;
            line-height: 58px;
            margin-top: 25px;
            margin-bottom: 25px;
        }
        .information_icon {
            margin: 15px 0 0 0;
        }
        .slide_banner13 {
            min-height: auto;
            max-height: inherit;
            padding-bottom: 50px;
        }
        .slide_cont {
            margin: 50px 0 100px;
        }
        .slide_cont {
            margin-top: 115px;
        }
        .berber_side_img::after {
            display: none;
        }
        .hair_menu_list_cont ul {
            float: left;
            width: 100%;
        }
        .tab_bar_section ul.nav.nav-tabs li a {
            font-size: 15px;
            font-weight: 500;
            padding: 0 10px;
            line-height: 45px;
        }
        .discount_section_inner {
            top: 0;
            left: 0;
        }
        .discount_section h4 {
            line-height: 28px;
            margin: 15px 0;
        }
        .discount_section h3 {
            color: #d19d64;
            font-size: 30px;
            margin: 10px 0;
            line-height: 38px;
        }
        .join_us_section {
            text-align: center;
        }
        .join_us_section h2 {
            margin-bottom: 15px;
        }
        /** home page 14 **/
        .header.header_style14 .header_top {
            display: none;
        }
        .header_style14 .logo {
            top: 0;
        }
        .header_style14 .logo img {
            width: 110px;
        }
        .header_style14 .logo {
            position: absolute;
            top: 0;
            padding: 10px 0;
        }
        .header_style14 .logo {
            top: -47px;
        }
        .header_style14 .header_bottom {
            min-height: 60px;
            padding-top: 55px;
        }
        .header.header_style14 .header_bottom .right_section_bottom_header {
            margin: 10px 0 18px;
            padding-top: 15px;
            width: 100%;
        }
        .header.header_style14 .main_menu > .menu > ul > li > a {
            color: #000;
        }
        .slide_banner14 {
            min-height: 450px;
        }
        .waiter_img {
            margin-top: 45px;
        }
        .style_pro_head {
            margin-top: 0;
            margin-bottom: 75px;
        }
        .top_center_pro .head_cafe_img {
            margin-left: 0;
            width: 100%;
            text-align: center;
        }
        .top_center_pro {
            display: block;
        }
        .head_cafe_img {
            text-align: center;
        }
        .top_left_pro .head_cafe_pro {
            position: relative;
            top: 0;
        }
        .top_center_pro .head_cafe_pro {
            position: relative;
            top: 0;
            left: 0;
        }
        .head_cafe_img img {
            width: 50%;
        }
        .bottom_center_pro .text_align_left {
            text-align: center;
            padding-left: 0;
            margin: 0;
        }
        .bottom_right_pro .head_cafe_img {
            text-align: center;
        }
        .bottom_center_pro .text_align_left {
            text-align: center;
            padding-left: 0;
            margin: 0;
        }
        .bottom_right_pro {
            top: 0;
        }
        .bottom_right_pro .head_cafe_img {
            text-align: center;
        }
        .head_cafe_pro.text_align_right {
            text-align: center;
        }
        .head_cafe_pro.text_align_left {
            text-align: center;
        }
        .top_center_pro .head_cafe_pro {
            text-align: center;
        }
        .top_left_pro .head_cafe_pro {
            text-align: center;
        }
        .style_pro_head {
            margin-top: 50px;
            margin-bottom: 100px;
        }
        .team_blog_style_cheif .team_blog {
            width: 80%;
            margin: 0 10%;
        }
        .time_ser {
            margin-bottom: 35px;
        }
        /** home page 15 **/
        .slide_banner15#banner_parallax h2 {
            font-size: 35px;
            line-height: 38px;
            font-weight: 400;
            color: #ffb125;
        }
        .home_page15 .slide_cont {
            margin-top: 220px;
        }
        .home_page15 section.layout_padding_2.horizontal_cross_layout {
            margin-bottom: 0;
        }
        .home_page15 .streat_section_rev img {
            height: 80px;
        }
        .white_border {
            margin-left: 0;
            padding-left: 80px;
        }
        .enter_roll_bt {
            display: flex;
            justify-content: center;
            margin-top: 35px;
        }
        .streat_section_rev_bottom img {
            position: absolute;
            bottom: 0;
            height: 85px;
        }
        .black_border {
            margin-left: 0;
            padding-left: 80px;
        }
        .team_blog_gym {
            display: block;
            margin: 15px 0;
            text-align: center;
        }
        .team_blog_gym .team_img {
            margin: 0;
            text-align: center;
            width: 100%;
            display: flex;
            justify-content: center;
        }
        .gym_cle {
            margin-bottom: 45px;
        }
        /** home page 16 **/
        .slide_banner16 .slide_cont h2 {
            font-size: 35px;
        }
        #banner_parallax.slide_banner16 .slide_cont p {
            font-size: 18px;
        }
        .heading_style_13 h2 {
            font-size: 48px;
            font-weight: 600;
            color: #343434;
            margin: 0 0 25px 0;
            line-height: 48px;
        }
        .yoga_icon {
            margin-bottom: 20px;
            text-align: center;
        }
        .yoga_icon + div {
            text-align: center;
        }
        .bg_layout_yoga .heading_style_13 h2 {
            font-size: 32px;
            line-height: 32px;
        }
        /** home page 17 **/
        .header_style17 .header_top.top_imform {
            display: none;
        }
        .slide_banner17 {
            min-height: 720px;
            max-height: inherit;
        }
        .dentist_slide img {
            width: 100%;
            margin-bottom: 50px;
        }
        .home_page17 .heading_style_3 p.small_text {
            font-size: 20px;
            line-height: 24px;
        }
        .home_page17 .heading_style_3 h2 {
            font-size: 30px;
            margin: 25px 0;
            line-height: 35px;
        }
        .dentist_imfor_ser .col-md-7 {
            margin-bottom: 50px;
        }
        .dentis_team_blog .team_member_img img {
            width: auto;
        }
        .header.header_style18 .top_imform {
            display: none;
        }
        /** home page 18 **/
        .menu_border_hover .main_menu .menu > ul > li > a {
            padding-bottom: 10px;
        }
        .fiver_boy img {
            max-width: 100%;
        }
        .slide_bottom_icon li {
            margin: 5px 5px;
        }
        .doc_ser {
            margin-bottom: 25px;
        }
        .doctor_team .team_member_img.team_member_img img {
            width: auto;
        }
        /** home page 19 **/
        .sidebar_menu {
            float: right;
            top: 15px;
            position: relative;
        }
        #banner_parallax.slide_banner19 {
            padding-top: 1px;
        }
        .home_page19 .slide_cont {
            margin-top: 35px;
        }
        .product_ecommr {
            margin-top: 45px;
        }
        .heading_style_19 h2 {
            font-size: 32px;
            line-height: 42px;
        }
        .one_line_layout {
            margin: 15px 0;
        }
        .coffee_machine {
            position: relative;
            top: 0;
        }
        .product_style_1 .product_img {
            border-right: none;
        }
        .coffee_machine img {
            margin-top: 25px;
        }
        .newslatterform form {
            position: relative;
            width: 100%;
        }
        .menu_product li {
            float: left;
            margin: 0;
            width: 50%;
        }
        /** home page 20 **/
        .header.header_style_ecomm2 .header_top {
            display: none;
        }
        .top_search_bar .field {
            display: block;
        }
        .search_style_2 .top_search_bar input {
            max-width: 100%;
            border-radius: 0;
            border: solid #e1e1e1 1px;
            margin-bottom: -1px;
        }
        .search_style_2 .top_search_bar .bootstrap-select button,
        .search_style_2 .top_search_bar .bootstrap-select button:hover,
        .search_style_2 .top_search_bar .bootstrap-select button:focus,
        .search_style_2 .top_search_bar .bootstrap-select button:active {
            width: 100%;
            margin: 0;
        }
        div.top_search_bar .btn-group.bootstrap-select {
            width: 100% !important;
        }
        .search_style_2 .top_search_bar button.submit_search {
            background: #0163d2;
            width: 100%;
            font-weight: 500;
            font-size: 14px;
            border-radius: 0;
        }
        .search_catry_bt {
            position: relative;
            top: 0;
            right: 1px;
        }
        .header_style_ecomm2 .sidebar_menu a {
            background: #0163d2;
            width: 36px;
            float: right;
            height: 36px;
            border-radius: 0;
            text-align: center;
            padding: 5px 5px;
            margin: 12px 0 0;
        }
        .right_cart_section ul li {
            margin-right: 20px;
        }
        .right_cart_section ul {
            margin: 0 0 10px; 
        }
        .header_bottom_thirth {
            display: none;
        }
        .home_page20 .bt_main {
            padding: 0 25px;
        }
        .top_sec {
            line-height: 24px;
            font-size: 15px;
            padding: 20px 20px;
        }
        .blue_layer_image2 h2,
        .blue_layer_image h2 {
            font-size: 28px;
            line-height: 42px;
            letter-spacing: -1px;
        }
        /** home page 21 **/
        .header_style_ecomr3 .header_top {
            display: none;
        }
        .header_style_ecomr3 .menu {
            width: auto;
            margin: 9px 0 0;
            float: left;
        }
        .right_icon_ecoomr {
            float: right;
            margin: 10px 0;
        }
        .header.header_style_ecomr3 .menu > ul > li > a {
            padding: 10px 24px;
            font-weight: 500;
        }
        .home_page21 .slide_banner18 .slide_cont h2 {
            font-size: 72px;
            line-height: 72px;
            text-align: center;
        }
        .home_page21 .slide_banner18 .slide_cont h2 span {
            float: left;
        }
        .slide_banner18#banner_parallax p {
            font-size: 15px;
        }
        .categary_part {
            width: 100%;
            min-height: 280px;
        }
        .slide_banner18 .slide_bt {
            padding-bottom: 35px;
        }
        /** home page 22 **/
        .light_red .header.header_style_ecomr3 .menu > ul > li > a {
            color: #222;
        }
        .slide_banner22 .slide_cont {
            margin-top: 55px;
        }
        .slide_banner22 .slide_cont h2 {
            font-size: 40px;
            line-height: 45px;
        }
        .date_counter_2 #clockdiv div.count {
            width: 50%;
            margin: 7px 0 0 0;
            text-align: center;
        }
        .date_counter_2 #clockdiv div > span {
            width: 90%;
            margin: 0 5%;
        }
        .full.counter_price h2 {
            line-height: normal;
        }
        .home_page22 div.full.layout_bt {
            margin-bottom: 35px;
        }
        /** home paga 23 **/
        .catergary_tab_bar ul li.nav-item {
            width: 50%;
        }
        .client_slider_main2 .testi_head {
            margin-top: 25px;
            text-align: center;
        }
        .client_slider_main2 div#testimonial2 {
            width: 90%;
            margin: 20px 5% 80px;
        }
        .service_information .pink1,
        .service_information .pink2,
        .service_information .pink3 {
            margin-bottom: 35px;
        }
        /** home page 24 **/
        .skyblue .menu-mobile {
            border-color: #fff;
            color: #fff;
            margin: 10px 5px;
        }
        .master_ji {
            margin-bottom: 30px;
        }
        .bottom_fixed {
            position: relative;
            bottom: 0;
        }
        .brand_logo_section li {
            width: 50%;
            padding: 0 15px;
        }
        /** home page 25 **/
        .header_funky_style .header_top {
            display: none;
        }
        .header_funky_style a.menu-mobile {
            margin: 10px;
        }
        .header.header_funky_style .menu > ul > li > a {
            font-size: 15px;
            font-weight: 400;
            color: #898989;
            padding: 10px 15px 9px;
        }
        .slide_banner25 .slide_cont h2 {
            text-transform: uppercase;
            font-weight: 700;
            font-family: 'Raleway', sans-serif;
            font-size: 28px;
            line-height: 35px;
            z-index: 0;
            margin-bottom: 25px;
        }
        .slide_banner25 .slide_cont {
            margin-top: 50px;
        }
        .bottom_service_temp_inner {
            margin-top: 0;
        }
        .bottom_service_temp {
            display: none;
        }
        .slide_banner25 .inner_slide {
            margin: 25px 0 0 0;
        }
        .team_blog_img {
            float: left;
            width: 100%;
            height: 170px;
            margin-top: 0px;
            margin-left: 0;
            border-radius: 0;
            text-align: center;
            align-items: center;
            display: flex;
            justify-content: center;
            margin-right: 0;
            margin-bottom: 25px;
        }
        .team_blog {
            border-radius: 5px;
            min-height: 170px;
            float: left;
            width: 100%;
        }
        .team_blog_cont {
            padding: 25px 0 15px 0;
            float: left;
            width: 100%;
        }
        /** home page 26 **/
        .header_style26 .right_side_bt {
            display: none;
        }
        .header_style26 .menu {
            width: auto;
            margin: 9px 0 0;
            float: left;
        }
        .header_style26 .menu > ul > li > a {
            padding: 10px 25px;
        }
        .slide_banner26 .slide_cont {
            margin-top: 220px;
        }
        .slide_banner26 .slide_cont h2 {
            font-size: 40px;
            line-height: 45px;
        }
        .owl-carousel-mousewheel .owl-prev {
            width: 35px;
        }
        .owl-carousel-mousewheel .owl-next {
            width: 35px;
        }
        .owl-carousel-mousewheel {
            padding: 0 35px;
        }
        .owl-carousel-mousewheel {
            background: #fff;
        }
        .step_process li {
            width: 100%;
        }
        /** inner pages **/
        .team_member_img img {
            width: 100%;
        }
        #inner_slide .slider_information ul li {
            margin: 10px 0;
            width: 100%;
        }
        .slider_information {
            margin-bottom: 25px;
        }
        .lawyer_img {
            margin-bottom: 35px;
        }
        .about_page_3.brown_color_theme .heading_style_7 h2 {
            font-size: 21px;
        }
        .left_section_head {
            margin-bottom: 35px;
        }
        .testimonial_ser2 .owl-nav.disabled {
            top: -50px;
        }
        .client_slider_main .testimonial_ser2 .owl-nav .owl-next,
        .client_slider_main .testimonial_ser2 .owl-nav .owl-next:hover,
        .client_slider_main .testimonial_ser2 .owl-nav .owl-next:focus {
            width: 50%;
            height: 45px;
            text-align: center;
            line-height: 45px;
            right: 0;
            border-radius: 0;
        }
        .client_slider_main .testimonial_ser2 .owl-nav .owl-prev,
        .client_slider_main .testimonial_ser2 .owl-nav .owl-prev:hover,
        .client_slider_main .testimonial_ser2 .owl-nav .owl-prev:focus {
            width: 50%;
            height: 45px;
            border-radius: 0;
            text-align: center;
            line-height: 45px;
            left: 0;
        }
        .testimonial_ser2 .testimo {
            margin-bottom: 25px;
        }
        .service_blog3 .padding_right_left_15 {
            background: #f8f8f8;
            padding: 15px 15px;
        }
        .inner_banner7 {
            padding-top: 180px;
        }
        .blog_banner h2,
        .portfolio_banner h2 {
            margin: 85px 0 0;
            font-weight: 300;
        }
        .breadcrum_side ul {
            margin: 5px 0 30px;
            width: 100%;
        }
        .blog_detail h3 {
            text-align: left;
        }
        #default_theme.blog_detail section p {
            text-align: left;
        }
        .width_50 {
            width: 100%;
        }
        .layout_padding_grey_half {
            padding: 35px;
        }
        .portfolio .tab_bar_section ul.nav.nav-tabs li {
            margin-bottom: 15px;
            margin-left: 10px;
            margin-right: 10px;
            width: auto;
        }
        .portfolio .portfolio_layout2 .tab_bar_section ul.nav.nav-tabs li {
            margin: 0 10px 20px;
        }
        .portblog_img img {
            width: 100%;
        }
        .share_section ul li {
            margin: 0 0 10px 0;
            width: 100%;
        }
        .share_section {
            float: left;
            width: 100%;
            margin-top: 0;
            margin-bottom: 35px;
        }
        .portfolio_detail .one_line_layout .feature_icon img {
            width: 100px;
        }
        
        /** shop page **/
        
        .shopping-cart-cart {
            max-width: 100%;
            width: 100%;
            margin-top: 25px;
        }
        .product-table table.table {
            min-width: 720px;
        }
        .product_detail_page .tab_bar_section .nav.nav-tabs {
            display: flex;
            justify-content: center;
        }
        .product_detail_page .tab_bar_section .nav-tabs .nav-item {
            width: 100%;
        }
        .inner_banner1 h2 {
            font-size: 30px;
        }
        .cont_theme_blog h3 {
            font-size: 30px;
            line-height: 38px;
            font-weight: 600;
        }
        .cont_theme_blog p {
           font-size: 16px;
           line-height: normal;
        }
        .information_blogs {
            margin-bottom: 45px;
        }
        
    }
    
    
    /*---------------------------------------------
        Responsive Menu 
    ---------------------------------------------*/
    
    @media only screen and (max-width: 991px) {
        .test{
            margin-left: 114px;
        }
        .only_desk_menu {
            display: none;
        }
        .only_mobile_tab_menu {
            display: block;
        }
        .menu {
            margin: -56px 0 0;
            float: right;
        }
        .menu-container {
            width: 100%;
        }
        .menu-container .menu {
            display: inline-block;
        }
        .menu > ul > li > ul.normal-sub > li {
            width: 50%;
            padding: 0;
        }
        .menu > ul > li > ul > li {
            padding: 8px 0;
        }
        .menu > ul > li > ul.normal-sub > li a {
            border: 0;
            padding: 8px 0;
        }
        .menu > ul > li > ul > li a {
            color: #777;
            padding: 0;
            width: 100%;
            display: block;
            font-size: 13px;
        }
        .menu-mobile {
        display: block;
        padding: 0;
        width: 35px;
        cursor: pointer !important;
        height: 35px;
        border: solid #1e72bc 2px;
        border-radius: 5px;
        z-index: 9;
        }
        .menu-mobile {
            text-align: center;
            color: #1e72bc;
            font-size: 18px;
            margin-top: -20px;
        }
        .menu-mobile:hover,
        .menu-mobile:focus {
            border-color: #000;
            color: #000;
        }
        .menu-dropdown-icon:before {
            display: block;
        }
        .menu > ul > li > ul > li {
            margin: 0;
            padding-top: 0;
            padding-bottom: 0;
            list-style: none;
            width: 50%;
            background: none;
            float: left;
            min-height: auto;
        }
        .menu > ul > li {
            width: 100%;
            float: none;
            display: block;
            border-bottom: solid #ddd 2px;
        }
        .menu > ul > li a {
            padding: 10px 15px 10px;
            width: 100%;
            display: block;
        }
        .menu > ul > li > ul {
            position: relative;
            padding: 10px 15px;
            overflow-y: auto;
            border: none;
            border-top: solid #ddd 2px;
            width: 100%;
            min-height: auto;
            background-image: none;
            box-shadow: none;
            margin: 0;
        }
        .menu > ul > li > ul > li:nth-child(2n+1) {
            background: #fff;
        }
        .menu > ul > li > ul.normal-sub {
            width: 100%;
            padding: 10px 15px;
        }
        .menu > ul > li > ul > li:first-child {
            margin: 0;
        }
        .menu > ul > li > ul > li > ul {
            position: relative;
        }
        .menu > ul > li > ul > li > ul > li {
            float: none;
        }
        .main_menu .clearfix {
            position: absolute;
            width: 100%;
            left: 0;
            top: 5px;
            z-index: 9;
            background: #fff;
            transition: ease all 0.5s;
            opacity: 0;
            visibility: hidden;
            border-top: solid #ddd 2px;
        }
        .main_menu .clearfix.show-on-mobile {
            opacity: 1;
            visibility: visible;
        }
        .responsive_logo {
            display: block;
        }
        .desk_logo {
            display: none;
        }
    }
    
    /* W3.CSS 4.13 June 2019 by Jan Egil and Borge Refsnes */
html{box-sizing:border-box}*,*:before,*:after{box-sizing:inherit}
/* Extract from normalize.css by Nicolas Gallagher and Jonathan Neal git.io/normalize */
html{-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}
article,aside,details,figcaption,figure,footer,header,main,menu,nav,section{display:block}summary{display:list-item}
audio,canvas,progress,video{display:inline-block}progress{vertical-align:baseline}
audio:not([controls]){display:none;height:0}[hidden],template{display:none}
a{background-color:transparent}a:active,a:hover{outline-width:0}
abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}
b,strong{font-weight:bolder}dfn{font-style:italic}mark{background:#ff0;color:#000}
small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}
sub{bottom:-0.25em}sup{top:-0.5em}figure{margin:1em 40px}img{border-style:none}
code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}hr{box-sizing:content-box;height:0;overflow:visible}
button,input,select,textarea,optgroup{font:inherit;margin:0}optgroup{font-weight:bold}
button,input{overflow:visible}button,select{text-transform:none}
button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button}
button::-moz-focus-inner,[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner{border-style:none;padding:0}
button:-moz-focusring,[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring{outline:1px dotted ButtonText}
fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:.35em .625em .75em}
legend{color:inherit;display:table;max-width:100%;padding:0;white-space:normal}textarea{overflow:auto}
[type=checkbox],[type=radio]{padding:0}
[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}
[type=search]{-webkit-appearance:textfield;outline-offset:-2px}
[type=search]::-webkit-search-decoration{-webkit-appearance:none}
::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}
/* End extract */
html,body{font-family:Verdana,sans-serif;font-size:15px;line-height:1.5}html{overflow-x:hidden}
h1{font-size:36px}h2{font-size:30px}h3{font-size:24px}h4{font-size:20px}h5{font-size:18px}h6{font-size:16px}.w3-serif{font-family:serif}
h1,h2,h3,h4,h5,h6{font-family:"Segoe UI",Arial,sans-serif;font-weight:400;margin:10px 0}.w3-wide{letter-spacing:4px}
hr{border:0;border-top:1px solid #eee;margin:20px 0}
.w3-image{max-width:100%;height:auto}img{vertical-align:middle}a{color:inherit}
.w3-table,.w3-table-all{border-collapse:collapse;border-spacing:0;width:100%;display:table}.w3-table-all{border:1px solid #ccc}
.w3-bordered tr,.w3-table-all tr{border-bottom:1px solid #ddd}.w3-striped tbody tr:nth-child(even){background-color:#f1f1f1}
.w3-table-all tr:nth-child(odd){background-color:#fff}.w3-table-all tr:nth-child(even){background-color:#f1f1f1}
.w3-hoverable tbody tr:hover,.w3-ul.w3-hoverable li:hover{background-color:#ccc}.w3-centered tr th,.w3-centered tr td{text-align:center}
.w3-table td,.w3-table th,.w3-table-all td,.w3-table-all th{padding:8px 8px;display:table-cell;text-align:left;vertical-align:top}
.w3-table th:first-child,.w3-table td:first-child,.w3-table-all th:first-child,.w3-table-all td:first-child{padding-left:16px}
.w3-btn,.w3-button{border:none;display:inline-block;padding:8px 16px;vertical-align:middle;overflow:hidden;text-decoration:none;color:inherit;background-color:inherit;text-align:center;cursor:pointer;white-space:nowrap}
.w3-btn:hover{box-shadow:0 8px 16px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19)}
.w3-btn,.w3-button{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}   
.w3-disabled,.w3-btn:disabled,.w3-button:disabled{cursor:not-allowed;opacity:0.3}.w3-disabled *,:disabled *{pointer-events:none}
.w3-btn.w3-disabled:hover,.w3-btn:disabled:hover{box-shadow:none}
.w3-badge,.w3-tag{background-color:#000;color:#fff;display:inline-block;padding-left:8px;padding-right:8px;text-align:center}.w3-badge{border-radius:50%}
.w3-ul{list-style-type:none;padding:0;margin:0}.w3-ul li{padding:8px 16px;border-bottom:1px solid #ddd}.w3-ul li:last-child{border-bottom:none}
.w3-tooltip,.w3-display-container{position:relative}.w3-tooltip .w3-text{display:none}.w3-tooltip:hover .w3-text{display:inline-block}
.w3-ripple:active{opacity:0.5}.w3-ripple{transition:opacity 0s}
.w3-input{padding:8px;display:block;border:none;border-bottom:1px solid #ccc;width:100%}
.w3-select{padding:9px 0;width:100%;border:none;border-bottom:1px solid #ccc}
.w3-dropdown-click,.w3-dropdown-hover{position:relative;display:inline-block;cursor:pointer}
.w3-dropdown-hover:hover .w3-dropdown-content{display:block}
.w3-dropdown-hover:first-child,.w3-dropdown-click:hover{background-color:#ccc;color:#000}
.w3-dropdown-hover:hover > .w3-button:first-child,.w3-dropdown-click:hover > .w3-button:first-child{background-color:#ccc;color:#000}
.w3-dropdown-content{cursor:auto;color:#000;background-color:#fff;display:none;position:absolute;min-width:160px;margin:0;padding:0;z-index:1}
.w3-check,.w3-radio{width:24px;height:24px;position:relative;top:6px}
.w3-sidebar{height:100%;width:200px;background-color:#fff;position:fixed!important;z-index:1;overflow:auto}
.w3-bar-block .w3-dropdown-hover,.w3-bar-block .w3-dropdown-click{width:100%}
.w3-bar-block .w3-dropdown-hover .w3-dropdown-content,.w3-bar-block .w3-dropdown-click .w3-dropdown-content{min-width:100%}
.w3-bar-block .w3-dropdown-hover .w3-button,.w3-bar-block .w3-dropdown-click .w3-button{width:100%;text-align:left;padding:8px 16px}
.w3-main,#main{transition:margin-left .4s}
.w3-modal{z-index:3;display:none;padding-top:100px;position:fixed;left:0;top:0;width:100%;height:100%;overflow:auto;background-color:rgb(0,0,0);background-color:rgba(0,0,0,0.4)}
.w3-modal-content{margin:auto;background-color:#fff;position:relative;padding:0;outline:0;width:600px}
.w3-bar{width:100%;overflow:hidden}.w3-center .w3-bar{display:inline-block;width:auto}
.w3-bar .w3-bar-item{padding:8px 16px;float:left;width:auto;border:none;display:block;outline:0}
.w3-bar .w3-dropdown-hover,.w3-bar .w3-dropdown-click{position:static;float:left}
.w3-bar .w3-button{white-space:normal}
.w3-bar-block .w3-bar-item{width:100%;display:block;padding:8px 16px;text-align:left;border:none;white-space:normal;float:none;outline:0}
.w3-bar-block.w3-center .w3-bar-item{text-align:center}.w3-block{display:block;width:100%}
.w3-responsive{display:block;overflow-x:auto}
.w3-container:after,.w3-container:before,.w3-panel:after,.w3-panel:before,.w3-row:after,.w3-row:before,.w3-row-padding:after,.w3-row-padding:before,
.w3-cell-row:before,.w3-cell-row:after,.w3-clear:after,.w3-clear:before,.w3-bar:before,.w3-bar:after{content:"";display:table;clear:both}
.w3-col,.w3-half,.w3-third,.w3-twothird,.w3-threequarter,.w3-quarter{float:left;width:100%}
.w3-col.s1{width:8.33333%}.w3-col.s2{width:16.66666%}.w3-col.s3{width:24.99999%}.w3-col.s4{width:33.33333%}
.w3-col.s5{width:41.66666%}.w3-col.s6{width:49.99999%}.w3-col.s7{width:58.33333%}.w3-col.s8{width:66.66666%}
.w3-col.s9{width:74.99999%}.w3-col.s10{width:83.33333%}.w3-col.s11{width:91.66666%}.w3-col.s12{width:99.99999%}
@media (min-width:601px){.w3-col.m1{width:8.33333%}.w3-col.m2{width:16.66666%}.w3-col.m3,.w3-quarter{width:24.99999%}.w3-col.m4,.w3-third{width:33.33333%}
.w3-col.m5{width:41.66666%}.w3-col.m6,.w3-half{width:49.99999%}.w3-col.m7{width:58.33333%}.w3-col.m8,.w3-twothird{width:66.66666%}
.w3-col.m9,.w3-threequarter{width:74.99999%}.w3-col.m10{width:83.33333%}.w3-col.m11{width:91.66666%}.w3-col.m12{width:99.99999%}}
@media (min-width:993px){.w3-col.l1{width:8.33333%}.w3-col.l2{width:16.66666%}.w3-col.l3{width:24.99999%}.w3-col.l4{width:33.33333%}
.w3-col.l5{width:41.66666%}.w3-col.l6{width:49.99999%}.w3-col.l7{width:58.33333%}.w3-col.l8{width:66.66666%}
.w3-col.l9{width:74.99999%}.w3-col.l10{width:83.33333%}.w3-col.l11{width:91.66666%}.w3-col.l12{width:99.99999%}}
.w3-rest{overflow:hidden}.w3-stretch{margin-left:-16px;margin-right:-16px}
.w3-content,.w3-auto{margin-left:auto;margin-right:auto}.w3-content{max-width:980px}.w3-auto{max-width:1140px}
.w3-cell-row{display:table;width:100%}.w3-cell{display:table-cell}
.w3-cell-top{vertical-align:top}.w3-cell-middle{vertical-align:middle}.w3-cell-bottom{vertical-align:bottom}
.w3-hide{display:none!important}.w3-show-block,.w3-show{display:block!important}.w3-show-inline-block{display:inline-block!important}
@media (max-width:1205px){.w3-auto{max-width:95%}}
@media (max-width:600px){.w3-modal-content{margin:0 10px;width:auto!important}.w3-modal{padding-top:30px}
.w3-dropdown-hover.w3-mobile .w3-dropdown-content,.w3-dropdown-click.w3-mobile .w3-dropdown-content{position:relative}	
.w3-hide-small{display:none!important}.w3-mobile{display:block;width:100%!important}.w3-bar-item.w3-mobile,.w3-dropdown-hover.w3-mobile,.w3-dropdown-click.w3-mobile{text-align:center}
.w3-dropdown-hover.w3-mobile,.w3-dropdown-hover.w3-mobile .w3-btn,.w3-dropdown-hover.w3-mobile .w3-button,.w3-dropdown-click.w3-mobile,.w3-dropdown-click.w3-mobile .w3-btn,.w3-dropdown-click.w3-mobile .w3-button{width:100%}}
@media (max-width:768px){.w3-modal-content{width:500px}.w3-modal{padding-top:50px}}
@media (min-width:993px){.w3-modal-content{width:900px}.w3-hide-large{display:none!important}.w3-sidebar.w3-collapse{display:block!important}}
@media (max-width:992px) and (min-width:601px){.w3-hide-medium{display:none!important}}
@media (max-width:992px){.w3-sidebar.w3-collapse{display:none}.w3-main{margin-left:0!important;margin-right:0!important}.w3-auto{max-width:100%}}
.w3-top,.w3-bottom{position:fixed;width:100%;z-index:1}.w3-top{top:0}.w3-bottom{bottom:0}
.w3-overlay{position:fixed;display:none;width:100%;height:100%;top:0;left:0;right:0;bottom:0;background-color:rgba(0,0,0,0.5);z-index:2}
.w3-display-topleft{position:absolute;left:0;top:0}.w3-display-topright{position:absolute;right:0;top:0}
.w3-display-bottomleft{position:absolute;left:0;bottom:0}.w3-display-bottomright{position:absolute;right:0;bottom:0}
.w3-display-middle{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%)}
.w3-display-left{position:absolute;top:50%;left:0%;transform:translate(0%,-50%);-ms-transform:translate(-0%,-50%)}
.w3-display-right{position:absolute;top:50%;right:0%;transform:translate(0%,-50%);-ms-transform:translate(0%,-50%)}
.w3-display-topmiddle{position:absolute;left:50%;top:0;transform:translate(-50%,0%);-ms-transform:translate(-50%,0%)}
.w3-display-bottommiddle{position:absolute;left:50%;bottom:0;transform:translate(-50%,0%);-ms-transform:translate(-50%,0%)}
.w3-display-container:hover .w3-display-hover{display:block}.w3-display-container:hover span.w3-display-hover{display:inline-block}.w3-display-hover{display:none}
.w3-display-position{position:absolute}
.w3-circle{border-radius:50%}
.w3-round-small{border-radius:2px}.w3-round,.w3-round-medium{border-radius:4px}.w3-round-large{border-radius:8px}.w3-round-xlarge{border-radius:16px}.w3-round-xxlarge{border-radius:32px}
.w3-row-padding,.w3-row-padding>.w3-half,.w3-row-padding>.w3-third,.w3-row-padding>.w3-twothird,.w3-row-padding>.w3-threequarter,.w3-row-padding>.w3-quarter,.w3-row-padding>.w3-col{padding:0 8px}
.w3-container,.w3-panel{padding:0.01em 16px}.w3-panel{margin-top:16px;margin-bottom:16px}
.w3-code,.w3-codespan{font-family:Consolas,"courier new";font-size:16px}
.w3-code{width:auto;background-color:#fff;padding:8px 12px;border-left:4px solid #4CAF50;word-wrap:break-word}
.w3-codespan{color:crimson;background-color:#f1f1f1;padding-left:4px;padding-right:4px;font-size:110%}
.w3-card,.w3-card-2{box-shadow:0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12)}
.w3-card-4,.w3-hover-shadow:hover{box-shadow:0 4px 10px 0 rgba(0,0,0,0.2),0 4px 20px 0 rgba(0,0,0,0.19)}
.w3-spin{animation:w3-spin 2s infinite linear}@keyframes w3-spin{0%{transform:rotate(0deg)}100%{transform:rotate(359deg)}}
.w3-animate-fading{animation:fading 10s infinite}@keyframes fading{0%{opacity:0}50%{opacity:1}100%{opacity:0}}
.w3-animate-opacity{animation:opac 0.8s}@keyframes opac{from{opacity:0} to{opacity:1}}
.w3-animate-top{position:relative;animation:animatetop 0.4s}@keyframes animatetop{from{top:-300px;opacity:0} to{top:0;opacity:1}}
.w3-animate-left{position:relative;animation:animateleft 0.4s}@keyframes animateleft{from{left:-300px;opacity:0} to{left:0;opacity:1}}
.w3-animate-right{position:relative;animation:animateright 0.4s}@keyframes animateright{from{right:-300px;opacity:0} to{right:0;opacity:1}}
.w3-animate-bottom{position:relative;animation:animatebottom 0.4s}@keyframes animatebottom{from{bottom:-300px;opacity:0} to{bottom:0;opacity:1}}
.w3-animate-zoom {animation:animatezoom 0.6s}@keyframes animatezoom{from{transform:scale(0)} to{transform:scale(1)}}
.w3-animate-input{transition:width 0.4s ease-in-out}.w3-animate-input:focus{width:100%!important}
.w3-opacity,.w3-hover-opacity:hover{opacity:0.60}.w3-opacity-off,.w3-hover-opacity-off:hover{opacity:1}
.w3-opacity-max{opacity:0.25}.w3-opacity-min{opacity:0.75}
.w3-greyscale-max,.w3-grayscale-max,.w3-hover-greyscale:hover,.w3-hover-grayscale:hover{filter:grayscale(100%)}
.w3-greyscale,.w3-grayscale{filter:grayscale(75%)}.w3-greyscale-min,.w3-grayscale-min{filter:grayscale(50%)}
.w3-sepia{filter:sepia(75%)}.w3-sepia-max,.w3-hover-sepia:hover{filter:sepia(100%)}.w3-sepia-min{filter:sepia(50%)}
.w3-tiny{font-size:10px!important}.w3-small{font-size:12px!important}.w3-medium{font-size:15px!important}.w3-large{font-size:18px!important}
.w3-xlarge{font-size:24px!important}.w3-xxlarge{font-size:36px!important}.w3-xxxlarge{font-size:48px!important}.w3-jumbo{font-size:64px!important}
.w3-left-align{text-align:left!important}.w3-right-align{text-align:right!important}.w3-justify{text-align:justify!important}.w3-center{text-align:center!important}
.w3-border-0{border:0!important}.w3-border{border:1px solid #ccc!important}
.w3-border-top{border-top:1px solid #ccc!important}.w3-border-bottom{border-bottom:1px solid #ccc!important}
.w3-border-left{border-left:1px solid #ccc!important}.w3-border-right{border-right:1px solid #ccc!important}
.w3-topbar{border-top:6px solid #ccc!important}.w3-bottombar{border-bottom:6px solid #ccc!important}
.w3-leftbar{border-left:6px solid #ccc!important}.w3-rightbar{border-right:6px solid #ccc!important}
.w3-section,.w3-code{margin-top:16px!important;margin-bottom:16px!important}
.w3-margin{margin:16px!important}.w3-margin-top{margin-top:16px!important}.w3-margin-bottom{margin-bottom:16px!important}
.w3-margin-left{margin-left:16px!important}.w3-margin-right{margin-right:16px!important}
.w3-padding-small{padding:4px 8px!important}.w3-padding{padding:8px 16px!important}.w3-padding-large{padding:12px 24px!important}
.w3-padding-16{padding-top:16px!important;padding-bottom:16px!important}.w3-padding-24{padding-top:24px!important;padding-bottom:24px!important}
.w3-padding-32{padding-top:32px!important;padding-bottom:32px!important}.w3-padding-48{padding-top:48px!important;padding-bottom:48px!important}
.w3-padding-64{padding-top:64px!important;padding-bottom:64px!important}
.w3-left{float:left!important}.w3-right{float:right!important}
.w3-button:hover{color:#000!important;background-color:#ccc!important}
.w3-transparent,.w3-hover-none:hover{background-color:transparent!important}
.w3-hover-none:hover{box-shadow:none!important}
/* Colors */
.w3-amber,.w3-hover-amber:hover{color:#000!important;background-color:#ffc107!important}
.w3-aqua,.w3-hover-aqua:hover{color:#000!important;background-color:#00ffff!important}
.w3-blue,.w3-hover-blue:hover{color:#fff!important;background-color:#2196F3!important}
.w3-light-blue,.w3-hover-light-blue:hover{color:#000!important;background-color:#87CEEB!important}
.w3-brown,.w3-hover-brown:hover{color:#fff!important;background-color:#795548!important}
.w3-cyan,.w3-hover-cyan:hover{color:#000!important;background-color:#00bcd4!important}
.w3-blue-grey,.w3-hover-blue-grey:hover,.w3-blue-gray,.w3-hover-blue-gray:hover{color:#fff!important;background-color:#607d8b!important}
.w3-green,.w3-hover-green:hover{color:#fff!important;background-color:#4CAF50!important}
.w3-light-green,.w3-hover-light-green:hover{color:#000!important;background-color:#8bc34a!important}
.w3-indigo,.w3-hover-indigo:hover{color:#fff!important;background-color:#3f51b5!important}
.w3-khaki,.w3-hover-khaki:hover{color:#000!important;background-color:#f0e68c!important}
.w3-lime,.w3-hover-lime:hover{color:#000!important;background-color:#cddc39!important}
.w3-orange,.w3-hover-orange:hover{color:#000!important;background-color:#ff9800!important}
.w3-deep-orange,.w3-hover-deep-orange:hover{color:#fff!important;background-color:#ff5722!important}
.w3-pink,.w3-hover-pink:hover{color:#fff!important;background-color:#e91e63!important}
.w3-purple,.w3-hover-purple:hover{color:#fff!important;background-color:#9c27b0!important}
.w3-deep-purple,.w3-hover-deep-purple:hover{color:#fff!important;background-color:#673ab7!important}
.w3-red,.w3-hover-red:hover{color:#fff!important;background-color:#f96495!important}
.w3-sand,.w3-hover-sand:hover{color:#000!important;background-color:#fdf5e6!important}
.w3-teal,.w3-hover-teal:hover{color:#fff!important;background-color:#009688!important}
.w3-yellow,.w3-hover-yellow:hover{color:#000!important;background-color:#ffeb3b!important}
.w3-white,.w3-hover-white:hover{color:#000!important;background-color:#fff!important}
.w3-black,.w3-hover-black:hover{color:#fff!important;background-color:#8AB77D!important}
.w3-grey,.w3-hover-grey:hover,.w3-gray,.w3-hover-gray:hover{color:#000!important;background-color:#9e9e9e!important}
.w3-light-grey,.w3-hover-light-grey:hover,.w3-light-gray,.w3-hover-light-gray:hover{color:#000!important;background-color:#f1f1f1!important}
.w3-dark-grey,.w3-hover-dark-grey:hover,.w3-dark-gray,.w3-hover-dark-gray:hover{color:#fff!important;background-color:#616161!important}
.w3-pale-red,.w3-hover-pale-red:hover{color:#000!important;background-color:#ffdddd!important}
.w3-pale-green,.w3-hover-pale-green:hover{color:#000!important;background-color:#ddffdd!important}
.w3-pale-yellow,.w3-hover-pale-yellow:hover{color:#000!important;background-color:#ffffcc!important}
.w3-pale-blue,.w3-hover-pale-blue:hover{color:#000!important;background-color:#ddffff!important}
.w3-text-amber,.w3-hover-text-amber:hover{color:#ffc107!important}
.w3-text-aqua,.w3-hover-text-aqua:hover{color:#00ffff!important}
.w3-text-blue,.w3-hover-text-blue:hover{color:#2196F3!important}
.w3-text-light-blue,.w3-hover-text-light-blue:hover{color:#87CEEB!important}
.w3-text-brown,.w3-hover-text-brown:hover{color:#795548!important}
.w3-text-cyan,.w3-hover-text-cyan:hover{color:#00bcd4!important}
.w3-text-blue-grey,.w3-hover-text-blue-grey:hover,.w3-text-blue-gray,.w3-hover-text-blue-gray:hover{color:#607d8b!important}
.w3-text-green,.w3-hover-text-green:hover{color:#4CAF50!important}
.w3-text-light-green,.w3-hover-text-light-green:hover{color:#8bc34a!important}
.w3-text-indigo,.w3-hover-text-indigo:hover{color:#3f51b5!important}
.w3-text-khaki,.w3-hover-text-khaki:hover{color:#b4aa50!important}
.w3-text-lime,.w3-hover-text-lime:hover{color:#cddc39!important}
.w3-text-orange,.w3-hover-text-orange:hover{color:#ff9800!important}
.w3-text-deep-orange,.w3-hover-text-deep-orange:hover{color:#ff5722!important}
.w3-text-pink,.w3-hover-text-pink:hover{color:#e91e63!important}
.w3-text-purple,.w3-hover-text-purple:hover{color:#9c27b0!important}
.w3-text-deep-purple,.w3-hover-text-deep-purple:hover{color:#673ab7!important}
.w3-text-red,.w3-hover-text-red:hover{color:#f44336!important}
.w3-text-sand,.w3-hover-text-sand:hover{color:#fdf5e6!important}
.w3-text-teal,.w3-hover-text-teal:hover{color:#009688!important}
.w3-text-yellow,.w3-hover-text-yellow:hover{color:#d2be0e!important}
.w3-text-white,.w3-hover-text-white:hover{color:#fff!important}
.w3-text-black,.w3-hover-text-black:hover{color:#000!important}
.w3-text-grey,.w3-hover-text-grey:hover,.w3-text-gray,.w3-hover-text-gray:hover{color:#757575!important}
.w3-text-light-grey,.w3-hover-text-light-grey:hover,.w3-text-light-gray,.w3-hover-text-light-gray:hover{color:#f1f1f1!important}
.w3-text-dark-grey,.w3-hover-text-dark-grey:hover,.w3-text-dark-gray,.w3-hover-text-dark-gray:hover{color:#3a3a3a!important}
.w3-border-amber,.w3-hover-border-amber:hover{border-color:#ffc107!important}
.w3-border-aqua,.w3-hover-border-aqua:hover{border-color:#00ffff!important}
.w3-border-blue,.w3-hover-border-blue:hover{border-color:#2196F3!important}
.w3-border-light-blue,.w3-hover-border-light-blue:hover{border-color:#87CEEB!important}
.w3-border-brown,.w3-hover-border-brown:hover{border-color:#795548!important}
.w3-border-cyan,.w3-hover-border-cyan:hover{border-color:#00bcd4!important}
.w3-border-blue-grey,.w3-hover-border-blue-grey:hover,.w3-border-blue-gray,.w3-hover-border-blue-gray:hover{border-color:#607d8b!important}
.w3-border-green,.w3-hover-border-green:hover{border-color:#4CAF50!important}
.w3-border-light-green,.w3-hover-border-light-green:hover{border-color:#8bc34a!important}
.w3-border-indigo,.w3-hover-border-indigo:hover{border-color:#3f51b5!important}
.w3-border-khaki,.w3-hover-border-khaki:hover{border-color:#f0e68c!important}
.w3-border-lime,.w3-hover-border-lime:hover{border-color:#cddc39!important}
.w3-border-orange,.w3-hover-border-orange:hover{border-color:#ff9800!important}
.w3-border-deep-orange,.w3-hover-border-deep-orange:hover{border-color:#ff5722!important}
.w3-border-pink,.w3-hover-border-pink:hover{border-color:#e91e63!important}
.w3-border-purple,.w3-hover-border-purple:hover{border-color:#9c27b0!important}
.w3-border-deep-purple,.w3-hover-border-deep-purple:hover{border-color:#673ab7!important}
.w3-border-red,.w3-hover-border-red:hover{border-color:#f44336!important}
.w3-border-sand,.w3-hover-border-sand:hover{border-color:#fdf5e6!important}
.w3-border-teal,.w3-hover-border-teal:hover{border-color:#009688!important}
.w3-border-yellow,.w3-hover-border-yellow:hover{border-color:#ffeb3b!important}
.w3-border-white,.w3-hover-border-white:hover{border-color:#fff!important}
.w3-border-black,.w3-hover-border-black:hover{border-color:#000!important}
.w3-border-grey,.w3-hover-border-grey:hover,.w3-border-gray,.w3-hover-border-gray:hover{border-color:#9e9e9e!important}
.w3-border-light-grey,.w3-hover-border-light-grey:hover,.w3-border-light-gray,.w3-hover-border-light-gray:hover{border-color:#f1f1f1!important}
.w3-border-dark-grey,.w3-hover-border-dark-grey:hover,.w3-border-dark-gray,.w3-hover-border-dark-gray:hover{border-color:#616161!important}
.w3-border-pale-red,.w3-hover-border-pale-red:hover{border-color:#ffe7e7!important}.w3-border-pale-green,.w3-hover-border-pale-green:hover{border-color:#e7ffe7!important}
.w3-border-pale-yellow,.w3-hover-border-pale-yellow:hover{border-color:#ffffcc!important}.w3-border-pale-blue,.w3-hover-border-pale-blue:hover{border-color:#e7ffff!important}/** Generated by FG **/
@font-face {
  font-family: 'Gotham_Medium_Regular';
  src: url(/fonts/Gotham_Medium_Regular.eot);
  src: local('☺'),
  url(/fonts/Gotham_Medium_Regular.woff) format('woff'),
  url(/fonts/Gotham_Medium_Regular.ttf) format('truetype'),
  url(/svg/Gotham_Medium_Regular.svg) format('svg');
  font-weight: normal;
  font-style: normal;
}

/** Generated by FG **/
@font-face {
  font-family: 'Gotham_Book';
  src: url(/fonts/Gotham_Book.eot);
  src: local('☺'),
  url(/fonts/Gotham_Book.woff) format('woff'),
  url(/fonts/Gotham_Book.ttf) format('truetype'),
  url(/svg/Gotham_Book.svg) format('svg');
  font-weight: normal;
  font-style: normal;
}

/** Generated by FG **/
@font-face {
  font-family: 'New_BaskervilleStd_Italic';
  src: url(/fonts/New_BaskervilleStd_Italic.eot);
  src: local('☺'),
  url(/fonts/New_BaskervilleStd_Italic.woff) format('woff'),
  url(/fonts/New_BaskervilleStd_Italic.ttf) format('truetype'),
  url(/svg/New_BaskervilleStd_Italic.svg) format('svg');
  font-weight: normal;
  font-style: normal;
}


/** Generated by FG **/
@font-face {
  font-family: 'Gotham_Book_Regular';
  src: url(/fonts/Gotham_Book_Regular.eot);
  src: local('☺'),
  url(/fonts/Gotham_Book_Regular.woff) format('woff'),
  url(/fonts/Gotham_Book_Regular.ttf) format('truetype'),
  url(/svg/Gotham_Book_Regular.svg) format('svg');
  font-weight: normal;
  font-style: normal;
}
/** Generated by FG **/
@font-face {
	font-family: 'Gotham-Bold';
	src: url(/fonts/Gotham-Bold.eot);
  src: local('☺'),
  url(/fonts/Gotham-Bold.woff) format('woff'),
  url(/fonts/Gotham-Bold.ttf) format('truetype'),
  url(/svg/Gotham-Bold.svg) format('svg');
	font-weight: normal;
	font-style: normal;
}


@media (min-width:768px){
  /* .container{width:750px} */
}
@media (min-width:992px){
  /* .container{width:970px} */
}
@media (min-width:1200px){
  /* .container{width:1250px} */
}

  /* Smartphones (portrait and landscape) ----------- */
  @media only screen and (min-device-width : 320px) and (max-device-width : 480px) {
   
  }

@media only screen and (min-device-width : 781px) and (max-device-width : 991px) {

}

/* custom - header mobile start */
  @media (max-width: 767px) {

  }
  @media (min-width: 768px) {
    
  }

  hr{
    border-top: 1px solid #141414;
  }

  /* Footer CSS starts */

  .footer-section-custom hr{
    border-top: 2px solid #143d59;
  }

    /* Footer CSS ends */

    body{
      background-color: #fff;
    }

    /* header layout css */
    .cust-margin-login{
      margin: 20px 0;
    }

    .cust-margin-login button{
      margin: 0 10px;
    }
    /* header layout css */

     /* Home page CSS starts */

  /* .artist-banner img{
    width: 100%;
  } */

  .color-link-head a{
    color: white;
  }

  .artist-header{
    padding: 25px;
    padding-bottom: 0;
  }

  .artist-header span{
    color: white;
    font-size: 30px;
  }

  .artist-header .white-color-head{
    color: #141414;
    font-size: 30px;
  }

  .artist-header button{
    float: right;
    color: white;
    /* border-color: white; */
    background-color: transparent;
    border: 2px solid #fff;
    padding: 10px;
  }

  .artist-header .white-color-head-button button{
    color: #141414;
    border: 2px solid #141414;
  }

  .artist-banner{
    background-image: url(/images/artist_banner.png);
    background-size: cover;/* 100% 100%;  */
    height: 80vh;
    background-repeat: no-repeat;
    margin-top: -136px;
  }

  .artist-banner .banner-text{
    text-align:center;
			position:absolute;
			transform: translate(-50%, -50%);
			top:50%;
      left:50%;
      color: white;
      font-size: 25px;
  }

  .artist-banner .banner-text span, .artist-header .span-orange{
    color: #f06530;
  }

  .custom-class-button, .custom-class-button:hover{
    color: white;
    background-color: #f06530;
  }

  .searchbar-artist{
    background-image: url(/images/Banner-2.png);
    background-size: 50% 100%;
    max-height: 60vh;
    height: 60vh;
    background-repeat: no-repeat;
  }

  .search-input-artist{
    display: block;
    margin: auto;
  }
  .search-input-artist input{ 
      margin-right: 10px;
      line-height: 4;
      width: 50%;
  }

  .search-input-artist button{ 
    line-height: 4;
    width: 20%;
}

.search-artist-span{
  color: #fff;
}

.search-artist-span-size{
  font-size: 50px;
  letter-spacing: 5px;
}

.search-artist-span-size u{
  text-decoration-color: #f06530;
}

.center-search-div{
    position:relative;
    transform: translate(-50%, -50%);
    top:50%;
    left:50%;
}

.hr-color{
  border-color: #141414;
}

.hr-td-content{
  width:1px;
  padding: 0 10px;
  white-space: nowrap;
  font-size: 30px;
  font-weight: 700;
}

.category-img-custom{
    background-size: 100% 100%;
    height: 410px;
    background-repeat: no-repeat;
}

.buy-banner{
  background-image: url(/images/Banner-3.png);
}

.rent-banner{
  background-image: url(/images/Banner-4.png);
}

.exchange-banner{
  background-image: url(/images/Banner-5.png);
}

.surprise-banner{
  background-image: url(/images/Banner-6.png);
}

.train-banner{
  background-image: url(/images/Banner-7.png);
}

.cat-custom-div{
  background-color: rgba(0,0,0,.30);
  margin: 30px;
  height: 350px;
  text-align: right;
  justify-content: right;
  display: flex;
}

.bottom-alignment-custom{
  align-self: flex-end; 
  width: 100%;
  padding-right: 10px;
  padding-bottom: 10px;
}

.cat-custom-div div{ 
  color: #fff;
  font-weight: 700;
  font-size: 35px;
}

.join-hands{
  background-color: #dddddd;
}

.join-hands span{
  color: #f06530;
}

.join-hands .partner-with-us{
  font-size: 50px;
  letter-spacing: 5px;
  margin-bottom: 10px;
}

.hr-td-content span{
  color: #f06530;
}

.see-more-img img{
  border: 1px solid black;
    padding: 5px;
}

.stay-touch{
  background-size: 100% 100%;
    /* height: 727px; @todo */
    background-repeat: no-repeat;
    background-image: url(/images/Banner-15.png);
}

.stay-touch-right{
  background-color: #143d59;
  color: #fff;
  padding: 30px;
}

.stay-touch-div{
  text-align:center;
			position:absolute;
			transform: translate(-50%, -50%);
			top:50%;
      left:50%;
      background-color: white;
      font-size: 30px;
      width: 50%;
      padding: 50px 0;
      letter-spacing: 2px;
}

.stay-touch-div span{
  color: #f06530;
}

.stay-touch-right span{
  color: #f06530;
}

.stay-touch-right button{
  float: right;
}

.stay-touch-right input{
  width: 100%;
  line-height: 3;
}

.stay-touch-right textarea{
  width: 100%;
  resize: none;
}

.stay-touch-right div:first-child{
  font-size: 16px;
}

.see-more-hr hr{
  width: 5%;
  border-top: 3px solid #f06530;
}

.see-more-hr{
  font-size: 24px;
}

    /* Home page CSS ends */

    /* Artist Registraton css starts */

  .artist-reg-page input{
    float: right;
  }

    /* Artist Registraton css ends */

    /* Breadcrumb starts */
      .breadCrumb{
        background-color: white;
      }

      .breadCrumb li{
          padding-left: 10px;
          padding-right: 10px;
       }
    /* Breadcrumb ends */


    /* listing page css starts */

    .listing-sort-by{
      float: right;
      color: #f06530;
    }

    .carouselImgDiv{
      width: 100%;
    }

    .product-grid-view{
      border: 1px solid #141414;
      /* margin: 2px; */
      padding: 5px;
      height: 420px;
      margin-bottom: 10px;
    }

    .artifact-section img{
      width: 100%;
    }

    .our-story-section{
      background-size: 100% 100%;
    height: 519px;
    background-repeat: no-repeat;
    background-image: url(/images/9.png);
    }

    .our-story-div{
      text-align:center;
			position:absolute;
			transform: translate(-50%, -50%);
			top:50%;
      left:50%;
      background-color: white;
      font-size: 16px;
      width: 70%;
      padding: 30px 50px;
      letter-spacing: 2px;
    }

    .the-funkar-way-right{
      background-color: #143d59;
      color: #fff;
      font-size: 16px;
    }

    .the-funkar-way-right ol li{
      padding: 5px 10px;
    }

    .the-funkar-way-right1 .faq-funkar-desc{
      color: #f06530;
    }
    .the-funkar-way-right1 {
      padding: 10px;
    }
    .the-funkar-way-right1 hr{
      border-top: 2px solid #f06530;
    }
    /* listing page css ends */

    /* Details page css starts */

    .detail-you-might-like img{
      width: 100%;
      border: 1px solid black;
      padding: 5px;
    }

    .detail-page-add span{
        float: right;
        /* display:block;s */
    }

    .price-tag{
      font-size: 30px;
    }
    /* Details page css stops */

    .float-right{
      float: right;
    }

    /* checkout page css starts */

.order-summary{
  color: #fff;
  padding: 20px;
  background-color: #143d59;
}

.bordered-summary{
  border: 1px solid black;
}
.bordered-summary-top{
  border-top: 1px solid black;
  padding: 20px;
}

.checkout-steps{
  background-color: #dddddd;
  padding: 10px;
}

.step-2-section textarea{
  width: 100%;
}
.payment-type{
  margin: 10px 0;
}
.address-block{
  padding: 10px 0;
}
.address-block .firstname{
  /* width: 45%; */
  float:left;
}

.address-block .lastname{
  /* width: 45%; */
  float: right;
}
.address-block .company input, .address-block .address input{
  width: 100%;
  /* float:left; */
}
.address-block .city, .address-block .state, .address-block .zipcode{
  width: 30%;
  float: left;
}
.address-block .state{
  margin-left: 20px;
}
.address-block .zipcode{
  float: right;
}
.address-block .city input, .address-block .state select, .address-block .zipcode input{
  width: 100%;
  /* float: left; */
}
.process-btn{
  text-align: center;
}
.creditnumber input{
  width: 100%;
  margin-bottom: 5px;
}
.creditcard-expiry, .creditcard-expiry-year{
  width: 30%;
  float: left;
}


    /* checkout page css ends */


/* ---------- VENDOR CSS ------------ */

.amp-artist-logo {
  font-size: 30px;
  font-weight: bold;
  text-transform: uppercase;
}

.amp-artist-link {
  color: #FFFFFF;
  font-weight: 300 !important;
}

.artist-active-link,
.amp-artist-link:hover {
  color: #F06530;
  font-weight: bold !important;
  font-size: normal !important;
}

.container-spacing {
  margin-top: 15px;
}

.container-spacing-lg {
  margin-top: 30px;
}

.artist-checkbox,
.artist-checkbox:hover {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.artist-pu-container {
  width: 50%;
  margin: 20px auto
}

.loading-div {
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, .30);
  z-index: 999;
  width: 100%;
  height: 100%;
}

.artist-loader {
  position: absolute;
  top: 45%;
  left: 47%
}

.location-carousel-item {
  height: 150px;
  border: 2px solid #6f8992;
  padding: 10px;
  padding-left: 25px;
  margin: 10px;
}

.location-item-name {
  color: #6f8992;
  font-weight: bold;
}

.amp-responsive {
  max-width: 100%;
  overflow-x: scroll;
}

.artist-align-center {
  text-align: center;
}

.no-margin-custom{
  margin-left: -15px;
  margin-right: -15px;
}

.search-bar-artist{
  margin-left: -15px;
}

@media (min-width: 768px) and (max-width: 991px) {
  .searchbar-artist{
    max-height: 40vh;
    height: 40vh;
  }
  .artist-banner{
    height: 40vh;
    }
}

@media (min-width: 992px) and (max-width: 1199px) { 
  .searchbar-artist{
    max-height: 50vh;
    height: 50vh;
  }
  .artist-banner{
    height: 60vh;
    }
}

@media (min-width: 1200px) { 
  .artist-banner{
    height: 80vh;
    }
}/* DayPicker styles */

.DayPicker {
  display: inline-block;
  font-size: 1rem;
}

.DayPicker-wrapper {
  position: relative;

  flex-direction: row;
  padding-bottom: 1em;

  -webkit-user-select: none;

     -moz-user-select: none;

      -ms-user-select: none;

          user-select: none;
}

.DayPicker-Months {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.DayPicker-Month {
  display: table;
  margin: 0 1em;
  margin-top: 1em;
  border-spacing: 0;
  border-collapse: collapse;

  -webkit-user-select: none;

     -moz-user-select: none;

      -ms-user-select: none;

          user-select: none;
}

.DayPicker-NavBar {
}

.DayPicker-NavButton {
  position: absolute;
  top: 1em;
  right: 1.5em;
  left: auto;

  display: inline-block;
  margin-top: 2px;
  width: 1.25em;
  height: 1.25em;
  background-position: center;
  background-size: 50%;
  background-repeat: no-repeat;
  color: #8B9898;
  cursor: pointer;
}

.DayPicker-NavButton:hover {
  opacity: 0.8;
}

.DayPicker-NavButton--prev {
  margin-right: 1.5em;
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAwCAYAAAB5R9gVAAAABGdBTUEAALGPC/xhBQAAAVVJREFUWAnN2G0KgjAYwPHpGfRkaZeqvgQaK+hY3SUHrk1YzNLay/OiEFp92I+/Mp2F2Mh2lLISWnflFjzH263RQjzMZ19wgs73ez0o1WmtW+dgA01VxrE3p6l2GLsnBy1VYQOtVSEH/atCCgqpQgKKqYIOiq2CBkqtggLKqQIKgqgCBjpJ2Y5CdJ+zrT9A7HHSTA1dxUdHgzCqJIEwq0SDsKsEg6iqBIEoq/wEcVRZBXFV+QJxV5mBtlDFB5VjYTaGZ2sf4R9PM7U9ZU+lLuaetPP/5Die3ToO1+u+MKtHs06qODB2zBnI/jBd4MPQm1VkY79Tb18gB+C62FdBFsZR6yeIo1YQiLJWMIiqVjQIu1YSCLNWFgijVjYIuhYYCKoWKAiiFgoopxYaKLUWOii2FgkophYp6F3r42W5A9s9OcgNvva8xQaysKXlFytoqdYmQH6tF3toSUo0INq9AAAAAElFTkSuQmCC');
}

.DayPicker-NavButton--next {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAwCAYAAAB5R9gVAAAABGdBTUEAALGPC/xhBQAAAXRJREFUWAnN119ugjAcwPHWzJ1gnmxzB/BBE0n24m4xfNkTaOL7wOtsl3AXMMb+Vjaa1BG00N8fSEibPpAP3xAKKs2yjzTPH9RAjhEo9WzPr/Vm8zgE0+gXATAxxuxtqeJ9t5tIwv5AtQAApsfT6TPdbp+kUBcgVwvO51KqVhMkXKsVJFXrOkigVhCIs1Y4iKlWZxB1rX4gwlpRIIpa8SDkWmggrFq4IIRaJKCYWnSgnrXIQV1r8YD+1Vrn+bReagysIFfLABRt31v8oBu1xEBttfRbltmfjgEcWh9snUS2kNdBK6WN1vrOWxObWsz+fjxevsxmB1GQDfINWiev83nhaoiB/CoOU438oPrhXS0WpQ9xc1ZQWxWHqUYe0I0qrKCQKjygDlXIQV2r0IF6ViEBxVTBBSFUQQNhVYkHIVeJAtkNsbQ7c1LtzP6FsObhb2rCKv7NBIGoq4SDmKoEgTirXAcJVGkFSVVpgoSrXICGUMUH/QBZNSUy5XWUhwAAAABJRU5ErkJggg==');
}

.DayPicker-NavButton--interactionDisabled {
  display: none;
}

.DayPicker-Caption {
  display: table-caption;
  margin-bottom: 0.5em;
  padding: 0 0.5em;
  text-align: left;
}

.DayPicker-Caption > div {
  font-weight: 500;
  font-size: 1.15em;
}

.DayPicker-Weekdays {
  display: table-header-group;
  margin-top: 1em;
}

.DayPicker-WeekdaysRow {
  display: table-row;
}

.DayPicker-Weekday {
  display: table-cell;
  padding: 0.5em;
  color: #8B9898;
  text-align: center;
  font-size: 0.875em;
}

.DayPicker-Weekday abbr[title] {
  border-bottom: none;
  text-decoration: none;
}

.DayPicker-Body {
  display: table-row-group;
}

.DayPicker-Week {
  display: table-row;
}

.DayPicker-Day {
  display: table-cell;
  padding: 0.5em;
  border-radius: 50%;
  vertical-align: middle;
  text-align: center;
  cursor: pointer;
}

.DayPicker-WeekNumber {
  display: table-cell;
  padding: 0.5em;
  min-width: 1em;
  border-right: 1px solid #EAECEC;
  color: #8B9898;
  vertical-align: middle;
  text-align: right;
  font-size: 0.75em;
  cursor: pointer;
}

.DayPicker--interactionDisabled .DayPicker-Day {
  cursor: default;
}

.DayPicker-Footer {
  padding-top: 0.5em;
}

.DayPicker-TodayButton {
  border: none;
  background-color: transparent;
  background-image: none;
  box-shadow: none;
  color: #4A90E2;
  font-size: 0.875em;
  cursor: pointer;
}

/* Default modifiers */

.DayPicker-Day--today {
  color: #D0021B;
  font-weight: 700;
}

.DayPicker-Day--outside {
  color: #8B9898;
  cursor: default;
}

.DayPicker-Day--disabled {
  color: #DCE0E0;
  cursor: default;
  /* background-color: #eff1f1; */
}

/* Example modifiers */

.DayPicker-Day--sunday {
  background-color: #F7F8F8;
}

.DayPicker-Day--sunday:not(.DayPicker-Day--today) {
  color: #DCE0E0;
}

.DayPicker-Day--selected:not(.DayPicker-Day--disabled):not(.DayPicker-Day--outside) {
  position: relative;

  background-color: #4A90E2;
  color: #F0F8FF;
}

.DayPicker-Day--selected:not(.DayPicker-Day--disabled):not(.DayPicker-Day--outside):hover {
  background-color: #51A0FA;
}

.DayPicker:not(.DayPicker--interactionDisabled)
  .DayPicker-Day:not(.DayPicker-Day--disabled):not(.DayPicker-Day--selected):not(.DayPicker-Day--outside):hover {
  background-color: #F0F8FF;
}

/* DayPickerInput */

.DayPickerInput {
  display: inline-block;
}

.DayPickerInput-OverlayWrapper {
  position: relative;
}

.DayPickerInput-Overlay {
  position: absolute;
  left: 0;
  z-index: 1;

  background: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}
.react-bs-table .react-bs-container-header .sort-column,td.react-bs-table-expand-cell,th.react-bs-table-expand-cell>div{cursor:pointer}.react-bs-table-container .react-bs-table-search-form{margin-bottom:0}.react-bs-table-bordered{border:1px solid #ddd;border-radius:5px}.react-bs-table table{margin-bottom:0;table-layout:fixed}.react-bs-table table td,.react-bs-table table th{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.react-bs-table-pagination{margin-top:10px}.react-bs-table-tool-bar{margin-bottom:5px}.react-bs-container-footer,.react-bs-container-header{overflow:hidden;width:100%}.react-bs-container-body{overflow:auto;width:100%}.react-bootstrap-table-page-btns-ul{float:right;margin-top:0}.react-bs-table .table-bordered{border:0;outline:0!important}.react-bs-table .table-bordered>thead>tr>td,.react-bs-table .table-bordered>thead>tr>th{border-bottom-width:2px}.react-bs-table .table-bordered>tbody>tr>td{outline:0!important}.react-bs-table .table-bordered>tbody>tr>td.default-focus-cell{outline:#6495ed solid 3px!important;outline-offset:-1px}.react-bs-table .table-bordered>tfoot>tr>td,.react-bs-table .table-bordered>tfoot>tr>th{border-top-width:2px;border-bottom-width:0}.react-bs-table .table-bordered>tbody>tr>td:first-child,.react-bs-table .table-bordered>tbody>tr>th:first-child,.react-bs-table .table-bordered>tfoot>tr>td:first-child,.react-bs-table .table-bordered>tfoot>tr>th:first-child,.react-bs-table .table-bordered>thead>tr>td:first-child,.react-bs-table .table-bordered>thead>tr>th:first-child{border-left-width:0}.react-bs-table .table-bordered>tbody>tr>td:last-child,.react-bs-table .table-bordered>tbody>tr>th:last-child,.react-bs-table .table-bordered>tfoot>tr>td:last-child,.react-bs-table .table-bordered>tfoot>tr>th:last-child,.react-bs-table .table-bordered>thead>tr>td:last-child,.react-bs-table .table-bordered>thead>tr>th:last-child{border-right-width:0}.react-bs-table .table-bordered>thead>tr:first-child>td,.react-bs-table .table-bordered>thead>tr:first-child>th{border-top-width:0}.react-bs-table .table-bordered>tfoot>tr:last-child>td,.react-bs-table .table-bordered>tfoot>tr:last-child>th{border-bottom-width:0}.react-bs-table .react-bs-container-footer>table>thead>tr>th,.react-bs-table .react-bs-container-header>table>thead>tr>th{vertical-align:middle}.react-bs-table .react-bs-container-footer>table>thead>tr>th .filter,.react-bs-table .react-bs-container-header>table>thead>tr>th .filter{font-weight:400}.react-bs-table .react-bs-container-header>table>thead>tr>th .filter::-webkit-input-placeholder,.react-bs-table .react-bs-container-header>table>thead>tr>th .number-filter-input::-webkit-input-placeholder,.react-bs-table .react-bs-container-header>table>thead>tr>th .select-filter option[value=''],.react-bs-table .react-bs-container-header>table>thead>tr>th .select-filter.placeholder-selected{color:#d3d3d3;font-style:italic}.react-bs-table .react-bs-container-footer>table>thead>tr>th .filter::-webkit-input-placeholder,.react-bs-table .react-bs-container-footer>table>thead>tr>th .number-filter-input::-webkit-input-placeholder,.react-bs-table .react-bs-container-footer>table>thead>tr>th .select-filter option[value=''],.react-bs-table .react-bs-container-footer>table>thead>tr>th .select-filter.placeholder-selected{color:#d3d3d3;font-style:italic}.react-bs-table .react-bs-container-footer>table>thead>tr>th .select-filter.placeholder-selected option:not([value='']),.react-bs-table .react-bs-container-header>table>thead>tr>th .select-filter.placeholder-selected option:not([value='']){color:initial;font-style:initial}.react-bs-table .react-bs-container-footer>table>thead>tr>th .date-filter,.react-bs-table .react-bs-container-footer>table>thead>tr>th .number-filter,.react-bs-table .react-bs-container-header>table>thead>tr>th .date-filter,.react-bs-table .react-bs-container-header>table>thead>tr>th .number-filter{display:flex}.react-bs-table .react-bs-container-footer>table>thead>tr>th .date-filter-input,.react-bs-table .react-bs-container-footer>table>thead>tr>th .number-filter-input,.react-bs-table .react-bs-container-header>table>thead>tr>th .date-filter-input,.react-bs-table .react-bs-container-header>table>thead>tr>th .number-filter-input{margin-left:5px;float:left;width:calc(100% - 67px - 5px)}.react-bs-table .react-bs-container-footer>table>thead>tr>th .date-filter-comparator,.react-bs-table .react-bs-container-footer>table>thead>tr>th .number-filter-comparator,.react-bs-table .react-bs-container-header>table>thead>tr>th .date-filter-comparator,.react-bs-table .react-bs-container-header>table>thead>tr>th .number-filter-comparator{width:67px;float:left}.react-bs-container .textarea-save-btn{position:absolute;z-index:100;right:0;top:-21px}.react-bs-table-no-data{text-align:center}.ReactModal__Overlay{-webkit-perspective:600;perspective:600;opacity:0;overflow-x:hidden;overflow-y:auto;background-color:rgba(0,0,0,.5);z-index:101}.ReactModal__Overlay--after-open{opacity:1;transition:opacity 150ms ease-out}.ReactModal__Content{-webkit-transform:scale(.5) rotateX(-30deg);transform:scale(.5) rotateX(-30deg)}.ReactModal__Content--after-open{-webkit-transform:scale(1) rotateX(0);transform:scale(1) rotateX(0);transition:all 150ms ease-in}.ReactModal__Overlay--before-close{opacity:0}.ReactModal__Content--before-close{-webkit-transform:scale(.5) rotateX(30deg);transform:scale(.5) rotateX(30deg);transition:all 150ms ease-in}.ReactModal__Content.modal-dialog{border:none;background-color:transparent}.animated{animation-fill-mode:both}.animated.bounceIn,.animated.bounceOut{animation-duration:.75s}.animated.shake{animation-duration:.3s}@keyframes shake{from,to{transform:translate3d(0,0,0)}10%,50%,90%{transform:translate3d(-10px,0,0)}30%,70%{transform:translate3d(10px,0,0)}}.shake{animation-name:shake}@keyframes bounceIn{20%,40%,60%,80%,from,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:scale3d(.3,.3,.3)}20%{transform:scale3d(1.1,1.1,1.1)}40%{transform:scale3d(.9,.9,.9)}60%{opacity:1;transform:scale3d(1.03,1.03,1.03)}80%{transform:scale3d(.97,.97,.97)}to{opacity:1;transform:scale3d(1,1,1)}}.bounceIn{animation-name:bounceIn}@keyframes bounceOut{20%{transform:scale3d(.9,.9,.9)}50%,55%{opacity:1;transform:scale3d(1.1,1.1,1.1)}to{opacity:0;transform:scale3d(.3,.3,.3)}}.bounceOut{animation-name:bounceOut}