@media (min-width: 1450px) {
  .container {
    max-width: 1350px !important;
    width: 1350px !important;
  }
}

* {
  --clr-black: #231f20;
  --clr-accent: #6f2729;
  --clr-accent2: #6f2729;
  font-family: "Open Sans", sans-serif;
  margin: 0;
  outline: 0 !important;
}

textarea
{
  resize: none;
}

.button {
  border: none;
  outline: none;
  background: transparent;
  border: 2px solid transparent;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.2s ease;
  text-transform: uppercase;
  border-radius: 2px;
  padding: 0 25px;
  height: 30px;
  text-decoration: none;
}

.button:hover {
  text-decoration: none;
}

.button i {
  font-size: 5px;
  margin-left: 15px;
}

.button.button-primary {
  color: white;
  background: var(--clr-accent2);
}

.button.button-primary:hover {
  background: transparent;
  color: var(--clr-accent2);
  border-color: var(--clr-accent2);
}

.button.button-secondary {
  border-width: 3px;
  color: var(--clr-black);
  background: transparent;
  border-color: #9b9b9b;
  justify-content: space-between;
}

.button.button-secondary:hover {
  background: #9b9b9b;
  color: white;
}

html {
  scroll-behavior: smooth;
}

.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  padding: 20px;
  background: white;
  transform: translateX(100%);
  transition: all 0.2s ease;
  z-index: 9999;
}

.sidebar .sidebar-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 40px;
}

.sidebar .sidebar-header .logo {
  height: 80px;
}

.sidebar .sidebar-header #mobile-nav-close {
  --size: 30px;
  height: var(--size);
  width: var(--size);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  display: none;
  border: none;
  outline: none;
  background: transparent;
  touch-action: manipulation;
}

@media (max-width: 996px) {
  .sidebar .sidebar-header #mobile-nav-close {
    display: flex;
  }
}

.sidebar .sidebar-header #mobile-nav-close div {
  position: relative;
  width: var(--size);
  height: 2px;
  background: var(--clr-black);
  border: none;
  border-radius: 0px;
  transform: rotate(45deg);
}

.sidebar .sidebar-header #mobile-nav-close div::after {
  content: "";
  position: absolute;
  left: 0;
  width: var(--size);
  height: 2px;
  background: var(--clr-black);
  border-radius: 0px;
}

.sidebar .sidebar-header #mobile-nav-close div::after {
  top: 10px;
  transform: rotate(-90deg);
  left: 0;
  top: 0;
}

.sidebar .contacts {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
}

.sidebar .contacts a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  color: var(--clr-black);
  margin: 10px 0;
}

.sidebar .contacts a:hover {
  color: var(--clr-accent);
}

.sidebar .contacts a i {
  font-size: 18px;
  margin-top: 5px;
}

.sidebar .contacts a.contact-phone i {
  font-size: 26px;
}

.sidebar ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  list-style: none;
  padding: 0;
}

.sidebar ul li {
  margin: 5px 0;
}

.sidebar ul li a {
  position: relative;
  color: var(--clr-black);
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  padding: 10px 0;
}

.sidebar ul li a:hover {
  color: var(--clr-accent);
  font-weight: 700;
}

.sidebar-open {
  animation: open 0.3s forwards;
}

.sidebar-exit {
  animation: exit 0.3s forwards;
}

@keyframes open {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(0%);
  }
}

@keyframes exit {
  from {
    transform: translateX(0%);
  }

  to {
    transform: translateX(100%);
  }
}

/* HEADER */
.header .container:not(.knowledebase-header) {
  height: 140px;
  align-items: center;
  justify-content: space-between;
  display: grid;
  grid: 1fr / repeat(3, 1fr);
}

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

.header .logo {
  margin-left: 25px;
  max-width: 200px;
}

@media (max-width: 996px) {
  .header .container {
    display: flex;
    flex-direction: row;
  }

  .header .logo {
    margin: 0;
  }
}

@media (max-width: 767px) {
  .header .logo {
    height: 80px;
  }
}

.header .contact {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 400;
  color: var(--clr-black);
  text-decoration: none;
}

.header .contact:hover {
  color: var(--clr-accent);
}

@media (max-width: 996px) {
  .header .contact {
    display: none;
  }
}

.header .contact i {
  font-size: 22px;
  color: var(--clr-accent);
  margin-right: 20px;
}

.header .contact.contact-phone i {
  font-size: 28px;
}

.header #mobile-nav-open {
  --size: 30px;
  height: var(--size);
  width: var(--size);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  display: none;
  border: none;
  outline: none;
  background: transparent;
  touch-action: manipulation;
}

@media (max-width: 996px) {
  .header #mobile-nav-open {
    display: flex;
  }
}

.header #mobile-nav-open div {
  position: relative;
  width: var(--size);
  height: 2px;
  background: var(--clr-black);
  border: none;
  border-radius: 0px;
  transition: all 0.2s ease;
}

.header #mobile-nav-open div::before, .header #mobile-nav-open div::after {
  content: "";
  position: absolute;
  left: 0;
  width: var(--size);
  height: 2px;
  background: var(--clr-black);
  border-radius: 0px;
  transition: all 0.2s ease;
}

.header #mobile-nav-open div::before {
  top: -10px;
}

.header #mobile-nav-open div::after {
  top: 10px;
}

