@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');
:root {
  --blue: #7C00FE;
  --yellow: #7C00FE;
  --green: #7C00FE;
  --purple: #7C00FE;
  --hover: #FFAF00;
  --white: #FFFFFF;
  --on-surface: #121215;
  --black-surface: #0a1c2d;
  --surface: #F8F8F8;
  --line: #E5E5E5;
  --secondary: #858585;
  --placehover: #C1C1C1;
  --line-dark: rgba(255, 255, 255, 0.1)
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

body,
html {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1em;
  font-weight: 400;
  line-height: 1.625;
  color: var(--white);
  font-style: normal;
  background-color: var(--on-surface)
}

body {
  overflow-x: hidden
}

#content {
  overflow-x: hidden
}

h1,
h2,
h3,
h4,
h5,
h6,
li,
p,
ul {
  margin: 0;
  padding: 0
}

li {
  list-style: none
}

a {
  color: var(--white);
  text-decoration: none
}

button,
input,
select,
textarea {
  outline: 0;
  border: none
}

button {
  cursor: pointer
}

select {
  -webkit-appearance: none
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px
}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  padding-left: 15px;
  padding-right: 15px
}

.row {
  margin-left: -15px;
  margin-right: -15px
}

.row>* {
  padding-left: 15px;
  padding-right: 15px
}

.col-2-4 {
  flex: 0 0 auto;
  width: 20%
}

@media (min-width:1200px) {
  .col-xl-2-4 {
    flex: 0 0 auto;
    width: 20%
  }
}

.heading1 {
  font-size: 80px;
  font-weight: 600;
  line-height: 88px;
  text-transform: capitalize
}

.heading2 {
  font-size: 56px;
  font-weight: 600;
  line-height: 68px;
  text-transform: capitalize
}

.heading3 {
  font-size: 44px;
  font-weight: 600;
  line-height: 54px;
  text-transform: capitalize
}

.heading4 {
  font-size: 36px;
  font-weight: 600;
  line-height: 44px;
  text-transform: capitalize
}

.heading5 {
  font-size: 30px;
  font-weight: 600;
  line-height: 42px;
  text-transform: capitalize
}

.heading6 {
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
  text-transform: capitalize
}

.heading7 {
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  text-transform: capitalize
}

.body1 {
  font-size: 20px;
  line-height: 30px
}

.body2 {
  font-size: 18px;
  line-height: 28px
}

.text-title {
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  text-transform: capitalize
}

.body1 {
  font-size: 20px;
  line-height: 30px
}

.body2 {
  font-size: 18px;
  line-height: 28px
}

.text-subtitle {
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 1.1px;
  text-transform: uppercase
}

.caption1 {
  font-size: 14px;
  line-height: 22px
}

.caption2 {
  font-size: 12px;
  line-height: 16px
}

.text-button {
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
  text-transform: capitalize
}

.text-button-uppercase {
  font-size: 12px;
  font-weight: 700;
  line-height: 20px;
  text-transform: uppercase
}

.text-blue {
  color: var(--blue)
}

.text-blue-hover {
  transition: all ease .3s
}

.text-blue-hover:hover {
  color: var(--blue)
}

.icon-blue::before {
  color: var(--blue)
}

.text-yellow {
  color: var(--yellow)
}

.text-yellow-hover {
  transition: all ease .3s
}

.text-yellow-hover:hover {
  color: var(--yellow)
}

.icon-yellow::before {
  color: var(--yellow)
}

.text-purple {
  color: var(--purple)
}

.text-purple-hover {
  transition: all ease .3s
}

.text-purple-hover:hover {
  color: var(--purple)
}

.icon-purple::before {
  color: var(--purple)
}

.text-white {
  color: var(--white)
}

.icon-white::before {
  color: var(--white)
}

.icon-line-dark::before {
  color: var(--line-dark)
}

.text-on-surface {
  color: var(--on-surface)
}

.text-placehover {
  color: var(--placehover)
}

.text-surface {
  color: var(--surface)
}

.text-secondary {
  color: var(--secondary)
}

.bg-on-surface {
  background-color: var(--on-surface)
}

.bg-black-surface {
  background-color: #1B1B1B;
}

.bg-line-dark {
  background-color: rgba(255, 255, 255, .1)
}

.bg-blue {
  background-color: var(--blue)
}

.bg-yellow {
  background-color: var(--yellow)
}

.bg-purple {
  background-color: var(--purple)
}

.bg-white {
  background-color: var(--white)
}

.bg-surface {
  background-color: var(--surface)
}

.bg-secondary {
  background-color: var(--secondary)
}

.bg-line {
  background-color: var(--line)
}

.line-dark {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, .1)
}

.flex-wrap {
  flex-wrap: wrap
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center
}

.flex-item-center {
  display: flex;
  align-items: center
}

.flex-column-item-center {
  display: flex;
  flex-direction: column;
  align-items: center
}

.flex-column-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center
}

.flex-column-between {
  display: flex;
  flex-direction: column;
  justify-content: space-between
}

.gap-60 {
  gap: 60px
}

.gap-40 {
  gap: 40px
}

.gap-32 {
  gap: 32px
}

.gap-30 {
  gap: 30px
}

.gap-28 {
  gap: 28px
}

.gap-24 {
  gap: 24px
}

.gap-20 {
  gap: 20px
}

.gap-16 {
  gap: 16px
}

.gap-12 {
  gap: 12px
}

.gap-8 {
  gap: 8px
}

.row-gap-60 {
  row-gap: 60px
}

.row-gap-40 {
  row-gap: 40px
}

.row-gap-32 {
  row-gap: 32px
}

.row-gap-24 {
  row-gap: 24px
}

.row-gap-20 {
  row-gap: 20px
}

.row-gap-16 {
  row-gap: 16px
}

.row-gap-12 {
  row-gap: 12px
}

.row-gap-8 {
  row-gap: 8px
}

.fs-64 {
  font-size: 64px
}

.fs-60 {
  font-size: 60px
}

.fs-48 {
  font-size: 48px
}

.fs-40 {
  font-size: 40px
}

.fs-36 {
  font-size: 36px
}

.fs-32 {
  font-size: 32px
}

.fs-28 {
  font-size: 28px
}

.fs-24 {
  font-size: 24px !important;
}

.fs-20 {
  font-size: 20px !important;
}

.fs-18 {
  font-size: 18px !important;
}
.fs-16{
  font-size: 16px !important;
}

.fs-14 {
  font-size: 14px !important;
}

.fs-12 {
  font-size: 12px !important;
}
.fs-10{
  font-size: 10px !important;
}
.fs-8{
  font-size: 8px !important;
}
.fw-700 {
  font-weight: 700
}

.fw-600 {
  font-weight: 600
}

.fw-500 {
  font-weight: 500
}

.fw-400 {
  font-weight: 400
}

.p-40 {
  padding: 40px
}

.p-32 {
  padding: 32px
}

.p-28 {
  padding: 28px
}

.p-24 {
  padding: 24px
}

.p-20 {
  padding: 20px
}

.p-16 {
  padding: 16px
}

.p-12 {
  padding: 12px
}
.p-10{
    padding: 10px;
}
.p-8 {
  padding: 8px
}

.p-4 {
  padding: 4px !important
}

.pr-80 {
  padding-right: 80px
}

.pr-65 {
  padding-right: 65px
}

.pr-40 {
  padding-right: 40px
}

.pr-32 {
  padding-right: 32px;
}
.pr-36 {
  padding-right: 36px !important;
}
.pr-28 {
  padding-right: 28px
}

.pr-24 {
  padding-right: 24px
}

.pr-20 {
  padding-right: 20px
}

.pr-16 {
  padding-right: 16px
}

.pr-12 {
  padding-right: 12px
}

.pr-8 {
  padding-right: 8px
}

.pr-4 {
  padding-right: 4px !important
}

.pr-0 {
  padding-right: 0
}

.pl-80 {
  padding-left: 80px
}

.pl-65 {
  padding-left: 65px
}

.pl-40 {
  padding-left: 40px
}

.pl-32 {
  padding-left: 32px
}

.pl-28 {
  padding-left: 28px
}

.pl-24 {
  padding-left: 24px
}

.pl-20 {
  padding-left: 20px
}

.pl-16 {
  padding-left: 16px
}

.pl-12 {
  padding-left: 12px
}

.pl-8 {
  padding-left: 8px
}

.pl-4 {
  padding-left: 4px !important
}

.pl-0 {
  padding-left: 0
}

@media (max-width:991.99px) {
  .pr-col-lg-0 {
    padding-right: 15px
  }
}

@media (max-width:991.99px) {
  .pl-col-lg-0 {
    padding-left: 15px
  }
}

.pb-100 {
  padding-bottom: 100px
}

.pb-80 {
  padding-bottom: 80px
}

.pb-60 {
  padding-bottom: 60px
}

.pb-40 {
  padding-bottom: 40px
}

.pb-32 {
  padding-bottom: 32px
}

.pb-28 {
  padding-bottom: 28px
}

.pb-24 {
  padding-bottom: 24px
}

.pb-20 {
  padding-bottom: 20px
}

.pb-16 {
  padding-bottom: 16px
}

.pb-12 {
  padding-bottom: 12px
}

.pb-8 {
  padding-bottom: 8px
}

.pb-6 {
  padding-bottom: 6px
}

.pb-4 {
  padding-bottom: 4px !important
}

.pt-100 {
  padding-top: 100px
}

.pt-80 {
  padding-top: 80px
}

.pt-60 {
  padding-top: 60px
}

.pt-40 {
  padding-top: 40px
}

.pt-32 {
  padding-top: 32px
}

.pt-28 {
  padding-top: 28px
}

.pt-24 {
  padding-top: 24px
}

.pt-20 {
  padding-top: 20px
}

.pt-16 {
  padding-top: 16px
}

.pt-12 {
  padding-top: 12px
}

.pt-8 {
  padding-top: 8px
}

.pt-6 {
  padding-top: 6px
}

.pt-4 {
  padding-top: 4px !important
}

.mt-100 {
  margin-top: 100px
}

.mt-80 {
  margin-top: 80px
}

.mt-60 {
  margin-top: 60px
}

.mt-40 {
  margin-top: 40px
}

.mt-32 {
  margin-top: 32px
}

.mt-28 {
  margin-top: 28px
}

.mt-24 {
  margin-top: 24px
}

.mt-20 {
  margin-top: 20px
}

.mt-16 {
  margin-top: 16px
}

.mt-12 {
  margin-top: 12px
}

.mt-8 {
  margin-top: 8px
}

.mt-4 {
  margin-top: 4px !important
}
.w-300{
  width: 300px;
}
.w-250{
  width: 250px;
}
.w-200{
  width: 200px;
}
.w-60 {
  width: 60px
}

.h-60 {
  height: 60px
}

.w-40 {
  width: 40px
}

.h-40 {
  height: 40px
}

.w-20 {
  width: 20px
}

.h-20 {
  height: 20px
}

.display-none {
  display: none
}

.display-block {
  display: block
}

.display-inline-block {
  display: inline-block
}

.display-inline-flex {
  display: inline-flex
}

.bora-50 {
  border-radius: 50%
}

.bora-99 {
  border-radius: 99px
}

.bora-44 {
  border-radius: 44px
}

.bora-32 {
  border-radius: 32px
}

.bora-24 {
  border-radius: 24px
}

.bora-20 {
  border-radius: 20px
}

.bora-16 {
  border-radius: 16px
}

.bora-12 {
  border-radius: 12px
}

.bora-8 {
  border-radius: 8px
}

.hover-bg-purple {
  transition: all ease .3s
}

.hover-bg-purple:hover {
  background-color: var(--purple)
}

.hover-underline:hover {
  text-decoration: underline
}

.text-underline {
  text-decoration: underline
}

.pointer {
  cursor: pointer
}

.object-fit-cover {
  object-fit: cover
}

.button {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 68px;
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
  text-transform: capitalize;
  transition: all ease .4s
}

.button>span:nth-child(1) {
  position: absolute;
  left: -2px;
  right: -2px;
  top: -2px;
  bottom: -2px;
  background: 0 0;
  border-radius: 68px;
  overflow: hidden;
  z-index: 0;
  opacity: 0
}

.button>span:nth-child(1) span {
  position: absolute;
  min-width: 110%;
  min-height: 110%;
  aspect-ratio: 1/1;
  top: 50%;
  left: 50%;
  background: conic-gradient(from 290deg, transparent 0, #fff 50%, transparent 20%);
  animation: twirl 3s linear infinite;
  z-index: 0
}

.button span:nth-child(2) {
  padding: 14px 28px;
  border-radius: 68px;
  display: inline-flex;
  gap: 8px;
  position: relative;
  z-index: 2
}

.button span:nth-child(2):has(i) {
  padding: 16px 28px
}

.button:hover>span:nth-child(1) {
  opacity: 1
}

@keyframes twirl {
  0% {
    transform: translate(-50%, -50%) rotate(0)
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg)
  }
}

.button-blue-hover .bg-blue {
  transition: all ease .4s
}

