:root {
  --red: #FB4D3D;
  --white: #fff;
  --black: #000;
  --gray: #FAFAFA;
  --dark-gray: #757575;
  --neutral: #424242;
  --lightblue: #A1DBF3;
  --middle-gray: #ebebeb;
  --violet: #963CBD;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*, *:after, *:before {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

body {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
}

h1, h2, h3, h4, .subtitle, .slogan {
  font-family: 'Exo 2', sans-serif;
}

h1 {
  font-size: 45px;
  line-height: 1.16;
  color: var(--white);
  font-weight: 700;
}

@media (min-width: 1024px) {
  h1 {
    font-size: 67px;
  }
}

h2 {
  font-size: 35px;
  color: var(--neutral);
}

@media (min-width: 1024px) {
  h2 {
    font-size: 50px;
  }
}

h2:has(+ p) {
  margin-bottom: 40px;
}

.cta {
  padding: 16px 24px;
  text-transform: uppercase;
  background-color: var(--red);
  color: var(--white);
  text-decoration: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
  font-weight: 500;
}

.cta:has(input) {
  padding: 0 16px 0 0;
}

.cta input {
  padding: 16px 0 16px 24px;
  text-transform: inherit;
  background-color: transparent;
  border: none;
  font-size: 18px;
  font-weight: 500;
  color: inherit;
  line-height: 1;
  font-family: inherit;
}

.cta.text-small {
  padding: 8px 20px;
}

.cta.arrow:after {
  content: url(img/arrow-right.svg);
  margin-left: 10px;
}

.radius-3px {
  border-radius: 3px;
}

.radius-4px {
  border-radius: 4px;
}

.bg-gray {
  background-color: var(--gray);
}

.bg-middle-gray {
  background-color: var(--middle-gray);
}

.bg-black {
  background-color: var(--gray);
  color: var(--white);
}

.bg-lightblue {
  background-color: var(--lightblue);
}

.bg-violet {
  background-color: var(--violet);
  color: var(--white);
}

.bg-violet .subtitle,
.bg-violet h2 {
  color: var(--white);
}

img {
  max-width: 100%;
  height: auto;
}

.text-small {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.33;
  color: var(--dark-gray);
}

@media (min-width: 1024px) {
  .text-small {
    font-size: 16px;
  }
}

.row {
  --bs-gutter-x: 40px;
}

.full-image {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.text-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 5vw;
  max-width: 500px;
}

.cta-white {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  color: #757575;
  text-decoration: none;
  padding: 8px 16px;
  border: 1px solid #BCBCBC;
}

.justify-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 1023px) {
  .mobile-block-padding {
    padding-block: 60px;
  }
}

@media (min-width: 1024px) {
  .text-desktop-right {
    text-align: right;
  }
}

.text-right {
  text-align: right;
}

@media (max-width: 1023px) {
  .mobile-padding-20px {
    padding-inline: 20px;
  }
}

@media (min-width: 1024px) {
  .mobile-only {
    display: none;
  }
}

@media (max-width: 1023px) {
  .desktop-only {
    display: none;
  }
}

header {
  background-color: var(--black);
  background-image: url(img/top-bg.png);
  background-position: right bottom;
  background-repeat: no-repeat;
}

header .aside {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .main-nav-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-block: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .main-nav-container nav ul {
  list-style: none;
  gap: 80px;
  margin: 0;
  font-weight: 600;
  font-size: 18px;
}

@media (min-width: 1024px) {
  header .main-nav-container nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

header .main-nav-container nav ul li a {
  color: var(--white);
  text-decoration: none;
}

@media (max-width: 1023px) {
  header .main-nav-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    padding: 0;
  }
}

header .row {
  min-height: 450px;
}

.about-us .container-xl {
  padding-block: 50px;
  border-bottom: 1px solid #E0E0E0;
}

@media (min-width: 1024px) {
  .about-us .container-xl {
    padding-block: 100px;
  }
}

.services {
  padding-block: 50px 40px;
}

@media (min-width: 1024px) {
  .services {
    padding-block: 100px 80px;
  }
}

.testimonial .slogan-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-block: 90px;
}

