@font-face {
  font-family: "BasicCircleRegular";
  src: url("https://jakubaszek.sodova.com/wp-content/themes/jakubaszek-theme/assets/font/BasierCircle-Regular.woff2") format("woff2"),
    url("https://jakubaszek.sodova.com/wp-content/themes/jakubaszek-theme/assets/font/BasierCircle-Regular.woff") format("woff");
}

@font-face {
  font-family: "BasicCircleMedium";
  src: url("https://jakubaszek.sodova.com/wp-content/themes/jakubaszek-theme/assets/font/BasierCircle-Medium.woff2") format("woff2"),
    url("https://jakubaszek.sodova.com/wp-content/themes/jakubaszek-theme/assets/font/BasierCircle-Medium.woff") format("woff");
}

@font-face {
  font-family: "BasicCircleSemiBold";
  src: url("../font/BasierCircle-SemiBold.woff2") format("woff2"),
    url("../font/BasierCircle-SemiBold.woff") format("woff");
}

@font-face {
  font-family: "BasicCircleBold";
  src: url("../font/BasierCircle-Bold.woff2") format("woff2"),
    url("../font/BasierCircle-Bold.woff") format("woff");
}

:root {
  --blue: #091d2c;
  --light-blue: #013f92;
  --white: #ffffff;
  --grey: #f0f0f0;
  --dark-grey: #c4c4c5;
  --light-border: #2e73ce;
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: "BasicCircleRegular", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #121212;
  background: #ffffff;
}

html,
body {
  overflow-x: clip;
}

body.scrolling {
  overflow-y: hidden;
}

a,
button {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
  text-decoration: none;
}

@media only screen and (max-width: 768px) {

  a,
  button {
    cursor: default !important;
    border: none;
    outline: none;
  }
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.container {
  max-width: 1340px;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

@media only screen and (max-width: 768px) {
  .container {
    margin: 0 auto;
  }
}

.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
  z-index: 1001;
  border: none;
  outline: none;

  transition: all 0.3s ease-in-out;
}

.header:hover .brand {
  filter: brightness(0) saturate(100%) invert(14%) sepia(39%) saturate(6649%) hue-rotate(208deg) brightness(98%) contrast(99%);
  -webkit-transition: all 0.01s ease;
  -moz-transition: all 0.01s ease;
  -o-transition: all 0.01s ease;
  transition: all 0.01s ease;
  /*-webkit-transition-delay: 0.3s;*/
  /*transition-delay: 0.3s;*/
}

/*.hover-2 {*/
/*  background: linear-gradient(#fff 0 0) no-repeat calc(200% - var(--p, 0%)) 100% /*/
/*    200% var(--p, 1px);*/
/*  transition: 0.3s var(--t, 0s),*/
/*    background-position 0.3s calc(0.3s - var(--t, 0s));*/
/*}*/
/*.hover-2:hover {*/
/*  --p: 100%;*/
/*  --t: 0.3s;*/
/*  color: #fff;*/
/*}*/

.header.header--dark,
.header.header--white {
  background: #fff;
}

.header:hover {
  background: #fff;
  transition: all .3s ease;
}

.header.header--dark .brand,
.header.header--white .brand,
.header.header--blog .brand,
body.singlepost .header .brand {
  filter: brightness(0) saturate(100%) invert(14%) sepia(39%) saturate(6649%) hue-rotate(208deg) brightness(98%) contrast(99%);
}

.header.header--white .wrapper,
.header.header--blog .wrapper,
body.singlepost .header .wrapper {
  border-bottom: 1px solid var(--dark-grey);
}

.header:hover .polylang_langswitcher:after {
  filter: none;
  transition: all .3s ease;
}

.header .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2rem;
  max-width: 100%;
  height: auto;
  border-bottom: 1px solid #ffffff;
}

.header .navbar {
  max-width: 100%;
  height: auto;
}

.header .menu>.menu-item {
  /*position: relative;*/
  display: inline-block;
  margin: 0 33px 0 0;
}

.header .menu>.menu-item>a {
  display: block;
  font-family: "BasicCircleMedium", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: inherit;
  padding: 28px 0;
  border: none;
  outline: none;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
}

.header .menu>.menu-item>a:after {
  content: "";
  position: absolute;
  bottom: 26px;
  left: 0;
  height: 1px;
  width: 100%;
  background-color: #fff;
  opacity: 0;
  transition: 300ms;
}

.header .menu>.menu-item--current>a:after {
  opacity: 1;
}

.header.header--blog .menu>.menu-item>a:after,
.header:hover .menu>.menu-item--current>a:after {
  background-color: #091d2c;
}

.header .menu>.menu-item:hover>a:after {
  background-color: var(--light-blue);
}

.header.header--dark .menu>.menu-item>a,
.header.header--white .menu>.menu-item>a,
.header.header--blog .menu>.menu-item>a,
body.singlepost .header .menu>.menu-item>a {
  color: var(--blue);
}

.header.header--dark .menu>.menu-item:hover>a,
.header.header--white .menu>.menu-item:hover>a,
.header.header--blog .menu>.menu-item:hover>a,
body.singlepost .header .menu>.menu-item:hover>a {
  color: var(--light-blue);
}

.header.header--dark .menu>.menu-item.menu-item-has-children a>.dropdown__link-expand,
.header.header--white .menu>.menu-item.menu-item-has-children a>.dropdown__link-expand,
.header.header--blog .menu>.menu-item.menu-item-has-children a>.dropdown__link-expand,
body.singlepost .header .menu>.menu-item.menu-item-has-children a>.dropdown__link-expand {
  transition-delay: 0s !important;
}

.header.header--dark .menu>.menu-item.menu-item-has-children:hover a>.dropdown__link-expand,
.header.header--white .menu>.menu-item.menu-item-has-children:hover a>.dropdown__link-expand,
.header.header--blog .menu>.menu-item.menu-item-has-children:hover a>.dropdown__link-expand,
body.singlepost .header .menu>.menu-item.menu-item-has-children:hover a>.dropdown__link-expand {
  transform: rotate(180deg);
  transition-delay: 0s !important;
}

.header .menu>.menu-item.menu-item-has-children:hover a>.dropdown__link-expand {
  transform: rotate(180deg);
}

.header:hover .menu>.menu-item>a {
  color: #091d2c;
  /*-webkit-transition-delay: 0.3s;*/
  /*transition-delay: 0.3s;*/
}

.header .menu>.menu-item>a .expand {
  position: relative;
  display: inline-block;
  height: 0.75rem;
  width: 0.75rem;
  margin-left: 0.35rem;
  border: none;
  outline: none;
  pointer-events: none;
}

.header .menu>.menu-item>a .expand:before,
.header .menu>.menu-item>a .expand:after {
  position: absolute;
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
  content: "";
  left: 50%;
  top: 50%;
  width: 100%;
  height: 2px;
  background: #121212;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}

.header .menu>.menu-item>a.menu-item__children-link {
  display: flex;
  align-items: center;
}

.header .menu-item__children-link img {
  width: 10px;
  height: 6px;
  margin-left: 15px;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
}

body.singlepost .header .menu-item__children-link img,
.header.header--blog .menu-item__children-link img {
  filter: none;
}

.hover-2:hover .menu-item__children-link img {
  filter: none;
  transition: all 0.3s ease;
  /*transition-delay: 0.3s;*/
}

.header.header--dark .menu-item__children-link img,
.header.header--white .menu-item__children-link img {
  filter: none;
}

.header .menu>.menu-item:hover>a {
  color: var(--light-blue);
}

.header .menu>.menu-item>a .expand::after {
  -webkit-transform: translate(-50%, -50%) rotate(-90deg);
  -ms-transform: translate(-50%, -50%) rotate(-90deg);
  transform: translate(-50%, -50%) rotate(-90deg);
}

.header .menu>.menu-item>.sub-menu>.menu-item>a:hover {
  color: var(--light-blue);
}

.header .menu>.menu-item>.dropdown {
  position: absolute;
  visibility: hidden;
  width: 100%;
  margin: 0 auto;
  left: 0;
  right: 0;
  top: 80px;
  opacity: 0;
  background: var(--white);
  transition: all 0.3s ease;
  z-index: 100;
  display: flex;
  justify-content: center;
}

.header .menu>.menu-item>.dropdown .sub-menu {
  max-width: 1340px;
  width: 100%;
  display: flex;
  justify-content: end;
  list-style: none;
  padding: 72px 0;
  border-top: 1px solid var(--dark-grey);
}

.header .menu>.menu-item:hover>.dropdown {
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease;
}

.header .menu>.menu-item>.sub-menu>.menu-item {
  display: block;
}

.header .menu>.menu-item>.dropdown>.sub-menu>.menu-item>a {
  display: flex;
  align-items: center;
  color: var(--blue);
  font-size: 40px;
  font-family: "BasicCircleRegular", sans-serif;
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header .menu>.menu-item>.dropdown>.sub-menu>.menu-item:hover a {
  color: var(--light-blue);
  transition: all 0.3s ease;
}

.header .menu>.menu-item>.dropdown>.sub-menu>.menu-item {
  margin-right: 122px;
}

.header .menu>.menu-item>.dropdown>.sub-menu>.menu-item>a img {
  max-width: 42px;
  max-height: 36px;
  margin-left: 35px;
}

.header .opened-menu {
  position: relative;
  display: none;
  cursor: pointer;
  width: 2rem;
  height: 1rem;
  border: none;
  outline: none;
  opacity: 0;
  visibility: hidden;
  background: none;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}

.header .opened-menu span {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0;
  border: none;
  outline: none;
  opacity: 1;
  border-radius: 0.25rem;
  background: var(--white);
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.header .opened-menu span:nth-child(1) {
  top: 0;
}

.header .opened-menu span:nth-child(2),
.header .opened-menu span:nth-child(3) {
  top: 0.5rem;
}

.header .opened-menu span:nth-child(4) {
  top: 1rem;
}

.header .closed-menu {
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  outline: none;
  background: none;
}

.header .closed-menu img.closed-icon {
  display: block;
  width: 1rem;
  height: auto;
}

.header .overlay {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.6);
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}

@media only screen and (min-width: 993px) {
  .header .menu>.menu-item-has-children:hover>.sub-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  .header .menu>.menu-item-has-children:hover>a .expand::after {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    -ms-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
  }
}

@media only screen and (max-width: 992px) {
  .header .overlay.active {
    display: block;
    opacity: 1;
    visibility: visible;
  }

  .header .navbar {
    position: fixed;
    top: 0;
    left: -18rem;
    width: 18rem;
    height: 100%;
    padding: 1rem 0;
    z-index: 999;
    opacity: 0;
    overflow-y: auto;
    visibility: hidden;
    background: #ffffff;
    -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
      0 2px 4px -1px rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
      0 2px 4px -1px rgba(0, 0, 0, 0.06);
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .header .navbar.active {
    left: 0rem;
    opacity: 1;
    visibility: visible;
  }

  .header .navbar::-webkit-scrollbar {
    width: 5px;
  }

  .header .navbar::-webkit-scrollbar-thumb {
    border-radius: 1rem;
    background: #e6e6e6;
    -webkit-box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.12);
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.12);
  }

  .header .menu {
    width: 100%;
    height: auto;
    margin-top: 3.5rem;
  }

  .header .menu>.menu-item {
    display: block;
    margin: 0;
  }

  .header .menu>.menu-item-has-children>a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .header .menu>.menu-item>a {
    padding: 0.75rem 1rem;
    color: #fff;
    border-bottom: 1px solid #f2f2f2;
  }

  .header .menu>.menu-item:first-child>a {
    border-top: 1px solid #f2f2f2;
  }

  .header .menu>.menu-item>a .expand::before,
  .header .menu>.menu-item>a .expand::after {
    background: #121212;
  }

  .header .menu>.menu-item-has-children.active>a .expand:after {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    -ms-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
  }

  .header .menu>.menu-item>.sub-menu {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    max-height: 0;
    padding: 0px;
    border: none;
    outline: none;
    opacity: 1;
    overflow: hidden;
    visibility: visible;
    background: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
  }

  .header .menu>.menu-item>.sub-menu>.menu-item>a {
    padding: 0.75rem 2rem;
    color: #121212;
    border-bottom: 1px solid #f2f2f2;
  }

  .header .opened-menu {
    display: block;
    opacity: 1;
    visibility: visible;
  }

  .header .closed-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .header .menu>.menu-item>.dropdown {
    position: unset;
  }

  .header .menu>.menu-item>.dropdown .sub-menu {
    padding: 5px 0 20px;
    flex-direction: column;
    justify-content: flex-start;
  }

  .header .menu>.menu-item>.dropdown>.sub-menu>.menu-item {
    margin-right: 0;
  }

  .header .menu>.menu-item>a {
    font-size: 24px;
  }

  .header .menu>.menu-item:hover>.dropdown {
    opacity: unset;
    visibility: unset;
  }

  .header .menu>.menu-item>.dropdown>.sub-menu>.menu-item>a img {
    display: none;
  }

  .header .menu>.menu-item.menu-item-has-children.active .dropdown {
    opacity: 1;
    visibility: visible;
  }

  .header .menu>.menu-item.menu-item-has-children .dropdown {
    opacity: 0;
    visibility: hidden;
    max-height: 0px;
    padding-left: 20px;
  }

  .header .menu>.menu-item>.dropdown>.sub-menu>.menu-item>a {
    font-size: 24px;
  }

  .header .menu>.menu-item>.dropdown .sub-menu,
  .header .menu>.menu-item:first-child>a {
    border-top: unset;
  }

  .header .menu {
    padding-left: 30px;
  }
}

@media (max-width: 576px) {
  .header .navbar {
    width: 100%;
  }
}

.single-branze .header,
.single-praktyki .header {
  background-color: #fff;
}

.h-100 {
  height: 50vh;
}

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

.intro__title {
  margin: 0;
  color: #fff;
  font-size: 160px;
  font-family: "BasicCircleRegular", sans-serif;
  font-weight: 700;
}

.sticky.active h1 {
  color: #fff;
}

.d-flex {
  display: flex;
}

.align-items-center {
  align-items: center;
}

.justify-content-center {
  justify-content: center;
}

.intro {
  background-repeat: no-repeat;
  background-position-x: center;
  background-size: cover;
  max-height: 100vh;
  min-height: 900px;
  position: relative;
}

.intro__inner {
  max-height: 100vh;
  min-height: 900px;
  position: relative;
  z-index: 10;
}

.intro__video-container {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.intro__video {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  max-width: initial;
}

.nav-up {
  top: -85px;
}

.about {
  margin: 110px 0;
}

.about-wrapper {
  display: flex;
  justify-content: space-between;
}

.about-left {
  max-width: 305px;
  width: 100%;
  margin-right: 40px;
}

.about-left__title {
  color: var(--blue);
  font-family: "BasicCircleRegular", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 120%;
}

.about-right__text h2 {
  color: var(--blue);
  font-size: 70px;
  font-family: "BasicCircleMedium", sans-serif;
  font-weight: 500;
  line-height: 100%;
}

.about-right__text {
  margin-bottom: 65px;
}

.btn {
  border: none;
  padding: 8.5px 44px;
  font-size: 16px;
  position: relative;
}

.btn::before {
  transition: all 0.85s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  content: "";
  width: 50%;
  height: 100%;
  background: black;
  position: absolute;
  top: 0;
  left: 0;
}

.btn .btn-text {
  color: white;
  mix-blend-mode: difference;
}

.btn:hover::before {
  background: black;
  width: 100%;
}

.btn.rounded {
  border-radius: 50px;
}

.btn.rounded .text-green {
  color: #013f92;
  margin-left: 15px;
  transition: all 0.3s ease;
  transition-delay: 0.1s;
  position: relative;
  z-index: 1000;
}

.btn.rounded:hover .text-green {
  position: relative;
  color: #fff;
  transition: all 0.3s ease;
  transition-delay: 0.3s;
  z-index: 1000;
}

.btn.rounded::before {
  border-radius: 50px;
  width: 38px;
  background: transparent;
  border: 1px solid #013f92;
}

.btn.rounded:hover::before {
  background: #013f92;
  width: 100%;
  border: 1px solid #013f92;
}

.btn-icon {
  position: absolute;
  top: 15px;
  left: 28px;
}

.btn-main-icon {
  transition: all 0.3s ease;
  transition-delay: 0.4s;
}

.btn.rounded:hover .btn-main-icon {
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
  transition-delay: 0.3s;
}

.practice {
  background: var(--light-blue);
  padding: 120px 0 0;
}

.practice__title {
  color: var(--white);
  font-size: 60px;
  font-family: "BasicCircleMedium", sans-serif;
  font-weight: 500;
  line-height: 100%;
  padding-bottom: 125px;
}

ul.accordion-list {
  position: relative;
  display: block;
  height: auto;
  margin: 0;
  list-style: none;
  background-color: transparent;
}

ul.accordion-list li {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  background-color: transparent;

  margin: 0 auto 0px auto;

  cursor: pointer;
}

ul.accordion-list li:last-child {
  padding-bottom: 120px;

}

ul.accordion-list li:last-child .accordion-list__header {
  border-bottom: 1px solid #2e73ce;
}

ul.accordion-list li.active:last-child .accordion-list__header {
  border-bottom: none;
}

ul.accordion-list li.active h3:after {
  transform: rotate(45deg);
}

ul.accordion-list li h3 {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding: 0 0 0 0;
  margin: 0;
  font-size: 40px;
  font-family: "BasicCircleMedium", sans-serif;
  font-weight: 500;
  line-height: 100%;
  cursor: pointer;
  color: var(--white);
}

ul.accordion-list li div.answer {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  cursor: pointer;
}

.answer__inner {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 560px;
}

ul.accordion-list li.active {
  padding-bottom: 0;
}

ul.accordion-list li div.answer p {
  position: relative;
  display: block;
  font-weight: 400;
  padding: 10px 0 0 0;
  cursor: pointer;
  line-height: 150%;
  margin: 0 0 15px 0;
}

.accordion-list__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 100;
  border-top: 1px solid #2e73ce;
  padding: 40px 0 60px;
}

.accordion-list__header h3 {
  max-width: 535px;
  width: 100%;
  margin-right: 40px;
}

.accordion-list__header p {
  max-width: 650px;
  width: 100%;
  margin-right: 70px;
  font-family: "BasicCircleRegular", sans-serif;
  font-size: 18px;
  color: var(--white);
  font-weight: 400;
}

ul.accordion-list li .accordion-list__header>img {
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}

ul.accordion-list li.active .accordion-list__header>img {
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.maintext {
  padding: 105px 0 80px;
}

.maintext__wrapper {
  display: flex;
  justify-content: space-between;
}

.maintext__left {
  max-width: 420px;
  width: 100%;
}

.maintext__left-title {
  font-family: "BasicCircleMedium", sans-serif;
  font-size: 30px;
  color: var(--light-blue);
  font-weight: 500;
}

.maintext__right-inner {
  max-width: 535px;
  width: 100%;
  margin-bottom: 74px;
}

.maintext__right-inner p {
  font-family: "BasicCircleRegular", sans-serif;
  font-size: 18px;
  line-height: 26px;
  color: var(--blue);
  font-weight: 400;
}

.help {
  padding: 0px 0 120px;
}

.help__items {
  display: flex;
  justify-content: space-between;
}

.help__item {
  max-width: 650px;
  width: 100%;
  padding: 40px 40px 60px;
}

.help__item:nth-child(odd) {
  margin-right: 40px;
}

.help__item-icon {
  max-width: 75px;
  margin-bottom: 25px;
  max-height: 75px;
  height: 75px;
  object-fit: contain;
}

.help__item-inner {
  font-family: "BasicCircleRegular", sans-serif;
  color: var(--blue);
}

.help__item-inner h4 {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 37px;
  font-family: "BasicCircleMedium", sans-serif;
}

.help__item-inner p {
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
}

.help__item-inner ul {
  list-style-type: disc;
  padding-left: 20px;
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
}

.help__item-inner ul li {
  margin-bottom: 18px;
}

.help__item-inner ul li:last-child {
  margin-bottom: 0;
}

.additional {
  margin: 120px 0;
}

.additional__title {
  font-family: "BasicCircleMedium", sans-serif;
  font-size: 60px;
  line-height: 105%;
  color: var(--blue);
  font-weight: 500;
  margin-bottom: 125px;
}

.additional__item {
  max-width: 305px;
  width: 100%;
  height: 230px;
  max-height: 100%;
  position: relative;
  transition: all 0.3s ease;
  margin-bottom: 40px;
}

.additional__item:before {
  position: absolute;
  content: "";
  background-position: top right 20px;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  transition: all 0.15s ease;
}

.additional__item:hover:before {
  transform: scale(1.15);
  transition: all 0.15s ease;
  background-position: top right 30px;
  opacity: 0.1;
}

.additional__item:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--grey);
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
  z-index: -2;
}

