:root {
  --bs-body-font-family: Studio6, sans-serif;
  --white: #fff;
  --black: #000;
  --primary: #75B5F2;
  --primary-50: #EDF1F9;
  --primary-100: #CEDBEE;
  --primary-700: #4A97EE;
  --primary-800: #3E77CC;
  --secondary: #060254;
  --secondary-200: #C1BFD3;
  --secondary-500: #8380A9;
  --bs-body-font-size: 16px;
  --bs-body-line-height: 160%;
  --bs-body-font-weight: 400;
  --bs-body-color: var(--secondary);
  --bs-border-color: var(--secondary-200);
  --bs-gradient: linear-gradient(180deg, rgba(194, 209, 235, 0), rgba(194, 209, 235, 60%));
}

@font-face {
  font-family: 'Studio6';
    src: url('../fonts/Studio6-Regular.woff2') format('woff2'),
        url('../fonts/Studio6-Regular.woff') format('woff'),
        url('../fonts/Studio6-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Studio6';
    src: url('../fonts/Studio6-Medium.woff2') format('woff2'),
        url('../fonts/Studio6-Medium.woff') format('woff'),
        url('../fonts/Studio6-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Studio6';
    src: url('../fonts/Studio6-DemiBold.woff2') format('woff2'),
        url('../fonts/Studio6-DemiBold.woff') format('woff'),
        url('../fonts/Studio6-DemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Studio6';
    src: url('../fonts/Studio6-Bold.woff2') format('woff2'),
        url('../fonts/Studio6-Bold.woff') format('woff'),
        url('../fonts/Studio6-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Studio6';
    src: url('../fonts/Studio6-ExtraBold.woff2') format('woff2'),
        url('../fonts/Studio6-ExtraBold.woff') format('woff'),
        url('../fonts/Studio6-ExtraBold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Studio6';
    src: url('../fonts/Studio6-Black.woff2') format('woff2'),
        url('../fonts/Studio6-Black.woff') format('woff'),
        url('../fonts/Studio6-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

a {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}

img {
  max-width: 100%;
  height: auto;
}

p {
  margin-bottom: 0;
}

ul,
ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

.list-style-bullet {
  list-style-type: disc;
  padding-left: 20px;
}

.list-style-number {
  list-style-type: decimal;
  padding-left: 20px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

h2 {
  font-size: 49px;
  line-height: 120%;
  font-weight: 600;
}

h3 {
  font-size: 39px;
  line-height: 135%;
  font-weight: 600;
}

h4 {
  font-size: 28px;
  line-height: 124%;
  font-weight: 600;
}

h5 {
  font-size: 24px;
  line-height: 132%;
  font-weight: 600;
}

.section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.g-5,
.gy-5 {
  --bs-gutter-y: 2.5rem;
}

.g-5,
.gx-5 {
  --bs-gutter-x: 2.5rem;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  --bs-gutter-x: 2.5rem;
}

.common-title {
  font-size: 49px;
  line-height: 120%;
  font-weight: 600;
  margin-bottom: 80px;
}

.common-title small {
  font-size: 15px;
  line-height: 100%;
  color: var(--secondary-500);
  letter-spacing: 1.2px;
}

.page-title-header {
  margin-bottom: 80px;
}

.page-title-header .page-title {
  font-size: 61px;
  line-height: 100%;
  font-weight: 600;
  margin-bottom: 20px;
}

.breadcrumb {
  color: var(--secondary-500);
}

.text-14 {
  font-size: 14px;
  line-height: 160%;
}

.text-12 {
  font-size: 12px;
  line-height: 160%;
}

.bg-primary {
  background-color: var(--primary) !important;
}

.bg-primary-50 {
  background-color: var(--primary-50);
}

.w-40 {
  width: 40px;
}

.h-40 {
  height: 40px;
}

.mt-80 {
  margin-top: 80px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mw-24 {
  min-width: 24px;
}

.aspect-3-2 {
  aspect-ratio: 3/2;
}

.nav-item {
  font-size: 15px;
  line-height: 160%;
  font-weight: 600;
}

.link-hover {
  position: relative;
}

.link-hover:active {
  opacity: 70%;
}

.link-hover::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform-origin: right;
  transform: scaleX(0);
  transition: 250ms transform ease-out;
}

.link-hover:hover:after {
  transform-origin: left;
  transform: scaleX(1);
}

.hover-scale {
  display: inline-block;
  transition: 250ms ease-out;
}

.hover-scale:hover {
  transform: scale(0.97);
}

.hover-scale:active {
  transform: scale(0.95);
}

.btn {
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
  gap: 16px;
  font-size: 15px;
  line-height: 16px;
  font-weight: 600;
  letter-spacing: 0.4px;
  border-radius: 100rem;
  transition: 350ms ease-out;
}

.btn.btn-primary {
  background-color: var(--primary);
  padding: 24px;
  color: var(--bs-body-color);
  border: none;
}

.btn.btn-primary:hover {
  background-color: var(--primary-700);
}

.btn.btn-primary:active {
  background-color: var(--primary-800);
  color: inherit;
}

.btn.btn-secondary {
  padding: 19px 24px;
  border: 1px solid var(--secondary);
  color: var(--bs-body-color);
  background-color: transparent;
}

.btn.btn-secondary:hover {
  background-color: var(--primary-50);
}

.btn.btn-secondary:active {
  background-color: var(--primary-100);
  color: inherit;
}

.btn.icon-right {
  padding: 8px 8px 8px 24px;
}

.btn.icon-right .btn-icon {
  display: inline-block;
  background-color: var(--white);
  border-radius: 100rem;
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-content {
  padding-top: 123px;
}

.title-img-icon {
  width: 49px;
  height: 49px;
  object-fit: contain;
  margin-top: -15px;
}

/* form-control-box */
.form-text-box .form-control {
  padding: 19px 16px;
  font-size: 16px;
  line-height: 160%;
}

.form-text-box .form-control::placeholder {
  color: var(--secondary);
  opacity: 0.35;
}

.form-text-box .form-control:hover,
.form-text-box .form-control:focus {
  box-shadow: none;
  --bs-border-color: var(--secondary-500);
}

/* form-control-box */

/* form-check-box */
.form-check-box .form-check-input {
  margin-top: 2px;
  width: 16px;
  height: 16px;
  border-radius: 2px;
  border: 1px solid var(--secondary);
  background-color: transparent;
  cursor: pointer;
}

.form-check-box .form-check-input:focus {
  box-shadow: none;
}

.form-check-box .form-check-input:checked {
  --bs-form-check-bg-image: url('../images/active.svg');
  background-size: 8px 8px;
}

.form-check-box .form-label {
  cursor: pointer;
}

/* form-check-box */

/* lightbox */
.lb-loader,
.lightbox {
  position: fixed;
  top: 0 !important;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.lightboxOverlay {
  background-color: #020119;
  filter: alpha(Opacity=100);
  opacity: 1;
}

.lb-data .lb-close {
  width: 36px;
  height: 36px;
  background: url(../images/lightboxClose.svg) top right no-repeat;
  filter: alpha(Opacity=100);
  opacity: 1;
  position: fixed;
  top: 40px;
  right: 40px;
}

.lb-nav {
  height: unset;
  top: 100%;
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.lb-nav a[style="opacity: 1; display: none;"],
.lb-nav a[style="display: none;"] {
  display: block !important;
  opacity: 0.3 !important;
  pointer-events: none;
}

.lb-nav a.lb-next,
.lb-nav a.lb-prev {
  width: 35px;
  height: 35px;
  opacity: unset;
  float: unset;
}

.lb-nav a.lb-next {
  background: url(../images/lightboxNext.svg) no-repeat;
}

.lb-nav a.lb-prev {
  background: url(../images/lightboxPrev.svg) no-repeat;
}

.lb-dataContainer {
  padding-top: 0;
}

.lb-outerContainer {
  background-color: transparent;
}

.lightbox .lb-image {
  border-radius: 32px;
  border: 0;
}

/* lightbox */

/* header */
.main-header {
  padding: 24px 40px;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
}

.main-header .header-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

/* header */

/* hero-section */
.hero-banner {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: flex-start;
  padding: 30px 20px 25px;
}

.hero-banner .hero-banner-right .img-box {
  padding: 40px 65px 35px 82px;
}

.hero-banner .hero-banner-right .img-text {
  padding: 14px 24px 24px;
  background-color: var(--white);
  border: 1px solid var(--bs-border-color);
  border-radius: 32px;
  display: inline-block;
  position: absolute;
  top: 80%;
  left: 56px;
  width: 296px;
}

.hero-banner .hero-banner-right .img-text p {
  color: var(--secondary-500);
}

.hero-banner .hero-banner-right .img-text a span {
  border-bottom: 1px solid var(--secondary);
  font-size: 15px;
  line-height: 1;
}

.hero-banner .hero-banner-right .main-img {
  border-radius: 32px;
}

.hero-banner .hero-banner-right .icon-img {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}

.hero-banner .title {
  font-size: 54px;
  font-weight: 600;
  margin-top: 48px;
  margin-bottom: 64px;
}

.hero-banner .key-point {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 31px;
  column-gap: 40px;
  max-width: 637px;
}

.hero-slider-wrapper {
  padding: 99px 0;
  overflow: hidden;
}

.hero-slider-wrapper .hero-slider {
  transform: rotate(-5deg);
  padding: 10px 0;
  margin: 0 -10px;
  background-color: var(--primary-100);
}

.hero-slider-wrapper .hero-slider .swiper-wrapper {
  -webkit-transition-timing-function: linear;
  -o-transition-timing-function: linear;
  transition-timing-function: linear;
  align-items: center;
}

.hero-slider-wrapper .hero-slider .swiper-slide {
  width: auto !important;
  background-color: var(--primary-100);
}

.hero-slider-wrapper .hero-slider .swiper-slide img {
  mix-blend-mode: multiply;
}

.hero-slider-wrapper .hero-slider .swiper-slide img {
  max-height: 56px;
}

/* hero-section */

/* social-solution */
.social-solution .social-solution-box .top-img img {
  margin: 0 !important;
}

.social-solution .social-solution-box .top-img {
  font-size: 88px !important;
  width: 88px !important;
  height: 88px !important;
  line-height: 1.15;
}

/* social-solution */

/* social-check */
.social-check .content {
  width: 100%;
  max-width: 520px;
}

/* social-check */

/* showcases */
.showcases .showcases-wrapper::-webkit-scrollbar {
  display: none;
}

.showcases .showcases-wrapper {
  padding-top: 32px;
}

.showcases .showcases-wrapper .showcase-card {
  min-width: 314px;
}

.showcases .showcases-wrapper .showcase-card img {
  border: 6px solid transparent;
  transition: all ease-in-out 0.3s;
  transform: scale(1);
}

.showcases .showcases-wrapper .showcase-card:hover img {
  border: 6px solid #75B5F2;
  transition: all ease-in-out 0.3s;
  transform: scale(0.97);
}

.showcases .showcases-wrapper .showcase-card:nth-child(3n + 2) {
  top: -32px;
  position: relative;
}

/* showcases */

/* book-appointment */
.book-appointment {
  margin: 80px 40px;
  background-color: var(--primary-100);
  border-radius: 40px;
}

.book-appointment .content .common-title {
  max-width: 586px;
}

.book-appointment .content .para {
  max-width: 462px;
}

.book-appointment img.bg-img {
  left: 12px;
  transform: translateY(-50%);
}

/* book-appointment */

/* testimonial */
.swiper-slide-item,
.splide__slide {
    grid-template-columns: auto auto;
}

.splide__slide {
    width: auto !important;
}
.testimonial .testimonial-img-area {
  border-radius: 24px;
  height: 100%;
  overflow: hidden;
  min-width: 520px;
  /* background-image: url("http://assets.violakrumm.com/2024/10/denni_autside.jpg"); */
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.testimonial .testimonial-card {
  background-color: var(--white);
  border-radius: 32px;
  padding: 40px;
  height: 100%;
  width: 100%;
  max-width: 520px;
  /* 	min-width: 520px; */
}

.testimonial-slider-wrapper .testimonial-slider .swiper-slide {
  width: auto !important;
  height: auto !important;
}

/* testimonial */

/* footer */
.main-footer .copyright {
  padding-top: 64px;
  padding-bottom: 64px;
}

.main-footer .footer-right .footer-contact {
  padding-right: 86px;
  margin-right: 86px;
  border-right: 1px solid var(--bs-border-color);
}

.main-footer .footer-nav {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 16px;
  margin-bottom: 41px;
}

.main-footer .footer-social a svg path {
  transition: 250ms ease-out;
}

.main-footer .footer-social a:hover svg path {
  fill-opacity: 1;
}

/* footer */

/* showcases-banner */
.showcases-banner .banner-img {
  aspect-ratio: 4/3;
  object-fit: cover;
}

.showcases-banner .content {
  padding: 40px 56px;
  background-color: var(--white);
  border-radius: 32px;
}

.showcases-banner .content label {
  color: var(--secondary-500);
}

.showcases-banner .content .value {
  font-size: 20px;
  line-height: 160%;
  font-weight: 600;
}

.showcases-banner .content .value-list {
  padding: 13px 20px;
}

/* showcases-banner */

/* project-desc */
.project-desc .content {
  font-size: 20px;
  line-height: 160%;
}

/* project-desc */

/* galley-slider-wrapper */
.galley-slider-wrapper {
  margin-bottom: 136px;
}

.galley-slider-wrapper .galley-slider-button-box {
  margin-bottom: 38px;
}

.galley-slider-wrapper .galley-slider-button-box .galley-slider-button {
  border: 1px solid currentColor;
  width: 35px;
  height: 35px;
  min-width: 35px;
}

.galley-slider-wrapper .galley-slider-button-box .galley-slider-button.swiper-button-disabled {
  opacity: 0.5;
  cursor: no-drop;
}

/* galley-slider-wrapper */

/* social-service */
.social-service .social-service-header {
  margin-bottom: 80px;
}

.social-service .social-service-header h3 {
  font-size: 39px;
  line-height: 135%;
}

.social-service .social-service-header p {
  font-size: 20px;
  line-height: 160%;
}

.social-service .social-service-card {
  border-radius: 32px;
  padding: 32px;
  gap: 20px;
}

.social-service .social-service-card h6 {
  font-size: 20px;
  line-height: 160%;
}

.social-service .social-service-card .card-img-box img {
  width: 61px !important;
  height: 61px !important;
  min-width: 61px;
}

.social-service .social-service-card .card-img-box {
  font-size: 61px !important;
  width: 80px;
  height: 80px;
  min-width: 80px;
}

/* social-service */

/* contact-form */
.contact-form-wrapper {
  max-width: 883px;
  margin: 0 auto;
  padding: 40px 0 100px;
}

.contact-form-wrapper .form-check-box .wpcf7-list-item>label {
  display: flex;
  gap: 8px;
}

.contact-form-wrapper .wpcf7-submit {
  padding: 20px 64px 20px 24px;
  background-image: url('../images/arrowRightIcon.svg');
  background-repeat: no-repeat;
  background-position: calc(100% - 8px) center;
}

.success-msg {
  font-size: 20px;
  line-height: 120%;
}

/* contact-form */

/* page-not-found */
.page-not-found .content {
  font-size: 20px;
  line-height: 120%;
}

/* page-not-found */

/* Cookie banner  css- #14*/
#cookiescript_accept,
#cookiescript_save {
  background-color: #75B5F2 !important;
  color: white !important;
  border-color: #060254 !important;
  border-radius: 32px !important;
}

#cookiescript_injected {
  background-color: black !important;
}

.gallery-card .uk-inline.video {
  position: relative;
}

.gallery-card .uk-inline.video svg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.uk-lightbox-items{
    height: 100%;
}

.uk-lightbox-items-fit>*>* {
    max-width: 80vw;
    max-height: 80vh;
}

.uk-lightbox-close {
    width: 36px;
    height: 36px;
    background-color: var(--white);
    border-radius: 50%;
    opacity: 1;
}

.uk-lightbox-close svg {
    width: 16px;
    height: 16px;
    fill: var(--primary);
}

.uk-lightbox-close svg line {
    stroke: var(--secondary) !important;
}

.uk-lightbox-items .uk-slide-active video {
    cursor: pointer;
}

.uk-lightbox-items .uk-slide-active:has(video) {
    position: relative;
    height: 100%;
}
.uk-lightbox-items .uk-slide-active .status-icon {
    content: "";
    position: absolute;
    width: 80px;
    height: 80px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    background-repeat: no-repeat;
    opacity: 0.6;
    cursor: pointer;
    display: none;
    /* pointer-events: none; */
}

.uk-lightbox-items .uk-slide-active video:hover+.status-icon {
    display: block;
}

.uk-lightbox-items .uk-slide-active .status-icon:hover {
    opacity: 1;
    display: block;
}

.uk-lightbox-items .uk-slide-active.playing .status-icon {
    background-image: url('../images/video_pause_button.svg');
}

.uk-lightbox-items .uk-slide-active.paused .status-icon {
    background-image: url('../images/video_play_button.svg');
}

.uk-lightbox-iframe {
  aspect-ratio: 4/7;
  max-width: 420px !important;
  width: 90%;
  height: auto;
}