/* -------------------------------------------

Name: 		Kaz
Version:    1.0
Developer:	Desenyo Design Firm and Studio

------------------------------------------- */
/*--------------------------------------------

1. index custom
2. owl carousel margin
3. under construction
4. marquee client logo
5. pricing section
6. linear gradient colors
7. revolution slider


// Put to Last Page
>>>  media queries

/* -------------------------------------------

index custom

------------------------------------------- */
.hidden {
    visibility: hidden;
    display: none;
}
/* -------------------------------------------

owl carousel margin

------------------------------------------- */
.owl-clients-auto.owl-carousel .owl-item {
    margin: auto 0.5rem;
}
/* -------------------------------------------

under construction

------------------------------------------- */
.coming-soon-main-text-container h1, .coming-soon-main-text-container h3 {
    color: #fff;
}
/* -------------------------------------------

marquee client logo

------------------------------------------- */
:root {
  --color-text: #f36f21;
  --color-bg: papayawhip;
  --color-bg-accent: #ecdcc0;
  /* --size: clamp(10rem, 1rem + 40vmin, 30rem); */
  --size: clamp(10rem, 1rem + 20vmin, 30rem);
  /* --size: 10rem; */
  --gap: calc(var(--size) / 14);
  --duration: 60s;
  --scroll-start: 0;
  --scroll-end: calc(-100% - var(--gap));
}

@media (prefers-color-scheme: dark) {
  :root {
    --color-text: papayawhip;
    --color-bg: #f36f21;
    --color-bg-accent: #eeeeee;
  }
}

.marquee-wrapper {
  display: grid;
  align-content: center;
  overflow: hidden;
  gap: var(--gap);
  font-size: 1rem;
  line-height: 1.5;
}

.marquee {
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: var(--gap);
  mask-image: linear-gradient(
    var(--mask-direction, to right),
    hsl(0 0% 0% / 0),
    hsl(0 0% 0% / 1) 20%,
    hsl(0 0% 0% / 1) 80%,
    hsl(0 0% 0% / 0)
  );
}

.marquee__group {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: var(--gap);
  min-width: 100%;
  animation: scroll-x var(--duration) linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  .marquee__group {
    animation-play-state: paused;
  }
}

.marquee--vertical {
  --mask-direction: to bottom;
}

.marquee--vertical,
.marquee--vertical .marquee__group {
  flex-direction: column;
}

.marquee--vertical .marquee__group {
  animation-name: scroll-y;
}

.marquee--reverse .marquee__group {
  animation-direction: reverse;
  animation-delay: -3s;
}

@keyframes scroll-x {
  from {
    transform: translateX(var(--scroll-start));
  }
  to {
    transform: translateX(var(--scroll-end));
  }
}

@keyframes scroll-y {
  from {
    transform: translateY(var(--scroll-start));
  }
  to {
    transform: translateY(var(--scroll-end));
  }
}

/* Element styles */
.marquee img {
  display: grid;
  place-items: center;
  width: var(--size);
  fill: var(--color-text);
  background: var(--color-bg-accent);
  aspect-ratio: 16/9;
  padding: calc(var(--size) / 10);
  border-radius: 0.5rem;
}

.marquee--vertical img {
  aspect-ratio: 1;
  width: calc(var(--size) / 1.5);
  padding: calc(var(--size) / 6);
}

/* Parent wrapper */
.wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
  margin: auto;
  max-width: 100vw;
}

.wrapper--vertical {
  flex-direction: row;
  height: 100vh;
}

/* Toggle direction button */
.toggle {
  --size: 3rem;
  position: relative;
  position: fixed;
  top: 1rem;
  left: 1rem;
  width: var(--size);
  height: var(--size);
  font: inherit;
  text-align: center;
  cursor: pointer;
  outline: none;
  border: none;
  border-radius: 50%;
  color: inherit;
  background-color: var(--color-bg-accent);
  z-index: 1;
}

.toggle:focus-visible {
  box-shadow: 0 0 0 2px var(--color-text);
}

.toggle span {
  position: absolute;
  display: inline-block;
  top: 50%;
  left: calc(100% + 0.4em);
  width: fit-content;
  white-space: nowrap;
  transform: translateY(-50%);
  animation: fade 400ms 4s ease-out forwards;
  user-select: none;
}

.toggle img {
  --size: 1.5rem;
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--size);
  height: var(--size);
  fill: currentcolor;
  transform: translate(-50%, -50%);
  transition: transform 300ms cubic-bezier(0.25, 1, 0.5, 1);
}

.toggle--vertical img {
  transform: translate(-50%, -50%) rotate(-90deg);
}