.additional__item:hover:after {
  transform: scale(1.15);
  background: var(--light-blue);
  transition: all 0.3s ease;
}

.additional__item-link {
  color: var(--blue);
  height: 100%;
}

.additional__item-inner {
  height: 230px;
}

.additional__item-wrapper {
  height: 100%;
  padding: 30px;
}

.industry .additional__items,
.allindustry .additional__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 0px 40px;
}

.additional .additional__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 0px 40px;
}

.additional__item-title {
  font-family: "BasicCircleMedium", sans-serif;
  font-size: 24px;
  line-height: 28px;
  color: var(--blue);
  font-weight: 500;
}

.additional__item:hover .additional__item-title {
  color: var(--white);
}

.additional__item-more {
  font-family: "BasicCircleRegular", sans-serif;
  position: absolute;
  bottom: 30px;
  display: flex;
  align-items: center;
  color: var(--light-blue);
  font-size: 14px;
}

.additional__item-more:before {
  position: absolute;
  content: "";
  width: 0%;
  bottom: -1px;
  height: 1px;
  background: var(--white);
  transition: all 0.3s ease;
}

.additional__item-more:hover:before {
  width: 100%;
  transition: all 0.3s ease;
}

.additional__item-more.more--colored:before {
  background: var(--light-blue);
}

.additional__item:hover .additional__item-more {
  color: var(--white);
}

.additional__item:hover .additional__item-more img {
  filter: brightness(0) invert(1);
}

.additional__item-more span {
  margin-right: 11px;
}

.industry {
  padding: 130px 0 70px;
}

.industry__title {
  color: var(--white);
  font-size: 60px;
  font-family: "BasicCircleMedium", sans-serif;
  font-weight: 500;
  line-height: 100%;
  padding-bottom: 115px;
}

.industry__wrapper {
  display: flex;
  justify-content: space-between;
}

.industry__left {
  max-width: 345px;
  width: 100%;
}

.industry__left-text {
  font-family: "BasicCircleMedium", sans-serif;
  font-size: 30px;
  line-height: 38px;
  color: var(--white);
  font-weight: 500;
}

.industry__right {
  max-width: 880px;
  width: 100%;
}

.industry__items {
  display: flex;
  flex-wrap: wrap;
}

.industry__item {
  max-width: 420px;
  width: 100%;
  height: 140px;
}

.industry__item:nth-child(odd) {
  margin-right: 40px;
}

.industry__item-text {
  font-family: "BasicCircleRegular", sans-serif;
  font-size: 30px;
  line-height: 38px;
  color: var(--white);
  font-weight: 400;
  margin-right: 45px;
}

.industry__item-link {
  display: flex;
  justify-content: space-between;
  height: 100%;
}

.industry__item-icon {
  object-fit: contain;
  width: 15px;
  height: 20px;
  margin-top: 8px;
}

.industry__item-inner {
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  height: 140px;
  transition: all 0.3s ease;
}

.industry__item-inner:hover {
  border-top: 1px solid rgba(255, 255, 255, 1);
  transition: all 0.3s ease;
}

.industry__item-inner .industry__item-text,
.industry__item-inner .industry__item-icon {
  padding-top: 20px;
}

.team {
  height: 830px;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  /*background: transparent linear-gradient(180deg, #000000 25%, #00000000 100%) 0% 0% no-repeat padding-box;*/
  z-index: 2;
}

.overlaybg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
}

.overlaytop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: transparent linear-gradient(180deg, #000000 0%, #00000000 100%) 0% 0% no-repeat padding-box;
  opacity: 0.6;
  height: 250px;
  z-index: 3;
}

.team__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 100%;
}

.team__title {
  margin: 0;
  text-align: center;
  color: #fff;
  font-size: 160px;
  font-family: "BasicCircleRegular", sans-serif;
  font-weight: 700;
}

.btn-transparent {
  border: none;
  padding: 7px 44px;
  font-size: 16px;
  position: relative;
}

.btn-transparent::before {
  transition: all 0.85s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  content: "";
  width: 50%;
  height: 100%;
  background: black;
  position: absolute;
  top: 0;
  left: 0;
}

.btn-transparent .btn-text {
  color: white;
  mix-blend-mode: difference;
}

.btn-transparent:hover::before {
  background: black;
  width: 100%;
}

.btn-transparent.rounded {
  border-radius: 50px;
}

.btn-transparent.rounded .text-green {
  color: #fff;
  margin-left: 15px;
  transition: all 0.3s ease;
  transition-delay: 0.1s;
  position: relative;
  z-index: 1000;
}

.btn-transparent.rounded:hover .text-green {
  position: relative;
  color: #fff;
  transition: all 0.3s ease;
  transition-delay: 0.3s;
  z-index: 1000;
}

.btn-transparent.rounded::before {
  border-radius: 50px;
  width: 38px;
  background: transparent;
  border: 1px solid #fff;
}

.btn-transparent.rounded:hover::before {
  background: transparent;
  width: 100%;
  border: 1px solid #fff;
}

.btn-transparent-icon {
  position: absolute;
  top: 15px;
  left: 28px;
  filter: brightness(0) invert(1);
}

.btn-main-icon {
  position: absolute;
  top: 15px;
  left: 28px;
}

.btn__inner {
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.blog {
  background: var(--grey);
  padding: 120px 0;
}

.blog__header-title {
  color: var(--blue);
  font-size: 60px;
  font-family: "BasicCircleMedium", sans-serif;
  font-weight: 500;
  line-height: 100%;
}

.blog__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 63px;
}

.blog__item {
  max-width: 420px;
  width: 100%;
  height: 420px;
  position: relative;
  margin-right: 40px;
  transition: all 0.3s ease;
}

.blog__item:nth-child(3n + 3) {
  margin-right: 0;
}

.blog__item:hover {
  background: var(--white);
  transition: all 0.3s ease;
}

.blog__item-inner {
  padding: 30px;
  color: var(--blue);
  border: 2px solid var(--white);
  height: 420px;
}

.blog__item-date {
  font-size: 14px;
  font-family: "BasicCircleRegular", sans-serif;
  font-weight: 400;
  line-height: 100%;
  margin-bottom: 39px;
}

.blog__item-title {
  font-size: 24px;
  font-family: "BasicCircleMedium", sans-serif;
  font-weight: 500;
  line-height: 28px;
  margin-bottom: 10px;
}

.blog__items,
.blog__items ul,
.blogpage__items {
  display: flex !important;
  justify-content: space-between;
  flex-wrap: wrap;
}

.blogpage__items ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  list-style: none;
}

.newsletter {
  height: 800px;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}

.newsletter__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  max-width: 765px;
  width: 100%;
}

.newsletter__inner>img {
  display: none;
}

.newsletter__title {
  color: var(--white);
  font-size: 60px;
  font-family: "BasicCircleMedium", sans-serif;
  font-weight: 500;
  line-height: 100%;
  padding-bottom: 22px;
  text-align: center;
  background-image: unset !important;
}

.form__newsletter {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  max-width: 765px;
  width: 100%;
}

.comment-form-cookies-consent label:hover {
  cursor: pointer;
}

.comment-form-cookies-consent input[type="checkbox"] {
  position: relative;
  border: 1px solid var(--white);
  background: none;
  cursor: pointer;
  line-height: 0;
  margin: 0 !important;
  outline: 0;
  padding: 0 !important;
  vertical-align: text-top;
  height: 18px;
  width: 18px;
  max-width: 100%;
  -webkit-appearance: none;
  opacity: 1;
}

.comment-form-cookies-consent input[type="checkbox"]:hover:before {
  opacity: 1;
}

.comment-form-cookies-consent input[type="checkbox"]:checked:before {
  background-color: transparent;
  opacity: 1;
}

.comment-form-cookies-consent input[type="checkbox"]:before {
  content: "";
  position: absolute;
  right: 50%;
  top: 50%;
  width: 4px;
  height: 8.5px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  margin: -1px -1px 0 -1px;
  transform: rotate(45deg) translate(-50%, -50%);
  z-index: 2;
  opacity: 0;
}

.form__newsletter form {
  width: 100%;
}

.form__inputs {
  background: var(--white);
  padding: 57px 35px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
}

.form__inputs input {
  border: none;
  border-bottom: 1px solid var(--blue);
  padding-bottom: 15px;
  background: transparent;
  font-family: "BasicCircleRegular", sans-serif;
  outline: none;
}

.form__inputs input[type="email"] {
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  color: var(--blue);
  padding-left: 5px;
  padding-right: 5px;
  max-width: 600px;
}

.form__inputs input[type="submit"] {
  font-size: 16px;
  cursor: pointer;
  color: var(--light-blue);
  width: 100%;
  max-width: 100px;
  text-align: left;
  position: relative;
  background-position: right 5px;
  background-repeat: no-repeat;
}

.submitBtn:after {
  position: absolute;
  content: "";
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--blue);
}

.chekbox__wrapper {
  display: flex;
  align-items: baseline;
}

.checkbox__text {
  font-family: "BasicCircleRegular", sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--white);
  margin-left: 10px;
}

.checkbox__text a {
  text-decoration: underline;
  color: var(--white);
}

.footer {
  padding: 80px 0;
}

.footer__wrapper {
  display: flex;
  justify-content: space-between;
}

.footer__left {
  max-width: 305px;
  width: 100%;
  margin-right: 155px;
}

.footer__center {
  max-width: 305px;
  width: 100%;
  margin-right: 40px;
  font-family: "BasicCircleRegular", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--blue);
}

.footer__center a {
  color: var(--blue);
  display: block;
  transition: all 0.3s ease;
}

.footer__center a:hover {
  color: var(--light-blue);
  transition: all 0.3s ease;
}

.footer__center-wrapper {
  display: flex;
  width: 100%;
}

.footer__right-list {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  height: 25px;
}

.footer__right {
  max-width: 50px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.footer__bottom {
  padding-top: 87px;
  display: flex;
  justify-content: space-between;
  font-family: "BasicCircleRegular", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--blue);
}

.footer__bottom-list {
  list-style: none;
  display: flex;
  margin-right: 60px;
}

.footer__bottom-list a,
.footer__bottom-right a {
  color: var(--blue);
  transition: all 0.3s ease;
}

.footer__bottom-list a:hover,
.footer__bottom-right a:hover {
  color: var(--light-blue);
  transition: all 0.3s ease;
}

.footer__bottom-list li {
  margin-right: 60px;
}

.footer__bottom-list li:last-child {
  margin-right: 0;
}

.textflex {
  padding: 102px 0 118px;
}

.textflex__inner h2 {
  font-family: "BasicCircleMedium", sans-serif;
  font-size: 70px;
  font-weight: 500;
  line-height: 70px;
  color: var(--light-blue);
  max-width: 995px;
  margin-bottom: 36px;
}