.button-blue-hover:hover .bg-blue {
  background-color: var(--hover)
}

.button-yellow-hover .bg-yellow {
  transition: all ease .4s
}

.button-yellow-hover:hover {
  background-color: #ebb41d
}

.button-yellow-hover:hover .bg-yellow {
  background-color: #ebb41d
}

.button-purple-hover .bg-purple {
  transition: all ease .4s
}

.button-purple-hover:hover .bg-purple {
  background-color: #5700c9
}

@media (max-width:991.98px) {
  .button span:nth-child(1) {
    display: none
  }
}

@media (max-width:575.98px) {
  .button {
    gap: 6px;
    border-radius: 40px;
    font-size: 14px;
    line-height: 24px
  }

  .button span:nth-child(2) {
    padding: 10px 16px;
    border-radius: 40px
  }

  .button span:nth-child(2) i {
    font-size: 16px
  }

  .button span:nth-child(2):has(i) {
    padding: 14px 16px
  }
}

#preload {
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: all ease .5s;
  opacity: 1;
  visibility: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--black-surface)
}

#preload .main-content {
  width: 80px;
  height: 80px;
  position: relative
}

#preload .main-content .circle:nth-child(1) {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  animation: circleScrollMinus 1s linear 0s infinite
}

#preload .main-content .circle:nth-child(1)::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  right: 0;
  bottom: 0;
  border-radius: 0 0 200px 0;
  border-right: 3px solid var(--purple);
  border-bottom: 3px solid var(--purple)
}

#preload .main-content .circle:nth-child(1)::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  left: 0;
  top: 0;
  border-radius: 200px 0 0 0;
  border-left: 3px solid var(--purple);
  border-top: 3px solid var(--purple)
}

#preload .main-content .circle:nth-child(1) span {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #cde8ff;
  filter: blur(60px)
}

#preload .main-content .circle:nth-child(1) .circle-child {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%
}

#preload .main-content .circle:nth-child(1) .circle-child::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  right: 0;
  bottom: 0;
  border-radius: 0 0 200px 0;
  border-right: 3px solid var(--purple);
  border-bottom: 3px solid var(--purple)
}

#preload .main-content .circle:nth-child(1) .circle-child::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  left: 0;
  top: 0;
  border-radius: 200px 0 0 0;
  border-left: 3px solid var(--purple);
  border-top: 3px solid var(--purple)
}

#preload .main-content .circle:nth-child(2) {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  transform: rotate(90deg);
  animation: circleScroll2 1s linear 0s infinite
}

#preload .main-content .circle:nth-child(2)::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  right: 0;
  bottom: 0;
  border-radius: 0 0 200px 0;
  border-right: 3px solid rgba(238, 175, 255, .8078431373);
  border-bottom: 3px solid rgba(238, 175, 255, .8078431373)
}

#preload .main-content .circle:nth-child(2)::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  left: 0;
  top: 0;
  border-radius: 200px 0 0 0;
  border-left: 3px solid rgba(238, 175, 255, .8078431373);
  border-top: 3px solid rgba(238, 175, 255, .8078431373)
}

.style-yellow #preload .main-content .circle:nth-child(1)::before {
  border-right: 3px solid var(--yellow);
  border-bottom: 3px solid var(--yellow)
}

.style-yellow #preload .main-content .circle:nth-child(1)::after {
  border-left: 3px solid var(--yellow);
  border-top: 3px solid var(--yellow)
}

.style-yellow #preload .main-content .circle:nth-child(1) .circle-child::before {
  border-right: 3px solid var(--yellow);
  border-bottom: 3px solid var(--yellow)
}

.style-yellow #preload .main-content .circle:nth-child(1) .circle-child::after {
  border-left: 3px solid var(--yellow);
  border-top: 3px solid var(--yellow)
}

.style-yellow #preload .main-content .circle:nth-child(2)::before {
  border-right: 3px solid #fffced;
  border-bottom: 3px solid #fffced
}

.style-yellow #preload .main-content .circle:nth-child(2)::after {
  border-left: 3px solid #fffced;
  border-top: 3px solid #fffced
}

.style-blue #preload .main-content .circle:nth-child(1)::before {
  border-right: 3px solid var(--blue);
  border-bottom: 3px solid var(--blue)
}

.style-blue #preload .main-content .circle:nth-child(1)::after {
  border-left: 3px solid var(--blue);
  border-top: 3px solid var(--blue)
}

.style-blue #preload .main-content .circle:nth-child(1) .circle-child::before {
  border-right: 3px solid var(--blue);
  border-bottom: 3px solid var(--blue)
}

.style-blue #preload .main-content .circle:nth-child(1) .circle-child::after {
  border-left: 3px solid var(--blue);
  border-top: 3px solid var(--blue)
}

.style-blue #preload .main-content .circle:nth-child(2)::before {
  border-right: 3px solid #969be2;
  border-bottom: 3px solid #969be2
}

.style-blue #preload .main-content .circle:nth-child(2)::after {
  border-left: 3px solid #969be2;
  border-top: 3px solid #969be2
}

@keyframes circleScroll2 {
  0% {
    transform: rotate(-90deg)
  }

  100% {
    transform: rotate(90deg)
  }
}

@keyframes fillColor1 {
  0% {
    filter: hue-rotate(0)
  }

  100% {
    filter: hue-rotate(360deg)
  }
}

@keyframes drawLogo {
  0% {
    stroke-dashoffset: 2000
  }

  100% {
    stroke-dashoffset: 0
  }
}

@keyframes opacityAnimate {
  0% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}

#popup-newsletter-block {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  background-color: rgba(0, 0, 0, .6);
  transition: all ease .5s;
  z-index: -1;
  transition-delay: .4s
}

#popup-newsletter-block .popup-newsletter-main {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 750px;
  border-radius: 24px;
  overflow: hidden;
  background-color: var(--on-surface);
  transition: all ease .8s;
  display: flex;
  justify-content: end;
  border: 1px solid rgba(255, 255, 255, .2)
}

#popup-newsletter-block .popup-newsletter-main .bg-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  width: 47.3333333333%
}

#popup-newsletter-block .popup-newsletter-main .bg-img img {
  object-fit: cover;
  display: block
}

#popup-newsletter-block .popup-newsletter-main .content {
  width: 52.6666666667%
}

#popup-newsletter-block .popup-newsletter-main .content form .form-input {
  position: relative;
  border-radius: 44px;
  overflow: hidden
}

#popup-newsletter-block .popup-newsletter-main .content form .form-input input {
  padding: 12px 66px 12px 16px;
  width: 100%
}

#popup-newsletter-block .popup-newsletter-main .content form .form-input button {
  position: absolute;
  width: 50px;
  height: 50px;
  right: 0;
  background-color: transparent;
  transition: all ease .4s
}

#popup-newsletter-block .popup-newsletter-main .content form .form-input button i {
  font-size: 18px;
  display: block
}

#popup-newsletter-block .popup-newsletter-main .content form .form-input button:hover {
  background-color: var(--blue)
}

#popup-newsletter-block .popup-newsletter-main .content form .form-input button:hover i {
  transition: all ease .4s;
  color: var(--white)
}

@media (max-width:767.98px) {
  #popup-newsletter-block .popup-newsletter-main {
    width: 320px
  }

  #popup-newsletter-block .popup-newsletter-main .bg-img {
    display: none
  }

  #popup-newsletter-block .popup-newsletter-main .content {
    width: 100%;
    padding: 30px
  }
}

#popup-newsletter-block.open {
  opacity: 1;
  visibility: visible;
  z-index: 100
}

#popup-newsletter-block.open .popup-newsletter-main {
  top: 50%
}

.top-nav.style-three .right-block .line {
  height: 100%;
  width: 1px;
  padding: 12px 0;
  background-color: rgba(0, 0, 0, .2)
}

.top-nav.style-four {
  position: relative;
  z-index: 1
}

.top-nav.style-four .right-block .list-social a {
  width: 28px;
  height: 28px;
  background-color: var(--line-dark);
  border: 1px solid var(--line-dark);
  transition: all ease .3s
}

.top-nav.style-four .right-block .list-social a i {
  transition: all ease .3s;
  font-size: 12px
}

.top-nav.style-four .right-block .list-social a:hover {
  background-color: var(--white)
}

.top-nav.style-four .right-block .list-social a:hover i::before {
  color: var(--purple)
}

.top-nav.style-four .right-block .list-social a:nth-child(3) i,
.top-nav.style-four .right-block .list-social a:nth-child(4) i,
.top-nav.style-four .right-block .list-social a:nth-child(5) i {
  font-size: 10px;
  margin-left: 1px;
  margin-top: 1px
}

@media (max-width:575.98px) {
  .top-nav.style-four .right-block .list-social {
    display: flex;
    gap: 8px
  }

  .top-nav.style-four .right-block .list-social a:nth-child(3) i,
  .top-nav.style-four .right-block .list-social a:nth-child(4) i,
  .top-nav.style-four .right-block .list-social a:nth-child(5) i {
    margin-left: 0;
    margin-top: 2px
  }

  .top-nav.style-four .right-block .list-social a:last-child {
    display: none
  }
}

@media (max-width:992px) {
  .top-nav .location {
    display: none
  }

  .top-nav .mail {
    padding-left: 0
  }
}

@media (max-width:576px) {
  .top-nav .h-44 {
    height: 36px
  }

  .top-nav .h-60 {
    height: 40px
  }

  .top-nav .right-block {
    gap: 0
  }

  .top-nav .right-block .line,
  .top-nav .right-block .list-social {
    display: none
  }
}

.header-menu {
  height: 80px;
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 10;
  transition: all linear .5s;
  border-bottom: 1px solid var(--line-dark)
}

.header-menu>.container {
  height: 100%;
  width: 100%
}

.header-menu>.container .header-main {
  height: 100%;
  width: 100%;
  position: relative
}

.header-menu>.container .header-main .menu-main {
  height: 100%
}

.header-menu>.container .header-main .menu-main>ul {
  height: 100%;
  gap: 28px
}

.header-menu>.container .header-main .menu-main>ul li {
  height: 100%;
  cursor: pointer
}

.header-menu>.container .header-main .menu-main>ul li>a {
  color: var(--white);
  position: relative
}

.header-menu>.container .header-main .menu-main>ul li>a::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background-color: var(--blue);
  transition: all ease .4s
}

.header-menu>.container .header-main .menu-main>ul li>a:hover::before {
  width: 100%
}

.header-menu>.container .header-main .menu-main>ul li:hover>a::before {
  width: 100%
}

.header-menu>.container .header-main .logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%)
}

.header-menu>.container #menu-mobile-block {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  background-color: rgba(0, 0, 0, .8);
  transition: all ease .5s;
  z-index: -1
}

.header-menu>.container #menu-mobile-block .menu-mobile-main {
  position: absolute;
  top: 0;
  bottom: 0;
  right: -75%;
  width: 75%;
  height: 100%;
  background-color: var(--black-surface);
  transition: all ease .5s;
  z-index: 1;
  overflow-x: hidden
}

.header-menu>.container #menu-mobile-block .menu-mobile-main .heading {
  padding: 14px 16px
}

.header-menu>.container #menu-mobile-block .menu-mobile-main .heading .close-block i {
  display: inline-block;
  transition: all ease .4s
}

.header-menu>.container #menu-mobile-block .menu-mobile-main .heading .close-block i:hover {
  transform: rotate(180deg)
}

.header-menu>.container #menu-mobile-block .menu-mobile-main ul li {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 12px 16px
}

.header-menu>.container #menu-mobile-block.open {
  z-index: 100;
  opacity: 1;
  visibility: visible
}

.header-menu>.container #menu-mobile-block.open .menu-mobile-main {
  right: 0
}

@media (max-width:1199.98px) {
  .header-menu>.container .header-main .menu-main ul {
    gap: 20px
  }
}

@media (max-width:1023.98px) {
  .header-menu>.container .header-main .menu-main {
    display: none
  }

  .header-menu>.container .header-main .logo {
    position: relative;
    top: unset;
    left: unset;
    transform: unset
  }

  .header-menu>.container .header-main .right-block .menu-humburger {
    display: block
  }
}

@media (max-width:575.98px) {
  .header-menu {
    height: 60px
  }

  .header-menu .right-block .menu-humburger {
    padding-right: 0
  }

  /* .header-menu .right-block a {
    display: none
  } */
}

.style-two .header-menu {
  background-color: transparent;
  border-bottom: 1px solid var(--line-dark)
}

.style-two .header-menu>.container .header-main .menu-main>ul li>a::before {
  background-color: var(--green)
}

.style-two .header-menu>.container .header-main .logo svg g path:first-child {
  fill: var(--green)
}

.style-two .header-menu>.container .header-main .right-block a span:nth-child(2) {
  background-color: var(--green)
}

.style-two .header-menu>.container .header-main .right-block a:hover span:nth-child(2) {
  background-color: #02bd30
}

.style-two .header-menu>.container #menu-mobile-block .logo svg g path:first-child {
  fill: var(--green)
}

.style-two .header-menu>.container #menu-mobile-block .bg-blue {
  background-color: var(--green)
}

