@charset "UTF-8";
*, ::before, ::after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  font-size: 100%;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #444;
  letter-spacing: 0.4px;
  word-spacing: normal;
  line-height: 1.425;
}

ul, ol {
  list-style-type: none;
}

li {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

button {
  all: unset;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

img,
picture,
svg,
video {
  display: block;
  max-width: 100%;
}

input,
textarea {
  width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

@font-face {
  font-family: "icomoon";
  src: url("../assets/fonts/icomoon.ttf") format("truetype"), url("../assets/fonts/icomoon.woff") format("woff"), url("../assets/fonts/icomoon.svg") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: "Poppins";
  src: url("../assets/fonts/Poppins-Bold.woff2") format("woff2"), url("../assets/fonts/Poppins-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../assets/fonts/Poppins-BoldItalic.woff2") format("woff2"), url("../assets/fonts/Poppins-BoldItalic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../assets/fonts/Poppins-Medium.woff2") format("woff2"), url("../assets/fonts/Poppins-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../assets/fonts/Poppins-Regular.woff2") format("woff2"), url("../assets/fonts/Poppins-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../assets/fonts/Poppins-Thin.woff2") format("woff2"), url("../assets/fonts/Poppins-Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
.about {
  padding-block: 50px;
}
@media (min-width: 992px) {
  .about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

.header-main {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 20px 0;
}
@media (min-width: 576px) {
  .header-main {
    padding: 0;
    padding-top: 20px;
  }
}
@media (min-width: 768px) {
  .header-main {
    padding-bottom: 20px;
  }
}

.header-secondary {
  padding-bottom: 20px;
}
@media (min-width: 576px) {
  .header-secondary {
    margin-top: 11px;
  }
}
@media (min-width: 768px) {
  .header-secondary {
    display: none;
  }
}

.nav {
  display: none;
  position: relative;
}
@media (min-width: 992px) {
  .nav {
    display: block;
  }
}

.news {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1260px) {
  .news {
    padding-bottom: 50px;
  }
}

.about {
  color: #fff;
  background-color: #323544;
}
.about .welcome {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  grid-column: span 1;
}
.about .welcome__title {
  margin-bottom: 40px;
  font-size: 2.25rem;
  font-weight: 600;
}
@media (min-width: 992px) {
  .about .welcome__title {
    word-spacing: -1px;
  }
}
.about .welcome__info {
  margin-bottom: 25px;
  line-height: 1.875rem;
  font-weight: 400;
}
.about .welcome__info:first-of-type {
  font-weight: 600;
}
.about .welcome__info a {
  text-decoration: none;
  border: none;
}
.about .welcome__info a:hover {
  text-decoration: underline;
}
.about .welcome__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 3px;
  cursor: pointer;
}
.about .welcome__button::after {
  content: "\ea3c";
  font-family: "icomoon" !important;
  color: inherit;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-left: 10px;
}
.about .welcome__button {
  font-size: 1.25rem;
  background-color: #272936;
  padding: 10px 30px;
  margin-bottom: 17px;
  text-transform: uppercase;
  line-height: 35px;
  transition: 0.2s ease-in-out;
}
.about .welcome__button:last-child {
  margin: 0;
  margin-bottom: 50px;
}
@media (min-width: 576px) {
  .about .welcome__button:last-child {
    margin-left: 10px;
  }
}
@media (min-width: 992px) {
  .about .welcome__button:last-child {
    margin-left: 0;
    margin-bottom: 0;
  }
}
.about .welcome__button:hover {
  text-decoration: none;
  background-color: #121318;
}
@media (min-width: 576px) {
  .about .welcome__button {
    margin-bottom: 50px;
  }
}
@media (min-width: 992px) {
  .about .welcome__button {
    margin-bottom: 0;
  }
  .about .welcome__button:first-of-type {
    margin-bottom: 17px;
  }
}
@media (min-width: 1260px) {
  .about .welcome__button:first-of-type {
    margin-bottom: 0;
  }
  .about .welcome__button:last-child {
    margin-left: 10px;
  }
}
.about .clients {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  grid-column: span 1;
}
.about .clients__title {
  font-size: 2.25rem;
  font-weight: 600;
  margin-bottom: 40px;
  margin-right: auto;
  flex: 1 0 100%;
  text-align: left;
}
.about .clients__star {
  margin-bottom: 25px;
}
.about .clients__star:after {
  content: "\e9d9";
  font-family: "icomoon" !important;
  font-size: 3rem;
  color: orange;
}
.about .clients__quote {
  margin-top: 25px;
  margin-bottom: 25px;
  font-size: 1.3rem;
  font-weight: 600;
  font-style: italic;
  text-align: left;
}
.about .clients__quoter-name {
  font-weight: 600;
  color: #a3a8ac;
  font-size: 1.1rem;
  margin-bottom: 25px;
  text-align: left;
}
.about .clients__quoter-company {
  text-decoration: none;
  border: none;
}
.about .clients__quoter-company:hover {
  text-decoration: underline;
}
.about .clients__quoter-company {
  color: #fff;
}
.about .clients__button--google {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 3px;
  cursor: pointer;
}
.about .clients__button--google::after {
  content: "\ea3c";
  font-family: "icomoon" !important;
  color: inherit;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-left: 10px;
}
.about .clients__button--google {
  text-transform: uppercase;
  font-size: 1.25rem;
  padding: 10px 30px;
  margin-top: 20px;
  background-color: #4387f6;
  transition: 0.2s ease-in-out;
}
.about .clients__button--google:hover {
  text-decoration: none;
  background-color: #166af4;
}
.about .clients__button--trustpilot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 3px;
  cursor: pointer;
}
.about .clients__button--trustpilot::after {
  content: "\ea3c";
  font-family: "icomoon" !important;
  color: inherit;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-left: 10px;
}
.about .clients__button--trustpilot {
  text-transform: uppercase;
  font-size: 1.25rem;
  padding: 10px 30px;
  margin-top: 20px;
  background-color: #00b67b;
  transition: 0.2s ease-in-out;
}
.about .clients__button--trustpilot:hover {
  text-decoration: none;
  background-color: #009b69;
}
@media (min-width: 576px) {
  .about .clients__button--trustpilot {
    margin-left: 8px;
    line-height: 35px;
  }
}
@media (min-width: 992px) {
  .about .clients__button--trustpilot {
    margin-left: 0;
  }
}
@media (min-width: 1260px) {
  .about .clients__button--trustpilot {
    margin-left: 8px;
    word-spacing: -2px;
  }
}

.slick-dots {
  bottom: 25px !important;
  height: 30px;
}
.slick-dots li.slick-active button:before {
  color: #fff;
  opacity: 1;
}

.slick-dots li button:before {
  font-size: 12px;
  color: #fff;
}

.slick-dots li button::before .slick-dots li button:hover,
.slick-dots li button:focus {
  color: #fff;
  outline: 2px;
  outline-offset: 4px;
}

.slick-dots li.slick-active button::after {
  content: "";
  position: absolute;
  top: 45%;
  left: 50%;
  width: 23px;
  height: 23px;
  border: 2px solid white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.banner-slider {
  overflow-x: hidden;
  max-height: 550px;
}
.banner-slider__container {
  max-height: 550px;
  overflow-y: hidden;
  scrollbar-width: none;
}
.banner-slider__slide {
  display: grid;
  position: relative;
  min-height: 550px;
  max-height: 550px;
}
.banner-slider__media {
  position: relative;
  grid-area: 1/1;
  width: 100%;
  height: 100%;
}
.banner-slider__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, rgb(17, 17, 17) 0%, rgb(17, 17, 17) 9%, rgba(17, 17, 17, 0.48) 35%, rgba(17, 17, 17, 0) 100%);
}
.banner-slider__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.banner-slider__content {
  grid-area: 1/1;
  position: relative;
  z-index: 4;
  max-width: 100%;
  max-height: 550px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  color: #ffffff;
}
@media (min-width: 992px) {
  .banner-slider__content {
    align-items: flex-start;
  }
}
.banner-slider__title {
  margin: 0 0 1.25rem;
  font-size: 2.5rem;
  line-height: 3rem;
  text-align: center;
}
@media (min-width: 1260px) {
  .banner-slider__title {
    margin-bottom: 0.5rem;
    font-size: 4rem;
    line-height: 5rem;
    text-align: left;
  }
}
.banner-slider__text {
  text-align: center;
}
@media (min-width: 576px) {
  .banner-slider__text {
    margin-bottom: 0.375rem;
    font-size: 1.625rem;
    font-weight: 600;
    line-height: 2.5rem;
    text-align: left;
  }
}
.banner-slider__button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.125rem;
  font-weight: 400;
  text-transform: uppercase;
  border-radius: 4px;
  margin-block-start: 1.938rem;
  margin-block-end: 1.125rem;
  transition: background-color 0.3s ease;
}
.banner-slider__button::after {
  content: "\ea3c";
  font-family: "icomoon" !important;
  color: inherit;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-left: 10px;
  font-size: 1.125rem;
}

.purple-bg {
  background-color: #926fb1;
}
.purple-bg:hover {
  background-color: rgb(120.6351351351, 83.2702702703, 153.7297297297);
}

.yellow-bg {
  background-color: #f7b322;
}
.yellow-bg:hover {
  background-color: rgb(221.9650655022, 153.6681222707, 8.0349344978);
}

.pink-bg {
  background-color: #f62459;
}
.pink-bg:hover {
  background-color: rgb(221.8815789474, 9.1184210526, 62.8157894737);
}

.red-bg {
  background-color: #d64541;
}
.red-bg:hover {
  background-color: rgb(187.5324675325, 44.4155844156, 40.4675324675);
}

.green-bg {
  background-color: #2ecc71;
}
.green-bg:hover {
  background-color: rgb(36.616, 162.384, 89.948);
}

.blue-bg {
  background-color: #4183d7;
}
.blue-bg:hover {
  background-color: rgb(39.8260869565, 105.5391304348, 189.1739130435);
}

.slick-slide {
  height: auto !important;
}

.clients {
  text-align: center;
  color: #fff;
}
.clients__slick-container {
  overflow: visible;
  padding-block: 50px;
}
.clients__item {
  position: relative;
  padding-inline: 20px;
  margin-inline-end: 50px;
}
.clients__item::after {
  content: "";
  position: absolute;
  top: -64px;
  left: 0;
  right: 0;
  height: 35px;
}
.clients__item:hover .clients__image {
  filter: grayscale(0);
}
.clients__description {
  position: absolute;
  display: none;
  bottom: calc(100% + 60px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 280px;
}
.clients__description-box {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 20px;
  background-color: #323544;
}
.clients__description-box > h3 {
  padding-block-end: 17px;
  font-size: 1.125rem;
  margin: 0;
}
.clients__description-box > p {
  font-size: 0.8125rem;
  line-height: 1.375rem;
  margin-bottom: 0;
}
.clients__description-box::after {
  content: "";
  position: absolute;
  bottom: -34px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 35px;
  background-color: #323544;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.clients__link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 3px;
  cursor: pointer;
  padding: 15px 10px;
  background-color: #f7b322;
  border-radius: 6px;
  margin-top: 15px;
  text-transform: uppercase;
}
.clients__link-btn::after {
  content: "\ea3c";
  font-family: "icomoon" !important;
  color: inherit;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-left: 10px;
}
.clients__image-box {
  width: 100%;
}
.clients__image {
  max-height: 70px;
  width: auto !important;
  max-width: 200px;
  filter: grayscale(1);
  transition: filter 0.6s ease-in-out;
}

.clients__item:hover .clients__description {
  display: block;
}

.slick-list {
  overflow: visible;
}

.btn-green {
  background-color: #00b67b;
}
.btn-green:hover {
  background-color: rgb(0, 131, 88.532967033);
}

.btn-purple {
  background-color: #926fb1;
}
.btn-purple:hover {
  background-color: rgb(120.6351351351, 83.2702702703, 153.7297297297);
}

.btn-blue {
  background-color: #4183d7;
}
.btn-blue:hover {
  background-color: rgb(39.8260869565, 105.5391304348, 189.1739130435);
}

.breadcrumbs {
  display: none;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 5px 35px rgba(0, 0, 0, 0.1);
  padding: 14px 0 13px;
  border-top: 1px solid #000;
}
@media (min-width: 768px) {
  .breadcrumbs {
    display: block;
  }
}
.breadcrumbs .breadcrumb-list {
  display: flex;
  flex-direction: row;
}
.breadcrumbs .breadcrumb-list__item {
  font-size: 0.8125rem;
  font-weight: 700;
}
.breadcrumbs .breadcrumb-list__item:nth-child(2) {
  font-weight: 400;
}
.breadcrumbs .breadcrumb-list__item:nth-child(2)::before {
  content: " / ";
}

.section-top {
  width: 100%;
  padding-block: 24px;
  background-color: #333645;
}
@media (min-width: 992px) {
  .section-top {
    padding-block-start: 50px;
    background-color: transparent;
  }
}
.section-top__heading-container h1 {
  line-height: 1.1;
  color: #fff;
  font-size: 2.25rem;
  font-weight: 400;
  max-width: 750px;
}
@media (min-width: 992px) {
  .section-top__heading-container h1 {
    margin-block-end: 20px;
    color: #333645;
  }
}

.office-cards {
  width: 100%;
  margin-block-start: 50px;
}
.office-cards .container > div {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 30px;
  margin-block-end: 40px;
  margin-block-start: 20px;
}
@media (min-width: 992px) {
  .office-cards .container > div {
    flex-direction: row;
  }
}
.office-cards .location-card {
  max-width: 100%;
  margin-block-start: 20px;
}
@media (min-width: 992px) {
  .office-cards .location-card {
    width: 33.3333%;
  }
}
.office-cards .location-card__container {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #ccc;
  border-radius: 20px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  box-shadow: 0 3px 35px rgba(0, 0, 0, 0.1);
}
.office-cards .location-card__info-container {
  padding: 30px;
}
.office-cards .location-card__heading {
  margin-block-end: 15px;
}
.office-cards .location-card__heading a {
  font-size: 1.25em;
  color: #333645;
  text-decoration: none;
  font-weight: 400;
}
.office-cards .location-card__address {
  font-size: 0.8125rem;
  line-height: 1.375rem;
  font-weight: 400;
  margin-block-end: 15px;
}
.office-cards .location-card__contact-number a {
  font-size: 1.625rem;
  font-weight: 700;
  color: #926fb1;
}
.office-cards .location-card__contact-number a:hover {
  text-decoration: underline;
}
.office-cards .location-card__link-container {
  margin-top: 15px;
}
.office-cards .location-card__link-container a {
  display: inline-block;
  height: auto;
  padding: 5px 30px;
  font-size: 0.9em;
  line-height: 35px;
  text-transform: uppercase;
  color: #fff;
  background: #926fb1;
  border-radius: 3px;
}
.office-cards .location-card__link-container a:hover {
  background-color: #7e57a0;
}

.contact {
  width: 100%;
}
.contact-container {
  display: flex;
  flex-direction: column-reverse;
  padding-block-end: 50px;
}
@media (min-width: 1260px) {
  .contact-container {
    flex-direction: row;
  }
}
.contact-form {
  flex: 0 0 66%;
}
.contact-form form {
  padding: 30px;
  background-color: #e6e7e9;
  border-radius: 10px;
}
.contact-form form input:focus, .contact-form form input:focus-visible, .contact-form form textarea:focus, .contact-form form textarea:focus-visible {
  border: 1px solid #e5e5e5;
  border-color: #5bc0de;
  border-radius: 2px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(91, 192, 222, 0.6);
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  outline: 0;
}
.contact-form__validation-message {
  color: green;
  background-color: #ffffff;
  padding: 5px 15px;
  margin: 5px 15px;
  width: 80%;
}
.contact-form__validation-message > div {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.contact-form__details-container {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .contact-form__details-container {
    flex-direction: row;
  }
}
.contact-form__details-container .contact__element {
  flex: 0 0 50%;
  padding-inline: 15px;
  margin-block-end: 15px;
}
.contact-form__details-container .contact__element label {
  display: inline-block;
  margin-block-end: 5px;
  color: #333645;
  font-weight: 600;
}
.contact-form__details-container .contact__element label::after {
  content: " *";
  color: red;
}
.contact-form__details-container .contact__element label:nth-of-type(2)::after {
  content: "";
}
.contact-form__details-container .contact__element input {
  width: 100%;
  height: 47px;
  padding: 5px 15px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 2px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.contact-form__message-container {
  padding-inline: 15px;
}
.contact-form__message-container label {
  display: inline-block;
  width: 100%;
  margin-block-end: 5px;
  color: #333645;
  font-weight: 600;
}
.contact-form__message-container label::after {
  content: " *";
  color: red;
}
.contact-form__message-container textarea {
  min-height: 100px;
  height: 100px;
  padding: 5px 15px;
}
.contact-form__marketing-container {
  padding-inline: 15px;
}
.contact-form__marketing-container > div {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 2rem;
  margin-block-end: 15px;
}
.contact-form__marketing-container > div > input[type=checkbox] {
  flex: 1 0 10px;
  align-self: flex-start;
}
.contact-form__marketing-container > div > div > p {
  color: #333645;
  font-weight: 600;
  line-height: 32px;
  cursor: pointer;
}
.contact-form__marketing-container > div > div > p > a:hover {
  text-decoration: underline;
}
.contact-form__submission-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.contact-form__submission-container > button {
  display: inline-block;
  height: auto;
  padding: 5px 15px;
  text-transform: uppercase;
  font-size: 1.063rem;
  line-height: 35px;
  border-radius: 3px;
  white-space: normal;
  color: #fff;
  background-color: #333645;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  border: 1px solid transparent;
}
.contact-form__submission-container > button:hover {
  background-color: #22242e;
  border-color: #191a22;
}
.contact-form__submission-container > div > span {
  color: red;
}
.contact-info {
  flex: 0 0 33%;
  padding-inline: 15px;
}
.contact-info__details > p {
  margin-block-end: 25px;
}
.contact-info__details > p > a {
  color: #926fb1;
  font-size: 1.625rem;
  font-weight: 600;
}
.contact-accordian {
  overflow-y: hidden;
}
.contact-accordian__container {
  height: 31px;
  transition: height 0.3s ease-in;
}
.contact-accordian__header {
  cursor: pointer;
  font-size: 1rem;
  line-height: 1.875rem;
  margin-bottom: 25px;
}
.contact-accordian__details p {
  margin-block-end: 25px;
  line-height: 1.875rem;
  font-size: 1rem;
  letter-spacing: 0.4px;
  color: #666;
}

.cookies > button {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  background-color: #fff;
  border: 2px solid green;
}

#cookies-dialog {
  width: 83.5%;
  max-width: 600px;
  border-radius: 8px;
  border: none;
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.2);
  margin: auto;
}
#cookies-dialog::backdrop {
  background-color: rgba(0, 0, 0, 0.7);
}
#cookies-dialog > .cookies__information {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#cookies-dialog hr {
  width: 100%;
  height: 2px;
  border: none;
  background-color: rgba(135, 135, 135, 0.2);
}
#cookies-dialog .cookies__header {
  align-self: flex-start;
  width: 100%;
  padding: 15px 20px;
}
#cookies-dialog .cookies__header > h3 {
  font-size: 1.625rem;
  font-weight: 400;
  color: #333645;
}
#cookies-dialog .cookies__body {
  padding: 20px;
}
#cookies-dialog .cookies__body > p {
  line-height: 1.875rem;
  margin-bottom: 25px;
  color: #444;
}
#cookies-dialog .cookies__body > p a {
  color: #333645;
}
#cookies-dialog .cookies__footer {
  padding: 18px 20px 20px 20px;
  width: 100%;
}
#cookies-dialog .cookies__footer > div {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
@media (min-width: 1260px) {
  #cookies-dialog .cookies__footer > div {
    flex-wrap: nowrap;
  }
}
#cookies-dialog .cookies__footer button {
  width: 100%;
  height: auto;
  padding: 5px 15px;
  border-radius: 3px;
  color: #fff;
  font-size: 1.063rem;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 35px;
  text-align: center;
  background-color: #926fb1;
}
#cookies-dialog .cookies__footer button:first-child {
  margin-bottom: 30px;
  background-color: #999aa2;
}
@media (min-width: 768px) {
  #cookies-dialog .cookies__footer button:first-child {
    margin-bottom: 0;
    margin-right: 30px;
  }
}
@media (min-width: 768px) {
  #cookies-dialog .cookies__footer button {
    width: 232px;
  }
}