.header #mobile-nav-close div::before {
  opacity: 0;
}

.header #mobile-nav-close div {
  transform: rotate(45deg);
}

.header #mobile-nav-close div::after {
  transform: rotate(-90deg);
  left: 0;
  top: 0;
}

.nav:not(.nav-dark) {
  height: 50px;
  background: var(--clr-accent2);
}

.nav.nav-dark {
  height: 50px;
  background: var(--clr-black);
}

@media (max-width: 996px) {
  .nav {
    display: none;
  }
}

.nav .container {
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.nav .container a {
  color: white;
  text-decoration: none;
}

.nav .container ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  list-style: none;
  height: 100%;
  padding: 0;
  margin: 0 0 0 50px;
}

@media (max-width: 1200px) {
  .nav .container ul {
    margin: 0;
  }
}

.nav .container ul li {
  height: 100%;
  margin: 0 10px;
}

.nav .container ul li a {
  font-size: 13px;
  font-weight: 500;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  transition: all 0.2s ease;
  padding: 0 10px;
}

.nav .container ul li a:hover {
  background: #E00038;
}

@media (max-width: 1450px) {
  .nav.nav-dark .container ul li a {
    font-size: 12px;
  }
}

@media (max-width: 1200px) {
  .nav:not(.nav-dark) .container ul li a {
    font-size: 12px;
  }

  .nav.nav-dark .container ul li a {
    font-size: 10px;
  }
}

.nav .container .homebtn {
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  padding: 0 10px;
}

.nav .container .homebtn:hover {
  background: #E00038;
}

.nav .container .social {
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.nav .container .social a {
  height: 100%;
  padding: 0 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  margin-left: 10px;
}

.nav .container .social a:hover {
  background: #E00038;
}

.nav .container .social a i {
  font-size: 20px;
}

.index-title {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background: #E8E8E8;
  min-height: 65px;
  margin: 30px 0 45px 0;
}

@media (max-width: 767px) {
  .index-title {
    margin: 30px 0;
  }
}

.index-title h1 {
  font-size: 30px;
  font-weight: 600;
  color: var(--clr-black);
  text-align: center;
  font-style: italic;
  margin: 0 15px;
}

@media (max-width: 767px) {
  .index-title h1 {
    font-size: 24px;
  }
}

.index-news-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--clr-accent);
  min-height: 82px;
  margin: 45px 0;
}

.index-news-title p {
  font-size: 30px;
  line-height: 30px;
  font-weight: 900;
  color: white;
  margin: 0;
}

.index-news-title p+p {
  font-size: 26px;
  font-weight: 400;
  margin: 0;
}

/* SECTIONS */
.section-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 41px;
  color: var(--gray);
  text-align: center;
}

.section-subtitle {
  font-size: 16px;
  line-height: 25px;
  margin: 30px 0;
  color: var(--gray);
  max-width: 80%;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

/* FOOTER */
footer {
  border-top: 1px solid rgba(0, 0, 0, .1);
}

footer .bar {
  width: 100%;
  height: 30px;
  background: var(--clr-black);
}

@media (max-width: 767px) {
  footer .bar {
    height: auto;
    padding: 10px 0;
  }
}

footer .bar .container {
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 767px) {
  footer .bar .container {
    flex-direction: column;
  }
}

footer .bar p {
  font-size: 10px;
  color: white;
}

footer .bar p a {
  font-weight: 700;
  color: white;
}

footer .container {
  display: flex;
  flex-direction: column;
}

footer .content {
  padding: 20px 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1200px) {
  footer .content {
    justify-content: space-between;
  }
}

@media (max-width: 767px) {
  footer .content {
    flex-direction: column;
    padding: 30px 0 0 0;
  }
}

footer .content .logo {
  margin-right: 60px;
}

@media (max-width: 1200px) {
  footer .content .logo {
    margin: 0;
  }
}

@media (max-width: 767px) {
  footer .content .logo {
    height: 80px;
  }
}

footer .content .social {
  display: flex;
  flex-direction: row;
  align-items: center;
}

@media (max-width: 767px) {
  footer .content .social {
    margin: 20px 0;
  }
}

footer .content .social a {
  margin: 0 15px;
  padding: 5px;
  text-decoration: none;
}

footer .content .social a i {
  color: var(--clr-black);
  font-size: 20px;
}

footer .content .social a:hover i {
  color: var(--clr-accent2);
}

footer .content .contacts {
  display: flex;
  flex-direction: column;
  margin-left: 100px;
}

@media (max-width: 1200px) {
  footer .content .contacts {
    margin: 0;
  }
}

footer .content .contacts a {
  display: grid;
  grid: 1fr/40px 1fr;
  gap: 15px;
  font-size: 14px;
  color: var(--clr-black);
  margin: 15px 0;
  text-decoration: none;
}

footer .content .contacts a:hover {
  color: var(--clr-accent2);
}

footer .content .contacts a i {
  align-self: center;
  justify-self: center;
  font-size: 26px;
  color: var(--clr-accent2);
}

footer .content .contacts a i.icon-mail-fill {
  font-size: 20px;
}

footer .container ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 20px 0 20px 0;
}

@media (max-width: 996px) {
  footer .container ul {
    justify-content: space-between;
  }
}

@media (max-width: 767px) {
  footer .container ul {
    flex-direction: column;
  }
}

