:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway", sans-serif;
  --nav-font: "Poppins", sans-serif
}

:root {
  --background-color: #ffffff;
  --default-color: #444444;
  --heading-color: #394047;
  --accent-color: #95c01e;
  --surface-color: #ffffff;
  --contrast-color: #ffffff
}

:root {
  --nav-color: #ffffff;
  --nav-hover-color: #95c01e;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #444444;
  --nav-dropdown-hover-color: #95c01e
}

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff
}

:root {
  scroll-behavior: smooth
}

body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font)
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font)
}

.header {
  --background-color: rgba(75, 75, 75, 0.704);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0 10px;
  transition: all 0.5s;
  z-index: 997
}

.header .logo {
  line-height: 1
}

.header .logo img {
  max-height: 60px
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color)
}

.scrolled .header {
  box-shadow: 0 0 18px rgb(206 119 119 / .1)
}

.scrolled .header {
  --background-color: rgba(0, 0, 0, 0.85)
}

@media (min-width:1200px) {
  .navmenu {
    padding: 0
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center
  }

  .navmenu li {
    position: relative
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 15px;
    font-family: var(--nav-font);
    text-transform: uppercase;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s
  }

  .navmenu li:last-child a {
    padding-right: 0
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color)
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 10px;
    z-index: 99;
    box-shadow: 0 0 30px rgb(0 0 0 / .1)
  }

  .navmenu .dropdown ul li {
    min-width: 200px
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color)
  }

  .navmenu .dropdown ul a i {
    font-size: 12px
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color)
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible
  }

  .menu-columns {
    display: flex;
    flex-wrap: wrap;
    width: 400px;
    column-count: 2;
    column-gap: 20px;
    padding: 10px;
    list-style: none
  }

  .menu-columns li {
    width: 50%;
    padding: 5px 10px;
    white-space: nowrap
  }
}

.lang-form-btn {
  color: #fff
}

@media (max-width:1199px) {
  .lang-form-btn {
    color: #111
  }

  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s
  }

  .navmenu {
    padding: 0;
    z-index: 9997
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 10px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0 0 30px rgb(0 0 0 / .1)
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%)
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color)
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color)
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg)
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out
  }

  .navmenu .dropdown ul ul {
    background-color: rgb(33 37 41 / .1)
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgb(33 37 41 / .03)
  }

  .mobile-nav-active {
    overflow: hidden
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgb(33 37 41 / .8);
    transition: 0.3s
  }

  .mobile-nav-active .navmenu>ul {
    display: block
  }
}

.footer {
  color: var(--default-color);
  background-image: url(../img/footer-bg.jpg) !important;
  font-size: 14px;
  position: relative
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%)
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px
}

.footer .footer-about .logo img {
  max-height: 64px;
  margin-right: 16px
}

.footer .footer-about .logo span {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  color: var(--heading-color)
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font)
}

.footer .social-links a {
  font-size: 18px;
  color: #fff;
  -webkit-transition: all, 0.3s;
  -o-transition: all, 0.3s;
  transition: all, 0.3s;
  margin-right: 30px
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color)
}

.footer h4 {
  font-size: 16px;
  font-weight: 700;
  position: relative;
  padding-bottom: 12px
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center
}

.footer .footer-links ul li:first-child {
  padding-top: 0
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1
}

.footer .footer-links ul a:hover {
  color: var(--accent-color)
}

.footer .footer-contact p {
  margin-bottom: 5px
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  display: flex;
  background-color: var(--background-color);
  transition: 0.3s
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color)
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: var(--background-color);
  color: var(--default-color)
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%)
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%)
}

.footer .copyright p {
  margin-bottom: 0
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px
}

#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #fff;
  border-color: var(--accent-color) #fff0 var(--accent-color) #fff0;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg)
  }

  100% {
    transform: rotate(360deg)
  }
}

.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color)
}

.scroll-top.active {
  visibility: visible;
  opacity: 1
}

@media screen and (max-width:768px) {
  [data-aos-delay] {
    transition-delay: 0 !important
  }
}

.page-title {
  color: var(--default-color);
  background-image: url(../img/banerisnimki/9.webp);
  padding: 160px 0 80px;
  text-align: center;
  position: relative
}

.page-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / .5);
  pointer-events: none;
  z-index: 1
}

.page-title .container {
  position: relative;
  z-index: 2
}

.page-title h1 {
  font-size: 72px;
  font-weight: 300;
  margin-bottom: 10px;
  letter-spacing: 18px;
  margin-bottom: 30px
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%)
}

section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0 0;
  scroll-margin-top: 85px;
  overflow: clip
}

@media (max-width:1199px) {

  section,
  .section {
    scroll-margin-top: 66px
  }
}

.section-title div {
  color: var(--heading-color);
  margin: 10px 0 0 0;
  font-size: 32px;
  font-weight: 700;
  font-family: var(--heading-font)
}

