@charset "UTF-8";
.appear-animation {
  opacity: 0;
}
.block-appear-animation {
  opacity: 1;
  overflow: hidden;
  position: relative;
}
.block-appear-animation .block-appear-animation-wrapper {
  animation-duration: 1s;
  animation-duration: var(--animate-duration);
  animation-fill-mode: both;
  animation-delay: 0.3s;
  opacity: 0;
}
.anim-hover-scale-1-1:hover {
  transform: scale(1.1);
}
.anim-hover-scale-1-2:hover {
  transform: scale(1.2);
}
.anim-hover-opacity-0:hover {
  opacity: 0 !important;
}
.anim-hover-opacity-10:hover {
  opacity: 1 !important;
}
@keyframes sideMenuArrow {
  0% {
    left: 5px;
  }
  50% {
    left: 10px;
  }
  100% {
    left: 5px;
  }
}
@keyframes sideMenuArrowBack {
  0% {
    right: 5px;
  }
  50% {
    right: 10px;
  }
  100% {
    right: 5px;
  }
}
@keyframes maskUp {
  from {
    transform: translate(0, 100%);
  }
  to {
    transform: translate(0, 0);
  }
}
@keyframes maskRight {
  from {
    transform: translate(-100%, 0);
  }
  to {
    transform: translate(0, 0);
  }
}
@keyframes maskDown {
  from {
    transform: translate(0, -100%);
  }
  to {
    transform: translate(0, 0);
  }
}
@keyframes maskLeft {
  from {
    transform: translate(100%, 0);
  }
  to {
    transform: translate(0, 0);
  }
}
@keyframes textEntrance {
  from {
    opacity: 0;
    transform: translateY(100%) rotateX(-80deg);
  }
  to {
    transform: none;
    opacity: 1;
  }
}
@keyframes headerReveal {
  from {
    top: -150px;
  }
  to {
    top: 0;
  }
}
@keyframes fadeInUpShorter {
  from {
    opacity: 0;
    transform: translate(0, 50px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUpShorter {
  animation-name: fadeInUpShorter;
}
@keyframes fadeInUpShorterPlus {
  from {
    opacity: 0;
    transform: translate(0, 15px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInLeftShorter {
  from {
    opacity: 0;
    transform: translate(50px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInLeftShorterPlus {
  from {
    opacity: 0;
    transform: translate(15px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeftShorterPlus {
  animation-name: fadeInLeftShorterPlus;
}
@keyframes fadeInRightShorter {
  from {
    opacity: 0;
    transform: translate(-50px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInRightShorterPlus {
  from {
    opacity: 0;
    transform: translate(-15px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInRightShorterOpacity {
  from {
    opacity: 0;
    transform: translate(-50px, 0);
  }
  to {
    opacity: 0.7;
    transform: none;
  }
}
@keyframes fadeInDownShorter {
  from {
    opacity: 0;
    transform: translate(0, -50px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDownShorter {
  animation-name: fadeInDownShorter;
}
@keyframes fadeInDownShorterPlus {
  from {
    opacity: 0;
    transform: translate(0, -15px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInRightDownShorter {
  from {
    opacity: 0;
    transform: translate(-50px, -50px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInRightUpShorter {
  from {
    opacity: 0;
    transform: translate(-50px, 50px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInLeftDownShorter {
  from {
    opacity: 0;
    transform: translate(50px, -50px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInLeftUpShorter {
  from {
    opacity: 0;
    transform: translate(50px, 50px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes expandIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.expandIn {
  animation-name: expandIn;
}
@keyframes gradientTransition {
  0% {
    background-position: 0 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}
@keyframes sliderScrollButton {
  0% {
    opacity: 1;
    transform: translate3d(-50%, 0, 0);
  }
  70% {
    opacity: 1;
    transform: translate3d(-50%, 10px, 0);
  }
  100% {
    opacity: 0;
    transform: translate3d(-50%, 10px, 0);
  }
}
@keyframes arrowLeftRight {
  0% {
    transform: translate3d(-1px, 0, 0);
  }
  50% {
    transform: translate3d(1px, 0, 0);
  }
  100% {
    transform: translate3d(-1px, 0, 0);
  }
}
@keyframes navItemArrow {
  0% {
    position: relative;
    left: -1px;
  }
  50% {
    position: relative;
    left: 3px;
  }
  100% {
    position: relative;
    left: -1px;
  }
}
.hover-in {
  transition: 0.1s ease-out !important;
}
.hover-out {
  transition: 0.1s ease-in !important;
}
.hover-3d {
  transition: none;
}
@keyframes hotspot-pulsate {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  45% {
    transform: scale(1.75);
    opacity: 0;
  }
}
@keyframes stop-hotspot-pulsate {
  from {
    opacity: 0.4;
  }
  to {
    transform: scale(2);
    opacity: 0;
  }
}
@keyframes dotPulse {
  from {
    opacity: 1;
    transform: scale(0.2);
  }
  to {
    opacity: 0;
    transform: scale(1);
  }
}
@keyframes blurIn {
  from {
    opacity: 0;
    filter: blur(20px);
    transform: scale(1.3);
  }
  to {
    opacity: 1;
    filter: blur(0.1px);
    transform: none;
  }
}
@keyframes kenBurnsToRight {
  from {
    transform: scale(1.2);
  }
  to {
    transform: scale(1);
  }
}
@keyframes kenBurnsToLeft {
  from {
    transform: scale(1.2);
  }
  to {
    transform: scale(1);
  }
}
@keyframes bgPositionBottomToTop {
  from {
    background-position: bottom;
  }
  to {
    background-position: top;
  }
}
@keyframes pulseAnim {
  from {
    transform: scale(1);
    opacity: 1;
  }
  to {
    transform: scale(1.4);
    opacity: 0;
  }
}
@keyframes basicRotation {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes blockSlideToRight {
  from {
    transform: translate(-110%, 0);
  }
  to {
    transform: translate(110%, 0);
  }
}
@keyframes blockSlideToLeft {
  from {
    transform: translate(110%, 0);
  }
  to {
    transform: translate(-110%, 0);
  }
}
@keyframes blockSlideToTop {
  from {
    transform: translate(0, 110%);
  }
  to {
    transform: translate(0, -110%);
  }
}
@keyframes blockSlideToBottom {
  from {
    transform: translate(0, -110%);
  }
  to {
    transform: translate(0, 110%);
  }
}
@keyframes svgAnimationEffect1 {
  from {
    stroke-dasharray: 1000;
    stroke-dashoffset: -500;
  }
  to {
    stroke-dasharray: 1000;
    stroke-dashoffset: 0;
  }
}
.svg-animation-effect-1-hover svg {
  transform: scale(1);
  transition: ease transform 0.3s;
}
.svg-animation-effect-1-hover:hover svg {
  transform: scale(1.1);
}
[data-plugin-animated-words] {
  opacity: 0;
}
.animated-letters-wrapper {
  display: inline-block;
}
.animated-letters-item {
  display: inline-block;
}
@keyframes rotate-animation {
  0% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotate-animation-inverse {
  0% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(-180deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@keyframes highlightScribble1 {
  0% {
    stroke-dashoffset: 1;
    opacity: 0;
  }
  1% {
    opacity: 1;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
.arrow {
  background: transparent url(https://crystalcollections.in/img/arrows.png)
    no-repeat 0 0;
  width: 47px;
  height: 120px;
  display: inline-block;
  position: relative;
}
.arrow.arrow-light {
  background-image: url(https://crystalcollections.in/img/arrows-dark.png);
}
@media (max-width: 575px) {
  .arrow {
    display: none;
  }
}
.breadcrumb {
  background: 0 0;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}
.breadcrumb > li {
  display: inline-block;
  font-size: 0.8em;
  text-transform: uppercase;
  text-shadow: none;
}
.breadcrumb > li + li:before {
  color: inherit;
  opacity: 0.5;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f105";
  padding: 0 7px 0 5px;
}
.breadcrumb.breadcrumb-style-2 > li + li:before {
  content: "/";
}
.breadcrumb.breadcrumb-block {
  background: #212529;
  display: inline-block !important;
  padding: 7.2px 19.2px;
  padding: 0.45rem 1.2rem;
  border-radius: 4px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}
.breadcrumb.breadcrumb-light {
  color: #fff;
}
.breadcrumb.breadcrumb-light a {
  color: #fff;
}
.breadcrumb.breadcrumb-light .active {
  opacity: 0.7;
}
.btn {
  font-size: 12.8px;
  font-size: 0.8rem;
  padding: 8.528px 14.928px;
  padding: 0.533rem 0.933rem;
  cursor: pointer;
  font-weight: 600;
}
.btn.btn-sm {
  font-size: 12.8px;
  font-size: 0.8rem;
  padding: 4.8px 10.4px;
  padding: 0.3rem 0.65rem;
}
.btn.btn-lg {
  font-size: 16px;
  font-size: 1rem;
  padding: 8px 16px;
  padding: 0.5rem 1rem;
}
.btn.btn-xl {
  font-size: 16px;
  font-size: 1rem;
  padding: 12.8px 32px;
  padding: 0.8rem 2rem;
}
.btn.btn-px-1 {
  padding-left: 5.6px;
  padding-left: 0.35rem;
  padding-right: 5.6px;
  padding-right: 0.35rem;
}
.btn.btn-px-2 {
  padding-left: 12px;
  padding-left: 0.75rem;
  padding-right: 12px;
  padding-right: 0.75rem;
}
.btn.btn-px-3 {
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-right: 20px;
  padding-right: 1.25rem;
}
.btn.btn-px-4 {
  padding-left: 28px;
  padding-left: 1.75rem;
  padding-right: 28px;
  padding-right: 1.75rem;
}
.btn.btn-px-5 {
  padding-left: 38.4px;
  padding-left: 2.4rem;
  padding-right: 38.4px;
  padding-right: 2.4rem;
}
.btn.btn-py-1 {
  padding-top: 5.6px;
  padding-top: 0.35rem;
  padding-bottom: 5.6px;
  padding-bottom: 0.35rem;
}
.btn.btn-py-2 {
  padding-top: 12px;
  padding-top: 0.75rem;
  padding-bottom: 12px;
  padding-bottom: 0.75rem;
}
.btn.btn-py-3 {
  padding-top: 20px;
  padding-top: 1.25rem;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
}
.btn.btn-py-4 {
  padding-top: 28px;
  padding-top: 1.75rem;
  padding-bottom: 28px;
  padding-bottom: 1.75rem;
}
.btn.btn-py-5 {
  padding-top: 32px;
  padding-top: 2rem;
  padding-bottom: 32px;
  padding-bottom: 2rem;
}
html body .btn.active,
html body .btn.focus,
html body .btn:active,
html body .btn:focus,
html body.body .btn.active,
html body.body .btn.focus,
html body.body .btn:active,
html body.body .btn:focus {
  box-shadow: none !important;
}
.btn-default {
  color: #333;
  background-color: #fff;
  border-color: #ccc;
  box-shadow: none !important;
}
.btn-default:active,
.btn-default:focus,
.btn-default:hover {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad;
}
.btn-outline {
  border-width: 2px;
  padding: 7.728px 14.928px;
  padding: 0.483rem 0.933rem;
}
.btn-outline.btn-sm {
  padding: 4px 10.4px;
  padding: 0.25rem 0.65rem;
}
.btn-outline.btn-lg {
  padding: 7.2px 16px;
  padding: 0.45rem 1rem;
}
.btn-outline.btn-xl {
  padding: 12px 32px;
  padding: 0.75rem 2rem;
}
.btn-modern {
  text-transform: uppercase;
  font-size: 0.8em;
  padding: 12.8px 24px;
  padding: 0.8rem 1.5rem;
  font-weight: 600;
}
.btn-rounded {
  border-radius: 35px;
}
.btn-rounded-icon {
  border-radius: 50px;
  padding: 0;
  width: 50px;
  height: 50px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.btn-rounded-icon[data-hash] > i {
  pointer-events: none;
}
.btn-3d {
  border-bottom-width: 3px;
}
.btn-with-arrow {
  font-weight: 600;
}
.btn-with-arrow:not(.btn-with-arrow-solid) {
  background-color: transparent;
}
.btn-with-arrow span {
  background-color: #ccc;
  display: inline-block;
  height: 25px;
  line-height: 24px;
  width: 24px;
  border-radius: 50%;
  margin-left: 10px;
  transition: all 0.1s linear;
}
.btn-with-arrow i {
  color: #fff;
  font-size: 8px;
  top: -1px;
  position: relative;
}
.btn-with-arrow:hover span {
  transform: translateX(5px);
}
.btn-with-arrow.btn-lg span,
.btn-with-arrow.btn-xl span {
  line-height: 23px;
}
.btn-swap-1 {
  position: relative;
}
.btn-swap-1 > * {
  transition: cubic-bezier(0.55, 0, 0.1, 1) all 0.3s;
  white-space: nowrap;
}
.btn-swap-1 > :nth-child(1) {
  max-width: 100%;
  text-align: center;
  top: calc(50% - 10px);
  left: 50%;
  top: 50%;
  margin: 0;
  transform: translate(-50%, -50%);
  position: absolute;
}
.btn-swap-1 > :nth-child(2) {
  display: inline-block;
  transform: translateY(120%);
  opacity: 0;
}
.btn-swap-1:hover > :nth-child(1) {
  transform: translate(-50%, -120%);
  opacity: 0;
}
.btn-swap-1:hover > :nth-child(2) {
  transform: none;
  opacity: 1;
}
@keyframes btnArrowEffect1 {
  0% {
    transform: translateX(0);
  }
  51% {
    transform: translateX(20px);
    opacity: 1;
  }
  52% {
    opacity: 0;
    transform: translateX(-20px);
  }
  53% {
    opacity: 0;
  }
  54% {
    opacity: 1;
  }
  100% {
    transform: translateX(0);
  }
}
.btn-arrow-effect-1:hover > :nth-child(1) {
  animation: btnArrowEffect1 ease-out 0.3s;
}
.btn-link-effect-1 {
  position: relative;
}
.btn-link-effect-1:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: #212529;
  transition: width 0.25s ease-out;
}
.btn-link-effect-1:active:before,
.btn-link-effect-1:hover:before {
  width: 100%;
}
.btn-link-effect-2 {
  position: relative;
}
.btn-link-effect-2:before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: #212529;
  transition: width 0.25s ease-out;
}
.btn-link-effect-2:active:before,
.btn-link-effect-2:hover:before {
  width: 100%;
}
.btn-link-effect-3 {
  position: relative;
}
.btn-link-effect-3:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: #212529;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
}
.btn-link-effect-3:active:before,
.btn-link-effect-3:hover:before {
  width: 100%;
  left: 0;
}
.btn-link-effect-4 {
  position: relative;
}
.btn-link-effect-4:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: #212529;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s;
}
.btn-link-effect-4:active:before,
.btn-link-effect-4:hover:before {
  transform-origin: bottom left;
  transform: scaleX(1);
}
.btn-link-effect-5 {
  position: relative;
}
.btn-link-effect-5:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background: #212529;
  transition: height 0.2s ease;
}
.btn-link-effect-5:active:before,
.btn-link-effect-5:hover:before {
  height: 100%;
}
.btn-icon i {
  margin-right: 10px;
}
.btn.dropdown-toggle:after {
  margin-left: 0.155em;
  vertical-align: 0.155em;
}
.btn-primary {
  background-color: #ccc;
  border-color: #ccc #ccc #b3b2b2;
  color: #fff;
}
.btn-primary.hover,
.btn-primary:hover {
  background-color: #dfdfdf;
  border-color: #e6e5e5 #e6e5e5 #ccc;
  color: #fff;
}
.btn-primary.focus,
.btn-primary:focus {
  box-shadow: 0 0 0 3px rgba(204, 204, 204, 0.5);
}
.btn-primary:disabled {
  background-color: #ccc;
  border-color: #ccc #ccc #b3b2b2;
}
.btn-primary.active,
.btn-primary:active,
.show > .btn-primary.dropdown-toggle {
  background-color: #b9b9b9;
  background-image: none;
  border-color: #b3b2b2 #b3b2b2 #999;
}
.btn-outline.btn-primary {
  color: #ccc;
  background-color: transparent;
  background-image: none;
  border-color: #ccc;
}
.btn-outline.btn-primary.hover,
.btn-outline.btn-primary:hover {
  color: #fff;
  background-color: #ccc;
  border-color: #ccc;
}
.btn-outline.btn-primary.focus,
.btn-outline.btn-primary:focus {
  box-shadow: 0 0 0 3px rgba(204, 204, 204, 0.5);
}
.btn-outline.btn-primary:disabled {
  color: #ccc;
  background-color: transparent;
}
.btn-outline.btn-primary.active,
.btn-outline.btn-primary:active,
.show > .btn-outline.btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #ccc;
  border-color: #ccc;
}
.btn-success {
  background-color: #28a745;
  border-color: #28a745 #28a745 #1e7e34;
  color: #fff;
}
.btn-success.hover,
.btn-success:hover {
  background-color: #2fc652;
  border-color: #34ce57 #34ce57 #28a745;
  color: #fff;
}
.btn-success.focus,
.btn-success:focus {
  box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.5);
}
.btn-success:disabled {
  background-color: #28a745;
  border-color: #28a745 #28a745 #1e7e34;
}
.btn-success.active,
.btn-success:active,
.show > .btn-success.dropdown-toggle {
  background-color: #218838;
  background-image: none;
  border-color: #1e7e34 #1e7e34 #145523;
}
.btn-outline.btn-success {
  color: #28a745;
  background-color: transparent;
  background-image: none;
  border-color: #28a745;
}
.btn-outline.btn-success.hover,
.btn-outline.btn-success:hover {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-outline.btn-success.focus,
.btn-outline.btn-success:focus {
  box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.5);
}
.btn-outline.btn-success:disabled {
  color: #28a745;
  background-color: transparent;
}
.btn-outline.btn-success.active,
.btn-outline.btn-success:active,
.show > .btn-outline.btn-success.dropdown-toggle {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-danger {
  background-color: #dc3545;
  border-color: #dc3545 #dc3545 #bd2130;
  color: #fff;
}
.btn-danger.hover,
.btn-danger:hover {
  background-color: #e25663;
  border-color: #e4606d #e4606d #dc3545;
  color: #fff;
}
.btn-danger.focus,
.btn-danger:focus {
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.5);
}
.btn-danger:disabled {
  background-color: #dc3545;
  border-color: #dc3545 #dc3545 #bd2130;
}
.btn-danger.active,
.btn-danger:active,
.show > .btn-danger.dropdown-toggle {
  background-color: #c82333;
  background-image: none;
  border-color: #bd2130 #bd2130 #921925;
}
.btn-outline.btn-danger {
  color: #dc3545;
  background-color: transparent;
  background-image: none;
  border-color: #dc3545;
}
.btn-outline.btn-danger.hover,
.btn-outline.btn-danger:hover {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-outline.btn-danger.focus,
.btn-outline.btn-danger:focus {
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.5);
}
.btn-outline.btn-danger:disabled {
  color: #dc3545;
  background-color: transparent;
}
.btn-outline.btn-danger.active,
.btn-outline.btn-danger:active,
.show > .btn-outline.btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-info {
  background-color: #17a2b8;
  border-color: #17a2b8 #17a2b8 #117a8b;
  color: #fff;
}
.btn-info.hover,
.btn-info:hover {
  background-color: #1bc0da;
  border-color: #1fc8e3 #1fc8e3 #17a2b8;
  color: #fff;
}
.btn-info.focus,
.btn-info:focus {
  box-shadow: 0 0 0 3px rgba(23, 162, 184, 0.5);
}
.btn-info:disabled {
  background-color: #17a2b8;
  border-color: #17a2b8 #17a2b8 #117a8b;
}
.btn-info.active,
.btn-info:active,
.show > .btn-info.dropdown-toggle {
  background-color: #138496;
  background-image: none;
  border-color: #117a8b #117a8b #0c525d;
}
.btn-outline.btn-info {
  color: #17a2b8;
  background-color: transparent;
  background-image: none;
  border-color: #17a2b8;
}
.btn-outline.btn-info.hover,
.btn-outline.btn-info:hover {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-outline.btn-info.focus,
.btn-outline.btn-info:focus {
  box-shadow: 0 0 0 3px rgba(23, 162, 184, 0.5);
}
.btn-outline.btn-info:disabled {
  color: #17a2b8;
  background-color: transparent;
}
.btn-outline.btn-info.active,
.btn-outline.btn-info:active,
.show > .btn-outline.btn-info.dropdown-toggle {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-dark {
  background-color: #212529;
  border-color: #212529 #212529 #0a0c0d;
  color: #fff;
}
.btn-dark.hover,
.btn-dark:hover {
  background-color: #32383e;
  border-color: #383f45 #383f45 #212529;
  color: #fff;
}
.btn-dark.focus,
.btn-dark:focus {
  box-shadow: 0 0 0 3px rgba(33, 37, 41, 0.5);
}
.btn-dark:disabled {
  background-color: #212529;
  border-color: #212529 #212529 #0a0c0d;
}
.btn-dark.active,
.btn-dark:active,
.show > .btn-dark.dropdown-toggle {
  background-color: #101214;
  background-image: none;
  border-color: #0a0c0d #0a0c0d #000;
}
.btn-outline.btn-dark {
  color: #212529;
  background-color: transparent;
  background-image: none;
  border-color: #212529;
}
.btn-outline.btn-dark.hover,
.btn-outline.btn-dark:hover {
  color: #fff;
  background-color: #212529;
  border-color: #212529;
}
.btn-outline.btn-dark.focus,
.btn-outline.btn-dark:focus {
  box-shadow: 0 0 0 3px rgba(33, 37, 41, 0.5);
}
.btn-outline.btn-dark:disabled {
  color: #212529;
  background-color: transparent;
}
.btn-outline.btn-dark.active,
.btn-outline.btn-dark:active,
.show > .btn-outline.btn-dark.dropdown-toggle {
  color: #fff;
  background-color: #212529;
  border-color: #212529;
}
html body .btn-light,
html body .btn-outline.btn-light {
  border-color: #d9d9d9 #d9d9d9 #bfbfbf;
  color: #777;
}
html body .btn-light.btn-outline-light-opacity-2,
html body .btn-outline.btn-light.btn-outline-light-opacity-2 {
  border-color: rgba(255, 255, 255, 0.2);
}
html body .btn-light.hover,
html body .btn-light:hover,
html body .btn-outline.btn-light.hover,
html body .btn-outline.btn-light:hover {
  background-color: #f2f2f2;
  border-color: #e6e5e5 #e6e5e5 #ccc;
  color: #777;
}
html body .btn-light.focus,
html body .btn-light:focus,
html body .btn-outline.btn-light.focus,
html body .btn-outline.btn-light:focus {
  box-shadow: 0 0 0 3px rgba(191, 191, 191, 0.5);
}
html body .btn-light:disabled,
html body .btn-outline.btn-light:disabled {
  border-color: #bfbfbf #bfbfbf #bfbfbf;
}
.show > html body .btn-light.dropdown-toggle,
.show > html body .btn-outline.btn-light.dropdown-toggle,
html body .btn-light.active,
html body .btn-light:active,
html body .btn-outline.btn-light.active,
html body .btn-outline.btn-light:active {
  border-color: #bfbfbf #bfbfbf #bfbfbf;
}
html body .btn-light-2,
html body .btn-outline.btn-light-2 {
  border-color: #fff;
  color: #fff;
}
html body .btn-light-2.hover,
html body .btn-light-2:hover,
html body .btn-outline.btn-light-2.hover,
html body .btn-outline.btn-light-2:hover {
  background-color: #fff;
  border-color: #fff;
  color: #0e0e0e;
}
html body .btn-light-2.focus,
html body .btn-light-2:focus,
html body .btn-outline.btn-light-2.focus,
html body .btn-outline.btn-light-2:focus {
  box-shadow: 0 0 0 3px rgba(179, 178, 178, 0.5);
}
html body .btn-light-2:disabled,
html body .btn-outline.btn-light-2:disabled {
  border-color: #b3b2b2 #b3b2b2 #b3b2b2;
}
.show > html body .btn-light-2.dropdown-toggle,
.show > html body .btn-outline.btn-light-2.dropdown-toggle,
html body .btn-light-2.active,
html body .btn-light-2:active,
html body .btn-outline.btn-light-2.active,
html body .btn-outline.btn-light-2:active {
  border-color: #fff;
}
html[dir="rtl"] .input-group .form-control:not(:first-child),
html[dir="rtl"] .input-group-btn:not(:first-child) > .btn,
html[dir="rtl"] .input-group-btn:not(:first-child) > .btn-group > .btn,
html[dir="rtl"] .input-group-btn:not(:first-child) > .dropdown-toggle,
html[dir="rtl"]
  .input-group-btn:not(:last-child)
  > .btn-group:not(:first-child)
  > .btn,
html[dir="rtl"] .input-group-btn:not(:last-child) > .btn:not(:first-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.btn-circle {
  width: 30px;
  height: 30px;
  text-align: center;
  padding: 6px 0;
  font-size: 12px;
  line-height: 1.428571429;
  border-radius: 15px !important;
}
.btn-circle.btn-lg {
  width: 50px;
  height: 50px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.6;
  border-radius: 25px !important;
}
.btn-circle.btn-xl {
  width: 70px;
  height: 70px;
  padding: 10px 16px;
  font-size: 24px;
  line-height: 2;
  border-radius: 35px !important;
}
.btn.btn-effect-1 {
  transition: 0.25s;
}
.btn.btn-effect-1:focus,
.btn.btn-effect-1:hover {
  box-shadow: inset 0 0 0 2em var(--hover);
}
.btn.btn-effect-2 {
  transition: 0.25s;
}
.btn.btn-effect-2:focus,
.btn.btn-effect-2:hover {
  animation: btn-pulse 1s;
  box-shadow: 0 0 0 2em rgba(255, 255, 255, 0);
}
.btn.btn-effect-3 {
  transition: 0.25s;
}
.btn.btn-effect-3:focus,
.btn.btn-effect-3:hover {
  box-shadow: inset -3.5em 0 0 0 var(--hover), inset 3.5em 0 0 0 var(--hover);
}
.btn.btn-effect-4 {
  transition: 0.25s;
}
.btn.btn-effect-4:focus,
.btn.btn-effect-4:hover {
  box-shadow: 0 0.5em 0.5em -0.4em var(--hover);
  transform: translateY(-0.25em);
}
.btn.btn-effect-5 {
  transition: 0.25s;
}
.btn.btn-effect-5:focus,
.btn.btn-effect-5:hover {
  box-shadow: inset 0 -3.25em 0 0 var(--hover);
}
.btn.btn-effect-6 {
  transition: 0.25s;
}
.btn.btn-effect-6:focus,
.btn.btn-effect-6:hover {
  box-shadow: inset 6.5em 0 0 0 var(--hover);
}
.btn.btn-effect-7 {
  position: relative;
}
.btn.btn-effect-7:before {
  background: var(--hover);
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 0;
  transition: transform 0.2s cubic-bezier(0.4, 0.3, 0.35, 0.9) 0s;
  transform: scaleX(0);
  transform-origin: right center;
}
.btn.btn-effect-7:focus:before,
.btn.btn-effect-7:hover:before {
  transform: scale(1);
  transform-origin: left center;
}
.btn.btn-effect-7 span {
  position: relative;
  z-index: 1;
}
@keyframes btn-pulse {
  0% {
    box-shadow: 0 0 0 0 var(--hover);
  }
}
.call-to-action {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  padding: 32px 55px;
  clear: both;
}
.call-to-action::after {
  clear: both;
  content: "";
  display: block;
}
@media (max-width: 767px) {
  .call-to-action {
    padding: 10px 10px;
  }
}
.call-to-action h3 {
  text-transform: none;
  color: #212529;
  padding: 0;
  margin: 0 0 9px;
}
.call-to-action p {
  font-size: 1.2em;
}
.call-to-action > [class*="col-"] {
  display: flex;
  align-items: center;
}
.call-to-action > [class*="col-"]:nth-child(2) {
  justify-content: flex-end;
  text-align: center;
}
@media (max-width: 767px) {
  .call-to-action > [class*="col-"]:nth-child(2) {
    justify-content: center;
  }
}
.call-to-action .container-fluid > .row,
.call-to-action .container > .row {
  display: flex;
  flex-wrap: wrap;
}
.call-to-action .container-fluid > .row > [class*="col-"],
.call-to-action .container > .row > [class*="col-"] {
  display: flex;
  align-items: center;
}
.call-to-action .container-fluid > .row > [class*="col-"]:nth-child(2),
.call-to-action .container > .row > [class*="col-"]:nth-child(2) {
  justify-content: flex-end;
  text-align: center;
}
@media (max-width: 767px) {
  .call-to-action .container-fluid > .row > [class*="col-"]:nth-child(2),
  .call-to-action .container > .row > [class*="col-"]:nth-child(2) {
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .call-to-action > [class*="col-"]:not([class*="col-xs"]) {
    width: 100%;
  }
  .call-to-action .container > .row [class*="col-"]:not([class*="col-xs"]) {
    width: 100%;
  }
}
.call-to-action .call-to-action-content {
  text-align: center;
}
.call-to-action.call-to-action-default {
  background: #f7f7f7;
}
.call-to-action.call-to-action-dark {
  background: #333940;
}
.call-to-action.call-to-action-dark h3,
.call-to-action.call-to-action-dark p {
  color: #fff;
}
.call-to-action.with-borders {
  border-top: 1px solid #dfdfdf;
  border-bottom: 1px solid #dfdfdf;
  border-left: 1px solid #ececec;
  border-right: 1px solid #ececec;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.04);
}
.call-to-action.with-full-borders {
  border: 2px solid #ccc;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.04);
}
.call-to-action.with-button-arrow .call-to-action-btn {
  position: relative;
}
@media (min-width: 992px) {
  .call-to-action.with-button-arrow .call-to-action-btn {
    left: -80px;
  }
}
.call-to-action.with-button-arrow .call-to-action-btn .arrow {
  position: absolute;
}
@media (max-width: 991px) {
  .call-to-action.with-button-arrow .call-to-action-btn .arrow {
    display: none;
  }
}
.call-to-action.with-button-arrow .call-to-action-btn.no-left {
  left: 0;
}
@media (max-width: 991px) {
  .call-to-action.with-button-arrow .call-to-action-btn.no-left {
    margin-top: -25px !important;
  }
}
.call-to-action.content-align-center .call-to-action-btn,
.call-to-action.content-align-center .call-to-action-content {
  width: 100%;
  text-align: center;
}
.call-to-action.call-to-action-in-footer {
  padding-top: 70px;
  padding-bottom: 70px;
  margin-top: 30px;
  margin-bottom: -50px !important;
}
.call-to-action.call-to-action-in-footer:before {
  content: "";
  display: block;
  position: absolute;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid #fff;
  height: 20px;
  width: 20px;
  top: -5px;
  left: 50%;
  margin-left: -20px;
}
.call-to-action.no-top-arrow:before {
  display: none;
}
.call-to-action.call-to-action-in-footer-margin-top {
  margin-top: 60px;
}
.container .call-to-action {
  border-radius: 8px;
}
@media (max-width: 767px) {
  .call-to-action .call-to-action-btn,
  .call-to-action .call-to-action-content {
    margin: 0;
    padding: 20px;
    position: static;
    width: auto;
  }
}
.card {
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.card-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.card-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.card-body {
  padding: 32px;
  padding: 2rem;
  position: relative;
  z-index: 1;
}
.card-text-color-hover-light:hover * {
  color: #fff !important;
}
.card-background-image-hover {
  background-size: cover;
  background-position: center;
}
.card-background-image-hover .card-body {
  background: rgba(255, 255, 255, 0.9);
  margin: 16px;
  margin: 1rem;
  padding: 16px;
  padding: 1rem;
}
.card-border {
  overflow: hidden;
}
.card-border:after {
  content: "";
  transition: 0.2s all ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: absolute;
  left: 50%;
  height: 5px;
  width: 100%;
  transform: translateX(-50%);
  background-color: var(--primary);
}
.card-border.card-border-top:after {
  top: 0;
}
.card-border.card-border-bottom:after {
  bottom: 0;
}
.card-border.card-border-hover:after {
  width: 0;
}
.card-border.card-border-hover:hover:after {
  width: 100%;
}
.owl-carousel {
  display: block;
  margin-bottom: 20px;
  opacity: 0;
}
.owl-carousel:not(.owl-loaded):not(.owl-carousel-light) span,
.owl-carousel:not(.owl-loaded):not(.owl-carousel-light) > div {
  display: none;
}
.owl-carousel:not(.owl-loaded):not(.owl-carousel-light) span:first-child,
.owl-carousel:not(.owl-loaded):not(.owl-carousel-light) > div:first-child {
  display: block;
}
.owl-carousel .owl-item img {
  transform-style: unset;
}
.owl-carousel .owl-item img[data-icon] {
  display: inline;
}
.owl-carousel .thumbnail {
  margin-right: 1px;
}
.owl-carousel .owl-nav {
  top: 50%;
  position: absolute;
  width: 100%;
  margin-top: 0;
  transform: translate3d(0, -50%, 0);
}
.owl-carousel.top-border {
  border-top: 1px solid #eaeaea;
  padding-top: 18px;
}
.owl-carousel.nav-full-height .owl-nav {
  height: 100%;
}
.owl-carousel.show-nav-hover .owl-nav {
  opacity: 0;
  transition: all 0.2s ease-in-out;
}
.owl-carousel.show-nav-hover:hover .owl-nav {
  opacity: 1;
}
.owl-carousel.show-nav-title .owl-nav {
  top: 0;
  right: 0;
  margin-top: -25px;
  width: auto;
}
.owl-carousel.show-nav-title .owl-nav button[class*="owl-"],
.owl-carousel.show-nav-title .owl-nav button[class*="owl-"]:active,
.owl-carousel.show-nav-title .owl-nav button[class*="owl-"]:hover {
  font-size: 18px;
  background: 0 0 !important;
  width: 18px;
}
.owl-carousel.rounded-nav .owl-nav button[class*="owl-"] {
  padding: 3px 7px;
  border-radius: 50%;
  background: 0 0;
  border: 1px solid #999;
  color: #999;
}
.owl-carousel.rounded-nav .owl-nav button[class*="owl-"].hover,
.owl-carousel.rounded-nav .owl-nav button[class*="owl-"]:hover {
  background: 0 0;
  border: 1px solid #a1a1a1;
  color: #a1a1a1;
}
.owl-carousel.rounded-nav .owl-nav button[class*="owl-"].active,
.owl-carousel.rounded-nav .owl-nav button[class*="owl-"]:active {
  background: 0 0;
  border: 1px solid #666;
  color: #666;
}
.owl-carousel.nav-bottom .owl-nav {
  position: static;
  margin: 0;
  padding: 0;
  width: auto;
  transform: none;
}
.owl-carousel.nav-bottom.nav-bottom-align-left .owl-nav {
  text-align: left;
}
.owl-carousel.nav-style-3 .owl-nav {
  top: 25%;
}
.owl-carousel.full-width .owl-nav button[class*="owl-"],
.owl-carousel.full-width .owl-nav button[class*="owl-"]:hover {
  height: auto;
  padding: 20px 0 !important;
}
.owl-carousel.nav-light:not(.nav-style-1):not(.nav-style-2):not(
    .nav-style-3
  ):not(.show-nav-title):not(.nav-arrows-1)
  .owl-nav
  button[class*="owl-"] {
  background-color: #ececec !important;
  border-color: #ececec !important;
  color: #212529 !important;
}
.owl-carousel.nav-light:not(.nav-style-1):not(.nav-style-2):not(
    .nav-style-3
  ):not(.show-nav-title):not(.nav-arrows-1)
  .owl-nav
  button[class*="owl-"]:hover {
  background-color: #fff !important;
  border-color: #fff !important;
}
.owl-carousel.nav-light:not(.nav-style-1):not(.nav-style-2):not(
    .nav-style-3
  ):not(.show-nav-title):not(.nav-arrows-1)
  .owl-nav
  button[class*="owl-"]:active {
  background-color: #d2d2d2 !important;
  border-color: #d2d2d2 !important;
}
.owl-carousel.nav-light:not(.nav-style-1):not(.nav-style-2):not(
    .nav-style-3
  ):not(.show-nav-title):not(.nav-arrows-1).nav-with-transparency
  .owl-nav
  button[class*="owl-"] {
  width: 35px;
  height: 45px;
  background-color: rgba(236, 236, 236, 0.4) !important;
  border-color: transparent !important;
}
.owl-carousel.dots-title .owl-dots {
  position: absolute;
  margin-top: 0 !important;
  top: -51px;
  left: 155px;
}
.owl-carousel.dots-modern .owl-dots {
  display: flex;
  align-items: center;
  justify-content: center;
}
.owl-carousel.dots-align-left .owl-dots {
  text-align: left;
  justify-content: flex-start;
}
@media (min-width: 576px) and (max-width: 767px) {
  .owl-carousel.show-dots-sm .owl-dots {
    opacity: 1 !important;
    visibility: visible !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .owl-carousel.show-dots-md .owl-dots {
    opacity: 1 !important;
    visibility: visible !important;
  }
}
.owl-carousel.show-dots-hover .owl-dots {
  opacity: 0;
  visibility: hidden;
  transition: ease opacity 0.3s;
}
.owl-carousel.show-dots-hover:hover .owl-dots {
  opacity: 1;
  visibility: visible;
}
.owl-carousel.carousel-shadow-1 {
  position: relative;
}
.owl-carousel.carousel-shadow-1:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 65%;
  height: 0;
  box-shadow: 0 0 110px 180px rgba(0, 0, 0, 0.04);
  transform: translate3d(-50%, -50%, 0);
  z-index: 0;
}
.owl-carousel.carousel-shadow-1.carousel-shadow-1-bold:before {
  box-shadow: 0 0 110px 230px rgba(0, 0, 0, 0.04);
}
.owl-carousel .img-thumbnail.img-thumbnail-hover-icon {
  display: block;
}
.owl-carousel [class*="opacity-"]:not([class*="opacity-hover"]) {
  transition: ease opacity 0.3s;
}
.owl-carousel [class*="opacity-"]:not([class*="opacity-hover"]):hover {
  opacity: 1 !important;
}
.owl-carousel.carousel-center-active-item .owl-item {
  opacity: 0.2;
  transition: ease opacity 0.3s;
}
.owl-carousel.carousel-center-active-item .owl-item.current {
  opacity: 1 !important;
}
.owl-carousel.carousel-center-active-item.carousel-center-active-item-style-2
  .owl-item {
  opacity: 0.7;
}
.owl-carousel.carousel-center-active-item-2 .owl-item > div {
  width: 66.6666%;
  margin-left: auto;
  padding: 48px;
  padding: 3rem;
  background: #fff;
  border-radius: 7px;
  box-shadow: 0 0 70px -40px rgba(0, 0, 0, 0.2);
}
.owl-carousel.carousel-center-active-item-2 .owl-item.active > div {
  margin-right: auto;
}
.owl-carousel.carousel-center-active-item-2 .owl-item.active > div * {
  color: #fff !important;
}
.owl-carousel.carousel-center-active-item-2 .owl-item.active + .owl-item > div {
  margin-right: auto;
  margin-left: 0;
}
.owl-carousel.carousel-center-active-item-3 .owl-item > div {
  width: 100%;
  margin-left: auto;
  transition: ease opacity 0.3s;
}
.owl-carousel.carousel-center-active-item-3 .owl-item.active > div {
  margin-right: auto;
}
.owl-carousel.carousel-center-active-item-3 .owl-item.active + .owl-item > div {
  margin-right: auto;
  margin-left: 0;
}
.owl-carousel-light.owl-carousel-light-init-fadeIn {
  transition: ease opacity 0.3s;
}
.owl-carousel-light .owl-item {
  display: none;
  visibility: hidden;
  opacity: 0;
  position: absolute !important;
  width: 100%;
  height: 100%;
  top: 0;
  transition: ease opacity 0.3s;
}
.owl-carousel-light .owl-item.active {
  display: block;
  visibility: visible;
  opacity: 1;
}
.counters .counter {
  text-align: center;
}
.counters .icons,
.counters [class*="fa-"] {
  display: block;
  font-size: 35px;
  line-height: 35px;
  margin-bottom: 5px;
}
.counters strong {
  display: block;
  font-weight: 700;
  font-size: 50px;
  line-height: 50px;
}
.counters label {
  display: block;
  font-weight: 100;
  font-size: 20px;
  line-height: 20px;
}
.counters .counter-side-icon .icons,
.counters .counter-side-icon [class*="fa-"],
.counters .counter-side-icon strong {
  display: inline-block;
}
.counters .counter-with-unit strong {
  display: inline-block;
}
.counters .counter-with-unit.counter-unit-on-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}
.counters .counter-with-unit.counter-unit-on-top .unit {
  font-size: 32px;
  font-size: 2rem;
  line-height: 43.2px;
  line-height: 2.7rem;
  margin-left: 4.8px;
  margin-left: 0.3rem;
}
.counters .counter-with-unit.counter-unit-on-top label {
  width: 100%;
  margin-top: 11.2px;
  margin-top: 0.7rem;
}
.counters .counter-with-unit.counter-unit-on-bottom {
  align-items: flex-end;
}
.counters.with-borders .counter {
  border-radius: 6px;
  border-top: 1px solid #dfdfdf;
  border-bottom: 1px solid #dfdfdf;
  border-left: 1px solid #ececec;
  border-right: 1px solid #ececec;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.04);
  padding: 25px;
}
.counters.counters-sm .icons,
.counters.counters-sm [class*="fa-"] {
  font-size: 25px;
  line-height: 25px;
}
.counters.counters-sm strong {
  font-size: 35px;
  line-height: 35px;
}
.counters.counters-sm label {
  font-size: 15px;
  line-height: 15px;
}
.counters.counters-lg [class*="fa-"] {
  font-size: 45px;
  line-height: 45px;
}
.counters.counters-lg strong {
  font-size: 60px;
  line-height: 60px;
}
.counters.counters-lg label {
  font-size: 25px;
  line-height: 25px;
}
.counters.counters-text-light .counter {
  color: #fff !important;
}
.counters.counters-text-light .counter .icons,
.counters.counters-text-light .counter [class*="fa-"],
.counters.counters-text-light .counter label,
.counters.counters-text-light .counter strong {
  color: #fff !important;
}
.counters.counters-text-dark .counter {
  color: #333940 !important;
}
.counters.counters-text-dark .counter .icons,
.counters.counters-text-dark .counter [class*="fa-"],
.counters.counters-text-dark .counter label,
.counters.counters-text-dark .counter strong {
  color: #333940 !important;
}
hr {
  background: rgba(0, 0, 0, 0.06);
  border: 0;
  height: 1px;
  margin: 22px 0;
  opacity: 1;
}
hr.light {
  background: rgba(255, 255, 255, 0.15);
}
@keyframes dividerProgress25 {
  from {
    width: 0;
  }
  to {
    width: 25%;
  }
}
.dropdown.dropdown-style-1 .dropdown-toggle {
  display: flex;
  align-items: center;
  padding: 16px 17.6px;
  padding: 1rem 1.1rem;
  background: #fff;
  border-radius: 0;
  border-right: 1px solid #ededed;
  min-width: 280px;
  font-weight: 700;
  text-decoration: none;
}
.dropdown.dropdown-style-1 .dropdown-toggle:after {
  content: "\f107";
  position: absolute;
  right: 17.6px;
  right: 1.1rem;
  top: 50%;
  font-family: "Font Awesome 6 Free";
  font-weight: 700;
  transform: translate3d(0, -50%, 0);
  border: 0;
  margin: 0;
  width: 10px;
  height: 10px;
  line-height: 10px;
}
.dropdown.dropdown-style-1 .dropdown-toggle > i {
  display: none;
}
.dropdown-item:not(.btn):hover {
  text-decoration: none;
}
@keyframes toRightFromLeft {
  49% {
    transform: translate(100%);
  }
  50% {
    opacity: 0;
    transform: translate(-100%);
  }
  51% {
    opacity: 1;
  }
}
.feature-box {
  display: flex;
}
.feature-box .feature-box-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1 0 auto;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 100%;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  position: relative;
  top: 7px;
  text-align: center;
  padding: 0.8em;
  height: 1px;
  width: 2.7em;
  height: 2.7em;
}
.feature-box .feature-box-info {
  flex: 1 1 100%;
  padding-left: 15px;
}
.feature-box.align-items-center .feature-box-icon {
  top: 0;
}
.feature-box.feature-box-style-2 h4 {
  color: #212529;
}
.feature-box.feature-box-style-2 .feature-box-icon {
  background: 0 0;
  top: -3px;
}
.feature-box.feature-box-style-2 .feature-box-icon .icons,
.feature-box.feature-box-style-2 .feature-box-icon [class*="fa-"] {
  font-size: 1.7em;
}
.feature-box.feature-box-style-2.align-items-center .feature-box-icon {
  top: 0;
}
.feature-box.feature-box-style-3 h4 {
  color: #212529;
}
.feature-box.feature-box-style-3 .feature-box-icon {
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: 0 0;
  line-height: 32px;
}
.feature-box.feature-box-style-3 .feature-box-icon .icons,
.feature-box.feature-box-style-3 .feature-box-icon [class*="fa-"] {
  color: rgba(0, 0, 0, 0.06);
}
.feature-box.feature-box-style-4 {
  flex-wrap: wrap;
}
.feature-box.feature-box-style-4 h4 {
  color: #212529;
}
.feature-box.feature-box-style-4 .feature-box-icon {
  flex-basis: 100%;
  justify-content: flex-start;
  background: 0 0;
  padding: 0 0 19.2px 0;
  padding: 0 0 1.2rem 0;
}
.feature-box.feature-box-style-4 .feature-box-icon .icons,
.feature-box.feature-box-style-4 .feature-box-icon [class*="fa-"] {
  font-size: 2.35em;
  width: auto;
  height: auto;
}
.feature-box.feature-box-style-4 .feature-box-info {
  clear: both;
  padding-left: 0;
}
.feature-box.feature-box-style-5 h4 {
  color: #212529;
}
.feature-box.feature-box-style-5 .feature-box-icon {
  background: 0 0;
  top: 0;
  padding: 1em 1.4em;
  min-width: 5em;
}
.feature-box.feature-box-style-5 .feature-box-icon .icons,
.feature-box.feature-box-style-5 .feature-box-icon [class*="fa-"] {
  font-size: 2.75em;
}
.feature-box.feature-box-style-5.align-items-center .feature-box-icon {
  top: 0;
}
.feature-box.feature-box-style-6 h4 {
  color: #212529;
}
.feature-box.feature-box-style-6 .feature-box-icon {
  border: 1px solid #cecece;
  background: 0 0;
  line-height: 32px;
}
.feature-box.feature-box-style-6 .feature-box-icon:after {
  border: 3px solid #f7f7f7;
  border-radius: 50%;
  box-sizing: content-box;
  content: "";
  display: block;
  height: 100%;
  left: -4px;
  padding: 1px;
  position: absolute;
  top: -4px;
  width: 100%;
}
.feature-box.feature-box-style-6 .feature-box-icon .icons,
.feature-box.feature-box-style-6 .feature-box-icon [class*="fa-"] {
  color: #a9a9a9;
}
@media (min-width: 992px) {
  .feature-box.reverse {
    text-align: right;
    flex-direction: row-reverse;
  }
  .feature-box.reverse .feature-box-info {
    padding-right: 15px;
    padding-left: 0;
  }
  .feature-box.reverse.feature-box-style-4 .feature-box-icon {
    justify-content: flex-end;
  }
  .feature-box.reverse.feature-box-style-4 .feature-box-info {
    padding-right: 0;
  }
}
form label {
  font-weight: 400;
}
textarea {
  resize: vertical;
}
.label {
  font-weight: 400;
}
label.required:after {
  content: "*";
  font-size: 0.8em;
  margin: 0.3em;
  position: relative;
  top: -2px;
}
.form-group {
  margin-bottom: 16px;
  margin-bottom: 1rem;
}
.form-group:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.form-control {
  border-color: rgba(0, 0, 0, 0.09);
}
.form-control:not(.form-control-lg) {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.3;
}
.form-control:not(.form-control-sm):not(.form-control-lg) {
  font-size: 13.6px;
  font-size: 0.85rem;
  line-height: 1.85;
}
.form-control.form-control-focused {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
  border-color: #ccc;
}
.form-control:focus {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
  border-color: #ccc;
}
.form-control.error {
  border-color: #a94442;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.form-control.error:focus {
  border-color: #843534;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
}
.page-link {
  border-color: rgba(0, 0, 0, 0.06);
}
.input-group .form-control {
  height: auto;
}
.input-group-rounded .form-control {
  border-radius: 2rem 0 0 2rem;
  border: 0;
  padding-left: 16px;
  padding-left: 1rem;
}
.input-group-rounded .btn {
  border-color: rgba(0, 0, 0, 0.09);
  border-radius: 0 2rem 2rem 0;
  font-size: 11.2px;
  font-size: 0.7rem;
  padding: 13.92px;
  padding: 0.87rem;
  border-top: 0;
  border-bottom: 0;
  border-right: 0;
  z-index: 3;
}
input[type="color"],
input[type="date"],
input[type="datetime-local"],
input[type="datetime"],
input[type="email"],
input[type="month"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="time"],
input[type="url"],
input[type="week"],
textarea {
  -webkit-appearance: none;
}
.form-control::-webkit-input-placeholder,
input[type="color"]::-webkit-input-placeholder,
input[type="date"]::-webkit-input-placeholder,
input[type="datetime-local"]::-webkit-input-placeholder,
input[type="datetime"]::-webkit-input-placeholder,
input[type="email"]::-webkit-input-placeholder,
input[type="month"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="text"]::-webkit-input-placeholder,
input[type="time"]::-webkit-input-placeholder,
input[type="url"]::-webkit-input-placeholder,
input[type="week"]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #bdbdbd;
}
.form-control::-moz-placeholder,
input[type="color"]::-moz-placeholder,
input[type="date"]::-moz-placeholder,
input[type="datetime-local"]::-moz-placeholder,
input[type="datetime"]::-moz-placeholder,
input[type="email"]::-moz-placeholder,
input[type="month"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="password"]::-moz-placeholder,
input[type="search"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="text"]::-moz-placeholder,
input[type="time"]::-moz-placeholder,
input[type="url"]::-moz-placeholder,
input[type="week"]::-moz-placeholder,
textarea::-moz-placeholder {
  color: #bdbdbd;
}
.form-control:-ms-input-placeholder,
input[type="color"]:-ms-input-placeholder,
input[type="date"]:-ms-input-placeholder,
input[type="datetime-local"]:-ms-input-placeholder,
input[type="datetime"]:-ms-input-placeholder,
input[type="email"]:-ms-input-placeholder,
input[type="month"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="text"]:-ms-input-placeholder,
input[type="time"]:-ms-input-placeholder,
input[type="url"]:-ms-input-placeholder,
input[type="week"]:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #bdbdbd;
}
.btn-group-lg > .btn,
.btn-lg {
  line-height: 1.334;
}
.input-group-btn .btn {
  padding-top: 8px;
  padding-top: 0.5rem;
  padding-bottom: 8px;
  padding-bottom: 0.5rem;
}
label.valid {
  display: inline-block;
  text-indent: -9999px;
}
label.error {
  color: #c10000;
  font-size: 0.9em;
  line-height: 18px;
  padding: 5px 0 0;
}
input[type="search" i]::-webkit-search-cancel-button {
  margin-right: -7px !important;
}
.simple-search .form-control {
  border-radius: 1.3rem 0 0 1.3rem;
  border-color: #eee;
  border-right: 0;
}
.simple-search .form-control:focus {
  box-shadow: none;
}
.simple-search .btn {
  border: 0;
  box-shadow: none !important;
  border-radius: 0 1.3rem 1.3rem 0;
  border: 1px solid #eee;
  border-left: 0;
}
.form-style-2 .form-group {
  margin-bottom: 11.2px;
  margin-bottom: 0.7rem;
}
.form-style-2 .form-control {
  padding: 11.2px 16px;
  padding: 0.7rem 1rem;
  border: 0;
}
.form-style-2 .form-control::-webkit-input-placeholder {
  color: #202528;
  opacity: 0.5;
}
.form-style-2 .form-control::-moz-placeholder {
  color: #202528;
  opacity: 0.5;
}
.form-style-2 .form-control:-ms-input-placeholder {
  color: #202528;
  opacity: 0.5;
}
.form-style-2 .form-control:-moz-placeholder {
  color: #202528;
  opacity: 0.5;
}
.form-style-2 .form-control:not(textarea) {
  height: calc(2.2em + 0.75rem + 2px);
}
.form-style-2 .form-control.error {
  border-width: 2px;
}
.form-style-3 .form-group {
  margin-bottom: 17.6px;
  margin-bottom: 1.1rem;
}
.form-style-3 .form-control {
  padding: 11.2px 16px;
  padding: 0.7rem 1rem;
  background-color: #f4f4f4;
  border: none;
}
.form-style-3 .form-control::-webkit-input-placeholder {
  color: #202528;
  opacity: 0.5;
}
.form-style-3 .form-control::-moz-placeholder {
  color: #202528;
  opacity: 0.5;
}
.form-style-3 .form-control:-ms-input-placeholder {
  color: #202528;
  opacity: 0.5;
}
.form-style-3 .form-control:-moz-placeholder {
  color: #202528;
  opacity: 0.5;
}
.form-style-3 .form-control.error {
  border: 2px solid #e21a1a;
}
.form-style-4 .form-control {
  background-color: transparent;
  border-top: 0;
  border-right: 0;
  border-left: 0;
  border-bottom-color: rgba(0, 0, 0, 0.4);
  color: #fff;
  box-shadow: none !important;
  border-radius: 0;
}
.form-style-4 .form-control::-moz-placeholder {
  color: #d8d8d8;
}
.form-style-4 .form-control::placeholder {
  color: #d8d8d8;
}
.form-style-4.form-style-4-text-dark .form-control {
  color: #212121;
}
.form-style-4.form-style-4-text-dark .form-control::-moz-placeholder {
  color: #777;
}
.form-style-4.form-style-4-text-dark .form-control::placeholder {
  color: #777;
}
.form-style-4.form-style-4-border-light .form-control {
  border-color: rgba(255, 255, 255, 0.4);
}
.form-style-4.form-style-4-border-light-2 .form-control {
  border-color: rgba(255, 255, 255, 0.15);
}
.form-style-4.form-with-icons .form-control {
  padding-left: 31px;
}
.form-style-5 .form-control {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 35px;
  height: auto;
  padding: 8px 24px;
  padding: 0.5rem 1.5rem;
  color: #bfbfbf;
}
.form-style-5 .form-control:focus {
  border-color: #676767;
}
.form-label-group {
  position: relative;
  margin-bottom: 16px;
  margin-bottom: 1rem;
}
.form-label-group input,
.form-label-group label {
  height: 50px;
  height: 3.125rem;
  padding: 12px;
  padding: 0.75rem;
}
.form-label-group label {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  margin-bottom: 0;
  line-height: 1.5;
  color: #495057;
  pointer-events: none;
  cursor: text;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  transition: all 0.1s ease-in-out;
}
.form-label-group input::-moz-placeholder {
  color: transparent;
}
.form-label-group input::placeholder {
  color: transparent;
}
.form-label-group input:not(:-moz-placeholder-shown) {
  padding-top: 20px;
  padding-top: 1.25rem;
  padding-bottom: 4px;
  padding-bottom: 0.25rem;
}
.form-label-group input:not(:placeholder-shown) {
  padding-top: 20px;
  padding-top: 1.25rem;
  padding-bottom: 4px;
  padding-bottom: 0.25rem;
}
.form-label-group input:not(:-moz-placeholder-shown) ~ label {
  padding-top: 4px;
  padding-top: 0.25rem;
  padding-bottom: 4px;
  padding-bottom: 0.25rem;
  font-size: 12px;
  color: #777;
}
.form-label-group input:not(:placeholder-shown) ~ label {
  padding-top: 4px;
  padding-top: 0.25rem;
  padding-bottom: 4px;
  padding-bottom: 0.25rem;
  font-size: 12px;
  color: #777;
}
@supports (-ms-ime-align: auto) {
  .form-label-group {
    display: flex;
    flex-direction: column-reverse;
  }
  .form-label-group label {
    position: static;
  }
  .form-label-group input::-ms-input-placeholder {
    color: #777;
  }
}
.form-with-icons .form-control {
  padding-left: 41px;
}
.form-with-shadow .form-control {
  box-shadow: 0 0 17px -4px rgba(0, 0, 0, 0.1) !important;
}
[data-plugin-gdpr-wrapper] {
  opacity: 0;
  transition: ease opacity 0.3s;
}
[data-plugin-gdpr-wrapper].show {
  opacity: 1;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #212529;
  font-weight: 200;
  letter-spacing: -0.05em;
  margin: 0;
  -webkit-font-smoothing: antialiased;
}
h1 {
  font-size: 2.6em;
  line-height: 44px;
  margin: 0 0 32px 0;
}
h2 {
  font-size: 2.2em;
  font-weight: 300;
  line-height: 42px;
  margin: 0 0 32px 0;
}
h3 {
  font-size: 1.8em;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 33px;
  text-transform: uppercase;
}
h4 {
  font-size: 1.4em;
  font-weight: 600;
  line-height: 27px;
  margin: 0 0 14px 0;
}
h5 {
  font-size: 1em;
  font-weight: 600;
  line-height: 18px;
  margin: 0 0 14px 0;
  text-transform: uppercase;
}
h6 {
  color: #333;
  font-size: 1em;
  font-weight: 400;
  line-height: 18px;
  margin: 0 0 14px 0;
}
h1.dark,
h2.dark,
h3.dark,
h4.dark,
h5.dark {
  color: #212529;
}
h1.light,
h2.light,
h3.light,
h4.light,
h5.light,
h6.light {
  color: #fff;
}
h1.text-shadow,
h2.text-shadow,
h3.text-shadow,
h4.text-shadow,
h5.text-shadow,
h6.text-shadow {
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
}
@media (max-width: 575px) {
  h2 {
    line-height: 40px;
  }
}
[data-icon] {
  opacity: 0;
}
.icon-animated {
  opacity: 0;
}
.elements-list-shadow-icon {
  font-size: 64px;
  font-size: 4rem;
  position: absolute;
  top: -18px;
  opacity: 0.08;
  right: -18px;
}
.icon-bg {
  display: inline-block;
  background: url(https://crystalcollections.in/img/icons/icons.png) no-repeat;
  width: 80px;
  height: 80px;
}
.icon-1 {
  background-position: -10px -10px;
}
.icon-2 {
  background-position: -110px -10px;
}
.icon-3 {
  background-position: -210px -10px;
}
.icon-plugin-1 {
  background-position: 0 100%;
  width: 115px;
  height: 115px;
}
.icon-plugin-2 {
  background-position: -115px 100%;
  width: 115px;
  height: 115px;
}
.icon-feature-1 {
  background-position: -20px -110px;
}
.icon-feature-2 {
  background-position: -120px -110px;
}
.icon-feature-3 {
  background-position: -220px -110px;
}
.icon-feature-4 {
  background-position: -320px -110px;
}
.icon-feature-5 {
  background-position: -420px -110px;
}
.icon-feature-6 {
  background-position: -520px -110px;
}
.icon-feature-7 {
  background-position: -620px -110px;
}
.icon-feature-8 {
  background-position: -720px -110px;
}
.icon-feature-9 {
  background-position: -820px -110px;
}
.icon-feature-10 {
  background-position: -920px -110px;
}
.icon-feature-11 {
  background-position: -20px -210px;
}
.icon-feature-12 {
  background-position: -120px -210px;
}
.icon-feature-13 {
  background-position: -220px -210px;
}
.icon-feature-14 {
  background-position: -320px -210px;
}
.icon-feature-15 {
  background-position: -420px -210px;
}
.icon-feature-16 {
  background-position: -520px -210px;
}
.icon-feature-17 {
  background-position: -624px -210px;
}
.icon-feature-18 {
  background-position: -720px -210px;
}
.icon-feature-19 {
  background-position: -820px -210px;
}
.img-thumbnail {
  border-radius: 4px;
  position: relative;
}
.img-thumbnail img {
  border-radius: 4px;
}
.img-thumbnail .zoom {
  background: #ccc;
  border-radius: 100%;
  bottom: 8px;
  color: #fff;
  display: block;
  height: 30px;
  padding: 6px;
  position: absolute;
  right: 8px;
  text-align: center;
  width: 30px;
}
.img-thumbnail .zoom i {
  font-size: 10px;
  left: 0;
  position: relative;
  top: -6px;
}
.img-thumbnail.img-thumbnail-hover-icon {
  position: relative;
}
.img-thumbnail.img-thumbnail-hover-icon img {
  position: relative;
  z-index: 1;
}
.img-thumbnail.img-thumbnail-hover-icon:before {
  transition: all 0.2s;
  background: rgba(0, 0, 0, 0.65);
  border-radius: 4px;
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  z-index: 2;
}
.img-thumbnail.img-thumbnail-hover-icon:after {
  transition: all 0.2s;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #fff;
  content: "\f067";
  font-size: 18px;
  height: 30px;
  position: absolute;
  top: 30%;
  margin-top: -15px;
  display: block;
  text-align: center;
  width: 100%;
  opacity: 0;
  z-index: 3;
}
.img-thumbnail.img-thumbnail-hover-icon:hover:before {
  opacity: 1;
}
.img-thumbnail.img-thumbnail-hover-icon:hover:after {
  top: 50%;
  opacity: 1;
}
.img-thumbnail a.img-thumbnail-hover-icon {
  display: inline-block;
}
.img-thumbnail.img-thumbnail-no-borders {
  border: none;
  padding: 0;
}
ul.image-gallery {
  list-style: none;
  margin: 0;
  padding: 0;
}
ul.image-gallery .image-gallery-item {
  margin-bottom: 35px;
}
ul.thumbnail-gallery {
  list-style: none;
  margin: 10px 0;
  padding: 0;
}
ul.thumbnail-gallery li {
  display: inline-block;
  margin: 10px 10px 0 0;
  padding: 0;
}
@media (max-width: 991px) {
  .thumbnail {
    border: 0;
    text-align: center;
  }
}
.hover-effect-3d {
  transform-style: flat !important;
}
.hover-effect-3d .thumb-info {
  will-change: box-shadow;
  transition: box-shadow 0.3s;
}
.hover-effect-3d .thumb-info:hover {
  box-shadow: 0 17px 20px -15px rgba(33, 37, 41, 0.6);
}
.hover-effect-3d .thumb-info .thumb-info-title {
  transition: ease-out opacity 0.2s !important;
}
.hover-effect-3d .thumb-info .thumb-info-action {
  transition: ease-out opacity 0.2s !important;
}
.hover-effect-3d .thumb-info .thumb-info-action .thumb-info-action-icon {
  pointer-events: none;
}
.lazy-bg {
  background-image: url(https://crystalcollections.in/css/img/lazy.png);
}
button.mfp-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  left: 0;
  border-radius: 4px;
  background: #212529;
  width: 35px;
  height: 100px;
  color: #fff;
  margin: 0 !important;
  transform: translate3d(0, -50%, 0);
}
button.mfp-arrow:before {
  content: none;
}
button.mfp-arrow:after {
  content: "\f053";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  border: none !important;
}
button.mfp-arrow.mfp-arrow-left {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
button.mfp-arrow.mfp-arrow-left:after {
  margin-left: 0;
  margin-top: 0;
  position: relative;
  top: auto;
  left: -2px;
  width: auto;
  height: auto;
}
.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
  opacity: 0.001;
  transition: all 0.3s ease-out;
}
.my-mfp-zoom-in.mfp-bg {
  opacity: 0.001;
  transition: opacity 0.3s ease-out;
}
.my-mfp-slide-bottom.mfp-bg {
  opacity: 0.01;
  transition: opacity 0.3s ease-out;
}
.white-popup-block {
  background: #fff;
  padding: 20px 30px;
  text-align: left;
  max-width: 600px;
  margin: 40px auto;
  position: relative;
}
.white-popup-block.white-popup-block-sm {
  max-width: 400px;
}
.white-popup-block.white-popup-block-md {
  max-width: 600px;
}
.white-popup-block.white-popup-block-lg {
  max-width: 900px;
}
.list li {
  margin-bottom: 13px;
}
.list.list-icons {
  list-style: none;
  padding-left: 0;
  padding-right: 0;
}
.list.list-icons li {
  position: relative;
  padding-left: 25px;
}
.list.list-icons li a:first-child > .icons:first-child,
.list.list-icons li a:first-child > [class*="fa-"]:first-child,
.list.list-icons li > .icons:first-child,
.list.list-icons li > [class*="fa-"]:first-child {
  position: absolute;
  left: 0;
  top: 5px;
}
.list.list-icons.list-icons-style-2 li {
  padding-top: 5px;
  padding-left: 36px;
}
.list.list-icons.list-icons-style-2 li a:first-child > .icons:first-child,
.list.list-icons.list-icons-style-2
  li
  a:first-child
  > [class*="fa-"]:first-child,
.list.list-icons.list-icons-style-2 li > .icons:first-child,
.list.list-icons.list-icons-style-2 li > [class*="fa-"]:first-child {
  border-width: 1px;
  border-style: solid;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  text-align: center;
  padding: 4px;
  font-size: 0.8em;
  line-height: 1.3;
}
.list.list-icons.list-icons-style-3 li {
  padding-top: 5px;
  padding-left: 36px;
}
.list.list-icons.list-icons-style-3 li a:first-child > .icons:first-child,
.list.list-icons.list-icons-style-3
  li
  a:first-child
  > [class*="fa-"]:first-child,
.list.list-icons.list-icons-style-3 li > .icons:first-child,
.list.list-icons.list-icons-style-3 li > [class*="fa-"]:first-child {
  color: #fff;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  text-align: center;
  padding: 5px;
  font-size: 0.8em;
  line-height: 1.3;
}
.list.list-icons.list-icons-sm li {
  padding-left: 13px;
  margin-bottom: 5px;
}
.list.list-icons.list-icons-sm li a:first-child > .icons:first-child,
.list.list-icons.list-icons-sm li a:first-child > [class*="fa-"]:first-child,
.list.list-icons.list-icons-sm li > .icons:first-child,
.list.list-icons.list-icons-sm li > [class*="fa-"]:first-child {
  font-size: 0.8em;
  top: 7px;
}
.list.list-icons.list-icons-sm.list-icons-style-2 li {
  padding-left: 32px;
}
.list.list-icons.list-icons-sm.list-icons-style-2
  li
  a:first-child
  > .icons:first-child,
.list.list-icons.list-icons-sm.list-icons-style-2
  li
  a:first-child
  > [class*="fa-"]:first-child,
.list.list-icons.list-icons-sm.list-icons-style-2 li > .icons:first-child,
.list.list-icons.list-icons-sm.list-icons-style-2
  li
  > [class*="fa-"]:first-child {
  width: 20px;
  height: 20px;
  padding: 3px;
}
.list.list-icons.list-icons-sm.list-icons-style-3 li {
  padding-left: 32px;
}
.list.list-icons.list-icons-sm.list-icons-style-3
  li
  a:first-child
  > .icons:first-child,
.list.list-icons.list-icons-sm.list-icons-style-3
  li
  a:first-child
  > [class*="fa-"]:first-child,
.list.list-icons.list-icons-sm.list-icons-style-3 li > .icons:first-child,
.list.list-icons.list-icons-sm.list-icons-style-3
  li
  > [class*="fa-"]:first-child {
  width: 20px;
  height: 20px;
  padding: 3px;
}
.list.list-icons.list-icons-lg li {
  padding-top: 5px;
  padding-left: 27px;
}
.list.list-icons.list-icons-lg li a:first-child > .icons:first-child,
.list.list-icons.list-icons-lg li a:first-child > [class*="fa-"]:first-child,
.list.list-icons.list-icons-lg li > .icons:first-child,
.list.list-icons.list-icons-lg li > [class*="fa-"]:first-child {
  font-size: 1.3em;
  top: 10px;
}
.list.list-icons.list-icons-lg.list-icons-style-2 li {
  padding-top: 8px;
  padding-left: 42px;
}
.list.list-icons.list-icons-lg.list-icons-style-2
  li
  a:first-child
  > .icons:first-child,
.list.list-icons.list-icons-lg.list-icons-style-2
  li
  a:first-child
  > [class*="fa-"]:first-child,
.list.list-icons.list-icons-lg.list-icons-style-2 li > .icons:first-child,
.list.list-icons.list-icons-lg.list-icons-style-2
  li
  > [class*="fa-"]:first-child {
  width: 30px;
  height: 30px;
  padding: 4px;
}
.list.list-icons.list-icons-lg.list-icons-style-3 li {
  padding-top: 8px;
  padding-left: 42px;
}
.list.list-icons.list-icons-lg.list-icons-style-3
  li
  a:first-child
  > .icons:first-child,
.list.list-icons.list-icons-lg.list-icons-style-3
  li
  a:first-child
  > [class*="fa-"]:first-child,
.list.list-icons.list-icons-lg.list-icons-style-3 li > .icons:first-child,
.list.list-icons.list-icons-lg.list-icons-style-3
  li
  > [class*="fa-"]:first-child {
  width: 30px;
  height: 30px;
  padding: 4px;
}
.list.list-icons.list-icons-reverse li {
  text-align: right;
  padding-right: 25px;
  padding-left: 0;
}
.list.list-icons.list-icons-reverse li a:first-child > .icons:first-child,
.list.list-icons.list-icons-reverse
  li
  a:first-child
  > [class*="fa-"]:first-child,
.list.list-icons.list-icons-reverse li > .icons:first-child,
.list.list-icons.list-icons-reverse li > [class*="fa-"]:first-child {
  position: absolute;
  left: auto;
  right: 0;
  top: 5px;
}
.list.list-icons.list-icons-reverse.list-icons-style-2 li {
  padding-right: 36px;
}
.list.list-icons.list-icons-reverse.list-icons-style-3 li {
  padding-right: 36px;
}
.list.list-icons.list-icons-reverse.list-icons-sm li {
  padding-left: 0;
  padding-right: 13px;
}
.list.list-icons.list-icons-reverse.list-icons-sm.list-icons-style-2 li {
  padding-right: 32px;
}
.list.list-icons.list-icons-reverse.list-icons-sm.list-icons-style-3 li {
  padding-right: 32px;
}
.list.list-icons.list-icons-reverse.list-icons-lg li {
  padding-left: 0;
  padding-right: 32px;
}
.list.list-icons.list-icons-reverse.list-icons-lg.list-icons-style-2 li {
  padding-right: 42px;
}
.list.list-icons.list-icons-reverse.list-icons-lg.list-icons-style-3 li {
  padding-right: 42px;
}
.list.list-borders li {
  border-bottom: 1px solid #eaeaea;
  margin-top: 9px;
  margin-bottom: 0;
  padding-bottom: 9px;
}
.list.list-borders li:last-child {
  border-bottom: 0;
}
.list.list-side-borders {
  border-left: 1px solid #eaeaea;
  padding-left: 10px;
}
.bounce-loader {
  transition: all 0.2s;
  margin: -9px 0 0 -35px;
  text-align: center;
  width: 70px;
  left: 50%;
  position: absolute;
  top: 50%;
  z-index: 10000;
}
.bounce-loader .bounce1,
.bounce-loader .bounce2,
.bounce-loader .bounce3 {
  animation: 1.4s ease-in-out 0s normal both infinite bouncedelay;
  background-color: #ccc;
  border-radius: 100%;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
  display: inline-block;
  height: 18px;
  width: 18px;
}
.bounce-loader .bounce1 {
  animation-delay: -0.32s;
}
.bounce-loader .bounce2 {
  animation-delay: -0.16s;
}
@keyframes bouncedelay {
  0%,
  100%,
  80% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}
@keyframes cssload-fold-thecube {
  0%,
  10% {
    transform: perspective(129px) rotateX(-180deg);
    opacity: 0;
  }
  25%,
  75% {
    transform: perspective(129px) rotateX(0);
    opacity: 1;
  }
  100%,
  90% {
    transform: perspective(129px) rotateY(180deg);
    opacity: 0;
  }
}
@keyframes cssload-cube-progress {
  0% {
    transform: rotate(0);
  }
  25% {
    transform: rotate(180deg);
  }
  50% {
    transform: rotate(180deg);
  }
  75% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes cssload-cube-progress-inner {
  0% {
    height: 0%;
  }
  25% {
    height: 0%;
  }
  50% {
    height: 100%;
  }
  75% {
    height: 100%;
  }
  100% {
    height: 0%;
  }
}
@keyframes cssload-rotate-one {
  0% {
    transform: rotateX(35deg) rotateY(-45deg) rotateZ(0);
  }
  100% {
    transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
  }
}
@keyframes cssload-rotate-two {
  0% {
    transform: rotateX(50deg) rotateY(10deg) rotateZ(0);
  }
  100% {
    transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
  }
}
@keyframes cssload-rotate-three {
  0% {
    transform: rotateX(35deg) rotateY(55deg) rotateZ(0);
  }
  100% {
    transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
  }
}
@keyframes cssload-upDown {
  from {
    transform: translateY(19px);
  }
  to {
    transform: translateY(-19px);
  }
}
@keyframes cssload-upDown2 {
  from {
    transform: translateY(29px);
  }
  to {
    transform: translateY(-19px);
  }
}
@keyframes cssload-spin {
  100% {
    transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes cssload-spin {
  100% {
    transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes cssload-spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes cssload-blur1 {
  to {
    transform: rotate(-30deg);
  }
}
@keyframes cssload-blur2 {
  to {
    transform: rotate(-15deg);
  }
}
@keyframes cssload-pulse-loader {
  from {
    transform: scale(0);
    opacity: 1;
  }
  to {
    transform: scale(1);
    opacity: 0;
  }
}
.google-map {
  background: #e5e3df;
  height: 400px;
  margin: -35px 0 30px 0;
  width: 100%;
}
.google-map img {
  max-width: 9999px;
}
.google-map-borders {
  border: 1px solid #ddd;
  padding: 4px;
  border-radius: 4px;
}
@keyframes mapPinPulse {
  from {
    transform: scale(1);
    opacity: 0.7;
  }
  to {
    transform: scale(10);
    opacity: 0;
  }
}
.map-info-window {
  position: absolute;
  bottom: 30px;
  left: 50%;
  font-size: 12.8px;
  font-size: 0.8rem;
  background: #fff;
  border-radius: 4px;
  padding: 15px 20px;
  white-space: nowrap;
  transform: translate3d(-50%, 0, 0);
}
.map-info-window:after {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
  width: 0;
  height: 0;
  border-top: 7px solid #fff;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
}
.google-map-footer {
  margin: 35px 0 -50px !important;
}
.hide-text {
  display: block;
  text-indent: -9999px;
  width: 0;
  height: 0;
}
.box-shadow-1:before {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  opacity: 0.33;
  content: "";
  box-shadow: 0 30px 90px #bbb;
  transition: all 0.2s ease-in-out;
}
.box-shadow-1.box-shadow-1-hover:before {
  opacity: 0;
}
.box-shadow-1.box-shadow-1-hover:hover:before {
  opacity: 0.33;
}
.box-shadow-hover {
  transition: ease all 0.3s;
}
.box-shadow-2:not(.box-shadow-hover) {
  box-shadow: 0 15px 30px -15px rgba(0, 0, 0, 0.45);
}
.box-shadow-2.box-shadow-hover:hover {
  box-shadow: 0 15px 30px -15px rgba(0, 0, 0, 0.45);
}
.box-shadow-3:not(.box-shadow-hover) {
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.45);
}
.box-shadow-3.box-shadow-hover:hover {
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.45);
}
.box-shadow-4:not(.box-shadow-hover) {
  box-shadow: 0 0 21px -5px rgba(0, 0, 0, 0.2);
}
.box-shadow-4.box-shadow-hover:hover {
  box-shadow: 0 0 21px -5px rgba(0, 0, 0, 0.2);
}
.box-shadow-5:not(.box-shadow-hover) {
  box-shadow: 0 15px 60px -36px rgba(0, 0, 0, 0.45);
}
.box-shadow-5.box-shadow-hover:hover {
  box-shadow: 0 15px 60px -36px rgba(0, 0, 0, 0.45);
}
.box-shadow-6:not(.box-shadow-hover) {
  box-shadow: 0 12px 45px rgba(0, 0, 0, 0.08);
}
.box-shadow-6.box-shadow-hover:hover {
  box-shadow: 0 12px 45px rgba(0, 0, 0, 0.08);
}
.border-radius {
  border-radius: 4px !important;
}
.border-radius.box-shadow-1:before {
  border-radius: 4px !important;
}
.border-radius-2 {
  border-radius: 8px !important;
}
.border-radius-2.box-shadow-1:before {
  border-radius: 8px !important;
}
html body .rounded-circle {
  border-radius: 50% !important;
}
.h-50px {
  height: 50px;
}
.h-min-50px {
  min-height: 50px;
}
.h-100px {
  height: 100px;
}
.h-min-100px {
  min-height: 100px;
}
.h-150px {
  height: 150px;
}
.h-min-150px {
  min-height: 150px;
}
.h-200px {
  height: 200px;
}
.h-min-200px {
  min-height: 200px;
}
.h-250px {
  height: 250px;
}
.h-min-250px {
  min-height: 250px;
}
.h-300px {
  height: 300px;
}
.h-min-300px {
  min-height: 300px;
}
.h-350px {
  height: 350px;
}
.h-min-350px {
  min-height: 350px;
}
.h-400px {
  height: 400px;
}
.h-min-400px {
  min-height: 400px;
}
.h-450px {
  height: 450px;
}
.h-min-450px {
  min-height: 450px;
}
.h-500px {
  height: 500px;
}
.h-min-500px {
  min-height: 500px;
}
.h-550px {
  height: 550px;
}
.h-min-550px {
  min-height: 550px;
}
.h-600px {
  height: 600px;
}
.h-min-600px {
  min-height: 600px;
}
.h-650px {
  height: 650px;
}
.h-min-650px {
  min-height: 650px;
}
.h-700px {
  height: 700px;
}
.h-min-700px {
  min-height: 700px;
}
.h-750px {
  height: 750px;
}
.h-min-750px {
  min-height: 750px;
}
.h-800px {
  height: 800px;
}
.h-min-800px {
  min-height: 800px;
}
.h-850px {
  height: 850px;
}
.h-min-850px {
  min-height: 850px;
}
.h-900px {
  height: 900px;
}
.h-min-900px {
  min-height: 900px;
}
.h-950px {
  height: 950px;
}
.h-min-950px {
  min-height: 950px;
}
.h-1000px {
  height: 1000px;
}
.h-min-1000px {
  min-height: 1000px;
}
@media (min-width: 576px) {
  .h-sm-50px {
    height: 50px;
  }
  .h-sm-min-50px {
    min-height: 50px;
  }
  .h-sm-100px {
    height: 100px;
  }
  .h-sm-min-100px {
    min-height: 100px;
  }
  .h-sm-150px {
    height: 150px;
  }
  .h-sm-min-150px {
    min-height: 150px;
  }
  .h-sm-200px {
    height: 200px;
  }
  .h-sm-min-200px {
    min-height: 200px;
  }
  .h-sm-250px {
    height: 250px;
  }
  .h-sm-min-250px {
    min-height: 250px;
  }
  .h-sm-300px {
    height: 300px;
  }
  .h-sm-min-300px {
    min-height: 300px;
  }
  .h-sm-350px {
    height: 350px;
  }
  .h-sm-min-350px {
    min-height: 350px;
  }
  .h-sm-400px {
    height: 400px;
  }
  .h-sm-min-400px {
    min-height: 400px;
  }
  .h-sm-450px {
    height: 450px;
  }
  .h-sm-min-450px {
    min-height: 450px;
  }
  .h-sm-500px {
    height: 500px;
  }
  .h-sm-min-500px {
    min-height: 500px;
  }
  .h-sm-550px {
    height: 550px;
  }
  .h-sm-min-550px {
    min-height: 550px;
  }
  .h-sm-600px {
    height: 600px;
  }
  .h-sm-min-600px {
    min-height: 600px;
  }
  .h-sm-650px {
    height: 650px;
  }
  .h-sm-min-650px {
    min-height: 650px;
  }
  .h-sm-700px {
    height: 700px;
  }
  .h-sm-min-700px {
    min-height: 700px;
  }
  .h-sm-750px {
    height: 750px;
  }
  .h-sm-min-750px {
    min-height: 750px;
  }
  .h-sm-800px {
    height: 800px;
  }
  .h-sm-min-800px {
    min-height: 800px;
  }
  .h-sm-850px {
    height: 850px;
  }
  .h-sm-min-850px {
    min-height: 850px;
  }
  .h-sm-900px {
    height: 900px;
  }
  .h-sm-min-900px {
    min-height: 900px;
  }
  .h-sm-950px {
    height: 950px;
  }
  .h-sm-min-950px {
    min-height: 950px;
  }
  .h-sm-1000px {
    height: 1000px;
  }
  .h-sm-min-1000px {
    min-height: 1000px;
  }
}
@media (min-width: 768px) {
  .h-md-50px {
    height: 50px;
  }
  .h-md-min-50px {
    min-height: 50px;
  }
  .h-md-100px {
    height: 100px;
  }
  .h-md-min-100px {
    min-height: 100px;
  }
  .h-md-150px {
    height: 150px;
  }
  .h-md-min-150px {
    min-height: 150px;
  }
  .h-md-200px {
    height: 200px;
  }
  .h-md-min-200px {
    min-height: 200px;
  }
  .h-md-250px {
    height: 250px;
  }
  .h-md-min-250px {
    min-height: 250px;
  }
  .h-md-300px {
    height: 300px;
  }
  .h-md-min-300px {
    min-height: 300px;
  }
  .h-md-350px {
    height: 350px;
  }
  .h-md-min-350px {
    min-height: 350px;
  }
  .h-md-400px {
    height: 400px;
  }
  .h-md-min-400px {
    min-height: 400px;
  }
  .h-md-450px {
    height: 450px;
  }
  .h-md-min-450px {
    min-height: 450px;
  }
  .h-md-500px {
    height: 500px;
  }
  .h-md-min-500px {
    min-height: 500px;
  }
  .h-md-550px {
    height: 550px;
  }
  .h-md-min-550px {
    min-height: 550px;
  }
  .h-md-600px {
    height: 600px;
  }
  .h-md-min-600px {
    min-height: 600px;
  }
  .h-md-650px {
    height: 650px;
  }
  .h-md-min-650px {
    min-height: 650px;
  }
  .h-md-700px {
    height: 700px;
  }
  .h-md-min-700px {
    min-height: 700px;
  }
  .h-md-750px {
    height: 750px;
  }
  .h-md-min-750px {
    min-height: 750px;
  }
  .h-md-800px {
    height: 800px;
  }
  .h-md-min-800px {
    min-height: 800px;
  }
  .h-md-850px {
    height: 850px;
  }
  .h-md-min-850px {
    min-height: 850px;
  }
  .h-md-900px {
    height: 900px;
  }
  .h-md-min-900px {
    min-height: 900px;
  }
  .h-md-950px {
    height: 950px;
  }
  .h-md-min-950px {
    min-height: 950px;
  }
  .h-md-1000px {
    height: 1000px;
  }
  .h-md-min-1000px {
    min-height: 1000px;
  }
}
@media (min-width: 992px) {
  .h-lg-50px {
    height: 50px;
  }
  .h-lg-min-50px {
    min-height: 50px;
  }
  .h-lg-100px {
    height: 100px;
  }
  .h-lg-min-100px {
    min-height: 100px;
  }
  .h-lg-150px {
    height: 150px;
  }
  .h-lg-min-150px {
    min-height: 150px;
  }
  .h-lg-200px {
    height: 200px;
  }
  .h-lg-min-200px {
    min-height: 200px;
  }
  .h-lg-250px {
    height: 250px;
  }
  .h-lg-min-250px {
    min-height: 250px;
  }
  .h-lg-300px {
    height: 300px;
  }
  .h-lg-min-300px {
    min-height: 300px;
  }
  .h-lg-350px {
    height: 350px;
  }
  .h-lg-min-350px {
    min-height: 350px;
  }
  .h-lg-400px {
    height: 400px;
  }
  .h-lg-min-400px {
    min-height: 400px;
  }
  .h-lg-450px {
    height: 450px;
  }
  .h-lg-min-450px {
    min-height: 450px;
  }
  .h-lg-500px {
    height: 500px;
  }
  .h-lg-min-500px {
    min-height: 500px;
  }
  .h-lg-550px {
    height: 550px;
  }
  .h-lg-min-550px {
    min-height: 550px;
  }
  .h-lg-600px {
    height: 600px;
  }
  .h-lg-min-600px {
    min-height: 600px;
  }
  .h-lg-650px {
    height: 650px;
  }
  .h-lg-min-650px {
    min-height: 650px;
  }
  .h-lg-700px {
    height: 700px;
  }
  .h-lg-min-700px {
    min-height: 700px;
  }
  .h-lg-750px {
    height: 750px;
  }
  .h-lg-min-750px {
    min-height: 750px;
  }
  .h-lg-800px {
    height: 800px;
  }
  .h-lg-min-800px {
    min-height: 800px;
  }
  .h-lg-850px {
    height: 850px;
  }
  .h-lg-min-850px {
    min-height: 850px;
  }
  .h-lg-900px {
    height: 900px;
  }
  .h-lg-min-900px {
    min-height: 900px;
  }
  .h-lg-950px {
    height: 950px;
  }
  .h-lg-min-950px {
    min-height: 950px;
  }
  .h-lg-1000px {
    height: 1000px;
  }
  .h-lg-min-1000px {
    min-height: 1000px;
  }
}
@media (min-width: 1200px) {
  .h-xl-50px {
    height: 50px;
  }
  .h-xl-min-50px {
    min-height: 50px;
  }
  .h-xl-100px {
    height: 100px;
  }
  .h-xl-min-100px {
    min-height: 100px;
  }
  .h-xl-150px {
    height: 150px;
  }
  .h-xl-min-150px {
    min-height: 150px;
  }
  .h-xl-200px {
    height: 200px;
  }
  .h-xl-min-200px {
    min-height: 200px;
  }
  .h-xl-250px {
    height: 250px;
  }
  .h-xl-min-250px {
    min-height: 250px;
  }
  .h-xl-300px {
    height: 300px;
  }
  .h-xl-min-300px {
    min-height: 300px;
  }
  .h-xl-350px {
    height: 350px;
  }
  .h-xl-min-350px {
    min-height: 350px;
  }
  .h-xl-400px {
    height: 400px;
  }
  .h-xl-min-400px {
    min-height: 400px;
  }
  .h-xl-450px {
    height: 450px;
  }
  .h-xl-min-450px {
    min-height: 450px;
  }
  .h-xl-500px {
    height: 500px;
  }
  .h-xl-min-500px {
    min-height: 500px;
  }
  .h-xl-550px {
    height: 550px;
  }
  .h-xl-min-550px {
    min-height: 550px;
  }
  .h-xl-600px {
    height: 600px;
  }
  .h-xl-min-600px {
    min-height: 600px;
  }
  .h-xl-650px {
    height: 650px;
  }
  .h-xl-min-650px {
    min-height: 650px;
  }
  .h-xl-700px {
    height: 700px;
  }
  .h-xl-min-700px {
    min-height: 700px;
  }
  .h-xl-750px {
    height: 750px;
  }
  .h-xl-min-750px {
    min-height: 750px;
  }
  .h-xl-800px {
    height: 800px;
  }
  .h-xl-min-800px {
    min-height: 800px;
  }
  .h-xl-850px {
    height: 850px;
  }
  .h-xl-min-850px {
    min-height: 850px;
  }
  .h-xl-900px {
    height: 900px;
  }
  .h-xl-min-900px {
    min-height: 900px;
  }
  .h-xl-950px {
    height: 950px;
  }
  .h-xl-min-950px {
    min-height: 950px;
  }
  .h-xl-1000px {
    height: 1000px;
  }
  .h-xl-min-1000px {
    min-height: 1000px;
  }
}
.read-more {
  display: inline-block;
  white-space: nowrap;
}
.alert .icons,
.alert [class*="fa-"] {
  margin-right: 8px;
  font-size: 1.1em;
}
.alert ul {
  padding: 0;
  margin: 7px 0 0 40px;
}
.alert ul li {
  font-size: 0.9em;
}
.alert.alert-sm {
  padding: 5px 10px;
  font-size: 0.9em;
}
.alert.alert-lg {
  padding: 20px;
  font-size: 1.2em;
}
.alert.alert-default {
  background-color: #f2f2f2;
  border-color: #eaeaea;
  color: #737272;
}
.alert.alert-default .alert-link {
  color: #4c4c4c;
}
.alert.alert-dark {
  background-color: #383f45;
  border-color: #0a0c0d;
  color: #d3d8dc;
}
.alert.alert-dark .alert-link {
  color: #fefefe;
}
.hover-effect-1:not(.portfolio-item) {
  box-shadow: 10px 10px 74px -15px transparent;
  transition: ease transform 0.3s, ease box-shadow 0.3s;
}
.hover-effect-1:not(.portfolio-item):hover {
  box-shadow: 10px 10px 74px -15px rgba(0, 0, 0, 0.4);
  transform: translate3d(0, -15px, 0);
}
.hover-effect-1.portfolio-item {
  transition: ease transform 0.3s;
}
.hover-effect-1.portfolio-item .owl-carousel,
.hover-effect-1.portfolio-item .thumb-info {
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06);
  transition: ease box-shadow 0.3s;
}
.hover-effect-1.portfolio-item.show .owl-carousel,
.hover-effect-1.portfolio-item.show .thumb-info,
.hover-effect-1.portfolio-item:hover .owl-carousel,
.hover-effect-1.portfolio-item:hover .thumb-info {
  box-shadow: 10px 10px 74px -15px rgba(0, 0, 0, 0.4);
}
.hover-effect-1 a {
  transition: ease color 0.3s;
}
.hover-effect-2 {
  opacity: 1;
  transition: ease opacity 0.3s;
}
.hover-effect-2:hover {
  opacity: 0.85;
}
.hover-effect-3 {
  opacity: 0.3;
  transition: ease opacity 0.3s;
}
.hover-effect-3:hover {
  opacity: 1;
}
.sticky-wrapper {
  position: fixed;
  width: 100% !important;
  z-index: 11;
}
.sticky-wrapper .sticky-body {
  display: flex;
  background: #fff;
  width: 100%;
  z-index: 10;
  transition: ease background 0.3s;
}
.sticky-wrapper.sticky-wrapper-transparent .sticky-body {
  background: 0 0;
}
.sticky-wrapper.sticky-wrapper-effect-1 {
  position: absolute !important;
}
.sticky-wrapper.sticky-wrapper-effect-1.sticky-effect-active .sticky-body {
  position: fixed;
  background: #fff;
  animation: headerReveal 0.4s ease-in;
}
.sticky-wrapper.sticky-wrapper-effect-1.sticky-wrapper-effect-1-dark.sticky-effect-active
  .sticky-body {
  background: #212529;
}
.sticky-wrapper.sticky-wrapper-border-bottom.sticky-effect-active .sticky-body {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
@keyframes pencilAnimation {
  from {
    width: 0;
  }
  to {
    width: 74px;
  }
}
@keyframes pencilAnimation2 {
  from {
    width: 0;
  }
  to {
    width: 115px;
  }
}
body[data-plugin-page-transition] {
  transition: ease opacity 0.3s;
}
@keyframes cd-bounce {
  0% {
    transform: translateX(-50%) scale(0);
  }
  60% {
    transform: translateX(-50%) scale(1.1);
  }
  100% {
    transform: translateX(-50%) scale(1);
  }
}
.payment-cc {
  display: flex;
}
.payment-cc > i {
  font-size: 32px;
  font-size: 2rem;
  transition: ease color 0.3s;
}
.payment-cc > i + i {
  margin-left: 10px;
}
.payment-cc > i:hover {
  color: #fff;
}
.payment-cc.payment-cc-no-hover-effect > i:hover {
  color: inherit;
}
[data-plugin-animated-letters] {
  opacity: 0;
  visibility: hidden;
}
@keyframes typeWriterFlash {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
[data-plugin-video] {
  position: relative;
}
[data-plugin-video] > img {
  position: relative;
  z-index: 1;
}
.patterns svg {
  position: absolute;
}
.popup-inline-content {
  background: none repeat scroll 0 0 #fff;
  margin: 40px auto;
  max-width: 1170px;
  padding: 20px 30px;
  position: relative;
  text-align: left;
  display: none;
}
.mfp-wrap .popup-inline-content {
  display: block;
}
.nav > li > a {
  text-decoration: none;
}
.nav > li > a:focus,
.nav > li > a:hover {
  background: 0 0;
  text-decoration: none;
}
ul.nav-list li {
  margin: 0;
  padding: 0;
  display: block;
  position: relative;
}
ul.nav-list li a {
  transition: background 0.1s;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 8px 0 8px 22px;
  display: block;
  color: #666;
  font-size: 0.9em;
  text-decoration: none;
  line-height: 20px;
}
ul.nav-list li a:before {
  font-family: "Font Awesome 6 Free";
  content: "\f054";
  font-weight: 900;
  position: absolute;
  top: 8px;
  font-size: 7.2px;
  font-size: 0.45rem;
  opacity: 0.7;
  transform: translate3d(-1px, 0, 0);
  left: 12px;
}
ul.nav-list li a:hover {
  text-decoration: none;
}
ul.nav-list li a:hover i[class*="fa-chevron"],
ul.nav-list li a:hover:before {
  animation-name: arrowLeftRight;
  animation-duration: 0.5s;
  animation-iteration-count: infinite;
}
ul.nav-list li a i[class*="fa-chevron"] {
  position: relative;
  top: -1px;
  font-size: 8px;
  font-size: 0.5rem;
  opacity: 0.8;
}
ul.nav-list li > a.active {
  font-weight: 700;
}
ul.nav-list li ul {
  list-style: none;
  margin: 0 0 0 25px;
  padding: 0;
}
ul.nav-list li:last-child a {
  border-bottom: 0;
}
ul.nav-list.show-bg-active .active > a,
ul.nav-list.show-bg-active a.active {
  background-color: #f5f5f5;
}
ul.nav-list.show-bg-active .active > a:hover,
ul.nav-list.show-bg-active a.active:hover {
  background-color: #eee;
}
ul.nav-list-simple li {
  margin: 0;
  padding: 0;
  display: block;
  position: relative;
}
ul.nav-list-simple li a {
  transition: background 0.1s;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  padding: 8px 0;
  display: block;
  color: #666;
  font-size: 0.9em;
  text-decoration: none;
  line-height: 20px;
  transition: ease padding 0.3s;
}
ul.nav-list-simple li > a.active {
  font-weight: 700;
}
ul.nav-list-simple li:hover a {
  padding-left: 4px;
}
ul.nav-list-simple li ul {
  list-style: none;
  margin: 0 0 0 25px;
  padding: 0;
}
ul.nav-pills > li > a.active {
  color: #fff;
  background-color: #ccc;
}
ul.nav-pills > li > a.active:focus,
ul.nav-pills > li > a.active:hover {
  color: #fff;
  background-color: #ccc;
}
.nav-pills-center {
  text-align: center;
}
.nav-pills-center > li {
  display: inline-block;
  float: none;
}
.nav-pills-sm > li > a {
  padding: 7px 12px;
}
.nav-pills .nav-link.active {
  background-color: transparent;
}
.show > .nav-pills .nav-link {
  background-color: transparent;
}
.nav-light > li > a {
  color: #fff;
}
.nav-active-style-1 {
  min-height: 100px;
  align-items: center;
}
.nav-active-style-1 > li {
  align-self: stretch;
}
.nav-active-style-1 > li > a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 !important;
  margin: 0 15px;
  border-bottom: 2px solid transparent;
  transition: ease border-color 0.3s;
}
.nav-active-style-1 > li > a.active,
.nav-active-style-1 > li > a:focus,
.nav-active-style-1 > li > a:hover {
  border-bottom-color: #ccc;
}
@media (max-width: 575px) {
  .nav-active-style-1 > li > a {
    min-height: 45px;
    justify-content: center;
  }
}
.nav-secondary {
  background: #fafafa;
  margin: 0;
  padding: 20px 0;
  text-align: center;
  z-index: 99;
  width: 100% !important;
}
.nav-secondary .nav-pills > li {
  float: none;
  display: inline-block;
}
.nav-secondary .nav-pills > li a {
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  padding: 10px 13px;
  text-transform: uppercase;
}
.nav-secondary.sticky-active {
  border-bottom-color: #e9e9e9;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
}
.parallax {
  background-color: transparent;
  background-position: 50% 50%;
  background-repeat: repeat;
  background-attachment: fixed;
  position: relative;
  clear: both;
}
.parallax:not(.page-header):not(.match-height):not([class*="section-height-"]) {
  margin: 70px 0;
  padding: 50px 0;
}
.parallax blockquote {
  border: 0;
  padding: 0 10%;
}
.parallax blockquote i.fa-quote-left {
  font-size: 34px;
  position: relative;
  left: -5px;
}
.parallax blockquote p {
  font-size: 24px;
  line-height: 30px;
}
.parallax blockquote span {
  font-size: 16px;
  line-height: 20px;
  color: #999;
  position: relative;
  left: -5px;
}
.parallax-background + .container {
  position: relative;
}
@keyframes processShapesScaleOne {
  0% {
    opacity: 0.6;
    transform: translate3d(-50%, -50%, 0) scale(1.5);
  }
  25% {
    opacity: 0;
    transform: translate3d(-50%, -50%, 0) scale(1.8);
  }
  50% {
    opacity: 0;
    transform: translate3d(-50%, -50%, 0) scale(1);
  }
  100% {
    opacity: 0.6;
    transform: translate3d(-50%, -50%, 0) scale(1.5);
  }
}
@keyframes processShapesScaleTwo {
  0% {
    opacity: 0.3;
    transform: translate3d(-50%, -50%, 0) scale(2);
  }
  25% {
    opacity: 0;
    transform: translate3d(-50%, -50%, 0) scale(2.3);
  }
  50% {
    opacity: 0;
    transform: translate3d(-50%, -50%, 0) scale(1);
  }
  100% {
    opacity: 0.3;
    transform: translate3d(-50%, -50%, 0) scale(2);
  }
}
section.section {
  background: #f7f7f7;
  border-top: 5px solid #f1f1f1;
  margin: 30px 0;
  padding: 50px 0;
}
section.section > .container {
  position: relative;
}
section.section.section-height-1 {
  padding: 12.307px 0;
  padding: 0.7692307692rem 0;
}
section.section.section-height-2 {
  padding: 36.923px 0;
  padding: 2.3076923077rem 0;
}
section.section.section-height-3 {
  padding: 73.846px 0;
  padding: 4.6153846154rem 0;
}
section.section.section-height-4 {
  padding: 110.769px 0;
  padding: 6.9230769231rem 0;
}
section.section.section-height-5 {
  padding: 147.692px 0;
  padding: 9.2307692308rem 0;
}
section.section.section-no-background {
  background: 0 0;
  border-top-color: transparent;
}
section.section.section-center {
  text-align: center;
}
section.section.section-text-light h1,
section.section.section-text-light h2,
section.section.section-text-light h3,
section.section.section-text-light h4,
section.section.section-text-light h5,
section.section.section-text-light h6 {
  color: #fff;
}
section.section.section-text-light p {
  color: #e6e5e5;
}
section.section.section-background {
  background-repeat: repeat;
  border: 0;
}
section.section.section-background-change-anim {
  animation-name: colorTransition;
  animation-duration: 25s;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
section.section.section-angled {
  position: relative;
  margin: 0;
  overflow: hidden;
}
section.section.section-angled .section-angled-layer-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 48px 0;
  padding: 3rem 0;
  transform: skewY(-0.7deg) translate3d(0, -50%, 0);
}
section.section.section-angled .section-angled-layer-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 48px 0;
  padding: 3rem 0;
  transform: skewY(0.7deg) translate3d(0, 50%, 0);
}
section.section.section-angled
  .section-angled-layer-top
  + .section-angled-content,
section.section.section-angled
  .section-angled-layer-top
  + .section-angled-layer-bottom
  + .section-angled-content {
  margin-top: 40px;
  margin-top: 2.5rem;
}
section.section.section-angled
  .section-angled-layer-bottom
  + .section-angled-content,
section.section.section-angled
  .section-angled-layer-bottom
  + .section-angled-layer-top
  + .section-angled-content {
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}
section.section.section-angled.section-angled-reverse
  .section-angled-layer-top {
  transform: skewY(0.7deg) translate3d(0, -50%, 0);
}
section.section.section-angled.section-angled-reverse
  .section-angled-layer-bottom {
  transform: skewY(-0.7deg) translate3d(0, 50%, 0);
}
section.section.section-angled + .section-angled {
  padding-top: 0;
}
section.section.section-parallax {
  background-color: transparent;
  background-position: 50% 50%;
  background-repeat: repeat;
  background-attachment: fixed;
  border: 0;
}
section.section.section-no-border {
  border: 0;
}
section.section.section-footer {
  margin-bottom: -50px;
}
@media (max-width: 991px) {
  .container-fluid > .row > .p-0 section.section {
    margin-bottom: 0;
    margin-top: 0;
  }
  .container-fluid > .row > .p-0:first-child section.section {
    margin-bottom: 0;
    margin-top: 30px;
  }
  .container-fluid > .row > .p-0:last-child section.section {
    margin-bottom: 30px;
    margin-top: 0;
  }
}
@keyframes shapeDividerToLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-200%, 0, 0);
  }
}
@keyframes shapeDividerToRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(200%, 0, 0);
  }
}
.social-icons {
  margin: 0;
  padding: 0;
  width: auto;
}
.social-icons li {
  display: inline-block;
  margin: -1px 1px 0 0;
  padding: 0;
  border-radius: 100%;
  overflow: visible;
}
.social-icons li a {
  transition: all 0.2s ease;
  border-radius: 100%;
  display: block;
  height: 28px;
  line-height: 28px;
  width: 28px;
  text-align: center;
  color: #333 !important;
  text-decoration: none;
  font-size: 12.8px;
  font-size: 0.8rem;
}
.social-icons li:hover a {
  background: #151719;
  color: #fff !important;
}
.social-icons li:hover.social-icons-twitter a {
  background: #1aa9e1 !important;
}
.social-icons li:hover.social-icons-facebook a {
  background: #3b5a9a !important;
}
.social-icons li:hover.social-icons-linkedin a {
  background: #0073b2 !important;
}
.social-icons li:hover.social-icons-rss a {
  background: #ff8201 !important;
}
.social-icons li:hover.social-icons-googleplus a {
  background: #dd4b39 !important;
}
.social-icons li:hover.social-icons-pinterest a {
  background: #cc2127 !important;
}
.social-icons li:hover.social-icons-youtube a {
  background: #c3191e !important;
}
.social-icons li:hover.social-icons-instagram a {
  background: #7c4a3a !important;
}
.social-icons li:hover.social-icons-skype a {
  background: #00b0f6 !important;
}
.social-icons li:hover.social-icons-email a {
  background: #dd4b39 !important;
}
.social-icons li:hover.social-icons-vk a {
  background: #6383a8 !important;
}
.social-icons li:hover.social-icons-xing a {
  background: #1a7576 !important;
}
.social-icons li:hover.social-icons-tumblr a {
  background: #304e6c !important;
}
.social-icons li:hover.social-icons-reddit a {
  background: #ff4107 !important;
}
.social-icons li:hover.social-icons-whatsapp a {
  background: #25d366 !important;
}
.social-icons.social-icons-dark li a {
  background: #181818;
}
.social-icons.social-icons-dark li a i {
  color: #fff;
}
.social-icons.social-icons-dark-2 li a {
  background: #272a2e;
}
.social-icons.social-icons-dark-2 li a i {
  color: #fff;
}
.social-icons.social-icons-transparent li {
  box-shadow: none;
}
.social-icons.social-icons-transparent li a {
  background: 0 0;
}
.social-icons.social-icons-icon-light li a i {
  color: #fff;
}
.social-icons.social-icons-icon-light.social-icons-clean li a i {
  color: #fff !important;
}
.social-icons.social-icons-md li a {
  height: 33px;
  line-height: 33px;
  width: 33px;
  font-size: 14.4px;
  font-size: 0.9rem;
}
.social-icons.social-icons-lg li a {
  height: 48px;
  line-height: 50px;
  width: 48px;
}
@media (max-width: 400px) {
  .social-icons.social-icons-lg li a {
    height: 38px;
    line-height: 40px;
    width: 38px;
  }
}
.social-icons.social-icons-opacity-light li a {
  background: rgba(255, 255, 255, 0.04);
}
.social-icons.social-icons-clean-with-border li a {
  background: 0 0;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.social-icons.social-icons-clean-with-border.social-icons-clean-with-border-icon-dark
  li
  a {
  color: #212121 !important;
}
.social-icons.social-icons-clean-with-border.social-icons-clean-with-border-icon-dark
  li:hover
  a {
  color: #fff !important;
}
.social-icons:not(.social-icons-opacity-light):not(
    .social-icons-transparent
  ):not(.social-icons-clean):not(.social-icons-clean-with-border):not(
    .social-icons-dark
  ):not(.social-icons-dark-2):not(.custom-social-icons)
  li {
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.2);
}
.social-icons:not(.social-icons-opacity-light):not(
    .social-icons-transparent
  ):not(.social-icons-clean):not(.social-icons-clean-with-border):not(
    .social-icons-dark
  ):not(.social-icons-dark-2):not(.custom-social-icons)
  li
  a {
  background: #fff;
}
.social-icons-dark-2.social-icons-clean li a,
.social-icons-dark.social-icons-clean li a {
  background: 0 0;
  color: #fff !important;
}
.sort-source-wrapper {
  padding: 8px 0;
  position: relative;
}
.sort-source-wrapper .nav {
  margin: -100px 0 5px;
}
.sort-source-wrapper .nav > li > a {
  color: #fff;
  background: 0 0;
}
.sort-source-wrapper .nav > li > a:focus,
.sort-source-wrapper .nav > li > a:hover {
  background: 0 0;
}
.sort-source-wrapper .nav > li.active > a {
  background: 0 0;
}
.sort-source-wrapper .nav > li.active > a:focus,
.sort-source-wrapper .nav > li.active > a:hover {
  background: 0 0;
}
.sort-source {
  clear: both;
}
.sort-source.d-none {
  display: block !important;
  width: 0;
  height: 0;
  overflow: hidden;
}
.sort-source > li > a {
  padding: 6px 12px;
  text-decoration: none;
}
.sort-source.sort-source-style-2 {
  margin: -10px auto;
}
.sort-source.sort-source-style-2 > li {
  float: none;
  display: inline-block;
}
.sort-source.sort-source-style-2 > li > a,
.sort-source.sort-source-style-2 > li > a:focus,
.sort-source.sort-source-style-2 > li > a:hover {
  background: 0 0;
  color: #fff;
  display: inline-block;
  border-radius: 0;
  margin: 0;
  padding: 18px 28px;
  position: relative;
  text-decoration: none;
}
.sort-source.sort-source-style-2 > li > a:after {
  transition: margin 0.3s;
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 15px solid #ccc;
  content: " ";
  display: block;
  position: absolute;
  left: 50%;
  margin-left: -20px;
  margin-top: 0;
  opacity: 0;
}
.sort-source.sort-source-style-2 > li.active > a,
.sort-source.sort-source-style-2 > li.active > a:focus,
.sort-source.sort-source-style-2 > li.active > a:hover {
  background: 0 0;
}
.sort-source.sort-source-style-2 > li.active > a:after {
  opacity: 1;
  margin-top: 18px;
}
@media (max-width: 991px) {
  .sort-source.sort-source-style-2 > li {
    display: block;
  }
  .sort-source.sort-source-style-2 > li.active > a:after {
    display: none !important;
  }
}
.sort-source.sort-source-style-3 > li > a {
  color: #777;
}
.sort-source.sort-source-style-3 > li.active > a {
  background: 0 0 !important;
  border-bottom: 3px solid #ccc;
  border-radius: 0;
}
.sort-destination {
  overflow: hidden;
}
.sort-destination .isotope-item {
  min-width: 1px;
}
.sort-destination.full-width {
  position: relative;
}
.sort-destination.full-width .isotope-item {
  width: 20%;
  float: left;
}
.sort-destination.full-width .isotope-item.w2 {
  width: 40%;
}
.sort-destination.full-width .isotope-item .img-thumbnail,
.sort-destination.full-width .isotope-item .thumb-info img,
.sort-destination.full-width .isotope-item a {
  border-radius: 0;
}
.sort-source-wrapper + .sort-destination.full-width {
  margin: 0 0 -81px;
  top: -51px;
}
.sort-source-wrapper + .sort-destination-loader .full-width {
  margin: 0 0 -81px;
  top: -51px;
}
.sort-destination-loader {
  height: auto;
  overflow: hidden;
  position: relative;
}
.sort-destination-loader:after {
  transition: opacity 0.3s;
  content: " ";
  background: #fff;
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  opacity: 0;
}
.sort-destination-loader .bounce-loader {
  display: none;
}
.sort-destination-loader.sort-destination-loader-showing {
  max-height: 200px;
}
.sort-destination-loader.sort-destination-loader-showing:after {
  opacity: 1;
}
.sort-destination-loader.sort-destination-loader-showing .bounce-loader {
  display: block;
}
.sort-destination-loader.loader-showing-dark:after {
  background: #181818;
}
.sort-destination-loader-full-width {
  overflow: visible;
}
.sort-destination-loader-full-width:after {
  bottom: -81px;
  top: -51px;
}
.sort-destination-loader-full-width.sort-destination-loader-showing {
  overflow: hidden;
  height: 600px;
}
.sort-destination-loader-lg.sort-destination-loader-showing {
  height: 600px;
}
.portfolio-load-more-loader.portfolio-load-more-loader-showing .bounce-loader {
  display: block !important;
}
@media (min-width: 992px) {
  .col-md-6.isotope-item:nth-child(2n + 1) {
    clear: both;
  }
  .col-md-4.isotope-item:nth-child(3n + 1) {
    clear: both;
  }
  .col-md-3.isotope-item:nth-child(4n + 1) {
    clear: both;
  }
  .col-md-1-5.isotope-item:nth-child(5n + 1) {
    clear: both;
  }
  .col-md-2.isotope-item:nth-child(6n + 1) {
    clear: both;
  }
  .sort-destination.full-width .isotope-item:nth-child(5n + 1) {
    clear: both;
  }
}
@media (max-width: 991px) {
  .sort-destination.isotope {
    overflow: visible !important;
    height: auto !important;
  }
  .sort-destination.isotope.full-width {
    overflow: hidden !important;
  }
  .isotope-hidden {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .isotope-item {
    position: static !important;
    text-align: center;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    transform: none !important;
  }
  .isotope-item.product {
    position: relative !important;
  }
  .sort-source-wrapper {
    background: #151719;
    clear: both;
    margin-top: -35px;
  }
  .sort-source-wrapper .nav {
    margin: 0;
  }
  .sort-destination {
    height: auto !important;
  }
  .sort-destination.full-width,
  .sort-source-wrapper + .sort-destination.full-width {
    max-width: none;
    margin: 0 0 -30px;
    top: 0;
  }
  .sort-destination.full-width .isotope-item,
  .sort-source-wrapper + .sort-destination.full-width .isotope-item {
    max-width: 100%;
  }
  .sort-source-wrapper + .sort-destination-loader .full-width {
    margin: 0 0 -30px;
    top: 0;
  }
}
@media (max-width: 575px) {
  .sort-destination.full-width .isotope-item,
  .sort-source-wrapper + .sort-destination.full-width .isotope-item {
    position: static !important;
    clear: both;
    float: none;
    width: auto;
  }
}
.testimonial {
  margin-bottom: 20px;
}
.testimonial blockquote {
  background: #ccc;
  border-radius: 5px;
  border: 0;
  color: #666;
  font-family: "Playfair Display", serif;
  margin: 0;
  padding: 40px 64px 40px 72px;
  padding: 2.5rem 4rem 2.5rem 4.5rem;
  position: relative;
}
.testimonial blockquote:before {
  left: 22px;
  top: 21px;
  color: #fff;
  content: "“";
  font-size: 85px;
  font-style: normal;
  line-height: 1;
  position: absolute;
}
.testimonial blockquote p {
  color: #fff;
  font-family: "Playfair Display", serif;
  font-size: 1.2em;
}
.testimonial .testimonial-arrow-down {
  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
  border-top: 8px solid #ccc;
  height: 0;
  margin: 0 0 0 45px;
  width: 0;
}
.testimonial .testimonial-author {
  display: flex;
  margin: 12px 0 0 0;
}
.testimonial .testimonial-author .testimonial-author-thumbnail {
  width: auto;
}
.testimonial .testimonial-author img {
  max-width: 25px;
}
.testimonial .testimonial-author strong {
  color: #111;
  display: block;
  margin-bottom: 2px;
  font-size: 16px;
  font-size: 1rem;
}
.testimonial .testimonial-author span {
  color: #666;
  display: block;
  font-size: 12.8px;
  font-size: 0.8rem;
  font-weight: 600;
}
.testimonial .testimonial-author p {
  color: #999;
  text-align: left;
  line-height: 1.2;
  margin-left: 9.6px;
  margin-left: 0.6rem;
}
.testimonial.testimonial-style-2 {
  text-align: center;
}
.testimonial.testimonial-style-2 blockquote {
  background: 0 0 !important;
  border-radius: 4px;
  padding: 22px 20px;
}
.testimonial.testimonial-style-2 blockquote:after,
.testimonial.testimonial-style-2 blockquote:before {
  display: none;
}
.testimonial.testimonial-style-2 blockquote p {
  color: #777;
}
.testimonial.testimonial-style-2 .testimonial-arrow-down {
  display: none;
}
.testimonial.testimonial-style-2 .testimonial-author {
  padding: 0;
  margin: 6px 0 0;
  flex-direction: column;
}
.testimonial.testimonial-style-2 .testimonial-author img {
  margin: 0 auto 15px;
  max-width: 60px;
  max-height: 60px;
}
.testimonial.testimonial-style-2 .testimonial-author p {
  text-align: center;
  padding: 0;
  margin: 0;
}
.testimonial.testimonial-style-3 blockquote {
  background: #f2f2f2 !important;
  border-radius: 4px;
  padding: 12px 30px;
}
.testimonial.testimonial-style-3 blockquote:before {
  top: 5px;
  left: 9px;
  color: #777;
  font-size: 35px;
}
.testimonial.testimonial-style-3 blockquote:after {
  color: #777;
  font-size: 35px;
  bottom: -5px;
}
.testimonial.testimonial-style-3 blockquote p {
  color: #777;
  font-family: Poppins, Arial, sans-serif;
  font-size: 1em;
  font-style: normal;
}
.testimonial.testimonial-style-3 .testimonial-author {
  margin-left: 8px;
  align-items: center;
}
.testimonial.testimonial-style-3 .testimonial-author img {
  max-width: 55px;
}
.testimonial.testimonial-style-3 .testimonial-author p {
  margin-bottom: 0;
}
.testimonial.testimonial-style-3 .testimonial-arrow-down {
  margin-left: 20px;
  border-top: 10px solid #f2f2f2 !important;
}
.testimonial.testimonial-style-3.testimonial-style-3-light blockquote {
  background: #fff !important;
}
.testimonial.testimonial-style-3.testimonial-style-3-light
  .testimonial-arrow-down {
  border-top: 10px solid #fff !important;
}
.testimonial.testimonial-style-4 {
  border-radius: 6px;
  padding: 8px;
  border-top: 1px solid #dfdfdf;
  border-bottom: 1px solid #dfdfdf;
  border-left: 1px solid #ececec;
  border-right: 1px solid #ececec;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.04);
}
.testimonial.testimonial-style-4 blockquote {
  background: 0 0 !important;
  border-radius: 4px;
  padding: 12px 30px;
}
.testimonial.testimonial-style-4 blockquote:before {
  top: 5px;
  left: 9px;
  color: #777;
  font-size: 35px;
}
.testimonial.testimonial-style-4 blockquote:after {
  color: #777;
  font-size: 35px;
  bottom: -5px;
}
.testimonial.testimonial-style-4 blockquote p {
  color: #777;
  font-family: Poppins, Arial, sans-serif;
  font-size: 1em;
  font-style: normal;
}
.testimonial.testimonial-style-4 .testimonial-arrow-down {
  display: none;
}
.testimonial.testimonial-style-4 .testimonial-author {
  margin-left: 30px;
  align-items: center;
}
.testimonial.testimonial-style-4 .testimonial-author img {
  max-width: 55px;
}
.testimonial.testimonial-style-4 .testimonial-author p {
  margin-bottom: 0;
}
.testimonial.testimonial-style-4.testimonial-no-borders {
  border: 0;
  box-shadow: none;
}
.testimonial.testimonial-style-5 {
  text-align: center;
}
.testimonial.testimonial-style-5 blockquote {
  background: 0 0 !important;
  border-radius: 4px;
  padding: 6px 20px;
}
.testimonial.testimonial-style-5 blockquote:after,
.testimonial.testimonial-style-5 blockquote:before {
  display: none;
}
.testimonial.testimonial-style-5 blockquote p {
  color: #777;
  font-family: Poppins, Arial, sans-serif;
  font-size: 1.2em;
  font-style: normal;
}
.testimonial.testimonial-style-5 .testimonial-arrow-down {
  display: none;
}
.testimonial.testimonial-style-5 .testimonial-author {
  display: block;
  padding: 6px 0 0;
  margin: 12px 0 0;
  border-top: 1px solid #f2f2f2;
  justify-content: center;
}
.testimonial.testimonial-style-5 .testimonial-author img {
  margin: 0 auto 10px;
  max-width: 55px;
}
.testimonial.testimonial-style-5 .testimonial-author p {
  text-align: center;
  padding: 0;
  margin: 0;
}
.testimonial.testimonial-style-6 {
  text-align: center;
}
.testimonial.testimonial-style-6 blockquote {
  background: 0 0 !important;
  border-radius: 4px;
  border: 0;
  padding: 0 10%;
}
.testimonial.testimonial-style-6 blockquote:after,
.testimonial.testimonial-style-6 blockquote:before {
  display: none;
}
.testimonial.testimonial-style-6 blockquote i.fa-quote-left {
  font-size: 34px;
  position: relative;
  left: -5px;
}
.testimonial.testimonial-style-6 blockquote p {
  color: #777;
  font-size: 24px;
  line-height: 30px;
}
.testimonial.testimonial-style-6 blockquote span {
  font-size: 16px;
  line-height: 20px;
  color: #999;
  position: relative;
  left: -5px;
}
.testimonial.testimonial-style-6 .testimonial-arrow-down {
  display: none;
}
.testimonial.testimonial-style-6 .testimonial-author {
  padding: 0;
  margin: 6px 0 0;
  justify-content: center;
}
.testimonial.testimonial-style-6 .testimonial-author img {
  margin: 0 auto 10px;
}
.testimonial.testimonial-style-6 .testimonial-author p {
  text-align: center;
  padding: 0;
  margin: 0;
}
.testimonial.testimonial-style-7 {
  text-align: center;
  background-color: #ccc;
  padding: 20px;
}
.testimonial.testimonial-style-7 blockquote {
  padding: 30px;
}
.testimonial.testimonial-style-7 blockquote:before {
  color: #fff;
  display: block !important;
  left: 50%;
  top: -10px;
  font-size: 80px;
  font-style: normal;
  line-height: 1;
  position: absolute;
  transform: translate3d(-50%, 0, 0);
}
.testimonial.testimonial-style-7 blockquote:after {
  display: none;
}
.testimonial.testimonial-style-7 .testimonial-arrow-down {
  display: none;
}
.testimonial.testimonial-style-7 .testimonial-author {
  padding: 0;
  margin: 6px 0 0;
  justify-content: center;
}
.testimonial.testimonial-style-7 .testimonial-author img {
  margin: 0 auto 10px;
}
.testimonial.testimonial-style-7 .testimonial-author p {
  text-align: center;
  padding: 0;
  margin: 0;
}
.testimonial.testimonial-light blockquote p,
.testimonial.testimonial-light blockquote:after,
.testimonial.testimonial-light blockquote:before {
  color: #fff;
}
.testimonial.testimonial-light blockquote.blockquote-default p,
.testimonial.testimonial-light blockquote.blockquote-default:after,
.testimonial.testimonial-light blockquote.blockquote-default:before {
  color: #777 !important;
}
.testimonial.testimonial-light .testimonial-author span,
.testimonial.testimonial-light .testimonial-author strong {
  color: #fff;
}
.section-text-light .testimonial.testimonial blockquote p,
.section-text-light .testimonial.testimonial blockquote:after,
.section-text-light .testimonial.testimonial blockquote:before {
  opacity: 0.9;
  color: #fff;
}
.section-text-light .testimonial.testimonial .testimonial-author span,
.section-text-light .testimonial.testimonial .testimonial-author strong {
  opacity: 0.6;
  color: #fff;
}
.thumb-info {
  display: block;
  position: relative;
  text-decoration: none;
  max-width: 100%;
  background-color: #fff;
  border-radius: 4px;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}
.thumb-info .thumb-info-wrapper {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
  border-radius: 4px;
  margin: 0;
  overflow: hidden;
  display: block;
  position: relative;
}
.thumb-info .thumb-info-wrapper.thumb-info-wrapper-demos {
  max-height: 330px;
}
.thumb-info .thumb-info-wrapper:after {
  content: "";
  background: rgba(33, 37, 41, 0.8);
  transition: all 0.3s;
  border-radius: 4px;
  bottom: -4px;
  color: #fff;
  left: -4px;
  position: absolute;
  right: -4px;
  top: -4px;
  display: block;
  opacity: 0;
  z-index: 1;
}
.thumb-info .thumb-info-wrapper.thumb-info-wrapper-link {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.thumb-info .thumb-info-wrapper.thumb-info-wrapper-link > a {
  display: block;
  padding-top: 72%;
  text-indent: -9999px;
}
.thumb-info .thumb-info-wrapper-opacity-0:after {
  opacity: 0;
}
.thumb-info .thumb-info-wrapper-opacity-1:after {
  opacity: 0.1;
}
.thumb-info .thumb-info-wrapper-opacity-2:after {
  opacity: 0.2;
}
.thumb-info .thumb-info-wrapper-opacity-3:after {
  opacity: 0.3;
}
.thumb-info .thumb-info-wrapper-opacity-4:after {
  opacity: 0.4;
}
.thumb-info .thumb-info-wrapper-opacity-5:after {
  opacity: 0.5;
}
.thumb-info .thumb-info-wrapper-opacity-6:after {
  opacity: 0.6;
}
.thumb-info .thumb-info-wrapper-opacity-7:after {
  opacity: 0.7;
}
.thumb-info .thumb-info-wrapper-opacity-8:after {
  opacity: 0.8;
}
.thumb-info .thumb-info-wrapper-opacity-9:after {
  opacity: 0.9;
}
.thumb-info .thumb-info-action-icon {
  transition: all 0.3s;
  background: #ccc;
  border-radius: 0 0 0 4px;
  display: inline-block;
  font-size: 25px;
  height: 50px;
  line-height: 50px;
  position: absolute;
  right: -100px;
  text-align: center;
  top: -100px;
  width: 50px;
  z-index: 2;
}
.thumb-info .thumb-info-action-icon i {
  font-size: 14px;
  right: 50%;
  position: absolute;
  top: 50%;
  color: #fff;
  transform: translate(50%, -50%);
  margin: -2px -1px 0 0;
}
.thumb-info .thumb-info-title {
  transition: all 0.3s;
  background: rgba(33, 37, 41, 0.8);
  color: #fff;
  font-weight: 600;
  left: 0;
  letter-spacing: -0.05em;
  position: absolute;
  z-index: 2;
  max-width: 90%;
  font-size: 17px;
  padding: 13px 21px 2px;
  bottom: 13%;
}
.thumb-info .thumb-info-title.thumb-info-title-top {
  bottom: auto;
  top: 13%;
}
.thumb-info .thumb-info-type {
  background-color: #ccc;
  border-radius: 2px;
  display: inline-block;
  float: left;
  font-size: 0.6em;
  font-weight: 600;
  letter-spacing: 0;
  margin: 8px -2px -15px 0;
  padding: 2px 12px;
  text-transform: uppercase;
  z-index: 2;
  line-height: 2.3;
}
.thumb-info .owl-carousel {
  z-index: auto;
}
.thumb-info .owl-carousel .owl-dots {
  z-index: 2;
}
.thumb-info img {
  transition: all 0.3s ease;
  border-radius: 3px;
  position: relative;
  width: 100%;
}
.thumb-info:hover .thumb-info-wrapper:after {
  opacity: 1;
}
.thumb-info:hover .thumb-info-action-icon {
  right: 0;
  top: 0;
}
.thumb-info:hover .thumb-info-title {
  background: rgba(33, 37, 41, 0.9);
}
.thumb-info:hover img {
  transform: scale(1.1, 1.1);
}
.thumb-info.thumb-info-no-zoom img {
  transition: none;
}
.thumb-info.thumb-info-no-zoom:hover img {
  transform: scale(1, 1);
}
.thumb-info.thumb-info-lighten .thumb-info-wrapper:after {
  background: rgba(23, 23, 23, 0.25);
}
.thumb-info.thumb-info-hide-wrapper-bg .thumb-info-wrapper:after {
  display: none;
}
.thumb-info:hover.thumb-info-centered-icons .thumb-info-action {
  opacity: 1;
  transform: translate3d(0, -50%, 0);
}
.thumb-info:hover.thumb-info-centered-icons .thumb-info-action-icon {
  position: relative;
}
.thumb-info.thumb-info-bottom-info .thumb-info-title {
  background: #fff;
  left: 0;
  width: 100%;
  max-width: 100%;
  transition: transform 0.2s ease-out, opacity 0.2s ease-out;
  transform: translate3d(0, 100%, 0);
  top: auto;
  bottom: 0;
  opacity: 0;
  padding: 15px;
  text-shadow: none;
  color: #777;
}
.thumb-info.thumb-info-bottom-info .thumb-info-type {
  float: none;
  background: 0 0;
  padding: 0;
  margin: 0;
}
.thumb-info.thumb-info-bottom-info:hover .thumb-info-title {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
.thumb-info.thumb-info-bottom-info:hover img {
  transform: scale(1.1);
}
.thumb-info.thumb-info-show-button-hover .btn {
  opacity: 0;
}
.thumb-info.thumb-info-show-button-hover .btn,
.thumb-info.thumb-info-show-button-hover .thumb-info-type {
  transition: opacity 0.3s ease-out;
}
.thumb-info.thumb-info-show-button-hover .thumb-info-title {
  transform: translate3d(0, 35px, 0);
  transition: transform 0.3s ease-out;
  bottom: 0;
}
.thumb-info.thumb-info-show-button-hover:hover .btn {
  opacity: 1;
}
.thumb-info.thumb-info-show-button-hover:hover .thumb-info-type {
  opacity: 0;
}
.thumb-info.thumb-info-show-button-hover:hover .thumb-info-title {
  transform: translate3d(0, -20px, 0);
}
.thumb-info.thumb-info-bottom-info-dark .thumb-info-title {
  background: #212529;
  color: #fff;
}
.thumb-info.thumb-info-bottom-info-show-more img {
  transform: none !important;
}
.thumb-info.thumb-info-bottom-info-show-more .thumb-info-title {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
.thumb-info.thumb-info-bottom-info-show-more .thumb-info-show-more-content {
  transition: ease max-height 0.8s;
  overflow: hidden;
  max-height: 0;
  display: block;
}
.thumb-info.thumb-info-bottom-info-show-more:hover
  .thumb-info-show-more-content {
  max-height: 300px;
}
.thumb-info.thumb-info-block .thumb-info-action-icon {
  top: 15px;
  right: 15px;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}
.thumb-info.thumb-info-block .thumb-info-wrapper:before {
  content: "";
  background: rgba(255, 255, 255, 0.9);
  transition: all 0.3s;
  border-radius: 0;
  bottom: 16px;
  bottom: 1rem;
  color: #fff;
  left: 16px;
  left: 1rem;
  position: absolute;
  right: 16px;
  right: 1rem;
  top: 16px;
  top: 1rem;
  display: block;
  opacity: 0;
  z-index: 2;
}
.thumb-info.thumb-info-block:hover .thumb-info-wrapper:before {
  opacity: 1;
}
.thumb-info.thumb-info-block:hover .thumb-info-action-icon {
  opacity: 1;
}
.thumb-info.thumb-info-block.thumb-info-block-dark .thumb-info-wrapper:before {
  background: rgba(33, 37, 41, 0.9);
}
.thumb-info.thumb-info-hide-info-hover .thumb-info-wrapper:after {
  opacity: 0.65;
}
.thumb-info.thumb-info-hide-info-hover .thumb-info-title {
  opacity: 1;
  top: 50%;
}
.thumb-info.thumb-info-hide-info-hover .thumb-info-type {
  float: none;
}
.thumb-info.thumb-info-hide-info-hover:hover .thumb-info-wrapper:after {
  opacity: 0.1;
}
.thumb-info.thumb-info-hide-info-hover:hover .thumb-info-title {
  opacity: 0;
}
.thumb-info.thumb-info-slide-info-hover .thumb-info-wrapper:after {
  opacity: 0.65;
}
.thumb-info.thumb-info-slide-info-hover .thumb-info-wrapper-no-opacity:after {
  opacity: 1;
}
.thumb-info.thumb-info-slide-info-hover .thumb-info-title {
  opacity: 1;
  top: 0;
  height: 100%;
  top: 0;
  transform: none !important;
}
.thumb-info.thumb-info-slide-info-hover .thumb-info-type {
  float: none;
}
.thumb-info.thumb-info-slide-info-hover .thumb-info-slide-info-hover-1,
.thumb-info.thumb-info-slide-info-hover .thumb-info-slide-info-hover-2 {
  transition: cubic-bezier(0.55, 0, 0.1, 1) top 0.5s;
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
  top: 50%;
  transform: translate(0, -50%);
}
.thumb-info.thumb-info-slide-info-hover .thumb-info-slide-info-hover-2 {
  top: 150%;
}
.thumb-info.thumb-info-slide-info-hover:hover .thumb-info-slide-info-hover-1 {
  top: -50%;
}
.thumb-info.thumb-info-slide-info-hover:hover .thumb-info-slide-info-hover-2 {
  top: 50%;
}
.thumb-info.thumb-info-show-image-hover img {
  opacity: 0;
}
.thumb-info.thumb-info-show-image-hover .thumb-info-title {
  background: 0 0;
  color: #333;
}
.thumb-info.thumb-info-show-image-hover:hover img {
  opacity: 1;
}
.thumb-info.thumb-info-show-image-hover:hover .thumb-info-title {
  color: #fff;
}
.thumb-info.thumb-info-no-borders,
.thumb-info.thumb-info-no-borders img {
  border: 0;
  padding: 0;
  margin: 0;
  border-radius: 0;
}
.thumb-info.thumb-info-no-borders .thumb-info-wrapper {
  border: 0;
  padding: 0;
  margin: 0;
  border-radius: 0;
}
.thumb-info.thumb-info-no-borders .thumb-info-wrapper:after {
  border-radius: 0;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
}
.thumb-info.thumb-info-no-borders.thumb-info-no-borders-rounded,
.thumb-info.thumb-info-no-borders.thumb-info-no-borders-rounded
  .thumb-info-wrapper,
.thumb-info.thumb-info-no-borders.thumb-info-no-borders-rounded
  .thumb-info-wrapper:after,
.thumb-info.thumb-info-no-borders.thumb-info-no-borders-rounded img {
  border-radius: 4px;
}
.thumb-info.thumb-info-no-bg {
  background: 0 0;
}
.thumb-info.thumb-info-swap-content .thumb-info-swap-content-wrapper > * {
  transition: cubic-bezier(0.55, 0, 0.1, 1) all 0.3s;
}
.thumb-info.thumb-info-swap-content
  .thumb-info-swap-content-wrapper
  > :nth-child(1) {
  max-width: 100%;
  text-align: center;
  bottom: 0;
  margin: 0;
  position: absolute;
  width: 100%;
  left: 0;
}
.thumb-info.thumb-info-swap-content
  .thumb-info-swap-content-wrapper
  > :nth-child(2) {
  display: inline-block;
  transform: translateY(120%);
  opacity: 0;
}
.thumb-info.thumb-info-swap-content:hover
  .thumb-info-swap-content-wrapper
  > :nth-child(1) {
  transform: translateY(-120%);
  opacity: 0;
}
.thumb-info.thumb-info-swap-content:hover
  .thumb-info-swap-content-wrapper
  > :nth-child(2) {
  transform: none;
  opacity: 1;
}
.full-width .thumb-info img {
  border-radius: 0 !important;
}
.thumb-info-side-image {
  display: flex;
}
.thumb-info-side-image .thumb-info-side-image-wrapper {
  padding: 0;
  margin-right: 20px;
}
.thumb-info-social-icons {
  margin: 0;
  padding: 0;
  display: block;
}
.thumb-info-social-icons a {
  background: #ccc;
  border-radius: 25px;
  display: inline-block;
  height: 30px;
  line-height: 30px;
  text-align: center;
  width: 30px;
}
.thumb-info-social-icons a:hover {
  text-decoration: none;
}
.thumb-info-social-icons a span {
  display: none;
}
.thumb-info-social-icons a i {
  color: #fff;
  font-size: 0.9em;
  font-weight: 400;
}
@media (max-width: 991px) {
  .thumb-info .thumb-info-title {
    font-size: 14px;
  }
  .thumb-info .thumb-info-more {
    font-size: 11px;
  }
}
.thumb-info-container-full-img {
  overflow: hidden;
  position: relative;
}
.thumb-info-container-full-img .thumb-info-wrapper img {
  transition: all 0.85s cubic-bezier(0.23, 1, 0.32, 1);
  transition-property: opacity, transform;
}
.toggle {
  margin: 10px 0 20px;
  position: relative;
  clear: both;
}
.toggle .toggle {
  margin: 10px 0 0;
}
.toggle > input {
  cursor: pointer;
  height: 45px;
  margin: 0;
  opacity: 0;
  position: absolute;
  width: 100%;
  z-index: 2;
}
.toggle > .toggle-title,
.toggle > label {
  transition: all 0.15s ease-out;
  background: #f7f7f7;
  border-left: 3px solid #ccc;
  border-radius: 5px;
  color: #ccc;
  display: block;
  min-height: 20px;
  padding: 12px 20px 12px 15px;
  position: relative;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: -0.2px;
  text-decoration: none !important;
}
.toggle > .toggle-title:-moz-selection,
.toggle > label:-moz-selection {
  background: 0 0;
}
.toggle > .toggle-title i.fa-minus,
.toggle > label i.fa-minus {
  display: none;
}
.toggle > .toggle-title:before,
.toggle > label:before {
  content: " ";
  position: absolute;
  top: calc(50% + 1px);
  right: 14px;
  border-color: #ccc;
  border-top: 1px solid;
  border-right: 1px solid;
  width: 8px;
  height: 8px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: transform 0.3s, top 0.3s;
  transform: rotate(-45deg) translate3d(0, -50%, 0);
  transform-origin: 35%;
}
.toggle > .toggle-title:hover,
.toggle > label:hover {
  background: #f5f5f5;
}
.toggle > .toggle-title + p,
.toggle > label + p {
  color: #999;
  display: block;
  overflow: hidden;
  padding-left: 30px;
  text-overflow: ellipsis;
  white-space: nowrap;
  height: 25px;
}
.toggle > .toggle-title i,
.toggle > label i {
  font-size: 0.7em;
  margin-right: 8px;
  position: relative;
  top: -1px;
}
.toggle > .toggle-content {
  display: none;
}
.toggle > .toggle-content > p {
  margin-bottom: 0;
  padding: 10px 0;
}
.toggle.active i.fa-minus {
  display: inline;
}
.toggle.active > .toggle-title,
.toggle.active > label {
  background: #f7f7f7;
  border-color: #ccc;
}
.toggle.active > .toggle-title:before,
.toggle.active > label:before {
  top: calc(50% - 8px);
  transform: rotate(135deg);
}
.toggle.active > p {
  white-space: normal;
}
.toggle.toggle-sm .toggle > .toggle-title,
.toggle.toggle-sm .toggle > label {
  font-size: 0.9em;
  padding: 6px 20px 6px 10px;
}
.toggle.toggle-sm .toggle > .toggle-content > p {
  font-size: 0.9em;
}
.toggle.toggle-lg .toggle > .toggle-title,
.toggle.toggle-lg .toggle > label {
  font-size: 1.1em;
  padding: 16px 20px 16px 20px;
}
.toggle.toggle-lg .toggle > .toggle-content > p {
  font-size: 1.1em;
}
.toggle.toggle-simple .toggle > .toggle-title,
.toggle.toggle-simple .toggle > label {
  border-radius: 0;
  border: 0;
  background: 0 0;
  color: #777;
  padding-left: 32px;
  margin-bottom: -10px;
  font-size: 1em;
  font-weight: 600;
  color: #212529;
}
.toggle.toggle-simple .toggle > .toggle-title:after,
.toggle.toggle-simple .toggle > label:after {
  content: "";
  position: absolute;
  left: 0;
  display: block;
  width: 24px;
  height: 24px;
  background: #ccc;
  top: 25px;
  margin-top: -12px;
  border-radius: 3px;
  z-index: 1;
}
.toggle.toggle-simple .toggle > .toggle-title:before,
.toggle.toggle-simple .toggle > label:before {
  border: 0;
  left: 9px;
  right: auto;
  margin-top: 0;
  top: 12px;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f067";
  z-index: 2;
  color: #fff;
  font-size: 7px;
  width: auto;
  height: auto;
  transform: none;
}
.toggle.toggle-simple .toggle.active > .toggle-title,
.toggle.toggle-simple .toggle.active > label {
  background: 0 0;
  color: #212529;
}
.toggle.toggle-simple .toggle.active > .toggle-title:before,
.toggle.toggle-simple .toggle.active > label:before {
  content: "\f068";
}
blockquote {
  border-left: 5px solid #eee;
  margin: 0 0 16px 0;
  margin: 0 0 1rem 0;
  padding: 8px 16px;
  padding: 0.5rem 1rem;
  font-size: 1em;
}
blockquote.with-borders {
  border-radius: 6px;
  border-top: 1px solid #dfdfdf;
  border-bottom: 1px solid #dfdfdf;
  border-left: 1px solid #ececec;
  border-right: 1px solid #ececec;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.04);
  padding: 20.8px;
  padding: 1.3rem;
}
blockquote.blockquote-reverse {
  text-align: right;
  border-right: 5px solid #eee;
  border-left: 0 !important;
}
p {
  color: #777;
  line-height: 26px;
  margin: 0 0 20px;
}
p.lead {
  line-height: 28.8px;
  line-height: 1.8rem;
}
.lead {
  letter-spacing: -0.05em;
  font-size: 19.2px;
  font-size: 1.2rem;
}
.lead-2 {
  font-size: 17.92px;
  font-size: 1.12rem;
}
a,
a:focus,
a:hover {
  color: #ccc;
}
.default-font {
  font-family: Poppins, Arial, sans-serif !important;
}
.text-color-default,
.text-default {
  color: #777 !important;
}
@keyframes word-rotator-rotate-1-in {
  0% {
    transform: rotateX(180deg);
    opacity: 0;
  }
  35% {
    transform: rotateX(120deg);
    opacity: 0;
  }
  65% {
    opacity: 0;
  }
  100% {
    transform: rotateX(360deg);
    opacity: 1;
  }
}
@keyframes word-rotator-rotate-1-out {
  0% {
    transform: rotateX(0);
    opacity: 1;
  }
  35% {
    transform: rotateX(-40deg);
    opacity: 1;
  }
  65% {
    opacity: 0;
  }
  100% {
    transform: rotateX(180deg);
    opacity: 0;
  }
}
@keyframes word-rotator-pulse {
  from,
  to {
    background-color: transparent;
  }
  50% {
    background-color: #000;
  }
}
@keyframes word-rotator-pulse-light {
  from,
  to {
    background-color: transparent;
  }
  50% {
    background-color: #fff;
  }
}
@keyframes word-rotator-rotate-2-in {
  0% {
    opacity: 0;
    transform: translateZ(-20px) rotateX(90deg);
  }
  60% {
    opacity: 1;
    transform: translateZ(-20px) rotateX(-10deg);
  }
  100% {
    opacity: 1;
    transform: translateZ(-20px) rotateX(0);
  }
}
@keyframes word-rotator-rotate-2-out {
  0% {
    opacity: 1;
    transform: translateZ(-20px) rotateX(0);
  }
  60% {
    opacity: 0;
    transform: translateZ(-20px) rotateX(-100deg);
  }
  100% {
    opacity: 0;
    transform: translateZ(-20px) rotateX(-90deg);
  }
}
@keyframes slide-in {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  60% {
    opacity: 1;
    transform: translateY(20%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slide-out {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  60% {
    opacity: 0;
    transform: translateY(120%);
  }
  100% {
    opacity: 0;
    transform: translateY(100%);
  }
}
@keyframes zoom-in {
  0% {
    opacity: 0;
    transform: translateZ(100px);
  }
  100% {
    opacity: 1;
    transform: translateZ(0);
  }
}
@keyframes zoom-out {
  0% {
    opacity: 1;
    transform: translateZ(0);
  }
  100% {
    opacity: 0;
    transform: translateZ(-100px);
  }
}
@keyframes word-rotator-rotate-3-in {
  0% {
    transform: rotateY(180deg);
  }
  100% {
    transform: rotateY(0);
  }
}
@keyframes word-rotator-rotate-3-out {
  0% {
    transform: rotateY(0);
  }
  100% {
    transform: rotateY(-180deg);
  }
}
@keyframes scale-up {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  60% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes scale-down {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  60% {
    transform: scale(0);
    opacity: 0;
  }
}
@keyframes push-in {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  60% {
    opacity: 1;
    transform: translateX(10%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes push-out {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  60% {
    opacity: 0;
    transform: translateX(110%);
  }
  100% {
    opacity: 0;
    transform: translateX(100%);
  }
}
section.section-custom-map {
  background: transparent url(https://crystalcollections.in/img/map.png) center
    0 no-repeat;
  padding: 129px 0 0;
  margin: 20px 0 0;
  border: 0;
}
section.section-custom-map section.section {
  border-top: 0;
  background: rgba(247, 247, 247, 0.5);
}
@keyframes animatedLineBg {
  from {
    stroke-dasharray: 1000;
  }
  to {
    stroke-dasharray: 1360;
  }
}
@keyframes animatedLineSmallCircle {
  from {
    stroke-dasharray: 1000;
  }
  to {
    stroke-dasharray: 1120;
  }
}
@keyframes animatedLineBigCircle {
  from {
    stroke-dasharray: 1000;
  }
  to {
    stroke-dasharray: 1266;
  }
}
@keyframes animatedInitialPin {
  0% {
    transform: translate(2px, 69px) scale(0.23);
  }
  33% {
    transform: translate(2px, 79px) scale(0.23);
  }
  66% {
    transform: translate(2px, 74px) scale(0.23);
  }
  100% {
    transform: translate(2px, 79px) scale(0.23);
  }
}
@keyframes animatedFinalPin {
  0% {
    transform: translate(325px, -19px) scale(0.23) rotate(36deg);
  }
  33% {
    transform: translate(325px, -13px) scale(0.23) rotate(36deg);
  }
  66% {
    transform: translate(325px, -16px) scale(0.23) rotate(36deg);
  }
  100% {
    transform: translate(325px, -13px) scale(0.23) rotate(36deg);
  }
}
@keyframes animatedFinalPinFirefox {
  0% {
    transform: translate(193px, -16px) scale(0.23) rotate(36deg);
  }
  33% {
    transform: translate(193px, -10px) scale(0.23) rotate(36deg);
  }
  66% {
    transform: translate(193px, -13px) scale(0.23) rotate(36deg);
  }
  100% {
    transform: translate(193px, -10px) scale(0.23) rotate(36deg);
  }
}
.portfolio-title {
  margin-bottom: -10px;
}
.portfolio-title a {
  display: inline-block;
}
.portfolio-title .icons,
.portfolio-title [class*="fa-"] {
  font-size: 1.7em;
}
.portfolio-title .portfolio-nav {
  margin-top: 11px;
}
.portfolio-title .portfolio-nav-all {
  margin-top: 9px;
}
.portfolio-title .portfolio-nav {
  text-align: right;
}
.portfolio-title .portfolio-nav a {
  width: 40%;
}
.portfolio-title .portfolio-nav-all .fa,
.portfolio-title .portfolio-nav-all .icons {
  font-size: 2em;
}
.portfolio-info {
  margin: 2px 0 10px;
}
.portfolio-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.portfolio-info ul li {
  display: inline-block;
  border-right: 1px solid #e6e6e6;
  color: #b1b1b1;
  padding-right: 8px;
  margin-right: 8px;
  font-size: 0.9em;
}
.portfolio-info ul li:last-child {
  border-right: 0;
  padding-right: 0;
  margin-right: 0;
}
.portfolio-info ul li a {
  text-decoration: none;
  color: #b1b1b1;
}
.portfolio-info ul li .icons,
.portfolio-info ul li [class*="fa-"] {
  margin-right: 4px;
}
.portfolio-list {
  list-style: none;
  padding: 0;
  margin-top: 0;
  margin-bottom: 0;
}
.portfolio-list:not(.row) {
  margin: 0;
}
.portfolio-list .portfolio-item {
  position: relative;
  margin-bottom: 35px;
}
.portfolio-list .portfolio-item.portfolio-item-new:after {
  position: absolute;
  z-index: 1;
  top: 10px;
  right: 10px;
  background: #ccc;
  content: "NEW";
  display: block;
  padding: 0 8px;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  border-radius: 2px;
  line-height: 22px;
}
.portfolio-details {
  list-style: none;
  padding: 0;
  margin: 45px 0 0 5px;
  font-size: 0.9em;
}
.portfolio-details > li {
  padding: 0;
  margin: 0 0 20px;
}
.portfolio-details p {
  padding: 0;
  margin: 0;
}
.portfolio-details blockquote {
  padding: 0 0 0 10px;
  margin: 15px 0 0;
  color: #999;
}
.portfolio-details .list-icons {
  margin-left: 0;
}
.portfolio-details .list-icons > li {
  padding-left: 18px;
  margin-right: 10px;
}
.portfolio-details .list-icons > li .icons,
.portfolio-details .list-icons > li [class*="fa-"] {
  top: 7px;
}
.portfolio-load-more-loader {
  display: none;
  position: relative;
  height: 49px;
}
@media (max-width: 991px) {
  .portfolio-nav,
  .portfolio-nav-all {
    display: none;
  }
}
ul.team-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
ul.team-list .team-item {
  margin-bottom: 35px;
}
ul.team-list .team-item .thumb-info-social-icons {
  margin: 0 10px;
}
@media (max-width: 991px) {
  ul.team-list .team-item {
    margin: 0 auto 35px;
    max-width: 270px;
  }
}
.search-results {
  min-height: 300px;
}