.footer {
  color: #fff;
  font-size: 1rem;
  background-color: #323544;
  padding-top: 27px;
  position: relative;
}
@media (min-width: 1260px) {
  .footer {
    padding-top: 47px;
  }
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .footer__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 1260px) {
  .footer__grid {
    grid-template-columns: 1fr repeat(4, 200px);
    grid-template-rows: 1fr;
  }
}
.footer__menu {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}
.footer__heading {
  font-size: 1rem;
  text-transform: uppercase;
  margin: 0;
  margin-block-end: 26px;
  font-weight: 400;
  line-height: 1.1;
}
.footer__list {
  list-style-type: none;
  padding-inline-start: 0;
}
.footer__item {
  font-size: 0.8125rem;
  line-height: 1.375rem;
  font-weight: 400;
}
.footer__item:hover {
  text-decoration: underline;
}

.link--underline {
  text-decoration: none;
  border: none;
}
.link--underline:hover {
  text-decoration: underline;
}

.bottom {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-content: flex-start;
  padding-top: 15px;
  padding-bottom: 10px;
  width: 100%;
  background-color: #212330;
  color: #fff;
}
.bottom__item {
  font-weight: 400;
  font-size: 0.8125rem;
  line-height: 1.275;
}
@media (min-width: 768px) {
  .bottom__item {
    display: inline-block;
    padding-left: 0;
    padding-right: 0;
    margin-left: 10px;
  }
  .bottom__item--dash::before {
    content: " - ";
    margin-right: 5px;
  }
}
@media (min-width: 768px) {
  .bottom {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
}

.socials {
  width: 100%;
}
.socials__company-logo {
  width: 320px;
  height: 65px;
}
.socials__heading {
  font-size: 1rem;
  text-transform: uppercase;
  color: #fff;
  margin-block-start: 24px;
  margin-block-end: 26px;
  font-weight: 400;
}
.socials__container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-bottom: 30px;
  width: 240px;
}
@media (min-width: 576px) {
  .socials__container {
    width: 100%;
  }
}
.socials__link {
  display: block;
  padding: 12px 22px 16px 22px;
  width: 109px;
  height: 58px;
  margin-inline-end: 7px;
  background-color: #212330;
  position: relative;
  cursor: pointer;
}
@media (min-width: 576px) {
  .socials__link {
    width: 58px;
  }
}
.socials__link--facebook::before {
  content: "\ea90";
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: 7px;
  left: 14px;
  font-size: 2rem;
}
.socials__link--instagram::before {
  content: "\ea92";
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: 7px;
  left: 14px;
  font-size: 2rem;
}
.socials__link--x::before {
  content: "\e900";
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: 7px;
  left: 14px;
  font-size: 2rem;
}
.socials__link--in::before {
  content: "\eaca";
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: 7px;
  left: 14px;
  font-size: 2rem;
}
@media (min-width: 768px) {
  .socials {
    grid-column: span 2;
  }
}
@media (min-width: 992px) {
  .socials {
    grid-column: span 4;
  }
}
@media (min-width: 1260px) {
  .socials {
    grid-column: span 1;
  }
}