footer .container ul li {
  margin: 0 15px;
}

@media (max-width: 996px) {
  footer .container ul li {
    margin: 0;
  }
}

@media (max-width: 767px) {
  footer .container ul li {
    margin: 5px 0;
  }
}

footer .container ul li a {
  font-size: 14px;
  font-weight: 600;
  color: var(--clr-black);
  text-transform: uppercase;
  text-decoration: none;
}

@media (max-width: 996px) {
  footer .container ul li a {
    font-size: 12px;
  }
}

@media (max-width: 767px) {
  footer .container ul li a {
    padding: 5px;
  }
}

footer .container ul li a:hover {
  color: var(--clr-accent2);
}

.site-index {
  margin-top: 40px;
}

@media (max-width: 767px) {
  .site-index {
    margin-top: 10px;
  }
}

#vallalkozz {
  margin-top: 50px;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  gap: 65px;
}

@media (max-width: 996px) {
  .services-container {
    grid: auto auto/1fr;
    gap: 20px;
  }
}

.services-container h2 {
  text-align: left;
  font-size: 30px;
  font-weight: 800;
  color: var(--clr-black);
  margin-bottom: 20px;
  line-height: 34px;
}

@media (max-width: 996px) {
  .services-container h2 {
    text-align: center;
    font-size: 24px;
    line-height: 34px;
  }
}

.services-container h2 span {
  font-size: 26px;
  font-weight: 400;
}

.services-container .header-paragraph {
  text-align: left;
  font-size: 18px;
  width: 45ch;
  margin-bottom: 30px;
}

@media (max-width: 996px) {
  .services-container .header-paragraph {
    text-align: center;
    width: auto;
    margin: 0;
  }
}

.services-container-lt .header-paragraph {
  width: 55ch;
}

@media (max-width: 996px) {
  .services-container-lt .header-paragraph {
    width: auto;
  }
}

.services-container-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 10px 0 25px 0;
}

@media (max-width: 996px) {
  .services-container-inner {
    padding: 0;
    align-items: center;
  }
}

@media (max-width: 996px) {
  .services-container-inner .button {
    margin-top: 15px;
  }
}

.services-container .image {
  height: 370px;
  overflow: hidden;
  border-radius: 2px;
}

@media (max-width: 996px) {
  .services-container .image {
    height: 230px;
    order: -1;
  }
}

.services-container .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 2px;
}

.services-container-reverse .services-container-inner {
  align-items: flex-end;
}

@media (max-width: 767px) {
  .services-container-reverse .services-container-inner {
    align-items: center;
  }
}

.services-container-reverse .services-container-inner h2 {
  text-align: right;
}

@media (max-width: 767px) {
  .services-container-reverse .services-container-inner h2 {
    text-align: center;
  }
}

@media (max-width: 767px) {
  .services-container-reverse .services-container-inner .header-paragraph {
    text-align: center !important;
  }
}

@media (min-width: 1200px) {
  .news-container {
    max-width: 1050px !important;
    width: 1050px !important;
  }
}

.news-grid {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

@media (max-width: 996px) {
  .news-grid {
    flex-direction: column;
  }
}

.news-grid .news-grid-item {
  display: flex;
  flex-direction: column;
  width: calc(50% - 30px);
  margin: 0 15px;
}

@media (max-width: 996px) {
  .news-grid .news-grid-item {
    width: 100%;
    margin: 15px 0;
  }
}

.news-grid .news-grid-item:hover {
  text-decoration: none;
}

.news-grid .news-grid-item:hover .title {
  color: var(--clr-accent);
}

.news-grid .news-grid-item:hover img {
  transform: scale(1.05);
}

.news-grid .news-grid-item .img-wrapper {
  height: 285px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .news-grid .news-grid-item .img-wrapper {
    height: 180px;
  }
}

.news-grid .news-grid-item .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: all 0.2s ease;
}

.news-grid .news-grid-item .title {
  font-size: 24px;
  font-weight: 700;
  color: var(--clr-black);
  margin: 25px 0 0 0;
  transition: all 0.2s ease;
}

@media (max-width: 767px) {
  .news-grid .news-grid-item .title {
    font-size: 18px;
  }
}

.news-grid .news-grid-item .lead {
  font-size: 18px;
  font-weight: 400;
  color: var(--clr-black);
  margin: 20px 0 0 0;
}

@media (max-width: 767px) {
  .news-grid .news-grid-item .lead {
    font-size: 14px;
  }
}

.news-grid .news-grid-item .info {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
}

.news-grid .news-grid-item .info .date {
  font-size: 13px;
  font-weight: 400;
  font-style: italic;
  color: var(--clr-black);
  margin: 0;
}

.news-grid .news-grid-item .info .more {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
  color: var(--clr-accent2);
  margin: 0;
  text-transform: uppercase;
}

.news-grid .news-grid-item .info .more i {
  font-size: 4px;
  margin-left: 10px;
}

.news-btn-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 45px 0 0 0;
}