.textflex__inner p {
  max-width: 650px;
  font-family: "BasicCircleRegular", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  color: var(--blue);
}

.counter {
  padding-bottom: 117px;
}

.counter__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

#counter__item-1 {
  grid-area: 1 / 1 / 2 / 2;
}

#counter__item-2 {
  grid-area: 2 / 2 / 3 / 3;
}

#counter__item-3 {
  grid-area: 3 / 3 / 4 / 4;
}

#counter__item-4 {
  grid-area: 4 / 4 / 5 / 5;
}

.counter__item {
  position: sticky;
  top: 100px;
}

.counter__item-num,
.counter__item-head span {
  font-family: "BasicCircleMedium", sans-serif;
  font-size: 70px;
  font-weight: 500;
  line-height: 70px;
  color: var(--light-blue);
}

.counter__item-head span {
  margin-left: 15px;
}

.counter__item-text {
  font-family: "BasicCircleRegular", sans-serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 36px;
  color: var(--blue);
}

.counter__item-head {
  display: flex;
}

@media (max-height: 650px) {
  .counter__item {
    top: 70%;
  }
}

@media (max-height: 500px) {
  .counter__item {
    top: 50%;
  }
}

.teambg {
  background-repeat: no-repeat;
  background-size: cover;
  height: 1100px;
  background-position: center top;

  position: relative;
}

.teambg__wrapper {
  padding: 120px 20px;
  display: flex;
  color: var(--white);
  position: relative;
  z-index: 2;
  height: 860px;
}

.teambg__left {
  max-width: 305px;
  width: 100%;
  margin-right: 50px;
  position: sticky;
  top: 100px;
  align-self: flex-start;
}

.teambg__left-title {
  font-family: "BasicCircleRegular", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  color: var(--white);
}

.teambg__right {
  max-width: 645px;
  width: 100%;
  position: sticky;
  top: 100px;
  align-self: flex-start;
}

.teambg__right-title {
  font-family: "BasicCircleMedium", sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 44px;
  color: var(--white);
}

.ourteam__slider {
  padding-top: 25px;
}

.ourteam__slide-inner {
  display: flex;
}

.ourteam__slider .splide__slide {
  max-width: 318px;
  width: 100%;
}

.ourteam__slider .splide__slide.is-active {
  max-width: 768px;
  width: 100%;
}

.ourteam__slider .splide__slide.is-active .ourteam__slide-right {
  max-height: 600px;
  width: 100%;
  height: 100%;
  max-width: 465px;
}

.ourteam__slide-right img {
  width: 100%;
  object-fit: contain;
  position: absolute;
  bottom: 0;
  max-height: 350px;
}

.ourteam__slider .splide__slide .ourteam__slide-left {
  max-width: 0px;
  width: 100%;
  opacity: 0;
  visibility: hidden;
}

.ourteam__slide-title {
  font-family: "BasicCircleMedium", sans-serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 38px;
  color: var(--light-blue);
}

.ourteam__slider .splide__slide.is-active img {
  transform: scale(1);
  position: unset;
  transition: all .5s ease;
}

.ourteam__slider .splide__slide.is-active .ourteam__slide-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 10;
  max-width: 305px;
  width: 100%;
  opacity: 1;
  visibility: visible;
  margin-bottom: 80px;
}

.ourteam__slider .splide__slide.is-active .ourteam__slide {
  height: 100%;
}

.ourteam__slider .splide__slide.is-active {
  max-height: 600px;
}

#splide {
  height: 600px;
}

#splide .splide__track,
#splide .splide__track {
  height: 100%;
}

#splide .ourteam__slide-inner {
  height: 100%;
}

.tabs {
  width: 100%;
  height: 56px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-bottom: 100px;
}

.tabs li {
  max-width: 155px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  cursor: pointer;
  background: var(--dark-grey);
  border-radius: 28px;
  margin-right: 20px;
}

.tabs li:last-child {
  margin-right: 0;
}

.tabs li:hover {
  position: relative;
  z-index: 1;
  background: var(--light-blue);
}

.tabs li.active {
  color: var(--white);
  position: relative;
  z-index: 1;
  background: var(--light-blue);
}

