:root {
  --primary: #EE5543;
  --dark-bg: #1a2326;
  --regular-text: #D1D1D1;
}

* {
  box-sizing: border-box;
}

body {
  background: var(--dark-bg);
}

body, p, h1, h2, h3, h4, h5, h6 {
  padding: 0;
  margin: 0;
  font-family: "Jura", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

img {
  border: none;
  height: auto;
}

a {
  text-decoration: none;
  cursor: pointer;
  outline: none;
}

a, p {
  font-size: 16px;
  font-weight: 300;
  font-family: "Jura", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

p a {
  color: var(--primary);
}

p a:hover {
  text-decoration: none;
}

.inter-font {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings:
    "slnt" 0;
}

.jura-font {
  font-family: "Jura", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.highlight {
  color: var(--primary);
}

.page {
  background: var(--dark-bg);
}

.container {
  width: 100%;
  max-width: 1232px;
  margin: 0 auto;
  padding: 0 16px;
}

.btn {
  display: inline-block;
  cursor: pointer;
}

.btn img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 4px;
}

.btn.btn-primary {
  padding: 10px 20px;
  font-weight: 500;
  border: 1.5px solid var(--primary);
  color: var(--regular-text);
  border-radius: 60px;
  text-align: center;
  background: transparent;
}

.btn.btn-primary:hover {
  background: var(--primary);
}

.btn.btn-primary-filled {
  padding: 10px 20px;
  font-weight: 500;
  border: 1.5px solid var(--primary);
  color: var(--regular-text);
  border-radius: 60px;
  text-align: center;
  background: var(--primary);
}

.btn.btn-primary-filled:hover {
  border-color: var(--regular-text);
  color: var(--dark-bg);
  background: var(--regular-text);
}

.btn.btn-white {
  padding: 10px 20px;
  font-weight: 500;
  border: 1.5px solid var(--regular-text);
  color: var(--regular-text);
  border-radius: 60px;
  text-align: center;
  background: transparent;
}

.btn.btn-white:hover {
  background: var(--primary);
  border-color: var(--primary);
}


.btn.btn-gray {
  padding: 10px 20px;
  font-weight: 500;
  border: 1.5px solid rgba(209, 209, 209, 0.32);
  color: rgba(209, 209, 209, 0.32);
  border-radius: 60px;
  text-align: center;
  background: transparent;
}

.btn.btn-gray:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--regular-text);
}


.btn.btn-text {
  color: var(--regular-text);
  padding-bottom: 2px;
  border-bottom: 1px solid var(--primary);
}

.btn.btn-text:hover {
  color: var(--primary);
  border-color: transparent;
}

.form-input {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 22px;
  border: 1px solid var(--regular-text);
  color: var(--regular-text);
  font-size: 14px;
  font-weight: 400;
  font-family: "Jura", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  background: transparent;
  outline: none;
}

.form-input::placeholder {
  color: var(--regular-text);
}

.form-input:focus {
  border-color: var(--primary);
}

.form-control {
  font-family: "Jura", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  line-height: 1.1;
  display: grid;
  grid-template-columns: 1em auto;
  gap: 10px;
  color: var(--regular-text);
  font-size: 10px;
}

.form-control + .form-control {
  margin-top: 1em;
}

input[type="checkbox"] {
  /* Add if not using autoprefixer */
  -webkit-appearance: none;
  /* Remove most all native input styles */
  appearance: none;
  /* For iOS < 15 */
  background-color: transparent;
  /* Not removed via appearance */
  margin: 0;

  font: inherit;
  color: currentColor;
  width: 14px;
  height: 14px;
  min-width: 14px;
  min-height: 14px;
  border: 1px solid var(--regular-text);
  border-radius: 3px;
  transform: translateY(-0.075em);
  display: grid;
  place-content: center;
}

input[type="checkbox"]::before {
  content: "";
  width: 10px;
  height: 10px;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
  transform: scale(0);
  transform-origin: bottom left;
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1px 1px var(--regular-text);
  background-color: var(--regular-text);
}

input[type="checkbox"]:checked::before {
  transform: scale(1);
}



/***** HEADER **********************************************************/

.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  padding: 38px 0;
}

.header.scroll {
  background: var(--dark-bg);
}

.header .container {
  display: flex;
  gap: 80px;
  justify-content: flex-start;
  align-items: center;
}

.header .header-logo {
  display: block;
}

.header .header-logo .header-logo-desktop {
  display: block;
}

.header .header-logo .header-logo-mobile {
  display: none;
}

.header .header-phone {
  display: block;
  color: var(--regular-text);
}

.header .header-phone:hover {
  color: var(--primary);
}

.header .header-lang-swither {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}

.header .header-lang-swither a {
  display: block;
  color: var(--regular-text);
}

.header .header-lang-swither a.active {
  font-weight: 600;
}

.header .header-lang-swither a:hover {
  color: var(--primary);
}

.header .header-menu-switcher {
  cursor: pointer;
  margin-left: auto;
}

@media screen and (max-width: 1040px) {
  .header .container {
    gap: 40px;
  }
}

@media screen and (max-width: 768px) {
  .header .container {
    gap: unset;
    justify-content: space-between;
  }

  .header .header-logo .header-logo-desktop {
    display: none;
  }

  .header .header-logo .header-logo-mobile {
    display: block;
  }

  .header .header-lang-swither {
    display: none;
  }

  .header .header-cta {
    display: none;
  }

  .header .header-menu-switcher {
    margin-left: 0;
  }

  .header .header-phone {
    font-size: 14px;
  }
}





/***** FOOTER **********************************************************/

.footer {
  background: var(--dark-bg);
}

.footer .top-row {
  padding-top: 50px;
  border-top: 1px solid var(--primary);
  display: flex;
  justify-content: space-between;
  gap: 90px;
}

.footer .top-row .menus {
  width: 55%;
  display: flex;
  gap: 60px;
}


.footer .top-row .menus .title {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--regular-text);
  margin-bottom: 40px;
}

.footer .top-row .menus ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer .top-row .menus ul li {
  display: block;
}

.footer .top-row .menus ul li a {
  display: block;
  color: var(--primary);
  cursor: pointer;
  font-size: 12px;
}

.footer .top-row .menus ul li a:hover {
  color: var(--regular-text);
}

.footer .top-row .menus .double-menu {
  display: flex;
  gap: 20px;
}

.footer .top-row .footer-form {
  width: 45%;
}

.footer .top-row .footer-form .form-row {
  display: flex;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 30px;
  justify-content: space-between;
}

.footer .top-row .footer-form .form-row input {
  width: 100%;
}

.footer .top-row .footer-form .form-row textarea {
   width: 100%;
   min-height: 65px;
}

.footer .top-row .footer-form .form-row .sbmt {
  min-width: 40%;
}

.footer .bottom-row {
  padding: 70px 0 40px 0;
  border-bottom: 1px solid var(--primary);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer .copyright {
  display: flex;
  padding: 20px 0;
  justify-content: space-between;
}

.footer .copyright .copy {
  display: block;
  color: var(--regular-text);
  font-size: 14px;
}

.footer .copyright a {
  text-decoration: underline;
  color: var(--regular-text);
  font-size: 14px;
}

.footer .copyright a:hover {
  text-decoration: none;
  color: var(--primary);
}

@media screen and (max-width: 1000px) {
  .footer .top-row .menus {
    width: 100%;
    min-width: 100%;
    gap: unset;
    justify-content: space-between;
  }

  .footer .top-row .footer-form {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .footer .top-row {
    padding-top: 30px;
    gap: unset;
  }

  .footer .top-row .menus {
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 16px 16px; 
  }
	
	.footer .top-row .menus .menu-2 {
		grid-column: 2/3;
		grid-row: 1/3;
	}

  .footer .top-row .menus .double-menu {
    gap: 10px;
    flex-direction: column;
  }

  .footer .top-row .menus .title {
    margin-bottom: 30px;
  }

  .footer .bottom-row {
    padding: 50px 0 30px 0;
    display: flex;
    justify-content: center;
    gap: 40px;
  }

  .footer .copyright {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    gap: 24px;
  }

}










/***** HOME PAGE **********************************************************/

/* Hero */

.home-hero {
  overflow: hidden;
}

.home-hero .container {
  display: flex;
  align-items: stretch;
  position: relative;
}

.home-hero .col-left {
  width: 60%;
  min-width: 60%;
  padding: 260px 0 140px 0;
}

.home-hero.single-service-hero .col-left {
	padding: 100px 0 240px 0;
}

@media only screen and (min-width: 780px) {
	.home-hero.single-service-hero .col-left {
		display: flex;
		flex-direction: column;
		justify-content: flex-end;

		min-height: 824px;
	}
}

.home-hero.all-services-hero .col-left {
  padding: 350px 0 290px 0;
}

.home-hero.use-cases-hero .col-left {
  padding: 236px 0 192px 0;
}

.home-hero.use-cases-hero .col-left p {
	max-width: 508px;
}

.home-hero .col-left h1 {
  font-size: 60px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--regular-text);
}

.home-hero .col-left h1 span {
  display: block;
}

.home-hero .col-left p {
  margin-top: 30px;
  color: var(--regular-text);
}

.home-hero.single-service-hero .col-left p {
  margin-top: 30px;
  font-size: 20px;
  width: 600px;
  max-width: 100%;
}

.home-hero.single-service-hero .col-left p a {
  font-size: 20px;
}

.home-hero .col-left .btn-container {
  margin-top: 60px;
}

.home-hero .col-right {
  width: 40%;
  min-width: 40%;
  position: relative;
}

.home-hero .col-right .watermark {
  display: block;
  text-shadow: -1px 1px 0 var(--primary),
                1px 1px 0 var(--primary),
                1px -1px 0 var(--primary),
                -1px -1px 0 var(--primary);
  color: var(--dark-bg);
  position: absolute;
  bottom: 760px;
  right: -780px;
  font-size: 400px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings:
    "slnt" 0;
  transform: rotate(270deg);
}

.home-hero.single-service-hero .col-right .watermark {
  bottom: 600px;
  right: -540px;
  font-size: 320px;
}

.home-hero.all-services-hero .col-right .watermark {
  bottom: 270px;
  right: -250px;
  font-size: 320px;
}

.home-hero.use-cases-hero .col-right .watermark {
  bottom: 232px;
  right: -250px;
  font-size: 320px;
}

.home-hero .sidebar {
  position: absolute;
  top: 160px;
  right: 0;
  z-index: 50;
  width: 30px;
}

.home-hero .sidebar .text {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--regular-text);
  transform: rotate(90deg);
  position: absolute;
  top: 45px;
  right: -56px;
  width: 150px;
}