.fb-bg, .ig-bg {
  margin-bottom: 7px;
}
@media (min-width: 576px) {
  .fb-bg, .ig-bg {
    margin-bottom: 0;
  }
}

.fb-bg:hover {
  background-color: #3b5998;
}

.ig-bg:hover {
  background-color: #d93175;
}

.tw-bg:hover {
  background-color: #00aced;
}

.li-bg:hover {
  background-color: #0077b5;
}

/* When this class is added, the sticky point becomes the actual top of the screen */
.header.is-visible {
  top: 0 !important;
}

/* This handles the 'natural' state when you are at the very top of the page */
.header.at-top {
  position: relative;
  top: 0 !important;
}

.header {
  background-color: #fff;
  position: sticky;
  z-index: 10000;
  top: -100px;
  transition: top 0.3s ease-in-out;
}
.header__main {
  display: flex;
  align-items: center;
  padding: 20px 0;
}
@media (min-width: 576px) {
  .header__main {
    padding-bottom: 0;
  }
}
@media (min-width: 768px) {
  .header__main {
    padding-bottom: 20px;
  }
}
.header__logo-container {
  margin-right: auto;
}
@media (min-width: 1260px) {
  .header__logo-container {
    width: 370px;
    padding: 0 15px;
  }
}
.header__full-logo {
  display: block;
  width: 100%;
}
.header__link-container {
  display: none;
}
@media (min-width: 992px) {
  .header__link-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-right: 20px;
  }
}
.header__support-btn::before {
  content: "\e939";
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.25rem;
  margin-right: 4px;
  color: #fff;
}
.header__support-btn:hover {
  background-color: rgb(38.9565217391, 103.2347826087, 185.0434782609);
}
.header__support-btn {
  text-transform: uppercase;
  white-space: normal;
  font-size: 1.125rem;
  line-height: 46px;
  padding: 5px 15px;
  border-radius: 3px;
  background-color: #4183d7;
  color: #fff;
  color: #fff;
  display: block;
  height: 56px;
}
.header__contact-btn::before {
  content: "\e970";
  font-family: "icomoon" !important;
  color: #999aa2;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.25rem;
  margin-right: 4px;
  color: #fff;
}
.header__contact-btn:hover {
  background-color: rgb(120.1846153846, 121.4769230769, 131.8153846154);
}
.header__contact-btn {
  text-transform: uppercase;
  white-space: normal;
  font-size: 1.125rem;
  line-height: 46px;
  padding: 5px 15px;
  border-radius: 3px;
  background-color: #999aa2;
  color: #fff;
  color: #fff;
  display: block;
  height: 56px;
}
.header__search-container {
  display: none;
}
@media (min-width: 768px) {
  .header__search-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
}
.header__form {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.header__search-btn::before {
  content: "\e986";
  font-family: "icomoon" !important;
  color: #999aa2;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.5rem;
  color: #fff;
}
.header__search-btn:hover {
  background-color: rgb(120.1846153846, 121.4769230769, 131.8153846154);
}
.header__search-btn {
  height: 56px;
  padding: 0 20px 0;
  border: none;
  border-radius: 0 3px 3px 0;
  background-color: #999aa2;
  cursor: pointer;
}
@media (min-width: 992px) {
  .header__search-btn {
    border-radius: 3px;
    padding: 0 20px 0;
  }
}
@media (min-width: 1260px) {
  .header__search-btn {
    border-radius: 0 3px 3px 0;
  }
}
.header__small-input {
  width: 174px;
  height: 56px;
  border: 1px solid #e5e5e5;
  background-color: #fff;
  padding: 5px 15px;
  font-family: "Poppins", "sans-serif";
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  transition: box-shadow 0.3s ease-in-out;
}
.header__small-input:focus, .header__small-input:focus-visible {
  border: 1px solid #5bc0de;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(91, 192, 222, 0.6);
  outline: none;
}
@media (min-width: 768px) {
  .header__small-input {
    margin-left: 15px;
  }
}
@media (min-width: 992px) {
  .header__small-input {
    display: none;
  }
}
@media (min-width: 1260px) {
  .header__small-input {
    display: block;
    width: 240px;
    margin-left: 0;
  }
}
.header__phone-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 56px;
  margin-top: auto;
  margin-bottom: auto;
  cursor: pointer;
}
@media (min-width: 768px) {
  .header__phone-container {
    display: none;
  }
}
.header__phone-icon-link {
  text-decoration: none;
  border: none;
}
.header__phone-icon-link:hover {
  text-decoration: underline;
}
.header__phone-icon-link {
  margin-left: 15px;
}
.header__phone-icon::before {
  content: "\e942";
  font-family: "icomoon" !important;
  font-size: 2rem;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.header__burger-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 63px;
  height: 56px;
  padding: 5px 15px;
  margin-top: auto;
  margin-bottom: auto;
  margin-left: 20px;
  background-color: #323544;
  border-radius: 4px;
  cursor: pointer;
}
.header__burger-icon {
  display: inline-block;
  position: relative;
  width: 33px;
  height: 4px;
  z-index: 1;
  background-color: #fff;
  transition: all 0.3s ease;
}
.header__burger-icon::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 33px;
  height: 4px;
  z-index: 1;
  top: -10px;
  background-color: #fff;
  transition: all 0.3s ease 0.1s;
}
.header__burger-icon::after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 33px;
  height: 4px;
  z-index: 1;
  top: 10px;
  background-color: #fff;
  transition: all 0.3s ease 0.1s;
}
.header__burger-container--active .header__burger-icon {
  background-color: transparent;
}
.header__burger-container--active .header__burger-icon::before {
  transform: translateY(10px) rotate(315deg);
}
.header__burger-container--active .header__burger-icon::after {
  transform: translateY(-10px) rotate(-315deg);
}
.header__secondary {
  padding-bottom: 20px;
}
@media (min-width: 576px) {
  .header__secondary {
    margin-top: 11px;
  }
}
@media (min-width: 768px) {
  .header__secondary {
    display: none;
  }
}
.header__secondary-search-wrapper {
  position: relative;
  height: 40px;
}
.header__secondary-input {
  font-size: 14px;
  color: #555;
  background-color: rgba(0, 0, 0, 0.1);
  outline: 1px solid hsla(0, 0%, 100%, 0.2);
  border: 2px solid rgba(0, 0, 0, 0.1);
  transition: none;
  width: 100%;
  height: 47px;
  padding: 5px 40px 5px 15px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.header__secondary-search-btn::before {
  content: "\e986";
  font-family: "icomoon" !important;
  color: #999aa2;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  font-size: 1.5rem;
  color: #000;
  right: 10px;
  top: 10px;
}

.nav {
  position: relative;
  background-color: #323544;
}
.nav__wrapper {
  display: flex;
  color: #fff;
}
.nav__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 19px 0 18px 0;
}
.nav__link small {
  font-size: 0.625rem;
}
@media (min-width: 1260px) {
  .nav__link {
    font-size: 1.125rem;
  }
}
@media (min-width: 992px) {
  .nav__item {
    width: 167px;
  }
}
@media (min-width: 1260px) {
  .nav__item {
    width: 167px;
  }
}
.nav__item:hover .nav__link::after {
  content: "";
  position: absolute;
  top: 98px;
  left: 50%;
  transform: translateX(-50%);
  width: 139px;
  height: 18px;
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
  z-index: 20;
}
@media (min-width: 1260px) {
  .nav__item:hover .nav__link::after {
    width: 170px;
    height: 36px;
  }
}
.nav__item--consultancy:hover {
  background-color: #f7b322;
}
.nav__item--consultancy:hover .nav__consultancy::after {
  background-color: #f7b322;
}
.nav__item--consultancy:hover .nav__dropdown--consultancy {
  background-color: rgb(221.9650655022, 153.6681222707, 8.0349344978);
}
.nav__item--consultancy:hover .nav__logo--consultancy::before {
  color: white;
}
.nav__item--it:hover {
  background-color: #4183d7;
}
.nav__item--it:hover .nav__it::after {
  background-color: #4183d7;
}
.nav__item--it:hover .nav__dropdown--it {
  background-color: rgb(39.8260869565, 105.5391304348, 189.1739130435);
}
.nav__item--it:hover .nav__logo--it::before {
  color: white;
}
.nav__item--marketing:hover {
  background-color: #2ecc71;
}
.nav__item--marketing:hover .nav__marketing::after {
  background-color: #2ecc71;
}
.nav__item--marketing:hover .nav__dropdown--marketing {
  background-color: rgb(36.616, 162.384, 89.948);
}
.nav__item--marketing:hover .nav__logo--marketing::before {
  color: white;
}
.nav__item--telecoms:hover {
  background-color: #d64541;
}
.nav__item--telecoms:hover .nav__telecoms::after {
  background-color: #d64541;
}
.nav__item--telecoms:hover .nav__dropdown--telecoms {
  background-color: rgb(187.5324675325, 44.4155844156, 40.4675324675);
}
.nav__item--telecoms:hover .nav__logo--telecoms::before {
  color: white;
}
.nav__item--web:hover {
  background-color: #926fb1;
}
.nav__item--web:hover .nav__web::after {
  background-color: #926fb1;
}
.nav__item--web:hover .nav__dropdown--web {
  background-color: rgb(120.6351351351, 83.2702702703, 153.7297297297);
}
.nav__item--web:hover .nav__logo--web::before {
  color: white;
}
.nav__item--security:hover {
  background-color: #f62459;
}
.nav__item--security:hover .nav__security::after {
  background-color: #f62459;
}
.nav__item--security:hover .nav__dropdown--security {
  background-color: rgb(221.8815789474, 9.1184210526, 62.8157894737);
}
.nav__item--security:hover .nav__logo--security::before {
  color: white;
}
.nav__item--training:hover {
  background-color: #ce4125;
}
.nav__item--training:hover .nav__training::after {
  background-color: #ce4125;
}
.nav__item--training:hover .nav__dropdown--training {
  background-color: rgb(162.7654320988, 51.3580246914, 29.2345679012);
}
.nav__item--training:hover .nav__logo--training::before {
  color: white;
}
.nav__logo--consultancy::before {
  content: "\e995";
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #f7b322;
}
.nav__logo--it::before {
  content: "\e956";
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #4183d7;
}
.nav__logo--marketing::before {
  content: "\e99b";
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #2ecc71;
}
.nav__logo--telecoms::before {
  content: "\e942";
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #d64541;
}
.nav__logo--web::before {
  content: "\ea80";
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #926fb1;
}
.nav__logo--security::before {
  content: "\e9b4";
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #f62459;
}
.nav__logo--training::before {
  content: "\e99e";
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #ce4125;
}
.nav__dropdown {
  display: none;
  position: absolute;
  top: 97px;
  left: 0px;
  width: 100dvw;
  padding-top: 50px;
  padding-bottom: 50px;
  margin: 0 auto;
  background-color: #323544;
  z-index: 10;
}
.nav__dropdown-title {
  width: 100%;
  font-weight: 500;
  margin-bottom: 10px;
  font-size: 2rem;
}
.nav__dropdown-item {
  text-decoration: none;
  border: none;
}
.nav__dropdown-item:hover {
  text-decoration: underline;
}
.nav__dropdown-item {
  font-size: 1.2rem;
  line-height: 2.5rem;
  font-weight: 400;
}
.nav__item:hover .nav__dropdown,
.nav .nav__dropdown:hover {
  display: block;
  pointer-events: auto;
}
.nav__item:hover .nav__dropdown {
  margin-top: 2px;
}
.nav__flex {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.nav__dropdown .nav__li {
  display: inline-block;
  width: 33%;
  margin-top: 15px;
}

.nav__li:nth-child(1)::before {
  content: "\e906";
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 10px;
}

.nav__li:nth-child(2)::before {
  content: "\e910";
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 10px;
}

.nav__li:nth-child(3)::before {
  content: "\e98c";
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 10px;
}

.nav__li:nth-child(4)::before {
  content: "\e91e";
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 10px;
}

.nav__li:nth-child(5)::before {
  content: "\e924";
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 10px;
}

.nav__li:nth-child(6)::before {
  content: "\e92c";
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 10px;
}

.nav__li:nth-child(7)::before {
  content: "\e930";
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 10px;
}

.nav__li:nth-child(8)::before {
  content: "\e938";
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 10px;
}

.nav__li:nth-child(9)::before {
  content: "\e939";
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 10px;
}

.nav__li:nth-child(10)::before {
  content: "\e93a";
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 10px;
}

.nav__li:nth-child(11)::before {
  content: "\e942";
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 10px;
}

.nav__li:nth-child(12)::before {
  content: "\e945";
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 10px;
}

.nav__li:nth-child(13)::before {
  content: "\e94e";
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 10px;
}

.nav__li:nth-child(14)::before {
  content: "\e956";
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 10px;
}

.nav__li:nth-child(15)::before {
  content: "\e957";
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 10px;
}

.nav__li:nth-child(16)::before {
  content: "\e958";
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 10px;
}

.nav__li:nth-child(17)::before {
  content: "\e96b";
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 10px;
}

.nav__li:nth-child(18)::before {
  content: "\e970";
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 10px;
}

.nav__li:nth-child(19)::before {
  content: "\e977";
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 10px;
}

.nav__li:nth-child(20)::before {
  content: "\e986";
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 10px;
}

.nav__li:nth-child(21)::before {
  content: "\e98c";
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 10px;
}

.nav__li:nth-child(22)::before {
  content: "\e98f";
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 10px;
}

.nav__li:nth-child(23)::before {
  content: "\e995";
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 10px;
}

.nav__li:nth-child(24)::before {
  content: "\e99b";
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 10px;
}

.nav__li:nth-child(25)::before {
  content: "\e99e";
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 10px;
}

.nav__li:nth-child(26)::before {
  content: "\e9a6";
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 10px;
}

.nav__li:nth-child(27)::before {
  content: "\e9aa";
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 10px;
}

.nav__li:nth-child(28)::before {
  content: "\e9b2";
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 10px;
}

.nav__li:nth-child(29)::before {
  content: "\e9b4";
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 10px;
}

.nav__li:nth-child(30)::before {
  content: "\e9c1";
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 10px;
}

.nav__li:nth-child(31)::before {
  content: "\e9c4";
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 10px;
}

.nav__li:nth-child(32)::before {
  content: "\e9c9";
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 10px;
}

.nav__li:nth-child(33)::before {
  content: "\e9ca";
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 10px;
}

.nav__li:nth-child(34)::before {
  content: "\e9d9";
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 10px;
}

.nav__li:nth-child(35)::before {
  content: "\ea0c";
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 10px;
}

.nav__li:nth-child(36)::before {
  content: "\ea20";
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 10px;
}

.nav__li:nth-child(37)::before {
  content: "\ea3c";
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 10px;
}

.nav__li:nth-child(38)::before {
  content: "\ea80";
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 10px;
}

.nav__li:nth-child(39)::before {
  content: "\ea90";
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 10px;
}

.nav__li:nth-child(40)::before {
  content: "\ea92";
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 10px;
}

.nav__li:nth-child(41)::before {
  content: "\eaca";
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 10px;
}

.news__heading {
  padding-top: 50px;
}
@media (min-width: 768px) {
  .news__heading {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
  }
}
.news__title {
  font-size: 2.25rem;
  font-weight: 600;
  color: #333645;
}
.news__button-container {
  display: none;
  text-align: center;
  padding-top: 50px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .news__button-container {
    display: block;
    padding: 0;
  }
}
.news__button-container--bottom {
  display: block;
  margin-bottom: 20px;
  width: 100%;
  text-align: center;
}
@media (min-width: 768px) {
  .news__button-container--bottom {
    display: none;
  }
}
.news__view-all-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 3px;
  cursor: pointer;
}
.news__view-all-button::after {
  content: "\ea3c";
  font-family: "icomoon" !important;
  color: inherit;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-left: 15px;
}
.news__view-all-button {
  color: #333645;
  font-size: 1.625rem;
  font-weight: 600;
  margin-block: 15px;
  line-height: 1.1;
}
.news__view-all-button:hover {
  border-radius: 0%;
  border-bottom: 3px solid currentColor;
  margin-bottom: 12px;
  text-decoration: none;
}
.news__grid {
  display: grid;
  padding-bottom: 50px;
}
@media (min-width: 768px) {
  .news__grid {
    align-items: start;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media (min-width: 1260px) {
  .news__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.article-card {
  display: flex;
  flex-direction: column;
  position: relative;
  margin-top: 30px;
  border: 1px solid #ccc;
  box-shadow: 0 12px 20px 7px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease;
}
.article-card:hover {
  text-decoration: none;
  transform: translateY(-12px);
}
@media (min-width: 768px) {
  .article-card--123 {
    display: none !important;
  }
}
@media (min-width: 1260px) {
  .article-card--123 {
    display: block !important;
  }
}
.article-card__tag {
  position: absolute;
  top: 10px;
  right: 0;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.438rem;
  padding: 0 0.5em;
  color: #fff;
  text-transform: uppercase;
}
.article-card__tag:hover {
  text-decoration: underline;
}
.article-card__tag--careers {
  background-color: #4183d7;
}
.article-card__tag--insights {
  background-color: #67809f;
}
.article-card__media {
  background-color: #67809f;
}
.article-card__cover-image {
  display: block;
  width: 100%;
}
.article-card__body {
  padding: 30px 30px 0 30px;
}
.article-card__title {
  color: #67809f;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5rem;
  margin-bottom: 15px;
}
@media (min-width: 1260px) {
  .article-card__title {
    min-height: 3rem;
  }
}
.article-card__description {
  color: #666;
  font-size: 0.8125rem;
  font-weight: 400;
  margin-bottom: 25px;
}
.article-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 3px;
  cursor: pointer;
  padding: 5px 15px;
  color: #fff;
  text-transform: uppercase;
  line-height: 2.25;
}
.article-card__button--insight {
  background-color: #f7b322;
}
.article-card__button--career {
  background-color: #4183d7;
}
.article-card__footer {
  padding: 0 30px 30px 30px;
}
.article-card__author {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  min-height: 3rem;
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
.article-card__avatar {
  display: inline-block;
  max-height: max-content;
  border-radius: 50%;
}
.article-card__meta {
  padding-left: 20px;
  color: #666;
  font-size: 0.875rem;
  line-height: 1.375rem;
  font-weight: 400;
}
.article-card__user-details {
  font-size: 0.875rem;
  font-weight: 400;
}
.article-card__user-details strong {
  color: #000;
  font-weight: 600;
}

.partners__wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-evenly;
  gap: 80px;
  overflow-x: hidden;
  padding-block: 50px;
}

.partners__wrapper img {
  filter: grayscale(100%);
  opacity: 0.6;
  transition: filter 0.6s ease-in-out;
  flex: 0 0 auto;
}

.partners__wrapper img:hover {
  filter: grayscale(0%);
  opacity: 1;
  flex: 0 0 auto;
}

div[class^=partners__item--] {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  margin-inline-end: 50px;
}
div[class^=partners__item--] > img {
  padding-inline: 20px;
}

.services-wrapper {
  display: flex;
  flex-direction: column;
  padding: 50px 0;
}
.services-wrapper__header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.services-wrapper__title {
  font-size: 2.625rem;
  font-weight: 400;
}
.services-wrapper__header-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 3px;
  cursor: pointer;
}
.services-wrapper__header-link::after {
  content: "\ea3c";
  font-family: "icomoon" !important;
  color: inherit;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-left: 5px;
}
.services-wrapper__header-link {
  display: none;
  color: #333645;
  font-size: 1.625rem;
  font-weight: 600;
  margin-block: 15px;
  line-height: 0.425;
}
@media (min-width: 768px) {
  .services-wrapper__header-link {
    display: block;
    font-size: 2.25rem;
  }
}
.services-wrapper__header-link:hover {
  border-radius: 0%;
  border-bottom: 3px solid currentColor;
  margin-bottom: 12px;
  text-decoration: none;
}
.services-wrapper__footer {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 25px;
}
@media (min-width: 768px) {
  .services-wrapper__footer {
    display: none;
  }
}
.services-wrapper__footer-link::after {
  content: "\ea3c";
  font-family: "icomoon" !important;
  color: inherit;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-left: 5px;
}
.services-wrapper__footer-link {
  text-decoration: none;
  border: none;
}
.services-wrapper__footer-link:hover {
  border-bottom: 1px solid currentColor;
}
.services-wrapper__footer-link {
  font-weight: 600;
  font-size: 1.625rem;
}
.services-wrapper__articles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 30px;
}
@media (min-width: 768px) {
  .services-wrapper__articles {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .services-wrapper__articles {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (min-width: 1260px) {
  .services-wrapper__articles {
    grid-template-columns: repeat(12, 1fr);
  }
}

.services-wrapper__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-radius: 15px;
  margin: 30px auto 0;
  min-width: 100%;
}
.services-wrapper__card-icon-bg {
  display: block;
  margin: 0 auto 17px;
  width: 65px;
  height: 65px;
  border-radius: 50%;
}
.services-wrapper__card-icon {
  position: relative;
  top: 15px;
}
.services-wrapper__card-title {
  display: block;
  margin: 0 auto 10px;
  padding-bottom: 10px;
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 35px;
}
@media (min-width: 1260px) {
  .services-wrapper__card-title {
    font-size: 20px;
  }
}
.services-wrapper__card-exerpt-wrapper {
  display: block;
  margin: auto auto 13px;
  font-size: 0.825rem;
  font-weight: 300;
}
.services-wrapper__card-exerpt {
  font-size: 0.8125rem;
  line-height: 1.375rem;
  font-weight: 400;
}
.services-wrapper__card-link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 3px;
  cursor: pointer;
  margin-top: 20px;
  padding: 5px 15px;
  height: 47px;
  font-size: 1.1rem;
  font-weight: normal;
  color: #fff;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .services-wrapper__card:nth-child(-n+3) {
    grid-column: span 2;
  }
  .services-wrapper__card:nth-child(n+4) {
    grid-column: span 1;
  }
}
@media (min-width: 992px) {
  .services-wrapper__card:nth-child(n+4) {
    grid-column: span 3;
  }
}
@media (min-width: 1260px) {
  .services-wrapper__card:nth-child(-n+3) {
    grid-column: span 4;
  }
}