.style-two .header-menu>.container #menu-mobile-block .icon-blue::before {
  color: var(--green)
}

.header-menu.style-three>.container .header-main .logo {
  left: 0;
  transform: translateY(-50%)
}

.header-menu.style-three>.container .header-main .logo svg g path:first-child {
  fill: var(--yellow)
}

.header-menu.style-three>.container .header-main .menu-main {
  padding-left: 104px
}

.header-menu.style-three>.container .header-main .menu-main>ul li>a::before {
  background-color: var(--yellow)
}

.header-menu.style-three>.container .header-main .right-block .list-social a {
  width: 28px;
  height: 28px;
  background-color: var(--line-dark);
  border: 1px solid #3f3f3f;
  transition: all ease .3s
}

.header-menu.style-three>.container .header-main .right-block .list-social a i {
  transition: all ease .3s;
  font-size: 12px
}

.header-menu.style-three>.container .header-main .right-block .list-social a:hover {
  background-color: var(--yellow)
}

.header-menu.style-three>.container .header-main .right-block .list-social a:hover i::before {
  color: var(--on-surface)
}

.header-menu.style-three>.container .header-main .right-block .list-social a:nth-child(3) i,
.header-menu.style-three>.container .header-main .right-block .list-social a:nth-child(4) i,
.header-menu.style-three>.container .header-main .right-block .list-social a:nth-child(5) i {
  font-size: 10px;
  margin-left: 1px;
  margin-top: 1px
}

.header-menu.style-three>.container #menu-mobile-block .logo svg g path:first-child {
  fill: var(--yellow)
}

.header-menu.style-three>.container #menu-mobile-block .list-social a i::before {
  color: var(--on-surface)
}

.header-menu.style-three>.container #menu-mobile-block .bg-blue {
  background-color: var(--yellow)
}

.header-menu.style-three>.container #menu-mobile-block .icon-blue::before {
  color: var(--yellow)
}

.header-menu.style-four>.container .header-main .logo {
  position: relative;
  left: unset;
  top: unset;
  transform: unset
}

.header-menu.style-four>.container .header-main .menu-main>ul li>a::before {
  background-color: var(--purple)
}

.header-menu.style-four>.container #menu-mobile-block .logo svg g path:first-child {
  fill: var(--purple)
}

.header-menu.style-four>.container #menu-mobile-block .bg-blue {
  background-color: var(--purple)
}

.header-menu.style-four>.container #menu-mobile-block .icon-blue::before {
  color: var(--purple)
}

.style-purple .header-menu>.container .header-main .menu-main>ul li>a::before {
  background-color: var(--purple)
}

.style-purple .header-menu>.container .header-main .logo svg g path:first-child {
  fill: var(--purple)
}

.style-purple .header-menu>.container .header-main .right-block a span:nth-child(2) {
  background-color: var(--purple)
}

.style-purple .header-menu>.container .header-main .right-block a:hover span:nth-child(2) {
  background-color: #5700c9
}

.style-purple .header-menu>.container #menu-mobile-block .logo svg g path:first-child {
  fill: var(--purple)
}

.style-purple .header-menu>.container #menu-mobile-block .bg-blue {
  background-color: var(--purple)
}

.style-purple .header-menu>.container #menu-mobile-block .icon-blue::before {
  color: var(--purple)
}

.style-purple.style-service .header-menu>.container .header-main .menu-main>ul li:hover>a::before {
  width: 100%
}

.style-purple.style-service .header-menu>.container .header-main .menu-main>ul li:nth-child(2)>a::before {
  width: 100%
}

.style-purple.style-blog .header-menu>.container .header-main .menu-main>ul li:hover>a::before {
  width: 100%
}

.style-purple.style-blog .header-menu>.container .header-main .menu-main>ul li:nth-child(4)>a::before {
  width: 100%
}

.style-purple.style-contact .header-menu>.container .header-main .menu-main>ul li:hover>a::before {
  width: 100%
}

.style-purple.style-contact .header-menu>.container .header-main .menu-main>ul li:nth-child(5)>a::before {
  width: 100%
}

.slider-block.style-one {
  margin-top: 80px
}

.slider-block.style-one .slider-main {
  width: 100%;
  height: calc(100vh - 80px);
  background-image: url(../images/slider/bg-slider1.png);
  background-position: center;
  background-size: cover
}

.slider-block.style-one .slider-main .container {
  width: 100%;
  height: 100%
}

.slider-block.style-one .slider-main .row {
  position: relative;
  height: 100%
}

.slider-block.style-one .slider-main .row>div:first-child {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 15px
}

.slider-block.style-one .slider-main .row>div:last-child {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  right: 15px
}

.slider-block.style-one .slider-main .row>div:last-child .bg-img img:nth-child(1) {
  position: absolute;
  right: 245px;
  transform: translateY(-60%);
  z-index: 1
}

.slider-block.style-one .slider-main .row>div:last-child .bg-img img:nth-child(2) {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  animation: moveYY 15s ease infinite
}

.slider-block.style-one .slider-main .row>div:last-child .bg-img img:nth-child(3) {
  position: absolute;
  right: 0;
  top: calc(50% + 216px);
  transform: translateY(-50%);
  animation: moveY 15s ease infinite
}

.slider-block.style-one .slider-main .row>div:last-child .icon svg:first-child {
  position: absolute;
  right: 190px;
  transform: translateY(-214px)
}

.slider-block.style-one .slider-main .row>div:last-child .icon svg:last-child {
  position: absolute;
  left: 50px;
  transform: translateY(100px);
  z-index: 0
}

.slider-block.style-one .slider-main .row>div:last-child .user-infor {
  background: rgba(255, 255, 255, .4);
  display: inline-flex;
  position: absolute;
  right: 260px;
  top: calc(50% + 230px);
  transform: translateY(-50%);
  animation: moveX 15s ease infinite
}

@media (max-width:1198.98px) {
  .slider-block.style-one .slider-main {
    height: unset
  }

  .slider-block.style-one .slider-main .row {
    padding-top: 80px;
    padding-bottom: 180px
  }

  .slider-block.style-one .slider-main .row>div:first-child {
    position: relative;
    top: unset;
    transform: unset;
    left: unset
  }

  .slider-block.style-one .slider-main .row>div:last-child {
    position: relative;
    top: unset;
    transform: unset;
    right: unset
  }

  .slider-block.style-one .slider-main .row>div:last-child .bg-img {
    display: flex;
    align-items: center;
    justify-content: center
  }

  .slider-block.style-one .slider-main .row>div:last-child .bg-img img:first-child {
    position: relative;
    right: unset;
    transform: unset;
    margin-top: -60px
  }

  .slider-block.style-one .slider-main .row>div:last-child .bg-img img:nth-child(2) {
    position: relative;
    margin-left: 30px;
    margin-top: 230px
  }

  .slider-block.style-one .slider-main .row>div:last-child .bg-img img:nth-child(3) {
    position: absolute;
    right: calc(50% - 267px);
    top: calc(50% + 230px);
    transform: translate(-50%, -50%)
  }

  .slider-block.style-one .slider-main .row>div:last-child .icon svg:first-child {
    position: absolute;
    right: calc(50% - 87px);
    transform: translateY(-430px)
  }

  .slider-block.style-one .slider-main .row>div:last-child .icon svg:last-child {
    position: absolute;
    left: calc(50% - 340px);
    transform: translateY(-130px)
  }

  .slider-block.style-one .slider-main .row>div:last-child .user-infor {
    top: calc(50% + 230px);
    right: calc(50% - 20px)
  }
}

@media (max-width:767.98px) {
  .slider-block.style-one .slider-main .row {
    padding-top: 80px;
    padding-bottom: 80px
  }

  .slider-block.style-one .slider-main .row>div:last-child .bg-img img:first-child {
    display: none
  }

  .slider-block.style-one .slider-main .row>div:last-child .bg-img img:nth-child(2) {
    display: none
  }

  .slider-block.style-one .slider-main .row>div:last-child .bg-img img:nth-child(3) {
    display: none
  }

  .slider-block.style-one .slider-main .row>div:last-child .icon svg:first-child {
    display: none
  }

  .slider-block.style-one .slider-main .row>div:last-child .icon svg:last-child {
    display: none
  }

  .slider-block.style-one .slider-main .row>div:last-child .user-infor {
    display: none
  }
}

@media (max-width:575.98px) {
  .slider-block.style-one {
    margin-top: 60px
  }

  .slider-block.style-one .slider-main .row {
    padding-top: 50px;
    padding-bottom: 60px
  }

  .slider-block.style-one .slider-main .row .mt-40 {
    margin-top: 20px
  }
}

.slider-block.style-two .slider-main {
  width: 100%;
  height: 100vh;
  background-image: url(../images/slider/bg-slider2.png);
  background-position: center;
  background-size: cover
}

.slider-block.style-two .slider-main .container {
  position: relative
}

.slider-block.style-two .slider-main .container .block-input {
  height: 76px;
  position: relative;
  padding-left: 0;
  padding-right: 0
}

.slider-block.style-two .slider-main .container .block-input input {
  width: 100%;
  height: 100%;
  padding: 8px 190px 8px 24px;
  border-radius: 52px
}

.slider-block.style-two .slider-main .container .block-input .block-button {
  position: absolute;
  top: 8px;
  right: 8px;
  bottom: 8px
}

.slider-block.style-two .slider-main .container .block-input .block-button a {
  height: 100%
}

.slider-block.style-two .slider-main .container .block-input .block-button a span:nth-child(2) {
  padding: 16px 32px
}

.slider-block.style-two .slider-main .container .list-avatar img {
  position: absolute
}

.slider-block.style-two .slider-main .container .list-avatar img:nth-child(1) {
  left: 10px;
  top: 200px;
  animation: slide_1 18s ease-in-out alternate infinite
}

.slider-block.style-two .slider-main .container .list-avatar img:nth-child(2) {
  left: -60px;
  bottom: 300px;
  animation: slide_2 15s ease-in-out alternate infinite
}

.slider-block.style-two .slider-main .container .list-avatar img:nth-child(3) {
  left: 400px;
  bottom: 100px;
  animation: slide_1 15s ease-in-out alternate infinite
}

.slider-block.style-two .slider-main .container .list-avatar img:nth-child(4) {
  right: 400px;
  bottom: 120px;
  animation: slide_2 18s ease-in-out alternate infinite
}

.slider-block.style-two .slider-main .container .list-avatar img:nth-child(5) {
  right: 0;
  top: 160px;
  animation: slide_1 20s ease-in-out alternate infinite
}

.slider-block.style-two .slider-main .container .list-avatar img:nth-child(6) {
  right: -20px;
  bottom: 340px;
  animation: slide_2 15s ease-in-out alternate infinite
}

@media (max-width:1479.98px) {
  .slider-block.style-two .slider-main .container .list-avatar img:nth-child(1) {
    top: 140px;
    left: 60px
  }

  .slider-block.style-two .slider-main .container .list-avatar img:nth-child(2) {
    left: 10px;
    bottom: 300px
  }

  .slider-block.style-two .slider-main .container .list-avatar img:nth-child(5) {
    right: 40px;
    top: 160px
  }

  .slider-block.style-two .slider-main .container .list-avatar img:nth-child(6) {
    right: 20px;
    bottom: 340px
  }
}

@media (max-width:1023.98px) {
  .slider-block.style-two .slider-main .container .list-avatar img {
    display: none
  }
}

@media (max-width:991.98px) {
  .slider-block.style-two .slider-main {
    height: auto
  }

  .slider-block.style-two .slider-main .container {
    padding-top: 160px;
    padding-bottom: 80px
  }
}

@media (max-width:575.98px) {
  .slider-block.style-two .slider-main .container {
    padding-top: 120px;
    padding-bottom: 60px
  }

  .slider-block.style-two .slider-main .container .block-input {
    height: 54px;
    padding-left: 15px;
    padding-right: 15px
  }

  .slider-block.style-two .slider-main .container .block-input input {
    border-radius: 24px;
    padding: 8px 110px 8px 16px
  }

  .slider-block.style-two .slider-main .container .block-input .block-button {
    top: 4px;
    right: 19px;
    bottom: 4px;
    font-size: 14px;
    line-height: 20px
  }

  .slider-block.style-two .slider-main .container .block-input .block-button a {
    border-radius: 24px
  }

  .slider-block.style-two .slider-main .container .block-input .block-button a span:nth-child(2) {
    padding: 10px 16px
  }
}

@keyframes slide_1 {
  0% {
    transform: translate(0) rotate(0)
  }

  15% {
    transform: translate(10px, 10px) rotate(15deg)
  }

  30% {
    transform: translate(10px, -15px) rotate(0)
  }

  45% {
    transform: translate(-10px, -25px) rotate(-10deg)
  }

  60% {
    transform: translate(0, 25px) rotate(15deg)
  }

  75% {
    transform: translate(-10px, -15px) rotate(10deg)
  }

  90% {
    transform: translate(-5, -5px) rotate(-10deg)
  }

  100% {
    transform: translate(0) rotate(0)
  }
}