.contents {
  width: 100%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.box {
  gap: 20px;
  width: 100%;
  animation: moving 1s ease;
  -webkit-animation: moving 1s ease;
}

.show {
  display: flex;
}

.hide {
  display: none;
}

@keyframes moving {
  from {
    transform: translateX(-50px);
    -webkit-transform: translateX(-50px);
    -moz-transform: translateX(-50px);
    -ms-transform: translateX(-50px);
    -o-transform: translateX(-50px);
    opacity: 0;
  }

  to {
    transform: translateX(0px);
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
    opacity: 1;
  }
}

.tabslist {
  margin-bottom: 120px;
}

.tabslist__items {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.tabslist__item {
  border-top: 1px solid var(--dark-grey);
  background: var(--white);
  background-size: cover;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.tabslist__item:last-child {
  border-bottom: 1px solid var(--dark-grey);
}

.tablist__item-animate {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  z-index: 0;
  transition: 0.3s;
}

.tabslist__item:hover .tablist__item-animate {
  opacity: 1;
  transition: 0.3s;
}

.tablist__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  transition: 0.3s;
}

.tabslist__item:hover .tablist__overlay {
  opacity: 1;
  transition: 0.3s;
}

.tabslist__item-wrapper {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0px;
}

.tabslist__item-title {
  font-family: "BasicCircleMedium", sans-serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 38px;
  color: var(--light-blue);
  transition: all 0.3s ease;
}

.tabslist__item:hover .tabslist__item-title {
  color: var(--white);
  padding-left: 40px;
  transition: all 0.3s ease;
}

.tabslist__item-right {
  opacity: 0;
  transition: all 0.3s ease;
}

.tabslist__item:hover .tabslist__item-right {
  opacity: 1;
  transition: all 0.3s ease;
}

.tabslist__item .infinite-zoom {
  transition: all 0.3s ease;
}

.tabslist__item:hover .infinite-zoom {
  -webkit-animation: zoomSlow 60s infinite linear;
  -moz-animation: zoomSlow 60s infinite linear;
  animation: zoomSlow 60s infinite linear;
  transition: all 0.3s ease;
}

@-webkit-keyframes zoomSlow {
  0% {
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -moz-transform: scale(1.3) rotate(0.1deg);
    -webkit-transform: scale(1.3) rotate(0.1deg);
    transform: scale(1.3) rotate(0.1deg);
  }

  100% {
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-moz-keyframes zoomSlow {
  0% {
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -moz-transform: scale(1.3) rotate(0.1deg);
    -webkit-transform: scale(1.3) rotate(0.1deg);
    transform: scale(1.3) rotate(0.1deg);
  }

  100% {
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes zoomSlow {
  0% {
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -moz-transform: scale(1.3) rotate(0.1deg);
    -webkit-transform: scale(1.3) rotate(0.1deg);
    transform: scale(1.3) rotate(0.1deg);
  }

  100% {
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.introwhite {
  padding: 130px 0 120px;
}

.introwhite__wrapper {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.introwhite__left-title {
  margin: 0;
  color: var(--blue);
  font-size: 160px;
  font-family: "BasicCircleMedium", sans-serif;
  font-weight: 500;
}

.introwhite__right {
  max-width: 650px;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  font-size: 18px;
  font-family: "BasicCircleRegular", sans-serif;
  font-weight: 400;
  margin-left: auto;
}

.introwhite__left {
  position: sticky;
  top: 40px;
}

.mainpractice__item {
  position: relative;
  overflow: hidden;
}

.mainpractice__item-animate {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  z-index: 0;
  transition: 0.3s;
}

.mainpractice__item:hover .mainpractice__item-animate {
  opacity: 1;
  transition: 0.3s;
}

.mainpractice__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: 0.3s;
}

.mainpractice__item:hover .mainpractice__overlay {
  opacity: 1;
  transition: 0.3s;
}

.mainpractice__item .infinite-zoom {
  transition: all 0.3s ease;
}

.mainpractice__item:hover .infinite-zoom {
  -webkit-animation: zoomSlow 60s infinite linear;
  -moz-animation: zoomSlow 60s infinite linear;
  animation: zoomSlow 60s infinite linear;
  transition: all 0.3s ease;
}

.mainpractice__wrapper {
  position: relative;
  z-index: 5;
  padding: 60px 20px 187px;
  border-top: 1px solid var(--light-border);
  display: flex;
  justify-content: space-between;
}

.mainpractice__items .mainpractice__item:first-child .mainpractice__wrapper,
.mainpractice__items .mainpractice__item:first-of-type .mainpractice__wrapper {
  border-top: none;
}

.mainpractice__item-left {
  max-width: 535px;
  width: 100%;
  margin-right: 40px;
}

.mainpractice__item-title {
  color: var(--white);
  font-size: 40px;
  font-family: "BasicCircleMedium", sans-serif;
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.mainpractice {
  background: var(--light-blue);
}

.mainpractice__item-right p {
  max-width: 650px;
  width: 100%;
  font-family: "BasicCircleRegular", sans-serif;
  font-size: 18px;
  color: var(--white);
  font-weight: 400;
}

.mainpractice__item-right .btn__inner {
  margin: 38px 0 0;
  display: block;
}

.allindustry {
  background: var(--light-blue);
  padding: 120px 0 70px;
}

.allindustry__items {
  display: flex;
  flex-wrap: wrap;
}

.allindustry__item {
  max-width: 535px;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  height: 140px;
  transition: all 0.6s ease;
}

.allindustry__item:hover {
  border-top: 1px solid rgba(255, 255, 255, 1);
  transition: all 0.3s ease;
}

.allindustry__item:nth-child(odd) {
  margin-right: 155px;
}

.allindustry__item-wrapper {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  height: 120px;
}

.allindustry__item-title {
  font-family: "BasicCircleRegular", sans-serif;
  font-size: 30px;
  color: var(--white);
  line-height: 34px;
  font-weight: 500;
}

.tabslist__item-left {
  max-width: 800px;
  width: 100%;
}

.introwhite__left-smtitle {
  margin: 0;
  color: var(--blue);
  font-size: 90px;
  font-family: "BasicCircleMedium", sans-serif;
  font-weight: 500;
  line-height: 96px;
  max-width: 1170px;
}

.singleimage {
  height: 700px;
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
}

.mainexp__wrapper {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--dark-grey);
  padding-bottom: 150px;
}

.mainexp__left {
  max-width: 420px;
  width: 100%;
}

.mainexp__left h4 {
  font-family: "BasicCircleMedium", sans-serif;
  font-size: 30px;
  color: var(--light-blue);
  font-weight: 500;
  line-height: 34px;
}

.mainexp__right {
  max-width: 650px;
  width: 100%;
}

.mainexp__right ul li {
  font-family: "BasicCircleRegular", sans-serif;
  font-size: 18px;
  color: var(--blue);
  font-weight: 400;
  margin-bottom: 18px;
}

.mainexp__right ul li:last-child {
  margin-bottom: 0;
}

.mainexp {
  padding: 120px 0;
}

.nextpage {
  background: var(--light-blue);
}

.nextpage__wrapper {
  padding: 130px 0 120px;
  color: var(--white);
  display: flex;
  justify-content: space-between;
}

.nextpage__left-title {
  font-family: "BasicCircleMedium", sans-serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 34px;
}

.nextpage__center-title {
  color: var(--white);
  font-size: 60px;
  font-family: "BasicCircleMedium", sans-serif;
  font-weight: 500;
  line-height: 100%;
}

.nextpage__left {
  max-width: 420px;
  width: 100%;
}

.nextpage__center {
  max-width: 635px;
  width: 100%;
}

.nextpage__right {
  max-width: 14px;
  width: 100%;
}

.nextpage__rigt-icon {
  width: 100%;
}

.allteam {
  margin: 150px 0 100px;
}

.allteam__item-top {
  background: rgba(0, 0, 0, 0.05);
  position: relative;
  height: 385px;
}

.allteam .allteam__item-top img {
  margin: 0 auto;
  filter: grayscale(100%);
  transition: all 0.3s ease;
  height: 100%;
}

.allteam__item {
  max-width: 420px;
  width: 100%;
  margin-right: 40px;
}

.allteam__item:nth-child(3n + 3) {
  margin-right: 0;
}

.allteam__item-content {
  height: 170px;
  background: #fff;
  transition: all 0.3s ease;
}

.allteam__item-title {
  font-family: "BasicCircleMedium", sans-serif;
  font-size: 24px;
  line-height: 28px;
  color: var(--light-blue);
  font-weight: 500;
  transition: all 0.3s ease;
}

.allteam__item-text {
  font-family: "BasicCircleRegular", sans-serif;
  font-size: 18px;
  color: var(--blue);
  font-weight: 400;
  transition: all 0.3s ease;
}

.allteam__item-content__inner {
  padding: 30px 0px;
  transition: all 0.3s ease;
}

.allteam__item:hover .allteam__item-content__inner {
  padding: 30px 40px;
  transition: all 0.3s ease;
}

.allteam__item:hover .allteam__item-content {
  background: var(--light-blue);
  transition: all 0.3s ease;
}

.allteam__item:hover .allteam__item-title,
.allteam__item:hover .allteam__item-text {
  color: var(--white);
  transition: all 0.3s ease;
}

.allteam__items,
.allteam__items ul {
  display: flex !important;
  flex-wrap: wrap;
}

.allteam__items li {
  margin-right: 40px;
  max-width: 406px;
  width: 100%;
}

.allteam__item:hover .allteam__item-top img {
  filter: grayscale(0%);
  transition: all 0.3s ease;
}

.blogpage {
  padding: 210px 0 75px;
  background: var(--grey);
}

.blogpage-title {
  margin: 0;
  color: var(--blue);
  font-size: 90px;
  font-family: "BasicCircleMedium", sans-serif;
  font-weight: 500;
  line-height: 96px;
  max-width: 1170px;
  padding-bottom: 72px;
}

.blogpage__items {
  display: flex;
  flex-wrap: wrap;
}

.blogpage__items .blog__item {
  margin-bottom: 40px;
}

.singleblog {
  padding: 208px 0 175px;
  background: var(--grey);
}

.singleblog__wrapper {
  display: flex;
  justify-content: space-between;
}

.singleblog__left {
  max-width: 110px;
  width: 100%;
}

.singleblog__left-link {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: var(--light-blue);
  font-family: "BasicCircleRegular", sans-serif;
  font-size: 14px;
  font-weight: 400;
}

.singleblog__left-link img {
  transform: rotate(180deg);
  margin-right: 16px;
  transition: all 0.3s ease;
}

.singleblog__left-link:hover img {
  margin-right: 10px;
  transition: all 0.3s ease;
}

.singleblog__right {
  max-width: 995px;
  width: 100%;
}

.singleblog__right-title {
  color: var(--blue);
  font-size: 60px;
  font-family: "BasicCircleMedium", sans-serif;
  font-weight: 500;
  line-height: 100%;
  padding-bottom: 25px;
}

.singleblog__right-date {
  font-family: "BasicCircleRegular", sans-serif;
  font-size: 18px;
  color: var(--blue);
  font-weight: 400;
}

.singleblog__right-inner {
  border-bottom: 1px solid var(--dark-grey);
  padding-bottom: 52px;
}

.singleblog__right-content {
  padding: 80px 0 0;
  color: var(--blue);
}

.singleblog__right-content p {
  font-family: "BasicCircleRegular", sans-serif;
  font-size: 18px;
  color: var(--blue);
  font-weight: 400;
  padding-bottom: 50px;
}

.singleblog__right-content h1 {
  color: var(--blue);
  font-size: 60px;
  font-family: "BasicCircleMedium", sans-serif;
  font-weight: 500;
  line-height: 100%;
  margin-bottom: 50px;
}

.singleblog__right-content h2 {
  font-family: "BasicCircleMedium", sans-serif;
  font-size: 46px;
  color: var(--blue);
  font-weight: 500;
  line-height: 100%;
  margin-bottom: 40px;
}

.singleblog__right-content h3 {
  font-family: "BasicCircleMedium", sans-serif;
  font-size: 30px;
  color: var(--blue);
  font-weight: 500;
  line-height: 100%;
  margin-bottom: 37px;
}

.singleblog__right-content h4 {
  font-family: "BasicCircleMedium", sans-serif;
  font-size: 26px;
  color: var(--blue);
  font-weight: 500;
  line-height: 100%;
  margin-bottom: 37px;
}

.singleblog__right-content h5 {
  font-family: "BasicCircleMedium", sans-serif;
  font-size: 22px;
  color: var(--blue);
  font-weight: 500;
  line-height: 100%;
  margin-bottom: 37px;
}

.singleblog__right-content h6 {
  font-family: "BasicCircleMedium", sans-serif;
  font-size: 20px;
  color: var(--blue);
  font-weight: 500;
  line-height: 100%;
  margin-bottom: 37px;
}

.singleblog__right-content ul,
.singleblog__right-content ol {
  padding-left: 20px;
  margin-bottom: 50px;
}

.singleblog__right-content ul li,
.singleblog__right-content ol li {
  font-family: "BasicCircleRegular", sans-serif;
  font-size: 18px;
  color: var(--blue);
  font-weight: 400;
  margin-bottom: 18px;
}

.singleblog__right-content ul li:last-child,
.singleblog__right-content ol li:last-child {
  margin-bottom: 0;
}

.singleblog__right-content img {
  width: 100%;
  object-fit: contain;
  margin-bottom: 80px;
}

.introsteam {
  padding: 170px 0 100px;
}

.introsteam__left {
  max-width: 880px;
  width: 100%;
  background: var(--light-blue);
  color: var(--white);
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.introsteam__right {
  max-width: 460px;
  width: 100%;
}

.introsteam__wrapper .introsteam__right img {
  margin: 0 auto;
  filter: grayscale(100%);
  transition: all .3s ease;
}

.introsteam__wrapper:hover .introsteam__right img {
  filter: grayscale(0%);
  transition: all .3s ease;
}

.introsteam__wrapper {
  display: flex;
}

.introsteam__left-title {
  font-size: 60px;
  font-family: "BasicCircleMedium", sans-serif;
  font-weight: 500;
  line-height: 100%;
  margin-bottom: 5px;
}

.introsteam__left-subtitle {
  font-family: "BasicCircleRegular", sans-serif;
  font-size: 24px;
  line-height: 28px;
  font-weight: 400;
}

.introsteam__left-bottom ul {
  list-style: none;
}

.introsteam__left-links li a {
  font-family: "BasicCircleRegular", sans-serif;
  font-size: 18px;
  color: var(--white);
  font-weight: 400;
}

.introsteam__left-links li a:hover {
  text-decoration: underline;
}

.introsteam__left-links {
  margin-bottom: 18px;
}

.introsteam__left-social a img {
  filter: brightness(0) invert(1);
  max-width: 17px;
}

.singleteam__left {
  max-width: 765px;
  width: 100%;
}

.singleteam__left-content p {
  font-family: "BasicCircleRegular", sans-serif;
  font-size: 18px;
  color: var(--blue);
  font-weight: 400;
  padding-bottom: 35px;
}

.singleteam__left-content h1 {
  color: var(--blue);
  font-size: 60px;
  font-family: "BasicCircleMedium", sans-serif;
  font-weight: 500;
  line-height: 100%;
  margin-bottom: 50px;
}

.singleteam__left-content-content h2 {
  font-family: "BasicCircleMedium", sans-serif;
  font-size: 46px;
  color: var(--blue);
  font-weight: 500;
  line-height: 100%;
  margin-bottom: 40px;
}

.singleteam__left-content h3 {
  font-family: "BasicCircleMedium", sans-serif;
  font-size: 30px;
  color: var(--blue);
  font-weight: 500;
  line-height: 34px;
  margin-bottom: 37px;
}

.singleteam__left-content h4 {
  font-family: "BasicCircleMedium", sans-serif;
  font-size: 26px;
  color: var(--blue);
  font-weight: 500;
  line-height: 100%;
  margin-bottom: 37px;
}

.singleteam__left-content h5 {
  font-family: "BasicCircleMedium", sans-serif;
  font-size: 22px;
  color: var(--blue);
  font-weight: 500;
  line-height: 100%;
  margin-bottom: 37px;
}

.singleteam__left-content h6 {
  font-family: "BasicCircleMedium", sans-serif;
  font-size: 20px;
  color: var(--blue);
  font-weight: 500;
  line-height: 100%;
  margin-bottom: 37px;
}

.singleteam__left-content ul,
.singleteam__left-content ol {
  padding-left: 20px;
  margin-bottom: 50px;
}

.singleteam__left-content ul li,
.singleteam__left-content ol li {
  font-family: "BasicCircleRegular", sans-serif;
  font-size: 18px;
  color: var(--blue);
  font-weight: 400;
  margin-bottom: 18px;
}

.singleteam__left-content ul li:last-child,
.singleteam__left-content ol li:last-child {
  margin-bottom: 0;
}

.singleteam__left-content img {
  width: 100%;
  object-fit: contain;
  margin-bottom: 80px;
}

.singleteam__left-spec h2 {
  font-size: 60px;
  font-family: "BasicCircleMedium", sans-serif;
  font-weight: 500;
  line-height: 100%;
  padding-bottom: 75px;
}

.singleteam__left-item {
  position: relative;
  height: 130px;
}

.singleteam {
  overflow-x: hidden;
  padding-bottom: 160px;
}

.singleteam__left-item:before {
  position: absolute;
  content: "";
  height: 1px;
  max-height: 562px;
  width: 100vw;
  right: 0px;
  top: 0;
  background: var(--dark-grey);
  z-index: -1;
  transition: all 0.3s ease;
}

.singleteam__left-item:hover:before {
  background: var(--light-blue);
  transition: all 0.3s ease;
}

.singleteam__left-inner {
  height: 100%;
}

.singleteam__left-inner a {
  font-family: "BasicCircleMedium", sans-serif;
  font-size: 24px;
  line-height: 28px;
  color: var(--blue);
  font-weight: 500;
  transition: all 0.3s ease;
  display: block;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
}

.singleteam__left-item:last-child:after {
  position: absolute;
  content: "";
  height: 1px;
  max-height: 562px;
  width: 100vw;
  right: 0px;
  bottom: 0;
  background: var(--dark-grey);
  z-index: -1;
  transition: all 0.3s ease;
}

.singleteam__left-item:hover .singleteam__left-inner a {
  transition: all 0.3s ease;
  padding-left: 30px;
  color: var(--light-blue);
}

.singleteam__wrapper {
  display: flex;
  justify-content: space-between;
}

.singleteam__right {
  font-family: "BasicCircleRegular", sans-serif;
  max-width: 420px;
  width: 100%;
  text-align: right;
}

.singleteam__right h5 {
  font-family: "BasicCircleRegular", sans-serif;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 19px;
  color: var(--blue);
}

.singleteam__right h6 {
  font-family: "BasicCircleMedium", sans-serif;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 19px;
  color: var(--light-blue);
}

.applybg {
  position: relative;
  height: 900px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  margin-bottom: 150px;
}

.applybg__inner-title {
  font-size: 40px;
  font-family: "BasicCircleMedium", sans-serif;
  font-weight: 500;
  line-height: 44px;
  color: var(--white);
}

.applybg__wrapper {
  position: relative;
  width: 100%;
  height: 900px;
}

.applybg__inner {
  max-width: 680px;
  width: 100%;
  position: absolute;
  bottom: 140px;
  right: 0;
}

/* GSAP */

philosophie {
  position: relative;
}

.philosophie .point {
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
}

.philosophie .wrapper {
  height: 100vh;
  width: 100%;
}



.point article.point-article {
  flex-basis: 60%;
}

.point article.point-article h3 {
  color: var(--light-blue);
  font-size: 60px;
  font-family: "BasicCircleMedium", sans-serif;
  font-weight: 500;
  line-height: 100%;
}

.point img {
  flex-basis: 25%;
  max-width: 535px;
  width: 100%;
  height: 100%;
  max-height: 630px;
  margin-right: 150px;
}

@media (min-width: 576px) and (min-height: 600px) {
  .point-article p {
    position: absolute;
    right: 0;
    bottom: -250px;
  }

  .point-article h3 {
    position: absolute;
    top: -250px;
  }
}

.offerlist {
  background: var(--grey);
  padding: 110px 0 150px;
}

.offerlist__title {
  font-family: "BasicCircleMedium", sans-serif;
  font-size: 30px;
  color: var(--light-blue);
  font-weight: 500;
  padding: 0 0px 74px;
}

.offerlist__item ul.accordion-list li div.answer {
  margin-top: 0;
}

.offerlist__item .accordion-list__header h3 {
  font-family: "BasicCircleMedium", sans-serif;
  font-size: 30px;
  color: var(--blue);
  font-weight: 500;
  transition: all 0.3s ease;
}

.offerlist__item .accordion-list__header {
  border: none;
  padding: 40px 0 37px;
}

.offerlist__item ul.accordion-list li {
  border-top: 1px solid var(--dark-grey);
}

.offerlist__item ul.accordion-list li:last-child {
  border-bottom: 1px solid var(--dark-grey);
  padding-bottom: 0;
}

.offerlist__item ul.accordion-list li {
  transition: all 0.3s ease;
  background: transparent;
}

.offerlist__item ul.accordion-list li .accordion-list__header img {
  opacity: 0;
  transition: all 0.3s ease;
}

.offerlist__item ul.accordion-list li:hover .accordion-list__header img,
.offerlist__item ul.accordion-list li.active .accordion-list__header img {
  opacity: 1;
  transition: all 0.3s ease;
}

.offerlist__item ul.accordion-list li:hover,
.offerlist__item ul.accordion-list li.active {
  background: var(--light-blue);
  transition: all 0.3s ease;
}

.offerlist__item ul.accordion-list li:hover h3,
.offerlist__item ul.accordion-list li.active h3 {
  color: var(--white);
  transition: all 0.3s ease;
}

.offerlist__item ul.accordion-list li div.answer p {
  margin: 0;
  font-family: "BasicCircleRegular", sans-serif;
  font-size: 18px;
  font-weight: 400;
}

.offerlist__item ul.accordion-list li div.answer {
  color: var(--white);
  padding-bottom: 15px;
}

.textflex__inner a {
  font-family: "BasicCircleRegular", sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 44px;
  color: var(--blue);
  transition: all 0.3s ease;
}

.textflex__inner a:hover {
  color: var(--light-blue);
  transition: all 0.3s ease;
}

.contactdata {
  padding: 102px 0 120px;
}

.contactdata__title {
  font-family: "BasicCircleMedium", sans-serif;
  font-size: 18px;
  color: var(--light-blue);
  font-weight: 500;
  margin-bottom: 43px;
}

.contactdata__left a {
  font-family: "BasicCircleRegular", sans-serif;
  font-size: 30px;
  color: var(--blue);
  font-weight: 500;
  display: block;
  transition: all 0.3s ease;
}

.contactdata__left a:hover {
  color: var(--light-blue);
  transition: all 0.3s ease;
}

.contactdata__left {
  max-width: 535px;
  width: 100%;
}

.contactdata__wrapper {
  display: flex;
  justify-content: space-between;
}

.contactdata__right-items {
  display: flex;
}

.contactdata__right-item {
  max-width: 305px;
  width: 100%;
}

.contactdata__right {
  max-width: 650px;
  width: 100%;
}

.contactdata__right-item {
  margin-right: 40px;
}

.contactdata__right-item:last-child {
  margin-right: 0;
}

.contactdata__link {
  display: flex;
  align-items: center;
  margin-top: 26px;
  font-family: "BasicCircleRegular", sans-serif;
  font-size: 14px;
  color: var(--light-blue);
  font-weight: 400;
  transition: all 0.3s ease;
}

.contactdata__link span {
  margin-right: 6px;
  transition: all 0.3s ease;
}

.contactdata__link:hover span {
  margin-right: 12px;
  transition: all 0.3s ease;
}

.contactdata__text {
  font-family: "BasicCircleRegular", sans-serif;
  font-size: 18px;
  color: var(--blue);
  font-weight: 400;
}

.contactform__title {
  color: var(--light-blue);
  font-size: 70px;
  font-family: "BasicCircleMedium", sans-serif;
  font-weight: 500;
  line-height: 100%;
  margin-bottom: 70px;
}

.contactform__wrapper {
  background: var(--grey);
  padding-bottom: 27px;
}

.contactform__inner {
  padding: 80px 115px 70px;
}

.form-group input,
.form-group textarea {
  font-family: "BasicCircleRegular", sans-serif;
  font-size: 18px;
  outline: none;
  border: none;
  background: transparent;
  width: 100%;
  border-bottom: 1px solid var(--dark-grey);
  padding: 28px 0;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-bottom: 1px solid var(--light-blue);
  transition: all 0.3s ease;
}

.contaform__inner-left {
  max-width: 650px;
  width: 100%;
  margin-right: 30px;
}

.form-group {
  margin-bottom: 22px;
}

.form-group textarea {
  resize: none;
  height: 180px;
}

.contaform__inner-right,
.form-group__sm {
  max-width: 305px;
  width: 100%;
  color: #6d6d72;
  font-size: 14px;
  font-family: "BasicCircleRegular", sans-serif;
  font-weight: 400;
  line-height: 21px;
  margin-bottom: 90px;
}

.form-group__sm {
  display: none;
}

.contactform__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.contaform__inner-left .btn__main-inner {
  margin-top: 50px;
}

.contactform {
  margin-bottom: 140px;
}

.header>.container {
  padding: 0;
}

ul.accordion-list .help__item-inner li:last-child {
  padding-bottom: 0;
}

.accordion-list__link {
  display: none;
}

.blog__items .splide__slide {
  max-width: 420px;
  margin-right: 40px;
}

.blog__items .splide__slide:last-child {
  margin-right: 0;
}

.my-carousel-progress {
  background: #c4c4c5;
  height: 2px;
  width: 100%;
  display: none;
}

.my-carousel-progress-bar {
  background: #013f92;
  height: 2px;
  transition: width 400ms ease;
  width: 0;
}

.newsletter__inner-wrapper {
  display: none;
}

.splide__list {
  list-style: none;
}

.blogpage .blog__items li:nth-child(3n) {
  margin-right: 0;
}

.blogpage .blog__items li {
  margin-bottom: 40px;
}

.blogpage .blog__items li .blog__item-inner {
  padding: 30px;
  color: var(--blue);
  border: 2px solid var(--white);
  height: 420px;
}

/* Responsive */

@media (max-width: 1450px) {
  .header>.container {
    padding: 0;
  }

  .header .wrapper {
    padding: 0 20px;
  }

  .paddinglp {
    padding: 0 20px;
  }

  .applybg__wrapper.paddinglp {
    padding: 0;
  }

  .offerlist__title {
    padding: 0 0px 74px;
  }

  .offerlist__item .accordion-list__header {
    border: none;
    padding: 40px 20px 37px;
  }

  .tabslist__item-wrapper {
    padding: 40px 20px;
  }

  .singleblog {
    padding: 208px 20px 175px;
  }

  .nextpage__wrapper {
    padding: 130px 20px 120px;
  }

  .singleteam {
    padding: 0 20px 120px;
  }

  .mainexp__wrapper {
    padding-bottom: 120px;
  }

  .newsletter__title {
    padding-bottom: 22px;
  }

  .blog__header {
    padding-bottom: 63px;
  }

  .industry__title {
    padding-bottom: 125px;
  }

  .intro__title,
  .team__title,
  .introwhite__left-title {
    font-size: 120px;
  }

  .footer__bottom {
    padding-top: 87px;
  }

  .practice__title {
    padding: 0 20px 125px;
  }

  .accordion-list__header {
    padding: 40px 20px 60px;
  }

  .additional__item {
    margin-right: 40px;
    max-width: 295px;
  }

  .additional__item:nth-child(4n) {
    margin-right: 0;
  }

  .blog__items .splide__slide {
    max-width: 350px;
  }

  .blog__items,
  .blog__items ul {
    justify-content: center;
  }

  .intro__inner {
    padding: 0 20px;
  }

  .counter__item {
    margin-right: 15px;
  }

  .counter__item:last-child {
    margin-right: 0;
  }

  .allteam__items li {
    max-width: 350px;
  }

  .allteam__items,
  .allteam__items ul {
    justify-content: space-between;
  }
}

@media (max-width: 1350px) {
  /*.additional__item {*/
  /*  max-width: 250px;*/
  /*}*/
}

@media (max-width: 1270px) {

  /*.industry__item {*/
  /*  max-width: 320px;*/
  /*}*/
  .industry__items {
    justify-content: flex-end;
  }

  .allindustry__item:nth-child(odd) {
    margin-right: 40px;
  }
}

@media (max-width: 1210px) {
  .allteam__items li {
    max-width: 300px;
  }
}

@media (max-width: 1170px) {
  .blog__items .splide__slide {
    max-width: 300px;
  }

  .singleblog__left {
    margin-right: 20px;
  }

  .singleblog__right-title {
    font-size: 50px;
  }
}

@media (max-width: 1160px) {
  .additional__item {
    margin-right: 20px;
  }
}

@media (max-width: 1150px) {
  .footer__left {
    margin-right: 50px;
  }

  .about-right__text h2 {
    font-size: 60px;
  }

  .maintext__left {
    margin-right: 30px;
  }

  .teambg__left {
    max-width: 250px;
    margin-right: 20px;
  }

  .teambg {
    height: 800px;
  }

  .teambg__wrapper {
    height: 600px;
  }

  .introwhite__left-title {
    font-size: 100px;
  }

  /*.allindustry__item {*/
  /*  max-width: 435px;*/
  /*}*/
  .contactform__inner {
    padding: 80px 50px 97px;
  }
}

@media (max-width: 1110px) {
  .additional__item {
    /*  max-width: 200px;*/
    height: 180px;
  }

  .additional__item-title {
    font-size: 20px;
  }

  .introwhite__left-smtitle {
    font-size: 80px;
  }

  .blogpage-title {
    font-size: 80px;
    padding-bottom: 50px;
  }
}

@media (max-width: 1105px) {
  /*.industry__item {*/
  /*  max-width: 302px;*/
  /*}*/
}

@media (max-width: 1070px) {

  /*.industry__item {*/
  /*  max-width: 250px;*/
  /*}*/
  .industry__item-text {
    margin-right: 28px;
  }

  .counter__item-num,
  .counter__item-head span {
    font-size: 50px;
  }

  .introwhite__left-title {
    font-size: 80px;
  }

  .introwhite__right {
    max-width: 600px;
  }

  .allteam__items li {
    max-width: 350px;
  }
}

@media (max-width: 1020px) {
  .blog__items .splide__slide {
    max-width: 290px;
  }
}

@media (max-width: 992px) {
  .footer__left {
    max-width: 200px;
  }

  .footer__left img {
    width: 100%;
  }

  .footer__center {
    margin-right: 10px;
  }

  .intro,
  .intro__inner {
    min-height: 600px;
  }

  .intro__title,
  .team__title {
    font-size: 100px;
  }

  .header .wrapper {
    padding: 20px;
  }

  .about-right__text h2 {
    font-size: 50px;
  }

  ul.accordion-list li .accordion-list__header h3 {
    margin-right: 20px;
  }

  .accordion-list__header p {
    margin-right: 30px;
  }

  .additional .additional__items {
    grid-template-columns: repeat(3, 1fr);
  }

  /*.additional__item {*/
  /*  max-width: 250px;*/
  /*}*/

  .additional__items {
    justify-content: center;
  }

  .additional__item:nth-child(4n) {
    margin-right: 20px;
  }

  .additional__item:nth-child(3n) {
    margin-right: 0;
  }

  .industry__wrapper {
    flex-wrap: wrap;
  }

  .industry__left {
    max-width: 1000px;
    margin-bottom: 58px;
  }

  .industry__item {
    max-width: 343px;
  }

  .industry__items {
    justify-content: center;
  }

  .team {
    height: 700px;
  }

  .blog__item-title {
    font-size: 20px;
    line-height: 24px;
  }

  .blog__item {
    height: 375px;
    max-width: 370px;
    margin-right: 15px;
  }

  .blog__items .splide__slide {
    margin-right: 15px;
  }

  .blog__item-inner {
    height: 375px;
  }

  .blog__item-date {
    margin-bottom: 29px;
  }

  .form__newsletter form {
    padding: 0 20px;
  }

  .newsletter__title {
    padding: 0 20px 22px;
    font-size: 50px;
  }

  .textflex__inner h2 {
    font-size: 60px;
  }

  .introwhite__left-title {
    font-size: 70px;
  }

  .introwhite__right {
    max-width: 550px;
  }

  .mainpractice__item-left {
    max-width: 400px;
  }

  .introwhite__left-smtitle {
    font-size: 70px;
    line-height: 86px;
  }

  .singleimage {
    height: 600px;
  }

  .mainexp__left {
    max-width: 300px;
    width: 100%;
  }

  .nextpage__center-title {
    font-size: 50px;
  }

  .nextpage__left {
    max-width: 300px;
    width: 100%;
  }

  .introsteam__left-title {
    font-size: 40px;
    margin-bottom: 10px;
  }

  .singleteam__left-content h3 {
    font-size: 24px;
    line-height: 30px;
  }

  .singleteam__left-spec h2 {
    font-size: 50px;
    padding-bottom: 50px;
  }

  .singleblog__right-title {
    font-size: 40px;
  }

  .singleblog__right-content {
    padding: 50px 0 0;
  }

  .singleblog__right-content p {
    padding-bottom: 20px;
  }

  .blogpage .blog__items li .blog__item-inner {
    height: 375px;
  }

  .blogpage-title {
    font-size: 70px;
  }

  .contactform__inner {
    padding: 50px 20px 80px;
  }

  .contactform__title {
    font-size: 60px;
    margin-bottom: 50px;
  }

  .contactdata {
    padding: 60px 0 60px;
  }

  .contactdata__left a {
    font-size: 24px;
  }
}

@media (max-width: 950px) {
  /*.allindustry__item {*/
  /*  max-width: 335px;*/
  /*}*/
}

@media (max-width: 940px) {
  .blog__items .splide__slide {
    margin-right: 40px;
    margin-bottom: 40px;
  }

  .blog__items .splide__slide:last-child {
    margin-bottom: 0;
  }

  .blog__items .splide__slide {
    max-width: 320px;
    margin-right: 0;
  }

  .blog__items .splide__slide:first-child {
    margin-right: 40px;
  }

  .blogpage .blog__items li:nth-child(3n) {
    margin-right: 0px;
  }

  .blogpage .blog__items li {
    margin-right: 0;
  }

  .blogpage .blog__items li:nth-child(odd) {
    margin-right: 40px;
  }
}

@media (max-width: 900px) {
  .introwhite__left {
    position: unset;
    margin-bottom: 20px;
  }

  .introwhite__right {
    max-width: 900px;
  }
}

@media (max-width: 830px) {
  .additional__item {
    max-width: 225px;
  }

  .allteam__items li {
    max-width: 300px;
  }
}

@media (max-width: 805px) {
  .industry__item {
    max-width: 324px;
  }
}

@media (max-width: 768px) {
  .additional .additional__items {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__left {
    max-width: 172px;
  }

  .footer__right {
    max-width: 30px;
  }

  .footer__right>img {
    display: none;
  }

  .intro__title {
    font-size: 80px;
    padding: 0 20px;
  }

  .team__title {
    font-size: 80px;
  }

  .about-right__text h2 {
    font-size: 30px;
  }

  .about {
    margin: 60px 0;
  }

  .practice__title {
    font-size: 30px;
    font-weight: 500;
  }

  .practice__title {
    padding: 0 20px 60px;
  }

  .practice {
    padding: 60px 0 0px;
  }

  ul.accordion-list li .accordion-list__header h3 {
    font-size: 24px;
    font-weight: 500;
    line-height: 30px;
  }

  .accordion-list__header img {
    width: 34px;
    height: 34px;
  }

  .accordion-list__header h3 {
    max-width: 235px;
  }

  ul.accordion-list li:last-child {
    padding-bottom: 0;
  }

  .maintext {
    padding: 60px 0 60px;
  }

  .maintext__left-title {
    font-size: 20px;
    font-weight: 500;
    line-height: 22px;
  }

  ul.accordion-list li div.answer p {
    font-size: 16px;
    line-height: 24px;
    padding: 0;
  }

  .maintext__left {
    max-width: 350px;
  }

  .maintext__right-inner {
    margin-bottom: 60px;
  }

  .help__item-inner h4 {
    font-size: 20px;
    margin-bottom: 28px;
  }

  .help__items {
    flex-wrap: wrap;
  }

  .help__item:nth-child(odd) {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .help__item-inner ul li {
    font-size: 16px;
  }

  .help {
    padding-bottom: 60px;
  }

  .additional__item {
    max-width: 300px;
    margin-bottom: 15px;
    height: 155px;
  }

  .additional__item:nth-child(3n) {
    margin-right: 20px;
  }

  .additional__item:nth-child(odd) {
    margin-right: 40px;
  }

  .additional {
    margin: 80px 0 45px;
  }

  .additional__title {
    font-size: 30px;
    margin-bottom: 37px;
  }

  .industry__item {
    max-width: 248px;
  }

  .industry__title {
    font-size: 30px;
  }

  .industry {
    padding: 70px 0 40px;
  }

  .industry__title {
    padding-bottom: 27px;
  }

  .industry__left-text,
  .industry__item-text {
    font-size: 20px;
    line-height: 28px;
  }

  .industry__item {
    height: 100px;
  }

  .team {
    height: 600px;
  }

  .blog__items,
  .blog__items ul,
  .allteam__items,
  .allteam__items ul {
    flex-wrap: nowrap;
    justify-content: unset;
  }

  .blog__items .splide__slide:first-child,
  .allteam__items .splide__slide:first-child {
    margin-right: 0;
  }

  .blog__item {
    max-width: 800px;
    margin-right: 0;
    background: var(--white);
  }

  .blog__items .splide__slide:first-child,
  .allteam__items .splide__slide:first-child {
    margin-right: unset;
  }

  .blog__items .splide__slide,
  .allteam__items .splide__slide {
    max-width: 800px;
    margin-right: 10px !important;
  }

  .blog__items,
  .allteam__items {
    display: block !important;
  }

  .blog__header-title {
    font-size: 30px;
  }

  .blog__header-right {
    display: none;
  }

  .blog {
    padding: 60px 0 100px;
  }

  .my-carousel-progress {
    display: block;
  }

  .newsletter__title {
    font-size: 30px;
  }

  .textflex {
    padding: 60px 0;
  }

  .textflex__inner h2 {
    font-size: 30px;
    line-height: 38px;
    margin-bottom: 30px;
  }

  .textflex__inner p {
    font-size: 16px;
  }

  .counter__items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .counter__item {
    position: unset;
    max-width: 300px;
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }

  .counter__item:nth-child(odd) {
    margin-right: 20px;
  }

  .counter {
    padding-bottom: 60px;
  }

  .teambg__right-title {
    font-size: 24px;
    line-height: 34px;
  }

  .teambg__left-title {
    font-size: 18px;
  }

  .tabslist__item-title {
    font-size: 24px;
    line-height: 30px;
  }

  .tabslist__item-right {
    opacity: 1;
  }

  .tabslist__item-right .btn-transparent.rounded::before {
    background: var(--light-blue);
    width: 100%;
  }

  .tabslist__item-left {
    max-width: 400px;
  }

  .introwhite {
    padding: 90px 0 60px;
  }

  .mainpractice__wrapper {
    flex-wrap: wrap;
  }

  .mainpractice__item-title {
    font-size: 30px;
  }

  .mainpractice__item-left {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .mainpractice__item-right p {
    font-size: 16px;
  }

  .mainpractice__wrapper {
    padding: 60px 20px 100px;
  }

  .allindustry__item-title {
    font-size: 20px;
    line-height: 28px;
  }

  /*.allindustry__item {*/
  /*  max-width: 248px;*/
  /*}*/
  .allindustry {
    padding: 60px 0 30px;
  }

  .allteam__item-top img {
    height: 100%;
    object-fit: contain;
  }

  .allteam {
    margin-top: 80px;
    margin-bottom: 70px;
  }

  .introwhite__left-smtitle {
    font-size: 50px;
    line-height: 60px;
    margin-bottom: -30px;
  }

  .singleimage {
    height: 500px;
  }

  .mainexp {
    padding: 60px 0;
  }

  .mainexp__wrapper {
    padding-bottom: 60px;
  }

  .nextpage__wrapper {
    padding: 60px 20px 60px;
  }

  .nextpage__left-title {
    font-size: 20px;
    line-height: 26px;
  }

  .nextpage__center-title {
    font-size: 30px;
  }

  .nextpage__center {
    margin-right: 20px;
  }

  .nextpage__left {
    margin-right: 20px;
  }

  .introsteam__left-title {
    font-size: 30px;
  }

  .introsteam__left-subtitle {
    font-size: 20px;
  }

  .introsteam__left-links li a {
    font-size: 16px;
  }

  .introsteam__left {
    padding: 40px;
  }

  .introsteam {
    padding: 120px 0 60px;
  }

  .singleteam__left-spec h2 {
    font-size: 40px;
    padding-bottom: 40px;
  }

  .singleteam__right {
    max-width: 250px;
  }

  .singleteam {
    padding-bottom: 60px;
  }

  .singleblog__wrapper {
    flex-wrap: wrap;
  }

  .singleblog {
    padding: 110px 20px 60px;
  }

  .singleblog__left {
    margin-right: 0px;
    margin-bottom: 30px;
  }

  .singleblog__right-title {
    font-size: 30px;
  }

  .singleblog__right-inner {
    padding-bottom: 30px;
  }

  .singleblog__right-content {
    padding: 30px 0 0;
  }

  .singleblog__right-date {
    font-size: 16px;
  }

  .singleblog__right-content p {
    font-size: 16px;
  }

  .singleblog__right-content h3 {
    font-size: 24px;
    margin-bottom: 25px;
  }

  .singleblog__right-content ul li,
  .singleblog__right-content ol li {
    font-size: 16px;
  }

  .singleblog__right-content img {
    margin-bottom: 50px;
  }

  .blogpage {
    padding: 110px 0 75px;
  }

  .blogpage-title {
    font-size: 50px;
  }

  .contactdata__left {
    max-width: 300px;
    width: 100%;
  }

  .contactform {
    margin-bottom: 50px;
  }

  .contactdata__left a {
    font-size: 20px;
  }

  .contactform__title {
    font-size: 40px;
    margin-bottom: 30px;
  }

  .textflex__inner a {
    font-size: 20px;
  }

  .offerlist__item ul.accordion-list li div.answer p {
    font-size: 16px;
    font-weight: 400;
  }

  .offerlist__item ul.accordion-list li .accordion-list__header img {
    opacity: 1;
  }

  .offerlist {
    background: var(--grey);
    padding: 60px 0 80px;
  }

  .offerlist__title {
    padding: 0 20px 40px;
  }

  .footer__bottom,
  .footer__bottom-list {
    flex-direction: column;
  }

  .footer__bottom {
    padding-top: 60px;
  }

  .footer__bottom-list li {
    margin-bottom: 30px;
  }

  .footer__bottom-list li:last-child {
    margin-bottom: 0;
  }

  .footer__bottom-right {
    margin-top: 40px;
  }
}

@media (max-width: 700px) {
  .additional__item {
    max-width: 250px;
  }
}

@media (max-width: 685px) {
  .tabslist__item-left {
    max-width: 250px;
  }

  .introsteam__right .allteam__item-top {
    height: 270px;
  }
}

@media (max-width: 665px) {
  .counter__item {
    max-width: 271px;
  }

  .contaform__inner-right {
    max-width: 200px;
    font-size: 12px;
    line-height: 16px;
  }

  .contactdata__wrapper {
    flex-wrap: wrap;
  }

  .contactdata__left {
    margin-bottom: 30px;
  }

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

@media (max-width: 615px) {
  .industry__item {
    max-width: 240px;
  }

  .industry__item:nth-child(odd) {
    margin-right: 15px;
  }
}

@media (max-width: 605px) {
  .counter__item {
    max-width: 250px;
  }
}

@media (max-width: 600px) {
  .footer__left {
    margin-right: 20px;
  }

  .additional__item {
    max-width: 238px;
  }
}

@media (max-width: 576px) {
  .footer__wrapper {
    flex-wrap: wrap;
  }

  .footer__right,
  .footer__left {
    margin-right: 0;
  }

  .footer__left {
    margin-bottom: 40px;
  }

  .footer__center-wrapper {
    margin-bottom: 40px;
  }

  .footer__right .footer__right-list {
    margin-top: 30px;
  }

  .footer__bottom {
    padding-top: 60px;
  }

  .footer {
    padding: 60px 0 70px;
  }

  .footer__bottom-list li,
  .footer__bottom-list {
    margin-right: 25px;
  }

  .intro__title {
    font-size: 45px;
    font-weight: 600;
    text-align: left !important;
    line-height: 60px;
    padding: 0;
  }

  .intro {
    min-height: 600px;
  }

  .intro__inner {
    min-height: 580px;
  }

  .about-wrapper {
    flex-wrap: wrap;
  }

  .about-left {
    margin-right: 0;
    margin-bottom: 21px;
  }

  .about-left__title {
    font-size: 18px;
  }

  .about-right__text {
    margin-bottom: 40px;
  }

  .btn.rounded::before,
  .btn-transparent.rounded::before {
    width: 100%;
  }

  .accordion-list__header {
    flex-wrap: wrap;
  }

  ul.accordion-list li .accordion-list__header h3 {
    margin-right: 0;
    margin-bottom: 17px;
  }

  .accordion-list__header p {
    font-size: 16px;
    margin-right: 0;
  }

  .maintext__wrapper {
    flex-wrap: wrap;
  }

  .maintext__left {
    max-width: 700px;
    margin-right: 0;
    margin-bottom: 18px;
  }

  .accordion-list__header img {
    position: absolute;
    top: 35px;
    right: 20px;
  }

  .accordion-list__link {
    display: block;
    color: #5f91d3;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    margin-top: 60px;
  }

  .accordion-list__header {
    padding-bottom: 60px;
  }

  .accordion-list li.active .accordion-list__link {
    display: none;
  }

  .accordion-list li .accordion-list__header>img {
    opacity: 0;
  }

  .accordion-list li.active .accordion-list__header>img {
    opacity: 1;
  }

  .help__item {
    padding: 40px;
  }

  .answer__inner {
    height: 450px;
  }

  .additional__item {
    max-width: 700px;
    margin-right: 0;
  }

  .additional__item:nth-child(odd) {
    margin-right: 0;
  }

  .industry__item {
    max-width: 600px;
    margin-right: 0;
  }

  .industry__item:nth-child(odd) {
    margin-right: 0;
  }

  .team {
    height: 500px;
  }

  .team__title {
    font-size: 70px;
  }

  .newsletter {
    background-image: unset !important;
    background: var(--light-blue);
  }

  .newsletter>.overlay {
    display: none;
  }

  .newsletter__inner {
    position: unset;
    transform: none;
  }

  .newsletter__inner>h3 {
    display: none;
  }

  .newsletter__inner-wrapper {
    display: block;
    height: 288px;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 50px;
  }

  .newsletter__inner-wrapper>h3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0;
    z-index: 10;
  }

  .newsletter {
    height: unset;
    padding-bottom: 150px;
  }

  .form__inputs {
    background: transparent;
    padding: 0;
    margin-bottom: 16px;
  }

  .chekbox__wrapper {
    align-items: unset;
  }

  .form__newsletter {
    position: relative;
  }

  .form__inputs input[type="submit"] {
    position: absolute;
    bottom: -90px;
    border: 1px solid var(--white);
    max-width: unset;
    border-radius: 50px;
    color: var(--white);
    text-align: center;
    height: 40px;
    padding-bottom: 0;
    background: none;
    background-image: none !important;
    width: 92%;
    right: 20px;
  }

  .submitBtn:after {
    display: none;
  }

  .form__inputs input[type="email"] {
    color: var(--white);
  }

  .form__inputs input {
    border-bottom: 1px solid var(--white);
  }

  .form__inputs input::placeholder {
    color: rgba(255, 255, 255, 0.6);
  }

  .additional__item:nth-child(4n) {
    margin-right: 0;
  }

  .counter__item-num,
  .counter__item-head span {
    font-size: 30px;
  }

  .counter__item-text {
    font-size: 20px;
    line-height: 28px;
  }

  .counter__item {
    max-width: 200px;
  }

  .teambg__wrapper {
    flex-wrap: wrap;
  }

  .teambg__left,
  .teambg__right {
    position: unset;
  }

  .teambg {
    height: 500px;
  }

  .teambg__wrapper {
    padding: 120px 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 300px;
  }

  .teambg__left,
  .teambg__right {
    margin-right: 0;
    padding: 0 20px;
  }

  .tabslist__item-title {
    font-size: 20px;
    line-height: 24px;
  }

  .tabslist__item-wrapper {
    flex-wrap: wrap;
    padding: 25px 20px;
  }

  .tabslist__item-left {
    max-width: 500px;
    margin-bottom: 20px;
  }

  .tabs {
    margin-bottom: 50px;
  }

  .tabslist {
    margin-bottom: 50px;
  }

  .allindustry__item {
    max-width: 600px;
    height: 100px;
  }

  .allindustry__item:nth-child(odd) {
    margin-right: 0;
  }

  .allteam__item-top {
    height: 200px;
  }

  .allteam__item-title {
    font-size: 20px;
  }

  .allteam__item-text {
    font-size: 16px;
  }

  .allteam__item-content {
    height: 150px;
  }

  .allteam__item:hover .allteam__item-content__inner {
    padding: 20px 10px;
    transition: all 0.3s ease;
  }

  .allteam__item-content__inner {
    padding: 20px 10px;
  }

  .introwhite__left-smtitle {
    font-size: 35px;
    line-height: 45px;
    margin-bottom: -40px;
  }

  .singleimage {
    height: 400px;
  }

  .mainexp__wrapper {
    flex-wrap: wrap;
    padding-bottom: 40px;
  }

  .mainexp__left h4 {
    font-size: 24px;
  }

  .mainexp__left {
    margin-bottom: 20px;
  }

  .mainexp__right {
    padding-left: 20px;
  }

  .mainexp__right ul li {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .introsteam__right .allteam__item-top {
    height: 230px;
  }

  .introsteam__left {
    padding: 20px;
  }

  .introsteam__left-title {
    font-size: 24px;
  }

  .introsteam__left-subtitle {
    font-size: 18px;
  }

  .introsteam__left-links a {
    white-space: pre-wrap;
    white-space: -moz-pre-wrap;
    white-space: -pre-wrap;
    white-space: -o-pre-wrap;
    word-wrap: break-word;
  }

  .introsteam__left {
    max-width: 250px;
  }

  .singleteam__wrapper {
    flex-wrap: wrap;
  }

  .singleteam__left-content h3 {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 25px;
  }

  .singleteam__left-content p {
    font-size: 16px;
    padding-bottom: 30px;
  }

  .singleteam__left-spec h2 {
    font-size: 30px;
    padding-bottom: 35px;
  }

  .singleteam__left-inner a {
    font-size: 20px;
  }

  .singleteam__left-inner {
    padding: 25px 0;
  }

  .singleteam__right {
    text-align: left;
    max-width: 600px;
    margin-top: 30px;
  }

  .singleblog__right-title {
    font-size: 24px;
  }

  .blogpage-title {
    font-size: 40px;
    padding-bottom: 25px;
  }

  .blogpage {
    padding: 80px 0 75px;
  }

  .contactform__title {
    font-size: 35px;
  }

  .form-group input,
  .form-group textarea {
    padding: 15px 0;
  }

  .contactform {
    margin-bottom: 0;
  }

  .additional__item:nth-child(3n) {
    margin-right: 0;
  }

  .additional__items {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 525px) {
  .footer__bottom {
    flex-direction: column;
  }

  .footer__bottom-left {
    margin-bottom: 38px;
  }
}

@media (max-width: 485px) {
  .introsteam__left {
    max-width: 200px;
  }
}

@media (max-width: 475px) {
  .footer__center-wrapper {
    flex-direction: column;
  }

  .footer__center,
  .footer__bottom-list {
    margin-right: 0;
  }

  .footer__bottom-list {
    flex-direction: column;
  }

  .footer__bottom-list li {
    margin-bottom: 28px;
    margin-right: 0;
  }

  .footer__bottom-list li:last-child {
    margin-bottom: 0;
  }

  .form__inputs input[type="submit"] {
    width: 91%;
  }

  .counter__item {
    max-width: 500px;
    width: 100%;
    margin-right: 0;
  }

  .counter__item:nth-child(odd) {
    margin-right: 0;
  }
}

@media (max-width: 425px) {
  .form__inputs input[type="submit"] {
    width: 89%;
  }

  .nextpage__center-title {
    font-size: 25px;
  }

  .nextpage__left-title {
    font-size: 18px;
    line-height: 26px;
  }

  .introsteam__left {
    max-width: 150px;
  }

  .introsteam__left-title {
    font-size: 20px;
  }

  .introsteam__left-subtitle {
    font-size: 16px;
    line-height: 22px;
  }

  .introsteam__left-links li a {
    font-size: 14px;
  }

  .contactdata__right-items {
    flex-wrap: wrap;
  }

  .contactdata__right-item {
    margin-bottom: 30px;
    margin-right: 0;
  }

  .contactdata__right-item:last-child {
    margin-bottom: 0;
  }
}

@media (max-width: 375px) {
  .tabs li {
    max-width: 125px;
  }

  .tabs {
    height: 44px;
  }
}

.nav-links .nav-previous {
  display: none;
}

.faq_wrapper {
  width: 100%;
}

.form .btn.rounded::before {
  height: 38px;
}

.point-article {
  display: flex;
  align-items: center;
}

.point-article h3 {
  margin-right: 50px;
  max-width: 300px;
  width: 100%;
}

.point-article p {
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  max-width: 300px;
  width: 100%;
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-name: fadeInBottom
}

@keyframes fadeInBottom {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }

  to {
    opacity: 1
  }
}

@media (max-width: 1350px) {
  .point img {
    margin-right: 30px;
  }
}

@media (max-width: 1150px) {
  .point article.point-article h3 {
    font-size: 45px;
  }

  .point img {
    max-width: 400px;
    max-height: 450px;
  }
}

@media (max-width: 992px) {
  .point article.point-article h3 {
    font-size: 35px;
  }

  .point-article h3 {
    margin-right: 50px;
    max-width: 180px;
    width: 100%;
  }
}

@media (max-width: 850px) {
  .point img {
    max-width: 300px;
    max-height: 350px;
  }
}

@media (max-width: 768px) {
  .point article.point-article h3 {
    margin-right: 10px;
    max-width: 150px;
    width: 100%;
    font-size: 24px;
  }

  .point-article p {
    font-size: 16px;
    line-height: 21px;
  }

  .point img {
    max-width: 250px;
    max-height: 300px;
  }
}

@media (max-width: 630px) {
  .point img {
    max-width: 200px;
    max-height: 250px;
  }
}

@media (max-width: 576px) {

  .point article.point-article {
    flex-basis: 100%;
    justify-content: center;
  }
}

@media (max-width: 425px) {
  .point article.point-article {
    flex-direction: column;
  }

  .point article.point-article h3 {
    margin-bottom: 20px;
    text-align: center;
    margin-right: 0;
  }

  .point article.point-article p {
    text-align: center;
  }
}

.ourteam__slider .splide__slide.is-active .ourteam__slide-right img {
  height: 100%;
  max-height: 500px;
  position: absolute;
  bottom: 0;
  left: 15%;
  width: 100%;
}

.ourteam__wrapper {
  padding-top: 120px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
}

.ourteam__wrapper-left h2 {
  font-size: 160px;
  font-family: "BasicCircleMedium", sans-serif;
  font-weight: 500;
  line-height: 100%;
}

.ourteam__slide-left {
  padding-top: 100px;
}

.ourteam__slide-subtitle {
  font-family: "BasicCircleRegular", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
}

.ourteam__slider .splide__arrow--prev {
  position: absolute;
  top: 0;
  right: 76px;
  left: unset;
  width: 56px;
  height: 56px;
  background: transparent;
  border: 1px solid var(--light-blue);
  border-radius: 50%;
}

.ourteam__slider .splide__arrow--prev img {
  transform: rotate(-180deg);
}

.ourteam__slider .splide__arrow--next {
  position: absolute;
  top: 0;
  right: 0;
  width: 56px;
  height: 56px;
  background: transparent;
  border: 1px solid var(--light-blue);
  border-radius: 50%;
}

.splide__arrows {
  max-width: 1340px;
  width: 100%;
  height: 56px;
  position: absolute;
  top: 0;
  right: unset;
}

@media (max-width: 1450px) {
  .ourteam__wrapper-left h2 {
    font-size: 120px;
  }
}

@media (max-width: 1300px) {
  .ourteam__slider .splide__slide.is-active .ourteam__slide-right {
    max-height: 440px;
    width: 100%;
    height: 100%;
    max-width: 465px;
    display: flex;
    justify-content: flex-end;
  }

  #splide {
    height: 450px;
  }

  .ourteam__slide-right {
    max-height: 400px;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: flex-end;
  }

  /*.ourteam__slide-right img {*/
  /*  transform: scale(0.9);*/
  /*  position: absolute;*/
  /*  bottom: -20px;*/
  /*}*/
  .ourteam__slide-left {
    margin-right: 30px;
  }
}

@media (max-width: 1050px) {

  /*.ourteam__slide-right img {*/
  /*  transform: scale(0.8);*/
  /*  position: absolute;*/
  /*  bottom: -41px;*/
  /*}*/
  .ourteam__slide-left {
    margin-right: 45px;
  }
}

@media (max-width: 992px) {
  .ourteam__slider .splide__slide.is-active {
    max-width: 1000px;
  }

  .ourteam__slider .splide__slide.is-active img {
    transform: scale(1.05);
    object-fit: contain;
  }

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

  .ourteam__wrapper-left h2 {
    font-size: 80px;
  }
}

@media (max-width: 768px) {
  .ourteam__wrapper-left h2 {
    font-size: 50px;
  }

  .ourteam__wrapper {
    align-items: center;
  }
}

@media (max-width: 695px) {
  .ourteam__slider .splide__slide.is-active .ourteam__slide-left {
    max-width: 200px;
  }

  .ourteam__slider .splide__slide.is-active img {
    object-fit: cover;
  }
}

@media (max-width: 576px) {
  .ourteam__slide-title {
    font-size: 20px;
    line-height: 28px;
  }

  .ourteam__slide-subtitle {
    font-size: 16px;
  }

  #splide {
    height: 360px;
  }

  .ourteam__slider .splide__arrow--prev {
    left: 20px;
    height: 40px;
    width: 40px;
  }

  .ourteam__slider .splide__arrow--next {
    left: 66px;
    height: 40px;
    width: 40px;
  }

  .ourteam__wrapper {
    flex-wrap: wrap;
    flex-direction: column;
  }

  .ourteam__wrapper-left {
    margin-bottom: 30px;
  }
}

.referenses {
  background: var(--light-blue);
  padding: 120px 0 150px;
}

.references__title {
  font-family: "BasicCircleMedium", sans-serif;
  font-size: 60px;
  font-weight: 500;
  line-height: 66px;
  color: var(--white);
}

.referenses__header {
  margin-bottom: 120px;
}

.referenses__slider,
.referenses__slider .splide__track {
  overflow: visible;
  clip-path: inset(-100vw -100vw -100vw 0);
}

.referenses__slider .splide__slide .referenses__item {
  transition: all .3s ease;
}

.referenses__slider .splide__slide.is-prev .referenses__item {
  height: 326px;

}

.referenses__item {
  max-width: 305px;
  width: 100%;
  height: 230px;
  max-height: 100%;
  position: relative;
  transition: all .3s ease;
  margin-bottom: 40px;
}


.referenses__item:after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--grey);
  background-repeat: no-repeat;
  background-position: center right 20px;
  background-size: contain;
  width: 100%;
  height: 100%;
  z-index: -2;
  opacity: 1;
}


.referenses__item-link {
  color: var(--blue);
  height: 100%;
}

.referenses__item-inner {
  padding: 30px;
  height: 170px;
}

.referenses__slider .splide__arrows {
  bottom: 20px;
  top: unset;
}

.referenses__slider {
  height: 366px;
}

.referenses__slider .splide__arrow--prev {
  left: 0;
}

.referenses__slider .splide__arrow--prev {
  position: absolute;
  top: 0;
  left: 0;
  width: 56px;
  height: 56px;
  background: transparent;
  border: 1px solid var(--white);
  border-radius: 50%;
}

.referenses__slider .splide__arrow--prev img {
  transform: rotate(-180deg);
}

.referenses__slider .splide__arrow--prev img,
.referenses__slider .splide__arrow--next img {
  filter: brightness(0) invert(1);
}

.referenses__slider .splide__arrow--next {
  position: absolute;
  top: 0;
  left: 76px;
  width: 56px;
  height: 56px;
  background: transparent;
  border: 1px solid var(--white);
  border-radius: 50%;
}

.referenses__item .additional__item-more:before {
  position: absolute;
  content: '';
  width: 0%;
  bottom: -1px;
  height: 1px;
  background: var(--light-blue);
  transition: all .3s ease;
}

.referenses__item .additional__item-more:hover:before {
  width: 100%;
  transition: all .3s ease;
}

@media (max-width: 768px) {
  .referenses__header {
    margin-bottom: 50px;
  }

  .referenses {
    background: var(--light-blue);
    padding: 50px 0 50px;
  }

  .references__title {
    font-size: 25px;
    font-weight: 500;
    line-height: 30px;
    color: var(--white);
  }

}

@media (max-width: 576px) {
  .referenses__item {
    max-width: 605px;
  }

  .referenses__slider .splide__arrow--prev,
  .referenses__slider .splide__arrow--next {
    height: 40px;
    width: 40px;
  }

  .referenses__slider .splide__arrow--next {
    left: 56px;
  }
}

.fancybox__thumbs {
  display: none !important;
}

.notfound__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.notfound__left {
  max-width: 600px;
  width: 100%;
}

.notfound__right {
  max-width: 600px;
  width: 100%;
}

.notfound,
.defaultpage {
  padding: 150px 0;
}

.notfound__right p {
  margin-bottom: 20px;
}

@media (max-width: 576px) {
  .notfound__wrapper {
    flex-direction: column;
    padding: 0 20px;
  }

  .notfound,
  .defaultpage {
    padding: 100px 0 50px;
  }
}

.defaultpage p {
  font-family: "BasicCircleRegular", sans-serif;
  font-size: 18px;
  color: var(--blue);
  font-weight: 400;
  padding-bottom: 50px;
}

.defaultpage h1 {
  color: var(--blue);
  font-size: 60px;
  font-family: "BasicCircleRegular", sans-serif;
  font-weight: 500;
  line-height: 100%;
  margin-bottom: 50px;
}

.defaultpage h2 {
  font-family: "BasicCircleRegular", sans-serif;
  font-size: 46px;
  color: var(--blue);
  font-weight: 500;
  line-height: 100%;
  margin-bottom: 40px;
}

.defaultpage h3 {
  font-family: "BasicCircleRegular", sans-serif;
  font-size: 30px;
  color: var(--blue);
  font-weight: 500;
  line-height: 100%;
  margin-bottom: 37px;
}

.defaultpage h4 {
  font-family: "BasicCircleRegular", sans-serif;
  font-size: 26px;
  color: var(--blue);
  font-weight: 500;
  line-height: 100%;
  margin-bottom: 37px;
}

.defaultpage h5 {
  font-family: "BasicCircleRegular", sans-serif;
  font-size: 22px;
  color: var(--blue);
  font-weight: 500;
  line-height: 100%;
  margin-bottom: 37px;
}

.defaultpage h6 {
  font-family: "BasicCircleRegular", sans-serif;
  font-size: 20px;
  color: var(--blue);
  font-weight: 500;
  line-height: 100%;
  margin-bottom: 37px;
}

.defaultpage ul,
.defaultpage ol {
  padding-left: 20px;
  margin-bottom: 50px;
}

.defaultpage ul li,
.defaultpage ol li {
  font-family: "BasicCircleRegular", sans-serif;
  font-size: 18px;
  color: var(--blue);
  font-weight: 400;
  margin-bottom: 18px;
}

.defaultpage ul li:last-child,
.defaultpage ol li:last-child {
  margin-bottom: 0;
}

.defaultpage img {
  width: 100%;
  object-fit: contain;
  margin-bottom: 80px;
}

@media (max-width: 768px) {
  .defaultpage h1 {
    color: var(--blue);
    font-size: 30px;
    margin-bottom: 30px;
  }

  .defaultpage h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .defaultpage h3 {
    font-size: 25px;
    margin-bottom: 18px;
  }

  .defaultpage h4 {
    font-size: 22px;
    margin-bottom: 15px;
  }

  .defaultpage h5 {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .defaultpage h6 {
    font-size: 18px;
    margin-bottom: 12px;
  }
}

.menu__social img {
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
}

.menu__social,
.polylang_langswitcher {
  list-style: none;
}

.navbar__inner {
  display: flex;
  align-items: center;
}

.menu__social {
  margin-right: 15px;
}

.menu__social li img {
  max-width: 17px;
}

.polylang_langswitcher option,
.polylang_langswitcher select {
  text-transform: uppercase;
  outline: none;
  background: transparent;
}

.pll-switcher-select {
  background: transparent;
  color: #fff;
  border: none;
}

.header:hover .pll-switcher-select {
  color: var(--blue);
  -webkit-transition: all 0.01s ease;
  -moz-transition: all 0.01s ease;
  -o-transition: all 0.01s ease;
  transition: all 0.01s ease;
  /*-webkit-transition-delay: 0.3s;*/
  /*transition-delay: 0.3s;*/
}

.header.header--white .pll-switcher-select,
.header.header--dark .pll-switcher-select,
body.singlepost .header .pll-switcher-select,
.header.header--blog .pll-switcher-select {
  color: var(--blue);
}

.header .menu__social li img {
  filter: none;
  -webkit-transition: all 0.01s ease;
  -moz-transition: all 0.01s ease;
  -o-transition: all 0.01s ease;
  transition: all 0.01s ease;
  /*-webkit-transition-delay: 0.1s;*/
  /*transition-delay: 0.1s;*/
}

.header:hover .menu__social li img,
.header.header--dark .menu__social li img,
.header.header--white .menu__social li img,
body.singlepost .menu__social li img,
.header.header--blog .menu__social li img {
  filter: brightness(0) saturate(100%) invert(9%) sepia(21%) saturate(1908%) hue-rotate(165deg) brightness(96%) contrast(97%);
  -webkit-transition: all 0.01s ease;
  -moz-transition: all 0.01s ease;
  -o-transition: all 0.01s ease;
  transition: all 0.01s ease;
  /*-webkit-transition-delay: 0.3s;*/
  /*transition-delay: 0.3s;*/
}

@media (max-width: 992px) {
  .navbar__inner {
    flex-wrap: wrap;
  }

  .header .menu>.menu-item>a {
    border-bottom: none;
  }

  .header .menu>.menu-item>.dropdown>.sub-menu>.menu-item {
    margin-bottom: 15px;
  }

  .menu__social {
    padding-left: 30px;
  }

  .header .menu>.menu-item>a {
    padding-left: 0;
  }

  .menu__social,
  .language__switcher {
    margin-top: 20px;
  }
}

.navbar__inner-smlogo,
.language__switcher-sm {
  display: none;
}

@media (max-width: 992px) {
  .header:hover .opened-menu span {
    background: var(--blue);
    transition: all 0.01s;
    transition-delay: 0.3s;
  }

  .header.header--dark .opened-menu span,
  .header.header--white .opened-menu span,
  .header.header--blog .opened-menu span,
  body.singlepost .header .opened-menu span {
    background: var(--blue);
  }

  .navbar__inner-smlogo {
    display: block;
    max-width: 124px;
  }

  .navbar__inner-smlogo .brand img {
    filter: brightness(0) saturate(100%) invert(14%) sepia(39%) saturate(6649%) hue-rotate(208deg) brightness(98%) contrast(99%);
  }

  .navbar__inner-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px 15px 20px;
    border-bottom: 1px solid var(--grey);
  }

  .language__switcher-sm,
  .polylang_langswitcher-sm {
    display: flex;
    justify-content: flex-end;
  }

  .polylang_langswitcher-sm {
    list-style: none;
    padding-right: 20px;
    padding-top: 20px;
  }

  .polylang_langswitcher-sm li a {
    text-transform: uppercase;
    font-size: 14px;
    text-decoration: none;
    color: #6D6D72;
  }

  .polylang_langswitcher-sm li.current-lang a {
    color: var(--blue);
  }

  .polylang_langswitcher-sm li {
    margin-right: 20px;
  }

  .polylang_langswitcher-sm li:last-child {
    margin-right: 0;
  }

  .header .menu {
    margin-top: 0.5rem;
  }

  .language__switcher {
    display: none;
  }
}

@media (max-width: 1800px) {
  .ourteam__slide-right img {}
}

@media (max-width: 1370px) {
  .ourteam__slider .splide__arrows {
    right: 30px !important;
  }
}

@media (max-width: 1230px) {
  .ourteam__slider .splide__slide.is-active img {
    /* transform: scale(1.05); */
    /* position: unset; */
    height: 100%;
    max-height: 75%;
    position: absolute;
    bottom: 0;
    left: 15%;
    width: 100%;
  }

  /*.ourteam__slide-right img {*/
  /*  transform: scale(1);*/
  /*  max-height: 250px;*/
  /*}*/
  .ourteam__slider .splide__slide.is-active img {
    max-height: 75%;
    transform: unset;
    object-fit: contain;
  }
}

@media (max-width: 1100px) {
  .ourteam__slider .splide__slide.is-active img {
    left: 35%;
  }
}

@media (max-width: 576px) {
  .ourteam__slider .splide__arrows {
    right: unset !important;
  }

  .ourteam__slider .splide__arrows {
    left: 0;
  }
}

@media (max-width: 1450px) {
  .applybg__inner {
    bottom: unset;
    left: 50%;
    right: unset;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

@media (max-width: 768px) {
  .applybg__inner-title {
    font-size: 25px;
    line-height: 36px;
  }

  .applybg__wrapper,
  .applybg {
    height: 600px;
  }

  .applybg__inner {
    position: unset;
    top: unset;
    bottom: unset;
    left: unset;
    right: unset;
    transform: unset;
  }

  .applybg__inner {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
  }

  .applybg__inner-title {
    padding: 0 20px;
  }

  .additional__item {
    max-width: unset;
    margin-bottom: 15px;
    height: 155px;
  }
}

@media (max-width: 576px) {
  .point {
    flex-direction: column;
    top: 60px !important;
  }

  .point img {
    margin-right: 0;
  }

  .applybg__wrapper,
  .applybg {
    height: 450px;
  }

  .applybg__inner-title {
    font-size: 20px;
    line-height: 28px;
  }

  .additional .additional__items {
    grid-template-columns: repeat(1, 1fr);
  }

  .industry .additional__items,
  .allindustry .additional__items {
    grid-template-columns: repeat(1, 1fr);
  }

  .industry .industry__items {
    display: inline-block;
    width: 100%;
  }
}

.answer .help__item-inner ul li:before {
  position: absolute;
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
  top: 10px;
  left: -18px;
}

@media (max-width: 992px) {
  .industry__right {
    max-width: 1000px;
  }

  .industry__item {
    max-width: 500px;
  }
}

.ourteam__slide-inner {
  transform: scale(0.6);
  transform-origin: bottom;
  transition: all .5s ease;
}

#splide {
  height: 450px;
}

#splide .splide__slide.is-active .ourteam__slide-inner {
  transform: scale(1);
  transition: all .5s ease;
}

#splide .splide__slide.is-active .ourteam__slide-right img {
  transform: scale(1);
  object-fit: contain;
  transition: all .5s ease;
}

#splide .ourteam__slider .splide__slide.is-active .ourteam__slide-left {
  transform: translate(0, 0);
  transition: all .5s ease;
}

#splide .ourteam__slider .splide__slide .ourteam__slide-left {
  transform: translate(-100%, -100%);
  transition: all .5s ease;
}

.ourteam__slider .splide__slide.is-active img.btn-main-icon {
  position: absolute;
}

#splide .ourteam__slider .splide__slide.is-active img.btn-main-icon {
  max-width: 17px;
  position: absolute;
}

#splide .btn:before {
  height: 38px;
}

@media (max-width: 1230px) {
  .ourteam__slider .splide__slide.is-active img.btn-main-icon {
    position: absolute;
    height: unset;
    max-width: 20px;
    left: 28px;
  }

  #splide .ourteam__slider .splide__slide.is-active img.btn-main-icon {
    max-width: 17px;
    position: absolute;

  }
}

@media (max-width: 1100px) {
  .ourteam__slider .splide__slide.is-active .ourteam__slide-right img {
    height: 100%;
    max-height: 380px;
    position: absolute;
    bottom: 0;
    left: 15%;
    width: 100%;
  }
}

@media (max-width: 1050px) {
  #splide .splide__slide.is-active .ourteam__slide-right img {
    transform: scale(1);
    object-fit: contain;
    transition: all .5s ease;
    transform-origin: bottom;
  }
}

@media (max-width: 992px) {
  .ourteam__slide-right img {
    max-height: 320px;
  }

  .ourteam__slider .splide__slide.is-active .ourteam__slide-right img {
    left: 35%;
  }

  #splide .splide__slide.is-active .ourteam__slide-right img {
    object-fit: contain;
  }

  .ourteam__slider .splide__slide.is-active .ourteam__slide-right img {
    max-height: 300px;
  }

  .ourteam__slider .splide__slide.is-active .ourteam__slide-right {
    max-height: 350px;
  }

  .ourteam__slide-title {
    font-size: 25px;
    line-height: 30px;
    margin-bottom: 10px;
  }

  .ourteam__slider .splide__slide.is-active .ourteam__slide-left {
    justify-content: space-around;
    margin-bottom: 0px;
  }
}

.offerlist ul.accordion-list li:last-child .accordion-list__header {
  border-bottom: unset;
}

.offerlist__item ul.accordion-list li div.answer {
  padding-bottom: 70px;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {}

.wpcf7 form .wpcf7-response-output {
  color: #b94a48;
  background-color: #f2dede;
  border: 1px solid #eed3d7;
  padding: 30px 40px !important;
  text-shadow: 0 1px 0 rgba(255, 255, 255, .5);
  margin: 50px 0 0;
  font-size: 18px;
  margin: 1em 115px 1em !important;
  border: none !important;
  border-color: none !important;
}

.wpcf7 form.sent .wpcf7-response-output {
  border-color: none !important;
  background-color: #cefad0;
  color: #008631;
}

@media (max-width: 576px) {
  .wpcf7 form .wpcf7-response-output {
    margin: 0em 20px 1em !important;
  }
}

@media (max-width: 576px) {
  .footer__center-wrapper {
    flex-direction: column;
  }

  .footer__center {
    margin-bottom: 40px;
  }

  .footer__center:last-child {
    margin-bottom: 0;
  }

  .footer__right>img {
    display: none;
  }

  .footer__right .footer__right-list {
    margin-top: 0;
  }

  .footer__bottom-list {
    flex-direction: column;
  }

  .footer__bottom-left {
    margin-bottom: 40px;
  }

  .footer__bottom .footer__bottom-list li {
    margin-bottom: 30px;
  }

  .footer__bottom .footer__bottom-list li:last-child {
    margin-bottom: 0;
  }

  .footer__bottom {
    flex-direction: column;
  }
}

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.page-numbers {
  font-family: "BasicCircleMedium";
  width: 40px;
  height: 40px;
  font-size: 18px;
  font-weight: 400;
  color: var(--light-blue);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.page-numbers.current {
  border-radius: 50%;
  font-weight: 500;
  color: #fff;
  background-color: var(--light-blue);
}

@media (max-width: 576px) {
  .singleteam__left-inner {
    padding: 0;
  }

  .singleteam__left-item {
    position: relative;
    height: 80px;
  }
}

/* PRELOADER CSS */
.page-loader {
  width: 100%;
  height: 100vh;
  position: absolute;
  background: #F0F0F0;
  z-index: 1000000;
}

.page-loader .page-loader__logo {
  color: #666;
  text-align: center;
  top: 40%;
  position: relative;
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: center;
}

/* SPINNER ANIMATION */
.spinner {
  position: relative;
  top: 35%;
  width: 80px;
  height: 80px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 100%;
  -webkit-animation: sk-scaleout 1s infinite ease-in-out;
  animation: sk-scaleout 1s infinite ease-in-out;
}

@-webkit-keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0);
  }

  100% {
    -webkit-transform: scale(1);
    opacity: 0;
  }
}

@keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

.blog__items ul.splide__list {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1450px) {
  .blog__items .splide__slide {
    max-width: unset;
  }
}

@media (max-width: 940px) {
  .blog__items ul.splide__list {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blog__items ul.splide__list {
    display: flex !important;
  }
}

.polylang_langswitcher select {
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-position: center right;
  background-repeat: no-repeat;
  text-indent: 0.01px;
  text-overflow: "";
  padding-right: 18px;
  cursor: pointer;
  font-family: "BasicCircleMedium", sans-serif;
  font-weight: 500;
}

.polylang_langswitcher {
  position: relative;
}

.polylang_langswitcher:after {
  position: absolute;
  top: 10px;
  right: 0;
  content: '';
  width: 10px;
  height: 6px;
  color: #fff;
  filter: brightness(0) invert(1);
  background-repeat: no-repeat;
  background-size: contain;
}

.header.header--dark .polylang_langswitcher:after,
.header.header--white .polylang_langswitcher:after,
.header.header--blog .polylang_langswitcher:after,
body.singlepost .header .polylang_langswitcher:after {
  filter: none;
}

.accordion-list li .accordion-list__bg {
  background-size: cover;
  height: 182px;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  transition: all 1s ease;
  width: 100%;
  transition-delay: 0.7s;
  background-repeat: no-repeat;
}

.accordion-list li.active .accordion-list__bg {
  height: 560px;
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease;
}

.practice .accordion-list__header {
  align-items: flex-start;
}

.practice ul.accordion-list li .accordion-list__header>img {
  width: 44px;
  height: 44px;
}

.practice .accordion-list li .accordion-list__header {
  min-height: 182px;
  transition: all 1.5s ease;
  transition-delay: 0.5s;
}

.practice .accordion-list li.active .accordion-list__header {
  min-height: 560px;
  transition: all 1s ease;
}

@media (max-width: 1100px) {
  .accordion-list li.active .accordion-list__bg {
    background-size: cover;
    background-repeat: no-repeat;
    height: 450px;
  }

  .practice .accordion-list li.active .accordion-list__header {
    min-height: 450px;
  }
}

@media (max-width: 768px) {
  .accordion-list li.active .accordion-list__bg {
    height: 350px;
  }

  .practice .accordion-list li.active .accordion-list__header {
    min-height: 350px;
  }
}

@media (max-width: 576px) {
  .accordion-list li.active .accordion-list__bg {
    height: 300px;
    transition-delay: 0s;
  }

  .accordion-list li .accordion-list__bg {
    transition-delay: 0s;
  }

  .practice .accordion-list li.active .accordion-list__header {
    min-height: auto;
  }

  .practice ul.accordion-list li .accordion-list__header>img {
    width: 25px;
    height: 25px;
  }

  .accordion-list__header {
    padding-bottom: 40px;
  }

  .accordion-list__link {
    margin-top: 40px;
  }
}

.responsible__title {
  font-family: "BasicCircleMedium";
  font-size: 60px !important;
  font-weight: 500;
  line-height: 66px !important;
  color: #091D2C;
}

.single-praktyki .ourteam__wrapper,
.single-branze .ourteam__wrapper {
  padding-top: 0;
}

#splide.splide--fade ul.splide__list {
  justify-content: center;
}