.services-wrapper__card--consultancy {
  padding: 30px;
  box-shadow: 0 0 9px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(68, 68, 68, 0.4);
  transition: all 0.25s ease-in-out;
  border-radius: 10px;
  min-width: 100%;
  height: 100%;
}
.services-wrapper__card--consultancy .services-wrapper__card-icon-bg {
  background-color: #f7b322;
}
.services-wrapper__card--consultancy .services-wrapper__card-icon--consultancy::before {
  content: "\e995";
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 2.5rem;
  color: #fff;
}
.services-wrapper__card--consultancy .services-wrapper__card-link-btn {
  background-color: #f7b322;
}

.services-wrapper__card--consultancy:hover {
  background-color: #f7b322;
  transform: translateY(-12px);
  text-decoration: none;
}
.services-wrapper__card--consultancy:hover .services-wrapper__card-icon-bg {
  background-color: #fff;
}
.services-wrapper__card--consultancy:hover .services-wrapper__card-icon--consultancy::before {
  color: #f7b322;
}
.services-wrapper__card--consultancy:hover .services-wrapper__card-title,
.services-wrapper__card--consultancy:hover .services-wrapper__card-exerpt {
  color: #fff;
}
.services-wrapper__card--consultancy:hover .services-wrapper__card-title:hover,
.services-wrapper__card--consultancy:hover .services-wrapper__card-exerpt:hover {
  color: #fff;
}
.services-wrapper__card--consultancy:hover .services-wrapper__card-link-btn {
  background-color: #fff;
  color: #f7b322;
}