.home-hero .sidebar .text span {
  display: inline-block;
  transition: all .8s ease;
  color: var(--primary);
}

.home-hero .sidebar .text:hover span {
  transform: rotate(90deg);
}

.home-hero .sidebar .social {
  display: flex;
  margin-top: 270px;
  flex-direction: column;
  gap: 10px;
}

@media screen and (max-width: 1140px) {
  .home-hero .col-right .watermark,
  .home-hero.single-service-hero .col-right .watermark {
    bottom: 380px;
    right: -300px;
    font-size: 200px;
  }

  .home-hero.all-services-hero .col-right .watermark,
  .home-hero.use-cases-hero .col-right .watermark {
    display: none;
  }
}

@media screen and (max-width: 930px) {
  .home-hero .col-left,
  .home-hero.single-service-hero .col-left
  .home-hero.all-services-hero .col-left,
  .home-hero.use-cases-hero .col-left {
    width: 100%;
    min-width: 100%;
    padding: 260px 0 140px 0;
  }

  .home-hero .col-right {
    display: none;
  }

  .home-hero .col-right .watermark {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .home-hero .col-left {
    padding: 147px 0 40px 0;
  }

  .home-hero.single-service-hero .col-left,
  .home-hero.all-services-hero .col-left,
  .home-hero.use-cases-hero .col-left {
    padding: 182px 0 80px 0;
  }

  .home-hero.single-service-hero .sidebar .text,
  .home-hero.all-services-hero .sidebar .text,
  .home-hero.use-cases-hero .sidebar .text {
    display: none;
  }

  .home-hero .col-left h1 {
    font-size: 32px;
  }

  .home-hero.all-services-hero .col-left h1 .highlight {
    color:var(--regular-text);
  }

  .home-hero .col-left h1 span {
    display: block;
  }

  .home-hero .col-left p {
    margin-top: 24px;
    font-size: 18px;
  }

  .home-hero.single-service-hero .col-left p,
  .home-hero.single-service-hero .col-left p a {
    font-size: 16px;
  }

  .home-hero .col-left .btn-container {
    margin-top: 40px;
  }

  .home-hero.single-service-hero .col-left .btn-container {
    margin-top: 32px;
  }

  .home-hero .sidebar .social {
    display: none;
  }
}

@media screen and (max-width: 390px) {
  .home-hero .col-left h1 {
    padding-right: 20px;
  }
}


/* Services */

.home-services {
  padding: 20px 0 140px 0;
}

.plus-heading {
  font-size: 20px;
  font-weight: 600;
  color: var(--regular-text);
}

.plus-heading::before {
  content: '+';
  display: inline-block;
  margin-right: 4px;
  color: var(--primary);
  transition: all .8s ease;
}

.plus-heading:hover::before {
  transform: rotate(90deg);
}

.plus-heading span {
  color: var(--regular-text);
  opacity: 56%;
  display: inline-block;
}

.services-box {
  display: block;
  margin-top: 80px;
  margin-left: -8px;
  margin-right: -8px;
}

.services-box::after {
  content: '';
  display: block;
  clear: both;
}

.services-box .service-item {
  position: relative;
  margin: 8px;
  float: left;
}

.services-box .service-item .service-item-wrapper {
  display: flex;
  align-items: center;
  border: 1px solid;
  border-image: linear-gradient(to right, #EE5543 -100%, rgba(238, 85, 67, 0) 100%) 1;
  position: relative;
  overflow: hidden;
}

.services-box .service-item .service-item-wrapper::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #EE5543 -166.86%, rgba(238, 85, 67, 0) 100%);
  z-index: 2;
  transform: translate3d(-100%, 0, 0);
  transition: transform .4s ease;
}

.services-box .service-item .service-item-wrapper:hover::before {
  transform: translate3d(0, 0, 0);
}

.services-box .service-item.small {
  width: calc(35% - 16px);
}

.services-box .service-item.big {
  width: calc(65% - 16px);
}

.services-box .service-item .service-image {
  z-index: 10;
  display: flex;
  width: calc(50% - 40px);
  min-width: calc(50% - 40px);
  justify-content: center;
  align-items: center;
}

.services-box .service-item .service-image img {
  max-width: 90%;
}

.services-box .service-item .service-content {
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  padding: 40px;
}

.services-box .service-item .service-content .name {
  font-family: "Jura", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  display: block;
  font-size: 40px;
  line-height: 1.1;
  color: var(--primary);
}

.services-box .service-item:hover .service-content .name {
  color: var(--regular-text);
}

.services-box .service-item .service-content p {
  margin-top: 32px;
  color: var(--regular-text);
}

.services-box .service-item .service-content img {
  display: block;
  max-width: 90px;
  margin: 60px auto 0 auto;
}

.services-box .service-item.big .service-content img {
  display: none;
}

.services-box .service-item .service-content .btn-container {
  margin-top: 60px;
  width: 100%;
}

.services-box .service-item.small .service-content .btn-container {
  text-align: right;
}

.services-box .service-item.big .service-content .btn-container {
  text-align: left;
}

.services-box .service-item::after {
  content: '+';
  display: inline-block;
  position: absolute;
  font-size: 16px;
  color: var(--primary);
  right: -5px;
  z-index: 20;
}

.services-box .service-item:nth-child(2n-1)::after {
  bottom: -5px;
}

.services-box .service-item:nth-child(2n)::after {
  top: -5px;
}

.home-services .container .btn-container {
  margin-top: 80px;
  text-align: center;
}

@media screen and (max-width: 970px) {
  .services-box .service-item.small {
    width: calc(50% - 16px);
  }

  .services-box .service-item.big {
    width: calc(50% - 16px);
  }

  .services-box .service-item .service-image {
    display: none;
  }

  .services-box .service-item.big .service-content img {
    display: block;
  }

  .services-box .service-item.big .service-content .btn-container {
    text-align: right;
  }

  .services-box .service-item.small .service-content .btn-container {
    text-align: right;
  }
}

@media screen and (max-width: 768px) {
  .home-services {
    padding: 20px 0 40px 0;
  }

  .services-box {
    display: block;
    margin-top: 40px;
  }

  .services-box .service-item.small {
    width: calc(100% - 16px);
  }

  .services-box .service-item.big {
    width: calc(100% - 16px);
  }

  .services-box .service-item .service-content .name {
    font-size: 32px;
  }

  .services-box .service-item .service-content p {
    margin-top: 24px;
    font-size: 14px;
  }

  .services-box .service-item .service-content img {
    margin: 90px auto 0 auto;
    max-width: 72px;
  }

  .services-box .service-item .service-content .btn-container {
    margin-top: 40px;
  }

  .home-services .container .btn-container {
    margin-top: 60px;
  }

  .services-box .service-item:nth-child(2n)::after {
    bottom: -5px;
    top: unset;
  }
}

/* Big logo */

.big-logo {
  position: relative;
/*   height: 440px; */
  overflow: hidden;
}

.big-logo span {
  display: block;
  text-shadow: -1px 1px 0 var(--primary),
                1px 1px 0 var(--primary),
                1px -1px 0 var(--primary),
                -1px -1px 0 var(--primary);
  color: var(--dark-bg);
/*   position: absolute; */
  font-size: clamp(200px, 22vw, 320px);
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  line-height: 1;
  font-variation-settings:
    "slnt" 0;
/*   top: 0; */
/*   left: 50%; */
/*   transform: translateX(-50%); */
	margin-left: -60px;
}

@media screen and (min-width: 1600px) {
	.big-logo span {
		margin-left: auto;
		text-align: center;
	}
}

/* @media screen and (max-width: 1500px) {
  .big-logo {
    position: relative;
    height: 380px;
    overflow: hidden;
  }

  .big-logo span {
    font-size: 300px;
  }
} */

@media screen and (max-width: 768px) {
/*   .big-logo {
    position: relative;
    height: 300px;
    overflow: hidden;
  }

  .big-logo span {
    font-size: 200px;
  } */

  .big-logo.big-on-mobile span {
    font-size: 168px;
/*     transform: translateX(-70px); */
    margin-left: -48px;
  }
	
	.big-logo.mobile-only.big-on-mobile.use-cases-logo span {
		font-size: 158px;
		margin-left: -28px;
	}
	
	.big-logo.mobile-only.big-on-mobile.use-cases-logo + .cases.use-cases {
		margin-top: 40px;
	}
}

@media screen and (max-width: 500px) {
/*   .big-logo:not(.big-on-mobile) {
    position: relative;
    height: 200px;
    overflow: hidden;
  } */

  .big-logo.all-services-logo,
  .big-logo.use-cases-logo {
    height: 200px;
  }

/*   .big-logo:not(.big-on-mobile) span {
    font-size: 100px;
  } */
}

/* @media screen and (max-width: 400px) {
  .big-logo:not(.big-on-mobile) {
    position: relative;
    height: 120px;
    overflow: hidden;
  }

  .big-logo:not(.big-on-mobile) span {
    font-size: 90px;
  }
} */

/* Clutch */

.clutch {
  overflow: hidden;
	
/*   max-width: 1524px;
  margin-left: auto;
  margin-right: auto; */
}

@media screen and (min-width: 769px) {
  .clutch .row {
/*     justify-content: center; */
  }
}

.clutch .row .item {
  padding: 0 50px;
  position: relative;
  width: 256px;
}

.clutch .row .item img {
  display: block;
}

.clutch .row .item:not(:first-child)::before {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--primary);
  top: 50%;
  left: -18px;
  position: absolute;
}