#splide.splide--fade .splide__arrows {
  display: none;
}

#splide.splide--fade .splide__list li {
  border: none;
}

@media (max-width: 576px) {
  .responsible__title {
    font-size: 35px !important;
    line-height: 40px !important;
    text-align: left !important;
  }

  .ourteam__slider #splide.splide--fade {
    margin-top: -70px;
  }
}

@media (max-width: 400px) {
  .ourteam__slide-left {
    padding-left: 10px;
    padding-top: 0;
  }

  .ourteam__slide-left {
    margin-right: 0px;
  }
}

.referenses .additional__item-link {
  padding: 30px;
}

@media (max-width: 992px) {
  .footer__center-wrapper {
    flex-direction: column;
  }

  .footer__center {
    margin-right: 0;
  }

  .footer__center {
    margin-bottom: 30px;
  }

  .footer__center:last-child {
    margin-bottom: 0;
  }

  .footer__wrapper {
    justify-content: space-between;
  }

  .footer__center-wrapper {
    width: unset;
  }

  .industry .additional__items.paddinglp {
    padding: 0;
  }

  .accordion-list__header p {
    font-size: 16px;
  }
}

@media (max-width: 1200px) {
  .referenses__item {
    max-width: 400px;
  }
}

@media (max-width: 991px) {
  .referenses__item {
    max-width: 490px;
  }
}