.services-wrapper__card--it {
  padding: 30px;
  box-shadow: 0 0 9px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(68, 68, 68, 0.4);
  transition: all 0.25s ease-in-out;
  border-radius: 10px;
  min-width: 100%;
  height: 100%;
}
.services-wrapper__card--it .services-wrapper__card-icon-bg {
  background-color: #4183d7;
}
.services-wrapper__card--it .services-wrapper__card-icon--it::before {
  content: "\e956";
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 2.5rem;
  color: #fff;
}
.services-wrapper__card--it .services-wrapper__card-link-btn {
  background-color: #4183d7;
}

.services-wrapper__card--it:hover {
  background-color: #4183d7;
  transform: translateY(-12px);
  text-decoration: none;
}
.services-wrapper__card--it:hover .services-wrapper__card-icon-bg {
  background-color: #fff;
}
.services-wrapper__card--it:hover .services-wrapper__card-icon--it::before {
  color: #4183d7;
}
.services-wrapper__card--it:hover .services-wrapper__card-title,
.services-wrapper__card--it:hover .services-wrapper__card-exerpt {
  color: #fff;
}
.services-wrapper__card--it:hover .services-wrapper__card-title:hover,
.services-wrapper__card--it:hover .services-wrapper__card-exerpt:hover {
  color: #fff;
}
.services-wrapper__card--it:hover .services-wrapper__card-link-btn {
  background-color: #fff;
  color: #4183d7;
}