.contact-form {
  background: #fff;
  padding: 90px 0 50px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media (max-width: 767px) {
  .contact-form {
    padding: 50px 0;
  }
}

.contact-form .title {
  font-size: 30px;
  font-weight: 700;
  font-style: italic;
  color: var(--clr-black);
  margin: 0;
}

@media (max-width: 767px) {
  .contact-form .title {
    text-align: center;
    font-size: 24px;
  }
}

.contact-form .subtitle {
  font-size: 18px;
  font-weight: 400;
  color: var(--accent);
  text-align: center;
  width: 55%;
  margin: 15px 0 0 0;
}

@media (max-width: 767px) {
  .contact-form .subtitle {
    text-align: center;
    width: auto;
  }
}

.contact-form form {
  width: 80%;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 767px) {
  .contact-form form {
    width: 90%;
  }
}

.contact-form form .input-container {
  display: grid;
  grid: 245px /1fr 1fr;
  gap: 20px;
  width: 85%;
}

@media (max-width: 767px) {
  .contact-form form .input-container {
    grid: 245px 200px /1fr;
    width: 100%;
  }
}

.contact-form form .input-container input, .contact-form form .input-container select {
  height: 55px;
  outline: none;
  background: transparent;
  border: 1px solid var(--clr-black);
  border-radius: 2px;
  padding: 0 20px 0 50px;
  width: 100%;
  margin-bottom: 8px;
  color: #9b9b9b;
  background-color: transparent !important;
}

.contact-form form .input-container input:last-of-type, .contact-form form .input-container select:last-of-type {
  margin: 0;
}

.contact-form form .input-container input::placeholder {
  color: currentColor;
}

.contact-form form .input-container select {
  margin-bottom: 0;
}

.contact-form form .input-container select::placeholder {
  color: currentColor;
}

.contact-form form .input-container .inputName {
  background-image: url("../../img/form/name.svg");
  background-repeat: no-repeat;
  background-position: 15px 15px;
}

.contact-form form .input-container .inputCompanyName {
  background-image: url("../../img/form/company_name.svg");
  background-repeat: no-repeat;
  background-position: 15px 15px;
}

.contact-form form .input-container .inputEmail {
  background-image: url("../../img/form/email.svg");
  background-repeat: no-repeat;
  background-position: 18px 20px;
}

.contact-form form .input-container .inputPhone {
  background-image: url("../../img/form/phone.svg");
  background-repeat: no-repeat;
  background-position: 23px 15px;
}

.contact-form form .input-container .select {
  position: relative;
  height: 55px;
}

.contact-form form .input-container .select select {
  top: 0;
  left: 0;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.contact-form form .input-container .select img {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}

.contact-form form .input-container .inputService {
  background-image: url("../../img/form/service.svg");
  background-repeat: no-repeat;
  background-position: 21px 15px;
}

.contact-form form .input-container .textarea {
  height: 100%;
}

.contact-form form .input-container .textarea .field-contact-message {
  height: 100%;
}

.contact-form form .input-container textarea {
  background-image: url("../../img/form/message.svg");
  background-repeat: no-repeat;
  background-position: 25px 15px;
  padding: 15px 15px 15px 60px;
  outline: none;
  border: 1px solid var(--clr-black);
  border-radius: 2px;
  color: #9b9b9b;
  height: 100%;
  width: 100%;
  box-shadow: none !important;
}

.contact-form form .input-container .textarea textarea::placeholder {
  color: currentColor;
}

.contact-form .submit-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 75%;
  margin-top: 25px;
}

@media (max-width: 767px) {
  .contact-form .submit-container {
    flex-direction: column;
    width: 100%;
  }
}

.contact-form .submit-container label {
  color: var(--clr-black);
  margin-left: 10px;
  font-size: 12px;
}

@media (max-width: 767px) {
  .contact-form .submit-container .button {
    margin-top: 25px;
  }
}

.contact-form .submit-container .custom-checkbox {
  display: block;
  position: relative;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  overflow: hidden;
  height: 25px;
  width: 25px;
  min-height: 25px;
  min-width: 25px;
}

.contact-form .submit-container .custom-checkbox input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  cursor: pointer;
  height: 25px;
  width: 25px;
  z-index: 999999;
}

.contact-form .submit-container .custom-checkbox .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background: transparent;
  border-radius: 0px;
  pointer-events: none;
  border: 1px solid var(--clr-black);
  border-radius: 2px;
}