@keyframes slide_2 {
  0% {
    transform: translate(0) rotate(0)
  }

  25% {
    transform: translate(15px, -5px) rotate(-15deg)
  }

  50% {
    transform: translate(-10px, 10px) rotate(0)
  }

  75% {
    transform: translate(5px, -5px) rotate(15deg)
  }

  100% {
    transform: translate(0) rotate(0)
  }
}

@keyframes moveY {
  0% {
    transform: translateY(-50%) rotate(0)
  }

  25% {
    transform: translateY(calc(-50% + 15px)) rotate(2deg)
  }

  50% {
    transform: translateY(-50%) rotate(0)
  }

  75% {
    transform: translateY(calc(-50% + 15px)) rotate(-2deg)
  }

  100% {
    transform: translateY(-50%) rotate(0)
  }
}

@keyframes moveYY {
  0% {
    transform: translateY(-50%)
  }

  50% {
    transform: translateY(calc(-50% - 15px))
  }

  100% {
    transform: translateY(-50%)
  }
}

@keyframes moveX {
  0% {
    transform: translateX(0) rotate(0)
  }

  25% {
    transform: translateX(15px) rotate(-2deg)
  }

  50% {
    transform: translateX(15px) rotate(0)
  }

  75% {
    transform: translateX(0) rotate(2deg)
  }

  100% {
    transform: translateX(0) rotate(0)
  }
}

.slider-block.style-two.style-three .slider-main {
  background-image: url(../images/slider/bg-slider3.png);
  height: 100%;
  padding-top: 180px;
  padding-bottom: 120px
}

.slider-block.style-two.style-three .slider-main .container .text-heading {
  position: relative;
  height: 176px
}

.slider-block.style-two.style-three .slider-main .container .text-heading .heading1 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  cursor: none
}

.slider-block.style-two.style-three .slider-main .container .text-heading .heading1:nth-child(1) {
  color: rgba(255, 255, 255, .5)
}

.slider-block.style-two.style-three .slider-main .container .text-heading .heading1:nth-child(2) {
  color: #fff;
  clip-path: circle(0)
}

.slider-block.style-two.style-three .slider-main .container .text-heading:hover .cursor {
  opacity: 1;
  cursor: none
}

.slider-block.style-two.style-three .slider-main .container .block-button a {
  padding: 16px 32px
}

.slider-block.style-two.style-three .slider-main .container .list-avatar img:nth-child(1) {
  width: 52px;
  height: 52px;
  left: -140px;
  top: -10px
}

.slider-block.style-two.style-three .slider-main .container .list-avatar img:nth-child(2) {
  width: 80px;
  height: 80px;
  left: unset;
  right: -100px;
  bottom: 30px
}

.slider-block.style-two.style-three .slider-main .container .list-cate .item {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, .3) 0, rgba(255, 255, 255, 0) 100%)
}

.slider-block.style-two.style-three .slider-main .container .list-cate .item::before {
  content: "";
  position: absolute;
  width: 50%;
  height: 50%
}

.slider-block.style-two.style-three .slider-main .container .list-cate .item:nth-child(1) {
  width: 124px;
  height: 124px;
  right: 320px;
  bottom: 0;
  animation: slide_2 18s ease-in-out alternate infinite
}

.slider-block.style-two.style-three .slider-main .container .list-cate .item:nth-child(1)::before {
  left: -6px;
  bottom: -6px;
  border-radius: 0 0 0 200px;
  border-left: 3px solid var(--yellow);
  border-bottom: 3px solid var(--yellow)
}

.slider-block.style-two.style-three .slider-main .container .list-cate .item:nth-child(2) {
  width: 104px;
  height: 104px;
  left: -180px;
  bottom: -20px;
  animation: slide_1 15s ease-in-out alternate infinite
}

.slider-block.style-two.style-three .slider-main .container .list-cate .item:nth-child(2)::before {
  right: -6px;
  bottom: -6px;
  border-radius: 0 0 200px 0;
  border-right: 3px solid var(--yellow);
  border-bottom: 3px solid var(--yellow)
}

.slider-block.style-two.style-three .slider-main .container .list-cate .item:nth-child(3) {
  width: 88px;
  height: 88px;
  right: 20px;
  top: -40px;
  animation: slide_2 14s ease-in-out alternate infinite
}

.slider-block.style-two.style-three .slider-main .container .list-cate .item:nth-child(3)::before {
  width: calc(50% + 6px);
  height: calc(50% + 6px);
  right: -6px;
  top: -6px;
  border-radius: 0 200px 0 0;
  border-top: 3px solid var(--yellow);
  border-right: 3px solid var(--yellow)
}

.slider-block.style-two.style-three .slider-main .container .list-cate .item:nth-child(3)::after {
  content: "";
  position: absolute;
  width: calc(50% + 6px);
  height: calc(50% + 6px);
  right: -6px;
  bottom: -6px;
  border-radius: 0 0 200px 0;
  border-bottom: 3px solid var(--yellow);
  border-right: 3px solid var(--yellow)
}

@media (max-width:1720.98px) {
  .slider-block.style-two.style-three .slider-main .container .list-avatar img:nth-child(1) {
    left: 20px;
    top: -70px
  }

  .slider-block.style-two.style-three .slider-main .container .list-avatar img:nth-child(2) {
    right: 20px;
    bottom: -40px
  }

  .slider-block.style-two.style-three .slider-main .container .list-cate .item:nth-child(2) {
    left: 400px;
    bottom: -60px
  }

  .slider-block.style-two.style-three .slider-main .container .list-cate .item:nth-child(3) {
    right: 20px
  }
}

@media (max-width:1040.98px) and (min-width:992px) {
  .slider-block.style-two.style-three .slider-main .container .text-heading {
    height: 264px
  }

  .slider-block.style-two.style-three .slider-main .container .list-avatar {
    display: none
  }

  .slider-block.style-two.style-three .slider-main .container .list-cate .item {
    display: none
  }
}

@media (max-width:991.98px) {
  .slider-block.style-two.style-three .slider-main {
    height: 100%;
    padding-top: 0;
    padding-bottom: 0
  }

  .slider-block.style-two.style-three .slider-main .container .text-heading {
    height: auto
  }

  .slider-block.style-two.style-three .slider-main .container .text-heading .heading1 {
    position: relative;
    cursor: auto
  }

  .slider-block.style-two.style-three .slider-main .container .text-heading .heading1:nth-child(1) {
    display: none
  }

  .slider-block.style-two.style-three .slider-main .container .text-heading .heading1:nth-child(2) {
    color: #fff;
    clip-path: unset !important
  }

  .slider-block.style-two.style-three .slider-main .container .text-heading:hover .cursor {
    opacity: 0;
    cursor: auto
  }

  .slider-block.style-two.style-three .slider-main .container .list-avatar {
    display: none
  }

  .slider-block.style-two.style-three .slider-main .container .list-cate .item {
    display: none
  }
}

@media (max-width:575.98px) {
  .slider-block.style-two.style-three .slider-main .container {
    padding-top: 120px
  }

  .slider-block.style-two.style-three .slider-main .container .block-button a {
    padding: 12px 16px
  }
}

.slider-block.style-two.style-four {
  position: relative;
  z-index: 1;
  background-color: var(--on-surface)
}

.slider-block.style-two.style-four .slider-main {
  background-image: url(../images/slider/bg-slider4.png)
}

.slider-block.style-two.style-four .slider-main .container {
  position: relative
}

@media (max-width:1320.98px) {
  .slider-block.style-two.style-four .slider-main {
    height: auto
  }

  .slider-block.style-two.style-four .slider-main .container {
    padding-top: 180px;
    padding-bottom: 100px
  }
}

@media (max-width:991.98px) {
  .slider-block.style-two.style-four .slider-main .container {
    padding-top: 160px;
    padding-bottom: 80px
  }
}

@media (max-width:449.98px) {
  .slider-block.style-two.style-four .slider-main .container {
    padding-top: 140px;
    padding-bottom: 70px
  }
}

@keyframes scroll {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-1364px)
  }
}

@keyframes scrollMobile {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-1187.2px)
  }
}

@keyframes scroll3 {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-1760px)
  }
}

.section-form-chat {
  position: relative;
  overflow: hidden
}

.section-form-chat .bg-img {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center
}

.section-form-chat .bg-img img {
  position: relative;
  z-index: -1
}

.section-form-chat .form-chat-block {
  position: relative;
  z-index: 1
}

.section-form-chat .form-chat-block .form-content {
  border: 8px solid var(--secondary);
  background: var(--on-surface);
  box-shadow: 0 -12px 60px 0 rgba(125, 146, 255, .3)
}

.section-form-chat .form-chat-block .form-content .form-chat {
  position: relative;
  border: 1px solid var(--line-dark)
}

.section-form-chat .form-chat-block .form-content .form-chat textarea {
  width: 100%;
  height: 30px;
  max-height: 180px;
  padding-left: 20px;
  background: 0 0;
  resize: none
}

.section-form-chat .form-chat-block .form-content .form-chat span i {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--line-dark);
  transition: all ease .4s;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center
}

.section-form-chat .form-chat-block .form-content .form-chat span i:hover {
  background: var(--blue)
}

.section-form-chat .form-chat-block .form-content .form-chat:focus-within {
  border: 1px solid var(--line)
}

@media (max-width:991.98px) {
  .section-form-chat .bg-img {
    bottom: -40px
  }
}

@media (max-width:575.98px) {
  .section-form-chat .bg-img {
    bottom: -70px
  }

  .section-form-chat .form-chat-block .form-content .heading {
    padding-left: 16px;
    padding-right: 16px
  }

  .section-form-chat .form-chat-block .form-content .content {
    padding: 28px 16px
  }

  .section-form-chat .form-chat-block .form-content .content .form-chat textarea {
    padding-left: 8px;
    height: 20px
  }

  .section-form-chat .form-chat-block .form-content .content .form-chat span i {
    width: 32px;
    height: 32px;
    font-size: 14px;
    padding-top: 1px
  }
}

.about-us.style-one .container .row>div:last-child {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.about-us.style-one .container .row>div:last-child .bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 534.758px;
  opacity: .32;
  background: #5596f8;
  filter: blur(132px);
  z-index: 1
}

.about-us.style-one .container .row>div:last-child .bg-img:nth-child(2) {
  z-index: 2;
  animation: moveYUp 10s linear infinite;
  position: relative
}

.about-us.style-one .container .row>div:last-child .bg-img:nth-child(2) svg {
  position: absolute;
  bottom: -50px;
  left: -55px
}

.about-us.style-one .container .row>div:last-child .bg-img:nth-child(3) {
  padding-right: 45px;
  z-index: 2;
  animation: moveYDown 10s linear infinite;
  position: relative
}

.about-us.style-one .container .row>div:last-child .bg-img:nth-child(3) svg {
  position: absolute;
  top: -54px;
  right: -16px
}

.about-us.style-one .container .row>div:last-child>img {
  position: absolute;
  bottom: 8px;
  right: 13px;
  z-index: 3
}

@media (max-width:1340px) {
  .about-us.style-one .container .row {
    flex-direction: column-reverse;
    align-items: flex-start
  }

  .about-us.style-one .container .row>div:first-child {
    width: 100%;
    margin-top: 32px
  }

  .about-us.style-one .container .row>div:first-child .heading3 p {
    display: inline-block
  }

  .about-us.style-one .container .row>div:last-child {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    width: 100%
  }

  .about-us.style-one .container .row>div:last-child .bg-img:nth-child(3) {
    padding-right: 0
  }

  .about-us.style-one .container .row>div:last-child .bg-img:nth-child(3) svg {
    right: -47px
  }

  .about-us.style-one .container .row>div:last-child>img {
    right: unset
  }
}

@media (max-width:767.98px) {
  .about-us.style-one .container .row {
    gap: 20px
  }

  .about-us.style-one .container .row>div:first-child {
    margin-top: 24px
  }

  .about-us.style-one .container .row>div:last-child .bg-img img {
    width: 100%
  }

  .about-us.style-one .container .row>div:last-child .bg-img:nth-child(2) {
    width: 42%;
    animation: moveYUpSmall 10s linear infinite
  }

  .about-us.style-one .container .row>div:last-child .bg-img:nth-child(2) svg {
    bottom: -42px;
    left: -28px;
    width: 24%
  }

  .about-us.style-one .container .row>div:last-child .bg-img:nth-child(3) {
    width: 34%;
    animation: moveYDownSmall 10s linear infinite
  }

  .about-us.style-one .container .row>div:last-child .bg-img:nth-child(3) svg {
    top: -42px;
    right: -20px;
    width: 22%
  }

  .about-us.style-one .container .row>div:last-child>img {
    width: 91%
  }
}

@keyframes moveYUp {
  0% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(15px)
  }

  100% {
    transform: translateY(0)
  }
}

@keyframes moveYDown {
  0% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-15px)
  }

  100% {
    transform: translateY(0)
  }
}

@keyframes moveYUpSmall {
  0% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(8px)
  }

  100% {
    transform: translateY(0)
  }
}