.services-wrapper__card--marketing {
  padding: 30px;
  box-shadow: 0 0 9px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(68, 68, 68, 0.4);
  transition: all 0.25s ease-in-out;
  border-radius: 10px;
  min-width: 100%;
  height: 100%;
}
.services-wrapper__card--marketing .services-wrapper__card-icon-bg {
  background-color: #2ecc71;
}
.services-wrapper__card--marketing .services-wrapper__card-icon--marketing::before {
  content: "\e99b";
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 2.5rem;
  color: #fff;
}
.services-wrapper__card--marketing .services-wrapper__card-link-btn {
  background-color: #2ecc71;
}

.services-wrapper__card--marketing:hover {
  background-color: #2ecc71;
  transform: translateY(-12px);
  text-decoration: none;
}
.services-wrapper__card--marketing:hover .services-wrapper__card-icon-bg {
  background-color: #fff;
}
.services-wrapper__card--marketing:hover .services-wrapper__card-icon--marketing::before {
  color: #2ecc71;
}
.services-wrapper__card--marketing:hover .services-wrapper__card-title,
.services-wrapper__card--marketing:hover .services-wrapper__card-exerpt {
  color: #fff;
}
.services-wrapper__card--marketing:hover .services-wrapper__card-title:hover,
.services-wrapper__card--marketing:hover .services-wrapper__card-exerpt:hover {
  color: #fff;
}
.services-wrapper__card--marketing:hover .services-wrapper__card-link-btn {
  background-color: #fff;
  color: #2ecc71;
}