@media screen and (max-width: 1530px) {
  .clutch {
/*     height: 140px; */
  }

  .clutch .row .item {
    padding: 0 30px;
    width: 164px
  }

  .clutch .row .item img {
    display: block;
    height: 140px;
    width: auto;
  }

  .clutch .row .item::before {
    width: 22px;
    left: -11px;
  }
}

@media screen and (max-width: 960px) {
  .clutch {
/*     height: 125px; */
  }

  .clutch .row .item {
    padding: 0 30px;
    width: 153px
  }

  .clutch .row .item img {
    display: block;
    height: 125px;
    width: auto;
  }

  .clutch .row .item::before {
    width: 22px;
    left: -11px;
  }
}

/* Counters */

.counters {
  padding: 190px 0;
}

.counters .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.counters .counters-content {
  max-width: 700px;
}

.counters .counters-content h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--regular-text);
}

.counters .counters-content p {
  color: var(--regular-text);
  margin-top: 20px;
}

.counters .counters-content .counters-box {
  display: flex;
  gap: 40px;
  margin-top: 30px;
}

.counters .counters-content .counters-box .left,
.counters .counters-content .counters-box .right {
  display: flex;
  gap: 40px;
}

.counters .counters-content .counters-box .item {
  display: block;
  min-width: 75px;
}

.counters .counters-content .counters-box .item .number {
  font-size: 40px;
  color: var(--primary);
  display: block;
}

.counters .counters-content .counters-box .item .title {
  display: block;
  font-size: 16px;
  font-weight: 300;
  color: var(--regular-text);
  font-family: "Jura", sans-serif;
  font-optical-sizing: auto;
  margin-top: 2px;
}

@media screen and (max-width: 900px) {
  .counters .container {
    flex-direction: column;
    gap: 40px;
  }
}