@keyframes moveYDownSmall {
  0% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }

  100% {
    transform: translateY(0)
  }
}

.about-block.style-two .row>div:first-child {
  position: relative
}

.about-block.style-two .row>div:first-child .infor {
  position: absolute;
  right: -30px;
  bottom: -30px;
  box-shadow: 0 10px 25px 0 rgba(54, 95, 104, .1)
}

@media (max-width:991.98px) {
  .about-block.style-two .row>div:first-child .infor {
    right: 25px;
    bottom: -40px
  }
}

.about-us.style-about.style-three .container .row>div:first-child .heading3 span::before {
  border: 3px solid var(--yellow)
}

.about-block.style-four .shared-bg-img {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0
}

.about-block.style-four .shared-bg-img img {
  width: 100%;
  height: 100%
}

.about-block.style-four .container .row .bg-img {
  position: relative
}

@media (max-width:991.98px) {
  .about-block.style-four .container .row>div:last-child .list-counter {
    display: flex;
    flex-direction: column;
    align-items: center
  }

  .about-block.style-four .container .row>div:last-child .list-counter .flex-between {
    width: 100%;
    justify-content: space-around
  }

  .about-block.style-four .container .row>div:last-child .list-counter .line-dark {
    width: 80%
  }
}

@media (max-width:449.98px) {
  .about-block.style-four .container .row>div:last-child .list-counter .flex-between {
    justify-content: space-between
  }

  .about-block.style-four .container .row>div:last-child .list-counter .line-dark {
    width: 100%
  }
}

.about-us.style-about .container .row>div:first-child .heading3 {
  z-index: 2
}

.about-us.style-about .container .row>div:first-child .heading3 span {
  position: relative
}

.about-us.style-about .container .row>div:first-child .heading3 span::before {
  content: "";
  position: absolute;
  left: -1px;
  right: 0;
  bottom: -22px;
  height: 30px;
  background-color: transparent;
  border: 3px solid var(--purple);
  border-radius: 30%
}

.about-us.style-about .container .row>div:first-child .heading3 span::after {
  content: "";
  position: absolute;
  left: -1px;
  right: 0;
  bottom: -24px;
  height: 24px;
  background-color: #1B1B1B;
  z-index: 1
}

.about-us.style-about .container .row>div:first-child .heading3 p {
  position: relative;
  z-index: 2
}

@media (max-width:991.98px) {
  .about-us.style-about .container .row>div:last-child .count {
    justify-content: space-around
  }
}

@media (max-width:575.98px) {

  .about-us.style-about .container .row>div:first-child .heading3 span::after,
  .about-us.style-about .container .row>div:first-child .heading3 span::before {
    display: none
  }

  .about-us.style-about .container .row>div:last-child .count {
    justify-content: space-between
  }
}

.list-service.style-one .list .service-item .heading7 {
  position: relative;
  display: inline-block
}

.list-service.style-one .list .service-item .heading7::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--white);
  transition: all ease .3s
}

.list-service.style-one .list .service-item .heading7:hover::before {
  width: 100%
}

.list-service.style-one .list .service-item:hover {
  background-color: var(--line-dark)
}

.services-block.style-two .list .service-item {
  transition: all ease .4s;
  position: relative
}

.services-block.style-two .list .service-item .heading i::before {
  transition: all ease .4s;
  color: var(--secondary)
}

.services-block.style-two .list .service-item .desc {
  padding-bottom: 56px
}

.services-block.style-two .list .service-item:hover {
  box-shadow: 0 10px 25px 0 rgba(54, 95, 104, .1)
}

.services-block.style-two .list .service-item:hover .heading i::before {
  color: var(--on-surface)
}

@media (max-width:575.98px) {
  .services-block.style-two .list .service-item {
    padding-bottom: 16px
  }

  .services-block.style-two .list .service-item .desc {
    padding-bottom: 44px
  }
}

.shared-bg-service {
  background-attachment: fixed;
  background-image: url(../images/components/bg-nela.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover
}

.services-block.style-three .list .service-item {
  border-bottom: 4px solid var(--yellow);
  transition: all ease .5s
}

.services-block.style-three .list .service-item .line {
  text-align: center;
  border: 1px dashed var(--yellow);
  width: 80%;
  transition: all ease .3s
}

.services-block.style-three .list .service-item .heading i {
  transition: all ease .3s
}

.services-block.style-three .list .service-item .body3,
.services-block.style-three .list .service-item .heading5,
.services-block.style-three .list .service-item u {
  transition: all ease .3s
}

.services-block.style-three .list .service-item:hover {
  background-color: var(--yellow)
}

.services-block.style-three .list .service-item:hover .heading i::before {
  color: var(--white)
}

.services-block.style-three .list .service-item:hover .line {
  border-color: var(--white)
}

.services-block.style-three .list .service-item:hover .body3,
.services-block.style-three .list .service-item:hover .heading5,
.services-block.style-three .list .service-item:hover u {
  color: var(--white)
}

.list-service {
  position: relative
}

.list-service .list .service-item {
  transition: all ease .3s
}

.list-service .list .service-item i::before {
  transition: all ease .3s
}

.list-service .list .service-item .text-placehover {
  transition: all ease .3s
}

.list-service .list .service-item:hover {
  background-color: var(--purple);
  margin-top: -8px
}

.list-service .list .service-item:hover i::before {
  color: var(--white)
}

.list-service .list .service-item:hover .text-placehover {
  color: var(--white)
}

@media (max-width:1023.98px) {
  .list-service .list .service-item:hover {
    margin-top: 0
  }
}

@media (max-width:575.98px) {
  .list-service .list .pb-32 {
    padding-bottom: 8px
  }

  .list-service .list .pt-32 {
    padding-top: 8px
  }

  .list-service .list .mt-32 {
    margin-top: 16px
  }
}

.style-service .list-service.style-one .list .service-item:hover {
  background-color: var(--purple)
}

.how-it-work .row.mt-40>div:first-child .feature-item {
  position: relative
}

.how-it-work .row.mt-40>div:first-child .feature-item::before {
  content: "";
  position: absolute;
  height: 36px;
  width: 1px;
  background-color: var(--white);
  bottom: -38px;
  left: 36px
}

.how-it-work .row.mt-40>div:first-child .feature-item:last-child::before {
  display: none
}

.how-it-work .row.mt-40>div:last-child .bg-img {
  position: relative
}

.how-it-work .row.mt-40>div:last-child .bg-img .count {
  position: absolute;
  left: 32px;
  bottom: 32px
}

@media (max-width:991.98px) {
  .how-it-work .row.mt-40>div:first-child .feature-item::before {
    height: 21px;
    bottom: -24px
  }
}

@media (max-width:575.98px) {
  .how-it-work .row.mt-40>div:first-child .feature-item::before {
    height: 22px;
    bottom: -24px;
    left: 28px
  }

  .how-it-work .row.mt-40>div:last-child .bg-img {
    height: 240px
  }

  .how-it-work .row.mt-40>div:last-child .bg-img img {
    height: 100%;
    object-fit: cover
  }

  .how-it-work .row.mt-40>div:last-child .bg-img .count {
    left: 16px;
    bottom: 16px;
    padding-left: 16px;
    padding-right: 16px
  }
}

.how-it-work.style-four {
  background-attachment: fixed;
  background-image: url(../images/components/bg-how-it-work4.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 2
}

@media (max-width:991.98px) {
  .how-it-work.style-four .heading .body2 {
    text-align: left !important
  }
}

.style-purple .col-lg-7 .bg-blue {
  background-color: var(--purple)
}

.testimonial-block.style-one .container .row>div .list-avatar {
  padding-left: 54px;
  padding-right: 54px;
  position: relative
}

.testimonial-block.style-one .container .row>div .list-avatar .avatar.slick-slider {
  padding-left: 70px;
  padding-right: 70px
}

.testimonial-block.style-one .container .row>div .list-avatar .avatar.slick-slider .slick-list {
  margin-left: -20px;
  margin-right: -20px;
  padding: 0 !important
}

.testimonial-block.style-one .container .row>div .list-avatar .avatar.slick-slider .slick-list .slick-track {
  overflow: auto;
  padding-top: 70px;
  padding-bottom: 50px;
  display: flex !important
}

.testimonial-block.style-one .container .row>div .list-avatar .avatar.slick-slider .slick-list .slick-track .item {
  padding-left: 10px;
  padding-right: 10px;
  transition: all ease .4s;
  transform: scale(.9);
  border-radius: 50%
}

.testimonial-block.style-one .container .row>div .list-avatar .avatar.slick-slider .slick-list .slick-track .item .bg-img {
  border-radius: 50%;
  transition: all ease .4s;
  padding: 10px
}

.testimonial-block.style-one .container .row>div .list-avatar .avatar.slick-slider .slick-list .slick-track .item .bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.testimonial-block.style-one .container .row>div .list-avatar .avatar.slick-slider .slick-list .slick-track .item.slick-center {
  transform: scale(1.2)
}

.testimonial-block.style-one .container .row>div .list-avatar .avatar.slick-slider .slick-list .slick-track .item.slick-center .bg-img {
  background-color: var(--line-dark)
}

.testimonial-block.style-one .container .row>div .list-avatar .next-btn,
.testimonial-block.style-one .container .row>div .list-avatar .prev-btn {
  position: absolute;
  top: calc(50% + 10px);
  transform: translateY(-50%);
  cursor: pointer;
  transition: all ease .5s;
  z-index: 1
}

.testimonial-block.style-one .container .row>div .list-avatar .next-btn:hover,
.testimonial-block.style-one .container .row>div .list-avatar .prev-btn:hover {
  border: 1px solid var(--blue) !important
}

.testimonial-block.style-one .container .row>div .list-avatar .prev-btn {
  left: 54px
}

.testimonial-block.style-one .container .row>div .list-avatar .next-btn {
  right: 54px
}

@keyframes opacityAnimate {
  from {
    opacity: 0;
    transform: translate(500px)
  }

  to {
    opacity: 1;
    transform: translate(0)
  }
}

@media (max-width:575.98px) {
  .testimonial-block.style-one .container .row>div .list-avatar {
    padding-left: 0;
    padding-right: 0
  }

  .testimonial-block.style-one .container .row>div .list-avatar .avatar.slick-slider {
    padding-left: 50px;
    padding-right: 50px
  }

  .testimonial-block.style-one .container .row>div .list-avatar .avatar.slick-slider .slick-list .slick-track {
    padding-top: 40px;
    padding-bottom: 30px
  }

  .testimonial-block.style-one .container .row>div .list-avatar .avatar.slick-slider .slick-list .slick-track .item {
    padding-left: 8px;
    padding-right: 8px
  }

  .testimonial-block.style-one .container .row>div .list-avatar .avatar.slick-slider .slick-list .slick-track .item .bg-img {
    padding: 8px
  }

  .testimonial-block.style-one .container .row>div .list-avatar .prev-btn {
    left: 0;
    width: 24px;
    height: 24px
  }

  .testimonial-block.style-one .container .row>div .list-avatar .prev-btn i {
    font-size: 14px
  }

  .testimonial-block.style-one .container .row>div .list-avatar .next-btn {
    right: 0;
    width: 24px;
    height: 24px
  }

  .testimonial-block.style-one .container .row>div .list-avatar .next-btn i {
    font-size: 14px
  }
}

.testimonial-block.style-two {
  overflow: hidden
}

.testimonial-block.style-two .list-img .bg-img {
  width: 360px;
  height: 360px;
  border-radius: 50%;
  padding: 72px;
  border: 1px dashed var(--line);
  position: relative
}

.testimonial-block.style-two .list-img .bg-img .logo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(31, 190, 114, .1)
}

.testimonial-block.style-two .list-img .bg-img .list-avatar {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 50%;
  animation: circleScroll 30s linear infinite
}

.testimonial-block.style-two .list-img .bg-img .list-avatar .avatar {
  position: absolute;
  width: 96px;
  height: 96px
}

.testimonial-block.style-two .list-img .bg-img .list-avatar .avatar img {
  width: 100%;
  height: 100%;
  animation: circleScrollMinus 30s linear infinite
}

.testimonial-block.style-two .list-img .bg-img .list-avatar .avatar:nth-child(1) {
  top: -48px;
  left: 50%;
  transform: translateX(-50%)
}

.testimonial-block.style-two .list-img .bg-img .list-avatar .avatar:nth-child(2) {
  top: 36px;
  right: -30px
}

.testimonial-block.style-two .list-img .bg-img .list-avatar .avatar:nth-child(3) {
  bottom: 36px;
  right: -30px
}

.testimonial-block.style-two .list-img .bg-img .list-avatar .avatar:nth-child(4) {
  bottom: -48px;
  left: 50%;
  transform: translateX(-50%)
}

.testimonial-block.style-two .list-img .bg-img .list-avatar .avatar:nth-child(5) {
  bottom: 36px;
  left: -30px
}

.testimonial-block.style-two .list-img .bg-img .list-avatar .avatar:nth-child(6) {
  top: 36px;
  left: -30px
}

.testimonial-block.style-two .row {
  height: 100%
}

.testimonial-block.style-two .row>div:nth-child(2) {
  height: 100%
}

.testimonial-block.style-two .row>div:nth-child(2) .swiper {
  height: 274px !important;
  overflow-y: hidden !important
}

@media (max-width:1290px) and (min-width:992.02px) {
  .testimonial-block.style-two .row>div:nth-child(2) .swiper {
    height: 290px !important
  }
}

@media (max-width:991.98px) {
  .testimonial-block.style-two .row {
    padding-top: 40px
  }

  .testimonial-block.style-two .row>div:last-child {
    margin-top: 40px
  }

  .testimonial-block.style-two .row .list-img {
    display: flex;
    align-items: center;
    justify-content: center
  }

  .testimonial-block.style-two .row .list-img img {
    width: 70%
  }
}

@media (max-width:575.98px) {
  .testimonial-block.style-two .row {
    padding-top: 20px
  }

  .testimonial-block.style-two .row .list-img .bg-img {
    width: 240px;
    height: 240px
  }

  .testimonial-block.style-two .row .list-img .bg-img .logo svg {
    width: 60px;
    height: 32px
  }

  .testimonial-block.style-two .row .list-img .bg-img .list-avatar .avatar {
    width: 60px;
    height: 60px
  }

  .testimonial-block.style-two .row .list-img .bg-img .list-avatar .avatar:nth-child(1) {
    top: -30px;
    left: 50%;
    transform: translateX(-50%)
  }

  .testimonial-block.style-two .row .list-img .bg-img .list-avatar .avatar:nth-child(2) {
    top: 35px;
    right: -18px
  }

  .testimonial-block.style-two .row .list-img .bg-img .list-avatar .avatar:nth-child(3) {
    bottom: 27px;
    right: -14px
  }

  .testimonial-block.style-two .row .list-img .bg-img .list-avatar .avatar:nth-child(4) {
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%)
  }

  .testimonial-block.style-two .row .list-img .bg-img .list-avatar .avatar:nth-child(5) {
    bottom: 27px;
    left: -14px
  }

  .testimonial-block.style-two .row .list-img .bg-img .list-avatar .avatar:nth-child(6) {
    top: 35px;
    left: -18px
  }
}