.contact-form .submit-container .custom-checkbox .checkmark::after {
  content: "";
  position: absolute;
  display: none;
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid var(--clr-accent);
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.contact-form .submit-container .custom-checkbox:hover {
  border-color: var(--clr-accent);
}

.contact-form .submit-container .custom-checkbox input:checked~.checkmark {
  border-color: var(--clr-accent);
}

.contact-form .submit-container .custom-checkbox input:checked~.checkmark:after {
  display: block;
}

@media only screen and (max-width: 996px) {
  .section-contact {
    padding-top: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .section-contact {
    padding-bottom: 80px;
  }
}

@media only screen and (max-width: 1200px) {
  .section-contact .container .title {
    font-size: 34px;
  }
}

@media only screen and (max-width: 576px) {
  .section-contact .container .title {
    text-align: center;
  }
}

@media only screen and (max-width: 996px) {
  .section-contact .container .subtitle {
    width: 100%;
  }
}

@media only screen and (max-width: 996px) {
  .section-contact .container form {
    width: 100%;
  }
}

@media only screen and (max-width: 996px) {
  .section-contact .container form .input-container {
    gap: 0;
    display: flex;
    flex-direction: column;
  }
}

@media only screen and (max-width: 767px) {
  .section-contact .container form .inputEmail {
    background-position: 17px 20px;
  }
}

@media only screen and (max-width: 767px) {
  .section-contact .container form .inputPhone {
    background-position: 21px 15px;
  }
}

@media only screen and (max-width: 767px) {
  .section-contact .container form .inputService {
    background-position: 17px 15px;
  }
}

@media only screen and (max-width: 996px) {
  .section-contact .container form .textarea textarea {
    margin-top: 8px;
    min-height: 200px;
  }
}

@media only screen and (max-width: 767px) {
  .section-contact .container form textarea {
    background-position: 19px 15px;
  }
}

@media only screen and (max-width: 1200px) {
  .section-contact .submit-container {
    width: 100%;
  }
}

@media only screen and (max-width: 996px) {
  .section-contact .submit-container {
    flex-direction: column;
  }
}

@media only screen and (max-width: 996px) {
  .section-contact .submit-container .submit-button {
    margin-right: 0;
    margin-top: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .section-contact .submit-container label {
    font-size: 10px;
  }
}

@media only screen and (max-width: 996px) {
  .section-contact .submit-container .custom-checkbox {
    margin-top: 5px;
    margin-left: 10px;
  }
}

#mainCarousel {
  height: 365px;
}

@media (max-width: 767px) {
  #mainCarousel {
    height: 230px;
  }
}

#mainCarousel .carousel-inner {
  height: 100%;
}

#mainCarousel .carousel-inner .carousel-item {
  height: 100%;
}

#mainCarousel .carousel-inner .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

#mainCarousel .carousel-inner .carousel-item .carousel-caption {
  top: 50%;
  left: 50%;
  right: auto;
  bottom: auto;
  transform: translate(-50%, -50%);
  width: calc(100% - 100px);
  height: calc(100% - 100px);
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1200px) {
  #mainCarousel .carousel-inner .carousel-item .carousel-caption {
    width: calc(100% - 50px);
    height: calc(100% - 50px);
  }
}

@media (max-width: 767px) {
  #mainCarousel .carousel-inner .carousel-item .carousel-caption {
    width: 100%;
    height: 100%;
  }
}

#mainCarousel .carousel-inner .carousel-item .carousel-caption p {
  font-size: 40px;
  font-weight: 700;
  color: white;
  text-align: center;
  text-transform: uppercase;
  width: 30ch;
}

@media (max-width: 1200px) {
  #mainCarousel .carousel-inner .carousel-item .carousel-caption p {
    font-size: 34px;
  }
}

@media (max-width: 996px) {
  #mainCarousel .carousel-inner .carousel-item .carousel-caption p {
    font-size: 28px;
    width: auto;
  }
}

@media (max-width: 767px) {
  #mainCarousel .carousel-inner .carousel-item .carousel-caption p {
    font-size: 22px;
  }
}

.staticpages-view {
  min-height: calc(100vh - 500px);
  padding: 50px 0;
}

.staticpages-view h1 {
  text-align: center;
  color: var(--clr-black);
  margin-bottom: 30px;
}


/** CONTACT **/

.section-contact {
  background: #fff;
  padding: 90px 0 0 0;
  margin-bottom: 50px;
}