.testimonial .slogan-container .slogan {
  font-size: 35px;
  font-weight: 500;
}

@media (min-width: 1024px) {
  .testimonial .slogan-container .slogan {
    font-size: 50px;
  }
}

@media (max-width: 1023px) {
  .testimonial .slogan-container .slogan {
    margin-bottom: 40px;
  }
}

.testimonial .slogan-container .name {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
}

.testimonial .slogan-container .name img {
  margin-left: 10px;
}

.partners {
  padding-block: 50px;
}

@media (min-width: 1024px) {
  .partners {
    padding-block: 100px;
  }
}

@media (max-width: 1023px) {
  .partners .row > div:first-child {
    margin-bottom: 40px;
  }
}

.team {
  padding-block: 50px;
}

@media (min-width: 1024px) {
  .team {
    padding-block: 100px;
  }
}

.team ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 90px;
}

.team ul li {
  padding-block: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}

.team ul li:not(:last-child) {
  border-bottom: 1px solid #E0E0E0;
}

.people {
  background-size: 50%;
  background-repeat: no-repeat;
}

@media (min-width: 1024px) {
  .people .people-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.people .people-container > div {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}

.people .people-container h2 {
  color: var(--black);
}

.blog {
  padding-block: 50px;
}

@media (min-width: 1024px) {
  .blog {
    padding-block: 100px;
  }
}

.blog .blog-entry {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}

@media (max-width: 1023px) {
  .blog .row > div {
    margin-bottom: 40px;
  }
}

@media (min-width: 1024px) {
  .map .map-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.map .map-container > div {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}

@media (min-width: 1024px) {
  .contact {
    background: -webkit-gradient(linear, left top, right top, from(white), color-stop(80%, white), color-stop(80%, #a1dbf3), to(#a1dbf3));
    background: linear-gradient(90deg, white 0%, white 80%, #a1dbf3 80%, #a1dbf3 100%);
  }
}

.contact .left {
  padding-block: 50px 40px;
}

@media (min-width: 1024px) {
  .contact .left {
    padding-block: 100px 70px;
  }
}

.contact .consent {
  display: Flex;
  gap: 8px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.contact .consent input {
  margin-top: 5px;
}

footer {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.33;
  padding-block: 50px;
}

@media (min-width: 1024px) {
  footer {
    padding-block: 80px 70px;
  }
}

footer .border-top {
  border-top: 1px solid #757575;
}

footer a {
  color: var(--white);
  text-decoration: none;
}

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

footer ul li {
  margin-bottom: 20px;
}

footer .copyright {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  padding-block: 25px;
}

@media (min-width: 1024px) {
  footer .copyright {
    font-size: 16px;
  }
}

footer .footer-menu {
  margin-bottom: 70px;
}

@media (max-width: 1023px) {
  footer .footer-menu {
    margin-bottom: 30px;
  }
  footer .footer-menu > div:not(:last-of-type) {
    margin-bottom: 40px;
  }
}

footer .footer-logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
}

.post {
  margin-block: 45px;
}

@media (min-width: 1024px) {
  .post {
    margin-block: 90px;
  }
}

.post .post__title {
  margin-bottom: 45px;
}

.post .post__title h1 {
  color: var(--black);
}

.post .post__content h2, .post .post__content h3 {
  margin-bottom: .8em;
}

/* partials */
.tabs {
  margin-top: 40px;
}

@media (min-width: 1024px) {
  .tabs {
    margin-top: 80px;
  }
}

@media (max-width: 1023px) {
  .tabs > div {
    margin-bottom: 40px;
  }
}

.tabs .tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  padding: 50px;
  text-align: center;
}

@media (min-width: 1024px) {
  .tabs .tab {
    text-align: left;
  }
}

.logos {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (min-width: 1024px) {
  .logos {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}

form {
  margin-top: 80px;
}

form input[type=text],
form input[type=email],
form input[type=tel] {
  width: 100%;
  border: 1px solid #BDBDBD;
  border-radius: 4px;
  padding: 10px 16px;
  margin-bottom: 32px;
}

form input[type=text]::-webkit-input-placeholder,
form input[type=email]::-webkit-input-placeholder,
form input[type=tel]::-webkit-input-placeholder {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #757575;
}

form input[type=text]:-ms-input-placeholder,
form input[type=email]:-ms-input-placeholder,
form input[type=tel]:-ms-input-placeholder {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #757575;
}

form input[type=text]::-ms-input-placeholder,
form input[type=email]::-ms-input-placeholder,
form input[type=tel]::-ms-input-placeholder {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #757575;
}

form input[type=text]::placeholder,
form input[type=email]::placeholder,
form input[type=tel]::placeholder {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #757575;
}

@media (max-width: 1023px) {
  .container {
    max-width: 1050px;
    width: 90%;
    margin: auto;
  }
  .navbar {
    width: 100%;
    padding: 0;
    margin: 0;
  }
  .nav-container {
    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;
    height: 62px;
  }
  .navbar .menu-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
  }
  .navbar .menu-items ul {
    padding: 0;
  }
  .navbar .nav-container li {
    list-style: none;
  }
  .navbar .nav-container a {
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    font-size: 1.2rem;
    padding: 0.7rem;
  }
}

@media (max-width: 1023px) and (min-width: 1024px) {
  .navbar .nav-container a {
    color: var(--white);
  }
}

@media (max-width: 1023px) {
  .navbar .nav-container a:hover {
    font-weight: bolder;
  }
  .nav-container {
    display: block;
    position: relative;
    height: 60px;
  }
  .nav-container .checkbox {
    position: absolute;
    display: block;
    height: 32px;
    width: 32px;
    top: 20px;
    left: 20px;
    z-index: 5;
    opacity: 0;
    cursor: pointer;
  }
  .nav-container .hamburger-lines {
    display: block;
    height: 26px;
    width: 32px;
    position: absolute;
    top: 17px;
    left: 20px;
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .nav-container .hamburger-lines .line {
    display: block;
    height: 4px;
    width: 100%;
    border-radius: 10px;
    background: var(--white);
    opacity: .9;
  }
  .nav-container .hamburger-lines .line1 {
    -webkit-transform-origin: 0% 0%;
            transform-origin: 0% 0%;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }
  .nav-container .hamburger-lines .line2 {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  .nav-container .hamburger-lines .line3 {
    -webkit-transform-origin: 0% 100%;
            transform-origin: 0% 100%;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }
  .navbar .menu-items {
    padding-top: 120px;
    background-color: var(--white);
    height: 100vh;
    width: 100vw;
    -webkit-transform: translate(-150%);
            transform: translate(-150%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-left: -40px;
    -webkit-transition: -webkit-transform 0.5s ease-in-out;
    transition: -webkit-transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
    text-align: center;
  }
  .navbar .menu-items li {
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
    font-weight: 500;
  }
  .nav-container input[type=checkbox]:checked ~ .menu-items {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .nav-container input[type=checkbox]:checked ~ .hamburger-lines .line {
    background-color: var(--black);
  }
  .nav-container input[type=checkbox]:checked ~ .hamburger-lines .line1 {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .nav-container input[type=checkbox]:checked ~ .hamburger-lines .line2 {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
  .nav-container input[type=checkbox]:checked ~ .hamburger-lines .line3 {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  .nav-container input[type=checkbox]:checked ~ .logo {
    display: none;
  }
}

@media (min-width: 1024px) {
  .hamburger-lines, #hamburger {
    display: none;
  }
}

.lang_switcher {
  display: block;
  list-style: none;
  margin-bottom: 0;
}

.lang_switcher li {
  position: relative;
}

.lang_switcher a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.lang_switcher a img {
  margin-right: 8px;
}

.lang_switcher ul {
  float: left;
  padding-top: 30px;
  position: absolute;
  top: 100%;
  left: -999em;
  z-index: 99999;
  opacity: 0;
  text-align: left;
  padding-top: 30px;
  -webkit-transition: opacity 0.6s;
  transition: opacity 0.6s;
  margin: 0;
  padding: 0;
}

.lang_switcher ul a {
  width: 60px;
  display: block;
}

.lang_switcher li:hover ul {
  left: 0;
  opacity: 1;
}