@keyframes fade {
  to {
    opacity: 0;
    visibility: hidden;
  }
}
/* -------------------------------------------

pricing section

------------------------------------------- */

/** tooltips */

.has-tooltip:not(.tooltip-disabled) {
  cursor: help;
  position: relative;
}

.has-tooltip:not(.tooltip-disabled):hover .tooltip-container {
  display: block;
}

.has-tooltip .tooltip-container {
  display: none;
  position: absolute;
  background-color: #F16022;
  color: #fff;
  z-index: 20;
  bottom: calc(100% + 13px);
  left: -10px;
  right: -10px;
  padding: 16px 20px;
  border-radius: 8px;
}

.has-tooltip .tooltip-container:after {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #F16022;
  font-size: 0;
  line-height: 0;
  content: "";
  position: absolute;
  bottom: -10px;
}

.has-tooltip .tooltip-container h6 {
  font-weight: 600;
  font-size: 16px;
  margin: 0px;
}

.has-tooltip .tooltip-container {
  color: #555;
  margin-top: 4px;
}

/** pricing containers **/

#pricing-container * {
  box-sizing: border-box;
}

#pricing-container {
  font-family: var(--font-primary);
  -webkit-font-smoothing: antialiased;
  max-width: 1080px;
  margin: 0 auto 50px;
  justify-content: center;
  line-height: 1;
  color: #000;
}

/** cards */

#pricing-cards {
  display: flex;
  flex-wrap: wrap; 
  gap: 1rem; 
  justify-content: space-between;
  font-size: 14px;
}

#pricing-container .price-card {
  /* background-color: #33333a; */
  background-color: #444545;
  color: #fff;
  font-family: var(--font-primary);
  display: block;
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
  transition: all 0.25s;
  position: relative;
  margin: 0 6px;
  flex-grow: 1;
  flex-shrink: 1;
}

#pricing-container .price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.14),
    0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}

/** header section */

#pricing-container .price-card--header {

  margin: 0;
  padding: 20px 0;
  text-align: center;
}

#pricing-container .price-card--header h4 {
  margin: 0;
  padding: 0;
  font-size: 28px;
  color: #fff;
  font-family: var(--font-primary);
  font-weight: 700;
}

/** price section */

#pricing-container .price-card--price {
  text-align: center;
  padding: 28px 0 6px 0;
}

#pricing-container .price-card--price-text {
  font-size: 48px;
}

#pricing-container .price-card--price-number {
  font-weight: 500;
  opacity: 0.89;
}

.odometer div {
  display: inline-block;
}

#pricing-container .price-card--price-number:before {
  content: "$";
  font-size: 24px;
  top: -16px;
  display: inline-block;
  position: relative;
}

#pricing-container .price-card--price-number:after {
  content: "/month";
  font-size: 12px;
  display: inline-block;
  color: grey;
}

#pricing-container .price-card--price-conditions {
  padding: 14px 0;
  color: #888;
  line-height: 1.5;
}


/** cta button action */

#pricing-container .price-card--cta {
  padding: 0 20px 24px;
  text-align: center;
}

#pricing-container .price-card--cta--button.btn {
  min-width: 20px;
  display: block;
  max-width: 183px;
  margin: 0 auto;
}


/** features section */

#pricing-container .price-card--features {

  padding: 16px 0 20px;
}

#pricing-container ul.price-card--features--list {
  padding: 0 32px;
  list-style: none;
  margin: 0;
}

#pricing-container li.price-card--features--item {
  margin: 8px 0;
  padding-left: 8px;
  line-height: 1.5;
  position: relative;
}

#pricing-container li.price-card--features--item:not(.features-disabled):before {
  content: "✓";
  color: #F16022;
  display: block;
  position: absolute;
  left: -8px;
}

#pricing-container li.price-card--features--item.features-highlight {
  /* 	font-weight: 600; */
}

#pricing-container li.price-card--features--item.features-disabled {
  opacity: 0.1;
  /* 	text-decoration: line-through; */
}


/** mobile features toggle */

#pricing-container .price-card--mobile-features-toggle {
  text-align: center;
  margin: 24px 0 0;
  padding: 16px 0;
  cursor: pointer;
  display: none;
  color: green;
}

#pricing-container .price-card--mobile-features-toggle:after {
  content: "Show All Features ▾";
}

#pricing-container .price-card--mobile-features-toggle.hideall:after {
  content: "Hide Features ▴";
}

/** hero card styles */

#pricing-container .price-card--hero {
  margin: -38px 6px 0;
  /* 	width:31%; */
  z-index: 10;
}