.testimonial-block.style-three {
  background-attachment: fixed;
  background-image: url(../images/components/bg-color-testimonial3.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover
}

.testimonial-block.style-three .row {
  height: 100%
}

.testimonial-block.style-three .row>div:nth-child(1) .bg-img {
  position: relative;
  border-radius: 24px;
  overflow: hidden
}

.testimonial-block.style-three .row>div:nth-child(1) .bg-img>div {
  position: absolute;
  width: 280px;
  height: 280px;
  padding: 0 50px;
  left: -30px;
  bottom: -70px
}

@media (max-width:575.98px) {
  .testimonial-block.style-three .row>div:nth-child(1) .bg-img>div {
    width: 170px;
    height: 170px;
    padding: 0 15px;
    left: -10px;
    bottom: -34px
  }
}

.testimonial-block.style-three .row>div:nth-child(2) {
  height: 100%
}

.testimonial-block.style-three .row>div:nth-child(2) .swiper {
  height: 310px !important;
  overflow-y: hidden !important
}

@media (max-width:1290px) and (min-width:992.02px) {
  .testimonial-block.style-three .row>div:nth-child(2) .swiper {
    height: 340px !important
  }
}

@media (max-width:991.98px) {
  .testimonial-block.style-three .row {
    flex-direction: column;
    align-items: center
  }
}

@media (max-width:679.98px) and (min-width:576.02px) {
  .testimonial-block.style-three .row>div:nth-child(2) .swiper {
    height: 360px !important
  }
}

.testimonial-block.style-four {
  position: relative
}

.testimonial-block.style-four .container>.row {
  flex-wrap: nowrap
}

.testimonial-block.style-four .container>.row>div:first-child .block-button .next-btn,
.testimonial-block.style-four .container>.row>div:first-child .block-button .prev-btn {
  border: 1px solid var(--white)
}

.testimonial-block.style-four .container>.row>div:first-child .block-button .disabled {
  border: 1px solid var(--secondary)
}

.testimonial-block.style-four .container>.row>div:first-child .block-button .disabled i {
  color: var(--secondary)
}

.testimonial-block.style-four .container>.row>div:last-child {
  overflow: hidden
}

@media (max-width:991.98px) {
  .testimonial-block.style-four .container>.row {
    flex-wrap: wrap
  }
}

@keyframes showItem {
  from {
    transform: scale(.2);
    opacity: 0
  }

  to {
    transform: scale(1);
    opacity: 1
  }
}

.section-pricing .container>.row>div:first-child button {
  border-radius: 8px
}

.section-pricing .container>.row .list-pricing .pricing-item {
  border: 2px solid transparent;
  cursor: pointer;
  transition: all ease .3s
}

.section-pricing .container>.row .list-pricing .pricing-item a span:nth-child(2) {
  border: 2px solid var(--blue);
  display: block;
  width: 100%;
  text-align: center;
  background-color: var(--line-dark)
}

.section-pricing .container>.row .list-pricing .pricing-item a:hover span:nth-child(2) {
  background-color: var(--blue)
}

.section-pricing .container>.row .list-pricing .pricing-item i.ph-x {
  background-color: rgba(255, 255, 255, .2)
}

.section-pricing .container>.row .list-pricing .pricing-item:hover a span:nth-child(2) {
  background-color: var(--blue)
}

.section-pricing .container .list-more-feature .row {
  margin-left: 0;
  margin-right: 0
}

.section-pricing .container .list-more-feature .row>div {
  padding-left: 0;
  padding-right: 0
}

@media (max-width:1199.98px) {
  .section-pricing .container>.row>div:last-child {
    padding-left: 15px
  }
}

@media (max-width:575.98px) {
  .section-pricing .container .list-more-feature .row .col-4 {
    width: 25%
  }

  .section-pricing .container .list-more-feature .row .col-2 {
    width: 33%
  }
}

.section-pricing.style-one {
  position: relative
}

.section-pricing.style-one>.bg-blur {
  position: absolute;
  right: -50px;
  top: 100px;
  width: 534px;
  height: 534px;
  border-radius: 534px;
  opacity: .14;
  background: #5596f8;
  filter: blur(132px);
  z-index: 0
}

.section-pricing.style-one .container {
  position: relative
}

.section-pricing.style-one .container .bg-blur {
  position: absolute;
  left: -50px;
  top: 0;
  width: 534px;
  height: 534px;
  border-radius: 534px;
  opacity: .14;
  background: #5596f8;
  filter: blur(132px);
  z-index: 0
}

.section-pricing.style-one .container .list-pricing,
.section-pricing.style-one .container .row {
  position: relative;
  z-index: 2
}

@keyframes showListPrice {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

.list-pricing.show {
  display: block;
  animation: showListPrice ease-in-out .5s
}

.style-pricing .section-pricing .container>.row .list-pricing .pricing-item a:hover span:nth-child(2) {
  background-color: var(--purple)
}

.style-pricing .section-pricing .container>.row .list-pricing .pricing-item i.ph-x {
  background-color: rgba(255, 255, 255, .2)
}

.style-pricing .section-pricing .container>.row .list-pricing .pricing-item:hover a span:nth-child(2) {
  background-color: var(--purple)
}

.section-pricing.style-two .container .list-pricing .pricing-item {
  background: #222
}

.section-pricing.style-two .container .list-pricing .pricing-item a {
  border: 2px solid var(--green);
  padding-top: 16px;
  color: var(--white);
  padding-bottom: 16px
}

.section-pricing.style-two .container .list-pricing .pricing-item a:hover {
  background-color: var(--green)
}

.section-pricing.style-two .container .list-pricing .pricing-item i.ph-x {
  background-color: var(--line)
}

.section-pricing.style-two .container .list-pricing .pricing-item:hover {
  box-shadow: 0 10px 25px 0 rgba(54, 95, 104, .15);
  border: 0;
  scale: 1.05
}

@media (max-width:575.98px) {
  .section-pricing.style-two .container .list-pricing .pricing-item a {
    padding-top: 12px;
    padding-bottom: 12px
  }
}

@keyframes showList {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

.section-pricing.style-two .list-pricing.show {
  display: block;
  animation: showList ease-in-out .7s
}

.style-three .section-pricing {
  padding-bottom: 100px;
  background-color: var(--black-surface)
}

.style-three .section-pricing>.bg-blur {
  background: 0 0
}

.style-three .section-pricing .container .bg-blur {
  background: 0 0
}

.style-three .section-pricing .container>.row .list-pricing .pricing-item a {
  transition: all ease .1s
}

.style-three .section-pricing .container>.row .list-pricing .pricing-item a:hover span:nth-child(2) {
  color: var(--on-surface);
  background-color: var(--yellow)
}

.style-three .section-pricing .container>.row .list-pricing .pricing-item:hover {
  background-color: #222
}

.style-three .section-pricing .container>.row .list-pricing .pricing-item:hover a {
  color: var(--on-surface)
}

.style-three .section-pricing .container>.row .list-pricing .pricing-item:hover a span:nth-child(2) {
  background-color: var(--yellow)
}

.style-three .section-pricing .bg-blue {
  background-color: var(--yellow);
  color: var(--on-surface)
}

.list-blog .cursor {
  background-color: #111;
  border-radius: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  transition: all linear .1s;
  width: 70px;
  height: 70px;
  opacity: 0;
  pointer-events: none;
  z-index: 2
}

.list-blog .list .slick-list {
  padding-left: 0;
  padding-right: 0
}

.list-blog .list .slick-list .item {
  padding-right: 15px;
  padding-left: 15px;
  cursor: none
}

.list-blog .list .slick-list .item .main-item {
  cursor: none
}

@media (max-width:1023.99px) {
  .list-blog .cursor {
    display: none
  }

  .list-blog .list .slick-list .item {
    cursor: pointer
  }

  .list-blog .list .slick-list .item .main-item {
    cursor: pointer
  }
}

.list-blog.style-two .item .blog-item {
  background-color: var(--surface)
}

.list-blog.style-two .item .blog-item .heading6,
.list-blog.style-two .item .blog-item .text-button-uppercase {
  color: var(--on-surface)
}

.list-blog.style-two .item .blog-item .text-placehover {
  color: var(--secondary)
}

.counter-block.style-three .list-img {
  background-image: url(https://avitex.vn/assets/images/components/bg-grid.png/);
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: center;
  justify-content: flex-end
}

.counter-block.style-three .list-img .bg-img {
  width: 360px;
  height: 360px;
  border-radius: 50%;
  padding: 72px;
  border: 1px dashed var(--line);
  position: relative
}

.counter-block.style-three .list-img .bg-img .logo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(243, 212, 101, .1)
}

.counter-block.style-three .list-img .bg-img .list-avatar {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 50%;
  animation: circleScroll 30s linear infinite
}

.counter-block.style-three .list-img .bg-img .list-avatar .avatar {
  position: absolute;
  width: 96px;
  height: 96px
}

.counter-block.style-three .list-img .bg-img .list-avatar .avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  animation: circleScrollMinus 30s linear infinite
}

.counter-block.style-three .list-img .bg-img .list-avatar .avatar:nth-child(1) {
  top: -48px;
  left: 50%;
  transform: translateX(-50%)
}

.counter-block.style-three .list-img .bg-img .list-avatar .avatar:nth-child(2) {
  top: 36px;
  right: -30px
}

.counter-block.style-three .list-img .bg-img .list-avatar .avatar:nth-child(3) {
  bottom: 36px;
  right: -30px
}

.counter-block.style-three .list-img .bg-img .list-avatar .avatar:nth-child(4) {
  bottom: -48px;
  left: 50%;
  transform: translateX(-50%)
}

.counter-block.style-three .list-img .bg-img .list-avatar .avatar:nth-child(5) {
  bottom: 36px;
  left: -30px
}

.counter-block.style-three .list-img .bg-img .list-avatar .avatar:nth-child(6) {
  top: 36px;
  left: -30px
}

@keyframes circleScroll {
  0% {
    transform: rotate(0)
  }

  100% {
    transform: rotate(360deg)
  }
}

@keyframes circleScrollMinus {
  0% {
    transform: rotate(0)
  }

  100% {
    transform: rotate(-360deg)
  }
}

@media (max-width:991.98px) {
  .counter-block.style-three .row {
    flex-direction: column-reverse
  }

  .counter-block.style-three .row>div:first-child {
    margin-top: 40px
  }

  .counter-block.style-three .row .list-img {
    justify-content: center
  }

  .counter-block.style-three .row .list-img img {
    width: 70%
  }
}

@media (max-width:575.98px) {
  .counter-block.style-three .row .list-img .bg-img {
    width: 240px;
    height: 240px
  }

  .counter-block.style-three .row .list-img .bg-img .logo svg {
    width: 60px;
    height: 32px
  }

  .counter-block.style-three .row .list-img .bg-img .list-avatar .avatar {
    width: 60px;
    height: 60px
  }

  .counter-block.style-three .row .list-img .bg-img .list-avatar .avatar:nth-child(1) {
    top: -30px;
    left: 50%;
    transform: translateX(-50%)
  }

  .counter-block.style-three .row .list-img .bg-img .list-avatar .avatar:nth-child(2) {
    top: 35px;
    right: -18px
  }

  .counter-block.style-three .row .list-img .bg-img .list-avatar .avatar:nth-child(3) {
    bottom: 27px;
    right: -14px
  }

  .counter-block.style-three .row .list-img .bg-img .list-avatar .avatar:nth-child(4) {
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%)
  }

  .counter-block.style-three .row .list-img .bg-img .list-avatar .avatar:nth-child(5) {
    bottom: 27px;
    left: -14px
  }

  .counter-block.style-three .row .list-img .bg-img .list-avatar .avatar:nth-child(6) {
    top: 35px;
    left: -18px
  }
}

.style-purple .counter {
  background-color: var(--line-dark)
}

.style-purple .counter .item .icon {
  background-color: var(--purple)
}

.style-purple .counter .text-on-surface {
  color: var(--white)
}

.style-purple .counter .text-secondary {
  color: var(--placehover)
}

.style-purple .counter .heading2 {
  font-size: 44px;
  line-height: 54px
}

@media (max-width:575.98px) {
  .style-purple .counter .heading2 {
    font-size: 32px;
    line-height: 42px
  }
}

.instagram-block .list-image .item {
  position: relative;
  display: inline-block;
  overflow: hidden;
  cursor: pointer
}

.instagram-block .list-image .item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, .5);
  opacity: 0;
  visibility: hidden;
  transition: all ease .3s;
  z-index: 2
}

