/* ---------------------------------
Template Name: Niko - Personal Portfolio/CV/Resume HTML Template
Author: winzfy
Author URL: https://themeforest.net/user/winzfy
Version: 1.0

-----------------------------------------------------------------------------------

CSS INDEX
=================== 
01. CUSTOM PROPERTIES
02. GLOBAL
03. COMPONENTS
04. Typography

---- SECTIONS ----
05. HEADER
06. BANNER
07. ABOUT
08. SERVICES
09. EXPERIENCE
10. PORTFOLIO
11. TESTIMONIAL
12. PRICING
13. CTA
14. BLOG
15. CONTACT
16. FOOTER

---- INNER PAGES ----
17. SERVICE DETAILS
18. PORTFOLIO DETAILS
19. BLOG DETAILS

******************************************************* 
*************************************************************** */
/*----- CUSTOM PROPERTIES-----*/
@import url("https://fonts.googleapis.com/css2?family=Caveat:wght@400;500;600;700&family=Kanit:wght@300;400;500;600;700;800&display=swap");
:root {
  --white-f: #ffffff;
  --black-0: #000000;
  --black: #121212;
  --black-2: #1d1d1d;
  --purple: #8670ef;
  --golden: #fcd966;
  --kanit: "Kanit", sans-serif;
  --caveat: "Caveat", cursive;
}

/*----- GLOBAL-----*/
html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: scroll;
  overflow-x: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

/*----- GLOABL -----*/
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--kanit);
  color: var(--black-0);
  background: url(../img/body-bg-2.jpg) repeat;
  background-size: contain;
  overflow: hidden;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

p {
  font-size: 16px;
  line-height: 26px;
}

a {
  transition: 0.4s ease;
  text-decoration: none;
  vertical-align: top;
  display: inline-block;
}
a:hover {
  text-decoration: none;
  color: inherit;
}

span {
  display: inline-block;
}

i {
  display: inline-block;
}

input,
textarea,
button {
  background: transparent;
  border: 0;
  padding: 0;
  transition: 0.4s ease;
}
input:focus,
textarea:focus,
button:focus {
  outline: none;
}