@media only screen and (max-width: 996px) {
  .section-contact {
    padding-top: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .section-contact {
    padding-bottom: 80px;
  }
}

@media only screen and (max-width: 576px) {
  .section-contact {
    padding-bottom: 30px;
  }
}

.section-contact .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.section-contact .form-group {
  margin-bottom: 0;
}

.section-contact .container .title {
  font-size: 30px;
  font-weight: 700;
  font-style: italic;
  color: var(--clr-black);
  margin-bottom: 5px;
}

@media only screen and (max-width: 1200px) {
  .section-contact .container .title {
    font-size: 34px;
  }
}

@media only screen and (max-width: 576px) {
  .section-contact .container .title {
    font-size: 24px;
    text-align: center;
    margin: 20px 0 0 0;
  }
}

.section-contact .container .subtitle {
  font-size: 18px;
  font-weight: 400;
  color: var(--clr-black);
  margin: 10px 0 0 0;
  text-align: center;
  width: 60%;
}

@media only screen and (max-width: 996px) {
  .section-contact .container .subtitle {
    width: 100%;
    font-size: 16px;
  }
}

@media only screen and (max-width: 576px) {
  .section-contact .container .subtitle {
    font-size: 14px;
  }
}

.section-contact .container form {
  width: 80%;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media only screen and (max-width: 996px) {
  .section-contact .container form {
    width: 100%;
  }
}

.section-contact .container form .input-container {
  display: grid;
  grid: 1fr/1fr 1fr;
  gap: 20px;
  width: 85%;
}

@media only screen and (max-width: 996px) {
  .section-contact .container form .input-container {
    gap: 0;
    display: flex;
    flex-direction: column;
  }
}

.section-contact .container form input {
  height: 55px;
  outline: none;
  background: transparent;
  border: 1px solid var(--clr-black);
  border-radius: 2px;
  padding: 0 20px 0 50px;
  width: 100%;
  color: #c3c3c3;
  background-color: transparent !important;
}

.section-contact .container .form-group {
  margin-bottom: 8px;
}

.section-contact .container form .field-contact-phone input {
  margin: 0;
}

.section-contact .container form input::placeholder,
.section-contact .container form select::placeholder {
  color: currentColor;
}

.section-contact .container form select {
  margin-bottom: 0;
}

.section-contact .container form .inputName {
  background-image: url("../../img/form/name.svg");
  background-repeat: no-repeat;
  background-position: 15px 15px;
}

.section-contact .container form .inputCompanyName {
  background-image: url("../../img/form/company_name.svg");
  background-repeat: no-repeat;
  background-position: 15px 15px;
}

.section-contact .container form .inputEmail {
  background-image: url("../../img/form/email.svg");
  background-repeat: no-repeat;
  background-position: 18px 20px;
}

@media only screen and (max-width: 767px) {
  .section-contact .container form .inputEmail {
    background-position: 17px 20px;
  }
}

.section-contact .container form .inputPhone {
  background-image: url("../../img/form/phone.svg");
  background-repeat: no-repeat;
  background-position: 23px 15px;
}

@media only screen and (max-width: 767px) {
  .section-contact .container form .inputPhone {
    background-position: 21px 15px;
  }
}

.section-contact .container form .select {
  position: relative;
  height: 55px;
}

.section-contact .container form .select select {
  top: 0;
  left: 0;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.section-contact .container form .select img {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}

.section-contact .container form .inputService {
  background-image: url("../../img/form/service.svg");
  background-repeat: no-repeat;
  background-position: 21px 15px;
}

@media only screen and (max-width: 767px) {
  .section-contact .container form .inputService {
    background-position: 17px 15px;
  }
}

.section-contact .container form .textarea {
  height: 181px;
}

.section-contact .container form .textarea .field-contact-message {
  height: 100%;
}

.section-contact .container form textarea {
  background-image: url("../../img/form/message.svg");
  background-repeat: no-repeat;
  background-position: 25px 15px;
  padding: 15px 15px 15px 60px;
  outline: none;
  border: 1px solid var(--clr-black);
  border-radius: 2px;
  color: #c3c3c3;
  height: 100%;
  box-shadow: none !important;
}

.section-contact .container form .textarea textarea::placeholder {
  color: currentColor;
}

@media only screen and (max-width: 996px) {
  .section-contact .container form .textarea textarea {
    margin-top: 8px;
    min-height: 200px;
  }
}

@media only screen and (max-width: 767px) {
  .section-contact .container form textarea {
    background-position: 19px 15px;
  }
}

.section-contact .submit-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 75%;
  margin-top: 25px;
}

@media only screen and (max-width: 1200px) {
  .section-contact .submit-container {
    width: 100%;
  }
}

@media only screen and (max-width: 996px) {
  .section-contact .submit-container {
    flex-direction: column;
    justify-content: center;
    margin-top: 35px;
  }

  .section-contact .submit-container button {
    margin-top: 20px;
  }

  .section-contact .submit-container input {
    height: auto !important;
  }
}

.section-contact .submit-container label {
  color: var(--clr-black);
  /* margin-left: 10px; */
  font-size: 12px;
  margin-right: 20px;
}

@media only screen and (max-width: 767px) {
  .section-contact .submit-container label {
    font-size: 10px;
  }
}

.section-contact .field-contact-service {
  display: flex;
  flex-direction: column;
}

.section-contact .submit-container .custom-checkbox {
  display: block;
  position: relative;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  overflow: hidden;
}

@media only screen and (max-width: 996px) {
  .section-contact .submit-container .custom-checkbox {
    margin-top: 5px;
    margin-left: 10px;
  }
}

.breadcrumb {
  padding: 0;
  margin: 0 0 15px 0;
  background: none;
}

.breadcrumb li a {
  font-size: 14px;
  font-weight: 400;
  color: var(--clr-black);
  text-transform: uppercase;
}

.breadcrumb>li+li:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f101";
  margin: 0 10px;
  color: var(--clr-accent);
}

.breadcrumb li.active {
  color: var(--clr-black);
  text-transform: uppercase;
}

@media (max-width: 576px) {
  .breadcrumb li a {
    white-space: pre-wrap;
  }

  .breadcrumb li a, .breadcrumb li.active {
    font-size: 12px;
  }
}

.mp-row {
  width: 100%;
}

.mp-row span {
  font-size: 17px;
  text-transform: uppercase;
  font-weight: 700;
}

.mp-row .mp-box-title span {
  margin: 0px 15px;
}

.mp-row .mp-box-lefthr {
  height: 1px;
  width: 35px;
  margin-right: 15px;
  background-color: var(--clr-accent);
}

.mp-row .mp-box-icon {
  border-radius: 50%;
  background-color: var(--clr-accent);
  text-align: center;
  height: 45px;
  width: 45px;
  min-width: 45px;
  min-height: 45px;
  line-height: 45px;
  color: #fff;
  font-size: 24px;
  margin-right: 15px;
}

@media (max-width: 576px) {
  .mp-row .mp-box-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
    min-height: 30px;
    line-height: 30px;
    font-size: 16px;
  }
}

.mp-row .mp-box-icon.mp-box-icon-black {
  background: var(--clr-black);
}

.mp-row .mp-box-righthr {
  height: 1px;
  flex-grow: 1;
  background-color: #e7e7e7;
  margin-left: 15px;
}


.gallery-container {
  margin-top: 50px;
  min-height: calc(100vh - 500px);
}

.gallery-container a {
  text-decoration: none;
}

.gallery-container h1 {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  color: var(--clr-black);
  margin-bottom: 30px;
}