@media screen and (max-width: 768px) {
  .counters {
    padding: 40px 0 80px 0;
  }

  .counters .container {
    flex-direction: column;
    gap: 45px;
  }

  .counters .container img {
    width: 160px;
  }

  .counters .counters-content h2 {
    font-size: 32px;
  }

  .counters .counters-content .counters-box {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .counters .counters-content .counters-box .left,
  .counters .counters-content .counters-box .right {
    display: flex;
    min-width: 300px;
    justify-content: flex-start;
  }

  .counters .counters-content .counters-box .item {
    display: block;
    min-width: 50%;
  }

  .counters .counters-content .counters-box .item .number {
    font-size: 32px;
  }
}

/* Cases */

.cases {
  padding: 0 0 80px 0;
}

.cases .filters {
  margin-top: 76px;
}

.filters {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: nowrap;
  overflow-x: auto;
}

.filters a {
  display: inline-block;
  vertical-align: top;
  padding: 8px 16px;
  color: var(--regular-text);
  border-radius: 18px;
  border: 1px solid var(--regular-text);
  font-size: 14px;
  white-space: nowrap;
}

.filters a.active {
  background: var(--primary);
  border-color: var(--primary);
}

.cases-grid {
  margin-top: 76px;
  display: grid; 
  grid-auto-flow: row dense; 
  grid-template-columns: 1fr 1fr; 
  grid-template-rows: 1fr 1fr auto auto; 
  gap: 16px 16px; 
  grid-template-areas: 
    "case-1 case-2"
    "case-1 case-3"
    "case-4 case-5"
    "case-6 case-6"; 
}

.case-1 { grid-area: case-1; }
.case-2 { grid-area: case-2; }
.case-3 { grid-area: case-3; }
.case-4 { grid-area: case-4; }
.case-5 { grid-area: case-5; }
.case-6 { grid-area: case-6; }

.case {
  display: block;
  position: relative;
  border: 1px solid;
  border-image: linear-gradient(to right, #EE5543 -100%, rgba(238, 85, 67, 0) 100%) 1;
  padding: 40px 40px 30px 40px;
}

.case .tags {
  display: block;
  font-size: 0;
}

.case .tags span {
  display: inline-block;
  vertical-align: top;
  padding: 8px 16px;
  color: var(--regular-text);
  border-radius: 18px;
  border: 1px solid var(--regular-text);
  margin-right: 16px;
  font-size: 14px;
}

.case .tags span.active {
  background: var(--primary);
  border-color: var(--primary);
}

.case .case-content {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  justify-content: space-between;
  cursor: pointer;
  text-decoration: none;
  margin-top: 24px;
}

.use-cases .case .case-content {
  flex-direction: column;
  gap: 24px;
  margin-top: 46px;
}

.case .case-content .name {
  display: block;
  font-family: "Jura", sans-serif;
  font-optical-sizing: auto;
/*   width: 40%; */
  min-width: 40%;
  color: var(--primary);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
}

.case .case-content p {
  color: var(--regular-text);
  font-size: 14px;
  line-height: 1.2;
}

.case > img {
  display: block;
  width: 100%;
  height: 140px;
  object-fit: cover;
  object-position: center;
  margin-top: 24px;
}

.case .arrow-link {
  display: block;
  text-decoration: none;
  cursor: pointer;
  position: absolute;
  bottom: 40px;
  right: 40px;
}

.case .arrow-link img {
  width: 48px;
  transition: transform .2s ease;
}

.case .arrow-link:hover img {
  transform: rotate(45deg);
}

.case .result {
  margin-top: 30px;
}

.case .result .number {
  display: block;
  font-size: 28px;
  font-weight: 600;
  color: var(--primary);
}

.case .result .title {
  color: var(--regular-text);
  font-size: 17px;
  display: block;
}

.case::after {
  content: '+';
  display: inline-block;
  position: absolute;
  font-size: 16px;
  color: var(--primary);
  right: -5px;
  top: -10px;
  z-index: 20;
}

.cases .btn-container {
  text-align: center;
  margin-top: 80px;
}

@media screen and (min-width: 901px) {
  .case.case-1 .case-content {
    flex-direction: column;
    gap: 24px;
    margin-top: 46px;
  }

  .case.case-1 .case-content .name {
    width: 100%;
    min-width: 100%;
    font-size: 40px;
  }

  .case.case-1 > img {
    height: 440px;
    margin-top: 36px;
  }

  .case.case-1 .arrow-link img,
  .case.case-6 .arrow-link img {
    width: 64px;
  }

  .case.case-6 .case-content .name {
    font-size: 40px;
  }

  .case.case-6 > img {
    height: 440px;
    margin-top: 36px;
  }

  .case.case-1 .result .number,
  .case.case-6 .result .number {
    font-size: 48px;
  }
}

@media screen and (max-width: 900px) {
  .cases {
    padding: 0 0 30px 0;
  }

  .cases .filters {
    margin-top: 40px;
  }

  .cases-grid {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
}

@media screen and (max-width: 768px) {
  .case {
    padding: 32px;
  }

  .case .tags span {
    padding: 4px 8px;
    border-radius: 12px;
    margin-right: 12px;
    font-size: 12px;
  }

  .case .case-content {
    flex-direction: column;
    gap: 20px;
    margin-top: 16px;
  }

  .case .case-content .name {
    width: 100%;
    min-width: 100%;
  }

  .case .case-content p {
    font-size: 16px;
  }

  .case > img {
    width: 100%;
    height: 250px;
  }

  .case .result .number {
    font-size: 32px;
  }

  .case .result .title {
    font-size: 14px;
  }

  .case .arrow-link {
    bottom: 32px;
    right: 32px;
  }

  .case .arrow-link img {
    width: 32px;
  }

  .case::after {
    right: -5px;
    bottom: -10px;
    top: unset;
  }

  .cases .btn-container {
    margin-top: 60px;
  }
}

/* Our team */

.team .row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 80px;
}

.team .row .items {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.team .row .items .top,
.team .row .items .bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.team .row .items .item {
  display: block;
  position: relative;
}

.team .row .items .item::after {
  content: '+';
  display: inline-block;
  position: absolute;
  font-size: 16px;
  color: var(--primary);
  right: -3px;
  top: -10px;
  z-index: 20;
}

.team .row .items .item img {
  display: block;
  width: 100%;
}

.team .row .items .item .description {
  background: linear-gradient(90deg, #EE5543 -166.86%, rgba(238, 85, 67, 0) 100%);
  margin-top: 22px;
  position: relative;
  padding: 10px;
}

.team .row .items .item .description::after {
  content: '+';
  display: inline-block;
  position: absolute;
  font-size: 16px;
  color: var(--primary);
  left: -5px;
  top: -10px;
  z-index: 20;
}

.team .row .items .item .description .name {
  display: block;
  color: var(--regular-text);
  font-size: 16px;
}

.team .row .items .item .description .position {
  display: block;
  color: var(--regular-text);
  font-size: 12px;
}

.team .row .circle-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 262px;
  height: 262px;
  min-width: 262px;
  min-height: 262px;
  border-radius: 50%;
  border: 1px solid var(--primary);
}

@media screen and (max-width: 1150px) {
  .team .row {
    gap: 20px;
  }
  .team .row .items {
    gap: 20px;
  }

  .team .row .items .top,
  .team .row .items .bottom {
    gap: 20px;
  }

  .team .row .circle-link {
    width: 200px;
    height: 200px;
    min-width: 200px;
    min-height: 200px;
  }
}

@media screen and (max-width: 900px) {

  .team .row .circle-link {
    width: 140px;
    height: 140px;
    min-width: 140px;
    min-height: 140px;
  }
}

@media screen and (max-width: 768px) {

  .team .row {
    gap: 40px;
    flex-direction: column;
    margin-top: 40px;
    align-items: center;
  }

  .team .row .items {
    gap: 16px;
    flex-direction: column;
    width: 100%;
  }

  .team .row .items .top,
  .team .row .items .bottom {
    gap: 16px;
    width: 100%;
  }

  .team .row .items .item {
    width: calc(50% - 8px);
  }

  .team .row .items .item .description {
    margin-top: 16px;
  }

  .team .row .circle-link {
    width: 118px;
    height: 118px;
    min-width: 118px;
    min-height: 118px;
  }
}

/* Contact form */

.contact-form {
  padding: 190px 0;
}

.contact-form .form {
  display: block;
  width: 960px;
  max-width: 100%;
  background: linear-gradient(90deg, #EE5543 -166.86%, rgba(238, 85, 67, 0) 100%);
  padding: 60px 90px;
  position: relative;
  margin: 0 auto;
}

.contact-form .form::after {
  content: '+';
  display: inline-block;
  position: absolute;
  font-size: 16px;
  color: var(--primary);
  left: -5px;
  top: -10px;
  z-index: 20;
}

.contact-form .form form {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.contact-form .form form div {
  width: 210px;
}

.contact-form .form form div input {
  margin-top: 20px;
  width: 100%;
}

.contact-form .form h2 {
  text-align: center;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.17;
  color: var(--primary);
}

.contact-form .form > p {
  width: 460px;
  max-width: 100%;
  text-align: center;
  color: var(--regular-text);
  margin: 20px auto 30px auto;
}

@media screen and (max-width: 880px) {
  .contact-form .form {
    width: 960px;
    max-width: 100%;
    padding: 50px 50px;
  }
}

@media screen and (max-width: 768px) {
  .contact-form {
    padding: 90px 0;
  }

  .contact-form .form {
    padding: 30px;
  }

  .contact-form .form form {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .contact-form .form form div {
    width: 90%;
    margin: 0 auto;
  }

  .contact-form .form form div:last-child {
    margin-top: 20px;
  }

  .contact-form .form h2 {
    font-size: 24px;
  }

  .contact-form .form > p {
    font-size: 14px;
    margin: 10px auto 10px auto;
  }
}

/* Clients */

.clients {
  padding-bottom: 180px;
}

.clients .carouselTicker__item {
  height: 58px;
  padding: 0 70px;
  position: relative;
  display: flex;
  align-items: center;
}

.clients .carouselTicker__item::after {
  content: '';
  display: block;
  width: 76px;
  height: 1px;
  background: var(--primary);
  top: 50%;
  right: -38px;
  position: absolute;
}

#ticker-2 {
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .clients {
    padding-bottom: 80px;
  }

  .clients .carouselTicker__item {
    padding: 0 50px;
  }

  .clients .carouselTicker__item::after {
    width: 44px;
    right: -22px;
  }

  #ticker-2 {
    margin-top: 30px;
  }
}

/* Contacts */

.contacts {
  padding-bottom: 180px;
}

@keyframes spin {
    from {
        transform:rotate(0deg);
    }
    to {
        transform:rotate(360deg);
    }
}

.contacts-box {
  width: 970px;
  max-width: 100%;
  position: relative;
  margin-top: 80px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

.contacts-box .content {
  width: 630px;
  max-width: 100%;
}

.contacts-box .content h3 {
  font-size: 40px;
  font-weight: 600;
  color: var(--regular-text);
  width: 310px;
  max-width: 100%;
}

.contacts-box .content > p {
  margin-top: 20px;
  color: var(--regular-text);
}

.contacts-box .content .row {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  margin-top: 40px;
}

.contacts-box .content .row .circle-mobile {
  display: none;
}

.contacts-box .content .row .title {
  display: block;
  color: var(--regular-text);
  font-size: 16px;
  font-weight: 300;
}

.contacts-box .content .row p {
  line-height: 1.2;
  margin-top: 10px;
}

.contacts-box .content .row p a {
  display: block;
  margin-bottom: 6px;
}

.contacts-box .content .row p a:hover {
  color: var(--regular-text);
}

.contacts-box .content .cta {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 50px;
}

.contacts-box .content .cta .social {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.contacts-box .circle-desktop {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 205px;
  height: 205px;
}

.contacts-box .circle-desktop .circle-text {
  display: block;
  top: 3px;
  left: 0;
  position: absolute;
  animation-name: spin;
  animation-duration: 18000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.contacts-box .circle-desktop .circle-center {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 768px) {

  .contacts {
    padding-bottom: 80px;
  }

  .contacts-box {
    margin-top: 40px;
  }

  .contacts-box .content h3 {
    font-size: 24px;
    width: 190px;
    max-width: 100%;
  }

  .contacts-box .content > p {
    margin-top: 16px;
    font-size: 14px;
  }

  .contacts-box .circle-desktop {
    display: none; 
  }

  .contacts-box .content .row {
    width: 70%;
    gap: 20px;
    flex-direction: column;
  }

  .contacts-box .content .row div {
    width: 100%;
  }

  .contacts-box .content .row p {
    font-size: 16px;
  }

  .contacts-box .content .cta {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-left: auto;
    margin-right: auto;
  }

  .contacts-box .content .row .circle-mobile {
    display: block;
    position: absolute;
    width: 140px;
    height: 140px;
    right: 0;
    top: calc(50% - 70px);
  }

  .contacts-box .content .row  .circle-mobile .circle-text {
    display: block;
    top: 3px;
    left: 0;
    width: 140px;
    height: auto;
    position: absolute;
    animation-name: spin;
    animation-duration: 18000ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
  }

  .contacts-box .content .row .circle-mobile .circle-center {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
  }

}

@media screen and (min-width: 1101px) {
  .mobile-only {
    display: none;
  }
}

/***** SINGLE SERVICE PAGE **********************************************************/

.picture-text {
  padding: 120px 0 212px 0;
}

.picture-text .container {
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  grid-template-rows: 1fr; 
  gap: 50px; 
  grid-template-areas: 
    "picture text"; 
}

.picture-text .container .picture { 
  grid-area: picture; 
  display: flex;
  justify-content: center;
  align-items: center;
}

.picture-text .container .picture img {
  display: block;
  max-width: 100%;
}


.picture-text .container .text { 
  grid-area: text;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 26px; 
}

.picture-text .container .text h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--regular-text);
}

.picture-text .container .text p {
  font-weight: 300;
  color: var(--regular-text);
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .picture-text {
    padding: 70px 0;
  }

  .picture-text .container {
    display: flex;
    flex-direction: column-reverse;
  }

  .picture-text .container .text h2 {
    font-size: 32px;
  }

  .picture-text .container .text p {
    font-weight: 300;
    color: var(--regular-text);
  }
}

/* Stages slider */

.stages-slider {
  padding: 120px 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.stages-slider .top .container{
  display: flex;
  align-items: flex-start;
  gap: 50px;
}

.stages-slider .top .left {
  width: 50%;
}

.stages-slider .top .left h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--regular-text);
}

.stages-slider .top .left p {
  font-weight: 300;
  color: var(--regular-text);
  margin-top: 26px;
}

.stages-slider .top .right {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  width: 50%;
}

.stages-slider .top .right .stages-slider-nav {
  display: flex;
  flex-direction: row;
  gap: 12px;
}

.stages-slider .top .right .stages-slider-nav span {
  display: block;
  cursor: pointer;
}

.stages-slider .top .right .stages-slider-nav span img {
  width: 64px;
}

.stages-slider .top .right .stages-slider-nav span:hover img {
  filter: brightness(0) saturate(100%) invert(50%) sepia(23%) saturate(5631%) hue-rotate(332deg) brightness(93%) contrast(100%);
}

.stages-slider .bottom .stages-links-slider {
  overflow: hidden;
  padding: 32px 0;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}

.stages-slider .bottom .stages-links-slider .swiper-slide {
  width: 184px;
  position: relative;
  padding: 0 36px;
  text-align: center;
}

.stages-slider .bottom .stages-links-slider .swiper-slide span {
  color: var(--regular-text);
  opacity: 0.56;
  font-size: 24px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.stages-slider .bottom .stages-links-slider .swiper-slide span.active {
  opacity: 1;
  color: var(--primary);
}

.stages-slider .bottom .stages-links-slider .swiper-slide span:hover,
.stages-slider .bottom .stages-links-slider .swiper-slide span.active:hover {
  opacity: 1;
  color: var(--regular-text);
}

.stages-slider .bottom .stages-links-slider .swiper-slide::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: -12px;
  width: 24px;
  height: 1px;
  background: var(--primary);
}

.stages-slider .bottom .stages-items-slider {
  overflow: hidden;
  margin-top: 20px;
}

.stages-slider .bottom .stages-items-slider .swiper-slide {
  width: 1015px;
  padding: 46px;
  display: flex;
  gap: 66px;
  align-items: center;
  border: 1px solid;
  border-image: linear-gradient(to right, #EE5543 -100%, rgba(238, 85, 67, 0) 100%) 1;
  position: relative;
  overflow: hidden;
}

.stages-slider .bottom .stages-items-slider .swiper-slide::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #EE5543 -166.86%, rgba(238, 85, 67, 0) 100%);
  z-index: 2;
  transform: translate3d(-100%, 0, 0);
  transition: transform .4s ease;
}

.stages-slider .bottom .stages-items-slider .swiper-slide.swiper-slide-active::before {
  transform: translate3d(0, 0, 0);
}

.stages-slider .bottom .stages-items-slider .swiper-slide::after {
  content: '+';
  display: inline-block;
  position: absolute;
  font-size: 16px;
  color: var(--primary);
  right: 0;
  bottom: 0;
  z-index: 20;
}

.stages-slider .bottom .stages-items-slider .swiper-slide > img {
  display: block;
  width: 288px;
  min-width: 288px;
  position: relative;
  z-index: 10;
}

.stages-slider .bottom .stages-items-slider .swiper-slide .slide-content {
  width: calc(100% - (288px + 66px));
  position: relative;
  z-index: 10;
}

.stages-slider .bottom .stages-items-slider .swiper-slide .slide-content .stage-number {
  display: block;
  color: var(--regular-text);
  font-size: 14px;
  font-weight: 500;
}

.stages-slider .bottom .stages-items-slider .swiper-slide.swiper-slide-active .slide-content .stage-number {
  color: var(--primary);
}

.stages-slider .bottom .stages-items-slider .swiper-slide .slide-content .title {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--primary);
  display: block;
  margin-top: 12px;
}

.stages-slider .bottom .stages-items-slider .swiper-slide.swiper-slide-active .slide-content .title {
  color: var(--regular-text);
}

.stages-slider .bottom .stages-items-slider .swiper-slide .slide-content p {
  font-size: 16px;
  color: var(--regular-text);
  font-weight: 300;
  margin-top: 26px;
  line-height: 1.5;
}

.top-mobile {
  display: none;
}

@media screen and (max-width: 1060px) {
  .stages-slider .bottom .stages-items-slider .swiper-slide {
    width: 342px;
    padding: 16px;
    flex-direction: column-reverse;
    gap: 32px;
    align-items: center;
  }

  .stages-slider .bottom .stages-items-slider .swiper-slide > img {
    width: 288px;
    min-width: 0;
    max-width: 100%;
  }

  .stages-slider .bottom .stages-items-slider .swiper-slide .slide-content {
    width: 100%;
  }

  .stages-slider .bottom .stages-items-slider .swiper-slide .slide-content .title {
    font-size: 24px;
  }

  .stages-slider .bottom .stages-items-slider .swiper-slide .slide-content p {
    font-size: 14px;
    margin-top: 12px;
  }

  .stages-slider .bottom .stages-links-slider {
    padding: 16px 0;
  }
}

@media screen and (max-width: 768px) {
  .stages-slider {
    padding: 64px 0;
    display: flex;
    flex-direction: column-reverse;
    gap: 0;
  }

  .stages-slider .top .container{
    display: block;
    gap: 0;
  }

  .stages-slider .top .left {
    display: none;
  }

  .stages-slider .top .right {
    justify-content: center;
    width: 100%;
    margin-top: 60px;
  }

  .top-mobile {
    display: block;
    margin-bottom: 10px;
  }

  .top-mobile h2 {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--regular-text);
  }

  .top-mobile p {
    font-weight: 300;
    color: var(--regular-text);
    font-size: 14px;
    margin-top: 18px;
  }
}

/* Our services */

.our-services {
  padding: 120px 0;
}

.our-services.all-services {
  padding: 80px 0;
}

.our-services .top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
}

.our-services .top .left {
  width: 50%;
}

.our-services .top .right {
  width: 50%;
  display: flex;
  justify-content: flex-end;
}

.our-services .top .left h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--regular-text);
}