img {
  max-width: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

input::placeholder {
  transition: 0.4s;
  opacity: 1;
  color: #53545b;
}

::-moz-selection {
  /* Code for Firefox */
  color: #fff;
  background: #23cc88;
}

::selection {
  color: #fff;
  background: #23cc88;
}

textarea::placeholder {
  transition: 0.4s;
  opacity: 1;
  color: #53545b;
}

video {
  max-width: 100%;
}

[data-sal] {
  transition-duration: 1.2s;
}

[data-sal=slide-up] {
  transform: translateY(60px);
}

.loader {
  font-weight: bold;
  font-family: monospace;
  font-size: 40px;
  line-height: 1.2em;
  display: inline-grid;
  position: fixed;
  inset: 0;
  margin: auto;
  background: var(--white-f);
  z-index: 99;
  place-content: center;
  transition: 0.6s ease;
}
.loader.loaded {
  opacity: 0;
  pointer-events: none;
}

.loader:before,
.loader:after {
  content: "Loading...";
  grid-area: 1/1;
  -webkit-mask: linear-gradient(90deg, #000 50%, rgba(0, 0, 0, 0) 0) 0 50%/2ch 100%;
  color: rgba(0, 0, 0, 0);
  text-shadow: 0 0 0 #000, 0 calc(var(--s, 1) * 1.2em) 0 #000;
  animation: l15 1s infinite;
}

.loader:after {
  -webkit-mask-position: 1ch 50%;
  --s: -1;
}

@keyframes l15 {
  80%, 100% {
    text-shadow: 0 calc(var(--s, 1) * -1.2em) 0 #000, 0 0 0 #000;
  }
}
.to-be-fixed.fixed {
  position: fixed;
  top: 0;
  width: 100%;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
  z-index: 99;
  transition: 0.4s ease;
  animation: fadeIn 1s ease;
  background-color: var(--white-f);
  padding: 14px 0;
}
.to-be-fixed.fixed .nk-header-offcanvas::before {
  height: calc(100% + 38px);
}
@media screen and (max-width: 1199px) {
  .to-be-fixed.fixed .nk-header-offcanvas::before {
    height: calc(100% + 33px);
  }
}

@keyframes fadeIn {
  0% {
    top: -100%;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}
@keyframes nk-logo-glitch {
  0% {
    opacity: 0;
    transform: translate(-8px, 0) skewX(-5deg);
    filter: brightness(2);
  }
  6% {
    opacity: 1;
    transform: translate(5px, 0) skewX(3deg);
    filter: brightness(1.6);
  }
  10% {
    opacity: 0;
    transform: translate(-3px, 0) skewX(-2deg);
    filter: brightness(0.8);
  }
  14% {
    opacity: 1;
    transform: translate(4px, 0) skewX(2deg);
    filter: brightness(1.4);
  }
  20% {
    opacity: 0.3;
    transform: translate(-2px, 0);
    filter: brightness(0.6);
  }
  26% {
    opacity: 1;
    transform: translate(3px, 0) skewX(-1deg);
    filter: brightness(1.2);
  }
  32% {
    opacity: 0.7;
    transform: translate(-1px, 0);
    filter: brightness(0.9);
  }
  40% {
    opacity: 1;
    transform: translate(1px, 0) skewX(0.5deg);
    filter: brightness(1.1);
  }
  50% {
    opacity: 0.9;
    transform: translate(0, 0);
    filter: brightness(1);
  }
  65% {
    opacity: 1;
    transform: translate(0, 0);
    filter: brightness(1);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
    filter: brightness(1);
  }
}
.logo {
  max-width: 221px;
  animation: nk-logo-glitch 1.6s cubic-bezier(0.23, 1, 0.32, 1) both;
  animation-delay: 0.4s;
}
@media screen and (max-width: 479px) {
  .logo {
    max-width: 169px;
  }
}

.bg-defaults {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media screen and (max-width: 479px) {
  .col-xxs-12 {
    width: 100%;
  }
}

@media screen and (max-width: 479px) {
  .row-cols-xxs-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
}

.logo img {
  width: 234px;
}
@media screen and (max-width: 767px) {
  .logo img {
    width: 195px;
  }
}

.cursor {
  position: fixed;
  background-color: var(--white-f);
  mix-blend-mode: difference;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  z-index: 1;
  transition: 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity;
  user-select: none;
  pointer-events: none;
  z-index: 10000;
  transform: scale(1);
}
@media screen and (max-width: 991px) {
  .cursor {
    display: none;
  }
}
.cursor.active {
  opacity: 1;
  transform: scale(0);
}

.cursor-follower {
  position: fixed;
  border: 1px solid var(--white-f);
  mix-blend-mode: difference;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  z-index: 1;
  transition: 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) background;
  user-select: none;
  pointer-events: none;
  z-index: 10000;
  transform: translate(2px, 2px);
}
@media screen and (max-width: 991px) {
  .cursor-follower {
    display: none;
  }
}
.cursor-follower.active {
  opacity: 1;
  transform: scale(1.6);
  border: none;
  background-color: var(--white-f);
  mix-blend-mode: difference;
}

.g-30 {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 30px;
}

.pt-160 {
  padding-top: 160px;
}

.pb-160 {
  padding-bottom: 160px;
}

.pt-5p {
  padding-top: 5px;
}

.pb-5p {
  padding-bottom: 5px;
}

.pt-220 {
  padding-top: 220px;
}

.pb-220 {
  padding-bottom: 220px;
}

.pt-380 {
  padding-top: 380px;
}

.py-160 {
  padding: 160px 0;
}

.pb-160 {
  padding-bottom: 160px;
}

.pt-5 {
  padding-top: 5px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-25 {
  padding-top: 25px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-35 {
  padding-top: 35px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-45 {
  padding-top: 45px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-55 {
  padding-top: 55px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-65 {
  padding-top: 65px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-75 {
  padding-top: 75px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-85 {
  padding-top: 85px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-95 {
  padding-top: 95px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-105 {
  padding-top: 105px;
}

.pt-110 {
  padding-top: 110px;
}

.pt-115 {
  padding-top: 115px;
}

.pt-120 {
  padding-top: 120px;
}

.pt-125 {
  padding-top: 125px;
}

.pt-130 {
  padding-top: 130px;
}

.pt-135 {
  padding-top: 135px;
}

.pt-140 {
  padding-top: 140px;
}

.pt-145 {
  padding-top: 145px;
}

.pt-150 {
  padding-top: 150px;
}

.pb-5 {
  padding-bottom: 5px;
}

.pb-7 {
  padding-bottom: 7px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-17 {
  padding-bottom: 17px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-22 {
  padding-bottom: 22px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-27 {
  padding-bottom: 27px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-35 {
  padding-bottom: 35px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-45 {
  padding-bottom: 45px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-55 {
  padding-bottom: 55px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-65 {
  padding-bottom: 65px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-75 {
  padding-bottom: 75px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-85 {
  padding-bottom: 85px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-95 {
  padding-bottom: 95px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-105 {
  padding-bottom: 105px;
}

.pb-110 {
  padding-bottom: 110px;
}

.pb-115 {
  padding-bottom: 115px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pb-125 {
  padding-bottom: 125px;
}

.pb-130 {
  padding-bottom: 130px;
}

.pb-135 {
  padding-bottom: 135px;
}

.pb-140 {
  padding-bottom: 140px;
}

.pb-145 {
  padding-bottom: 145px;
}

.pb-150 {
  padding-bottom: 150px;
}

.p-50p {
  padding-top: 50%;
  padding-bottom: 50%;
}

.pb-100p {
  padding-bottom: 100%;
}

.p-5 {
  padding: 5px 0;
}

.p-10 {
  padding: 10px 0;
}

.p-15 {
  padding: 15px 0;
}

.p-20 {
  padding: 20px 0;
}

.p-25 {
  padding: 25px 0;
}

.p-30 {
  padding: 30px 0;
}

.p-35 {
  padding: 35px 0;
}

.p-40 {
  padding: 40px 0;
}

.p-45 {
  padding: 45px 0;
}

.p-50 {
  padding: 50px 0;
}

.p-55 {
  padding: 55px 0;
}

.p-60 {
  padding: 60px 0;
}

.p-65 {
  padding: 65px 0;
}

.p-70 {
  padding: 70px 0;
}

.p-75 {
  padding: 75px 0;
}

.p-80 {
  padding: 80px 0;
}

.p-85 {
  padding: 85px 0;
}

.p-90 {
  padding: 90px 0;
}

.p-95 {
  padding: 95px 0;
}

.p-100 {
  padding: 100px 0;
}

.p-105 {
  padding: 105px 0;
}

.p-110 {
  padding: 110px 0;
}

.p-115 {
  padding: 115px 0;
}

.p-120 {
  padding: 120px 0;
}

.p-125 {
  padding: 125px 0;
}

.p-130 {
  padding: 130px 0;
}

.p-135 {
  padding: 135px 0;
}

.p-140 {
  padding: 140px 0;
}

.p-145 {
  padding: 145px 0;
}

.p-150 {
  padding: 150px 0;
}

.p-180 {
  padding: 180px 0;
}

.p-200 {
  padding-top: 200px;
  padding-bottom: 200px;
}

.pl-5 {
  padding-left: 5px;
}

.pr-5 {
  padding-right: 5px;
}

.px-5 {
  padding-left: 5px;
  padding-right: 5px;
}

.pl-6 {
  padding-left: 6px;
}

.pl-20 {
  padding-left: 20px;
}

.pr-20 {
  padding-right: 20px;
}

.pl-25 {
  padding-left: 25px;
}

.pr-25 {
  padding-right: 25px;
}

.pl-30 {
  padding-left: 30px;
}

.pr-30 {
  padding-right: 30px;
}

.pl-60 {
  padding-left: 60px;
}

.pr-60 {
  padding-right: 60px;
}

.px-10 {
  padding-left: 10px;
  padding-right: 10px;
}

.px-15 {
  padding-left: 15px !important;
  padding-right: 15px !important;
}

.px-20 {
  padding-left: 20px !important;
  padding-right: 20px !important;
}

.px-25 {
  padding-left: 25px;
  padding-right: 25px;
}

.px-30 {
  padding-left: 30px;
  padding-right: 30px;
}

.px-35 {
  padding-left: 35px;
  padding-right: 35px;
}

.px-45 {
  padding-left: 45px;
  padding-right: 45px;
}

.px-50 {
  padding-left: 50px;
  padding-right: 50px;
}

.px-60 {
  padding-left: 60px;
  padding-right: 60px;
}

.mt-1 {
  margin-top: 1px !important;
}

.mt-5 {
  margin-top: 5px !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mb-1 {
  margin-bottom: 1px !important;
}

.mb-2 {
  margin-bottom: 2px !important;
}

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

.mb-5 {
  margin-bottom: 5px !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.m-5 {
  margin: 5px 0;
}

.m-10 {
  margin: 10px 0;
}

.m-15 {
  margin: 15px 0;
}

.m-20 {
  margin: 20px 0;
}

.m-25 {
  margin: 25px 0;
}

.m-30 {
  margin: 30px 0;
}

.m-35 {
  margin: 35px 0;
}

.m-40 {
  margin: 40px 0;
}

.m-45 {
  margin: 45px 0;
}

.m-50 {
  margin: 50px 0;
}

.m-55 {
  margin: 55px 0;
}

.m-60 {
  margin: 60px 0;
}

.m-65 {
  margin: 65px 0;
}

.m-70 {
  margin: 70px 0;
}

.m-75 {
  margin: 75px 0;
}

.m-80 {
  margin: 80px 0;
}

.m-85 {
  margin: 85px 0;
}

.m-90 {
  margin: 90px 0;
}

.m-95 {
  margin: 95px 0;
}

.m-100 {
  margin: 100px 0;
}

.m-105 {
  margin: 105px 0;
}

.m-110 {
  margin: 110px 0;
}

.m-115 {
  margin: 115px 0;
}

.m-120 {
  margin: 120px 0;
}

.m-125 {
  margin: 125px 0;
}

.m-130 {
  margin: 130px 0;
}

.m-135 {
  margin: 135px 0;
}

.m-140 {
  margin: 140px 0;
}

.m-145 {
  margin: 145px 0;
}

.m-150 {
  margin: 150px 0;
}

.mx--10 {
  margin-left: -10px;
  margin-right: -10px;
}

.mx-10 {
  margin-left: 10px;
  margin-right: 10px;
}

.mx-20 {
  margin-left: 20px;
  margin-right: 20px;
}

.mx-25 {
  margin-left: 25px;
  margin-right: 25px;
}

.ml-5 {
  margin-left: 5px;
}

.ml-6 {
  margin-left: 6px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-20 {
  margin-left: 20px;
}

.ml-25 {
  margin-left: 25px;
}

.ml-100 {
  margin-left: 100px;
}

.mr-5 {
  margin-right: 5px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-15 {
  margin-right: 15px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-30 {
  margin-right: 30px;
}

.mr-40 {
  margin-right: 40px;
}

.mr-70 {
  margin-right: 70px;
}

.mr-75 {
  margin-right: 75px;
}

@media (min-width: 576px) {
  .mr-sm-5 {
    margin-right: 5px !important;
  }
}
.pr-70 {
  padding-right: 70px;
}

.py-20 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.ml-30 {
  margin-left: 30px;
}

/*  Default CSS  */
.pt-200 {
  padding-top: 200px;
}

.pb-200 {
  padding-bottom: 200px;
}

.pt-180 {
  padding-top: 180px;
}

.pt-185 {
  padding-top: 185px;
}

.pb-180 {
  padding-bottom: 180px;
}

.pb-190 {
  padding-bottom: 190px;
}

/*----- COMPONENTS-----*/
.nk-def-btn {
  border-radius: 10px;
  box-shadow: 0px 9px 12px rgba(134, 112, 239, 0.3);
  background-color: #f4f2ff;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--white-f);
  height: 60px;
  line-height: 54px;
  padding: 0 35px;
  border: 3px solid var(--purple);
  position: relative;
  z-index: 1;
  transition: 0.4s ease, color 0.4s ease;
}
@media screen and (max-width: 1199px) {
  .nk-def-btn {
    height: 55px;
    line-height: 49px;
    padding: 0 30px;
  }
}
@media screen and (max-width: 575px) {
  .nk-def-btn {
    height: 50px;
    line-height: 44px;
    padding: 0 25px;
  }
}
@media screen and (max-width: 479px) {
  .nk-def-btn {
    height: 45px;
    line-height: 40px;
    padding: 0 20px;
    border-radius: 4px;
    font-size: 14px;
  }
}
.nk-def-btn:hover {
  color: var(--black);
  box-shadow: 0px 9px 12px rgba(134, 112, 239, 0.4);
  transform: translateY(-3px);
}
.nk-def-btn:hover::before {
  clip-path: circle(0% at 50% 100%);
}
.nk-def-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--purple);
  z-index: -1;
  transition: 0.4s ease;
  clip-path: circle(120% at 50% 100%);
}
.nk-def-btn i {
  padding-left: 5px;
}
.nk-def-btn--secondary {
  background-color: transparent;
  color: var(--black);
  box-shadow: none;
}
.nk-def-btn--secondary::before {
  clip-path: circle(0% at 50% 100%);
}
.nk-def-btn--secondary:hover {
  color: var(--white-f);
  box-shadow: 0px 9px 12px rgba(134, 112, 239, 0.3);
}
.nk-def-btn--secondary:hover::before {
  clip-path: circle(120% at 50% 100%);
}

.nk-section-spacing {
  padding: 120px 0;
}
@media screen and (max-width: 1399px) {
  .nk-section-spacing {
    padding: 80px 0;
  }
}
@media screen and (max-width: 991px) {
  .nk-section-spacing {
    padding: 60px 0;
  }
}

.nk-section__heading {
  text-align: center;
  width: 80%;
  margin: auto;
  margin-bottom: 56px;
}
@media screen and (max-width: 1399px) {
  .nk-section__heading {
    margin-bottom: 46px;
  }
}
@media screen and (max-width: 1199px) {
  .nk-section__heading {
    margin-bottom: 36px;
  }
}
@media screen and (max-width: 991px) {
  .nk-section__heading {
    width: 100%;
    margin-bottom: 26px;
  }
}
@media screen and (max-width: 575px) {
  .nk-section__heading {
    margin-bottom: 20px;
  }
}
.nk-section__heading--2 .nk-section__title {
  color: var(--white-f);
}
.nk-section__heading--2 .nk-section__sub-title {
  color: var(--golden);
}
.nk-section__heading--2 .nk-section__sub-title::before, .nk-section__heading--2 .nk-section__sub-title::after {
  background-color: var(--golden);
}
.nk-section__sub-title {
  font-family: var(--caveat);
  color: var(--purple);
  position: relative;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.417;
  display: inline-block;
}
@media screen and (max-width: 991px) {
  .nk-section__sub-title {
    margin-bottom: 2px;
  }
}
@media screen and (max-width: 767px) {
  .nk-section__sub-title {
    font-size: 22px;
  }
}
@media screen and (max-width: 479px) {
  .nk-section__sub-title {
    font-size: 20px;
  }
}
.nk-section__sub-title::before, .nk-section__sub-title::after {
  content: "";
  background-color: var(--purple);
  position: absolute;
  left: calc(0% - 85px);
  top: 50%;
  transform: translate(0, -50%);
  width: 60px;
  height: 1px;
  pointer-events: none;
}
@media screen and (max-width: 479px) {
  .nk-section__sub-title::before, .nk-section__sub-title::after {
    width: 40px;
    left: calc(0% - 50px);
  }
}
.nk-section__sub-title::after {
  left: calc(100% + 25px);
}
@media screen and (max-width: 479px) {
  .nk-section__sub-title::after {
    left: calc(100% + 10px);
  }
}
.nk-section__title {
  color: var(--black);
  font-weight: 500;
  margin-bottom: 0;
  font-size: 60px;
  line-height: 1.167;
}
@media screen and (max-width: 1399px) {
  .nk-section__title {
    font-size: 50px;
  }
}
@media screen and (max-width: 1199px) {
  .nk-section__title {
    font-size: 45px;
  }
}
@media screen and (max-width: 991px) {
  .nk-section__title {
    font-size: 40px;
  }
}
@media screen and (max-width: 767px) {
  .nk-section__title {
    font-size: 35px;
  }
}
@media screen and (max-width: 575px) {
  .nk-section__title {
    font-size: 30px;
  }
}
@media screen and (max-width: 479px) {
  .nk-section__title {
    font-size: 26px;
  }
}

.nk-slider-nav {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 60px;
}
@media screen and (max-width: 1199px) {
  .nk-slider-nav {
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .nk-slider-nav {
    margin-top: 30px;
  }
}
@media screen and (max-width: 479px) {
  .nk-slider-nav {
    gap: 10px;
    margin-top: 20px;
  }
}
.nk-slider-nav a,
.nk-slider-nav button {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
  width: 58px;
  height: 58px;
  color: var(--white-f);
  font-size: 25px;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.09);
}
@media screen and (max-width: 991px) {
  .nk-slider-nav a,
  .nk-slider-nav button {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
}
@media screen and (max-width: 479px) {
  .nk-slider-nav a,
  .nk-slider-nav button {
    width: 43px;
    height: 43px;
    font-size: 18px;
  }
}
.nk-slider-nav a:hover,
.nk-slider-nav button:hover {
  color: var(--golden);
}

.nk-slider-pagination {
  display: flex;
  justify-content: center;
}
.nk-slider-pagination .swiper-pagination-bullet {
  width: 40px;
  height: 3px;
  border-radius: 0;
  opacity: 1;
  background-color: rgba(5, 5, 5, 0.1);
  transition: 0.4s ease;
}
.nk-slider-pagination .swiper-pagination-bullet-active {
  background-color: #A97240;
}

.nk-socials {
  display: flex;
  gap: 25px;
}
.nk-socials a {
  color: rgb(18, 18, 18);
  text-decoration: underline;
  line-height: 1.625;
  text-underline-offset: 2px;
}

.nk-inner-banner {
  background-color: rgba(255, 255, 255, 0.4);
  text-align: center;
  padding: 103px 0 117px;
}
@media screen and (max-width: 1399px) {
  .nk-inner-banner {
    padding: 64px 0 77px;
  }
}
@media screen and (max-width: 991px) {
  .nk-inner-banner {
    padding: 47px 0 57px;
  }
}
@media screen and (max-width: 1399px) {
  .nk-inner-banner__title {
    font-size: 55px;
  }
}
@media screen and (max-width: 1199px) {
  .nk-inner-banner__title {
    font-size: 50px;
  }
}
@media screen and (max-width: 991px) {
  .nk-inner-banner__title {
    font-size: 45px;
  }
}
@media screen and (max-width: 767px) {
  .nk-inner-banner__title {
    font-size: 40px;
  }
}
@media screen and (max-width: 575px) {
  .nk-inner-banner__title {
    font-size: 36px;
  }
}
@media screen and (max-width: 479px) {
  .nk-inner-banner__title {
    font-size: 32px;
  }
}

.nk-breadcrumb {
  display: flex;
  justify-content: center;
  font-family: var(--caveat);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.167;
  color: var(--purple);
  margin-top: 16px;
}
@media screen and (max-width: 1199px) {
  .nk-breadcrumb {
    margin-top: 18px;
  }
}
@media screen and (max-width: 991px) {
  .nk-breadcrumb {
    margin-top: 14px;
  }
}
@media screen and (max-width: 767px) {
  .nk-breadcrumb {
    margin-top: 10px;
  }
}
@media screen and (max-width: 479px) {
  .nk-breadcrumb {
    font-size: 22px;
  }
}
.nk-breadcrumb span.divider {
  padding: 0 5px;
}
.nk-breadcrumb a {
  color: var(--black);
}
.nk-breadcrumb a:hover {
  color: var(--purple);
}

.nk-pagination a {
  display: grid;
  place-content: center;
  text-align: center;
  border-color: var(--white-f);
  background-color: var(--purple);
}
.nk-pagination a.active {
  background-color: var(--golden);
  color: var(--black);
}
.nk-pagination a.active:hover {
  background-color: var(--purple);
  color: var(--white-f);
}
.nk-pagination a:hover {
  background-color: var(--golden);
  color: var(--black);
}

/*----- TYPOGRAPHY-----*/
h1 {
  font-family: var(--kanit);
  font-size: 72px;
  font-weight: 500;
}
@media screen and (max-width: 1599px) {
  h1 {
    font-size: 62px;
  }
}
@media screen and (max-width: 1399px) {
  h1 {
    font-size: 57px;
  }
}
@media screen and (max-width: 1199px) {
  h1 {
    font-size: 52px;
  }
}
@media screen and (max-width: 991px) {
  h1 {
    font-size: 47px;
  }
}
@media screen and (max-width: 767px) {
  h1 {
    font-size: 40px;
  }
}
@media screen and (max-width: 575px) {
  h1 {
    font-size: 35px;
  }
}
@media screen and (max-width: 479px) {
  h1 {
    font-size: 30px;
  }
}

h2 {
  font-size: 60px;
}

h4 {
  font-size: 36px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 18px;
}

p {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.56;
}

/* ----- Header ----- */
.nk-header {
  padding: 24px 0;
  border-bottom: 1px solid rgba(18, 18, 18, 0.102);
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1199px) {
  .nk-header {
    padding: 14px 0;
  }
}
.nk-header__row {
  display: flex;
}
@media screen and (max-width: 991px) {
  .nk-header__row {
    justify-content: space-between;
  }
}
.nk-header__row > * {
  flex-shrink: 0;
}
.nk-header-offcanvas {
  flex: auto;
  margin: 0 35px;
  position: relative;
}
@media screen and (max-width: 1199px) {
  .nk-header-offcanvas {
    margin: 0 25px;
  }
}
@media screen and (max-width: 991px) {
  .nk-header-offcanvas {
    position: fixed;
    background-color: var(--white-f);
    top: 0;
    height: 100%;
    z-index: 60;
    width: 300px;
    right: 0;
    margin: 0;
    clip-path: circle(0% at 100% 0);
    transition: 0.4s linear;
    padding: 30px;
  }
}
.nk-header-offcanvas::before {
  content: "";
  position: absolute;
  inset: 0;
  border-inline: 1px solid rgba(18, 18, 18, 0.102);
  height: calc(100% + 58px);
  top: 50%;
  translate: 0 -50%;
}
@media screen and (max-width: 991px) {
  .nk-header-offcanvas.active {
    clip-path: circle(200% at 100% 0);
  }
}
.nk-header-offcanvas__heading {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.nk-header__nav > ul {
  display: flex;
  justify-content: center;
  gap: 30px;
}
@media screen and (max-width: 1199px) {
  .nk-header__nav > ul {
    gap: 20px;
  }
}
@media screen and (max-width: 991px) {
  .nk-header__nav > ul {
    flex-direction: column;
    row-gap: 0;
  }
}
.nk-header__nav > ul > li {
  position: relative;
  line-height: 50px;
}
@media screen and (max-width: 991px) {
  .nk-header__nav > ul > li {
    line-height: 35px;
    display: grid;
    grid-template-rows: max-content 0fr;
    transition: 0.4s ease;
  }
}
.nk-header__nav > ul > li:hover {
  display: grid;
  grid-template-rows: max-content 1fr;
}
.nk-header__nav > ul > li:hover .sub-menu {
  transform: rotateX(0deg) translate(-50%, 0);
  opacity: 1;
  pointer-events: all;
}
@media screen and (max-width: 991px) {
  .nk-header__nav > ul > li:hover .sub-menu {
    transform: rotateX(0deg) translate(0, 0);
    padding: 15px 0;
  }
}
.nk-header__nav > ul > li:last-child a {
  padding-right: 0;
}
.nk-header__nav > ul > li:last-child a::before {
  content: none;
}
.nk-header__nav > ul a {
  color: var(--black);
  position: relative;
  font-weight: 500;
  text-transform: uppercase;
  padding-right: 32px;
}
@media screen and (max-width: 1199px) {
  .nk-header__nav > ul a {
    padding-right: 22px;
  }
}
@media screen and (max-width: 991px) {
  .nk-header__nav > ul a {
    padding-right: 0;
    width: 100%;
  }
}
.nk-header__nav > ul a:hover {
  color: var(--purple);
}
.nk-header__nav > ul a::before {
  position: absolute;
  content: "/";
  top: 50%;
  right: 0;
  translate: 0 -50%;
}
@media screen and (max-width: 991px) {
  .nk-header__nav > ul a::before {
    content: none;
  }
}
.nk-header .sub-menu {
  position: absolute;
  top: 100%;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  padding: 15px 0;
  left: 50%;
  opacity: 0;
  pointer-events: none;
  transition: 0.4s cubic-bezier(0.6, 0, 0.4, 1);
  transform: rotateX(90deg) translate(-50%, 0);
  transform-origin: top;
  z-index: 2;
  background-color: #fbfbfb;
  border: 1px solid #ddd;
  border-radius: 10px;
  width: max-content;
}
@media screen and (max-width: 991px) {
  .nk-header .sub-menu {
    width: 100%;
    transform: rotateX(90deg) translate(0, 0);
    position: static;
    padding: 0;
    overflow: hidden;
  }
}
.nk-header .sub-menu li {
  line-height: normal;
}
.nk-header .sub-menu a {
  line-height: normal;
  padding: 0 15px;
}
.nk-header .sub-menu a::before {
  content: none;
}
.nk-header__btns {
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 479px) {
  .nk-header__btns {
    gap: 8px;
  }
}
@media screen and (max-width: 479px) {
  .nk-header__btns .nk-def-btn {
    padding: 0 15px;
  }
}

.nk-def-btn.nk-mobile-menu {
  padding: 0 15px;
  font-size: 18px;
}
@media screen and (max-width: 479px) {
  .nk-def-btn.nk-mobile-menu {
    padding: 0 12px;
  }
}

.nk-inner-header {
  background-color: rgba(255, 255, 255, 0.4);
}

/* ----- Banner ----- */
.nk-banner {
  position: relative;
  z-index: 1;
  padding-top: 106px;
}
@media screen and (max-width: 1599px) {
  .nk-banner {
    padding-top: 66px;
  }
}
@media screen and (max-width: 1399px) {
  .nk-banner {
    padding-top: 46px;
  }
}
@media screen and (max-width: 991px) {
  .nk-banner {
    padding-top: 31px;
  }
}
@media screen and (max-width: 767px) {
  .nk-banner {
    padding-top: 26px;
  }
}
.nk-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  top: -200px;
  background: url(../img/banner-bg.png) no-repeat center center;
  background-size: 100% 100%;
  z-index: -99;
  pointer-events: none;
}
.nk-banner__title {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}
@media screen and (max-width: 1599px) {
  .nk-banner__title {
    width: 95%;
    margin: auto;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1399px) {
  .nk-banner__title {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1199px) {
  .nk-banner__title {
    width: 100%;
  }
}
@media screen and (max-width: 991px) {
  .nk-banner__title {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 575px) {
  .nk-banner__title {
    margin-bottom: 5px;
  }
}
.nk-banner__title .colored {
  color: var(--purple);
}
.nk-banner__title::before {
  content: "";
  position: absolute;
  right: 80px;
  top: calc(100% + 10px);
  background: url(../img/banner-arrow.png) no-repeat center right;
  background-size: 283px 62px;
  width: 283px;
  height: 62px;
  animation: reveal 1.2s ease;
}
@media screen and (max-width: 1199px) {
  .nk-banner__title::before {
    top: calc(100% + 5px);
    background-size: 193px 42px;
    width: 253px;
    height: 42px;
  }
}
@media screen and (max-width: 991px) {
  .nk-banner__title::before {
    right: 0;
  }
}
@media screen and (max-width: 767px) {
  .nk-banner__title::before {
    content: none;
  }
}
.nk-banner__title img {
  aspect-ratio: 1;
  width: 60px;
}
@media screen and (max-width: 1399px) {
  .nk-banner__title img {
    width: 56px;
  }
}
@media screen and (max-width: 1199px) {
  .nk-banner__title img {
    width: 50px;
  }
}
@media screen and (max-width: 991px) {
  .nk-banner__title img {
    width: 45px;
  }
}
@media screen and (max-width: 767px) {
  .nk-banner__title img {
    width: 38px;
  }
}
@media screen and (max-width: 575px) {
  .nk-banner__title img {
    width: 36px;
  }
}
@media screen and (max-width: 479px) {
  .nk-banner__title img {
    width: 30px;
  }
}
@keyframes reveal {
  0% {
    width: 0;
  }
  100% {
    width: 283px;
  }
}
.nk-banner__link {
  display: inline-flex;
  align-items: center;
  background-color: var(--white-f);
  padding: 15px 45px;
  gap: 20px;
  border-radius: 8px;
  box-shadow: 0 18px 24px 0px rgba(0, 0, 0, 0.07);
  margin-top: 100px;
  min-width: 248px;
  text-align: left;
  color: var(--black);
  border: 1px solid transparent;
}
.nk-banner__link[data-sal] {
  transition: 0.4s ease, transform 1.2s ease, opacity 1.2s ease, color 0.4s ease, border-color 0.4s ease;
}
.nk-banner__link[data-sal]:nth-child(2) {
  transition: 0.4s ease, transform 1.2s ease 0.2s, opacity 1.2s ease 0.2s, color 0.4s ease 0s, border-color 0.4s ease 0s;
}
.nk-banner__link[data-sal]:nth-child(3) {
  transition: 0.4s ease, transform 1.2s ease 0.4s, opacity 1.2s ease 0.4s, color 0.4s ease 0s, border-color 0.4s ease 0s;
}
@media screen and (max-width: 1599px) {
  .nk-banner__link {
    margin-top: 70px;
  }
}
@media screen and (max-width: 1399px) {
  .nk-banner__link {
    margin-top: 55px;
  }
}
@media screen and (max-width: 1199px) {
  .nk-banner__link {
    margin-top: 45px;
    min-width: auto;
    width: 100%;
    padding: 12px 25px;
    gap: 15px;
  }
}
@media screen and (max-width: 991px) {
  .nk-banner__link {
    margin-top: 40px;
    box-shadow: 0 14px 20px 0px rgba(0, 0, 0, 0.06);
  }
}
@media screen and (max-width: 767px) {
  .nk-banner__link {
    margin-top: 17px;
    box-shadow: 0 14px 20px 0px rgba(0, 0, 0, 0.05);
  }
}
@media screen and (max-width: 575px) {
  .nk-banner__link {
    padding: 10px 20px;
  }
}
@media screen and (max-width: 479px) {
  .nk-banner__link {
    padding: 10px 15px;
    gap: 10px;
    font-size: 15px;
  }
}
.nk-banner__link:hover {
  color: var(--purple);
  border-color: var(--purple);
}
.nk-banner__link .main-icon {
  flex-shrink: 0;
}
@media screen and (max-width: 479px) {
  .nk-banner__link .main-icon {
    display: none;
  }
}
.nk-banner__link .link-txt {
  flex: auto;
}
.nk-banner__img {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .nk-banner__img {
    padding-top: 25px;
  }
}
@media screen and (max-width: 575px) {
  .nk-banner__img {
    padding-top: 10px;
  }
}
.nk-banner__img img {
  max-width: 780px;
  max-height: 655px;
  object-fit: contain;
}
@media screen and (max-width: 1599px) {
  .nk-banner__img img {
    max-width: 600px;
  }
}
@media screen and (max-width: 1399px) {
  .nk-banner__img img {
    max-width: 500px;
  }
}
@media screen and (max-width: 1199px) {
  .nk-banner__img img {
    max-width: 450px;
  }
}
@media screen and (max-width: 991px) {
  .nk-banner__img img {
    max-width: 430px;
  }
}
@media screen and (max-width: 767px) {
  .nk-banner__img img {
    max-width: 380px;
  }
}
@media screen and (max-width: 575px) {
  .nk-banner__img img {
    max-width: 350px;
  }
}
@media screen and (max-width: 479px) {
  .nk-banner__img img {
    max-width: 300px;
  }
}
.nk-banner .ticker {
  background-color: #fcd966;
  transform: skew(0, 5deg);
  padding: 17px 0;
  position: relative;
  z-index: 1;
  width: calc(100% + 30px);
  left: -10px;
}
.nk-banner .ticker .splide__track {
  overflow: visible;
}
.nk-banner .ticker .splide__slide {
  transform: skew(-5deg, 0);
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 0;
  position: relative;
  padding-left: 52px;
  width: auto !important;
  margin: 0 40px;
}
@media screen and (max-width: 1199px) {
  .nk-banner .ticker .splide__slide {
    font-size: 25px;
    margin: 0 30px;
  }
}
@media screen and (max-width: 767px) {
  .nk-banner .ticker .splide__slide {
    margin: 0 20px;
  }
}
@media screen and (max-width: 575px) {
  .nk-banner .ticker .splide__slide {
    font-size: 25px;
  }
}
@media screen and (max-width: 479px) {
  .nk-banner .ticker .splide__slide {
    margin: 0 10px;
    font-size: 20px;
    padding-left: 37px;
  }
}
.nk-banner .ticker .splide__slide::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  background: url(../img/banner-vector-2.png) no-repeat center center;
  background-size: 100% 100%;
  width: 32px;
  height: 32px;
}
@media screen and (max-width: 479px) {
  .nk-banner .ticker .splide__slide::before {
    width: 22px;
    height: 22px;
  }
}
.nk-banner .ticker-2 {
  transform: skew(0, -5deg) translateY(-100%);
  z-index: 0;
  background-color: var(--black);
  color: var(--white-f);
}
.nk-banner .ticker-2 .splide__slide {
  transform: skew(5deg, 0);
}
.nk-banner .ticker-2 .splide__slide::before {
  background-image: url(../img/banner-vector-3.png);
}
.nk-banner .vectors img {
  position: absolute;
  z-index: -2;
  width: 62px;
  height: 62px;
}
@media screen and (max-width: 991px) {
  .nk-banner .vectors img {
    width: 40px;
    height: 40px;
  }
}
.nk-banner .vectors img:first-child {
  animation: spin 3.5s linear reverse infinite;
  left: 70px;
  bottom: 240px;
}
@media screen and (max-width: 991px) {
  .nk-banner .vectors img:first-child {
    left: -30px;
    bottom: 190px;
  }
}
@media screen and (max-width: 767px) {
  .nk-banner .vectors img:first-child {
    left: 120px;
    bottom: 130px;
  }
}
@media screen and (max-width: 575px) {
  .nk-banner .vectors img:first-child {
    left: 100px;
    bottom: 130px;
  }
}
.nk-banner .vectors img:nth-child(2) {
  animation: spin 3.5s linear infinite;
  bottom: 330px;
  right: 90px;
}
@media screen and (max-width: 991px) {
  .nk-banner .vectors img:nth-child(2) {
    bottom: 250px;
    right: -30px;
  }
}
@media screen and (max-width: 767px) {
  .nk-banner .vectors img:nth-child(2) {
    bottom: 190px;
    right: 130px;
  }
}
@media screen and (max-width: 575px) {
  .nk-banner .vectors img:nth-child(2) {
    bottom: 190px;
    right: 105px;
  }
}
.nk-banner__shapes img {
  position: absolute;
  z-index: -1;
  top: -110px;
  left: 0;
  pointer-events: none;
}
.nk-banner__shapes img:nth-child(2) {
  top: auto;
  left: auto;
  right: 0;
  bottom: 270px;
  scale: -1;
}

@keyframes spin {
  0% {
    transform: rotate(0) scale(1);
  }
  25%, 100% {
    transform: rotate(90deg) scale(1);
  }
  50% {
    transform: rotate(90deg) scale(0.5);
  }
}
@keyframes moveX {
  0% {
    margin-left: -7620px;
  }
  100% {
    margin-left: 0;
  }
}
.reveal {
  visibility: hidden;
  position: relative;
  width: 100%;
  overflow: hidden;
}
.reveal img {
  height: 100%;
  object-fit: cover;
  transform-origin: left;
  transition: none;
}

/* ----- About ----- */
.nk-about {
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.4);
  padding: 120px 60px;
  margin-bottom: 120px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1399px) {
  .nk-about {
    padding: 60px 40px;
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 991px) {
  .nk-about {
    padding: 40px;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  .nk-about {
    padding: 40px 35px;
  }
}
@media screen and (max-width: 575px) {
  .nk-about {
    padding: 35px 30px;
  }
}
@media screen and (max-width: 479px) {
  .nk-about {
    padding: 25px 20px;
  }
}
.nk-about::before {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
  background: url(../img/about-vector.png) no-repeat center center;
  background-size: 100% 100%;
  width: 216px;
  height: 197px;
  bottom: -80px;
  right: -263px;
  animation: flipX 1.6s ease infinite alternate;
}
@media screen and (max-width: 1199px) {
  .nk-about-info {
    text-align: center;
  }
}
.nk-about-info__title {
  color: #161616;
  margin-bottom: 8px;
}
@media screen and (max-width: 479px) {
  .nk-about-info__title {
    margin-bottom: 2px;
  }
}
.nk-about-info__value {
  color: #555555;
  font-size: 18px;
  line-height: 1.556;
  margin-bottom: 0;
}
.nk-about-txt {
  display: flex;
  gap: 200px;
  margin-bottom: 54px;
}
@media screen and (max-width: 1199px) {
  .nk-about-txt {
    gap: 100px;
    margin-bottom: 38px;
  }
}
@media screen and (max-width: 991px) {
  .nk-about-txt {
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-bottom: 18px;
  }
}
.nk-about-txt__title {
  font-size: 46px;
  color: rgb(18, 18, 18);
  line-height: 1.13;
  margin-bottom: 22px;
}
@media screen and (max-width: 1199px) {
  .nk-about-txt__title {
    font-size: 40px;
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 991px) {
  .nk-about-txt__title {
    font-size: 35px;
  }
}
@media screen and (max-width: 767px) {
  .nk-about-txt__title {
    font-size: 28px;
  }
}
@media screen and (max-width: 575px) {
  .nk-about-txt__title {
    font-size: 25px;
  }
}
@media screen and (max-width: 479px) {
  .nk-about-txt__title {
    font-size: 20px;
    margin-bottom: 8px;
  }
}
.nk-about-txt__descr {
  font-size: 18px;
  color: rgb(85, 85, 85);
  line-height: 1.556;
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .nk-about-txt__descr {
    font-size: 16px;
    margin-bottom: 22px;
  }
}
.nk-about-txt__right {
  flex-shrink: 0;
}
.nk-about-txt__actions {
  display: flex;
  align-items: center;
  gap: 60px;
}
@media screen and (max-width: 767px) {
  .nk-about-txt__actions {
    gap: 40px;
  }
}
@media screen and (max-width: 479px) {
  .nk-about-txt__actions {
    flex-direction: column;
    gap: 15px;
  }
}
.nk-about-highlight {
  position: relative;
}
@media screen and (max-width: 991px) {
  .nk-about-highlight {
    text-align: center;
  }
}
.nk-about-highlight::before {
  content: "";
  position: absolute;
  top: calc(100% + 15px);
  right: calc(100% - 10px);
  background: url(../img/banner-arrow.png) no-repeat center center;
  background-size: 100% 100%;
  width: 225px;
  height: 50px;
  pointer-events: none;
  scale: -1 1;
}
@media screen and (max-width: 1199px) {
  .nk-about-highlight::before {
    right: calc(100% - 50px);
    width: 140px;
    height: 30px;
  }
}
@media screen and (max-width: 991px) {
  .nk-about-highlight::before {
    right: -140px;
    top: -10px;
    width: 160px;
    height: 35px;
    transform: scale(-1, 1) rotate(-36deg);
  }
}
@media screen and (max-width: 479px) {
  .nk-about-highlight::before {
    content: none;
  }
}
.nk-about-highlight .number {
  font-size: 135px;
  color: rgb(18, 18, 18);
  line-height: 1;
  margin-bottom: 7px;
}
@media screen and (max-width: 991px) {
  .nk-about-highlight .number {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .nk-about-highlight .number {
    font-size: 105px;
  }
}
@media screen and (max-width: 479px) {
  .nk-about-highlight .number {
    font-size: 95px;
  }
}
.nk-about-highlight .title {
  font-size: 24px;
  color: rgb(18, 18, 18);
  line-height: 1.417;
}
@media screen and (max-width: 575px) {
  .nk-about-highlight .title {
    font-size: 22px;
  }
}

@keyframes flipX {
  0% {
    transform: scaleX(-1);
  }
  100% {
    transform: scaleX(1);
  }
}
.nk-about--inner {
  background-color: transparent;
  margin-bottom: 0;
  padding-inline: 0;
  padding-bottom: 0;
}

/* ----- SERVICES ----- */
.nk-services {
  background: url(../img/dark-bg.jpg) repeat;
  background-size: contain;
}

.nk-service {
  border-top: 1px solid rgba(255, 255, 255, 0.102);
  transition: 0.4s ease;
  color: var(--white-f);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 29px 0;
  position: relative;
  column-gap: 20px;
}
@media screen and (max-width: 1399px) {
  .nk-service {
    padding: 20px 0;
  }
}
@media screen and (max-width: 1199px) {
  .nk-service {
    padding: 15px 0;
  }
}
@media screen and (max-width: 767px) {
  .nk-service {
    padding: 12px 0;
  }
}
@media screen and (max-width: 575px) {
  .nk-service {
    padding: 10px 0;
    row-gap: 10px;
  }
}
.nk-service:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.102);
}
.nk-service:hover .nk-service__title {
  color: var(--golden);
}
.nk-service:hover .nk-service__media .icon {
  color: var(--golden);
}
.nk-service__txt {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}
@media screen and (max-width: 479px) {
  .nk-service__txt {
    flex-direction: column;
    align-items: flex-start;
  }
}
.nk-service__title {
  font-size: 48px;
  line-height: 1.083;
  color: rgb(255, 255, 255);
  margin-bottom: 0;
  transition: 0.4s ease;
}
@media screen and (max-width: 1399px) {
  .nk-service__title {
    font-size: 40px;
  }
}
@media screen and (max-width: 1199px) {
  .nk-service__title {
    font-size: 35px;
  }
}
@media screen and (max-width: 991px) {
  .nk-service__title {
    font-size: 32px;
  }
}
@media screen and (max-width: 767px) {
  .nk-service__title {
    font-size: 30px;
  }
}
@media screen and (max-width: 575px) {
  .nk-service__title {
    font-size: 25px;
  }
}
@media screen and (max-width: 479px) {
  .nk-service__title {
    font-size: 20px;
  }
}
.nk-service__category {
  color: #cfcfcf;
  line-height: 1.56;
  margin-bottom: 2px;
}
@media screen and (max-width: 767px) {
  .nk-service__category {
    line-height: 1.16;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 575px) {
  .nk-service__category {
    font-size: 16px;
  }
}
.nk-service__media img {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  left: 50%;
  top: -50%;
  z-index: 2;
  transition: 0.1s;
  max-width: clamp(300px, 31.25vw, 600px);
  border-radius: 12px;
}
.nk-service__media .nk-service__icon-card {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  left: 50%;
  top: -50%;
  z-index: 2;
  transition: opacity 0.1s;
  width: clamp(280px, 28vw, 480px);
  aspect-ratio: 16/9;
  background: #0d0d0d;
  border: 1px solid rgba(134, 112, 239, 0.4);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.7), 0 0 24px rgba(134, 112, 239, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.nk-service__media .icon {
  font-size: 40px;
  line-height: 40px;
  transition: 0.4s ease;
}
@media screen and (max-width: 1199px) {
  .nk-service__media .icon {
    font-size: 35px;
  }
}
@media screen and (max-width: 991px) {
  .nk-service__media .icon {
    font-size: 32px;
  }
}
@media screen and (max-width: 767px) {
  .nk-service__media .icon {
    font-size: 30px;
  }
}
@media screen and (max-width: 575px) {
  .nk-service__media .icon {
    font-size: 25px;
  }
}
@media screen and (max-width: 479px) {
  .nk-service__media .icon {
    font-size: 20px;
  }
}
.nk-service.active .nk-service__media img,
.nk-service.active .nk-service__icon-card {
  opacity: 1;
}

.nk-inner-services {
  background: none;
}
.nk-inner-service {
  border-color: var(--black);
}
.nk-inner-service:hover .nk-service__title {
  color: var(--purple);
}
.nk-inner-service:hover .nk-service__media .icon {
  color: var(--purple);
}
.nk-inner-service:last-child {
  border-color: var(--black);
}
.nk-inner-service .nk-service__title {
  color: var(--black);
}
.nk-inner-service .nk-service__category {
  color: #5e5e5e;
}
.nk-inner-service .nk-service__media .icon {
  color: var(--black);
}

/* ----- SERVICE TABS ----- */
.nk-service-tabs {
  gap: 12px;
  border: none;
}
.nk-service-tabs .nav-link {
  font-family: var(--kanit);
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 14px 36px;
  border-radius: 10px;
  border: 3px solid var(--purple);
  color: var(--black);
  background: transparent;
  transition: 0.4s ease;
}
@media screen and (max-width: 1199px) {
  .nk-service-tabs .nav-link {
    font-size: 18px;
    padding: 12px 28px;
  }
}
@media screen and (max-width: 767px) {
  .nk-service-tabs .nav-link {
    font-size: 16px;
    padding: 10px 22px;
  }
}
@media screen and (max-width: 575px) {
  .nk-service-tabs .nav-link {
    font-size: 14px;
    padding: 8px 18px;
  }
}
.nk-service-tabs .nav-link:hover {
  background-color: rgba(134, 112, 239, 0.1);
  color: var(--purple);
}
.nk-service-tabs .nav-link.active {
  background-color: var(--purple);
  border-color: var(--purple);
  color: var(--white-f);
  box-shadow: 0px 9px 12px rgba(134, 112, 239, 0.3);
}

/* ----- EXPERIENCE ----- */
.nk-experiences {
  background-color: rgba(255, 255, 255, 0.4);
}
.nk-experiences-row {
  --bs-gutter-x: 85px;
}
@media screen and (max-width: 1399px) {
  .nk-experiences-row {
    --bs-gutter-x: 50px;
  }
}
@media screen and (max-width: 1199px) {
  .nk-experiences-row {
    --bs-gutter-x: 30px;
  }
}
@media screen and (max-width: 767px) {
  .nk-experiences-row {
    --bs-gutter-x: 20px;
  }
}

.nk-skills {
  margin-bottom: 97px;
}
@media screen and (max-width: 1399px) {
  .nk-skills {
    margin-bottom: 57px;
  }
}
@media screen and (max-width: 991px) {
  .nk-skills {
    margin-bottom: 37px;
  }
}

.nk-skill {
  border: 1px solid rgb(255, 255, 255);
  border-radius: 10px;
  box-shadow: 0 18px 24px 0px rgba(0, 0, 0, 0.07);
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 25px 35px;
}
@media screen and (max-width: 1399px) {
  .nk-skill {
    padding: 18px 25px;
    gap: 15px;
  }
}
@media screen and (max-width: 1199px) {
  .nk-skill {
    padding: 12px 15px;
    gap: 10px;
  }
}
@media screen and (max-width: 991px) {
  .nk-skill {
    padding: 17px 15px 7px;
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }
}
@media screen and (max-width: 575px) {
  .nk-skill {
    padding: 12px 15px;
    flex-direction: row;
    text-align: left;
    gap: 10px;
  }
}
@media screen and (max-width: 479px) {
  .nk-skill {
    padding: 12px 15px 4px;
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }
}
.nk-skill__img {
  border-radius: 50%;
  background-color: rgb(255, 255, 255);
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  flex-shrink: 0;
}
@media screen and (max-width: 1399px) {
  .nk-skill__img {
    width: 85px;
    height: 85px;
    padding: 15px;
  }
}
@media screen and (max-width: 1199px) {
  .nk-skill__img {
    width: 75px;
    height: 75px;
    padding: 10px;
  }
}
@media screen and (max-width: 991px) {
  .nk-skill__img {
    width: 70px;
    height: 70px;
    padding: 10px;
  }
}
@media screen and (max-width: 767px) {
  .nk-skill__img {
    width: 65px;
    height: 65px;
  }
}
@media screen and (max-width: 575px) {
  .nk-skill__img {
    width: 60px;
    height: 60px;
  }
}
.nk-skill__title {
  color: rgb(88, 88, 88);
  margin-bottom: 11px;
}
@media screen and (max-width: 1399px) {
  .nk-skill__title {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 1199px) {
  .nk-skill__title {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  .nk-skill__title {
    margin-bottom: 3px;
  }
}
.nk-skill__percent {
  margin-bottom: 0;
  font-size: 48px;
  color: rgb(18, 18, 18);
  line-height: 1.208;
}
@media screen and (max-width: 1399px) {
  .nk-skill__percent {
    font-size: 45px;
  }
}
@media screen and (max-width: 1199px) {
  .nk-skill__percent {
    font-size: 40px;
  }
}
@media screen and (max-width: 991px) {
  .nk-skill__percent {
    font-size: 35px;
  }
}
@media screen and (max-width: 767px) {
  .nk-skill__percent {
    font-size: 30px;
  }
}

.nk-infos__title {
  color: rgb(18, 18, 18);
  line-height: 1.944;
  padding-left: 40px;
  position: relative;
  margin-bottom: 7px;
}
@media screen and (max-width: 1399px) {
  .nk-infos__title {
    font-size: 32px;
  }
}
@media screen and (max-width: 1199px) {
  .nk-infos__title {
    font-size: 30px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 991px) {
  .nk-infos__title {
    font-size: 28px;
  }
}
@media screen and (max-width: 767px) {
  .nk-infos__title {
    font-size: 25px;
    padding-left: 25px;
  }
}
@media screen and (max-width: 575px) {
  .nk-infos__title {
    line-height: 1.5;
  }
}
.nk-infos__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  background: url(../img/banner-vector-2.png) no-repeat center center;
  background-size: 100% 100%;
  width: 25px;
  height: 25px;
  animation: spin 3.5s linear reverse infinite;
}
@media screen and (max-width: 767px) {
  .nk-infos__title::before {
    width: 15px;
    height: 15px;
  }
}

.nk-info {
  border: none;
  color: rgb(18, 18, 18);
  gap: 30px;
  padding: 30px 35px;
}
@media screen and (max-width: 1199px) {
  .nk-info {
    gap: 25px;
    padding: 20px 25px;
  }
}
@media screen and (max-width: 991px) {
  .nk-info {
    row-gap: 0;
  }
}
@media screen and (max-width: 767px) {
  .nk-info {
    padding: 15px 20px;
  }
}
.nk-info__timespan {
  margin-bottom: 0;
  line-height: 1.625;
  font-weight: 400;
}
.nk-info__title {
  font-size: 24px;
  line-height: 1.417;
}
@media screen and (max-width: 1199px) {
  .nk-info__title {
    font-size: 22px;
    margin-bottom: 4px;
  }
}
@media screen and (max-width: 767px) {
  .nk-info__title {
    font-size: 20px;
    margin-bottom: 2px;
  }
}
.nk-info__sub-title {
  font-size: 18px;
  color: rgb(85, 85, 85);
  line-height: 1.556;
  font-weight: 400;
  margin-bottom: 0;
}
.nk-info:not(:last-child) {
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .nk-info:not(:last-child) {
    margin-bottom: 20px;
  }
}

/* ----- PORTFOLIO ----- */
.nk-portfolios-container {
  display: block;
  column-count: 2;
  gap: 120px;
  overflow: hidden;
}
@media screen and (max-width: 1399px) {
  .nk-portfolios-container {
    gap: 100px;
  }
}
@media screen and (max-width: 991px) {
  .nk-portfolios-container {
    gap: 60px;
  }
}
@media screen and (max-width: 767px) {
  .nk-portfolios-container {
    gap: 30px;
  }
}
@media screen and (max-width: 575px) {
  .nk-portfolios-container {
    column-count: 1;
    width: 80%;
    margin-inline: auto;
  }
}
@media screen and (max-width: 479px) {
  .nk-portfolios-container {
    width: 100%;
  }
}

.nk-portfolio {
  position: relative;
  break-inside: avoid;
  padding-bottom: 115px;
}
@media screen and (max-width: 1399px) {
  .nk-portfolio {
    padding-bottom: 75px;
  }
}
@media screen and (max-width: 991px) {
  .nk-portfolio {
    padding-bottom: 55px;
  }
}
@media screen and (max-width: 767px) {
  .nk-portfolio {
    padding-bottom: 25px;
  }
}
@media screen and (max-width: 479px) {
  .nk-portfolio {
    padding-bottom: 20px;
  }
}
.nk-portfolio__filter-navs {
  border: 1px solid rgba(255, 255, 255, 0.651);
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.0651);
  box-shadow: 0 18px 24px rgba(0, 0, 0, 0.09);
  display: flex;
  width: max-content;
  margin: auto;
  max-width: 100%;
  flex-wrap: wrap;
  padding: 10px;
  margin-bottom: 60px;
}
@media screen and (max-width: 991px) {
  .nk-portfolio__filter-navs {
    padding: 6px;
    border-radius: 8px;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  .nk-portfolio__filter-navs {
    padding: 0;
    box-shadow: none;
    border: none;
    gap: 10px;
    justify-content: center;
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 479px) {
  .nk-portfolio__filter-navs {
    margin-bottom: 25px;
    gap: 8px;
  }
}
.nk-portfolio__nav {
  padding: 13px 30px;
  color: #555555;
  font-size: 18px;
  line-height: 1.56;
  border-radius: 5px;
}
@media screen and (max-width: 1199px) {
  .nk-portfolio__nav {
    padding: 8px 20px;
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .nk-portfolio__nav {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.651);
    padding: 6px 15px;
  }
}
@media screen and (max-width: 479px) {
  .nk-portfolio__nav {
    padding: 5px 10px;
  }
}
.nk-portfolio__nav:not(:first-child) {
  border-left: 1px solid rgba(25, 70, 65, 0.149);
}
@media screen and (max-width: 767px) {
  .nk-portfolio__nav:not(:first-child) {
    border-left-color: rgba(255, 255, 255, 0.651);
  }
}
.nk-portfolio__nav.mixitup-control-active, .nk-portfolio__nav.active {
  background-color: var(--purple);
  color: var(--white-f);
  border-color: transparent;
}
.nk-portfolio__img {
  margin-bottom: 27px;
}
@media screen and (max-width: 991px) {
  .nk-portfolio__img {
    margin-bottom: 17px;
  }
}
@media screen and (max-width: 767px) {
  .nk-portfolio__img {
    margin-bottom: 12px;
  }
}
.nk-portfolio__img img {
  width: 100%;
}
.nk-portfolio__category {
  font-size: 18px;
  color: rgb(134, 112, 239);
  line-height: 1.556;
  font-weight: 400;
  position: relative;
  display: inline-block;
  margin-bottom: 7px;
}
@media screen and (max-width: 991px) {
  .nk-portfolio__category {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .nk-portfolio__category {
    font-size: 16px;
  }
}
.nk-portfolio__category::before {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(100% + 20px);
  background-color: rgb(134, 112, 239);
  width: 60px;
  height: 2px;
}
.nk-portfolio__title {
  font-size: 30px;
  color: rgb(18, 18, 18);
  line-height: 1.333;
}
@media screen and (max-width: 991px) {
  .nk-portfolio__title {
    font-size: 26px;
  }
}
@media screen and (max-width: 767px) {
  .nk-portfolio__title {
    font-size: 24px;
  }
}
@media screen and (max-width: 479px) {
  .nk-portfolio__title {
    font-size: 22px;
  }
}
.nk-portfolio__title a:hover {
  color: var(--purple);
}

/* ----- TESTIMONIAL ----- */
.nk-testimonial {
  background: url(../img/testimonial-bg.jpg) no-repeat center center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}
.nk-testimonial::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 600px;
  height: 600px;
  border: solid var(--golden);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: strokeWidth 6.5s linear infinite;
}
@media screen and (max-width: 1399px) {
  .nk-testimonial::before {
    width: 400px;
    height: 400px;
  }
}
@media screen and (max-width: 1199px) {
  .nk-testimonial::before {
    width: 300px;
    height: 300px;
  }
}
@media screen and (max-width: 767px) {
  .nk-testimonial::before {
    width: 250px;
    height: 250px;
  }
}
@media screen and (max-width: 575px) {
  .nk-testimonial::before {
    width: 190px;
    height: 190px;
  }
}
@media screen and (max-width: 479px) {
  .nk-testimonial::before {
    width: 140px;
    height: 140px;
  }
}
@media screen and (max-width: 767px) {
  .nk-testimonial-slider {
    overflow: visible;
  }
}

@keyframes strokeWidth {
  0% {
    transform: translate(-90%, -90%);
    border-width: 0;
    box-shadow: 0px 0px 0 0 rgba(252, 217, 102, 0.3294117647);
  }
  50% {
    transform: translate(-50%, -50%);
    border-width: 80px;
    box-shadow: 0px 0px 0 0 rgba(252, 217, 102, 0.3294117647);
  }
  70% {
    transform: translate(-50%, -50%);
    border-width: 80px;
    border-color: var(--golden);
    box-shadow: 0px 0px 0 30px rgba(252, 217, 102, 0.3294117647);
  }
  100% {
    transform: translate(-50%, -50%);
    border-width: 80px;
    border-color: transparent;
    box-shadow: 0px 0px 0 70px rgba(252, 217, 99, 0);
  }
}
@media screen and (max-width: 1399px) {
  @keyframes strokeWidth {
    0% {
      transform: translate(-90%, -90%);
      border-width: 0;
      box-shadow: 0px 0px 0 0 rgba(252, 217, 102, 0.3294117647);
    }
    50% {
      transform: translate(-50%, -50%);
      border-width: 50px;
      box-shadow: 0px 0px 0 0 rgba(252, 217, 102, 0.3294117647);
    }
    70% {
      transform: translate(-50%, -50%);
      border-width: 50px;
      border-color: var(--golden);
      box-shadow: 0px 0px 0 30px rgba(252, 217, 102, 0.3294117647);
    }
    100% {
      transform: translate(-50%, -50%);
      border-width: 50px;
      border-color: transparent;
      box-shadow: 0px 0px 0 70px rgba(252, 217, 99, 0);
    }
  }
}
@media screen and (max-width: 991px) {
  @keyframes strokeWidth {
    0% {
      transform: translate(-90%, -90%);
      border-width: 0;
      box-shadow: 0px 0px 0 0 rgba(252, 217, 102, 0.3294117647);
    }
    50% {
      transform: translate(-50%, -50%);
      border-width: 40px;
      box-shadow: 0px 0px 0 0 rgba(252, 217, 102, 0.3294117647);
    }
    70% {
      transform: translate(-50%, -50%);
      border-width: 40px;
      border-color: var(--golden);
      box-shadow: 0px 0px 0 30px rgba(252, 217, 102, 0.3294117647);
    }
    100% {
      transform: translate(-50%, -50%);
      border-width: 40px;
      border-color: transparent;
      box-shadow: 0px 0px 0 70px rgba(252, 217, 99, 0);
    }
  }
}
.nk-testimony {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.015);
  border-radius: 10px;
  padding: 45px 40px;
  backdrop-filter: blur(4px);
  overflow: hidden;
}
@media screen and (max-width: 1399px) {
  .nk-testimony {
    padding: 35px;
  }
}
@media screen and (max-width: 1199px) {
  .nk-testimony {
    padding: 30px 35px;
  }
}
@media screen and (max-width: 991px) {
  .nk-testimony {
    padding: 20px 25px;
  }
}
.nk-testimony__txt {
  font-size: 20px;
  color: rgb(255, 255, 255);
  line-height: 1.5;
  margin-bottom: 47px;
}
@media screen and (max-width: 1199px) {
  .nk-testimony__txt {
    font-size: 18px;
    margin-bottom: 37px;
  }
}
@media screen and (max-width: 991px) {
  .nk-testimony__txt {
    font-size: 16px;
    margin-bottom: 27px;
  }
}
.nk-testimony__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nk-testimony__icon {
  border-radius: 4px;
  background-color: rgb(252, 217, 102);
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1199px) {
  .nk-testimony__icon {
    width: 60px;
    height: 60px;
  }
}
@media screen and (max-width: 991px) {
  .nk-testimony__icon {
    display: none;
  }
}
.nk-testimony__icon span {
  height: 0;
  line-height: 70px;
  font-size: 130px;
  font-family: sans-serif;
}
@media screen and (max-width: 1199px) {
  .nk-testimony__icon span {
    line-height: 60px;
    font-size: 120px;
  }
}

.nk-reviewer {
  display: flex;
  align-items: center;
  gap: 25px;
}
@media screen and (max-width: 1199px) {
  .nk-reviewer {
    gap: 15px;
  }
}
.nk-reviewer__img {
  flex-shrink: 0;
}
.nk-reviewer__img img {
  border-radius: 50%;
  width: 90px;
  height: 90px;
}
@media screen and (max-width: 1199px) {
  .nk-reviewer__img img {
    width: 80px;
    height: 80px;
  }
}
@media screen and (max-width: 991px) {
  .nk-reviewer__img img {
    width: 65px;
    height: 65px;
  }
}
.nk-reviewer__name {
  color: var(--white-f);
  font-size: 24px;
  line-height: 1.25;
  font-weight: 500;
  margin-bottom: 5px;
}
@media screen and (max-width: 1199px) {
  .nk-reviewer__name {
    font-size: 22px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 991px) {
  .nk-reviewer__name {
    font-size: 20px;
  }
}
.nk-reviewer__label {
  margin-bottom: 0;
  font-size: 16px;
  color: rgb(207, 207, 207);
  line-height: 1.625;
  font-weight: 400;
}

/* ----- PRICING ----- */
.nk-pricing {
  background-color: rgba(255, 255, 255, 0.4);
  position: relative;
}
.nk-pricing::before {
  content: "";
  position: absolute;
  top: 120px;
  right: 150px;
  background: url(../img/pricing-vector.png) no-repeat center center;
  background-size: 100% 100%;
  width: 103px;
  height: 128px;
  animation: scale 3s linear alternate infinite;
}
@media screen and (max-width: 1599px) {
  .nk-pricing::before {
    right: 60px;
  }
}
@media screen and (max-width: 1399px) {
  .nk-pricing::before {
    right: 20px;
    top: 80px;
  }
}
@media screen and (max-width: 991px) {
  .nk-pricing::before {
    right: -40px;
    top: 50px;
    width: 83px;
    height: 108px;
  }
}
@media screen and (max-width: 575px) {
  .nk-pricing::before {
    width: 73px;
    height: 98px;
  }
}
@keyframes scale {
  0% {
    scale: 0.5;
  }
  100% {
    scale: 1;
  }
}
.nk-pricing-pack {
  padding: 45px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: solid rgb(18, 18, 18);
  border-width: 0 1px;
}
.nk-pricing-pack:not(.nk-pricing-pack--first, .nk-pricing-pack--last) {
  border-width: 0;
}
@media screen and (max-width: 991px) {
  .nk-pricing-pack:not(.nk-pricing-pack--first, .nk-pricing-pack--last) {
    border-right-width: 1px;
  }
}
@media screen and (max-width: 575px) {
  .nk-pricing-pack:not(.nk-pricing-pack--first, .nk-pricing-pack--last) {
    border-left-width: 1px;
  }
}
@media screen and (max-width: 1399px) {
  .nk-pricing-pack {
    padding: 30px 45px;
  }
}
@media screen and (max-width: 1199px) {
  .nk-pricing-pack {
    padding: 25px 30px;
  }
}
@media screen and (max-width: 767px) {
  .nk-pricing-pack {
    padding: 20px;
  }
}
.nk-pricing-pack__tag {
  position: absolute;
  top: 0;
  right: 0;
  background-color: rgb(48, 53, 58);
  padding: 20px 5px 20px 4px;
  writing-mode: vertical-lr;
  scale: -1;
  color: var(--white-f);
  text-transform: uppercase;
  text-align: center;
  font-weight: 500;
  z-index: -1;
}
.nk-pricing-pack__heading {
  border-bottom: 1px solid rgb(18, 18, 18);
  margin-bottom: 37px;
}
@media screen and (max-width: 1399px) {
  .nk-pricing-pack__heading {
    margin-bottom: 27px;
  }
}
@media screen and (max-width: 1199px) {
  .nk-pricing-pack__heading {
    margin-bottom: 22px;
  }
}
@media screen and (max-width: 767px) {
  .nk-pricing-pack__heading {
    margin-bottom: 17px;
  }
}
.nk-pricing-pack__icon {
  width: 90px;
  height: 90px;
  background-color: var(--purple);
  box-shadow: 5px 5px 0 rgb(18, 18, 18);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1399px) {
  .nk-pricing-pack__icon {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1199px) {
  .nk-pricing-pack__icon {
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 767px) {
  .nk-pricing-pack__icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }
}
.nk-pricing-pack__title {
  font-size: 30px;
  color: rgb(18, 18, 18);
  line-height: 1.333;
  font-weight: 500;
  margin-bottom: 32px;
}
@media screen and (max-width: 1399px) {
  .nk-pricing-pack__title {
    margin-bottom: 27px;
  }
}
@media screen and (max-width: 1199px) {
  .nk-pricing-pack__title {
    margin-bottom: 20px;
    font-size: 26px;
  }
}
@media screen and (max-width: 767px) {
  .nk-pricing-pack__title {
    margin-bottom: 18px;
    font-size: 24px;
  }
}
.nk-pricing-pack__price {
  color: #121212;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 37px;
}
@media screen and (max-width: 1399px) {
  .nk-pricing-pack__price {
    margin-bottom: 27px;
  }
}
@media screen and (max-width: 1199px) {
  .nk-pricing-pack__price {
    margin-bottom: 22px;
  }
}
@media screen and (max-width: 767px) {
  .nk-pricing-pack__price {
    margin-bottom: 17px;
    font-size: 18px;
  }
}
.nk-pricing-pack__price span.number {
  font-weight: 500;
  font-size: 72px;
  color: rgb(134, 112, 239);
  line-height: 0.556;
}
@media screen and (max-width: 1399px) {
  .nk-pricing-pack__price span.number {
    font-size: 62px;
  }
}
@media screen and (max-width: 1199px) {
  .nk-pricing-pack__price span.number {
    font-size: 52px;
  }
}
@media screen and (max-width: 767px) {
  .nk-pricing-pack__price span.number {
    font-size: 42px;
  }
}
.nk-pricing-pack__features {
  margin-bottom: 37px;
}
@media screen and (max-width: 1399px) {
  .nk-pricing-pack__features {
    margin-bottom: 27px;
  }
}
@media screen and (max-width: 1199px) {
  .nk-pricing-pack__features {
    margin-bottom: 22px;
  }
}
.nk-pricing-pack__features li {
  position: relative;
  padding-left: 18px;
  font-size: 18px;
  color: rgb(85, 85, 85);
  line-height: 1.556;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .nk-pricing-pack__features li {
    font-size: 16px;
    padding-left: 16px;
  }
}
.nk-pricing-pack__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  border-radius: 50%;
  background-color: rgb(134, 112, 239);
  width: 8px;
  height: 8px;
}
@media screen and (max-width: 767px) {
  .nk-pricing-pack__features li::before {
    width: 6px;
    height: 6px;
  }
}
.nk-pricing-pack__features li:not(:last-child) {
  margin-bottom: 14px;
}
@media screen and (max-width: 991px) {
  .nk-pricing-pack__features li:not(:last-child) {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .nk-pricing-pack__features li:not(:last-child) {
    margin-bottom: 8px;
  }
}
.nk-pricing-pack__features li.disabled-feature {
  opacity: 60%;
}
.nk-pricing-pack__features li.disabled-feature::before {
  background-color: gray;
}
.nk-pricing-pack .nk-def-btn {
  display: block;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .nk-pricing-pack .nk-def-btn {
    height: 50px;
    line-height: 43px;
    padding: 0 15px;
    font-size: 14px;
  }
}
.nk-pricing-pack__ideal {
  font-size: 14px;
  color: #555555;
  line-height: 1.5;
  margin-bottom: 20px;
  padding-top: 5px;
}
.nk-pricing-pack__ideal strong {
  color: var(--black);
}
@media screen and (max-width: 767px) {
  .nk-pricing-pack__ideal {
    font-size: 13px;
    margin-bottom: 15px;
  }
}
.nk-pricing-pack-pop .nk-pricing-pack__icon {
  background-color: var(--golden);
}
.nk-pricing-pack-pop .nk-def-btn {
  background-color: #fffaec;
  color: var(--black);
  box-shadow: 0px 9px 12px rgba(252, 217, 102, 0.3);
  border-color: var(--golden);
}
.nk-pricing-pack-pop .nk-def-btn::before {
  background-color: var(--golden);
}

/* ----- RETAINER NOTE ----- */
.nk-retainer-note {
  font-size: 18px;
  color: #555555;
  font-weight: 400;
  font-style: italic;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .nk-retainer-note {
    font-size: 16px;
    margin-top: 20px;
  }
}

/* ----- CTA ----- */
@media screen and (max-width: 1399px) {
  .nk-cta {
    padding-top: 80px;
  }
}
@media screen and (max-width: 991px) {
  .nk-cta {
    padding-top: 60px;
  }
}
.nk-cta__heading {
  text-align: left;
  width: 100%;
  margin-bottom: 23px;
}
@media screen and (max-width: 479px) {
  .nk-cta__heading {
    margin-bottom: 18px;
  }
}
.nk-cta__heading .nk-section__sub-title {
  padding-left: 85px;
}
@media screen and (max-width: 479px) {
  .nk-cta__heading .nk-section__sub-title {
    padding-left: 65px;
  }
}
.nk-cta__heading .nk-section__sub-title::before {
  left: 0;
}
.nk-cta__heading .nk-section__sub-title::after {
  content: none;
}
.nk-cta-top {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.nk-cta-top .hand {
  position: absolute;
  bottom: -164px;
  width: 295px;
  right: 109%;
  width: 46.4%;
  pointer-events: none;
  z-index: 1;
  transform-origin: 0 110%;
  animation: handMove 3.5s ease alternate infinite;
}
@media screen and (max-width: 1599px) {
  .nk-cta-top .hand {
    bottom: -94px;
    right: 104%;
    width: 175px;
  }
}
.nk-cta-top .hand::before {
  content: "";
  position: absolute;
  background: #e3e3e3;
  border-radius: 50%;
  right: 0;
  top: 0;
  transform: translate(50%, -50%);
  z-index: -2;
  animation: handTouch 1.5s ease forwards infinite;
  mix-blend-mode: difference;
}
.nk-cta-top__txt {
  position: relative;
  margin-bottom: 130px;
}
@media screen and (max-width: 1399px) {
  .nk-cta-top__txt {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 1199px) {
  .nk-cta-top__txt {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 479px) {
  .nk-cta-top__txt {
    margin-bottom: 20px;
  }
}
.nk-cta-top__txt .nk-about-txt__descr {
  margin-bottom: 37px;
}
@media screen and (max-width: 1199px) {
  .nk-cta-top__txt .nk-about-txt__descr {
    margin-bottom: 22px;
  }
}
@media screen and (max-width: 479px) {
  .nk-cta-top__actions {
    gap: 15px;
    flex-direction: row;
  }
}
.nk-cta-top__achievement {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 479px) {
  .nk-cta-top__achievement {
    gap: 15px;
  }
}
.nk-cta-top__achievement .title {
  color: var(--purple);
  margin-bottom: 0;
}
.nk-cta-top__img {
  position: relative;
  width: max-content;
  max-width: 100%;
  z-index: 1;
}
@media screen and (max-width: 991px) {
  .nk-cta-top__img {
    width: 500px;
    margin: auto;
  }
}
@media screen and (max-width: 767px) {
  .nk-cta-top__img {
    width: 400px;
  }
}
.nk-cta-top__img::before, .nk-cta-top__img::after {
  content: "";
  position: absolute;
  background: url(../img/cta-vector-stroke.png) no-repeat center center;
  background-size: 100% 100%;
  width: 115%;
  height: 75%;
  z-index: -1;
  rotate: 9deg;
  transform: scaleX(-1);
  left: 52px;
  top: 90px;
}
@media screen and (max-width: 1399px) {
  .nk-cta-top__img::before, .nk-cta-top__img::after {
    width: 110%;
    height: 80%;
  }
}
.nk-cta-top__img::after {
  background-image: url(../img/cta-vector.png);
  width: 110px;
  height: 110px;
  left: auto;
  right: 0px;
  top: 130px;
  animation: cta_spin 3.5s linear infinite;
}
@media screen and (max-width: 1199px) {
  .nk-cta-top__img::after {
    width: 90px;
    height: 90px;
    top: 120px;
  }
}
@media screen and (max-width: 767px) {
  .nk-cta-top__img::after {
    top: 100px;
  }
}
@media screen and (max-width: 479px) {
  .nk-cta-top__img::after {
    top: 70px;
    width: 70px;
    height: 70px;
  }
}
.nk-cta-bottom {
  background: url(../img/cta-bg.png) var(--purple) repeat-x center center;
  background-size: cover;
  padding: 60px 0;
  transition: 0.8s;
  animation: bgMoveX 50s linear forwards infinite;
}
@media screen and (max-width: 1199px) {
  .nk-cta-bottom {
    padding: 40px 0;
  }
}
@media screen and (max-width: 575px) {
  .nk-cta-bottom {
    padding: 30px 0;
  }
}
.nk-cta-bottom .nk-section__title {
  color: var(--white-f);
}

.nk-nwsltr-form {
  border-radius: 10px;
  background-color: rgb(101, 82, 193);
  padding: 10px;
  display: flex;
}
@media screen and (max-width: 991px) {
  .nk-nwsltr-form {
    padding: 6px;
  }
}
@media screen and (max-width: 479px) {
  .nk-nwsltr-form {
    flex-direction: column;
    row-gap: 5px;
  }
}
.nk-nwsltr-form input {
  width: 100%;
  color: var(--white-f);
  padding: 0 30px 0 20px;
}
@media screen and (max-width: 479px) {
  .nk-nwsltr-form input {
    height: 40px;
    padding: 0 10px;
  }
}
.nk-nwsltr-form input:-webkit-autofill-previewed, .nk-nwsltr-form input:-webkit-autofill:focus, .nk-nwsltr-form input:-webkit-autofill:hover {
  background-color: red !important;
}
.nk-nwsltr-form input::placeholder {
  color: rgba(255, 255, 255, 0.65);
}
.nk-nwsltr-form .nk-def-btn {
  flex-shrink: 0;
  background-color: transparent;
  color: var(--black);
  border-radius: 7px;
  height: 55px;
  line-height: normal;
  border-color: var(--golden);
}
@media screen and (max-width: 1399px) {
  .nk-nwsltr-form .nk-def-btn {
    padding: 0 25px;
  }
}
@media screen and (max-width: 1199px) {
  .nk-nwsltr-form .nk-def-btn {
    height: 50px;
  }
}
@media screen and (max-width: 991px) {
  .nk-nwsltr-form .nk-def-btn {
    height: 45px;
    border-radius: 5px;
  }
}
.nk-nwsltr-form .nk-def-btn:hover {
  transform: translateY(0);
  color: var(--white-f);
}
.nk-nwsltr-form .nk-def-btn::before {
  background-color: var(--golden);
}
.nk-nwsltr-form .nk-def-btn i {
  padding-left: 5px;
}

@keyframes handMove {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(16deg);
  }
}
@keyframes handTouch {
  0%, 50% {
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    width: 50px;
    height: 50px;
    opacity: 0;
  }
}
@keyframes bgMoveX {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: 1920px;
  }
}
@keyframes cta_spin {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* ----- BLOGS ----- */
.nk-blogs {
  position: relative;
  z-index: 1;
}
.nk-blogs-slider {
  padding: 0 20px 15px;
  margin: 0 -20px -15px;
}
.nk-blogs::before {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
  background: url(../img/about-vector.png) no-repeat center center;
  background-size: 100% 100%;
  width: 210px;
  height: 191px;
  top: 85px;
  right: 85px;
  animation: flipX 1.6s ease infinite alternate;
}
@media screen and (max-width: 1599px) {
  .nk-blogs::before {
    right: -5px;
  }
}
@media screen and (max-width: 1399px) {
  .nk-blogs::before {
    width: 150px;
    height: 131px;
  }
}
@media screen and (max-width: 991px) {
  .nk-blogs::before {
    right: -115px;
  }
}

.nk-blog {
  border: 1px solid rgba(255, 255, 255, 0.651);
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.0651);
  padding: 23px 30px;
}
@media screen and (max-width: 1199px) {
  .nk-blog {
    padding: 18px 20px;
  }
}
.nk-blog.swiper-slide-visible {
  box-shadow: 0 18px 24px rgba(0, 0, 0, 0.09);
}
.nk-blog:hover .nk-blog__img img {
  scale: 1.1;
}
.nk-blog:hover .nk-blog__btn {
  scale: 1;
}
.nk-blog__infos {
  margin-bottom: 15px;
  font-size: 18px;
  color: rgb(85, 85, 85);
  line-height: 1.556;
  margin-bottom: 17px;
}
@media screen and (max-width: 1399px) {
  .nk-blog__infos {
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 1199px) {
  .nk-blog__infos {
    margin-bottom: 7px;
  }
}
@media screen and (max-width: 479px) {
  .nk-blog__infos {
    margin-bottom: 5px;
    font-size: 16px;
  }
}
.nk-blog__infos a {
  color: rgb(85, 85, 85);
}
.nk-blog .nk-pricing-pack__title {
  margin-bottom: 25px;
}
@media screen and (max-width: 1399px) {
  .nk-blog .nk-pricing-pack__title {
    font-size: 25px;
  }
}
@media screen and (max-width: 1199px) {
  .nk-blog .nk-pricing-pack__title {
    font-size: 22px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 479px) {
  .nk-blog .nk-pricing-pack__title {
    font-size: 20px;
  }
}
.nk-blog .nk-pricing-pack__title a:hover {
  color: var(--purple);
}
.nk-blog__img {
  overflow: hidden;
  position: relative;
  border-radius: 10px;
  margin-bottom: 22px;
}
@media screen and (max-width: 1199px) {
  .nk-blog__img {
    margin-bottom: 12px;
  }
}
.nk-blog__img img {
  width: 100%;
}
.nk-blog__descr {
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1.556;
  color: #555555;
}
@media screen and (max-width: 479px) {
  .nk-blog__descr {
    font-size: 16px;
  }
}
.nk-blog__btn {
  position: absolute;
  inset: 0;
  margin: auto;
  border: 1px solid rgb(255, 255, 255);
  border-radius: 50%;
  background-color: rgb(134, 112, 239);
  box-shadow: 0px 8px 18px 0px rgba(0, 0, 0, 0.1);
  width: 58px;
  height: 58px;
  line-height: 58px;
  text-align: center;
  color: var(--white-f);
  scale: 0;
}
.nk-blog__btn:hover {
  background-color: var(--white-f);
  color: var(--black);
}

#nk-blogs-slider-nav button {
  border-color: var(--white-f);
  background-color: var(--purple);
}
#nk-blogs-slider-nav button:hover {
  background-color: var(--golden);
  color: var(--black);
}

.nk-inner-blogs::before {
  content: none;
}

.nk-inner-blog {
  box-shadow: 0 18px 24px 0px rgba(0, 0, 0, 0.09);
}

/* ----- CONTACT ----- */
.nk-contact {
  position: relative;
  z-index: 1;
}
.nk-contact__wave {
  position: absolute;
  z-index: -1;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 533px;
}
.nk-contact-bg {
  background-color: rgb(255, 255, 255);
  padding: 120px 60px;
  position: relative;
}
@media screen and (max-width: 1399px) {
  .nk-contact-bg {
    padding: 80px 60px;
  }
}
@media screen and (max-width: 1199px) {
  .nk-contact-bg {
    padding: 80px 45px;
  }
}
@media screen and (max-width: 991px) {
  .nk-contact-bg {
    padding: 60px 45px;
  }
}
@media screen and (max-width: 479px) {
  .nk-contact-bg {
    padding: 60px 20px;
  }
}
.nk-contact-bg::before, .nk-contact-bg::after {
  content: "";
  position: absolute;
}
.nk-contact-bg::before {
  width: 160px;
  height: 160px;
  border: 55px solid var(--purple);
  border-radius: 50%;
  clip-path: polygon(0 0, 100% 0, 100% 33%, 0% 78%, 0 100%);
  top: -120px;
  left: -103px;
}
.nk-contact-bg::after {
  top: 15px;
  left: calc(100% - 30px);
  background: url(../img/banner-arrow.png) no-repeat center center;
  background-size: 100% 100%;
  width: 283px;
  height: 62px;
  pointer-events: none;
  scale: 1 -1;
}
.nk-contact .nk-section__heading {
  margin-bottom: 36px;
}
@media screen and (max-width: 991px) {
  .nk-contact .nk-section__heading {
    margin-bottom: 26px;
  }
}
@media screen and (max-width: 575px) {
  .nk-contact .nk-section__heading {
    margin-bottom: 20px;
  }
}
.nk-contact .nk-section__sub-title {
  padding-left: 85px;
}
@media screen and (max-width: 479px) {
  .nk-contact .nk-section__sub-title {
    padding-left: 65px;
  }
}
.nk-contact .nk-section__sub-title::before {
  left: 0;
}
.nk-contact .nk-section__sub-title::after {
  content: none;
}
.nk-contact-info {
  display: flex;
  gap: 20px;
  align-items: center;
}
@media screen and (max-width: 1199px) {
  .nk-contact-info {
    gap: 15px;
  }
}
@media screen and (max-width: 479px) {
  .nk-contact-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
.nk-contact-info:not(:last-child) {
  margin-bottom: 40px;
}
@media screen and (max-width: 1199px) {
  .nk-contact-info:not(:last-child) {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 479px) {
  .nk-contact-info:not(:last-child) {
    margin-bottom: 20px;
  }
}
.nk-contact-info__icon {
  background-color: rgb(253, 252, 250);
  border-radius: 8px;
  box-shadow: 0 14px 22px rgba(134, 112, 239, 0.16);
  width: 78px;
  height: 78px;
  display: grid;
  place-content: center;
  color: var(--purple);
  padding: 10px;
  font-size: 45px;
}
@media screen and (max-width: 1399px) {
  .nk-contact-info__icon {
    width: 68px;
    height: 68px;
    font-size: 35px;
  }
}
@media screen and (max-width: 1199px) {
  .nk-contact-info__icon {
    width: 63px;
    height: 63px;
    font-size: 30px;
  }
}
@media screen and (max-width: 479px) {
  .nk-contact-info__icon {
    width: 58px;
    height: 58px;
    box-shadow: 0 10px 18px rgba(134, 112, 239, 0.16);
  }
}
.nk-contact-info__title {
  line-height: 1.56;
  font-weight: 400;
  color: #555555;
  text-transform: uppercase;
}
@media screen and (max-width: 1199px) {
  .nk-contact-info__title {
    font-size: 16px;
    margin-bottom: 3px;
  }
}
.nk-contact-info__value {
  font-size: 24px;
  line-height: 1;
  color: var(--black);
  margin-bottom: 0;
}
@media screen and (max-width: 1199px) {
  .nk-contact-info__value {
    font-size: 22px;
  }
}
@media screen and (max-width: 479px) {
  .nk-contact-info__value {
    font-size: 20px;
  }
}
.nk-contact-info__value a:hover {
  color: var(--purple);
}
.nk-contact__links a {
  margin-top: 45px;
}
@media screen and (max-width: 1399px) {
  .nk-contact__links a {
    padding: 15px 35px;
    min-width: auto;
  }
}
@media screen and (max-width: 1199px) {
  .nk-contact__links a {
    width: auto;
    padding: 15px 25px;
  }
}
@media screen and (max-width: 479px) {
  .nk-contact__links a {
    margin-top: 20px;
    padding: 12px 25px;
    width: 100%;
  }
}
@media screen and (max-width: 479px) {
  .nk-contact__links a .main-icon {
    display: block;
  }
}
.nk-contact__links a:not(:last-child) {
  margin-right: 20px;
}
@media screen and (max-width: 1199px) {
  .nk-contact__links a:not(:last-child) {
    margin-right: 15px;
  }
}
@media screen and (max-width: 575px) {
  .nk-contact__links a:last-child {
    margin-top: 20px;
  }
}
.nk-contact__form-area {
  padding: 50px 45px 60px;
  background: url(../img/body-bg-2.jpg) repeat center center;
  background-size: contain;
}
@media screen and (max-width: 1199px) {
  .nk-contact__form-area {
    padding: 40px 35px 50px;
  }
}
@media screen and (max-width: 479px) {
  .nk-contact__form-area {
    padding: 25px 20px;
  }
}
.nk-contact-form input,
.nk-contact-form select,
.nk-contact-form textarea {
  width: 100%;
  border-bottom: 1px solid rgb(18, 18, 18);
  background-color: transparent;
  color: var(--black);
  vertical-align: top;
  padding-bottom: 14px;
  margin-bottom: 53px;
}
.nk-contact-form input:focus,
.nk-contact-form select:focus,
.nk-contact-form textarea:focus {
  outline: none;
  border-color: var(--purple);
}
.nk-contact-form textarea {
  height: 110px;
  margin-bottom: 0;
}
.nk-contact-form button {
  margin-top: 30px;
}
.nk-contact__circles {
  position: absolute;
  bottom: -160px;
  left: 50%;
  transform: translate(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: -1;
  opacity: 0.16;
  pointer-events: none;
}
.nk-contact__circles img {
  animation: ccm 2.5s ease-in alternate infinite;
}

@keyframes ccm {
  0% {
    scale: 1;
    opacity: 1;
  }
  100% {
    scale: 0.4;
    opacity: 0;
  }
}
.nk-inner-contact {
  margin-top: 120px;
}
@media screen and (max-width: 1399px) {
  .nk-inner-contact {
    margin-top: 80px;
  }
}
@media screen and (max-width: 991px) {
  .nk-inner-contact {
    margin-top: 60px;
  }
}

.nk-contact-page__form-area {
  background: rgba(255, 255, 255, 0.5);
}

/* ----- FOOTER ----- */
.nk-footer {
  background-color: var(--purple);
  padding: 60px 0;
  position: relative;
}
@media screen and (max-width: 1399px) {
  .nk-footer {
    padding: 40px 0;
  }
}
.nk-footer::before, .nk-footer::after {
  content: "";
  position: absolute;
  background: no-repeat center center;
  background-size: 100% 100%;
  opacity: 0.5;
}
.nk-footer::before {
  background-image: url(../img/footer-vector-1.png);
  width: 32px;
  height: 40px;
  bottom: 10px;
  left: 90px;
}
@media screen and (max-width: 1599px) {
  .nk-footer::before {
    left: -10px;
  }
}
.nk-footer::after {
  background-image: url(../img/footer-vector-2.png);
  width: 24px;
  height: 50px;
  right: 100px;
  bottom: 50px;
}
@media screen and (max-width: 1599px) {
  .nk-footer::after {
    right: -6px;
  }
}
@media screen and (max-width: 575px) {
  .nk-footer::after {
    opacity: 0;
  }
}
.nk-footer__copyright-txt {
  color: var(--white-f);
}
.nk-footer__right {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nk-footer__nav a {
  color: var(--white-f);
  font-size: 18px;
  line-height: 1.56;
  font-weight: 300;
}
.nk-footer__nav a:hover {
  color: var(--golden);
}
.nk-footer__nav a:first-child {
  margin-right: 35px;
}

.nk-back-to-top {
  background-color: var(--golden);
  border-radius: 7px;
  border: 1px solid var(--golden);
  width: 40px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  color: var(--black);
  font-size: 20px;
}
.nk-back-to-top:hover {
  background-color: transparent;
  color: var(--golden);
}

/* ----- SERVICE DETAILS ----- */
@media screen and (max-width: 991px) {
  .nk-service-details-sidebar {
    display: flex;
    gap: 25px;
    align-items: flex-start;
  }
}
@media screen and (max-width: 767px) {
  .nk-service-details-sidebar {
    flex-direction: column;
    align-items: stretch;
    row-gap: 0;
  }
}
.nk-service-details-sidebar > * {
  flex: 50%;
}
@media screen and (max-width: 767px) {
  .nk-service-details-sidebar > * {
    flex: auto;
    width: 70%;
    margin-inline: auto;
  }
}
@media screen and (max-width: 479px) {
  .nk-service-details-sidebar > * {
    width: 100%;
  }
}
.nk-service-details-widget {
  background-color: var(--white-f);
  border-radius: 15px;
  padding: 35px;
}
@media screen and (max-width: 1399px) {
  .nk-service-details-widget {
    padding: 30px;
  }
}
@media screen and (max-width: 1199px) {
  .nk-service-details-widget {
    padding: 20px;
  }
}
.nk-service-details-widget:not(:last-child) {
  margin-bottom: 35px;
}
@media screen and (max-width: 1199px) {
  .nk-service-details-widget:not(:last-child) {
    margin-bottom: 25px;
  }
}
.nk-service-details-widget__title {
  font-size: 30px;
  color: rgb(18, 18, 18);
  line-height: 0.7;
  margin-bottom: 35px;
}
@media screen and (max-width: 1399px) {
  .nk-service-details-widget__title {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1199px) {
  .nk-service-details-widget__title {
    font-size: 26px;
    margin-bottom: 25px;
  }
}
.nk-service-details-widget .service-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.nk-service-details-widget .service-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--purple);
  color: var(--white-f);
  padding: 13px 30px;
  border-radius: 10px;
  font-size: 20px;
  line-height: 1.7;
  font-weight: 400;
}
@media screen and (max-width: 1399px) {
  .nk-service-details-widget .service-list a {
    padding: 10px 25px;
  }
}
@media screen and (max-width: 1199px) {
  .nk-service-details-widget .service-list a {
    padding: 8px 20px;
    font-size: 18px;
  }
}
.nk-service-details-widget .service-list a:hover {
  background-color: var(--golden);
  color: var(--black);
}
.nk-service-details-widget .service-list a.current {
  background-color: var(--golden);
  color: var(--black);
}
.nk-service-details-widget .service-list a.current:hover {
  background-color: var(--purple);
  color: var(--white-f);
}
.nk-service-details__cover-img {
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 48px;
}
@media screen and (max-width: 1399px) {
  .nk-service-details__cover-img {
    margin-bottom: 38px;
  }
}
@media screen and (max-width: 1199px) {
  .nk-service-details__cover-img {
    margin-bottom: 28px;
  }
}
@media screen and (max-width: 767px) {
  .nk-service-details__cover-img {
    margin-bottom: 23px;
  }
}
@media screen and (max-width: 575px) {
  .nk-service-details__cover-img {
    margin-bottom: 18px;
  }
}
@media screen and (max-width: 479px) {
  .nk-service-details__cover-img {
    margin-bottom: 13px;
  }
}
.nk-service-details__cover-img img {
  width: 100%;
  height: 560px;
}
@media screen and (max-width: 1399px) {
  .nk-service-details__cover-img img {
    height: 470px;
  }
}
@media screen and (max-width: 1199px) {
  .nk-service-details__cover-img img {
    height: 390px;
  }
}
@media screen and (max-width: 767px) {
  .nk-service-details__cover-img img {
    height: 330px;
  }
}
@media screen and (max-width: 575px) {
  .nk-service-details__cover-img img {
    height: 290px;
  }
}
@media screen and (max-width: 479px) {
  .nk-service-details__cover-img img {
    height: 190px;
  }
}
.nk-service-details__cta {
  display: grid;
  place-content: center;
  background-image: url(../img/blog-3.jpg);
  padding: 110px 10px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.nk-service-details__cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.6);
}
.nk-service-details__cta a {
  border-color: var(--golden);
  color: var(--black);
  background: transparent;
  box-shadow: 0px 9px 12px rgba(252, 217, 102, 0.3);
}
.nk-service-details__cta a:hover {
  box-shadow: 0px 9px 12px rgba(252, 217, 102, 0.3);
  color: var(--white-f);
}
.nk-service-details__cta a::before {
  background-color: var(--golden);
}
.nk-service-details__title {
  color: var(--black);
  line-height: 1.278;
  margin-bottom: 22px;
}
@media screen and (max-width: 1399px) {
  .nk-service-details__title {
    font-size: 34px;
  }
}
@media screen and (max-width: 1199px) {
  .nk-service-details__title {
    font-size: 30px;
  }
}
@media screen and (max-width: 767px) {
  .nk-service-details__title {
    font-size: 28px;
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 575px) {
  .nk-service-details__title {
    font-size: 25px;
  }
}
@media screen and (max-width: 479px) {
  .nk-service-details__title {
    font-size: 22px;
  }
}
.nk-service-details__descr {
  font-size: 16px;
  color: #555555;
  line-height: 1.625;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .nk-service-details__descr {
    margin-bottom: 15px;
  }
}
.nk-service-details__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}
.nk-service-details__list li {
  position: relative;
  padding-left: 20px;
  font-size: 16px;
  color: #555555;
  line-height: 1.625;
}
.nk-service-details__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--purple);
}
.nk-service-details__list li:not(:last-child) {
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .nk-service-details__list {
    margin-bottom: 20px;
  }
}
.nk-service-details__inner-img {
  border-radius: 15px;
  overflow: hidden;
  margin-top: 58px;
  margin-bottom: 48px;
}
@media screen and (max-width: 1399px) {
  .nk-service-details__inner-img {
    margin-top: 48px;
    margin-bottom: 38px;
  }
}
@media screen and (max-width: 1199px) {
  .nk-service-details__inner-img {
    margin-top: 38px;
    margin-bottom: 28px;
  }
}
@media screen and (max-width: 767px) {
  .nk-service-details__inner-img {
    margin-top: 33px;
    margin-bottom: 23px;
  }
}
@media screen and (max-width: 575px) {
  .nk-service-details__inner-img {
    margin-top: 28px;
    margin-bottom: 18px;
  }
}
.nk-service-details__inner-img img {
  max-height: 400px;
  max-width: 100%;
  width: 100%;
}

.nk-single-accordion-item {
  border-radius: 8px;
  background-color: var(--purple);
  color: var(--white-f);
  padding: 0 25px;
  transition: 0.4s ease;
}
@media screen and (max-width: 767px) {
  .nk-single-accordion-item {
    padding: 0 20px;
  }
}
.nk-single-accordion-item:not(:last-child) {
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .nk-single-accordion-item:not(:last-child) {
    margin-bottom: 15px;
  }
}
.nk-single-accordion-item.open {
  background-color: var(--white-f);
  color: var(--black);
}
.nk-single-accordion-item.open .nk-single-accordion-item__header {
  border-color: rgba(18, 18, 18, 0.1);
}
.nk-single-accordion-item.open .nk-single-accordion-item__header i {
  transform: scale(-1);
}
.nk-single-accordion-item.open .nk-single-accordion-item__body {
  padding: 17px 0 23px;
  grid-template-rows: 1fr;
}
@media screen and (max-width: 991px) {
  .nk-single-accordion-item.open .nk-single-accordion-item__body {
    padding: 13px 0 18px;
  }
}
@media screen and (max-width: 767px) {
  .nk-single-accordion-item.open .nk-single-accordion-item__body {
    padding: 8px 0 13px;
  }
}
.nk-single-accordion-item__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  border-bottom: 1px solid transparent;
}
@media screen and (max-width: 991px) {
  .nk-single-accordion-item__header {
    padding: 15px 0;
  }
}
@media screen and (max-width: 767px) {
  .nk-single-accordion-item__header {
    padding: 10px 0;
  }
}
.nk-single-accordion-item__header i {
  transition: transform 0.4s ease;
}
.nk-single-accordion-item__title {
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .nk-single-accordion-item__title {
    font-size: 18px;
  }
}
.nk-single-accordion-item__body {
  transition: all 0.4s ease;
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
}
.nk-single-accordion-item__body p {
  overflow: hidden;
  margin-bottom: 0;
  font-size: 16px;
  color: rgb(85, 85, 85);
  line-height: 1.625;
  text-transform: capitalize;
}

/* ----- PORTFOLIO DETAILS ----- */
.nk-portfolio-details__img {
  position: relative;
  margin-bottom: 52px;
}
@media screen and (max-width: 1399px) {
  .nk-portfolio-details__img {
    margin-bottom: 42px;
  }
}
@media screen and (max-width: 1199px) {
  .nk-portfolio-details__img {
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 991px) {
  .nk-portfolio-details__img {
    margin-bottom: 22px;
  }
}
.nk-portfolio-details__img img {
  max-height: 650px;
}
.nk-portfolio-details__infos {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 50px 45px;
  padding-bottom: 0;
  background: url(../img/body-bg-2.jpg) repeat;
  background-size: auto;
  border-top-right-radius: 25px;
}
@media screen and (max-width: 991px) {
  .nk-portfolio-details__infos {
    position: static;
    padding: 30px;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .nk-portfolio-details__infos {
    padding: 22px 20px;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 479px) {
  .nk-portfolio-details__infos {
    padding: 15px;
    padding-bottom: 0;
  }
}
.nk-portfolio-details__infos .nk-pricing-pack__title {
  margin-bottom: 24px;
}
@media screen and (max-width: 991px) {
  .nk-portfolio-details__infos .nk-pricing-pack__title {
    margin-bottom: 18px;
  }
}
@media screen and (max-width: 479px) {
  .nk-portfolio-details__infos .nk-pricing-pack__title {
    margin-bottom: 13px;
  }
}
.nk-portfolio-details__infos ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 22px;
  margin-bottom: 30px;
}
@media screen and (max-width: 1199px) {
  .nk-portfolio-details__infos ul {
    grid-template-columns: repeat(2, max-content);
    column-gap: 30px;
  }
}
@media screen and (max-width: 991px) {
  .nk-portfolio-details__infos ul {
    grid-template-columns: repeat(4, max-content);
    column-gap: 30px;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 767px) {
  .nk-portfolio-details__infos ul {
    grid-template-columns: repeat(2, max-content);
    row-gap: 17px;
  }
}
@media screen and (max-width: 479px) {
  .nk-portfolio-details__infos ul {
    grid-template-columns: repeat(1, max-content);
    row-gap: 12px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 1199px) {
  .nk-portfolio-details-info {
    text-align: left;
  }
}
.nk-portfolio-details-info .nk-about-info__title {
  margin-bottom: 10px;
}
@media screen and (max-width: 479px) {
  .nk-portfolio-details-info .nk-about-info__title {
    margin-bottom: 3px;
    font-size: 18px;
  }
}
.nk-portfolio-details-info .nk-about-info__value {
  font-size: 16px;
}
.nk-portfolio-details__socials {
  display: flex;
  gap: 15px;
}
@media screen and (max-width: 767px) {
  .nk-portfolio-details__socials {
    gap: 10px;
  }
}
.nk-portfolio-details__socials a {
  border-radius: 50%;
  background-color: var(--purple);
  color: var(--white-f);
  width: 45px;
  height: 45px;
  display: grid;
  place-content: center;
}
@media screen and (max-width: 767px) {
  .nk-portfolio-details__socials a {
    width: 40px;
    height: 40px;
  }
}
.nk-portfolio-details__socials a:hover {
  background-color: var(--golden);
  color: var(--black);
}
.nk-portfolio-details__inner-img {
  margin: 58px 0 53px;
}
@media screen and (max-width: 1399px) {
  .nk-portfolio-details__inner-img {
    margin: 38px 0 43px;
  }
}
@media screen and (max-width: 1199px) {
  .nk-portfolio-details__inner-img {
    margin: 38px 0 33px;
  }
}
.nk-portfolio-details__bottom-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 3;
}
.nk-portfolio-details__bottom-nav a {
  display: flex;
  align-items: center;
  text-transform: uppercase;
  gap: 8px;
  color: var(--black);
  font-weight: 500;
}
.nk-portfolio-details__bottom-nav a:hover {
  color: var(--purple);
}

/* ----- BLOG DETAILS ----- */
.nk-blog-details__img {
  position: relative;
}
.nk-blog-details__img img {
  width: 100%;
  max-height: 650px;
}
@media screen and (max-width: 991px) {
  .nk-blog-details__img img {
    height: 310px;
  }
}
@media screen and (max-width: 479px) {
  .nk-blog-details__img img {
    height: 200px;
  }
}
.nk-blog-details__heading {
  background-color: var(--white-f);
  margin-top: -120px;
  position: relative;
  padding: 60px;
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 1199px) {
  .nk-blog-details__heading {
    padding: 45px;
    margin-top: -90px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 991px) {
  .nk-blog-details__heading {
    padding: 40px;
    margin-top: -80px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .nk-blog-details__heading {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 575px) {
  .nk-blog-details__heading {
    padding: 30px;
  }
}
@media screen and (max-width: 479px) {
  .nk-blog-details__heading {
    padding: 25px 20px;
    margin-top: -50px;
    margin-bottom: 20px;
  }
}
.nk-blog-details__category {
  background-color: var(--purple);
  font-size: 16px;
  color: var(--white-f);
  text-transform: uppercase;
  line-height: 35px;
  padding: 0 20px;
  border-radius: 4px;
  transition: 0.4s ease, transform 1.2s;
}
@media screen and (max-width: 479px) {
  .nk-blog-details__category {
    height: 30px;
    line-height: 28px;
  }
}
.nk-blog-details__category:hover {
  background-color: var(--golden);
  color: var(--black);
}
.nk-blog-details__infos {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 28px 0 15px;
  gap: 5px;
  font-size: 18px;
  color: rgb(85, 85, 85);
  line-height: 1.556;
  font-weight: 400;
}
@media screen and (max-width: 1199px) {
  .nk-blog-details__infos {
    margin: 20px 0 12px;
  }
}
@media screen and (max-width: 479px) {
  .nk-blog-details__infos {
    margin: 15px 0 7px;
    flex-wrap: wrap;
    row-gap: 0;
  }
}
.nk-blog-details__info {
  margin-bottom: 0;
  color: rgb(85, 85, 85);
  font-weight: 400;
  line-height: 1.556;
}
@media screen and (max-width: 479px) {
  .nk-blog-details__info {
    font-size: 16px;
  }
}
.nk-blog-details__info i {
  font-size: 15px;
  vertical-align: top;
  padding-right: 5px;
}
@media screen and (max-width: 1199px) {
  .nk-blog-details__info i {
    font-size: 14px;
  }
}
.nk-blog-details__title {
  font-size: 60px;
  font-weight: 500;
  color: var(--black);
  line-height: 1.167;
  width: 75%;
  margin: auto;
  margin-bottom: 21px;
}
@media screen and (max-width: 1399px) {
  .nk-blog-details__title {
    font-size: 45px;
  }
}
@media screen and (max-width: 1199px) {
  .nk-blog-details__title {
    font-size: 40px;
  }
}
@media screen and (max-width: 991px) {
  .nk-blog-details__title {
    font-size: 35px;
  }
}
@media screen and (max-width: 767px) {
  .nk-blog-details__title {
    font-size: 30px;
    width: 100%;
  }
}
@media screen and (max-width: 575px) {
  .nk-blog-details__title {
    font-size: 28px;
  }
}
@media screen and (max-width: 479px) {
  .nk-blog-details__title {
    font-size: 25px;
  }
}
.nk-blog-details-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 991px) {
  .nk-blog-details-author {
    gap: 15px;
  }
}
.nk-blog-details-author__img {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
}
.nk-blog-details-author__txt {
  text-align: left;
}
.nk-blog-details-author .sub-title {
  color: #555555;
  margin-bottom: 2px;
}
.nk-blog-details-author__name {
  line-height: 1.6;
  margin-bottom: 0;
}
.nk-blog-details-author__name a:hover {
  color: var(--purple);
}
.nk-blog-details__row {
  --bs-gutter-x: 35px;
  --bs-gutter-y: 30px;
}
@media screen and (max-width: 1199px) {
  .nk-blog-details__row {
    --bs-gutter-x: 30px;
  }
}
.nk-blog-details__descr.blockquote {
  border-radius: 15px;
  background-color: rgba(255, 255, 255, 0.6);
  padding: 45px;
  margin: 38px 0 27px;
}
@media screen and (max-width: 1399px) {
  .nk-blog-details__descr.blockquote {
    padding: 40px;
  }
}
@media screen and (max-width: 1199px) {
  .nk-blog-details__descr.blockquote {
    padding: 35px;
    margin: 33px 0 22px;
  }
}
@media screen and (max-width: 991px) {
  .nk-blog-details__descr.blockquote {
    padding: 30px;
  }
}
@media screen and (max-width: 767px) {
  .nk-blog-details__descr.blockquote {
    margin: 28px 0 22px;
  }
}
@media screen and (max-width: 479px) {
  .nk-blog-details__descr.blockquote {
    padding: 25px;
    margin: 23px 0 17px;
  }
}
.nk-blog-details__descr.blockquote .icon {
  margin-bottom: 26px;
}
@media screen and (max-width: 1199px) {
  .nk-blog-details__descr.blockquote .icon {
    margin-bottom: 20px;
  }
}
.nk-blog-details__descr.blockquote .icon svg {
  width: 30px;
  height: 30px;
  vertical-align: top;
}
.nk-blog-details__descr.blockquote .icon path {
  fill: var(--purple);
}
.nk-blog-details__descr.blockquote p {
  color: var(--black);
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 30px;
}
@media screen and (max-width: 1199px) {
  .nk-blog-details__descr.blockquote p {
    font-size: 18px;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 575px) {
  .nk-blog-details__descr.blockquote p {
    font-size: 16px;
  }
}
.nk-blog-details__descr.blockquote .blockquote__author-name {
  color: var(--black);
  font-weight: 500;
  margin-bottom: 0;
  text-decoration: 1px underline var(--black);
  text-underline-offset: 5px;
}
@media screen and (max-width: 479px) {
  .nk-blog-details__descr.blockquote .blockquote__author-name {
    font-size: 18px;
  }
}
.nk-blog-details__descr > :last-child {
  margin: 0;
}
.nk-blog-details__inner-title {
  margin-top: 46px;
}
@media screen and (max-width: 1399px) {
  .nk-blog-details__inner-title {
    margin-top: 36px;
  }
}
@media screen and (max-width: 1199px) {
  .nk-blog-details__inner-title {
    margin-top: 30px;
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 575px) {
  .nk-blog-details__inner-title {
    margin-top: 25px;
  }
}
.nk-blog-details__inner-img {
  border-radius: 15px;
  overflow: hidden;
}
.nk-blog-details__inner-img img {
  height: 400px;
  width: 100%;
}
@media screen and (max-width: 1399px) {
  .nk-blog-details__inner-img img {
    height: 336px;
  }
}
@media screen and (max-width: 1199px) {
  .nk-blog-details__inner-img img {
    height: 280px;
  }
}
@media screen and (max-width: 767px) {
  .nk-blog-details__inner-img img {
    height: 240px;
  }
}
@media screen and (max-width: 575px) {
  .nk-blog-details__inner-img img {
    height: 210px;
  }
}
@media screen and (max-width: 479px) {
  .nk-blog-details__inner-img img {
    height: 160px;
  }
}
.nk-blog-details-bottom-actions {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 60px;
  gap: 10px;
}
@media screen and (max-width: 1399px) {
  .nk-blog-details-bottom-actions {
    padding-top: 45px;
  }
}
@media screen and (max-width: 1199px) {
  .nk-blog-details-bottom-actions {
    padding-top: 35px;
  }
}
@media screen and (max-width: 767px) {
  .nk-blog-details-bottom-actions {
    flex-direction: column;
    row-gap: 15px;
    padding-top: 30px;
  }
}
@media screen and (max-width: 479px) {
  .nk-blog-details-bottom-actions {
    padding-top: 25px;
  }
}
.nk-blog-details-bottom-actions__title {
  color: var(--black);
  font-weight: 500;
  line-height: 1.5;
  margin-right: 8px;
  margin-bottom: 0;
}
@media screen and (max-width: 1199px) {
  .nk-blog-details-bottom-actions__title {
    margin-right: 3px;
  }
}
@media screen and (max-width: 479px) {
  .nk-blog-details-bottom-actions__title {
    font-size: 18px;
  }
}
.nk-blog-details-tags {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nk-blog-details-tag {
  height: 35px;
  display: grid;
  place-content: center;
  line-height: 1;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 400;
  color: var(--black);
  text-transform: uppercase;
  border-radius: 10px;
  border: 1px rgba(18, 18, 18, 0.102) solid;
}
@media screen and (max-width: 1399px) {
  .nk-blog-details-tag {
    height: 30px;
    padding: 0 15px;
    border-radius: 6px;
  }
}
.nk-blog-details-tag:hover {
  border-color: var(--purple);
  background-color: var(--purple);
  color: var(--white-f);
}
.nk-blog-details__post-tags {
  flex-wrap: wrap;
}
.nk-blog-details__post-tags .nk-blog-details-tag {
  background-color: var(--white-f);
  border: none;
  line-height: 1.8;
}
.nk-blog-details__post-tags .nk-blog-details-tag:hover {
  background-color: var(--purple);
}
.nk-blog-details-share {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nk-blog-details-share-options {
  border-radius: 10px;
  background-color: var(--white-f);
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 6px 20px;
}
@media screen and (max-width: 1399px) {
  .nk-blog-details-share-options {
    border-radius: 6px;
    padding: 4px 15px;
    border-radius: 6px;
  }
}
.nk-blog-details-share a {
  color: var(--black);
}
.nk-blog-details-share a:hover {
  color: var(--purple);
}
.nk-blog-details-sidebar {
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 15px;
  padding: 35px;
}
@media screen and (max-width: 1399px) {
  .nk-blog-details-sidebar {
    padding: 25px;
  }
}
@media screen and (max-width: 1199px) {
  .nk-blog-details-sidebar {
    padding: 20px;
  }
}
.nk-blog-details-widget:not(:last-child) {
  margin-bottom: 60px;
}
@media screen and (max-width: 1399px) {
  .nk-blog-details-widget:not(:last-child) {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 1199px) {
  .nk-blog-details-widget:not(:last-child) {
    margin-bottom: 30px;
  }
}
.nk-blog-details-widget__title {
  font-size: 24px;
  font-weight: 500;
  color: var(--black);
  border-bottom: 1px solid rgba(18, 18, 18, 0.1);
  padding-bottom: 8px;
  margin-bottom: 35px;
}
@media screen and (max-width: 1399px) {
  .nk-blog-details-widget__title {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 1199px) {
  .nk-blog-details-widget__title {
    font-size: 22px;
    margin-bottom: 20px;
  }
}
.nk-blog-details-search form {
  display: flex;
}
.nk-blog-details-search form input {
  width: 100%;
  height: 60px;
  padding: 0 25px;
  border: 1px solid rgba(18, 18, 18, 0.102);
  border-radius: 8px 0 0 8px;
  border-right: none;
}
@media screen and (max-width: 1399px) {
  .nk-blog-details-search form input {
    height: 55px;
  }
}
@media screen and (max-width: 1199px) {
  .nk-blog-details-search form input {
    height: 50px;
    padding: 0 15px;
  }
}
.nk-blog-details-search form button {
  height: 60px;
  width: 60px;
  flex-shrink: 0;
  background-color: var(--golden);
  border-radius: 0 8px 8px 0;
  font-size: 20px;
}
@media screen and (max-width: 1399px) {
  .nk-blog-details-search form button {
    height: 55px;
    width: 55px;
  }
}
@media screen and (max-width: 1199px) {
  .nk-blog-details-search form button {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }
}
.nk-blog-details-search form button:hover {
  background-color: var(--purple);
  color: var(--white-f);
}
.nk-blog-details-category {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  color: #555555;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 25px;
}
.nk-blog-details-category:hover {
  color: var(--purple);
}
.nk-blog-details-category:hover span.icon {
  background-color: var(--purple);
  color: var(--white-f);
}
.nk-blog-details-category span.icon {
  font-size: 12px;
  background-color: var(--golden);
  width: 20px;
  height: 20px;
  border-radius: 2px;
  display: grid;
  place-content: center;
  color: var(--black);
  transition: 0.4s ease;
}

.nk-recent-blog {
  display: flex;
  gap: 20px;
  align-items: center;
}
@media screen and (max-width: 1199px) {
  .nk-recent-blog {
    gap: 15px;
  }
}
.nk-recent-blog:not(:last-child) {
  margin-bottom: 35px;
}
@media screen and (max-width: 1199px) {
  .nk-recent-blog:not(:last-child) {
    margin-bottom: 25px;
  }
}
.nk-recent-blog__img {
  border-radius: 10px;
  flex-shrink: 0;
}
.nk-recent-blog__img img {
  width: 100px;
  height: 100px;
}
@media screen and (max-width: 1199px) {
  .nk-recent-blog__img img {
    width: 80px;
    height: 80px;
  }
}
.nk-recent-blog__date {
  color: #555555;
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 12px;
}
@media screen and (max-width: 1199px) {
  .nk-recent-blog__date {
    margin-bottom: 5px;
  }
}
.nk-recent-blog__date i {
  padding-right: 3px;
  color: var(--purple);
}
.nk-recent-blog__title {
  color: var(--black);
  margin-bottom: 0;
  line-height: 1.5;
}
@media screen and (max-width: 1199px) {
  .nk-recent-blog__title {
    font-size: 18px;
  }
}
.nk-recent-blog__title a:hover {
  color: var(--purple);
}

/* comment form */
.nk-comment-form-area {
  margin-top: 60px;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 15px;
  padding: 50px 40px 60px;
}
@media screen and (max-width: 1399px) {
  .nk-comment-form-area {
    padding: 40px 40px 50px;
  }
}
@media screen and (max-width: 1199px) {
  .nk-comment-form-area {
    padding: 30px 40px 40px;
  }
}
@media screen and (max-width: 767px) {
  .nk-comment-form-area {
    padding: 25px 35px 35px;
    margin-top: 40px;
  }
}
@media screen and (max-width: 575px) {
  .nk-comment-form-area {
    margin-top: 30px;
  }
}
@media screen and (max-width: 479px) {
  .nk-comment-form-area {
    padding: 20px 20px 30px;
  }
}

.nk-comment-form .row {
  --bs-gutter-x: 20px;
  --bs-gutter-y: 20px;
}
@media screen and (max-width: 767px) {
  .nk-comment-form .row {
    --bs-gutter-x: 15px;
    --bs-gutter-y: 15px;
  }
}
.nk-comment-form__title {
  margin-bottom: 20px;
}
@media screen and (max-width: 1199px) {
  .nk-comment-form__title {
    margin-bottom: 15px;
    font-size: 32px;
  }
}
@media screen and (max-width: 991px) {
  .nk-comment-form__title {
    font-size: 30px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .nk-comment-form__title {
    font-size: 28px;
    margin-bottom: 6px;
  }
}
@media screen and (max-width: 479px) {
  .nk-comment-form__title {
    font-size: 26px;
  }
}
.nk-comment-form__sub-title {
  font-size: 16px;
  color: #555555;
  margin-bottom: 33px;
}
@media screen and (max-width: 1199px) {
  .nk-comment-form__sub-title {
    margin-bottom: 23px;
  }
}
@media screen and (max-width: 991px) {
  .nk-comment-form__sub-title {
    margin-bottom: 13px;
  }
}
.nk-comment-form input,
.nk-comment-form textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(18, 18, 18, 0.102);
  padding: 17px 20px;
  vertical-align: top;
}
@media screen and (max-width: 1199px) {
  .nk-comment-form input,
  .nk-comment-form textarea {
    padding: 13px 20px;
  }
}
@media screen and (max-width: 991px) {
  .nk-comment-form input,
  .nk-comment-form textarea {
    padding: 10px 15px;
  }
}
@media screen and (max-width: 479px) {
  .nk-comment-form input,
  .nk-comment-form textarea {
    padding: 8px 15px;
  }
}

.nk-course-search-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 36px;
}
.nk-course-search-wrap .nk-course-search {
  width: 100%;
  max-width: 560px;
  padding: 14px 22px;
  font-size: 15px;
  font-family: var(--kanit);
  color: var(--black);
  background: transparent;
  border: 1.5px solid rgba(0, 0, 0, 0.18);
  border-radius: 50px;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.nk-course-search-wrap .nk-course-search::placeholder {
  color: rgba(0, 0, 0, 0.35);
}
.nk-course-search-wrap .nk-course-search:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(134, 112, 239, 0.15);
}

.nk-courses-count-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.nk-courses-count-row .nk-courses-count-badge {
  font-size: 13px;
  font-family: var(--kanit);
  color: rgba(0, 0, 0, 0.45);
  letter-spacing: 0.03em;
}
.nk-courses-count-row .nk-courses-count-badge strong {
  color: var(--purple);
}

.nk-courses-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media screen and (max-width: 1199px) {
  .nk-courses-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .nk-courses-container {
    grid-template-columns: 1fr;
  }
}

.nk-course-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.09);
  border-radius: 14px;
  padding: 28px 26px 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.nk-course-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(134, 112, 239, 0.12);
  border-color: rgba(134, 112, 239, 0.35);
}
.nk-course-card .nk-course-card__top {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.nk-course-card .nk-course-card__icon {
  font-size: 18px;
  margin-right: 8px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}
.nk-course-card .nk-course-card__platform {
  font-size: 11px;
  font-family: var(--kanit);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple);
  line-height: 1.4;
}
.nk-course-card .nk-course-card__title {
  font-size: 17px;
  font-family: var(--kanit);
  font-weight: 600;
  color: var(--black);
  line-height: 1.4;
  margin-bottom: 10px;
}
.nk-course-card .nk-course-card__code {
  font-size: 12px;
  font-weight: 600;
  color: var(--purple);
  background: rgba(134, 112, 239, 0.12);
  border: 1px solid rgba(134, 112, 239, 0.28);
  border-radius: 6px;
  padding: 4px 8px;
  vertical-align: middle;
}
.nk-course-card .nk-course-card__desc {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.55);
  line-height: 1.65;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.nk-course-card .nk-course-card__cert {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  font-family: var(--kanit);
  color: #6a50d0;
  background: rgba(134, 112, 239, 0.08);
  border: 1px solid rgba(134, 112, 239, 0.25);
  border-radius: 6px;
  padding: 4px 10px;
  margin-bottom: 14px;
  line-height: 1.4;
}
.nk-course-card .nk-course-card__cert i {
  font-size: 11px;
}
.nk-course-card .nk-course-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 16px;
}
.nk-course-card .nk-course-card__tag {
  font-size: 11px;
  font-family: var(--kanit);
  padding: 3px 9px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.05);
  color: rgba(0, 0, 0, 0.5);
  white-space: nowrap;
  line-height: 1.5;
}
.nk-course-card .nk-course-card__cta {
  font-size: 13px;
  padding: 10px 22px;
  margin-top: auto;
}

.nk-courses-empty {
  grid-column: 1/-1;
  text-align: center;
  padding: 60px 0;
  color: rgba(0, 0, 0, 0.4);
  font-family: var(--kanit);
  font-size: 15px;
}