@media (max-width: 768px) {
  .footer__wrapper {
    flex-direction: column;
  }

  .footer__left {
    margin-right: 0;
    margin-bottom: 30px;
  }

  .footer__center-wrapper {
    margin-bottom: 30px;
  }

  .footer__right-list {
    margin-top: 30px;
  }

  .practice ul.accordion-list li .accordion-list__header>img {
    width: 26px;
    height: 26px;
  }

  .allteam__items-inner ul {
    flex-direction: column;
    justify-content: center;
  }

  .allteam__item,
  .allteam__items li {
    margin-right: 0px;
    max-width: 800px;
  }

  .introsteam__wrapper {
    flex-direction: column;
  }

  .introsteam__wrapper .introsteam__left {
    order: 1;
  }

  .introsteam__right {
    max-width: 860px;
    width: 100%;
  }
}

.practice .accordion-list.accordion-list--mobile {
  display: none;
}

.allteam__items-inner ul {
  list-style: none;
}

@media (max-width: 576px) {
  .practice .accordion-list li .answer {
    display: none;
  }

  .practice .accordion-list.accordion-list--desktop {
    display: none;
  }

  .practice .accordion-list.accordion-list--mobile {
    display: block;
  }

  .blog .blog__content.paddinglp {
    padding: 0;
  }

  .industry__item {
    max-width: 600px;
  }

  .allteam__item-content {
    height: 100px;
  }

  .introsteam__left {
    max-width: 650px;
  }

  .introsteam__left-top {
    margin-bottom: 20px;
  }
}