.our-services .top .left p {
  font-weight: 300;
  color: var(--regular-text);
  margin-top: 26px;
}

.our-services .bottom {
  margin-top: 64px;
}

.our-services .btn.btn-primary:not(:hover) {
	color: var(--primary);
}

.our-services:not(.all-services) .bottom .container {
  display: grid; 
  grid-template-columns: 1fr 1fr 1fr; 
  grid-template-rows: 1fr 1fr; 
  gap: 16px; 
  grid-template-areas: 
    "service-1 service-2 service-3"
    "service-4 service-5 service-6";
}

.our-services.all-services .bottom .container {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 16px;
}

.our-services:not(.all-services) .bottom .container .service-1 { 
  grid-area: service-1; 
}

.our-services:not(.all-services) .bottom .container .service-2 { 
  grid-area: service-2; 
}

.our-services:not(.all-services) .bottom .container .service-3 { 
  grid-area: service-3; 
}

.our-services:not(.all-services) .bottom .container .service-4 { 
  grid-area: service-4; 
}

.our-services:not(.all-services) .bottom .container .service-5 { 
  grid-area: service-5; 
}

.our-services:not(.all-services) .bottom .container .service-6 { 
  grid-area: service-6; 
}

.our-services .bottom .container .service {
  padding: 24px;
  border: 1px solid;
  border-image: linear-gradient(to right, #EE5543 -100%, rgba(238, 85, 67, 0) 100%) 1;
  position: relative;
  overflow: hidden;
}

.our-services .bottom .container .service::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #EE5543 -166.86%, rgba(238, 85, 67, 0) 100%);
  z-index: 2;
  transform: translate3d(-100%, 0, 0);
  transition: transform .4s ease;
}