.services-wrapper__card--telecoms {
  padding: 30px;
  box-shadow: 0 0 9px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(68, 68, 68, 0.4);
  transition: all 0.25s ease-in-out;
  border-radius: 10px;
  min-width: 100%;
  height: 100%;
}
.services-wrapper__card--telecoms .services-wrapper__card-icon-bg {
  background-color: #d64541;
}
.services-wrapper__card--telecoms .services-wrapper__card-icon--telecoms::before {
  content: "\e942";
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 2.5rem;
  color: #fff;
}
.services-wrapper__card--telecoms .services-wrapper__card-link-btn {
  background-color: #d64541;
}

.services-wrapper__card--telecoms:hover {
  background-color: #d64541;
  transform: translateY(-12px);
  text-decoration: none;
}
.services-wrapper__card--telecoms:hover .services-wrapper__card-icon-bg {
  background-color: #fff;
}
.services-wrapper__card--telecoms:hover .services-wrapper__card-icon--telecoms::before {
  color: #d64541;
}
.services-wrapper__card--telecoms:hover .services-wrapper__card-title,
.services-wrapper__card--telecoms:hover .services-wrapper__card-exerpt {
  color: #fff;
}
.services-wrapper__card--telecoms:hover .services-wrapper__card-title:hover,
.services-wrapper__card--telecoms:hover .services-wrapper__card-exerpt:hover {
  color: #fff;
}
.services-wrapper__card--telecoms:hover .services-wrapper__card-link-btn {
  background-color: #fff;
  color: #d64541;
}

.services-wrapper__card--web {
  padding: 30px;
  box-shadow: 0 0 9px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(68, 68, 68, 0.4);
  transition: all 0.25s ease-in-out;
  border-radius: 10px;
  min-width: 100%;
  height: 100%;
}
.services-wrapper__card--web .services-wrapper__card-icon-bg {
  background-color: #926fb1;
}
.services-wrapper__card--web .services-wrapper__card-icon--web::before {
  content: "\ea80";
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 2.5rem;
  color: #fff;
}
.services-wrapper__card--web .services-wrapper__card-link-btn {
  background-color: #926fb1;
}