.section-title div .description-title {
  color: var(--accent-color)
}

.section-title {
  padding-bottom: 50px;
  position: relative
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  position: relative
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px
}

.section-title p {
  color: var(--heading-color);
  margin: 0;
  font-size: 36px;
  font-weight: 800;
  text-transform: uppercase;
  font-family: var(--heading-font)
}

.hero {
  padding: 0
}

.hero .carousel {
  width: 100%;
  min-height: 100vh;
  padding: 0;
  margin: 0;
  background-color: var(--background-color);
  position: relative
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1
}

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden
}

.hero .carousel-item:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 70%);
  position: absolute;
  inset: 0;
  z-index: 2
}

.hero .carousel-item::before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 70%);
  position: absolute;
  inset: 0
}

.hero .carousel-container {
  position: absolute;
  inset: 90px 64px 64px 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 3
}

.hero h1 {
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
  animation: fadeInDown 1s both
}

@media (max-width:768px) {
  .hero h1 {
    font-size: 30px
  }
}

.hero p {
  animation: fadeInDown 1s both 0.2s
}

@media (min-width:1024px) {

  .hero h1,
  .hero p {
    max-width: 75%
  }
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 15px;
  transition: 0.4s;
  margin: 70px 10px 10px;
  animation: fadeInUp 1s both 0.4s
}

.hero .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%)
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  width: 10%;
  transition: 0.3s;
  opacity: .5
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: .5
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: .9
}

@media (min-width:1024px) {

  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    width: 5%
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 32px;
  line-height: 1
}

.hero .carousel-indicators {
  list-style: none
}

.hero .carousel-indicators li {
  cursor: pointer
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0)
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0)
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0)
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0)
  }
}

.about .content h3 {
  font-size: 2rem;
  font-weight: 700
}

.about .content ul {
  list-style: none;
  padding: 0
}

.about .content ul li {
  display: flex;
  align-items: flex-start;
  margin-top: 40px
}

.about .content ul i {
  flex-shrink: 0;
  font-size: 48px;
  color: var(--accent-color);
  margin-right: 20px;
  line-height: 0
}

.about .content ul h5 {
  font-size: 18px;
  font-weight: 700
}

.about .content ul p {
  font-size: 15px
}

.about .content p:last-child {
  margin-bottom: 0
}

.about .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px)
}

.stats .stats-item {
  padding: 30px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center
}

.stats .stats-item i {
  color: var(--accent-color);
  display: block;
  font-size: 44px;
  line-height: 0;
  animation: bounce 2s infinite
}

.stats .stats-item .purecounter::before {
  content: "+";
  font-size: 48px;
  font-weight: 700;
  margin-right: 5px;
  color: var(--heading-color)
}

.stats .stats-item .purecounter {
  color: var(--heading-color);
  font-size: 48px;
  display: block;
  font-weight: 700
}

.stats .stats-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 15px 0 0 0;
  font-family: var(--heading-font);
  font-size: 14px
}

.testimonials {
  padding: 30px 0 5px;
  position: relative
}

.testimonials:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2
}

.testimonials .testimonials-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1
}

.testimonials .container {
  position: relative;
  z-index: 3
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden
}

.testimonials .testimonial-item {
  text-align: center
}

.testimonials .testimonial-item .testimonial-img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  object-position: 50% 30%;
  border-radius: 50%;
  border: 6px solid color-mix(in srgb, var(--default-color), transparent 85%);
  margin: 0 auto
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 10px 0 5px 0
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  margin: 0 0 15px 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%)
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 26px;
  line-height: 0
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1)
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto
}

.testimonials .swiper-wrapper {
  height: auto;
  display: flex;
  justify-content: center;
  column-gap: 60px
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 50%);
  opacity: .5
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--default-color);
  opacity: 1
}

@media (min-width:992px) {
  .testimonials .testimonial-item p {
    width: 80%
  }
}

@media (max-width:600px) {
  .testimonials .swiper-wrapper {
    flex-direction: column
  }
}

.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0
}

.skills .progress .skill {
  color: var(--heading-color);
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: var(--heading-font)
}

.skills .progress .skill .val {
  float: right;
  font-style: normal
}

.skills .progress-bar-wrap {
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  height: 10px
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: var(--accent-color)
}

.about-main {
  font-size: 16px;
  line-height: 21px
}

.about-main .intro {
  margin-bottom: 30px
}

.about-main .list-description {
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase
}

.about-main ul {
  list-style: none;
  line-height: 20px;
  padding-left: 0;
  padding-left: 10px;
  border-left: 2px solid var(--accent-color)
}

.about-main ul li {
  font-weight: 600;
  margin-bottom: 10px;
}

.about-main .outro {
  margin-top: 30px
}