#pricing-container .price-card--hero-text {
  background: rgb(234,29,37);
  background: linear-gradient(60deg, rgba(234,29,37,1) 0%, rgba(241,96,34,1) 50%, rgba(246,158,30,1) 100%);  height: 38px;
  color: white;
  line-height: 38px;
  text-align: center;
  font-weight: 600;
}

/** only year basic styles */

#pricing-container .only-yearly {
  position: relative;
}

#pricing-container .only-yearly .price-card--price-number {
  transition: opacity 0.2s;
}

#pricing-container .only-yearly .only-yearly--text {
  position: absolute;
  top: -0.2em;
  left: 0;
  right: 0;
  display: none;
}

#pricing-container .only-yearly .only-yearly--text span {
  font-size: 14px;
}

#pricing-container .only-yearly.if-monthly .price-card--price-number {
  opacity: 0;
}

#pricing-container .only-yearly.if-monthly .only-yearly--text {
  display: block;
}

/** switch section */

#pricing-switch {
  margin: 80px auto 100px;
  text-align: center;
  line-height: 1.4;
  position: relative;
  max-width: 1080px;
}

#pricing-switch .switch-label {
  display: inline-block;
  width: 200px;
  text-align: center;
  opacity: 0.4;
  font-size: 16px;
  cursor: pointer;
  padding: 0 20px;
}

#pricing-switch .switch-label .save-money {
  color: #4caf50;
  font-style: italic;
  padding-left: 8px;
}

#pricing-switch .save-money--mobile {
  color: #4caf50;
  font-style: italic;
  padding-top: 22px;
  display: none;
}

#pricing-switch .switch-label.active {
  font-size: 18px;
  opacity: 1;
}

#pricing-switch .switch-label-monthly {
  text-align: right;
}

#pricing-switch .switch-label-yearly {
  text-align: left;
}

#pricing-switch .switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
  vertical-align: -50%;
  margin: 0;
}

#pricing-switch .switch input {
  display: none;
}

#pricing-switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #F16022;
  border-radius: 34px;
  -webkit-transition: 0.1s;
  transition: 0.1s;
}

#pricing-switch .slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  border-radius: 50%;
  -webkit-transition: 0.1s;
  transition: 0.1s;
}
/** pricing other styles */

.price-card--features .btn {
  width: 200px;
  height: 45px;
  background: transparent;
  border: 1px solid #F16022;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  margin: 2em 5em;
}

.price-card--features .btn-pro {
  width: 200px;
  height: 45px;
  background: rgba(241,96,34,1);
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  margin: 2em 5em;
}

#pricing-switch .switch-label {
  color: #fff;
}

#pricing-switch .active {
  color: #F16022;
}

.price-card--features strong {
  color: #fff;
}
/* -------------------------------------------

linear gradient

------------------------------------------- */  
.button.thin, .button.small.thin, .button.medium.thin, .button.large.thin {
  background: rgba(241,96,34,1);
  color: #fff;
  border: 2px solid #444545;
}
.line-3-100 {
  background: rgb(234,29,37);
  background: linear-gradient(60deg, rgba(234,29,37,1) 0%, rgba(241,96,34,1) 50%, rgba(246,158,30,1) 100%);
}
.fes1-box-icon, .fes4-box-icon {
  color: #F16022;
}
.section-title {
  border-left: #F16022 2px solid;
}
.cis-icon {
  color: #F16022;
}
.header-1 #main-menu .navbar .nav > li.current > a {
  border-bottom: 2px solid #F16022;
}
/* -------------------------------------------

revolution slider

------------------------------------------- */  
.tp-button {
  font-family: var(--font-primary);
}
/* -------------------------------------------

media queries

------------------------------------------- */  
.tp-large-button {
  height: 45px;
  line-height: 25px !important;
}

/* -------------------------------------------

media queries

------------------------------------------- */  
@media only screen and (max-width: 1920px)  {
  .marquee img {
      /* aspect-ratio: 16/5; */
  }
}
@media only screen and (max-width: 1000px) {
#pricing-cards {
  flex-direction: column;
  align-items: center;
}
#pricing-container .price-card--hero {
  margin: 0 0 0;
}
#pricing-container .price-card--features {
  text-align: center;
}
#pricing-container li.price-card--features--item:not(.features-disabled):before {
  display: inline-block;
  position: relative;
}
.tp-large-button{
  height: 100%;
}
}
@media only screen and (max-width: 500px) {
  .marquee img {
      /* aspect-ratio: 16/7; */
  }
  .owl-clients-auto.owl-carousel .owl-item {
      margin: 0;
  }
}