.our-services .bottom .container .service:hover::before {
  transform: translate3d(0, 0, 0);
}

.our-services .bottom .container .service > img {
  display: block;
}

.our-services .bottom .container .service:hover > img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7442%) hue-rotate(72deg) brightness(115%) contrast(118%);
}

.our-services .bottom .container .service h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--primary);
  margin-top: 16px;
}

.our-services .bottom .container .service:hover h3 {
  color: var(--regular-text);
}

.our-services .bottom .container .service p {
  font-weight: 300;
  color: var(--regular-text);
  margin-top: 12px;
  font-size: 14px;
}

.our-services .bottom .container .service .btn {
  display: none;
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 20;
}

.our-services .bottom .container .service .btn:hover > img {
  filter: brightness(0) saturate(100%) invert(46%) sepia(17%) saturate(7292%) hue-rotate(335deg) brightness(97%) contrast(93%);
}

.our-services .bottom .container .service:hover .btn {
  display: block;
}

@media screen and (max-width: 900px) {
  .our-services:not(.all-services) .bottom .container {
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    grid-template-rows: 1fr 1fr 1fr; 
    gap: 16px; 
    grid-template-areas: 
      "service-1 service-2"
      "service-3 service-4"
      "service-5 service-6";
  }

  .our-services.all-services .bottom .container {
    display: grid;
    grid-template-columns: auto auto;
    gap: 16px;
  }
}

@media screen and (max-width: 768px) {
  .our-services {
    padding: 60px 0;
  }

  .our-services.all-services {
    padding: 40px 0;
  }

  .our-services .top {
    flex-direction: column;
    gap: 32px;
  }

  .our-services .top .left {
    width: 100%;
  }

  .our-services .top .right {
    width: 100%;
    justify-content: flex-start;
  }

  .our-services .top .left h2 {
    font-size: 32px;
  }

  .our-services .top .left p {
    font-size: 14px;
    margin-top: 16px;
  }

  .our-services .bottom {
    margin-top: 32px;
  }

  .our-services:not(.all-services) .bottom .container {
    display: grid; 
    grid-template-columns: 1fr; 
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr; 
    gap: 16px; 
    grid-template-areas: 
      "service-1"
      "service-2"
      "service-3"
      "service-4"
      "service-5"
      "service-6";
  }

  .our-services.all-services .bottom .container {
    display: grid;
    grid-template-columns: auto;
    gap: 16px;
  }
}

/* Benefits */

.benefits {
  padding: 120px 0;
}

.benefits .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
}

.benefits .container .left {
  width: 650px;
  min-width: 694px;
  display: grid; 
    grid-template-columns: 1fr 1fr; 
    grid-template-rows: 1fr; 
    gap: 16px; 
    grid-template-areas: 
      "col-1 col-2";
}

.benefits .container .right {
  width: calc(100% - (650px + 80px));
}

.benefits .container .right h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--regular-text);
}

.benefits .container .left .col-1 { 
  grid-area: col-1; 
}

.benefits .container .left .col-2 { 
  grid-area: col-2; 
}

.benefits .container .left .col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.benefits .container .left .col .benefit {
  padding: 24px;
  border: 1px solid;
  border-image: linear-gradient(to right, #EE5543 -100%, rgba(238, 85, 67, 0) 100%) 1;
}

.benefits .container .left .col .benefit img {
  display: block;
}

.benefits .container .left .col .benefit h3 {
  margin-top: 12px;
  color: var(--primary);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.3;
}

.benefits .container .left .col .benefit p {
  color: var(--regular-text);
  font-size: 14px;
  font-weight: 300;
  margin-top: 12px;
  line-height: 1.2;
}

@media screen and (max-width: 1100px) {
  .benefits .container {
    flex-direction: column-reverse;
    gap: 60px;
  }

  .benefits .container .left {
    width: 100%;
    min-width: 100%;
  }

  .benefits .container .right {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .benefits {
    padding: 60px 0;
  }

  .benefits .container {
    gap: 32px;
  }

  .benefits .container .right h2 {
    font-size: 32px;
  }

  .benefits .container .left {
      display: flex;
      flex-direction: column;
      gap: 16px;
  }

  .benefits .container .left .col .benefit {
    padding: 16px;
  }

}

/* FAQ */

.faq {
  padding: 120px 0;
}

.faq .row {
  display: flex;
  justify-content: flex-end;
  gap: 100px;
  margin-top: 64px;
}

.faq .row .right {
  width: 50%;
  min-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq .row .left {
  width: calc(40% - 100px);
}

.faq .row .left h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--regular-text);
}

.faq .row .left p {
  font-weight: 300;
  color: var(--regular-text);
  margin-top: 26px;
  line-height: 1.3;
}

.faq .row .left .btn-container {
  margin-top: 26px;
}

.faq .row .right .faq-item {
  display: block;
  position: relative;
  padding: 24px;
  border: 1px solid;
  border-image: linear-gradient(to right, #EE5543 -100%, rgba(238, 85, 67, 0) 100%) 1;
  overflow: hidden;
  cursor: pointer;
}

.faq .row .right .faq-item::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #EE5543 -166.86%, rgba(238, 85, 67, 0) 100%);
  z-index: 2;
  transform: translate3d(-100%, 0, 0);
  transition: transform .4s ease;
}

.faq .row .right .faq-item.opened::before,
.faq .row .right .faq-item:hover::before {
  transform: translate3d(0, 0, 0);
}

.faq .row .right .faq-item::after {
  content: url('../img/nav-arrow-down.svg');
  position: absolute;
  top: 24px;
  right: 24px;
  transition: transform .2s ease;
}

.faq .row .right .faq-item.opened::after {
  transform: rotate(180deg);
}

.faq .row .right .faq-item .question {
  position: relative;
  z-index: 10;
  display: block;
  padding-right: 30px;
  font-size: 24px;
  color: var(--regular-text);
  font-weight: 600;
}

.faq .row .right .faq-item .answer {
  position: relative;
  z-index: 10;
  display: block;
  padding-top: 24px;
  color: var(--regular-text);
  font-size: 14px;
  line-height: 1.2;
  display: none;
}

@media screen and (max-width: 1100px) {
  .faq .row {
    justify-content: flex-start;
    gap: 64px;
    margin-top: 64px;
    flex-direction: column;
  }

  .faq .row .right {
    width: 100%;
    min-width: 100%;
  }

  .faq .row .left {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .faq {
    padding: 60px 0;
  }

  .faq .plus-heading {
    display: none;
  }

  .faq .row {
    justify-content: flex-start;
    gap: 32px;
    margin-top: 0;
    flex-direction: column;
  }

  .faq .row .left h2 {
    font-size: 32px;
  }

  .faq .row .left p {
    margin-top: 16px;
  }

  .faq .row .left .btn-container {
    margin-top: 26px;
  }

  .faq .row .right .faq-item {
    padding: 16px;
  }

  .faq .row .right .faq-item::after {
    top: 16px;
    right: 16px;
  }

  .faq .row .right .faq-item .question {
    padding-right: 30px;
    font-size: 18px;
  }

  .faq .row .right .faq-item .answer {
    padding-top: 16px;
  }

}

/* CTA */

.cta {
  padding: 32px 0;
}

.cta .cta-box {
  width: 895px;
  max-width: 100%;
  padding: 64px 120px;
  margin: 0 auto;
  background: linear-gradient(90deg, #EE5543 -166.86%, rgba(238, 85, 67, 0) 100%);
}

.cta .cta-box h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--regular-text);
  text-align: center;
}

.cta .cta-box p {
  margin-top: 20px;
  font-weight: 300;
  color: var(--regular-text);
  line-height: 1.3;
  text-align: center;
}

.cta .cta-box .btn-container {
  margin-top: 40px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .cta .cta-box {
    padding: 64px 16px;
  }

  .cta .cta-box h2 {
    font-size: 32px
  }

  .cta .cta-box p {
    font-size: 14px;
  }

  .cta .cta-box .btn-container {
    margin-top: 40px;
    text-align: center;
  }
}


/* Use Cases Slider */

.use-cases-slider {
  padding: 120px 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.use-cases-slider .top .container{
  display: flex;
  align-items: flex-start;
  gap: 50px;
}

.use-cases-slider .top .left {
  width: 50%;
}

.use-cases-slider .top .left h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--regular-text);
}

.use-cases-slider .top .left p {
  font-weight: 300;
  color: var(--regular-text);
  margin-top: 26px;
}

.use-cases-slider .top .right {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  width: 50%;
}

.use-cases-slider .top .right .uc-slider-nav {
  display: flex;
  flex-direction: row;
  gap: 12px;
}

.use-cases-slider .top .right .uc-slider-nav span {
  display: block;
  cursor: pointer;
}

