/* ==============================================================================================================================
														[ * Button Element ]
===============================================================================================================================*/
/*-------------------------------------  Button Style  -----------------------------------------*/
.nucaz-button {
  position: relative;
  display: inline-block;
  padding: 12px 30px;
  background-color: #212529;
  color: #fff;
  overflow: hidden;
}
.nucaz-button.after-animation:after {
  z-index: -1;
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  width: 0;
  height: 100%;
  border-radius: 50px;
  opacity: 0;
  transition: all 0.3s ease;
}
.nucaz-button.after-animation:hover:after {
  width: 100%;
  opacity: 1;
}
.nucaz-button.animated-gradient-bg::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 150%;
  height: 100%;
  z-index: 1;
  background: -webkit-gradient(linear, left top, right top, color-stop(10%, #0c3df4), color-stop(45%, #02b5ff), color-stop(#02b5ff), to(#0c3df4));
  background: -webkit-linear-gradient(left, #0c3df4 10%, #02b5ff 45%, #02b5ff, #0c3df4);
  background: -o-linear-gradient(left, #0c3df4 10%, #02b5ff 45%, #02b5ff, #0c3df4);
  background: linear-gradient(to right, #0c3df4 10%, #02b5ff 45%, #02b5ff, #0c3df4);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.nucaz-button.animated-gradient-bg:hover::before {
  left: -50%;
}
.nucaz-button .nucaz-button-text {
  position: relative;
  z-index: 2;
}
.nucaz-button .nucaz-button-icon {
  display: inline-block;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.nucaz-button:hover .hover-animation-right-to-left {
  animation: RL_smooth 1s ease-in-out infinite alternate both;
}
.nucaz-button.animated-icon .nucaz-button-content-wrapper .nucaz-button-icon {
  position: relative;
  transition: all 0.3s ease;
}
.nucaz-button.animated-icon .nucaz-button-content-wrapper .nucaz-button-icon:first-of-type {
  opacity: 0;
  transform: translateX(-10px);
}
.nucaz-button.animated-icon .nucaz-button-content-wrapper .nucaz-button-icon:last-of-type {
  opacity: 1;
  transform: translateX(0);
}
.nucaz-button.animated-icon:hover .nucaz-button-content-wrapper {
  padding-left: 10px;
}
.nucaz-button.animated-icon:hover .nucaz-button-content-wrapper .nucaz-button-icon:first-of-type {
  opacity: 1;
  transform: translateX(0);
}
.nucaz-button.animated-icon:hover .nucaz-button-content-wrapper .nucaz-button-icon:last-of-type {
  opacity: 0;
  transform: translateX(10px);
}

/* ==============================================================================================================================
														[ * Heading Element ]
===============================================================================================================================*/
.nucaz-heading-text a {
  transition: all 0.3s ease;
}
.nucaz-heading-text > a, .nucaz-heading-text a:hover {
  color: inherit;
}
.nucaz-heading-text .nucaz-heading {
  margin: 0;
  position: relative;
  transition: all 0.3s ease;
}
.nucaz-heading-text .nucaz-heading.nucaz-line-before::before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  width: 60px;
  height: 1px;
}
.nucaz-heading-text .nucaz-heading.nucaz-line-after::after {
  position: absolute;
  content: "";
  right: 0;
  top: 50%;
  width: 60px;
  height: 1px;
}
.nucaz-heading-text .nucaz-heading.nucaz-line-both::after {
  position: absolute;
  content: "";
  right: 0;
  top: 50%;
  width: 60px;
  height: 1px;
}
.nucaz-heading-text .nucaz-heading.nucaz-line-both::before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  width: 60px;
  height: 1px;
}
.nucaz-heading-text .nucaz-heading.background-after::after {
  position: absolute;
  content: "";
  right: 0;
  width: 50%;
  height: 100%;
  background-image: linear-gradient(to left, #101828, rgba(16, 24, 40, 0.1333333333));
  z-index: 10;
  pointer-events: none;
}
.nucaz-heading-text .nucaz-heading .styled {
  display: inline-block;
}
.nucaz-heading-text .nucaz-heading.inline-block {
  display: inline-block;
}
.nucaz-heading-text.clip-background .nucaz-heading span {
  -webkit-background-clip: text;
}
.nucaz-heading-text.heading-clip-background .nucaz-heading {
  -webkit-background-clip: text;
}

.nucaz-heading-text span {
  display: inline-block;
}

@media screen and (max-width: 991px) {
  .nucaz-heading-text .nucaz-heading.nucaz-text-breakline br {
    display: none;
  }
  .nucaz-heading-text.block-icon a {
    display: block !important;
  }
}
/* ==============================================================================================================================
														[ * Text Editor Element ]
===============================================================================================================================*/
.nucaz-text-editor p {
  margin: 0;
}

/* ==============================================================================================================================
														[ * Image Element ]
===============================================================================================================================*/
.nucaz-image.rotate-center {
  animation: rotate-center 100s linear infinite both;
}
.nucaz-image.rotate-center.reverse {
  animation: rotate-center 100s linear infinite both reverse;
}
.nucaz-image.line {
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  transition: all 3s ease-in-out;
}
.nucaz-image.line.animated {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
@keyframes rotate-center {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes slide_up_down {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

/* ==============================================================================================================================
														[ * Helpers Element ]
===============================================================================================================================*/
.nucaz-max-content {
  width: max-content;
}

.nucaz-responsive-max-content {
  width: max-content;
}

.nucaz-max-width-none {
  max-width: none !important;
}

.nucaz-multi-color-bottom-background {
  background-image: linear-gradient(to bottom, #F8FCFE, rgba(248, 252, 254, 0.7176470588), transparent);
}

.nucaz-multi-color-top-background {
  background-image: linear-gradient(to top, #F8FCFE, rgba(248, 252, 254, 0.7176470588), transparent);
}

.nucaz-color-invert {
  filter: invert(90%);
}

.nucaz-after-background::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom, #fff, rgba(255, 255, 255, 0.7098039216), transparent);
  z-index: 0;
}

@media screen and (max-width: 991px) {
  .nucaz-responsive-max-content {
    width: 100%;
  }
  .nucaz-video-responsive-background {
    background-image: linear-gradient(126deg, rgba(255, 95, 109, 0.0666666667) 22.58%, rgba(255, 195, 113, 0.0666666667) 73.54%);
  }
  .nucaz-responsive-position-relative {
    position: relative;
  }
  .nucaz-responsive-background {
    background: var(--color-ternary);
  }
  .nucaz-responsive-overflow-hidden {
    overflow: hidden;
  }
  .nucaz-responsive-right-background {
    background-image: linear-gradient(to right, var(--color-secondary), var(--color-ternary));
  }
  .nucaz-responsive-top-background {
    background-image: linear-gradient(to top, var(--color-secondary), var(--color-ternary));
  }
}
/* ==============================================================================================================================
														[ * Social Links Element ]
===============================================================================================================================*/
.nucaz-social-links {
  position: relative;
}
.nucaz-social-links.rotate-animation {
  transform: translateY(-50%);
}
.nucaz-social-links.rotate-animation a {
  color: #5B5B5B;
  display: block;
  width: max-content;
  margin: 10px 0;
  font-weight: bold;
  transform: rotate(-90deg);
}
.nucaz-social-links.rotate-animation a:hover {
  color: #FF5F6D;
}
.nucaz-social-links.rotate-animation .line {
  display: inline-block;
  height: 90px;
  width: 1px;
  background-color: #000;
  margin: 10px 10px 0;
}
.nucaz-social-links.clip-background {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ==============================================================================================================================
														[ * Marquee Element ]
===============================================================================================================================*/
.nucaz-marquee {
  position: relative;
  overflow: hidden;
}
.nucaz-marquee h2 {
  margin: 0;
}
.nucaz-marquee.overflow-visible {
  overflow: visible;
}
.nucaz-marquee .swiper-wrapper {
  transition-timing-function: linear;
  position: relative;
}
.nucaz-marquee .swiper-slide {
  width: max-content !important;
}
.nucaz-marquee .item {
  font-size: 120px;
  -webkit-text-stroke: 1px #191919;
  color: transparent;
  white-space: nowrap;
}
.nucaz-marquee .item.separator::after {
  position: absolute;
  content: "";
  right: -5px;
  top: 50%;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 2px solid #FFFFFF;
}
.nucaz-marquee .item.width-max-content {
  width: max-content;
}

/* ==============================================================================================================================
														[ * Choose Card Element ]
===============================================================================================================================*/
.nucaz-choose-card {
  display: block;
  position: relative;
}
.nucaz-choose-card:hover .arrow {
  color: #FF5F6D;
}
.nucaz-choose-card:hover .arrow svg {
  fill: #FF5F6D;
}
.nucaz-choose-card:hover .arrow::before {
  background-color: #FF5F6D;
}
.nucaz-choose-card .image {
  height: 90px;
  margin-bottom: 30px;
}
.nucaz-choose-card .info .title {
  margin: 0;
  margin-bottom: 15px;
}
.nucaz-choose-card .info .description {
  margin: 0;
}
.nucaz-choose-card .arrow {
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  margin-top: 40px;
  font-size: 15px;
  padding-inline-start: 32px;
  color: #ccc;
}
.nucaz-choose-card .arrow svg {
  width: 15px;
  height: 15px;
  fill: #ccc;
}
.nucaz-choose-card .arrow::before {
  position: absolute;
  content: "";
  left: 1px;
  top: 50%;
  width: 40px;
  height: 2px;
  background-color: #ccc;
}

/* ==============================================================================================================================
														[ * Case Slider Element ]
===============================================================================================================================*/
.nucaz-case-slider {
  padding-bottom: 80px;
}
.nucaz-case-slider a, .nucaz-case-slider span {
  display: inline-block;
}
.nucaz-case-slider.different-image-size .swiper-wrapper {
  align-items: end;
}
.nucaz-case-slider.different-image-size .swiper-wrapper .swiper-slide:nth-of-type(even) .case-card .img {
  height: 520px;
}
.nucaz-case-slider .case-card {
  position: relative;
  background-color: #fff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 94px 94px 0 rgba(0, 0, 0, 0.03);
}
.nucaz-case-slider .case-card:hover .img .float-arrow {
  opacity: 1;
  transform: scale(1);
}
.nucaz-case-slider .case-card .img {
  display: block;
  position: relative;
  height: 370px;
  border-radius: 30px;
  overflow: hidden;
}
.nucaz-case-slider .case-card .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nucaz-case-slider .case-card .img .float-arrow {
  position: absolute;
  left: calc(50% - 50px);
  top: calc(50% - 50px);
  transform: scale(0.7);
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-image: linear-gradient(126deg, #FF5F6D 22.58%, #FFC371 73.54%);
  color: #fff;
  font-size: 30px;
  opacity: 0;
  transition: all 0.3s ease;
}
.nucaz-case-slider .case-card .img .float-arrow svg {
  fill: #fff;
  width: 30px;
  height: 30px;
}
.nucaz-case-slider .case-card .info {
  padding: 30px;
}
.nucaz-case-slider .swiper-pagination {
  bottom: 10px;
  left: 0;
  width: 100%;
}
.nucaz-case-slider .swiper-pagination .swiper-pagination-bullet {
  width: 5px;
  height: 5px;
  background-color: #000;
  margin: 10px;
  opacity: 1;
}
.nucaz-case-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  outline: 1px solid #FF5F6D;
  background-color: #FF5F6D;
  outline-offset: 8px;
}
.nucaz-case-slider .swiper-notification {
  display: none;
}

/* ==============================================================================================================================
														[ * Accordion Element ]
===============================================================================================================================*/
.nucaz-accordion .accordion-item {
  margin-bottom: 20px;
  background-color: transparent;
  border: 1px solid rgba(153, 153, 153, 0.2666666667);
  border-radius: 0;
}
.nucaz-accordion .accordion-item .accordion-button {
  font-size: 24px;
  padding: 20px 30px;
  color: #191919;
  flex-direction: row-reverse;
  justify-content: flex-end;
  background-color: transparent;
}
.nucaz-accordion .accordion-item .accordion-button::after {
  background-size: 15px;
  margin-left: 0;
  margin-right: 10px;
}
.nucaz-accordion .accordion-item .accordion-button:not(.collapsed) {
  box-shadow: none;
  background-color: transparent;
}
.nucaz-accordion .accordion-item .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23052c65'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.nucaz-accordion .accordion-item .accordion-body {
  padding: 0 30px 30px;
}

/* ==============================================================================================================================
														[ * Testimonials Element ]
===============================================================================================================================*/
.nucaz-testimonials {
  position: relative;
}
.nucaz-testimonials .swiper-slide {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
}
.nucaz-testimonials .swiper-slide.swiper-slide-active {
  opacity: 1;
  transform: scale(1);
}
.nucaz-testimonials.before-effect-slider::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 10px;
  height: 100%;
  border-radius: 10px;
  background-image: linear-gradient(124deg, #FF5F6D 22.75%, #FFC371 72.61%);
  box-shadow: 0px 94px 94px 0px rgba(0, 0, 0, 0.03);
  z-index: 30;
}
.nucaz-testimonials .swiper-prev.absolute {
  position: absolute;
  right: 100px;
  bottom: 0;
  font-size: 20px;
  z-index: 30;
  transition: all 0.3s ease;
}
.nucaz-testimonials .swiper-prev.absolute svg {
  width: 20px;
  height: 20px;
  fill: #191919;
}
.nucaz-testimonials .swiper-prev.absolute:hover {
  color: #FF5F6D;
}
.nucaz-testimonials .swiper-prev.absolute:hover svg {
  fill: #FF5F6D;
}
.nucaz-testimonials .swiper-next.absolute {
  position: absolute;
  right: 140px;
  bottom: 0;
  font-size: 20px;
  z-index: 30;
  transition: all 0.3s ease;
  color: #191919;
}
.nucaz-testimonials .swiper-next.absolute svg {
  width: 20px;
  height: 20px;
  fill: #191919;
}
.nucaz-testimonials .swiper-next.absolute:hover {
  color: #FF5F6D;
}
.nucaz-testimonials .swiper-next.absolute:hover svg {
  fill: #FF5F6D;
}
.nucaz-testimonials .arrows {
  position: relative;
  display: flex;
  justify-content: end;
  margin-top: -50px;
  z-index: 50;
}
.nucaz-testimonials .arrows .swiper-next,
.nucaz-testimonials .arrows .swiper-prev {
  font-size: 18px;
  margin: 10px;
}
.nucaz-testimonials .arrows .swiper-next:hover,
.nucaz-testimonials .arrows .swiper-prev:hover {
  color: #FF5F6D;
}
.nucaz-testimonials .arrows .swiper-next:hover svg,
.nucaz-testimonials .arrows .swiper-prev:hover svg {
  fill: #FF5F6D;
}
.nucaz-testimonials .arrows .swiper-next svg,
.nucaz-testimonials .arrows .swiper-prev svg {
  width: 18px;
  height: 18px;
  fill: #5b5b5b;
}
.nucaz-testimonials .testi-card .rate {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.nucaz-testimonials .testi-card .rate .icon {
  height: 30px;
  margin-inline-end: 20px;
  flex-shrink: 0;
}
.nucaz-testimonials .testi-card .rate .stars i {
  font-size: 18px;
}
.nucaz-testimonials .testi-card .text {
  position: relative;
  padding: 30px 30px 30px 0;
  font-size: 32px;
  color: #191919;
  line-height: 1.3;
  margin-bottom: 30px;
  z-index: 30;
}
.nucaz-testimonials .testi-card .text.before-effect-quote::before {
  position: absolute;
  content: "";
  left: -150px;
  top: 0;
  height: 100%;
  width: calc(100% + 150px);
  border-radius: 30px;
  background: #FFF;
  box-shadow: 0px 94px 94px 0px rgba(0, 0, 0, 0.03);
  z-index: -1;
}
.nucaz-testimonials .testi-card .name {
  margin: 0;
}
.nucaz-testimonials .testi-card .position {
  margin: 0;
}

/* ==============================================================================================================================
														[ * Blog Element ]
===============================================================================================================================*/
.nucaz-blog .post-card {
  position: relative;
  background-color: #fff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 94px 94px 0 rgba(0, 0, 0, 0.03);
}
.nucaz-blog .post-card .tags {
  margin-bottom: 15px;
  z-index: 10;
}
.nucaz-blog .post-card .tags .author {
  margin-right: 1.5rem;
  display: inline-block;
  font-size: 16px;
  color: #5B5B5B;
}
.nucaz-blog .post-card .tags .author svg {
  margin-right: 0.25rem;
  width: 16px;
  height: 16px;
  fill: #5B5B5B;
}
.nucaz-blog .post-card .tags .comment {
  display: inline-block;
  font-size: 16px;
  color: #5B5B5B;
}
.nucaz-blog .post-card .tags .comment svg {
  margin-right: 0.25rem;
  width: 16px;
  height: 16px;
  fill: #5B5B5B;
}
.nucaz-blog .post-card.after-background::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFF 100%);
  z-index: 0;
}
.nucaz-blog .post-card.before-background::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  background-image: linear-gradient(126deg, #FF5F6D 22.58%, #FFC371 73.54%);
  opacity: 0.1;
  z-index: 0;
}
.nucaz-blog .post-card.orange-background::before {
  background-image: linear-gradient(126deg, #FF5F6D 22.58%, #FFC371 73.54%);
}
.nucaz-blog .post-card.green-background::before {
  background-image: linear-gradient(126deg, #08B259 22.58%, #F3E51A 73.54%);
}
.nucaz-blog .post-card.blue-background::before {
  background-image: linear-gradient(125deg, #7E8FFF 22.32%, #92EFFD 72.69%);
}
.nucaz-blog .post-card:hover .img .float-arrow {
  opacity: 1;
  transform: scale(1);
}
.nucaz-blog .post-card .img {
  z-index: 10;
  display: block;
  position: relative;
  height: 300px;
  border-radius: 30px;
  overflow: hidden;
}
.nucaz-blog .post-card .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nucaz-blog .post-card .img .float-arrow {
  position: absolute;
  left: calc(50% - 50px);
  top: calc(50% - 50px);
  transform: scale(0.7);
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-image: linear-gradient(126deg, #FF5F6D 22.58%, #FFC371 73.54%);
  color: #fff;
  font-size: 30px;
  opacity: 0;
  transition: all 0.3s ease;
}
.nucaz-blog .post-card .img .float-arrow svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}
.nucaz-blog .post-card .info {
  z-index: 10;
  padding: 30px;
  position: relative;
}
.nucaz-blog .post-card .info .title {
  z-index: 10;
  margin: 0;
  font-weight: 600;
}
.nucaz-blog .post-card .info .title a {
  z-index: 10;
  color: #191919;
  font-size: 24px;
}
.nucaz-blog .post-card .info .title a:hover {
  color: #FF5F6D;
}
.nucaz-blog .post-card .info .excerpt {
  margin: 0;
  margin-top: 15px;
}
.nucaz-blog .post-card .info .butn {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  z-index: 10;
  display: inline-block;
  color: #FFFFFF;
  margin-top: 20px;
  padding: 15px 35px;
  transition: all 0.2s ease;
  position: relative;
  text-align: center;
  background-image: linear-gradient(126deg, #FF5F6D 22.58%, #FFC371 73.54%);
}
.nucaz-blog .post-card .info .butn.orange-butn {
  background-image: linear-gradient(126deg, #FF5F6D 22.58%, #FFC371 73.54%);
}
.nucaz-blog .post-card .info .butn.green-butn {
  background-image: linear-gradient(126deg, #08B259 22.58%, #F3E51A 73.54%);
}
.nucaz-blog .post-card .info .butn.blue-butn {
  background-image: linear-gradient(125deg, #7E8FFF 22.32%, #92EFFD 72.69%);
}
.nucaz-blog .post-card .info .butn:hover {
  box-shadow: 7px 10px 15px rgba(0, 0, 0, 0.2666666667);
  transform: translateY(-2px);
}
@keyframes fadeInUpAnimation {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 80px, 0);
    transform: translate3d(0, 80px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.nucaz-blog .fadeInUpAnimation {
  -webkit-animation-name: fadeInUpAnimation;
  animation-name: fadeInUpAnimation;
}

@media screen and (max-width: 991px) {
  .nucaz-blog .post-card .info .butn {
    padding: 10px 20px;
  }
  .nucaz-blog .post-card .info .butn > * {
    font-size: 13px;
  }
}
/* ==============================================================================================================================
														[ * Mailchimp Element ]
===============================================================================================================================*/
.nucaz-mailchimp .form-group {
  display: flex;
}
.nucaz-mailchimp input {
  min-height: 60px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  width: 100%;
  border: 0;
  color: #fff;
  padding: 15px 30px;
}
.nucaz-mailchimp input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.nucaz-mailchimp .arrow {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-image: linear-gradient(126deg, #FF5F6D 22.58%, #FFC371 73.54%);
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ==============================================================================================================================
														[ * Menu Element ]
===============================================================================================================================*/
.nucaz-menu .default .navbar-nav {
  position: relative;
}
.nucaz-menu .default .navbar-nav a {
  display: inline-block;
}
.nucaz-menu .default .navbar-nav li {
  list-style-type: none;
}
.nucaz-menu .default .navbar-nav .dropdown-toggle:after {
  margin-left: 5px;
  vertical-align: 12px;
}
.nucaz-menu .default .navbar-nav .icon-bar {
  color: #fff;
}
.nucaz-menu .default .navbar-nav .dropdown-menu {
  padding: 20px 10px;
  background: #fff;
  border: 1px solid #ddd;
  transition: all 0.4s;
  border-radius: 5px;
  min-width: 255px;
}
.nucaz-menu .default .navbar-nav .dropdown-menu .dropdown-item {
  font-size: 14px;
  color: #1a1a1a;
  transition: all 0.4s;
  padding: 10px 25px;
  position: relative;
}
.nucaz-menu .default .navbar-nav .dropdown-menu .dropdown-item a {
  color: #1a1a1a;
}
.nucaz-menu .default .navbar-nav .dropdown-menu .dropdown-item:after {
  content: "";
  width: 0px;
  height: 1px;
  background: #1a1a1a;
  position: absolute;
  left: 10px;
  top: 20px;
  transition: all 0.4s;
}
.nucaz-menu .default .navbar-nav .dropdown-menu .dropdown-item:hover {
  padding-left: 30px;
  background: transparent;
}
.nucaz-menu .default .navbar-nav .dropdown-menu .dropdown-item:hover:after {
  width: 10px;
}
.nucaz-menu .default .navbar-nav .dropdown-menu .dropdown-item .icon-arrow {
  position: absolute;
  right: 15px;
  color: #1a1a1a;
  fill: #1a1a1a;
}
.nucaz-menu .default .navbar-nav .dropdown-menu .dropdown-item .dropdown-side {
  position: absolute;
  left: 248px;
  top: -15px;
  display: block;
  opacity: 0;
  visibility: hidden;
  border: 1px solid #ddd;
  border-radius: 5px;
  background: #fff;
  width: 240px;
  padding: 20px 0;
  transform: translateY(20px);
  transition: all 0.4s;
}
.nucaz-menu .default .navbar-nav .dropdown-menu .dropdown-item .dropdown-side.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nucaz-menu .default .navbar-nav li {
  list-style-type: none;
}
.nucaz-menu .default .navbar-nav .nav-link {
  color: #1a1a1a;
}
.nucaz-menu .default .navbar-nav .nav-link a,
.nucaz-menu .default .navbar-nav .nav-link a:hover {
  color: inherit;
}
.nucaz-menu .default .navbar-nav .nav-link .rolling-text {
  height: 30px;
  line-height: 30px;
  display: inline-block;
  overflow: hidden;
}
.nucaz-menu .default .navbar-nav .nav-link .rolling-text .block {
  display: block;
}
.nucaz-menu .default .navbar-nav .nav-link .rolling-text .letter {
  display: inline-block;
  transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}
.nucaz-menu .default .navbar-nav .nav-link .rolling-text .letter:nth-child(1) {
  transition-delay: 0s;
}
.nucaz-menu .default .navbar-nav .nav-link .rolling-text .letter:nth-child(2) {
  transition-delay: 0.015s;
}
.nucaz-menu .default .navbar-nav .nav-link .rolling-text .letter:nth-child(3) {
  transition-delay: 0.03s;
}
.nucaz-menu .default .navbar-nav .nav-link .rolling-text .letter:nth-child(4) {
  transition-delay: 0.045s;
}
.nucaz-menu .default .navbar-nav .nav-link .rolling-text .letter:nth-child(5) {
  transition-delay: 0.06s;
}
.nucaz-menu .default .navbar-nav .nav-link .rolling-text .letter:nth-child(6) {
  transition-delay: 0.075s;
}
.nucaz-menu .default .navbar-nav .nav-link .rolling-text .letter:nth-child(7) {
  transition-delay: 0.09s;
}
.nucaz-menu .default .navbar-nav .nav-link .rolling-text .letter:nth-child(8) {
  transition-delay: 0.105s;
}
.nucaz-menu .default .navbar-nav .nav-link .rolling-text .letter:nth-child(9) {
  transition-delay: 0.12s;
}
.nucaz-menu .default .navbar-nav .nav-link .rolling-text .letter:nth-child(10) {
  transition-delay: 0.135s;
}
.nucaz-menu .default .navbar-nav .nav-link .rolling-text .letter:nth-child(11) {
  transition-delay: 0.15s;
}
.nucaz-menu .default .navbar-nav .nav-link .rolling-text .letter:nth-child(12) {
  transition-delay: 0.165s;
}
.nucaz-menu .default .navbar-nav .nav-link .rolling-text .letter:nth-child(13) {
  transition-delay: 0.18s;
}
.nucaz-menu .default .navbar-nav .nav-link .rolling-text .letter:nth-child(14) {
  transition-delay: 0.195s;
}
.nucaz-menu .default .navbar-nav .nav-link .rolling-text .letter:nth-child(15) {
  transition-delay: 0.21s;
}
.nucaz-menu .default .navbar-nav .nav-link .rolling-text .letter:nth-child(16) {
  transition-delay: 0.225s;
}
.nucaz-menu .default .navbar-nav .nav-link .rolling-text .letter:nth-child(17) {
  transition-delay: 0.24s;
}
.nucaz-menu .default .navbar-nav .nav-link .rolling-text .letter:nth-child(18) {
  transition-delay: 0.255s;
}
.nucaz-menu .default .navbar-nav .nav-link .rolling-text .letter:nth-child(19) {
  transition-delay: 0.27s;
}
.nucaz-menu .default .navbar-nav .nav-link .rolling-text .letter:nth-child(20) {
  transition-delay: 0.285s;
}
.nucaz-menu .default .navbar-nav .nav-link .rolling-text .letter:nth-child(21) {
  transition-delay: 0.3s;
}
.nucaz-menu .default .navbar-nav .nav-link .rolling-text:hover .letter {
  transform: translateY(-100%);
}
.nucaz-menu .default .navbar-nav .nav-link .rolling-text.play .letter {
  transform: translateY(-100%);
}
.nucaz-menu .default .navbar-nav .sub-menu .dropdown-toggle:after {
  display: none;
}

.nucaz-menu .default .navbar-toggler {
  font-size: 20px;
  border-radius: 0;
  padding: 0;
}
.nucaz-menu .default .navbar-toggler .icon-bar i {
  color: #fff;
}

.nucaz-menu .menu-list {
  height: 100vh;
  padding-top: 140px;
  overflow: auto;
}
.nucaz-menu .menu-list .navigation li.menu-item-has-children > a:after {
  display: none;
}
.nucaz-menu .menu-list::-webkit-scrollbar {
  width: 5px;
}
.nucaz-menu .menu-list::-webkit-scrollbar-track {
  background: #eee;
}
.nucaz-menu .menu-list::-webkit-scrollbar-thumb {
  background: #aaa;
  border-radius: 5px;
}
.nucaz-menu .menu-list > div {
  position: relative;
  z-index: 2;
}
.nucaz-menu .menu-list > div .navigation > .menu-item {
  color: #1a1a1a;
  transition: all 0.5s;
  display: block;
  overflow: hidden;
}
.nucaz-menu .menu-list > div .navigation > .menu-item a,
.nucaz-menu .menu-list > div .navigation > .menu-item a:hover {
  color: inherit;
}
.nucaz-menu .menu-list > div .navigation > .menu-item .o-hidden {
  overflow: hidden;
}
.nucaz-menu .menu-list > div .navigation > .menu-item .cursor-pointer {
  cursor: pointer;
}
.nucaz-menu .menu-list > div .navigation > .menu-item.sub-menu-open a:before {
  display: none;
}
.nucaz-menu .menu-list > div .navigation > .menu-item i {
  position: absolute;
  width: 90px;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.02);
}
.nucaz-menu .menu-list > div .navigation > .menu-item.menu-item-has-children a:before {
  content: "";
  width: 1px;
  height: 16px;
  position: absolute;
  top: 45px;
  right: 45px;
  background: #1a1a1a;
}
.nucaz-menu .menu-list > div .navigation > .menu-item.menu-item-has-children a:after {
  content: "";
  width: 16px;
  height: 1px;
  position: absolute;
  top: 53px;
  right: 37px;
  background: #1a1a1a;
}
.nucaz-menu .menu-list > div .navigation > .menu-item a {
  width: 100%;
  display: block;
  transition: all 0.3s;
  color: #1a1a1a;
}
.nucaz-menu .menu-list > div .navigation > .menu-item a .nm {
  opacity: 0.8;
  font-size: 13px;
  margin-right: 10px;
}
.nucaz-menu .menu-list > div .navigation > .menu-item a:hover {
  opacity: 1;
}
.nucaz-menu .menu-list > div .navigation > .menu-item a.dopen i:before {
  opacity: 0;
}
.nucaz-menu .menu-list > div .navigation > .menu-item.hoverd a:after {
  width: 0;
}
.nucaz-menu .menu-list > div .navigation > .menu-item .sub-menu {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: transparent;
  display: none !important;
  box-shadow: none;
  width: 100%;
  height: 0px;
  padding: 20px 0;
}
.nucaz-menu .menu-list > div .navigation > .menu-item .sub-menu li {
  padding: 0;
  margin: 0;
  line-height: 1;
  font-size: 22px;
  font-weight: 400;
}
.nucaz-menu .menu-list > div .navigation > .menu-item .sub-menu li a {
  padding: 12px 10px;
  opacity: 0.6;
  transition: all 0.4s;
  line-height: 1;
  font-size: 22px;
  font-weight: 400;
}
.nucaz-menu .menu-list > div .navigation > .menu-item .sub-menu li a:after {
  display: none;
}
.nucaz-menu .menu-list > div .navigation > .menu-item .sub-menu li a:hover {
  opacity: 1;
}
.nucaz-menu .menu-list > div .navigation > .menu-item .sub-menu li.menu-item-has-children > .cursor-pointer > a {
  position: relative;
}
.nucaz-menu .menu-list > div .navigation > .menu-item .sub-menu li.menu-item-has-children > .cursor-pointer > a:before {
  display: block;
  content: "";
  width: 1px;
  height: 16px;
  position: absolute;
  top: 50%;
  right: 45px;
  background: #1a1a1a;
}
.nucaz-menu .menu-list > div .navigation > .menu-item .sub-menu li.menu-item-has-children > .cursor-pointer > a:after {
  display: block;
  content: "";
  width: 16px;
  height: 1px;
  position: absolute;
  top: calc(50% + 8px);
  right: 37px;
  background: #1a1a1a;
}
.nucaz-menu .menu-list > div .navigation > .menu-item .sub-menu li.menu-item-has-children.sub-menu-open > .cursor-pointer > a:before {
  display: none;
}
.nucaz-menu .menu-list > div .navigation > .menu-item .sub-menu.sub-open {
  display: block !important;
  opacity: 1 !important;
  height: 100% !important;
  overflow: inherit !important;
  position: relative;
}

@media screen and (max-width: 992px) {
  .nucaz-menu .default .navbar-nav {
    position: absolute;
    padding: 0;
    margin: 0;
    width: 100vw;
    background: #1d1d1d;
    z-index: 999;
  }
}
/* ==============================================================================================================================
														[ * Portfolio Slider Element ]
===============================================================================================================================*/
.nucaz-portfolio-slider {
  padding-bottom: 70px;
}
.nucaz-portfolio-slider .portfolio-card {
  position: relative;
  display: block;
}
.nucaz-portfolio-slider .portfolio-card:hover .info .title {
  color: #FF5F6D;
}
.nucaz-portfolio-slider .portfolio-card .img {
  height: 570px;
  border-radius: 30px;
  overflow: hidden;
}
.nucaz-portfolio-slider .portfolio-card .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nucaz-portfolio-slider .portfolio-card .info {
  padding-top: 30px;
}
.nucaz-portfolio-slider .portfolio-card .info .title {
  font-size: 32px;
  transition: all 0.3s ease;
}
.nucaz-portfolio-slider .swiper-pagination {
  bottom: 0;
  text-align: start;
}
.nucaz-portfolio-slider .swiper-pagination .swiper-pagination-bullet {
  width: 5px;
  height: 5px;
  background-color: #000;
  margin: 10px;
  opacity: 1;
}
.nucaz-portfolio-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  outline: 1px solid #ff5f6d;
  background-color: #ff5f6d;
  outline-offset: 8px;
}

/* ==============================================================================================================================
														[ * Testimonials Slider Element ]
===============================================================================================================================*/
.nucaz-testimonials-slider {
  position: relative;
  padding-bottom: 100px;
}
.nucaz-testimonials-slider .swiper-slide .testi-card {
  opacity: 0.6;
  transform: scale(0.9);
}
.nucaz-testimonials-slider .swiper-slide-active .testi-card {
  opacity: 1;
  transform: scale(1.1);
}
.nucaz-testimonials-slider .testi-card {
  padding: 40px;
  border-radius: 30px;
  background: #FFF;
  box-shadow: 0px 94px 94px 0px rgba(0, 0, 0, 0.03);
  transition: all 0.5s ease;
}
.nucaz-testimonials-slider .testi-card .rate {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.nucaz-testimonials-slider .testi-card .rate .icon {
  height: 30px;
  margin-inline-end: 20px;
  flex-shrink: 0;
}
.nucaz-testimonials-slider .testi-card .rate .stars {
  color: #ff5f6d;
  font-size: 14px;
}
.nucaz-testimonials-slider .testi-card .rate p {
  font-size: 16px;
  color: #5B5B5B;
  margin-bottom: 5px;
}
.nucaz-testimonials-slider .testi-card .main-text {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 500;
}
.nucaz-testimonials-slider .testi-card .user-info h6 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 5px;
}
.nucaz-testimonials-slider .testi-card .user-info p {
  font-size: 16px;
  color: #5B5B5B;
}
.nucaz-testimonials-slider .swiper-pagination {
  width: 100%;
  bottom: 0;
  text-align: center;
}
.nucaz-testimonials-slider .swiper-pagination .swiper-pagination-bullet {
  width: 5px;
  height: 5px;
  background-color: #000;
  margin: 10px;
  opacity: 1;
}
.nucaz-testimonials-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  outline: 1px solid #ff5f6d;
  background-color: #ff5f6d;
  outline-offset: 8px;
}

/* ==============================================================================================================================
														[ * Float Circle Element ]
===============================================================================================================================*/
.nucaz-float-circle {
  display: inline-block;
}

/* ==============================================================================================================================
														[ * Numbers Element ]
===============================================================================================================================*/
.nucaz-numbers .row.gx-5, .nucaz-numbers .row.gx-lg-5 {
  margin-right: -30px !important;
  margin-left: -30px !important;
}
.nucaz-numbers .row.gx-5 > *, .nucaz-numbers .row.gx-lg-5 > * {
  padding-right: 30px !important;
  padding-left: 30px !important;
}
.nucaz-numbers .number-card {
  position: relative;
  text-align: center;
  padding-top: 40px;
  display: block;
  margin-top: 40px;
}
.nucaz-numbers .number-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-height: unset;
}

@media screen and (max-width: 991px) {
  .nucaz-numbers .row.gx-lg-5 > * {
    padding: 0 !important;
  }
  .nucaz-numbers .number-card {
    height: calc(100% - 40px);
    margin: 40px 10px 0;
  }
  .nucaz-numbers .number-card br {
    display: none;
  }
  .nucaz-numbers .number-card img {
    max-height: 100%;
  }
}
/* ==============================================================================================================================
														[ * Cases Element ]
===============================================================================================================================*/
.nucaz-cases .cases-colmn:nth-of-type(1) {
  padding-top: 150px;
}
.nucaz-cases .cases-colmn:nth-of-type(1) .case-card:nth-of-type(1) .img {
  height: 520px;
}
.nucaz-cases .cases-colmn:nth-of-type(1) .case-card:nth-of-type(2) {
  margin-inline-start: auto;
}
.nucaz-cases .cases-colmn:nth-of-type(1) .case-card:nth-of-type(2) .img {
  height: 370px;
}
.nucaz-cases .cases-colmn:nth-of-type(2) .case-card:nth-of-type(1) .img {
  height: 370px;
}
.nucaz-cases .cases-colmn:nth-of-type(2) .case-card:nth-of-type(2) {
  max-width: unset;
}
.nucaz-cases .cases-colmn:nth-of-type(2) .case-card:nth-of-type(2) .img {
  height: 530px;
}
.nucaz-cases .case-card {
  position: relative;
  display: block;
  border-radius: 30px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0px 94px 94px 0px rgba(0, 0, 0, 0.03);
  margin-top: 20px;
  max-width: 525px;
}
.nucaz-cases .case-card:hover .img .float-arrow {
  opacity: 1;
  transform: scale(1);
}
.nucaz-cases .case-card:hover .info .title {
  color: #FF5F6D;
}
.nucaz-cases .case-card .img {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
}
.nucaz-cases .case-card .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nucaz-cases .case-card .img .float-arrow {
  position: absolute;
  left: calc(50% - 50px);
  top: calc(50% - 50px);
  transform: scale(0.7);
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-image: linear-gradient(126deg, #FF5F6D 22.58%, #FFC371 73.54%);
  color: #fff;
  font-size: 30px;
  opacity: 0;
  transition: all 0.3s ease;
}
.nucaz-cases .case-card .img .float-arrow svg {
  fill: #FFFFFF;
  width: 30px;
  height: 30px;
}
.nucaz-cases .case-card .info {
  padding: 30px;
}
.nucaz-cases .case-card .info p {
  font-size: 16px;
  color: #5B5B5B;
}
.nucaz-cases .case-card .info .title {
  font-size: 32px;
  margin-top: 10px;
  transition: all 0.3s ease;
}

@media screen and (max-width: 991px) {
  .nucaz-cases .cases-colmn:nth-of-type(1) {
    padding-top: 0;
  }
  .nucaz-cases .cases-colmn .case-card .img {
    height: 350px !important;
  }
}
/* ==============================================================================================================================
														[ * Price Card Element ]
===============================================================================================================================*/
.nucaz-price-card {
  position: relative;
  padding: 30px;
  background-color: #fff;
  border-radius: 30px;
  box-shadow: 0px 94px 94px 0px rgba(0, 0, 0, 0.03);
}
.nucaz-price-card .card-head {
  padding: 20px 0;
}
.nucaz-price-card .card-body {
  position: relative;
  padding: 30px 20px;
  border-radius: 30px;
  overflow: hidden;
  margin-top: 30px;
}
.nucaz-price-card .card-body::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(126deg, #08B259 22.58%, #F3E51A 73.54%);
  opacity: 0.1;
}
.nucaz-price-card .card-body .price {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 20px;
}
.nucaz-price-card .card-body .price small {
  font-size: 16px;
}
.nucaz-price-card .card-body .card-list {
  margin: 0;
  padding: 0;
}
.nucaz-price-card .card-body .card-list li {
  list-style-type: none;
  font-size: 16px;
  margin: 15px 0;
}
.nucaz-price-card .card-body .card-list li strong {
  color: #191919;
  font-weight: bolder;
}
.nucaz-price-card .card-body .card-list li svg {
  fill: #191919;
  width: 13px;
  height: 13px;
  margin-inline-end: 10px;
}
.nucaz-price-card .butn {
  display: inline-block;
  transition: all 0.2s ease;
  position: relative;
  text-align: center;
  font-size: 16px;
  line-height: 1.5;
}
.nucaz-price-card .butn:hover {
  box-shadow: 7px 10px 15px rgba(0, 0, 0, 0.2666666667);
  transform: translateY(-2px);
}

@media screen and (max-width: 991px) {
  .nucaz-price-card .butn {
    padding: 10px 20px;
  }
  .nucaz-price-card .butn > * {
    font-size: 13px;
  }
}
/* ==============================================================================================================================
														[ * Rating Element ]
===============================================================================================================================*/
.nucaz-rating {
  line-height: 1.5;
  display: inline-block;
}

/* ==============================================================================================================================
														[ * Cases Cards Element ]
===============================================================================================================================*/
.nucaz-cases-cards .case-card.hover {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  color: #fff;
  display: block;
  margin-top: 24px;
}
.nucaz-cases-cards .case-card.hover::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  background-image: var(--Sweet-Morning, linear-gradient(124deg, #FF5F6D 22.75%, #FFC371 72.61%));
  opacity: 0;
  transition: all 0.3s ease;
}
.nucaz-cases-cards .case-card.hover:hover::after {
  opacity: 0.9;
}
.nucaz-cases-cards .case-card.hover:hover .float-icon {
  opacity: 1;
  transform: scale(1);
}
.nucaz-cases-cards .case-card.hover:hover .info {
  opacity: 1;
  transform: translateY(0);
}
.nucaz-cases-cards .case-card.hover .img {
  position: relative;
  height: 380px;
}
.nucaz-cases-cards .case-card.hover .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nucaz-cases-cards .case-card.hover .float-icon {
  position: absolute;
  top: 65px;
  left: calc(50% - 50px);
  height: 100px;
  width: 100px;
  border-radius: 50%;
  border: 1px solid #fff;
  font-size: 30px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.3s ease;
}
.nucaz-cases-cards .case-card.hover .float-icon svg {
  fill: #FFFFFF;
  width: 30px;
  height: 30px;
}
.nucaz-cases-cards .case-card.hover .info {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 40px 30px;
  z-index: 10;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.3s ease;
}
.nucaz-cases-cards .case-card.hover .info .tags {
  margin-bottom: 15px;
}
.nucaz-cases-cards .case-card.hover .info .title {
  margin: 0;
}
.nucaz-cases-cards .case-card.default {
  position: relative;
  background-color: #fff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 94px 94px 0 rgba(0, 0, 0, 0.03);
  margin-bottom: 30px;
}
.nucaz-cases-cards .case-card.default:hover .img .float-arrow {
  opacity: 1;
  transform: scale(1);
}
.nucaz-cases-cards .case-card.default .img {
  display: block;
  position: relative;
  height: 550px;
  border-radius: 30px;
  overflow: hidden;
}
.nucaz-cases-cards .case-card.default .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nucaz-cases-cards .case-card.default .img .float-arrow {
  position: absolute;
  left: calc(50% - 50px);
  top: calc(50% - 50px);
  transform: scale(0.7);
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-image: linear-gradient(126deg, #FF5F6D 22.58%, #FFC371 73.54%);
  color: #fff;
  font-size: 30px;
  opacity: 0;
  transition: all 0.3s ease;
}
.nucaz-cases-cards .case-card.default .img .float-arrow svg {
  fill: #FFFFFF;
  width: 30px;
  height: 30px;
}
.nucaz-cases-cards .case-card.default .info {
  padding: 30px;
}
@keyframes fadeInUpAnimation {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 80px, 0);
    transform: translate3d(0, 80px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.nucaz-cases-cards .fadeInUpAnimation {
  -webkit-animation-name: fadeInUpAnimation;
  animation-name: fadeInUpAnimation;
}

/* ==============================================================================================================================
														[ * Progress Element ]
===============================================================================================================================*/
.nucaz-progress p {
  margin: 0;
}
.nucaz-progress .progress {
  height: 5px;
  background-color: transparent;
  border-radius: 0;
}
.nucaz-progress .progress .progress-bar {
  background-color: #191919;
}

/* ==============================================================================================================================
														[ * Breadcrumbs Element ]
===============================================================================================================================*/
.nucaz-breadcrumbs {
  position: relative;
  padding-inline-start: 30px;
}
.nucaz-breadcrumbs .path .start-icon {
  width: 18px;
  height: 18px;
  top: 7px;
  left: 0;
  position: absolute;
  fill: #ff5f6d;
}
.nucaz-breadcrumbs .path > span {
  margin-inline-start: 10px;
}
.nucaz-breadcrumbs .path a {
  display: inline-block;
  position: relative;
  font-size: 18px;
  color: #FF5F6D;
  text-transform: capitalize;
  margin-inline-end: 10px;
}
.nucaz-breadcrumbs .path span:first-of-type {
  margin-inline-start: 0;
}
.nucaz-breadcrumbs .separator-icon {
  width: 18px;
  height: 18px;
  fill: #FF5F6D;
}

/* ==============================================================================================================================
														[ * Contact Form Element ]
===============================================================================================================================*/
.nucaz-contact-form.width-max-content input[type=submit] {
  width: max-content;
}
.nucaz-contact-form p {
  width: 100%;
  position: relative;
  margin: 0;
  padding: 0;
}
.nucaz-contact-form p .wpcf7-form-control-wrap {
  width: 100%;
}
.nucaz-contact-form p input:focus {
  box-shadow: none;
}
.nucaz-contact-form p textarea:focus {
  box-shadow: none;
}
.nucaz-contact-form p select:focus {
  box-shadow: none;
}
.nucaz-contact-form .note {
  color: #666;
  font-size: 16px;
  line-height: 1.7;
  word-spacing: 0;
}
.nucaz-contact-form .wpcf7-spinner {
  position: absolute;
}
.nucaz-contact-form .button {
  position: relative;
}
.nucaz-contact-form .button input[type=submit] {
  transition: all 0.3s linear;
}
.nucaz-contact-form .button input[type=submit]:hover {
  box-shadow: 7px 10px 15px rgba(0, 0, 0, 0.2666666667);
  transform: translateY(-2px);
}

/* ==============================================================================================================================
														[ * Products Element ]
===============================================================================================================================*/
.nucaz-products .products .product-card {
  display: block;
  position: relative;
  margin-bottom: 20px;
}
.nucaz-products .products .product-card:hover .img .float-icon {
  opacity: 1;
  transform: scale(1);
}
.nucaz-products .products .product-card .img {
  height: 370px;
  position: relative;
}
.nucaz-products .products .product-card .img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.nucaz-products .products .product-card .float-icon {
  position: absolute;
  left: calc(50% - 50px);
  top: calc(50% - 50px);
  transform: scale(0.7);
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-image: linear-gradient(126deg, #FF5F6D 22.58%, #FFC371 73.54%);
  color: #fff;
  font-size: 30px;
  opacity: 0;
  transition: all 0.3s ease;
}
.nucaz-products .products .product-card .float-icon svg {
  fill: #fff;
  width: 30px;
  height: 30px;
}
.nucaz-products .products .product-card .info {
  padding-top: 20px;
}
.nucaz-products .products .product-card .info .tags {
  font-size: 12px;
}
.nucaz-products .products .product-card .info .price {
  font-size: 21px;
  color: #000;
}
.nucaz-products .products .product-card .info .price small {
  font-size: 15px;
  color: #666;
}
.nucaz-products .products .product-card .product-link {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 0;
  border: 0;
}
@keyframes fadeInUpAnimation {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 80px, 0);
    transform: translate3d(0, 80px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.nucaz-products .fadeInUpAnimation {
  -webkit-animation-name: fadeInUpAnimation;
  animation-name: fadeInUpAnimation;
}

@media screen and (max-width: 991px) {
  .nucaz-products .products .product-card {
    background-color: #f9f9f9;
    padding: 20px;
  }
  .nucaz-products .products .product-card .img {
    height: 200px;
  }
}
/* ==============================================================================================================================
														[ * Features Slider Element ]
===============================================================================================================================*/
.nucaz-features-slider {
  pointer-events: none;
}
.nucaz-features-slider .swiper-wrapper {
  transition-timing-function: linear;
  position: relative;
  pointer-events: none;
}
.nucaz-features-slider .swiper-wrapper .swiper-slide {
  position: relative;
  width: 320px !important;
}
.nucaz-features-slider .feat-card {
  position: relative;
  background-color: #fff;
  border-radius: 15px;
  padding: 30px;
  filter: drop-shadow(0px 30px 60px rgba(0, 0, 0, 0.06));
  display: flex;
  align-items: center;
  flex-direction: column-reverse;
  text-align: center;
}
.nucaz-features-slider .feat-card .icon {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  margin-bottom: 15px;
}

/* ==============================================================================================================================
														[ * Live Card Element ]
===============================================================================================================================*/
.nucaz-live-card {
  position: relative;
  display: flex;
  align-items: center;
  height: 600px;
  overflow: hidden;
  background-image: linear-gradient(90deg, #7B68EE 13.61%, #308FFF 88.38%);
  border-radius: 20px;
  box-shadow: 0px 30px 60px 0px rgba(0, 0, 0, 0.1);
}
.nucaz-live-card .bg-imgs {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-10deg);
}
.nucaz-live-card .bg-imgs .img1 {
  position: absolute;
  left: 0;
  top: 120px;
  width: 100%;
  max-width: unset;
  max-height: unset;
  transform: scale(2);
}
.nucaz-live-card .bg-imgs .img2 {
  position: absolute;
  left: 0;
  top: -120px;
  width: 100%;
  max-width: unset;
  max-height: unset;
  transform: scale(2);
}
.nucaz-live-card .play-btn {
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1.5;
  background-image: linear-gradient(126deg, #FF5F6D 22.58%, #FFC371 73.54%);
  color: #fff;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.3333333333);
  margin: 100px auto;
  z-index: 10;
  outline: 1px solid #ff5f6d;
  outline-offset: 10px;
}
.nucaz-live-card .play-btn:hover {
  outline-offset: -10px;
  outline-color: #fff;
}

@media screen and (max-width: 991px) {
  .nucaz-live-card {
    height: 350px;
  }
}
/* ==============================================================================================================================
														[ * Rotate Box Element ]
===============================================================================================================================*/
.nucaz-rotate-box {
  position: relative;
  width: 180px;
  height: 180px;
  display: block;
}
.nucaz-rotate-box .image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.nucaz-rotate-box .center-text {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 16px;
  text-transform: uppercase;
  text-align: center;
}
.nucaz-rotate-box .icon {
  position: absolute;
  left: 50%;
  top: 50%;
  padding: 5px;
  transform: translate(-100%);
}
.nucaz-rotate-box .rotate-text {
  animation: rotateText 20s linear infinite;
  text-transform: uppercase;
  position: absolute;
  border-radius: 50%;
  width: 100%;
  height: 100%;
}
.nucaz-rotate-box .rotate-circle svg {
  width: 100%;
  height: 100%;
  fill: #7B68EE;
  transform: scale(1.5);
}
@keyframes rotateText {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

/* ==============================================================================================================================
														[ * Testimonials Preview Slider Element ]
===============================================================================================================================*/
.nucaz-testimonials-preview-slider .testi-card {
  position: relative;
  padding: 60px;
  border-radius: 30px;
  border: 1px solid #7B68EE;
  background-color: #fff;
}
.nucaz-testimonials-preview-slider .testi-card .text {
  margin-bottom: 30px;
}
.nucaz-testimonials-preview-slider .testi-card .avatar {
  width: 50px;
  height: 50px;
  margin-inline-end: 20px;
  border-radius: 50%;
  overflow: hidden;
}
.nucaz-testimonials-preview-slider .testi-card .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nucaz-testimonials-preview-slider .testi-card .cont .position {
  margin: 0;
  margin-bottom: 0.25rem;
}
.nucaz-testimonials-preview-slider .testi-card .cont .name {
  margin: 0;
}
.nucaz-testimonials-preview-slider .swiper-slide {
  opacity: 0.6;
  transition: all 0.5s ease;
}
.nucaz-testimonials-preview-slider .swiper-slide.swiper-slide-active {
  opacity: 1;
}

/* ==============================================================================================================================
														[ * Elements Slider Element ]
===============================================================================================================================*/
.nucaz-elements-slider .img {
  position: relative;
  height: 450px;
  border-radius: 10px;
  overflow: hidden;
}
.nucaz-elements-slider .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nucaz-elements-slider .swiper-pagination-bullet-active {
  background-color: #000;
}
.nucaz-elements-slider .swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
  width: 100%;
  bottom: 10px;
  left: 0;
}
.nucaz-elements-slider .swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 4px;
  display: inline-block;
  border-radius: 50%;
}

/* ==============================================================================================================================
														[ * Card Element ]
===============================================================================================================================*/
.nucaz-card {
  position: relative;
  text-align: center;
  padding-top: 40px;
}
.nucaz-card .shap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: inline-block;
  transition: all 0.3s ease;
  color: inherit;
  text-decoration: none;
  max-width: 100%;
  max-height: 100%;
}

@media screen and (max-width: 991px) {
  .nucaz-card {
    margin: 25px 0;
  }
}
/* ==============================================================================================================================
														[   The End   ]
===============================================================================================================================*/

/*# sourceMappingURL=style.css.map */
