@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);.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;
    pointer-events: none;
    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; } }
.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;filter:alpha(opacity=40);position:absolute;z-index:2;top:20px;background:none;border:0;font-size:32px;cursor:pointer}.carousel .control-arrow:focus,.carousel .control-arrow:hover{opacity:1;filter:alpha(opacity=100)}.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;filter:alpha(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-root{outline:none}.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:none;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;margin-right:6px;white-space:nowrap;overflow:hidden;border:3px solid #fff;padding:2px}.carousel .thumb:focus{border:3px solid #ccc;outline:none}.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,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}.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:0.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;padding:0;text-align:center;width:100%;z-index:1}@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;filter:alpha(opacity=30);box-shadow:1px 1px 2px rgba(0,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;filter:alpha(opacity=100)}.carousel .carousel-status{position:absolute;top:0;right:0;padding:5px;font-size:10px;text-shadow:1px 1px 1px rgba(0,0,0,0.9);color:#fff}.carousel:hover .slide .legend{opacity:1}
.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;
}
/*------------------------------------------------------------------
        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;
}