.singleteam__right-mobile {
  display: none;
}

@media (max-width: 1200px) {
  .singleblog__wrapper {
    flex-direction: column;
  }

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

@media (max-width: 992px) {
  .singleteam__right-desktop {
    display: none;
  }

  .singleteam__right-mobile {
    display: block;
  }

  .singleteam__wrapper {
    flex-direction: column;
  }

  .singleteam__right.singleteam__right-mobile {
    text-align: left;
    margin-bottom: 60px;
  }

  .singleteam__left-content ul,
  .singleteam__left-content ol {
    margin-bottom: 0;
  }

  .singleteam__left {
    max-width: 1000px;
  }

  .help__items {
    flex-direction: column;
  }

  .help__item {
    max-width: 1000px;
    padding: 0;
  }

  .help__item-inner {
    padding: 40px 40px 60px;
  }

  .help__item:nth-child(odd) {
    margin-right: 0px;
    margin-bottom: 30px;
  }

  .single-praktyki .maintext__wrapper,
  .single-branze .maintext__wrapper {
    flex-direction: column;
  }

  .single-praktyki .maintext__wrapper .maintext__left,
  .single-branze .maintext__wrapper .maintext__left {
    margin-bottom: 30px;
  }

  .single-praktyki .maintext__wrapper .maintext__right-inner,
  .single-branze .maintext__wrapper .maintext__right-inner {
    max-width: 1000px;
    margin-bottom: 0;
  }

  .single-praktyki .mainexp__wrapper,
  .single-branze .mainexp__wrapper {
    flex-direction: column;
  }

  .mainexp__left {
    max-width: 1000px;
    width: 100%;
    margin-bottom: 30px;
  }

  .mainexp__right {
    max-width: 1000px;
    width: 100%;
    padding-left: 20px;
  }
}

@media (max-width: 1040px) {
  .header .menu>.menu-item {
    display: inline-block;
    margin: 0 25px 0 0;
  }
}

/*@media (max-width: 992px) {*/
/*  .header .menu > .menu-item > .dropdown .sub-menu {*/
/*    padding: 0;*/
/*  }*/
/*  .dropdown li.menu-item {*/
/*    height: 0;*/
/*    margin-bottom: 0;*/
/*  }*/
/*  .header .menu > .menu-item > .dropdown > .sub-menu > .menu-item {*/
/*    margin-bottom: 0;*/
/*  }*/
/*}*/

@media (max-width: 576px) {
  .navbar__inner .menu {
    display: flex;
    flex-direction: column;
  }
}

.blogpage__items ul li {
  max-width: 420px;
  width: 100%;
  margin-right: 40px;
}

.blogpage__items ul li:nth-child(3n) {
  margin-right: 0;
}

@media (max-width: 1450px) {
  .blogpage__items ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }

  .blogpage__items .blog__item {
    margin-bottom: 0;
  }

  .blogpage__items ul li {
    margin-right: 0;
  }
}

@media (max-width: 992px) {
  .blogpage__items ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .contactdata__wrapper {
    flex-direction: column;
  }

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

@media (max-width: 992px) {
  .contaform__inner-right {
    display: none;
  }

  .form-group__sm {
    display: block;
    max-width: 1000px;
    margin-bottom: 0;
  }

  .contaform__inner-left {
    margin-right: 0;
    max-width: 1000px;
  }
}

@media (max-width: 768px) {
  .offerlist__item ul.accordion-list li .accordion-list__header img {
    opacity: 0;
  }

}

@media (max-width: 650px) {
  .blogpage__items ul {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }

  .blogpage__items ul li {
    max-width: 700px;
  }

  .contactdata__right-items {
    flex-direction: column;
  }

  .contactdata__right-item {
    margin-bottom: 30px;
  }

  .contactdata__right-item:last-child {
    margin-bottom: 0;
  }
}

@media (max-width: 576px) {
  .referenses__slider .splide__slide.is-prev .referenses__item {
    height: 230px;
  }
}

.offerlist>.container {
  padding: 0 20px;
}

@media (max-width: 768px) {
  .offerlist>.container {
    padding: 0px;
  }
}

@media (max-width: 992px) {
  .offerlist .offerlist__item ul.accordion-list li:hover {
    background: transparent;
  }

  .offerlist .offerlist__item ul.accordion-list li:hover .accordion-list__header img {
    opacity: 0;
  }

  .offerlist .offerlist__item ul.accordion-list li:hover .accordion-list__header h3 {
    color: var(--blue);
  }

  .offerlist .offerlist__item ul.accordion-list li.active {
    background: var(--light-blue);
  }

  .offerlist .offerlist__item ul.accordion-list li.active .accordion-list__header img {
    opacity: 1;
  }

  .offerlist .offerlist__item ul.accordion-list li.active .accordion-list__header h3 {
    color: var(--white);
  }

  .blogpage__items .blog__item {
    max-width: 450px;
  }

  .blogpage__items-inner {
    width: 100%;
  }
}

.referenses__slider li {
  margin-right: 20px !important;
}

@media (max-width: 1300px) {
  .referenses__slider li {
    margin-right: 40px !important;
  }
}

@media (max-width: 576px) {
  .referenses__slider li {
    margin-right: 20px !important;
  }
}

@media (max-width: 1150px) {
  .wpcf7 form .wpcf7-response-output {
    margin: 1em 20px 1em !important;
  }
}

@media (max-width: 992px) {
  .about-wrapper {
    flex-direction: column;
  }

  .about-left {
    margin-right: 0;
    margin-bottom: 40px;
  }
}

@media (max-width: 992px) {
  .header .menu>.menu-item {
    margin-right: 0;
  }

  .header .menu {
    display: flex;
    flex-direction: column;
  }

  .practice .accordion-list__header {
    flex-direction: column;
  }

  .practice .accordion-list__header>h3 {
    margin-bottom: 30px;
    margin-right: 0;
  }

  .practice .accordion-list__header>img {
    position: absolute;
    right: 20px;
  }

  .practice .accordion-list li.active .accordion-list__header {
    min-height: 250px;
  }

  .answer .help__item {
    padding: 40px 40px 60px;
  }

  .answer .help__item-inner {
    padding: 0;
  }

  .answer .maintext__wrapper {
    flex-direction: column;
  }

  .answer .maintext__left {
    max-width: 1000px;
    width: 100%;
    margin-bottom: 30px;
  }

  .answer .maintext__right-inner {
    max-width: 1000px;
    margin-bottom: 60px;
  }
}

@media (max-width: 992px) {
  .blog__items ul.splide__list {
    display: flex !important;
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .blog__items .splide__slide .blog__item {
    max-width: 1000px;
  }

  .blog__items .splide__slide {
    margin-bottom: 40px;
    margin-right: 15px;
  }

  .blog__items .my-carousel-progress {
    display: block;
  }

  .blog__items>.splide__track {
    padding-right: 40px !important;
  }

  .blogpage__items .blog__item {
    max-width: 650px;
  }
}

@media (max-width: 940px) {
  .blog__items .splide__slide {
    margin-bottom: 40px;
    margin-right: 15px;
  }
}

@media (max-width: 576px) {
  .blog .blog__content.paddinglp {
    padding: 0 0 0 20px;
  }
}