.instagram-block .list-image .item img {
  transition: all ease .3s;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01) translateZ(0)
}

.instagram-block .list-image .item a {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all ease .4s
}

.instagram-block .list-image .item a i {
  color: var(--on-surface);
  transition: all ease .3s;
  display: block
}

.instagram-block .list-image .item a:hover {
  background-color: var(--green)
}

.instagram-block .list-image .item a:hover i {
  color: var(--white)
}

.instagram-block .list-image .item:hover a,
.instagram-block .list-image .item:hover::before {
  opacity: 1;
  visibility: visible
}

.instagram-block .list-image .item:hover img {
  transform: scale(1.03) translateZ(0)
}

@media (max-width:575.98px) {
  .instagram-block .list-image .item a {
    width: 32px;
    height: 32px;
    border-radius: 8px
  }

  .instagram-block .list-image .item a i {
    font-size: 20px
  }
}

.form-contact.section-contact {
  position: relative;
  overflow: hidden
}

.form-contact.section-contact .bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  bottom: 0
}

.form-contact.section-contact .container {
  display: flex;
  align-items: center;
  justify-content: flex-end
}

.form-contact.section-contact .container .bg-blur {
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 534px;
  height: 534px;
  border-radius: 534px;
  opacity: .15;
  background: var(--yellow);
  filter: blur(132px);
  z-index: 0
}

.form-contact.section-contact .container .form-block {
  width: 50%;
  height: 100%;
  padding-left: 80px
}

.form-contact.section-contact .container .form-block .row {
  margin-left: -12px;
  margin-right: -12px
}

.form-contact.section-contact .container .form-block .row>div {
  padding-left: 12px;
  padding-right: 12px;
  position: relative
}

.form-contact.section-contact .container .form-block .row>div input,
.form-contact.section-contact .container .form-block .row>div textarea {
  border: 1px solid transparent
}

.form-contact.section-contact .container .form-block .row>div input:focus,
.form-contact.section-contact .container .form-block .row>div textarea:focus {
  border: 1px solid var(--line)
}

.form-contact.section-contact .container .form-block .row>div i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  right: 24px
}

@media (max-width:1320px) {
  .form-contact.section-contact .container .form-block {
    padding-left: 15px
  }
}

@media (max-width:991.98px) {
  .form-contact.section-contact .bg-img {
    position: relative;
    width: 100%
  }

  .form-contact.section-contact .container .form-block {
    width: 100%;
    padding-left: 0
  }
}

.form-contact.style-four {
  background: rgba(125, 60, 243, .1)
}

.form-contact.style-four .bg-img .heading3 {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0
}

@media (max-width:450.98px) {
  .form-contact.style-four .bg-img .heading3 {
    position: relative
  }
}

.style-service .form-contact .button.bg-yellow {
  background-color: var(--purple);
  color: var(--white)
}

.style-service .form-contact .button.bg-yellow .bg-yellow {
  background-color: var(--purple)
}

.style-service .form-contact .button.bg-yellow i {
  color: var(--white)
}

.style-service .form-contact .button.bg-yellow:hover {
  background-color: #5700c9
}

.style-service .form-contact .button.bg-yellow:hover .bg-yellow {
  background-color: #5700c9
}

.form-contact.style-contact .list-social a {
  background-color: rgba(255, 255, 255, .1);
  transition: all ease .3s
}

.form-contact.style-contact .list-social a:hover {
  background-color: var(--purple)
}

.form-contact.style-contact .container>.row .form-block {
  border-radius: 16px;
  background: rgba(255, 255, 255, .06);
  box-shadow: 0 10px 25px 0 rgba(54, 95, 104, .1)
}

.form-contact.style-contact .container>.row .form-block .row {
  margin-left: -12px;
  margin-right: -12px
}

.form-contact.style-contact .container>.row .form-block .row>div {
  padding-left: 12px;
  padding-right: 12px
}

.blog-list .container>.row>div .blog-item {
  transition: all ease .5s;
  cursor: pointer
}

.blog-list .container>.row>div .blog-item .bg-img img {
  transition: all ease .5s;
  object-fit: cover
}

.blog-list .container>.row>div .blog-item .heading5 {
  transition: all ease .3s;
  position: relative;
  display: inline-block
}

.blog-list .container>.row>div .blog-item .heading5::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--white);
  transition: all ease .4s
}

.blog-list .container>.row>div .blog-item:hover .bg-img img {
  transform: scale(1.08)
}

.blog-list .container>.row>div .blog-item:hover .heading5::before {
  width: 100%
}

.blog-list .container>.row>div>.list-nav-number .nav-item {
  cursor: pointer;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-dark);
  transition: all ease .3s
}

.blog-list .container>.row>div>.list-nav-number .nav-item:hover {
  background-color: var(--line-dark)
}

.blog-list .container>.row .cate-block .pb-12 {
  border-bottom: 1px solid var(--line-dark)
}

.blog-list .container>.row .cate-block .list-cate .nav-item .right div {
  width: 32px;
  height: 32px
}

.blog-list .container>.row .cate-block .list-cate .nav-item:hover .left .text-button {
  color: var(--purple)
}

@media (max-width:991.98px) {
  .blog-list .container>.row .pl-65 {
    padding-left: 15px
  }
}

.scroll-to-top-btn {
  background-color: rgba(255, 255, 255, .5);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 0;
  right: 30px;
  transition: all ease .3s;
  box-shadow: 0 5px 25px rgba(58, 64, 67, .2);
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  z-index: 10
}

.scroll-to-top-btn i {
  color: var(--white);
  transition: all ease .3s
}

.scroll-to-top-btn:hover {
  background-color: var(--surface)
}

.scroll-to-top-btn:hover i {
  color: var(--on-surface)
}

@media (max-width:575.98px) {
  .scroll-to-top-btn {
    width: 36px;
    height: 36px;
    right: 20px
  }
}

.style-two .scroll-to-top-btn {
  background-color: rgba(0, 0, 0, .5)
}

.style-two .scroll-to-top-btn:hover {
  background-color: var(--on-surface)
}

.style-two .scroll-to-top-btn:hover i {
  color: var(--white)
}

#footer {
  position: relative
}

#footer .footer-block .heading {
  position: relative
}

#footer .footer-block .heading .footer-navigate {
  position: absolute;
  left: 50%;
  transform: translate(-50%)
}

#footer .footer-block .heading .footer-navigate ul li a {
  position: relative
}

#footer .footer-block .heading .footer-navigate ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #fff;
  transition: all ease .4s
}

#footer .footer-block .heading .footer-navigate ul li:hover a::before {
  width: 100%
}

#footer .footer-block .heading .list-social .item {
  transition: all ease .3s
}

#footer .footer-block .heading .list-social .item:hover {
  background-color: var(--hover)
}

#footer .footer-block .company-contact .mail span {
  text-transform: lowercase
}

@media (max-width:1199.98px) {
  #footer .footer-block .heading .footer-navigate ul {
    gap: 20px
  }
}

@media (max-width:991.98px) {
  #footer .footer-block .heading {
    flex-wrap: wrap;
    row-gap: 20px
  }

  #footer .footer-block .heading .footer-navigate {
    position: relative;
    left: unset;
    transform: unset
  }

  #footer .footer-block .heading .list-social {
    width: 100%;
    justify-content: center
  }
}

@media (max-width:767.98px) {
  #footer .footer-block .heading {
    flex-direction: column;
    justify-content: center
  }

  #footer .footer-block .heading .footer-navigate ul {
    gap: 16px;
    row-gap: 12px;
    flex-wrap: wrap;
    justify-content: center
  }

  #footer .footer-block .heading .footer-navigate ul a {
    font-size: 12px
  }

  #footer .footer-block .company-contact span:nth-child(4) {
    display: none
  }

  #footer .footer-block .company-contact .location {
    width: 100%;
    justify-content: center
  }

  #footer .footer-block .footer-bottom {
    flex-direction: column;
    justify-content: center;
    row-gap: 12px
  }

  #footer .footer-block .footer-bottom .caption1 {
    font-size: 12px
  }
}

@media (max-width:575.98px) {
  #footer .footer-block .heading .list-social a .fs-14 {
    font-size: 12px
  }

  #footer .footer-block .heading .list-social a .fs-12 {
    font-size: 10px
  }
}

#footer .style-two .logo svg path:nth-child(1) {
  fill: var(--green)
}

#footer .style-two .footer-block .heading .list-social .item {
  background-color: var(--green)
}

#footer .style-two .footer-block .heading .list-social .item:hover {
  background-color: #00ff40
}

#footer .style-three .footer-block .logo svg path:nth-child(1) {
  fill: var(--yellow)
}

#footer .style-three .footer-block .heading .list-social .item {
  background-color: var(--yellow)
}

#footer .style-three .footer-block .heading .list-social .item i::before {
  color: var(--white)
}

#footer .style-three .footer-block .heading .list-social .item:hover {
  background-color: var(--hover);
  color: #fff !important
}

#footer .style-three .footer-block .heading .list-social .item:hover i {
  color: #fff !important
}

#footer .style-four .footer-block .logo svg path:nth-child(1) {
  fill: var(--purple)
}

#footer .style-four .footer-block .heading .list-social .item {
  background-color: var(--purple)
}

#footer .style-four .footer-block .heading .list-social .item:hover {
  background-color: #5700c9
}

@keyframes bounceCustom {

  0%,
  13%,
  5% {
    -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

  10%,
  8% {
    -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
    animation-timing-function: cubic-bezier(.755, .05, .855, .06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1)
  }

  16% {
    -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
    animation-timing-function: cubic-bezier(.755, .05, .855, .06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05)
  }

  20% {
    -webkit-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
    transition-timing-function: cubic-bezier(.215, .61, .355, 1);
    -webkit-transform: translateZ(0) scaleY(.95);
    transform: translateZ(0) scaleY(.95)
  }

  24% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02)
  }

  25% {
    -webkit-animation-timing-function: unset;
    animation-timing-function: unset;
    -webkit-transform: unset;
    transform: unset
  }

  100% {
    -webkit-animation-timing-function: unset;
    animation-timing-function: unset;
    -webkit-transform: unset;
    transform: unset
  }
}

@media (max-width:991.98px) {
  .heading1 {
    font-size: 56px;
    line-height: 68px
  }

  .heading2 {
    font-size: 44px;
    line-height: 54px
  }

  .heading3 {
    font-size: 36px;
    line-height: 48px
  }

  .heading4 {
    font-size: 30px;
    line-height: 42px
  }

  .gap-60 {
    gap: 40px
  }

  .gap-40 {
    gap: 32px
  }

  .gap-32 {
    gap: 28px
  }

  .gap-30 {
    gap: 26px
  }

  .gap-28 {
    gap: 24px
  }

  .gap-24 {
    gap: 20px
  }

  .row-gap-60 {
    row-gap: 40px
  }

  .row-gap-40 {
    row-gap: 32px
  }

  .row-gap-32 {
    row-gap: 28px
  }

  .row-gap-24 {
    row-gap: 20px
  }

  .p-40 {
    padding: 32px
  }

  .p-32 {
    padding: 28px
  }

  .p-28 {
    padding: 24px
  }

  .p-24 {
    padding: 20px
  }

  .pb-100 {
    padding-bottom: 60px
  }

  .pb-80 {
    padding-bottom: 50px
  }

  .pb-60 {
    padding-bottom: 40px
  }

  .pb-40 {
    padding-bottom: 32px
  }

  .pb-32 {
    padding-bottom: 28px
  }

  .pb-28 {
    padding-bottom: 24px
  }

  .pb-24 {
    padding-bottom: 20px
  }

  .pt-100 {
    padding-top: 60px
  }

  .pt-80 {
    padding-top: 50px
  }

  .pt-60 {
    padding-top: 40px
  }

  .pt-40 {
    padding-top: 32px
  }

  .pt-32 {
    padding-top: 28px
  }

  .pt-28 {
    padding-top: 24px
  }

  .pt-24 {
    padding-top: 20px
  }

  .mt-100 {
    margin-top: 60px
  }

  .mt-80 {
    margin-top: 50px
  }

  .mt-60 {
    margin-top: 40px
  }

  .mt-40 {
    margin-top: 32px
  }

  .mt-32 {
    margin-top: 28px
  }

  .mt-28 {
    margin-top: 24px
  }

  .mt-24 {
    margin-top: 20px
  }
}