.use-cases-slider .top .right .uc-slider-nav span img {
  width: 64px;
}

.use-cases-slider .top .right .uc-slider-nav span:hover img {
  filter: brightness(0) saturate(100%) invert(50%) sepia(23%) saturate(5631%) hue-rotate(332deg) brightness(93%) contrast(100%);
}

.use-cases-slider .bottom .uc-slider {
  overflow: hidden;
  margin-top: 20px;
}

.use-cases-slider .bottom .uc-slider .swiper-slide {
  width: 1015px;
  padding: 46px;
  display: block;
  border: 1px solid;
  border-image: linear-gradient(to right, #EE5543 -100%, rgba(238, 85, 67, 0) 100%) 1;
  position: relative;
  overflow: hidden;
}

.use-cases-slider .bottom .uc-slider .swiper-slide::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #EE5543 -166.86%, rgba(238, 85, 67, 0) 100%);
  z-index: 2;
  transform: translate3d(-100%, 0, 0);
  transition: transform .4s ease;
}

.use-cases-slider .bottom .uc-slider .swiper-slide.swiper-slide-active::before {
  transform: translate3d(0, 0, 0);
}

.use-cases-slider .bottom .uc-slider .swiper-slide::after {
  content: '+';
  display: inline-block;
  position: absolute;
  font-size: 16px;
  color: var(--primary);
  right: 0;
  bottom: 0;
  z-index: 20;
}

.use-cases-slider .bottom .uc-slider .swiper-slide > img {
  position: absolute;
  z-index: 5;
  top: 28px;
  left: 28px;
  display: block;
}

.use-cases-slider .bottom .uc-slider .swiper-slide .slide-content {
  position: relative;
  z-index: 10;
}

.use-cases-slider .bottom .uc-slider .swiper-slide .slide-content p {
  font-size: 16px;
  color: var(--regular-text);
  line-height: 1.5;
}

.use-cases-slider .bottom .uc-slider .swiper-slide .slide-content .author-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
}

.use-cases-slider .bottom .uc-slider .swiper-slide .slide-content .author-link .author {
  display: flex;
  align-items: center;
  gap: 20px;
}

.use-cases-slider .bottom .uc-slider .swiper-slide .slide-content .author-link .author img {
  width: 56px;
  height: 56px;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
}

.use-cases-slider .bottom .uc-slider .swiper-slide .slide-content .author-link .author .author-desc .name {
  display: block;
  color: var(--primary);
  font-size: 24px;
  font-weight: 500;
}

.use-cases-slider .bottom .uc-slider .swiper-slide .slide-content .author-link .author .author-desc .position {
  display: block;
  font-size: 16px;
  color: var(--regular-text);
}

.uc-top-mobile {
  display: none;
}

@media screen and (max-width: 1060px) {
  .use-cases-slider .bottom .uc-slider .swiper-slide {
    width: 342px;
    padding: 16px;
    flex-direction: column-reverse;
    gap: 32px;
    align-items: center;
  }

  .use-cases-slider .bottom .uc-slider .swiper-slide .slide-content p {
    font-size: 14px;
  }

  .use-cases-slider .bottom .uc-slider .swiper-slide .slide-content .author-link .author {
    gap: 12px;
  }

  .use-cases-slider .bottom .uc-slider .swiper-slide .slide-content .author-link .author img {
    width: 40px;
    height: 40px;
  }

  .use-cases-slider .bottom .uc-slider .swiper-slide .slide-content .author-link .author .author-desc .name {
    font-size: 16px;
  }

  .use-cases-slider .bottom .uc-slider .swiper-slide .slide-content .author-link .author .author-desc .position {
    font-size: 12px;
  }

  .use-cases-slider .bottom .uc-slider .swiper-slide .slide-content .author-link .btn {
    font-size: 12px;
  }
}

@media screen and (max-width: 768px) {
  .use-cases-slider {
    padding: 64px 0;
    display: flex;
    flex-direction: column-reverse;
    gap: 0;
  }

  .use-cases-slider .top .container{
    display: block;
    gap: 0;
  }

  .use-cases-slider .top .left {
    display: none;
  }

  .use-cases-slider .top .right {
    justify-content: center;
    width: 100%;
    margin-top: 60px;
  }

  .uc-top-mobile {
    display: block;
    margin-bottom: 10px;
  }

  .uc-top-mobile h2 {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--regular-text);
    text-align: center;
  }
}







/***** BLOG ARTICLE **********************************************************/

.blog-hero .container {
  position: relative;
}

.blog-hero .col-left {
  width: 850px;
  max-width: calc(100% - 100px);
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 236px 0 120px 0;
}

.blog-hero .col-left .date {
  display: block;
  font-size: 20px;
  font-weight: 400;
  color: var(--regular-text);
}

.blog-hero .col-left h1 {
  font-size: 48px;
  color: #fff;
  font-weight: 400;
  line-height: 1.16;
}

.blog-hero .col-left .meta {
  display: flex;
  align-items: center;
  gap: 24px;
}

.blog-hero .col-left .meta span {
  font-size: 16px;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-hero .sidebar {
  position: absolute;
  top: 160px;
  right: 0;
  z-index: 50;
  width: 30px;
}

.blog-hero .sidebar .text {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--regular-text);
  transform: rotate(90deg);
  position: absolute;
  top: 45px;
  right: -56px;
  width: 150px;
}

.blog-hero .sidebar .text span {
  display: inline-block;
  transition: all .8s ease;
  color: var(--primary);
}

.blog-hero .sidebar .text:hover span {
  transform: rotate(90deg);
}

.blog-hero .sidebar .social {
  display: flex;
  margin-top: 270px;
  flex-direction: column;
  gap: 10px;
}

@media screen and (max-width: 768px) {
  .blog-hero .col-left {
    max-width: 100%;
    gap: 32px;
    padding: 166px 0 64px 0;
  }

  .blog-hero .col-left .date {
    text-align: center;
  }

  .blog-hero .col-left h1 {
    font-size: 32px;
    text-align: center;
  }

  .blog-hero .col-left .meta {
   justify-content: flex-start;
  }
	
	.blog-hero .col-left .meta:after {
		content: '';
	}
	
	.blog-hero .col-left .meta .author {
		flex-grow: 1
	}

  .blog-hero .sidebar {
    display: none;
  }
}

.article-content .featured-image {
  padding: 60px 0;
}

.article-content .featured-image img {
  width: 100%;
}

.article-content .content h2 {
  font-weight: 500;
  font-size: 40px;
  line-height: 1.2;
  color: var(--regular-text);
  padding: 16px 0;
}

.article-content .content h3 {
  font-weight: 500;
  font-size: 32px;
  line-height: 1.2;
  color: var(--regular-text);
  padding: 16px 0;
}

.article-content .content h4 {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  color: var(--regular-text);
  padding: 16px 0;
}

.article-content .content h5,
.article-content .content h6
 {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
  color: var(--regular-text);
  padding: 16px 0;
}

.article-content .content p {
  font-size: 20px;
  color: var(--regular-text);
  padding: 16px 0;
}
.article-content .content a,
.article-content .content p a {
  color: var(--primary);
  font-size: 20px;
}

.article-content .content a:hover,
.article-content .content p a:hover {
  text-decoration: underline;
}

.article-content .content img {
  display: block;
  margin: 16px auto;
  max-width: 100%;
  height: auto;
}

.article-content .tags {
  margin-top: 60px;
  margin-bottom: 76px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: nowrap;
  overflow-x: auto;
}

.article-content .tags a {
  display: inline-block;
  vertical-align: top;
  padding: 8px 16px;
  color: var(--regular-text);
  border-radius: 18px;
  border: 1px solid var(--regular-text);
  font-size: 14px;
  white-space: nowrap;
}

.article-content .tags a:hover {
  background: var(--primary);
  border-color: var(--primary);
}

@media screen and (max-width: 768px) {
  .article-content .content h2 {
    font-size: 32px;
  }

  .article-content .content h3 {
    font-size: 24px;
  }

  .article-content .content h4 {
    font-size: 20px;
  }

  .article-content .content h5,
  .article-content .content h6
   {
    font-size: 18px;
  }

  .article-content .content p {
    font-size: 16px;
  }
  .article-content .content a,
  .article-content .content p a {
    font-size: 16px;
  }
}

.article-content .article-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 36px 0;
  border-top: 1px solid var(--primary);
  border-bottom: 1px solid var(--primary);
}

.article-content .article-bottom .bottom-meta {
  display: flex;
  align-items: center;
  gap: 24px;
}

.article-content .article-bottom .bottom-meta span {
  font-size: 16px;
  color: var(--regular-text);
  display: flex;
  align-items: center;
  gap: 10px;
}