.services-wrapper__card--web:hover {
  background-color: #926fb1;
  transform: translateY(-12px);
  text-decoration: none;
}
.services-wrapper__card--web:hover .services-wrapper__card-icon-bg {
  background-color: #fff;
}
.services-wrapper__card--web:hover .services-wrapper__card-icon--web::before {
  color: #926fb1;
}
.services-wrapper__card--web:hover .services-wrapper__card-title,
.services-wrapper__card--web:hover .services-wrapper__card-exerpt {
  color: #fff;
}
.services-wrapper__card--web:hover .services-wrapper__card-title:hover,
.services-wrapper__card--web:hover .services-wrapper__card-exerpt:hover {
  color: #fff;
}
.services-wrapper__card--web:hover .services-wrapper__card-link-btn {
  background-color: #fff;
  color: #926fb1;
}

.services-wrapper__card--security {
  padding: 30px;
  box-shadow: 0 0 9px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(68, 68, 68, 0.4);
  transition: all 0.25s ease-in-out;
  border-radius: 10px;
  min-width: 100%;
  height: 100%;
}
.services-wrapper__card--security .services-wrapper__card-icon-bg {
  background-color: #f62459;
}
.services-wrapper__card--security .services-wrapper__card-icon--security::before {
  content: "\e9b4";
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 2.5rem;
  color: #fff;
}
.services-wrapper__card--security .services-wrapper__card-link-btn {
  background-color: #f62459;
}

.services-wrapper__card--security:hover {
  background-color: #f62459;
  transform: translateY(-12px);
  text-decoration: none;
}
.services-wrapper__card--security:hover .services-wrapper__card-icon-bg {
  background-color: #fff;
}
.services-wrapper__card--security:hover .services-wrapper__card-icon--security::before {
  color: #f62459;
}
.services-wrapper__card--security:hover .services-wrapper__card-title,
.services-wrapper__card--security:hover .services-wrapper__card-exerpt {
  color: #fff;
}
.services-wrapper__card--security:hover .services-wrapper__card-title:hover,
.services-wrapper__card--security:hover .services-wrapper__card-exerpt:hover {
  color: #fff;
}
.services-wrapper__card--security:hover .services-wrapper__card-link-btn {
  background-color: #fff;
  color: #f62459;
}

.services-wrapper__card--training {
  padding: 30px;
  box-shadow: 0 0 9px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(68, 68, 68, 0.4);
  transition: all 0.25s ease-in-out;
  border-radius: 10px;
  min-width: 100%;
  height: 100%;
}
.services-wrapper__card--training .services-wrapper__card-icon-bg {
  background-color: #ce4125;
}
.services-wrapper__card--training .services-wrapper__card-icon--training::before {
  content: "\e99e";
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 2.5rem;
  color: #fff;
}
.services-wrapper__card--training .services-wrapper__card-link-btn {
  background-color: #ce4125;
}

.services-wrapper__card--training:hover {
  background-color: #ce4125;
  transform: translateY(-12px);
  text-decoration: none;
}
.services-wrapper__card--training:hover .services-wrapper__card-icon-bg {
  background-color: #fff;
}
.services-wrapper__card--training:hover .services-wrapper__card-icon--training::before {
  color: #ce4125;
}
.services-wrapper__card--training:hover .services-wrapper__card-title,
.services-wrapper__card--training:hover .services-wrapper__card-exerpt {
  color: #fff;
}
.services-wrapper__card--training:hover .services-wrapper__card-title:hover,
.services-wrapper__card--training:hover .services-wrapper__card-exerpt:hover {
  color: #fff;
}
.services-wrapper__card--training:hover .services-wrapper__card-link-btn {
  background-color: #fff;
  color: #ce4125;
}

body.menu-open {
  overflow: hidden;
}
@media (min-width: 992px) {
  body.menu-open {
    right: 350px;
  }
}

.sidr {
  width: 274px;
}
@media (min-width: 992px) {
  .sidr {
    width: 350px;
  }
}
.sidr.sidr-right {
  right: -274px;
}
@media (min-width: 992px) {
  .sidr.sidr-right {
    right: -350px;
  }
}
.sidr {
  z-index: 10005;
}

.side-bar {
  width: 274px;
  height: 100dvh;
  overflow-y: scroll;
  color: #fff;
  font-size: 1.125rem;
  text-transform: uppercase;
  background-color: #333645;
}
.side-bar--mobile {
  text-align: center;
  padding: 21px;
}
@media (min-width: 992px) {
  .side-bar--mobile {
    display: none;
  }
}
@media (min-width: 992px) {
  .side-bar {
    width: 350px;
  }
}
.side-bar__contact {
  padding: 19px 0 18px 0;
  border-radius: 3px;
  outline: 1px solid rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.side-bar__menu-item {
  padding-top: 20px;
}
.side-bar__sub-menu {
  margin-top: 20px;
}
.side-bar__sub-menu > ul > li {
  border-top: 1px solid rgba(0, 0, 0, 0.45);
}
.side-bar__link-header {
  display: block;
  padding: 19px 0 18px 0;
  border-radius: 3px;
  outline: 1px solid rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: #333645;
}
.side-bar__link-header > small {
  display: block;
  font-size: 0.625rem;
}
.side-bar__link-text {
  display: block;
  width: 100%;
  font-size: 1rem;
  padding: 10px;
  border-top: 1px solid hsla(0, 0%, 100%, 0.05);
  background-color: #262834;
}
.side-bar--main .side-bar__menu-item:first-child {
  display: none;
}
@media (min-width: 992px) {
  .side-bar--main .side-bar__menu-item:first-child {
    display: list-item;
  }
}
.side-bar--main .side-bar__link-header {
  width: 100%;
  padding: 20px;
  font-size: 1rem;
}
.side-bar--main .side-bar__link-text::before {
  content: "››";
  margin-right: 15px;
}
.side-bar--main .side-bar__menu-item {
  padding-top: 0;
}
.side-bar--main .side-bar__sub-menu {
  margin-top: 0;
}
.side-bar--main .side-bar__sub-menu > ul > li span {
  padding: 15px 20px;
  font-size: 0.825rem;
}

.side-bar__link-header--consultancy::before {
  content: "\e995";
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #f7b322;
  font-size: 1.438rem;
}

.side-bar__link-header--it::before {
  content: "\e956";
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #4183d7;
  font-size: 1.438rem;
}

.side-bar__link-header--marketing::before {
  content: "\e99b";
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #2ecc71;
  font-size: 1.438rem;
}

.side-bar__link-header--telecoms::before {
  content: "\e942";
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #d64541;
  font-size: 1.438rem;
}

.side-bar__link-header--web::before {
  content: "\ea80";
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #926fb1;
  font-size: 1.438rem;
}

.side-bar__link-header--security::before {
  content: "\e9b4";
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #f62459;
  font-size: 1.438rem;
}

.side-bar__link-header--training::before {
  content: "\e99e";
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #ce4125;
  font-size: 1.438rem;
}

.side-bar__menu-item:hover .side-bar__link-header {
  background-color: rgb(72.675, 76.95, 98.325);
}

.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1260px) {
  .container {
    width: 1200px;
  }
}

.site-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 10001;
  cursor: pointer;
}

.site-overlay--active {
  opacity: 1;
  pointer-events: all;
}

main {
  overflow-x: hidden;
}/*# sourceMappingURL=main.css.map */