@media (max-width:575.98px) {

  body,
  html {
    font-size: .875em;
    line-height: 1.5
  }

  .heading1 {
    font-size: 36px;
    line-height: 48px
  }

  .heading2 {
    font-size: 32px;
    line-height: 42px
  }

  .heading3 {
    font-size: 28px;
    line-height: 34px
  }

  .heading4 {
    font-size: 24px;
    line-height: 32px
  }

  .heading5 {
    font-size: 20px;
    line-height: 30px
  }

  .heading6 {
    font-size: 18px;
    line-height: 28px
  }

  .heading7 {
    font-size: 16px;
    line-height: 26px
  }

  .body1 {
    font-size: 16px;
    line-height: 26px
  }

  .body2 {
    font-size: 14px;
    line-height: 24px
  }

  .text-title {
    font-size: 14px;
    line-height: 24px
  }

  .text-subtitle {
    font-size: 12px;
    line-height: 20px
  }

  .caption1 {
    font-size: 12px;
    line-height: 20px
  }

  .caption2 {
    font-size: 12px;
    line-height: 16px
  }

  .text-button {
    font-size: 14px;
    line-height: 24px
  }

  .text-button-uppercase {
    font-size: 12px;
    font-weight: 700;
    line-height: 20px;
    text-transform: uppercase
  }

  .fs-60 {
    font-size: 42px
  }

  .fs-40 {
    font-size: 32px
  }

  .gap-60 {
    gap: 28px
  }

  .gap-40 {
    gap: 24px
  }

  .gap-32 {
    gap: 22px
  }

  .gap-30 {
    gap: 20px
  }

  .gap-28 {
    gap: 18px
  }

  .gap-24 {
    gap: 16px
  }

  .gap-20 {
    gap: 14px
  }

  .gap-16 {
    gap: 12px
  }

  .gap-12 {
    gap: 10px
  }

  .gap-8 {
    gap: 6px
  }

  .row-gap-60 {
    row-gap: 28px
  }

  .row-gap-40 {
    row-gap: 24px
  }

  .row-gap-32 {
    row-gap: 22px
  }

  .row-gap-24 {
    row-gap: 16px
  }

  .row-gap-20 {
    row-gap: 14px
  }

  .row-gap-16 {
    row-gap: 12px
  }

  .row-gap-12 {
    row-gap: 10px
  }

  .row-gap-8 {
    row-gap: 6px
  }

  .p-40 {
    padding: 28px
  }

  .p-32 {
    padding: 24px
  }

  .p-28 {
    padding: 22px
  }

  .p-24 {
    padding: 16px
  }

  .p-20 {
    padding: 14px
  }

  .p-16 {
    padding: 12px
  }

  .p-12 {
    padding: 10px
  }

  .p-8 {
    padding: 6px
  }

  .pb-100 {
    padding-bottom: 50px
  }

  .pb-80 {
    padding-bottom: 40px
  }

  .pb-60 {
    padding-bottom: 32px
  }

  .pb-40 {
    padding-bottom: 28px
  }

  .pb-32 {
    padding-bottom: 24px
  }

  .pb-28 {
    padding-bottom: 20px
  }

  .pb-24 {
    padding-bottom: 16px
  }

  .pb-20 {
    padding-bottom: 14px
  }

  .pb-16 {
    padding-bottom: 12px
  }

  .pb-12 {
    padding-bottom: 10px
  }

  .pb-8 {
    padding-bottom: 6px
  }

  .pt-100 {
    padding-top: 50px
  }

  .pt-80 {
    padding-top: 40px
  }

  .pt-60 {
    padding-top: 32px
  }

  .pt-40 {
    padding-top: 28px
  }

  .pt-32 {
    padding-top: 24px
  }

  .pt-28 {
    padding-top: 20px
  }

  .pt-24 {
    padding-top: 16px
  }

  .pt-20 {
    padding-top: 14px
  }

  .pt-16 {
    padding-top: 12px
  }

  .pt-12 {
    padding-top: 10px
  }

  .pt-8 {
    padding-top: 6px
  }

  .pr-40 {
    padding-right: 28px
  }

  .pr-32 {
    padding-right: 24px
  }

  .pr-28 {
    padding-right: 20px
  }

  .pr-24 {
    padding-right: 16px
  }

  .pr-20 {
    padding-right: 14px
  }

  .pr-16 {
    padding-right: 12px
  }

  .pr-12 {
    padding-right: 10px
  }

  .pr-8 {
    padding-right: 6px !important
  }
  .pr-4 {
    padding-right: 4px !important
  }
  .pl-40 {
    padding-left: 28px
  }

  .pl-32 {
    padding-left: 24px
  }

  .pl-28 {
    padding-left: 20px
  }

  .pl-24 {
    padding-left: 16px
  }

  .pl-20 {
    padding-left: 14px
  }

  .pl-16 {
    padding-left: 12px
  }

  .pl-12 {
    padding-left: 10px
  }

  .pl-8 {
    padding-left: 6px !important;
  }
  .pl-4 {
    padding-left: 4px !important;
  }

  .mt-100 {
    margin-top: 50px
  }

  .mt-80 {
    margin-top: 40px
  }

  .mt-60 {
    margin-top: 32px
  }

  .mt-40 {
    margin-top: 28px
  }

  .mt-32 {
    margin-top: 24px
  }

  .mt-28 {
    margin-top: 20px
  }

  .mt-24 {
    margin-top: 16px
  }

  .mt-20 {
    margin-top: 14px
  }

  .mt-16 {
    margin-top: 12px
  }

  .mt-12 {
    margin-top: 10px
  }

  .mt-8 {
    margin-top: 6px
  }

  .w-60 {
    width: 40px
  }

  .h-60 {
    height: 40px
  }

  .w-40 {
    width: 30px
  }

  .h-40 {
    height: 30px
  }

  .bora-44 {
    border-radius: 24px
  }

  .bora-32 {
    border-radius: 20px
  }

  .bora-24 {
    border-radius: 16px
  }

  .bora-20 {
    border-radius: 14px
  }

  .bora-16 {
    border-radius: 12px
  }

  .bora-12 {
    border-radius: 8px
  }

  .bora-8 {
    border-radius: 6px
  }
}

#preload.disable {
  opacity: 0;
  visibility: hidden;
}

.avatar img {
  object-fit: cover;
  border-radius: 50%;
}

.page-not-found-block .row>div:first-child .text-content {
  position: absolute;
  display: flex;
  align-items: center;
  top: 30%;
  left: 25%;
  transform: translateX(-50%);
}

.page-not-found-block .row>div:first-child .text-content span:nth-child(1) {
  animation: bounceCustom 6s linear 4s infinite;
}

@keyframes bounceCustom {

  0%,
  5%,
  13% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  8%,
  10% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }

  16% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }

  20% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translateZ(0) scaleY(0.95);
    transform: translateZ(0) scaleY(0.95);
  }

  24% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }

  25% {
    -webkit-animation-timing-function: unset;
    animation-timing-function: unset;
    -webkit-transform: unset;
    transform: unset;
  }

  100% {
    -webkit-animation-timing-function: unset;
    animation-timing-function: unset;
    -webkit-transform: unset;
    transform: unset;
  }
}

.page-not-found-block .row>div:first-child .text-content span:nth-child(2) {
  animation: bounceCustom 6s linear 4.1s infinite;
}

.page-not-found-block .row>div:first-child .text-content span {
  font-size: 50px;
  font-weight: 900;
}

.page-not-found-block .row>div:first-child .text-content span:nth-child(3) {
  animation: bounceCustom 6s linear 4.2s infinite;
}

.page-not-found-block .row>div:first-child .text-content span:nth-child(4) {
  padding-left: 20px;
  animation: bounceCustom 6s linear 4.3s infinite;
}

.page-not-found-block .row>div:first-child .text-content span:nth-child(5) {
  animation: bounceCustom 6s linear 4.4s infinite;
}

.page-not-found-block .row>div:first-child .text-content span:nth-child(6) {
  animation: bounceCustom 6s linear 4.5s infinite;
}

.page-not-found-block .row>div:first-child .text-content span:nth-child(7) {
  animation: bounceCustom 6s linear 4.6s infinite;
}

.page-not-found-block .row>div:first-child .text-content span:nth-child(8) {
  animation: bounceCustom 6s linear 4.7s infinite;
}

.page-not-found-block .row>div:first-child .bg-img svg:nth-child(2) {
  left: 130px;
  bottom: 180px;
  position: absolute;
  animation: bounceIn 3s ease-in-out alternate infinite;
}

@keyframes bounceIn {

  0%,
  20%,
  40%,
  60%,
  80%,
  100% {
    -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    animation-timing-function: cubic-bezier(.215, .61, .355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(.97, .97, .97);
    transform: scale3d(.97, .97, .97);
  }

  100% {
    opacity: 1;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

.page-not-found-block .row>div:first-child .bg-img svg:last-child {
  left: 165px;
  position: absolute;
  bottom: 190px;
  animation: bounceIn 3s ease-in-out alternate infinite;
}

.breadcrum .bg-img {
  padding: 60px 0;
  background: url(../images/breadcrum.png);
  background-position: center;
  background-size: cover;
}


.vodiapicker {
  display: none;
}

.lang-select #a {
  padding: 0px;
  margin: 0;
}

.lang-select #a img,
.btn-select img {
  width: 30px;
  border-radius: 50%;
}

.lang-select #a li {
  list-style: none;
  padding: 5px 10px;
  display: flex;
  align-items: center;
}

.lang-select #a li:hover {
  background-color: #30303096;
  cursor: pointer;
}

.lang-select #a li img {
  margin: 5px;
}

.lang-select #a li span,
.btn-select li span {
  margin-left: 10px;
}

.lang-select .b {
  display: none;
  position: absolute;
  background: #424242;
  width: 100%;
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.43);
  border: 1px solid rgba(0, 0, 0, .15);
  border-radius: 14px;
  overflow: hidden;
}

.lang-select .open {
  display: show !important;
}

.lang-select .btn-select {
  margin-top: 10px;
  width: 100%;
  color: #fff;
  font-weight: 600;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, .2);
  padding: 8px 14px;
  cursor: pointer;
  margin-bottom: 8px;
}

.lang-select .btn-select li {
  list-style: none;
  padding: 5px 10px;
  display: flex;
  align-items: center;
}

.lang-select .btn-select:hover {
  background-color: rgba(255, 255, 255, .1);
}

.lang-select .btn-select:focus {
  outline: none;
}

.lang-select {
  position: relative;
}

.form-switch {
  align-items: center;
}

.form-switch .form-check-input {
  width: 3rem;
  cursor: pointer;
  height: 1.5em;
}

.form-switch .form-check-input:checked {
  background-color: #0098ff;
}

.form-switch .form-check-label {
  font-size: 18px;
  cursor: pointer;
}

.right-block .dropdown .dropdown-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  font-weight: bold;
  background: var(--hover);
  color: #fff;
  box-shadow: 0px 0px 1px 1px #0000001a;
  animation: pulse-animation 2s infinite;
}

.right-block .dropdown .dropdown-toggle::after {
  display: none;
}

.right-block .dropdown .dropdown-toggle.show {
  animation-play-state: paused;
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.2);
  }

  100% {
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
  }
}

.right-block .dropdown .dropdown-menu {
  background: #212124;
  scale: 0.7;
}

.right-block .dropdown .dropdown-menu.show {
  scale: 1;
}

.right-block .dropdown .dropdown-menu li a {
  color: #eee;
  padding: 8px 18px;
}

.right-block .dropdown .dropdown-menu .dropdown-item:focus,
.right-block .dropdown .dropdown-menu .dropdown-item:hover {
  background: #161619;
}

#back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: var(--blue);
  color: white;
  border: none;
  border-radius: 18px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transform: translateX(100px);
  transition: 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
}

#back-to-top:hover {
  background-color: var(--hover);
}

.pdf_select #select_pdf_option {
  cursor: pointer;
}

.pdf_select #select_pdf_option~i {
  position: absolute;
  top: 59%;
  transform: translateY(-50%);
  display: block;
  right: 60px;
}

@media screen and (max-width: 768px) {
  .pdf_select #select_pdf_option~i {
    right: 25px;
  }
}