.gallery-container h1:hover {
  color: var(--clr-accent);
}

.gallery-container .gallery-images a img {
  margin: 10px;
}

.gallery-container .social-box {
  margin-left: 25px;
}

.gallery-container .gallery-list-item {
  width: 100%;
  height: 100%;
  display: block;
}

.gallery-container .gallery-list-item .img-wrapper {
  width: 100%;
  height: 200px;
  overflow: hidden;
  margin: 0;
}

.gallery-container .gallery-list-item .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.gallery-container .gallery-list-item h3 {
  margin-top: 10px;
  font-size: 22px;
  color: var(--clr-black);
}

.gallery-container .gallery-list-item:hover h3 {
  color: var(--clr-accent);
}

.gallery-container .list-view {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.gallery-container .list-view div {
  width: calc(25% - 30px);
  margin: 15px;
}

@media (max-width: 1200px) {
  .gallery-container .list-view div {
    width: calc(33.33% - 30px);
  }
}

@media (max-width: 996px) {
  .gallery-container .list-view div {
    width: calc(50% - 30px);
  }
}

@media (max-width: 767px) {
  .gallery-container .list-view div {
    width: calc(50% - 20px);
    margin: 10px;
  }
}

.gallery-container .social-box {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 30px;
}

.gallery-container .social-box .fb-share-button {
  margin-top: -5px;
}

.gallery-container .social-box .fb-like span {
  width: 73px !important;
}

.gallery-container .social-box .fb-like span iframe {
  width: auto !important;
  margin-top: 4px !important;
}

.partnerimg {
  max-height: 80px;
  margin: 10px;
}

@media (max-width: 1450px) {
  .partnerimg {
    max-height: 80px;
  }
}




/* --- */
/* Navbar */
.nav .container ul li.highlighted a {
  background-color: #3D9348;
  font-weight: 600;
}

.sidebar ul li.highlighted a {
  color: #3D9348;
  font-weight: 600;
}

.knowledgebase-title {
  text-transform: uppercase;
  font-size: 40px;
}

.knowledgebase-title span {
  font-weight: 800;
}

.knowledebase-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.knowledebase-header .header-contacts {
  display: flex;
  gap: 10px;
}

@media (max-width: 992px) {
  .knowledebase-header .header-contacts, .knowledgebase-title {
    display: none;
  }
}

/* Section #1 */
h2.section-title-knowledgebase {
  font-size: 35px;
  font-weight: 800;
  text-transform: uppercase;
}

h2.section-title-knowledgebase>span {
  font-size: 26px;
  font-weight: 400;
}

/* Section #2 (articles?) */
.articles-container {
  display: grid;
  grid-template-columns: repeat(3, 366px);
  grid-template-rows: minmax(493px, 1fr);
  gap: 26px;
  justify-content: center;
  margin: 30px auto;
}

.article-element {
  display: flex;
  flex-direction: column;
  background-color: #F8F8F8;
  color: var(--clr-black);
  text-decoration: none;
}

.article-element:hover {
  color: var(--clr-black);
  text-decoration: none;
}

.article-element>.article-image-container>img {
  transition: transform 0.2s ease-in-out;
}

.article-element .article-title {
  transition: color 0.2s ease-in-out;
}

.article-element:hover>.article-image-container>img {
  transform: scale(1.02);
}

.article-element .article-icon {

  transition: transform 0.4s ease-in-out;
}

.article-element:hover .article-icon {
  transform: rotate(360deg);
}

.article-element:hover .article-title {
  color: var(--clr-accent);
}

.article-image-container {
  width: 366px;
  height: 218px;
  overflow: hidden;
  margin-bottom: 30px;
}

.article-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-content {
  text-align: center;
  padding: 0px 14px;
}

.article-title {
  font-size: 26px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.article-title>div {
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 24px;
  overflow-wrap: break-word;
}

.article-text {
  font-size: 16px;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.article-icon {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  margin-bottom: 12px;
}

@media (max-width: 1350px) {
  .articles-container {
    grid-template-columns: minmax(330px, 768px);
    grid-template-rows: 462px;
  }

  .article-element {
    justify-content: center;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .article-image-container {
    width: 330px;
    height: auto;
    overflow: hidden;
    margin-bottom: 30px;
  }
}

/* Section #3 (enterprise planning) */
.enterprise-container {
  display: flex;
}

.enterprise-inner {
  align-items: flex-end;
}

.enterprise-inner .header-paragraph, .enterprise-inner .section-title-knowledgebase {
  text-align: right;
}

.enterprise-inner .header-paragraph {
  max-width: 50ch;
}

.enterprise-planner-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.enterprise-planner {
  width: 326px;
  height: 326px;
  border-radius: 100%;
  line-height: 38px;
  color: #fff;
  background-color: #BC0030;
  text-transform: uppercase;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.enterprise-planner>div:nth-child(1) {
  font-size: 25px;
}

.enterprise-planner>div:nth-child(2) {
  font-size: 45px;
  font-weight: 800;
}

.enterprise-planner>div:nth-child(3) {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 16px;
}

.enterprise-planner::before {
  content: " ";
  position: absolute;
  background-image: url(/img/white-border.svg);
  width: 300px;
  height: 300px;
  background-size: 300px 300px;


  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}

@media (max-width: 996px) {
  .enterprise-inner {
    align-items: center;
  }

  .enterprise-inner .header-paragraph, .enterprise-inner .section-title-knowledgebase {
    text-align: center;
  }
}


.enterprise-planner:hover {
  text-decoration: none;
  color: #fff;
}

.enterprise-planner img {
  transition: transform 0.4s ease-in-out;
}

.enterprise-planner:hover img {
  transform: scale(1.2);
}

.enterprise-planner::before {
  transition: 0s;
}

.enterprise-planner:hover::before {
  transition: transform 200.3s linear 0.1s;
  transform: rotate(5180deg);
}

/* Section #4 */
.news-section-title {
  font-size: 30px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 56px;
}

.news-section-title span {
  font-weight: 400;
}

.section-title-block {
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  background-color: var(--clr-accent2);
  text-align: center;
  text-transform: uppercase;
  width: 100%;
  padding: 26px;
  margin: 56px 0px;
}

.news-container-knowledgebase {
  margin-bottom: 56px;
}

/* Enterprise planner page */

.enterprise-planner-section {
  text-align: center;
}

.enterprise-planner-section>h2 {
  font-size: 35px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--clr-black);
  line-height: 35px;
}

.enterprise-planner-section>h2>span {
  font-size: 26px;
  font-weight: 400;
}

.enterprise-planner-section .header-paragraph {
  max-width: 1010px;
  margin: 0px auto;
  font-size: 18px;
}

.enterprise-planner-inputs {
  margin: 56px 0px 76px 0px;
}

/* Enterprise select */
.enterprise-planner-inputs .form-group {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 24px;
}

.enterprise-planner-inputs .form-group label, .enterprise-planner-inputs .form-group select, .enterprise-planner-inputs .form-group input {
  flex-basis: 50%;
}

.enterprise-planner-inputs .form-group label {
  font-size: 20px;
  font-weight: 800;
  text-align: right;
  color: var(--clr-black);
}

.enterprise-planner-inputs .form-group select, .enterprise-planner-inputs .form-group input {
  box-sizing: border-box;
  max-width: 504px;
  height: 48px;
  border: 1px solid var(--clr-black);
  padding: 10px 29px;
  font-size: 18px;
  border-radius: 20px;
}

.enterprise-planner-inputs .form-group select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url(../img/select-chevron.svg);
  background-repeat: no-repeat;
  background-position: calc(100% - 32px) center;
}

.enterprise-planner-inputs .submit-container
{
  margin-top: 30px;
  margin-bottom: 40px;
  width: 100%;
}

.field-planner-agree
{
  width: 100%;
  max-width: 500px;
  gap: 0px !important;
}

.enterprise-planner-inputs .submit-container .cbx-label
{
  width: 100%;
  font-size: 13px;
  font-weight: 400;
  text-align: left;
  flex-basis: initial !important;
}

.planner-success
{
  font-size: 18px;
  font-weight: 700;
}

@media (max-width: 992px) {
  .enterprise-planner-inputs .form-group {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 42px;
  }
}

@media (max-width: 475px) {
  .enterprise-planner-inputs .form-group select, .enterprise-planner-inputs .form-group input {
    font-size: 12px;
    max-width: 330px;
  }

  .enterprise-planner-inputs .form-group label {
    font-size: 14px;
  }

  .enterprise-planner-inputs .form-group {
    gap: 6px;
    margin-bottom: 36px;
  }

  .enterprise-planner-section>h2 {
    font-size: 27px;
  }

  .enterprise-planner-section>h2>span {
    font-size: 18px;
  }

  .enterprise-planner-section .header-paragraph {
    font-size: 16px;
  }
}

.btn-plan {
  color: #fff;
  background-color: var(--clr-accent2);
  font-size: 35px;
  font-weight: 800;
  text-transform: uppercase;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 20px 44px;
  border-radius: 40px;
  height: 73px;
  width: 332px;
  border: 2px dashed #FFFFFF;
  box-shadow: 0 0 0 3px var(--clr-accent2);
  transition: border-radius 0.4s ease, color 0.4s ease, background-color 0.4s ease;
}

.btn-plan>img {
  width: 62px;
  height: auto;
}

.enterprise-planner-section-email {
  margin-top: 54px;
  padding: 58px 0px;
  background-color: #F8F8F8;
}

.enterprise-planner-section-email .section-title {
  margin-bottom: 50px;
}

.enterprise-planner-section-email .header-paragraph {
  margin-bottom: 80px;
}

.btn-mail {
  color: #fff;
  background-color: var(--clr-accent);
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 16px 22px;
  border-radius: 40px;
  height: 79px;
  width: 428px;
  border: 2px dashed #FFFFFF;
  box-shadow: 0 0 0 3px var(--clr-accent);
  transition: border-radius 0.4s ease, color 0.4s ease, background-color 0.4s ease;
}

.btn-mail>span>span {
  font-weight: normal;
}

.btn-plan:focus, .btn-mail:focus {
  box-shadow: 0 0 0 3px var(--clr-accent2);
}

.btn-plan:hover, .btn-mail:hover {
  color: #fff;
  border-radius: 0px;
  background-color: var(--clr-black);
  box-shadow: 0 0 0 3px var(--clr-black);
}

@media (max-width: 576px) {
  .btn-mail {
    width: 332px;
    font-size: 16px;
  }
}