.article-content .article-bottom .bottom-meta span img {
  filter: brightness(0) saturate(100%) invert(98%) sepia(2%) saturate(2879%) hue-rotate(119deg) brightness(131%) contrast(64%);
}

@media screen and (max-width: 768px) {
  .article-content .article-bottom {
    padding: 24px 0;
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
  }

  .article-content .article-bottom .bottom-meta {
    gap: 6px;
  }

  .article-content .article-bottom .bottom-meta span {
    font-size: 14px;
    gap: 4px;
  }
}


/* Comments */

.comments {
  padding: 50px 0;
}

.comments .container {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

.comments .container .right {
  width: 744px;
  max-width: 100%;
}

.comments .container .left {
  width: calc(100% - (744px + 50px));
}

.comments .container .right .row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.comments .container .right .row .col {
  display: block;
  width: calc(50% - 6px);
}

.comments .container .right .row .col input {
  display: inline-block;
  width: 100%;
  background: transparent;
  padding: 16px;
  border: 1px solid var(--regular-text);
  font-size: 14px;
  color: var(--regular-text);
  border-radius: 25px;
  outline: none;
  font-family: "Jura", sans-serif;
}

.comments .container .right .row .col input::placeholder {
  font-size: 14px;
  color: var(--regular-text);
}

.comments .container .right .textarea-wrapper {
  margin-top: 12px;
  padding: 16px;
  border: 1px solid var(--regular-text);
  border-radius: 25px;
}

.comments .container .right .textarea-wrapper textarea {
  background: transparent;
  border: none;
  outline: none;
  width: 100%;
  font-size: 14px;
  color: var(--regular-text);
  font-family: "Jura", sans-serif;
}

.comments .container .right .textarea-wrapper textarea::placeholder {
  font-size: 14px;
  color: var(--regular-text);
}

.comments .container .right .textarea-wrapper .btn-container {
  display: flex;
  justify-content: flex-end;
  margin-top: 12px;
}

.comments .container .right .comments-list {
  margin-top: 24px;
}

.comments .container .right .comments-list .comment {
  padding: 16px;
  border: 1px solid;
  border-image: linear-gradient(to right, #EE5543 -100%, rgba(238, 85, 67, 0) 100%) 1;
  margin-bottom: 12px;
}

.comments .container .right .comments-list .comment .name-time {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.comments .container .right .comments-list .comment .name-time .name {
  display: flex;
  align-items: center;
  gap: 16px;
}

.comments .container .right .comments-list .comment .name-time .name img {
  display: block;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}

.comments .container .right .comments-list .comment .name-time .name span {
  font-size: 16px;
  font-weight: 500;
  color: var(--regular-text);
}

.comments .container .right .comments-list .comment .name-time .time {
  font-size: 14px;
  color: var(--regular-text);
  opacity: 0.48;
}

.comments .container .right .comments-list .comment .text {
  margin-top: 12px;
  font-size: 16px;
  color: var(--regular-text);
}

.comments .container .right .comments-list .comment .like-reply {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}

.comments .container .right .comments-list .comment .like-reply .like {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  color: rgba(209, 209, 209, 0.48);
  font-size: 14px;
}

.comments .container .right .comments-list .comment .like-reply .like .image {
  display: block;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url('../img/like-empty.svg');
}

.comments .container .right .comments-list .comment .like-reply .like.liked .image {
  background-image: url('../img/like-filled.svg');
}

.comments .container .right .comments-list .comment .like-reply > a {
  color: var(--primary);
  font-size: 16px;
}

.comments .container .right .comments-list .comment .like-reply > a:hover {
  color: var(--regular-text);
}

.comments .container .right > .btn-container .btn {
  width: 100%;
}

@media screen and (max-width: 1100px) {
  .comments .container .right {
    width: 500px;
    max-width: 100%;
  }

  .comments .container .left {
    width: calc(100% - (500px + 50px));
  }
}

@media screen and (max-width: 768px) {
  .comments .container {
    flex-direction: column;
    gap: 30px;
  }

  .comments .container .right {
    width: 100%;
  }

  .comments .container .left {
    width: 100%;
  }
}

.related-articles {
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.related-articles .related-articles-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.related-articles .related-articles-top .ra-slider-nav {
  display: flex;
  flex-direction: row;
  gap: 12px;
}

.related-articles .related-articles-top .ra-slider-nav span {
  display: block;
  cursor: pointer;
}

.related-articles .related-articles-top .ra-slider-nav span img {
  width: 64px;
}

.related-articles .related-articles-top .ra-slider-nav span:hover img {
  filter: brightness(0) saturate(100%) invert(50%) sepia(23%) saturate(5631%) hue-rotate(332deg) brightness(93%) contrast(100%);
}

.related-articles .related-articles-middle {
  padding-left: 16px;
  margin-left: calc((100% - 1200px) / 2);
}

.related-articles .related-articles-middle .ra-slider {
  overflow: hidden;
}

.related-articles .related-articles-middle .ra-slider .swiper-slide {
  padding: 24px;
  width: 546px;
  border: 1px solid;
  border-image: linear-gradient(to right, #EE5543 -100%, rgba(238, 85, 67, 0) 100%) 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.related-articles .image img,
.related-articles .related-articles-middle .ra-slider .swiper-slide > img {
  display: block;
  width: 100%;
  height: 240px;
  /* object-fit: cover; */
  object-position: center;
}

.related-articles .related-articles-middle .ra-slider .swiper-slide .date {
  display: block;
  font-size: 14px;
  color: #fff;
}

.related-articles .related-articles-middle .ra-slider .swiper-slide .title {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;

  font-size: 24px;
  color: var(--primary);
  font-weight: 500;
  line-height: 1.3;
}

.related-articles .related-articles-middle .ra-slider .swiper-slide .author {
  display: block;
  font-size: 16px;
  color: var(--regular-text);
}

.related-articles .related-articles-middle .ra-slider .swiper-slide .btn-container {
  display: flex;
  justify-content: flex-end;
}

.related-articles .related-articles-bottom {
  display: none;
}

@media screen and (max-width: 1200px) {
  .related-articles .related-articles-middle {
    padding-left: 16px;
    margin-left: 0;
  }
}

@media screen and (max-width: 768px) {
  .related-articles {
    padding: 60px 0;
    flex-direction: column-reverse;
    gap: 30px;
  }

  .related-articles .related-articles-top .container {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .related-articles .related-articles-top .container h2 {
    display: none;
  }

  .related-articles .related-articles-middle .ra-slider .swiper-slide {
    width: 344px;
  }

  .related-articles .related-articles-bottom {
    display: block;
  }
}



/* 15.07.2024 */

	.clutch .swiper-slide {
		--gap: clamp(80px, 6.125vw, 98px);
		--size: clamp(132px, 9.75vw, 156px);

		width: calc(var(--size) + var(--gap)) !important;
		padding: 0 calc(var(--gap) * .5) !important;
	}

	.clutch .swiper-slide:first-child {
		width: calc(var(--size) + var(--gap) * .5) !important;
		padding-left: 0 !important;
	}

	.clutch .swiper-slide:last-child {
		width: calc(var(--size) + var(--gap) * .5) !important;
		padding-right: 0 !important;
	}

	.clutch .swiper-slide img {
		display: block;
		width: 100% !important;
		height: auto !important;
	}
	
	.menu-title {
		pointer-events: none;
	}

	.article-content .content {
		max-width: 794px;
		margin-left: auto;
		margin-right: auto;
	}

	@media only screen and (max-width: 767px) {
		.cases.use-cases + .clients {
			margin-top: 100px;
		}
	}

/* 15.07.2024 */


/* 17.07.2024 */
	
	@media(hover:hover) {
		#uaa_main_form .services_btn {
			transition: color .43s, background-color .43s;
		}
		
		#uaa_main_form .services_btn:hover {
			color: #fff;
			background-color: var(--primary);
			cursor: pointer;
		}
	}

/* 17.07.2024 */


/* 23.07.2024 */
	.clutch-wrapper {
		display: flex;
		justify-content: center;
	}
/* 23.07.2024 */

.tags span {
  margin-bottom: 2%;
}

ol {
  color: var(--regular-text);
}

details {
  color: var(--regular-text);
}

ul li::marker {
  color: #d1d1d1;   
}

ul li{
  color: #d1d1d1;
}

@media screen and (min-width: 901px) {
  .case.case-2 .arrow-link img, .case.case-3 .arrow-link img, .case.case-5 .arrow-link img {
    width: 64px;
  }

  .wpcf7-form-control.wpcf7-submit.has-spinner.btn.btn-primary {
    font-size: 16px;
    font-weight: 300;
    font-family: "Jura", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
  }

  #phone {
    padding: 0 36px !important;
 }
 
 .iti__country-list{
     background-color: #1B2428 !important;
     color: #D2D2D2 !important;
 }

 .form-row > .wpcf7-text {
  width: 80% !important;
}