@font-face {
  font-family: "Poppins";
  src: url("../../fonts/Poppins/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("../../fonts/Poppins/Poppins-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("../../fonts/Poppins/Poppins-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("../../fonts/Poppins/Poppins-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Syne";
  src: url("../../fonts/Syne/Syne-VariableFont_wght.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Raleway";
  src: url("../../fonts/Raleway/Raleway-VariableFont_wght.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
}

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

html {
  scroll-behavior: smooth;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #6F6F6F;
  overflow-x: hidden;
}

body.modal-show {
  overflow: hidden;
}

input, textarea, a, button {
  transition: all 0.2s linear;
}
input:hover, textarea:hover, a:hover, button:hover {
  transition: all 0.2s linear;
}
input:focus, textarea:focus, a:focus, button:focus {
  transition: all 0.2s linear;
  outline: none;
}
input:before, input:after, textarea:before, textarea:after, a:before, a:after, button:before, button:after {
  transition: all 0.2s linear;
}

a {
  color: #141E28;
  text-decoration: none;
}
a:hover {
  color: #141E28;
  text-decoration: none;
}

.main-title {
  color: #141E28;
  font-family: "Syne", sans-serif;
  font-size: 5rem;
  font-weight: 500;
  line-height: 4.188rem;
}
@media only screen and (max-width: 767px) {
  .main-title {
    font-size: 3rem;
    line-height: 3.75rem;
  }
}
.main-title span {
  color: #0078A6;
}

.default-title {
  font-size: 4rem;
  font-weight: 500;
  line-height: 4rem;
}
@media only screen and (max-width: 767px) {
  .default-title {
    font-size: 2.75rem;
    line-height: 2.75rem;
  }
}

.regular-title {
  color: #141E28;
  font-size: 3rem;
  font-weight: 500;
  line-height: 100%;
}
@media only screen and (max-width: 767px) {
  .regular-title {
    font-size: 2.5rem;
  }
}
.regular-title span {
  color: #0078A6;
}

.small-title {
  color: #141E28;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: normal;
}

.main-container {
  max-width: 90rem;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-left: 4.5rem;
  padding-right: 4.5rem;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .main-container {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .main-container {
    padding-left: 1.875rem;
    padding-right: 1.875rem;
  }
}

.space-after-header {
  padding-top: 5.438rem;
}

.button-wrapper {
  position: relative;
  display: flex;
}

.default-button {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 1rem;
  border-radius: 0.375rem;
  transition: 0.2s all ease;
  cursor: pointer;
}

.small-button {
  padding: 0.75rem 0.875rem;
  gap: 0.5rem;
  text-transform: uppercase;
}
.small-button svg {
  width: 1.5rem;
  height: 1.5rem;
  transition: 0.2s all ease;
}
.small-button:hover svg {
  transform: rotate(45deg);
}

.light-blue-style-button {
  color: #141E28;
  background-color: #ABE9FF;
}
.light-blue-style-button:hover {
  background-color: #32D0FE;
}

.wysiwyg-styles * {
  word-wrap: break-word;
}
.wysiwyg-styles *:first-child {
  margin-top: 0;
}
.wysiwyg-styles *:last-child {
  margin-bottom: 0;
}
.wysiwyg-styles ul {
  margin-bottom: 1rem;
  padding-left: 1.875rem;
}
.wysiwyg-styles ul li {
  position: relative;
}
.wysiwyg-styles ol {
  margin-bottom: 1rem;
  padding-left: 1.875rem;
}

@media only screen and (max-width: 600px) {
  #wpadminbar {
    position: fixed !important;
  }
}
body.body-with-admin-bar .header-wrapper {
  top: 2rem;
}
@media only screen and (max-width: 782px) {
  body.body-with-admin-bar .header-wrapper {
    top: 2.875rem;
  }
}

body.header-scrolled .header-wrapper {
  -webkit-box-shadow: 0 0.625rem 2.125rem -0.563rem rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 0.625rem 2.125rem -0.563rem rgba(0, 0, 0, 0.15);
  box-shadow: 0 0.625rem 2.125rem -0.563rem rgba(0, 0, 0, 0.15);
}

.header-wrapper {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #FFF;
  transition: box-shadow 0.2s linear;
  z-index: 999;
}
.header-wrapper * {
  font-size: 1rem;
}
.header-wrapper .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5.438rem;
}
.header-wrapper .header .header-logo-wrapper {
  padding-right: 1.25rem;
}
.header-wrapper .header .header-logo-wrapper a {
  display: flex;
  height: 100%;
}
.header-wrapper .header .header-logo-wrapper a img {
  max-width: 3.8rem;
  max-height: 4rem;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.header-wrapper .header .header-menu-wrapper {
  padding-right: 1.25rem;
}
.header-wrapper .header .header-menu-wrapper ul {
  display: flex;
  gap: 1rem;
}
.header-wrapper .header .header-menu-wrapper ul li {
  list-style: none;
}
.header-wrapper .header .header-menu-wrapper ul li.current-menu-item a {
  display: inline-block;
  z-index: 0;
}
.header-wrapper .header .header-menu-wrapper ul li.current-menu-item a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.25rem;
  width: 100%;
  height: 0;
  background: #32D0FE;
  filter: blur(0.125rem);
  transition: height 0.3s ease-in-out;
  z-index: -1;
}
.header-wrapper .header .header-menu-wrapper ul li.current-menu-item a:hover::before {
  height: 0.438rem;
}
.header-wrapper .header .header-menu-wrapper ul li.current-menu-item a::before {
  height: 0.438rem;
  filter: blur(0.063rem);
  transition: none;
}
.header-wrapper .header .header-menu-wrapper ul li a {
  position: relative;
  text-transform: uppercase;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  display: inline-block;
  z-index: 0;
}
.header-wrapper .header .header-menu-wrapper ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.25rem;
  width: 100%;
  height: 0;
  background: #ABE9FF;
  filter: blur(0.125rem);
  transition: height 0.3s ease-in-out;
  z-index: -1;
}
.header-wrapper .header .header-menu-wrapper ul li a:hover::before {
  height: 0.438rem;
}
@media only screen and (max-width: 1023px) {
  .header-wrapper .header .header-menu-wrapper {
    display: none;
  }
}
@media only screen and (max-width: 1023px) {
  .header-wrapper .header .header-socials-wrapper {
    margin-left: auto;
  }
}
.header-wrapper .header .header-socials-wrapper a {
  display: flex;
}
.header-wrapper .header .header-socials-wrapper a svg {
  width: 2rem;
  height: 2rem;
}
.header-wrapper .header .header-socials-wrapper a svg path {
  transition: all 0.2s linear;
}
.header-wrapper .header .header-socials-wrapper a:hover svg path {
  fill-opacity: 1;
}
.header-wrapper .header .mobile-menu-opener {
  display: none;
  padding-left: 1.5rem;
}
@media only screen and (max-width: 1023px) {
  .header-wrapper .header .mobile-menu-opener {
    display: flex;
  }
}
.header-wrapper .header .mobile-menu-opener .mobile-menu-opener-icon {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
  cursor: pointer;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100vh;
  padding: 2.25rem 4.5rem;
  transform: translateX(100%);
  background-color: #FFF;
  transition: all 0.2s linear;
  overflow-y: auto;
  z-index: 999;
}
@media only screen and (max-width: 767px) {
  .mobile-menu {
    padding: 2.25rem 1.875rem;
  }
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu .top-row {
  display: flex;
  width: 100%;
  margin-bottom: 3.125rem;
}
.mobile-menu .mobile-menu-closer {
  position: absolute;
  right: 4.5rem;
  width: 2rem;
  height: 2rem;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .mobile-menu .mobile-menu-closer {
    right: 1.875rem;
  }
}
.mobile-menu .header-menu-wrapper ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
.mobile-menu .header-menu-wrapper ul li {
  list-style: none;
}
.mobile-menu .header-menu-wrapper ul li.current-menu-item a {
  display: inline-block;
  z-index: 0;
}
.mobile-menu .header-menu-wrapper ul li.current-menu-item a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.25rem;
  width: 100%;
  height: 0;
  background: #32D0FE;
  filter: blur(0.125rem);
  transition: height 0.3s ease-in-out;
  z-index: -1;
}
.mobile-menu .header-menu-wrapper ul li.current-menu-item a:hover::before {
  height: 0.438rem;
}
.mobile-menu .header-menu-wrapper ul li.current-menu-item a::before {
  height: 0.438rem;
  filter: blur(0.063rem);
  transition: none;
}
.mobile-menu .header-menu-wrapper ul li a {
  position: relative;
  text-transform: capitalize;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  display: inline-block;
  z-index: 0;
}
.mobile-menu .header-menu-wrapper ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.25rem;
  width: 100%;
  height: 0;
  background: #ABE9FF;
  filter: blur(0.125rem);
  transition: height 0.3s ease-in-out;
  z-index: -1;
}
.mobile-menu .header-menu-wrapper ul li a:hover::before {
  height: 0.438rem;
}

.footer-wrapper {
  background-color: #141E28;
}
.footer-wrapper * {
  font-size: 1rem;
}
.footer-wrapper ::-moz-selection {
  background-color: rgba(255, 255, 255, 0.2);
}
.footer-wrapper ::selection {
  background-color: rgba(255, 255, 255, 0.2);
}
.footer-wrapper .footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2.5rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
@media only screen and (min-width: 768px) and (max-width: 1366px) {
  .footer-wrapper .footer-top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
}
@media only screen and (min-width: 768px) and (max-width: 1100px) {
  .footer-wrapper .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 767px) {
  .footer-wrapper .footer-top {
    gap: 1.25rem;
    padding-top: 1.875rem;
    padding-bottom: 1.875rem;
  }
}
.footer-wrapper .footer-top p {
  color: #7C8998;
}
.footer-wrapper .footer-top strong {
  color: #ABE9FF;
  font-weight: 600;
}
.footer-wrapper .footer-top a {
  color: #7C8998;
}
.footer-wrapper .footer-top a:hover {
  color: #0078A6;
}
.footer-wrapper .footer-top .footer-col {
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 767px) {
  .footer-wrapper .footer-top .footer-col {
    align-items: center;
    text-align: center;
    width: 100%;
  }
}
.footer-wrapper .footer-top .footer-col-small {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .footer-wrapper .footer-top .footer-col-small {
    max-width: 12.888rem;
  }
}
.footer-wrapper .footer-top .footer-col-1 {
  margin-right: 2.063rem;
}
.footer-wrapper .footer-top .footer-col-1 .wysiwyg-styles:first-child {
  margin-bottom: 2.75rem;
}
@media only screen and (max-width: 1100px) {
  .footer-wrapper .footer-top .footer-col-1 .wysiwyg-styles:first-child {
    margin-bottom: 1.5rem;
  }
}
.footer-wrapper .footer-top .footer-col-1 .wysiwyg-styles:nth-child(2) {
  padding-bottom: 1.25rem;
}
@media only screen and (max-width: 1366px) {
  .footer-wrapper .footer-top .footer-col-1 {
    order: 2;
    margin-right: 0;
  }
}
.footer-wrapper .footer-top .footer-col-2 .wysiwyg-styles:first-child {
  margin-bottom: 2.75rem;
}
@media only screen and (max-width: 1100px) {
  .footer-wrapper .footer-top .footer-col-2 .wysiwyg-styles:first-child {
    margin-bottom: 1.5rem;
  }
}
@media only screen and (max-width: 1366px) {
  .footer-wrapper .footer-top .footer-col-2 {
    order: 3;
  }
}
@media only screen and (max-width: 1366px) {
  .footer-wrapper .footer-top .footer-col-3 {
    order: 1;
    grid-column: 1/-1;
    width: 100%;
  }
}
@media only screen and (min-width: 768px) {
  .footer-wrapper .footer-top .footer-col-4 {
    max-width: 14.75rem;
  }
}
@media only screen and (max-width: 1366px) {
  .footer-wrapper .footer-top .footer-col-4 {
    order: 4;
  }
}
@media only screen and (max-width: 1366px) {
  .footer-wrapper .footer-top .footer-col-5 {
    order: 5;
  }
}
.footer-wrapper .footer-top .footer-col-5 .wysiwyg-styles {
  margin-bottom: 3.25rem;
}
@media only screen and (max-width: 1100px) {
  .footer-wrapper .footer-top .footer-col-5 .wysiwyg-styles {
    margin-bottom: 1.5rem;
  }
}
.footer-wrapper .footer-top .footer-logo-wrapper a {
  display: flex;
  width: 9.375rem;
}
.footer-wrapper .footer-top .footer-logo-wrapper a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media only screen and (max-width: 767px) {
  .footer-wrapper .footer-top .footer-logo-wrapper {
    width: 100%;
  }
}
.footer-wrapper .footer-top .footer-menu-wrapper {
  margin-top: auto;
}
.footer-wrapper .footer-top .footer-menu-wrapper ul li {
  margin-bottom: 0.375rem;
  list-style: none;
}
.footer-wrapper .footer-top .footer-menu-wrapper ul li:last-child {
  margin-bottom: 0;
}
.footer-wrapper .footer-top .footer-menu-wrapper ul li a {
  color: #ABE9FF;
  font-weight: 600;
}
.footer-wrapper .footer-top .footer-menu-wrapper ul li a:hover {
  color: #0078A6;
}
.footer-wrapper .footer-bottom {
  padding-top: 1.125rem;
  padding-bottom: 1.125rem;
  background-color: rgba(255, 255, 255, 0.05);
}
.footer-wrapper .footer-bottom .footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.688rem;
}
.footer-wrapper .footer-bottom p {
  color: #7C8998;
}
@media only screen and (max-width: 767px) {
  .footer-wrapper .footer-bottom .footer-copyright {
    width: 100%;
    text-align: center;
  }
}
.footer-wrapper .footer-bottom .footer-developers {
  display: flex;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
}
@media only screen and (max-width: 767px) {
  .footer-wrapper .footer-bottom .footer-developers {
    flex-direction: column;
    width: 100%;
  }
}
.footer-wrapper .footer-bottom .footer-developers .footer-developers-logo svg {
  width: 4.875rem;
  height: 1.5rem;
}
.footer-wrapper .footer-bottom .footer-bottom-separator {
  width: 0.375rem;
  height: 0.375rem;
  background-color: #7C8998;
  border-radius: 50%;
}
@media only screen and (max-width: 767px) {
  .footer-wrapper .footer-bottom .footer-bottom-separator {
    display: none;
  }
}

.reviews-section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media only screen and (max-width: 1023px) {
  .reviews-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
.reviews-section .regular-title {
  margin-bottom: 1.5rem;
}
.reviews-section .regular-title span {
  color: #0078A6;
}
.reviews-section .content-wrapper {
  display: flex;
  gap: 1rem;
}
@media only screen and (max-width: 1023px) {
  .reviews-section .content-wrapper {
    flex-wrap: wrap;
  }
}
.reviews-section .content-wrapper .left-side {
  width: calc(100% - 41.75rem - 1rem);
}
@media only screen and (max-width: 1366px) {
  .reviews-section .content-wrapper .left-side {
    width: 50%;
  }
}
@media only screen and (max-width: 1023px) {
  .reviews-section .content-wrapper .left-side {
    width: 100%;
  }
}
.reviews-section .content-wrapper .left-side .video-wrapper {
  position: relative;
  width: 100%;
  min-height: 27rem;
  padding-top: 70.5882352941%;
  border-radius: 1.5rem;
  overflow: hidden;
}
@media only screen and (max-width: 1023px) {
  .reviews-section .content-wrapper .left-side .video-wrapper {
    min-height: unset;
    padding-top: 60%;
  }
}
.reviews-section .content-wrapper .left-side .video-wrapper.is-playing .play-button {
  display: none;
}
.reviews-section .content-wrapper .left-side .video-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.reviews-section .content-wrapper .left-side .video-wrapper .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4.846rem;
  height: 4.846rem;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(3px);
  cursor: pointer;
  z-index: 3;
}
.reviews-section .content-wrapper .left-side .video-wrapper .play-button svg {
  width: 1.438rem;
  height: 1.75rem;
}
.reviews-section .content-wrapper .left-side .video-wrapper iframe, .reviews-section .content-wrapper .left-side .video-wrapper video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.reviews-section .content-wrapper .right-side {
  width: 41.75rem;
}
@media only screen and (max-width: 1366px) {
  .reviews-section .content-wrapper .right-side {
    width: 50%;
  }
}
@media only screen and (max-width: 1023px) {
  .reviews-section .content-wrapper .right-side {
    width: 100%;
  }
}
.reviews-section .content-wrapper .right-side .single-review {
  margin-bottom: 1rem;
  padding: 0.813rem 1rem;
  background-color: #F7F7F7;
  border-radius: 1.5rem;
}
.reviews-section .content-wrapper .right-side .single-review:last-child {
  margin-bottom: 0;
}
.reviews-section .content-wrapper .right-side .single-review .review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.reviews-section .content-wrapper .right-side .single-review .review-author .image-side {
  width: 3.75rem;
  height: 3.75rem;
}
.reviews-section .content-wrapper .right-side .single-review .review-author .image-side img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.reviews-section .content-wrapper .right-side .single-review .review-author .text-side {
  width: calc(100% - 3.75rem - 0.75rem);
}
.reviews-section .content-wrapper .right-side .single-review .review-author .text-side h4 {
  color: #141E28;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.938rem;
}
.reviews-section .content-wrapper .right-side .single-review .review-author .text-side span {
  font-size: 0.75rem;
  font-weight: 600;
}
.reviews-section .content-wrapper .right-side .single-review .review-content {
  margin-bottom: 1rem;
  color: #6F6F6F;
  font-size: 1rem;
}
.reviews-section .content-wrapper .right-side .single-review .review-score {
  display: flex;
  gap: 0.125rem;
  line-height: 0;
}
.reviews-section .content-wrapper .right-side .single-review .review-score .review-star {
  position: relative;
  display: inline-block;
  width: 1.25rem;
  height: 1.125rem;
}
.reviews-section .content-wrapper .right-side .single-review .review-score .review-star .star_bg,
.reviews-section .content-wrapper .right-side .single-review .review-score .review-star .star_fg {
  position: absolute;
  inset: 0;
  display: block;
}
.reviews-section .content-wrapper .right-side .single-review .review-score .review-star .star_bg svg,
.reviews-section .content-wrapper .right-side .single-review .review-score .review-star .star_fg svg {
  display: block;
  width: 100%;
  height: 100%;
}
.reviews-section .content-wrapper .right-side .single-review .review-score .review-star .star_bg svg * {
  fill: #D1DCE2 !important;
}
.reviews-section .content-wrapper .right-side .single-review .review-score .review-star .star_fg svg * {
  fill: #E4A323 !important;
}

.partners-section {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #F7F7F7;
}
.partners-section .main-container {
  margin-bottom: 3.25rem;
}
.partners-section .main-container h4 {
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
}
.partners-section .partners-slider-wrapper .partners-slider {
  display: flex;
  opacity: 0;
  transition: opacity 0.1s ease;
}
.partners-section .partners-slider-wrapper .partners-slider.slick-initialized {
  opacity: 1;
}
.partners-section .partners-slider-wrapper .partners-slider .slick-list .slick-track {
  display: flex !important;
  align-items: center;
}
.partners-section .partners-slider-wrapper .partners-slider .slick-list .slick-slide {
  margin: 0 4.25rem;
  font-size: 0;
}
@media only screen and (max-width: 1023px) {
  .partners-section .partners-slider-wrapper .partners-slider .slick-list .slick-slide {
    margin: 0 2.5rem;
  }
}
@media only screen and (max-width: 500px) {
  .partners-section .partners-slider-wrapper .partners-slider .slick-list .slick-slide {
    margin: 0 1.5rem;
  }
}
.partners-section .partners-slider-wrapper .partners-slider .single-partner-slide img {
  height: 2.5rem;
  object-fit: contain;
}

.contact-banner-section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media only screen and (max-width: 1023px) {
  .contact-banner-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
.contact-banner-section .contact-banner {
  position: relative;
  padding: 3.75rem 3rem;
  border-radius: 2rem;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .contact-banner-section .contact-banner {
    padding: 1.25rem;
  }
}
.contact-banner-section .contact-banner .background-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-banner-section .contact-banner .dark-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.7) 100%);
}
.contact-banner-section .contact-banner .content {
  position: relative;
  margin: 0 auto;
  text-align: center;
  z-index: 2;
}
.contact-banner-section .contact-banner .content .default-title {
  margin-bottom: 3rem;
  color: #FFF;
}
@media only screen and (max-width: 767px) {
  .contact-banner-section .contact-banner .content .default-title {
    margin-bottom: 2rem;
    font-size: 2rem;
    line-height: 2.5rem;
  }
}
.contact-banner-section .contact-banner .content .button-wrapper {
  justify-content: center;
}
.contact-banner-section .contact-banner .content .contact-button {
  gap: 1rem;
  padding: 0.75rem 1.5rem;
  color: #ABE9FF;
  background: transparent;
  text-transform: uppercase;
  border: 1px solid #ABE9FF;
}
.contact-banner-section .contact-banner .content .contact-button .arrow-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-banner-section .contact-banner .content .contact-button .arrow-wrapper .arrow-line {
  width: 0.938rem;
  height: 0.125rem;
  background-color: #ABE9FF;
  transition: all 0.35s ease;
}
.contact-banner-section .contact-banner .content .contact-button .arrow-wrapper svg {
  margin-left: -0.938rem;
  transition: 0.2s all ease;
}
.contact-banner-section .contact-banner .content .contact-button .arrow-wrapper svg path {
  stroke: #ABE9FF;
  transition: 0.2s all ease;
}
.contact-banner-section .contact-banner .content .contact-button:hover {
  color: #141E28;
  background: #ABE9FF;
}
.contact-banner-section .contact-banner .content .contact-button:hover .arrow-line {
  background-color: #141E28;
  width: 2rem;
}
.contact-banner-section .contact-banner .content .contact-button:hover svg path {
  stroke: #141E28;
}

.company-benefits-section {
  padding-top: 3rem;
}
@media only screen and (max-width: 1023px) {
  .company-benefits-section {
    padding-top: 1.5rem;
  }
}
.company-benefits-section .regular-title {
  margin-bottom: 1.5rem;
}
.company-benefits-section .company-benefits {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.company-benefits-section .company-benefits .company-benefit {
  width: calc((100% - 2rem) / 3);
  padding: 1.75rem;
  border-radius: 1rem;
  background-color: #F7F7F7;
  transition: all 0.2s linear;
}
.company-benefits-section .company-benefits .company-benefit:hover {
  background-color: #141E28;
}
.company-benefits-section .company-benefits .company-benefit:hover .image-row .image-wrapper {
  background-color: #ABE9FF;
}
.company-benefits-section .company-benefits .company-benefit:hover .image-row .image-wrapper svg {
  stroke: #141E28;
}
.company-benefits-section .company-benefits .company-benefit:hover .image-row .benefit-count {
  color: #FFF;
}
.company-benefits-section .company-benefits .company-benefit:hover .company-benefit-content .small-title {
  color: #FFF;
}
.company-benefits-section .company-benefits .company-benefit:hover .company-benefit-content .wysiwyg-styles {
  color: #7C8998;
}
@media only screen and (max-width: 1023px) {
  .company-benefits-section .company-benefits .company-benefit {
    width: calc(50% - 1rem);
  }
  .company-benefits-section .company-benefits .company-benefit:nth-child(odd):last-child {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .company-benefits-section .company-benefits .company-benefit {
    width: 100%;
    padding: 1rem;
  }
}
.company-benefits-section .company-benefits .company-benefit .image-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4rem;
}
@media only screen and (max-width: 1023px) {
  .company-benefits-section .company-benefits .company-benefit .image-row {
    margin-bottom: 2rem;
  }
}
.company-benefits-section .company-benefits .company-benefit .image-row .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.438rem;
  height: 4.125rem;
  padding: 0 1rem;
  object-fit: contain;
  border-radius: 0.5rem;
  background-color: #141E28;
  transition: all 0.2s linear;
}
.company-benefits-section .company-benefits .company-benefit .image-row .image-wrapper svg {
  width: 2.438rem;
  max-height: 2.813rem;
  height: auto;
  transition: all 0.2s linear;
}
.company-benefits-section .company-benefits .company-benefit .image-row .benefit-count {
  margin-left: auto;
  font-size: 1.5rem;
  font-weight: 600;
  color: #141E28;
}
.company-benefits-section .company-benefits .company-benefit .company-benefit-content .small-title {
  max-width: 17.063rem;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 1023px) {
  .company-benefits-section .company-benefits .company-benefit .company-benefit-content .small-title {
    max-width: unset;
  }
}
.company-benefits-section .company-benefits .company-benefit .company-benefit-content > *:last-child {
  margin-bottom: 0 !important;
}

.faq-section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media only screen and (max-width: 1023px) {
  .faq-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
.faq-section .regular-title {
  margin-bottom: 1.5rem;
}
.faq-section .faq {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.faq-section .faq .single-faq {
  width: 100%;
  border: 0.063rem solid #EDEDED;
  border-radius: 1rem;
  transition: all 0.2s ease;
}
.faq-section .faq .single-faq.active {
  background-color: #F7F7F7;
}
.faq-section .faq .single-faq.active .accordion-tab-link .accordion-tab-title {
  font-weight: 600;
}
.faq-section .faq .single-faq.active .accordion-tab-link .accordion-tab-status {
  transform: rotate(90deg);
  background-color: #32D0FE;
}
.faq-section .faq .single-faq.active:hover .accordion-tab-link .accordion-tab-status {
  background-color: #32D0FE;
}
.faq-section .faq .single-faq:hover {
  background-color: #F7F7F7;
}
.faq-section .faq .single-faq:hover .accordion-tab-link .accordion-tab-status {
  background-color: #ABE9FF;
}
.faq-section .faq .single-faq .accordion-tab-link {
  display: flex;
  justify-content: space-between;
  padding: 1.625rem 2rem;
}
@media only screen and (max-width: 767px) {
  .faq-section .faq .single-faq .accordion-tab-link {
    padding: 1rem;
  }
}
.faq-section .faq .single-faq .accordion-tab-link .accordion-tab-title-wrapper {
  display: flex;
  align-items: center;
}
.faq-section .faq .single-faq .accordion-tab-link .accordion-tab-title {
  margin-right: 1.5rem;
  font-size: 1.25rem;
  font-weight: 400;
}
.faq-section .faq .single-faq .accordion-tab-link .accordion-tab-status {
  width: 2.125rem;
  height: 2.125rem;
  padding: 0.438rem;
  background-color: #F7F7F7;
  border-radius: 50%;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.faq-section .faq .single-faq .accordion-tab-link .accordion-tab-status svg {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  margin: 0 auto;
  object-fit: contain;
}
.faq-section .faq .single-faq .collapse-tab {
  transition: max-height 0.3s ease-out;
  overflow: hidden;
}
.faq-section .faq .single-faq .collapse-tab:not(.show) {
  display: none;
}
.faq-section .faq .single-faq .collapse-tab * {
  font-size: 1rem;
}
.faq-section .faq .single-faq .collapse-tab .collapse-tab-inner {
  padding: 0 2rem 1.625rem 2rem;
}
@media only screen and (max-width: 767px) {
  .faq-section .faq .single-faq .collapse-tab .collapse-tab-inner {
    padding: 0 1rem 1rem 1rem;
  }
}

.form-wrapper {
  padding: 5.375rem 5.75rem 4.875rem 4.188rem;
}
@media only screen and (max-width: 1023px) {
  .form-wrapper {
    padding: 3rem 2rem;
  }
}
@media only screen and (max-width: 500px) {
  .form-wrapper {
    padding: 2rem;
  }
}

.form-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
@media only screen and (max-width: 500px) {
  .form-group {
    margin-bottom: 1rem;
  }
}
.form-group * {
  font-family: "Poppins", sans-serif;
}
.form-group:last-child {
  margin-bottom: 2rem;
}
.form-group .single-input {
  position: relative;
  margin-bottom: 1.5rem;
}
.form-group .single-input.full-width {
  width: 100%;
}
.form-group .single-input.warning-validation input {
  border-color: #E13838;
}
.form-group .single-input.warning-validation textarea {
  border-color: #E13838;
}
.form-group .single-input:last-child {
  margin-bottom: 0;
}
.form-group .single-input label {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: #333;
  font-size: 1rem;
  font-weight: 600;
}
.form-group .single-input input {
  width: 100%;
  padding: 1rem;
  color: #999;
  background-color: #FFF;
  border: 0.063rem solid #ECEEF0;
  border-radius: 0.5rem;
  outline: none;
}
.form-group .single-input input::placeholder {
  color: #999;
  font-size: 1rem;
  opacity: 1;
}
.form-group .single-input input:focus {
  border-color: #141E28;
}
.form-group .single-input textarea {
  width: 100%;
  min-height: 13.313rem;
  padding: 1rem;
  color: #999;
  background-color: #FFF;
  border: 0.063rem solid #ECEEF0;
  border-radius: 0.5rem;
  font-size: 1rem;
  outline: none;
  resize: none;
}
.form-group .single-input textarea::placeholder {
  color: #999;
  font-size: 1rem;
  opacity: 1;
}
.form-group .single-input textarea:focus {
  border-color: #141E28;
}
.form-group .single-input textarea::-webkit-scrollbar {
  width: 0.25rem;
}
.form-group .single-input textarea::-webkit-scrollbar-track {
  background-color: #FFF;
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}
.form-group .single-input textarea::-webkit-scrollbar-thumb {
  border-radius: 0.313rem;
  border: 0.063rem solid #141E28;
  background-color: #141E28;
}
.form-group .single-input .form-message {
  color: #E13838;
  font-size: 0.875rem;
  font-weight: 500;
}
.form-group .single-input .form-message.hidden {
  display: none;
}

.form-button-row {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1.75rem;
}
@media only screen and (min-width: 1023px) and (max-width: 1280px) {
  .form-button-row {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 500px) {
  .form-button-row {
    flex-wrap: wrap;
    gap: 1rem;
  }
}
.form-button-row .privacy-wrapper {
  max-width: 18.375rem;
  font-family: "Raleway", sans-serif;
  font-size: 0.75rem;
  color: #6F6F6F;
}
@media only screen and (max-width: 1023px) {
  .form-button-row .privacy-wrapper {
    max-width: unset;
  }
}
.form-button-row .small-button {
  border: none;
  white-space: nowrap;
}

.global-form-message {
  margin-bottom: 0.625rem;
  color: #E13838;
  font-size: 0.875rem;
  font-weight: 500;
}
.global-form-message.hidden {
  display: none;
}

.checkbox-single {
  margin: 0 0 0.938rem;
  font-size: 0;
}
.checkbox-single.warning-validation .checkbox-back {
  border-color: #E13838 !important;
}
.checkbox-single input {
  position: absolute !important;
  left: -9999px;
}
.checkbox-single input:checked ~ .checkbox-label .checkbox-back .checkbox-mark {
  opacity: 1;
}
.checkbox-single .checkbox-label {
  display: inline-flex;
  align-items: start;
  margin: 0;
}
.checkbox-single .checkbox-label .checkbox-custom-wrapper {
  display: flex;
  justify-content: center;
}
.checkbox-single .checkbox-title {
  font-size: 0.75rem;
  cursor: pointer;
}
.checkbox-single .checkbox-title a {
  position: relative;
  color: #6F6F6F;
  text-decoration: none;
}
.checkbox-single .checkbox-back {
  position: relative;
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.75rem;
  border: 0.063rem solid #ECEEF0;
  cursor: pointer;
  border-radius: 0.25rem;
  transition: all 0.2s linear;
  background-color: #FFF;
}
.checkbox-single .checkbox-back .checkbox-mark {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: transparent;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.1s linear;
}
.checkbox-single .checkbox-back .checkbox-mark svg {
  width: 1rem;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  transition: opacity 200ms ease-in-out, visibility 200ms ease-in-out;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* Internet Explorer and Edge */
}
.modal::-webkit-scrollbar {
  width: 0;
  height: 0;
}
.modal.show {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}
.modal.show .modal-content {
  transform: translateY(-50%) scale(1);
}
.modal .close-modal {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 2rem;
  height: 2rem;
  z-index: 1;
  cursor: pointer;
}
.modal .close-modal .close-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.modal .modal-content {
  position: relative;
  top: 50%;
  transform: translateY(-50%) scale(0.9);
  width: 50rem;
  margin: 0 auto;
  background-color: #FFF;
  border-radius: 0.5rem;
  transition: transform 200ms ease-in-out;
}
@media only screen and (max-width: 1023px) {
  .modal .modal-content {
    width: 80%;
  }
}
@media only screen and (max-width: 767px) {
  .modal .modal-content {
    width: 95%;
  }
}
@media only screen and (max-width: 1023px) {
  .modal .modal-content .form-wrapper {
    padding-top: 3.65rem;
  }
}

.common-selectize-wrapper .selectize-control {
  font-size: 0;
}
.common-selectize-wrapper .selectize-input {
  background-color: #FFF !important;
  font-size: 0 !important;
  line-height: normal !important;
  box-shadow: none !important;
  transition: all 0.2s linear !important;
  width: 100% !important;
  padding: 0.5rem 1rem !important;
  border: 0.063rem solid #6F6F6F !important;
  background-image: url("../../images/dropdown-arrow-down.svg") !important;
  background-repeat: no-repeat !important;
  background-position: calc(100% - 1rem) 50% !important;
  background-size: 1.5rem 1.5rem !important;
  border-radius: 0.375rem !important;
}
.common-selectize-wrapper .selectize-input:focus {
  outline: none;
}
.common-selectize-wrapper .selectize-input:before, .common-selectize-wrapper .selectize-input:after {
  display: none !important;
}
.common-selectize-wrapper .selectize-input input, .common-selectize-wrapper .selectize-input .item {
  font-size: 1rem !important;
  font-weight: 600;
  line-height: 1.5rem !important;
  color: #6F6F6F;
}
.common-selectize-wrapper .selectize-input input {
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100% !important;
  margin: 0 !important;
}
.common-selectize-wrapper .selectize-input input::-webkit-input-placeholder {
  color: #6F6F6F;
}
.common-selectize-wrapper .selectize-input input::-moz-placeholder {
  color: #6F6F6F;
}
.common-selectize-wrapper .selectize-input input:-moz-placeholder {
  color: #6F6F6F;
}
.common-selectize-wrapper .selectize-input input:-ms-input-placeholder {
  color: #6F6F6F;
}
.common-selectize-wrapper .selectize-input .item {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100% !important;
}
.common-selectize-wrapper .selectize-input .item ~ input {
  display: none !important;
}
.common-selectize-wrapper .selectize-dropdown {
  background-color: #FFF !important;
  overflow: hidden !important;
  cursor: pointer;
  box-shadow: none;
  width: 100% !important;
  text-align: left;
  left: 0 !important;
  top: 2.625rem !important;
  border: 0.063rem solid #E6E6E6 !important;
  border-radius: 0.375rem !important;
}
.common-selectize-wrapper .selectize-dropdown .option {
  padding: 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5rem;
  color: #6F6F6F;
  white-space: nowrap;
  text-align: left;
}
.common-selectize-wrapper .selectize-dropdown .active {
  background-color: #141E28 !important;
  color: #FFF;
}
.common-selectize-wrapper .selectize-dropdown .selected {
  background-color: #141E28 !important;
}
.common-selectize-wrapper .selectize-dropdown-content::-webkit-scrollbar {
  width: 0.313rem;
}
.common-selectize-wrapper .selectize-dropdown-content::-webkit-scrollbar-track {
  background-color: transparent;
}
.common-selectize-wrapper .selectize-dropdown-content::-webkit-scrollbar-thumb {
  background-color: #6F6F6F;
}
.common-selectize-wrapper .input-active {
  border: 0.063rem solid #141E28 !important;
  border-radius: 0.375rem 0.375rem 0 0 !important;
}
.common-selectize-wrapper .input-active ~ .selectize-dropdown {
  border: 0.063rem solid #141E28 !important;
  border-radius: 0 0 0.375rem 0.375rem !important;
}

.preloader {
  position: absolute;
  width: 5rem;
  height: 0.938rem;
  transition: all 0.1s linear;
  visibility: hidden;
  opacity: 0;
}
.preloader div {
  background-color: #32D0FE;
  position: absolute;
  top: 0.063rem;
  width: 0.813rem;
  height: 0.813rem;
  border-radius: 50%;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.preloader div:nth-child(1) {
  left: 0.5rem;
  animation: preloader-animation-1 0.6s infinite;
}
.preloader div:nth-child(2) {
  left: 0.5rem;
  animation: preloader-animation-2 0.6s infinite;
}
.preloader div:nth-child(3) {
  left: 2rem;
  animation: preloader-animation-2 0.6s infinite;
}
.preloader div:nth-child(4) {
  left: 3.5rem;
  animation: preloader-animation-3 0.6s infinite;
}

.preloader-visible {
  visibility: visible;
  opacity: 1;
}

@keyframes preloader-animation-1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes preloader-animation-3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes preloader-animation-2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(1.5rem, 0);
  }
}
.contact-form-preloader {
  top: calc(100% + 1.563rem);
  left: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 500px) {
  .contact-form-preloader {
    top: calc(100% - 1.5rem);
    left: unset;
    right: -50%;
    transform: unset;
  }
}

.homepage .hero-title {
  font-family: "Syne", sans-serif;
  font-size: 2.5rem;
  font-weight: 500;
  text-align: center;
  color: #58585A;
}
.homepage .hero {
  padding-top: 0.938rem;
  padding-bottom: 1.5rem;
}
@media only screen and (max-width: 1023px) {
  .homepage .hero {
    padding-bottom: 1.5rem;
  }
}
.homepage .hero .hero-top-logo {
  display: block;
  margin: 0 auto 0.313rem auto;
  max-width: 8.5rem;
  max-height: 8.5rem;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.homepage .hero .hero-title {
  margin-bottom: 1.5rem;
}
.homepage .hero .row-wrapper {
  position: relative;
  margin-bottom: 1.188rem;
}
@media only screen and (max-width: 1280px) {
  .homepage .hero .top-row {
    margin-bottom: 1.25rem;
  }
}
.homepage .hero .top-row .image-wrapper {
  position: relative;
  width: 100%;
  height: 29.063rem;
  padding-top: 3.125rem;
  overflow: hidden;
  mask-image: url("../../images/sakumlapa-hero-1.svg");
  -webkit-mask-image: url("../../images/sakumlapa-hero-1.svg");
  mask-size: 100% 100%;
  -webkit-mask-size: 100% 100%;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
}
@media only screen and (max-width: 1280px) {
  .homepage .hero .top-row .image-wrapper {
    height: 21.875rem;
    mask-image: none;
    overflow: hidden;
    border-radius: 1.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .homepage .hero .top-row .image-wrapper {
    height: 18.75rem;
  }
}
.homepage .hero .top-row .image-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 30%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 30%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
  border-radius: inherit;
}
@media only screen and (max-width: 767px) {
  .homepage .hero .top-row .image-wrapper::before {
    width: 66%;
  }
}
.homepage .hero .top-row .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.homepage .hero .top-row .image-wrapper img.object-position-top {
  object-position: top;
}
.homepage .hero .top-row .image-wrapper img.object-position-bottom {
  object-position: bottom;
}
.homepage .hero .top-row .image-wrapper .content {
  position: relative;
  top: 0;
  left: 2.188rem;
  max-width: 10.563rem;
  max-height: 13.75rem;
  padding-bottom: 1.25rem;
  overflow-y: auto;
  scrollbar-width: none;
  z-index: 2;
}
@media only screen and (max-width: 1280px) {
  .homepage .hero .top-row .image-wrapper .content {
    max-height: 15.625rem;
  }
}
.homepage .hero .top-row .image-wrapper .content ul {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.homepage .hero .top-row .image-wrapper .content ul li {
  list-style: none;
  font-size: 1rem;
  color: #FFF;
}
.homepage .hero .hero-buttons {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  gap: 1.438rem;
  max-width: 23.438rem;
  width: 100%;
}
@media only screen and (max-width: 1440px) {
  .homepage .hero .hero-buttons {
    max-width: unset;
    width: 28%;
  }
}
@media only screen and (max-width: 1280px) {
  .homepage .hero .hero-buttons {
    position: relative;
    flex-wrap: wrap;
    width: calc(100% - 22.25rem - 1.438rem);
  }
}
@media only screen and (max-width: 1023px) {
  .homepage .hero .hero-buttons {
    order: 2;
    width: 100%;
  }
}
.homepage .hero .hero-buttons .hero-button {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 50%;
  min-height: 9.563rem;
  padding: 1.125rem;
  font-size: 1rem;
  background-color: #ABE9FF;
  border-radius: 1.25rem;
  transition: all 0.2s ease;
}
@media only screen and (max-width: 1280px) {
  .homepage .hero .hero-buttons .hero-button {
    min-width: 11rem;
    width: calc(50% - 0.719rem);
  }
}
@media only screen and (max-width: 500px) {
  .homepage .hero .hero-buttons .hero-button {
    width: 100%;
  }
}
.homepage .hero .hero-buttons .hero-button:hover {
  background-color: #32D0FE;
}
.homepage .hero .hero-buttons .hero-button:hover .arrow-wrapper .arrow-line {
  width: 7.125rem;
}
.homepage .hero .hero-buttons .hero-button span {
  padding-top: 1rem;
  padding-bottom: 0.875rem;
  text-transform: uppercase;
}
.homepage .hero .hero-buttons .hero-button .arrow-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.homepage .hero .hero-buttons .hero-button .arrow-wrapper .arrow-line {
  width: 3.063rem;
  height: 0.125rem;
  max-width: calc(100% - 1.5rem);
  background-color: #141E28;
  transition: width 0.35s ease;
}
.homepage .hero .hero-buttons .hero-button .arrow-wrapper svg {
  width: 1.5rem;
  height: auto;
  margin-left: -1rem;
}
@media only screen and (max-width: 1280px) {
  .homepage .hero .bottom-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.438rem;
  }
}
.homepage .hero .bottom-row .image-wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
  max-width: 22.25rem;
  width: 100%;
  max-height: 9.563rem;
  height: 100%;
}
@media only screen and (max-width: 1440px) {
  .homepage .hero .bottom-row .image-wrapper {
    max-width: unset;
    width: 27.5%;
  }
}
@media only screen and (max-width: 1280px) {
  .homepage .hero .bottom-row .image-wrapper {
    position: relative;
    width: 22.25rem;
  }
}
@media only screen and (max-width: 1023px) {
  .homepage .hero .bottom-row .image-wrapper {
    order: 1;
    width: 100%;
    max-height: 12.5rem;
    font-size: 0;
  }
}
.homepage .hero .bottom-row .image-wrapper img {
  width: 100%;
  height: 100%;
  max-height: inherit;
  object-fit: cover;
  border-radius: 1rem;
}
.homepage .hero .partnership-banner {
  display: flex;
  align-items: center;
  padding: 2rem 7.313rem 2rem 6.813rem;
  margin-bottom: 1.5rem;
  color: #FFF;
  background-color: #141E28;
  border-radius: 1.875rem;
}
@media only screen and (max-width: 1366px) {
  .homepage .hero .partnership-banner {
    padding-right: 3.313rem;
    padding-left: 3.313rem;
  }
}
@media only screen and (max-width: 1023px) {
  .homepage .hero .partnership-banner {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    gap: 1.25rem;
    margin-bottom: 0.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .homepage .hero .partnership-banner {
    padding: 1rem;
  }
}
.homepage .hero .partnership-banner .left-side {
  display: flex;
  justify-content: center;
  gap: 5.125rem;
  width: 100%;
  margin-right: auto;
  padding-right: 3.563rem;
}
@media only screen and (max-width: 1366px) {
  .homepage .hero .partnership-banner .left-side {
    padding-right: 2rem;
    gap: 4.375rem;
  }
}
@media only screen and (max-width: 1023px) {
  .homepage .hero .partnership-banner .left-side {
    margin-right: 0;
    padding-right: 0;
  }
}
@media only screen and (max-width: 767px) {
  .homepage .hero .partnership-banner .left-side {
    flex-wrap: wrap;
    gap: 1.25rem;
  }
}
.homepage .hero .partnership-banner .left-side .statistic-col {
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .homepage .hero .partnership-banner .left-side .statistic-col {
    width: 100%;
  }
}
.homepage .hero .partnership-banner .left-side .statistic-col .default-title {
  white-space: nowrap;
}
@media only screen and (max-width: 1366px) {
  .homepage .hero .partnership-banner .left-side .statistic-col .default-title {
    font-size: 3rem;
  }
}
.homepage .hero .partnership-banner .left-side p {
  font-size: 1rem;
}
.homepage .hero .partnership-banner .right-side {
  max-width: 16.751rem;
  padding-left: 3.563rem;
  border-left: 0.063rem solid #FFF;
}
@media only screen and (max-width: 1366px) {
  .homepage .hero .partnership-banner .right-side {
    padding-left: 2rem;
  }
}
@media only screen and (max-width: 1023px) {
  .homepage .hero .partnership-banner .right-side {
    max-width: unset;
    padding-left: 0;
    border-left: unset;
  }
}
.homepage .hero .partnership-banner .right-side .content h3 {
  font-size: 2.25rem;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.35s ease;
}
.homepage .hero .partnership-banner .right-side .content h3:hover {
  color: #ABE9FF;
}
.homepage .hero .partnership-banner .right-side .content h3:hover ~ .arrow-wrapper .arrow-line {
  width: 9.125rem;
  background-color: #ABE9FF;
}
.homepage .hero .partnership-banner .right-side .content h3:hover ~ .arrow-wrapper svg path {
  fill: #ABE9FF;
}
.homepage .hero .partnership-banner .right-side .content .arrow-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.homepage .hero .partnership-banner .right-side .content .arrow-wrapper:hover .arrow-line {
  width: 9.125rem;
  background-color: #ABE9FF;
}
.homepage .hero .partnership-banner .right-side .content .arrow-wrapper:hover svg path {
  fill: #ABE9FF;
}
.homepage .hero .partnership-banner .right-side .content .arrow-wrapper .arrow-line {
  width: 6.563rem;
  height: 0.375rem;
  max-width: calc(100% - 1.5rem);
  background-color: #FFF;
  transition: background-color 0.35s ease, width 0.35s ease;
}
.homepage .hero .partnership-banner .right-side .content .arrow-wrapper svg {
  width: 1.5rem;
  height: auto;
  margin-left: -1rem;
}
.homepage .hero .partnership-banner .right-side .content .arrow-wrapper svg path {
  transition: all 0.35s ease;
}
.homepage .hero .partnership-banner .right-side .content:has(.arrow-wrapper:hover) h3 {
  color: #ABE9FF;
}
.homepage .hero-hidden {
  margin-top: 3.438rem;
  margin-bottom: 3.438rem;
}
.homepage .why-us {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media only screen and (max-width: 1023px) {
  .homepage .why-us {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
.homepage .why-us .content-side {
  width: calc(100% - 39.75rem - 2rem);
}
@media only screen and (max-width: 1366px) {
  .homepage .why-us .content-side {
    width: calc(100% - 31.25rem - 2rem);
  }
}
@media only screen and (max-width: 1023px) {
  .homepage .why-us .content-side {
    width: 100%;
  }
}
.homepage .why-us .content-side .regular-title {
  margin-bottom: 1.5rem;
}
.homepage .why-us .content-side .regular-title span {
  color: #0078A6;
}
.homepage .why-us .content-side .wysiwyg-styles {
  margin-bottom: 1.5rem;
}
.homepage .why-us .image-side {
  position: relative;
  width: 39.75rem;
}
@media only screen and (max-width: 1366px) {
  .homepage .why-us .image-side {
    width: 31.25rem;
  }
}
@media only screen and (max-width: 1023px) {
  .homepage .why-us .image-side {
    width: 100%;
  }
}
.homepage .why-us .image-side .large-image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 92.1383647799%;
  mask-image: url("../../images/kapec-mes-1.svg");
  -webkit-mask-image: url("../../images/kapec-mes-1.svg");
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
}
.homepage .why-us .image-side .large-image-wrapper img {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.homepage .why-us .image-side .small-image-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  width: 18.375rem;
  padding-top: 20.75rem;
}
@media only screen and (max-width: 1366px) {
  .homepage .why-us .image-side .small-image-wrapper {
    width: 14.313rem;
    padding-top: 16.25rem;
  }
}
@media only screen and (max-width: 1023px) {
  .homepage .why-us .image-side .small-image-wrapper {
    width: 46%;
    padding-top: 53%;
  }
}
.homepage .why-us .image-side .small-image-wrapper img {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.25rem;
}

.services-page .hero {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 3.75rem;
  margin-top: 2.25rem;
  margin-bottom: 3rem;
}
@media only screen and (max-width: 1023px) {
  .services-page .hero {
    gap: 3rem;
    margin-bottom: 1.5rem;
  }
}
.services-page .hero .hero-content {
  max-width: 39.938rem;
  width: calc(100% - 34rem - 3.75rem);
}
@media only screen and (max-width: 1280px) {
  .services-page .hero .hero-content {
    width: calc(100% - 28.125rem - 3.75rem);
  }
}
@media only screen and (max-width: 1023px) {
  .services-page .hero .hero-content {
    max-width: unset;
    width: 100%;
  }
}
.services-page .hero .hero-content .main-title {
  margin-bottom: 2rem;
}
.services-page .hero .hero-content .wysiwyg-styles {
  margin-bottom: 1rem;
}
.services-page .hero .hero-content .clients-statistics {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.services-page .hero .hero-content .clients-statistics .clients-images {
  display: flex;
  align-items: center;
  margin-left: 1.5rem;
}
.services-page .hero .hero-content .clients-statistics .clients-images img {
  position: relative;
  width: 4rem;
  height: 4rem;
  margin-left: -1.5rem;
  background-color: #FFF;
  border: 0.188rem solid #FFF;
  border-radius: 4rem;
  object-fit: contain;
}
.services-page .hero .hero-content .clients-statistics .clients-statistic .count {
  font-weight: 700;
}
.services-page .hero .hero-content .clients-statistics .clients-statistic span {
  display: block;
  color: #141E28;
}
.services-page .hero .images-side {
  position: relative;
  width: 34rem;
  margin-left: auto;
}
@media only screen and (max-width: 1280px) {
  .services-page .hero .images-side {
    width: 28.125rem;
    margin-top: 10.938rem;
  }
}
@media only screen and (max-width: 1023px) {
  .services-page .hero .images-side {
    margin-top: 0;
    width: 100%;
  }
}
.services-page .hero .images-side .large-image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 98.1949458484%;
  mask-image: url("../../svg/services.svg");
  -webkit-mask-image: url("../../svg/services.svg");
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
}
.services-page .hero .images-side .large-image-wrapper img {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.services-page .hero .images-side .small-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 19.188rem;
  padding-top: 19.188rem;
}
@media only screen and (max-width: 1280px) {
  .services-page .hero .images-side .small-image-wrapper {
    width: 15.188rem;
    padding-top: 15.188rem;
  }
}
@media only screen and (max-width: 1023px) {
  .services-page .hero .images-side .small-image-wrapper {
    width: 56%;
    padding-top: 56%;
  }
}
.services-page .hero .images-side .small-image-wrapper img {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.25rem;
}
.services-page .services {
  padding-top: 3rem;
}
@media only screen and (max-width: 1023px) {
  .services-page .services {
    padding-top: 1.5rem;
  }
}
.services-page .services .service {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
}
@media only screen and (max-width: 767px) {
  .services-page .services .service {
    gap: 0;
  }
}
.services-page .services .service .image-side {
  width: 29.938rem;
}
@media only screen and (max-width: 1366px) {
  .services-page .services .service .image-side {
    width: calc(100% - 48.063rem - 3rem);
  }
}
@media only screen and (max-width: 1280px) {
  .services-page .services .service .image-side {
    width: 18.75rem;
  }
}
@media only screen and (max-width: 767px) {
  .services-page .services .service .image-side {
    width: 100%;
  }
}
.services-page .services .service .image-side .image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 92.2755741127%;
  border-radius: 1rem;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .services-page .services .service .image-side .image-wrapper {
    padding-top: 65%;
  }
}
.services-page .services .service .image-side .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.services-page .services .service .content-side {
  width: calc(100% - 29.938rem - 3rem);
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media only screen and (min-width: 1281px) and (max-width: 1366px) {
  .services-page .services .service .content-side {
    width: 48.063rem;
  }
}
@media only screen and (max-width: 1280px) {
  .services-page .services .service .content-side {
    width: calc(100% - 18.75rem - 3rem);
  }
}
@media only screen and (min-width: 768px) and (max-width: 1280px) {
  .services-page .services .service .content-side {
    padding-top: 0;
  }
}
@media only screen and (max-width: 767px) {
  .services-page .services .service .content-side {
    width: 100%;
  }
}
.services-page .services .service .content-side .service-link-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.services-page .services .service .content-side .service-link-row .service-link-separator {
  flex: 1;
  height: 0.125rem;
  background-color: #6F6F6F;
}
.services-page .services .service .content-side .content {
  display: flex;
  gap: 1.5rem;
}
@media only screen and (max-width: 1280px) {
  .services-page .services .service .content-side .content {
    flex-direction: column;
  }
}
.services-page .services .service .content-side .content .wysiwyg-styles {
  font-family: "Syne", sans-serif;
  font-size: 1.375rem;
}
@media only screen and (max-width: 1280px) {
  .services-page .services .service .content-side .content .wysiwyg-styles {
    order: 2;
  }
}
.services-page .services .service .content-side .content .service-count {
  font-size: 16.563rem;
  line-height: 13.938rem;
  color: #141E28;
}
@media only screen and (max-width: 1280px) {
  .services-page .services .service .content-side .content .service-count {
    order: 1;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .services-page .services .service .content-side .content .service-count {
    font-size: 13.563rem;
    line-height: 10.938rem;
  }
}
@media only screen and (max-width: 767px) {
  .services-page .services .service .content-side .content .service-count {
    font-size: 11.563rem;
    line-height: 7.938rem;
  }
}
@media only screen and (max-width: 767px) {
  .services-page .services .service-left-layout-image .image-side {
    order: 2;
  }
  .services-page .services .service-left-layout-image .content-side {
    order: 1;
  }
}
.services-page .services .service-right-layout-image .image-side {
  order: 2;
}
.services-page .services .service-right-layout-image .content-side {
  order: 1;
}
.services-page .services .service-right-layout-image .content-side .service-link-row .service-link-separator {
  order: 2;
}
.services-page .services .service-right-layout-image .content-side .service-link-row .button-wrapper {
  order: 1;
}
.services-page .services .service-right-layout-image .content-side .content .wysiwyg-styles {
  order: 2;
}
.services-page .services .service-right-layout-image .content-side .content .service-count {
  order: 1;
}

.single-service-page .hero {
  display: flex;
  flex-wrap: wrap;
  gap: 3.75rem;
  padding-top: 2.25rem;
  padding-bottom: 3rem;
}
@media only screen and (max-width: 1366px) {
  .single-service-page .hero {
    gap: 2.5rem;
  }
}
@media only screen and (max-width: 1023px) {
  .single-service-page .hero {
    padding-bottom: 1.5rem;
  }
}
.single-service-page .hero .hero-left-side {
  max-width: 41rem;
  width: calc(100% - 33.188rem - 3.75rem);
}
@media only screen and (max-width: 1366px) {
  .single-service-page .hero .hero-left-side {
    max-width: unset;
    width: calc(100% - 33.188rem - 2.5rem);
  }
}
@media only screen and (max-width: 1280px) {
  .single-service-page .hero .hero-left-side {
    width: 100%;
  }
}
.single-service-page .hero .hero-left-side .service-customer {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 2.5rem;
  color: #0078A6;
  border-left: 0.125rem solid #0078A6;
}
@media only screen and (max-width: 767px) {
  .single-service-page .hero .hero-left-side .service-customer {
    margin-top: 1.5rem;
  }
}
.single-service-page .hero .hero-left-side .service-customer svg {
  width: 1.5rem;
  margin-left: 0.5rem;
}
.single-service-page .hero .hero-left-side .main-title {
  margin-bottom: 2rem;
}
.single-service-page .hero .hero-left-side .description {
  margin-bottom: 2rem;
}
@media only screen and (max-width: 767px) {
  .single-service-page .hero .hero-left-side .description {
    margin-bottom: 1rem;
  }
}
.single-service-page .hero .hero-left-side .service-includes {
  margin-bottom: 2.5rem;
  padding-left: 1.5rem;
  border-left: 0.125rem solid #0078A6;
}
@media only screen and (max-width: 767px) {
  .single-service-page .hero .hero-left-side .service-includes {
    margin-bottom: 1rem;
  }
}
.single-service-page .hero .hero-left-side .service-includes .service-includes-title {
  display: block;
  margin-bottom: 1rem;
  color: #141E28;
}
.single-service-page .hero .hero-left-side .service-includes ul {
  list-style: none;
}
.single-service-page .hero .hero-left-side .service-includes ul li {
  position: relative;
  padding-left: 34px;
}
.single-service-page .hero .hero-left-side .service-includes ul li:before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 1.5rem;
  height: 1.5rem;
  background-repeat: no-repeat;
  background-image: url(../../svg/checkmark.svg);
  background-color: transparent;
}
.single-service-page .hero .hero-right-side {
  width: 33.188rem;
  margin-left: auto;
}
@media only screen and (max-width: 1280px) {
  .single-service-page .hero .hero-right-side {
    width: 100%;
    margin-left: 0;
  }
}
.single-service-page .hero .hero-right-side .subservices {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
@media only screen and (max-width: 1280px) {
  .single-service-page .hero .hero-right-side .subservices {
    flex-wrap: wrap;
  }
}
.single-service-page .hero .hero-right-side .subservices .col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  width: 16.875rem;
}
@media only screen and (max-width: 1280px) {
  .single-service-page .hero .hero-right-side .subservices .col {
    flex-direction: row;
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .single-service-page .hero .hero-right-side .subservices .col {
    display: none;
  }
}
@media only screen and (max-width: 1280px) {
  .single-service-page .hero .hero-right-side .subservices .col.col-left {
    order: 2;
  }
}
@media only screen and (max-width: 1280px) {
  .single-service-page .hero .hero-right-side .subservices .col.col-right {
    order: 1;
  }
}
.single-service-page .hero .hero-right-side .subservices .subservices-mobile {
  display: none;
}
@media only screen and (max-width: 767px) {
  .single-service-page .hero .hero-right-side .subservices .subservices-mobile {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }
}
.single-service-page .hero .hero-right-side .subservices .subservice {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 16.875rem;
  padding: 4.5rem 3.875rem;
  font-size: 1rem;
  background-color: #F7F7F7;
  border-radius: 1.25rem;
  overflow: hidden;
  transition: all 0.2s linear;
}
@media only screen and (max-width: 1280px) {
  .single-service-page .hero .hero-right-side .subservices .subservice {
    width: calc((100% - 2rem) / 3);
  }
}
@media only screen and (max-width: 1023px) {
  .single-service-page .hero .hero-right-side .subservices .subservice {
    padding: 3.5rem 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .single-service-page .hero .hero-right-side .subservices .subservice {
    width: calc(50% - 0.5rem);
    height: 14.063rem;
    padding: 1rem;
  }
}
@media only screen and (max-width: 500px) {
  .single-service-page .hero .hero-right-side .subservices .subservice {
    width: 100%;
  }
}
.single-service-page .hero .hero-right-side .subservices .subservice.highlighted {
  background-color: #0078A6;
}
.single-service-page .hero .hero-right-side .subservices .subservice.highlighted .subservice-title {
  color: #FFF;
}
.single-service-page .hero .hero-right-side .subservices .subservice.highlighted:hover {
  background-color: #141E28;
}
.single-service-page .hero .hero-right-side .subservices .subservice.highlighted:hover .subservice-title {
  color: #F7F7F7;
}
.single-service-page .hero .hero-right-side .subservices .subservice.highlighted .image-wrapper svg path {
  fill: #FFF;
}
.single-service-page .hero .hero-right-side .subservices .subservice:hover {
  background-color: #ABE9FF;
}
.single-service-page .hero .hero-right-side .subservices .subservice .image-wrapper {
  width: 4rem;
  margin-bottom: 0.75rem;
}
.single-service-page .service-apply-information {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media only screen and (max-width: 1023px) {
  .single-service-page .service-apply-information {
    flex-wrap: wrap;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
.single-service-page .service-apply-information .content-side {
  width: 40.813rem;
}
@media only screen and (max-width: 1023px) {
  .single-service-page .service-apply-information .content-side {
    width: 100%;
  }
}
.single-service-page .service-apply-information .content-side:only-child {
  width: 100%;
}
.single-service-page .service-apply-information .content-side .regular-title {
  margin-bottom: 1.5rem;
}
.single-service-page .service-apply-information .content-side .apply-steps .apply-step {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.625rem;
  padding: 1rem;
  background-color: #F7F7F7;
  border-radius: 1rem;
  transition: all 0.2s linear;
}
.single-service-page .service-apply-information .content-side .apply-steps .apply-step:last-child {
  margin-bottom: 0;
}
.single-service-page .service-apply-information .content-side .apply-steps .apply-step:hover {
  background-color: #141E28;
}
.single-service-page .service-apply-information .content-side .apply-steps .apply-step:hover .step-number {
  color: #7C8998;
}
.single-service-page .service-apply-information .content-side .apply-steps .apply-step:hover .step-title {
  color: #FFF;
}
.single-service-page .service-apply-information .content-side .apply-steps .apply-step .step-number-wrapper {
  min-width: 37px;
  text-align: center;
}
.single-service-page .service-apply-information .content-side .apply-steps .apply-step .step-number {
  display: inline-block;
  text-align: center;
  color: #141E28;
  font-size: 4rem;
  font-weight: 500;
  line-height: 4rem;
}
.single-service-page .service-apply-information .image-side {
  width: calc(100% - 40.813rem - 2rem);
}
@media only screen and (max-width: 1280px) {
  .single-service-page .service-apply-information .image-side {
    width: 23.75rem;
  }
}
@media only screen and (max-width: 1023px) {
  .single-service-page .service-apply-information .image-side {
    width: 100%;
  }
}
.single-service-page .service-apply-information .image-side .image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 104.7463175123%;
  border-radius: 1rem;
  overflow: hidden;
}
@media only screen and (max-width: 1023px) {
  .single-service-page .service-apply-information .image-side .image-wrapper {
    padding-top: 60%;
  }
}
.single-service-page .service-apply-information .image-side .image-wrapper img {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inspection-results-page .main-container {
  padding-top: 2.188rem;
  padding-bottom: 3rem;
}
.inspection-results-page .main-container .main-title {
  margin-bottom: 3rem;
}
.inspection-results-page .main-container .table-filters {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.inspection-results-page .main-container .table-filters .table-filters-left-side {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
@media only screen and (min-width: 500px) and (max-width: 767px) {
  .inspection-results-page .main-container .table-filters .table-filters-left-side {
    flex-wrap: unset;
  }
}
@media only screen and (max-width: 767px) {
  .inspection-results-page .main-container .table-filters .table-filters-left-side {
    width: 100%;
  }
}
.inspection-results-page .main-container .table-filters .search-form {
  position: relative;
  display: flex;
}
@media only screen and (min-width: 500px) and (max-width: 767px) {
  .inspection-results-page .main-container .table-filters .search-form {
    width: 50%;
  }
}
@media only screen and (max-width: 500px) {
  .inspection-results-page .main-container .table-filters .search-form {
    width: 100%;
  }
}
.inspection-results-page .main-container .table-filters .search-form input {
  width: 100%;
  padding: 0.625rem 1rem 0.625rem 3.125rem;
  color: #6F6F6F;
  border: 0.063rem solid #6F6F6F;
  border-radius: 0 0.375rem 0 0.375rem;
}
.inspection-results-page .main-container .table-filters .search-form button {
  border: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  cursor: pointer;
}
.inspection-results-page .main-container .table-filters .search-form button img {
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  width: 1.5rem;
  height: 1.5rem;
}
.inspection-results-page .main-container .table-filters .search-form * {
  font-size: 1rem;
  font-weight: 600;
}
@media only screen and (min-width: 500px) and (max-width: 767px) {
  .inspection-results-page .main-container .table-filters .manufacturers-selectize {
    width: 50%;
  }
}
@media only screen and (max-width: 500px) {
  .inspection-results-page .main-container .table-filters .manufacturers-selectize {
    width: 100%;
  }
}
.inspection-results-page .main-container .inspection-results-table-wrapper {
  margin-bottom: 1.5rem;
  text-align: left;
  overflow-x: auto;
}
.inspection-results-page .main-container .inspection-results-table-wrapper .download-button {
  gap: 1rem;
  padding: 0.5rem 1.5rem;
  color: #0078A6;
  border: 1px solid #0078A6;
  text-transform: uppercase;
}
.inspection-results-page .main-container .inspection-results-table-wrapper .download-button:hover {
  color: #FFF;
  background-color: #0078A6;
}
.inspection-results-page .main-container .inspection-results-table-wrapper .download-button:hover svg path {
  stroke: #FFF;
}
@media only screen and (max-width: 500px) {
  .inspection-results-page .main-container .inspection-results-table-wrapper .download-button {
    width: 100%;
  }
}
.inspection-results-page .main-container .inspection-results-table-wrapper .download-button svg path {
  transition: all 0.2s linear;
}
.inspection-results-page .main-container .inspection-results-table-wrapper table {
  width: 100%;
  border: none !important;
  border-spacing: 0;
  color: #6F6F6F;
  background-color: transparent !important;
}
.inspection-results-page .main-container .inspection-results-table-wrapper table thead th {
  position: relative;
  color: #141E28;
  font-weight: 600;
  border-bottom: 0.1rem solid #ECEEF0;
}
.inspection-results-page .main-container .inspection-results-table-wrapper table thead .footable-filtering {
  background-color: transparent !important;
  border: none !important;
}
.inspection-results-page .main-container .inspection-results-table-wrapper table thead .footable-filtering th {
  padding-left: 0 !important;
  padding-right: 0 !important;
  background-color: transparent !important;
  border: none !important;
}
.inspection-results-page .main-container .inspection-results-table-wrapper table thead .footable-filtering th .filtering-bar {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  width: 100%;
}
.inspection-results-page .main-container .inspection-results-table-wrapper table thead .footable-filtering th form {
  width: auto;
}
.inspection-results-page .main-container .inspection-results-table-wrapper table thead .footable-filtering th form .form-group {
  margin-bottom: 0;
}
.inspection-results-page .main-container .inspection-results-table-wrapper table thead .footable-filtering th form .form-group .input-group {
  display: flex;
}
.inspection-results-page .main-container .inspection-results-table-wrapper table thead .footable-filtering th form .form-group .input-group input {
  order: 2;
  padding-left: 0.625rem !important;
  border-color: #6F6F6F !important;
  border-left: 0 !important;
  border-radius: 0 0.375rem 0.375rem 0;
}
.inspection-results-page .main-container .inspection-results-table-wrapper table thead .footable-filtering th form .form-group .input-group .input-group-btn {
  order: 1;
}
.inspection-results-page .main-container .inspection-results-table-wrapper table thead .footable-filtering th form .form-group .input-group .input-group-btn .btn {
  padding-right: 0 !important;
  background-color: transparent !important;
  border-color: #6F6F6F !important;
  border-right: 0 !important;
  border-radius: 0.375rem 0 0 0.375rem;
}
.inspection-results-page .main-container .inspection-results-table-wrapper table thead .footable-filtering th form .form-group .input-group .input-group-btn .btn .fooicon-search::before {
  background-image: url("../../images/search.svg") !important;
  width: 1.5rem !important;
  height: 1.5rem !important;
}
.inspection-results-page .main-container .inspection-results-table-wrapper table thead .footable-filtering th form .form-group .input-group .input-group-btn .dropdown-toggle {
  display: none;
}
.inspection-results-page .main-container .inspection-results-table-wrapper table thead .footable-header {
  background-color: #F7F7F7;
}
.inspection-results-page .main-container .inspection-results-table-wrapper table thead .footable-header th {
  background-color: #F7F7F7;
  font-size: 1.25rem;
}
.inspection-results-page .main-container .inspection-results-table-wrapper table thead .footable-header th:first-child {
  border-top-left-radius: 1.875rem;
}
.inspection-results-page .main-container .inspection-results-table-wrapper table thead .footable-header th:last-child {
  border-top-right-radius: 1.875rem;
}
.inspection-results-page .main-container .inspection-results-table-wrapper table tbody {
  background-color: #F7F7F7;
}
.inspection-results-page .main-container .inspection-results-table-wrapper table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 1.875rem;
}
.inspection-results-page .main-container .inspection-results-table-wrapper table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 1.875rem;
}
.inspection-results-page .main-container .inspection-results-table-wrapper table tfoot {
  background-color: transparent !important;
}
.inspection-results-page .main-container .inspection-results-table-wrapper table tfoot tr {
  background-color: transparent !important;
}
.inspection-results-page .main-container .inspection-results-table-wrapper table tfoot tr.footable-paging td {
  padding-left: 0.063rem;
  border: none !important;
}
.inspection-results-page .main-container .inspection-results-table-wrapper table th {
  min-width: 13.938rem;
  padding: 1.375rem 0.75rem;
}
.inspection-results-page .main-container .inspection-results-table-wrapper table th:first-child {
  padding-left: 2rem;
  padding-right: 1.375rem;
}
@media only screen and (max-width: 1366px) {
  .inspection-results-page .main-container .inspection-results-table-wrapper table th:first-child {
    padding-left: 1.375rem;
    padding-right: 1rem;
  }
}
.inspection-results-page .main-container .inspection-results-table-wrapper table th:last-child {
  padding-left: 1.375rem;
  padding-right: 1.375rem;
}
@media only screen and (max-width: 1366px) {
  .inspection-results-page .main-container .inspection-results-table-wrapper table th:last-child {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media only screen and (max-width: 1366px) {
  .inspection-results-page .main-container .inspection-results-table-wrapper table th {
    min-width: 9.375rem;
  }
}
@media only screen and (max-width: 1023px) {
  .inspection-results-page .main-container .inspection-results-table-wrapper table th {
    padding: 1rem 0.75rem;
  }
}
.inspection-results-page .main-container .inspection-results-table-wrapper table tr:last-child td {
  border-bottom: 0;
}
.inspection-results-page .main-container .inspection-results-table-wrapper table td {
  min-width: 13.938rem;
  padding: 1.375rem 0.75rem;
  border-top: 0 !important;
  border-bottom: 0.1rem solid #ECEEF0;
  font-size: 1.25rem;
}
.inspection-results-page .main-container .inspection-results-table-wrapper table td:first-child {
  padding-left: 2rem;
  padding-right: 1.375rem;
}
@media only screen and (max-width: 1366px) {
  .inspection-results-page .main-container .inspection-results-table-wrapper table td:first-child {
    padding-left: 1.375rem;
    padding-right: 1rem;
  }
}
.inspection-results-page .main-container .inspection-results-table-wrapper table td:last-child {
  padding-left: 1.375rem;
  padding-right: 1.375rem;
}
@media only screen and (max-width: 1366px) {
  .inspection-results-page .main-container .inspection-results-table-wrapper table td:last-child {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media only screen and (max-width: 1366px) {
  .inspection-results-page .main-container .inspection-results-table-wrapper table td {
    min-width: 9.375rem;
  }
}
@media only screen and (max-width: 1023px) {
  .inspection-results-page .main-container .inspection-results-table-wrapper table td {
    padding: 1rem 0.75rem;
  }
}
.inspection-results-page .main-container .inspection-results-table-wrapper .inspection-result {
  display: block;
  width: fit-content;
  padding: 0.5rem 1.5rem;
  border-radius: 0.375rem;
  color: #6B6B6B;
}
.inspection-results-page .main-container .inspection-results-table-wrapper .inspection-result.valid {
  background-color: #D4F8D3;
}
.inspection-results-page .main-container .inspection-results-table-wrapper .inspection-result.invalid {
  background-color: #FBE7E9;
}
.inspection-results-page .main-container .inspection-results-table-wrapper::-webkit-scrollbar {
  width: 0.625rem;
  height: 0.312rem;
}
.inspection-results-page .main-container .inspection-results-table-wrapper::-webkit-scrollbar-track {
  background-color: transparent;
  margin: 0 0.625rem;
}
.inspection-results-page .main-container .inspection-results-table-wrapper::-webkit-scrollbar-thumb {
  border-radius: 3.125rem;
  background-color: #6F6F6F;
}
.inspection-results-page .main-container .inspection-results-table-wrapper .pagination {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  margin-top: 0.125rem;
}
.inspection-results-page .main-container .inspection-results-table-wrapper .pagination [data-page=first], .inspection-results-page .main-container .inspection-results-table-wrapper .pagination [data-page=last] {
  display: none !important;
}
.inspection-results-page .main-container .inspection-results-table-wrapper .pagination .footable-page-nav[data-page=prev] .footable-page-link::before,
.inspection-results-page .main-container .inspection-results-table-wrapper .pagination .footable-page-nav[data-page=next] .footable-page-link::before {
  content: none !important;
}
.inspection-results-page .main-container .inspection-results-table-wrapper .pagination .footable-page-nav[data-page=prev] .footable-page-link,
.inspection-results-page .main-container .inspection-results-table-wrapper .pagination .footable-page-nav[data-page=next] .footable-page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 4px !important;
}
.inspection-results-page .main-container .inspection-results-table-wrapper .pagination .footable-page-nav[data-page=prev] .footable-page-link:hover svg path,
.inspection-results-page .main-container .inspection-results-table-wrapper .pagination .footable-page-nav[data-page=next] .footable-page-link:hover svg path {
  fill: #141E28;
}
.inspection-results-page .main-container .inspection-results-table-wrapper .pagination .footable-page-nav.disabled[data-page=prev] .footable-page-link,
.inspection-results-page .main-container .inspection-results-table-wrapper .pagination .footable-page-nav.disabled[data-page=next] .footable-page-link {
  opacity: 0.5;
  cursor: default;
}
.inspection-results-page .main-container .inspection-results-table-wrapper .pagination .footable-page-nav.disabled[data-page=prev-limit],
.inspection-results-page .main-container .inspection-results-table-wrapper .pagination .footable-page-nav.disabled[data-page=next-limit] {
  display: none;
}
.inspection-results-page .main-container .inspection-results-table-wrapper .pagination .footable-page.active .footable-page-link, .inspection-results-page .main-container .inspection-results-table-wrapper .pagination .footable-page-nav.active .footable-page-link {
  color: #141E28;
  background-color: #32D0FE;
  font-weight: 700;
}
.inspection-results-page .main-container .inspection-results-table-wrapper .pagination .footable-page .footable-page-link, .inspection-results-page .main-container .inspection-results-table-wrapper .pagination .footable-page-nav .footable-page-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: #6F6F6F;
  background-color: #FFFEFD;
  border: 1px solid #6F6F6F;
  border-radius: 0.25rem;
}
.inspection-results-page .main-container .inspection-results-table-wrapper .pagination .footable-page .footable-page-link:hover, .inspection-results-page .main-container .inspection-results-table-wrapper .pagination .footable-page-nav .footable-page-link:hover {
  color: #141E28;
  background-color: #32D0FE;
  font-weight: 700;
}
.inspection-results-page .main-container .inspection-results-table-wrapper .nt_customer_pager {
  display: none !important;
}
.inspection-results-page .main-container .table-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.inspection-results-page .main-container .table-pagination .page-number {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 2rem;
  height: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  background-color: #FFFEFD;
  border: 1px solid #6F6F6F;
  border-radius: 0.25rem;
}
.inspection-results-page .main-container .table-pagination .page-number.current {
  color: #141E28;
  background-color: #32D0FE;
  font-weight: 700;
}
.inspection-results-page .main-container .table-pagination .page-number.disabled {
  opacity: 0.5;
  cursor: default;
}
.inspection-results-page .main-container .table-pagination .page-number.extended:hover {
  background-color: #FFFEFD;
}
.inspection-results-page .main-container .table-pagination .page-number:hover {
  color: #141E28;
  background-color: #32D0FE;
}
.inspection-results-page .main-container .table-pagination .page-number svg {
  width: 1.5rem;
  height: 1.5rem;
}
.inspection-results-page .main-container .table-pagination .page-number svg path {
  fill: #6F6F6F;
}

.admin-inspection-results {
  width: 100%;
}
.admin-inspection-results table {
  width: 100%;
}

.about-us-page .hero {
  position: relative;
  display: block;
  min-height: 38.75rem;
  margin-top: 3.438rem;
  margin-bottom: 1.188rem;
}
.about-us-page .hero .hero-content {
  position: relative;
  max-width: 48.125rem;
  width: calc(100% - 29.938rem);
}
@media only screen and (max-width: 1366px) {
  .about-us-page .hero .hero-content {
    width: 62%;
  }
}
@media only screen and (max-width: 1280px) {
  .about-us-page .hero .hero-content {
    width: 100%;
    max-width: unset;
    margin-bottom: 1.5rem;
  }
}
.about-us-page .hero .hero-content .main-title {
  margin-bottom: 2rem;
}
.about-us-page .hero .image-wrapper {
  position: relative;
  width: 100%;
  max-height: 38.75rem;
  margin-top: -22%;
  mask-image: url("../../images/par-mums-rectangle.svg");
  -webkit-mask-image: url("../../images/par-mums-rectangle.svg");
  mask-size: 100% 100%;
  -webkit-mask-size: 100% 100%;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
}
@media only screen and (max-width: 1280px) {
  .about-us-page .hero .image-wrapper {
    width: 100%;
    margin-top: unset;
    mask-image: none;
    border-radius: 1.5rem;
    overflow: hidden;
  }
}
.about-us-page .hero .image-wrapper img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: inherit;
  object-fit: cover;
}
@media only screen and (max-width: 1023px) {
  .about-us-page .hero .image-wrapper img {
    border-radius: 1.875rem;
  }
}
.about-us-page .hero-hidden {
  margin-top: 3.438rem;
  margin-bottom: 3.438rem;
}
.about-us-page .achievements {
  display: flex;
  flex-wrap: wrap;
  gap: 1.438rem;
  padding-bottom: 3rem;
}
@media only screen and (max-width: 1023px) {
  .about-us-page .achievements {
    padding-bottom: 2rem;
  }
}
.about-us-page .achievements .achievement {
  width: calc((100% - 4.313rem) / 4);
  padding: 1.5rem 1rem;
  color: #FFF;
  background-color: #141E28;
  border-radius: 1.5rem;
}
@media only screen and (max-width: 1023px) {
  .about-us-page .achievements .achievement {
    width: calc(50% - 0.719rem);
  }
}
@media only screen and (max-width: 500px) {
  .about-us-page .achievements .achievement {
    width: 100%;
  }
}
.about-us-page .achievements .achievement .achievement-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 4.5rem;
  margin-bottom: 1rem;
}
.about-us-page .achievements .achievement .achievement-icon svg {
  width: auto;
  height: auto;
  max-width: 5.688rem;
  max-height: 4.5rem;
}
.about-us-page .achievements .achievement .achievement-content {
  max-width: 13.188rem;
  margin: 0 auto;
}
.about-us-page .achievements .achievement .achievement-content p {
  font-size: 1rem;
  text-align: center;
}
.about-us-page .company-values {
  position: relative;
  min-height: 36.625rem;
  margin-top: 3rem;
  margin-bottom: 1.438rem;
  overflow: hidden;
}
@media only screen and (max-width: 1023px) {
  .about-us-page .company-values {
    margin-top: 2rem;
  }
}
.about-us-page .company-values .image-wrapper {
  position: relative;
  width: 100%;
  max-height: 36.625rem;
  margin-top: -26%;
  mask-image: url("../../images/uznemuma-vertibas-1.svg");
  -webkit-mask-image: url("../../images/uznemuma-vertibas-1.svg");
  mask-size: 100% 100%;
  -webkit-mask-size: 100% 100%;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
}
@media only screen and (max-width: 1366px) {
  .about-us-page .company-values .image-wrapper {
    margin-top: unset;
    mask-image: none;
    border-radius: 1.5rem;
    overflow: hidden;
  }
}
.about-us-page .company-values .image-wrapper img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: inherit;
  object-fit: cover;
}
.about-us-page .company-values .company-values-inner {
  position: relative;
  top: 0;
  display: flex;
  gap: 2rem;
  max-width: 60.375rem;
  width: calc(100% - 21.375rem);
  margin-left: auto;
}
@media only screen and (max-width: 1366px) {
  .about-us-page .company-values .company-values-inner {
    top: 0;
    max-width: unset;
    width: 100%;
    margin-left: 0;
    margin-bottom: 1.5rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1366px) {
  .about-us-page .company-values .company-values-inner {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .about-us-page .company-values .company-values-inner {
    flex-direction: column;
  }
}
.about-us-page .company-values .small-image-wrapper {
  position: relative;
  width: 18.375rem;
  max-height: 20.75rem;
  height: auto;
}
@media only screen and (max-width: 1366px) {
  .about-us-page .company-values .small-image-wrapper {
    float: left;
    margin-right: 2rem;
    margin-bottom: 1.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .about-us-page .company-values .small-image-wrapper {
    float: unset;
    order: 2;
    width: 100%;
    margin-bottom: 0;
  }
}
.about-us-page .company-values .small-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.25rem;
}
@media only screen and (max-width: 1366px) {
  .about-us-page .company-values .small-image-wrapper img {
    max-height: inherit;
  }
}
.about-us-page .company-values .company-values-content {
  width: calc(100% - 18.375rem - 2rem);
}
@media only screen and (max-width: 1366px) {
  .about-us-page .company-values .company-values-content {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .about-us-page .company-values .company-values-content {
    order: 1;
  }
}
.about-us-page .company-values .company-values-content .regular-title {
  margin-bottom: 1.5rem;
}
.about-us-page .our-team {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  padding-bottom: 3rem;
}
@media only screen and (max-width: 1023px) {
  .about-us-page .our-team {
    padding-bottom: 2rem;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1366px) {
  .about-us-page .our-team {
    display: block;
  }
}
.about-us-page .our-team .content-side {
  order: 1;
  width: calc(100% - 40rem - 1.25rem);
}
@media only screen and (max-width: 1280px) {
  .about-us-page .our-team .content-side {
    width: 100%;
  }
}
.about-us-page .our-team .content-side .regular-title {
  margin-bottom: 1.5rem;
}
.about-us-page .our-team .images-side {
  order: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 1.438rem;
  width: 40rem;
}
@media only screen and (max-width: 1366px) {
  .about-us-page .our-team .images-side {
    float: right;
    margin-left: 1.25rem;
    margin-bottom: 1.5rem;
  }
}
@media only screen and (max-width: 1280px) {
  .about-us-page .our-team .images-side {
    width: 32.5rem;
  }
}
@media only screen and (max-width: 1023px) {
  .about-us-page .our-team .images-side {
    float: unset;
    width: 100%;
    margin: 0;
  }
}
.about-us-page .our-team .images-side .image-wrapper {
  position: relative;
  width: calc(50% - 0.719rem);
  padding-top: 57.6298701299%;
}
@media only screen and (max-width: 500px) {
  .about-us-page .our-team .images-side .image-wrapper {
    width: 100%;
  }
}
.about-us-page .our-team .images-side .image-wrapper img {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.875rem;
}

.contacts-page .hero {
  display: flex;
  width: 100%;
  padding-top: 3.438rem;
  padding-bottom: 6rem;
}
@media only screen and (max-width: 1023px) {
  .contacts-page .hero {
    flex-wrap: wrap;
  }
}
.contacts-page .hero .contact-information-side {
  width: 39.875rem;
  padding: 4.875rem 6.625rem;
  background-color: #141E28;
  border-top-left-radius: 1.875rem;
  border-bottom-left-radius: 1.875rem;
}
@media only screen and (max-width: 1366px) {
  .contacts-page .hero .contact-information-side {
    padding: 4.875rem 2rem 4.875rem 3rem;
  }
}
@media only screen and (max-width: 1023px) {
  .contacts-page .hero .contact-information-side {
    width: 100%;
    padding: 3rem 2rem;
    border-top-right-radius: 1.875rem;
    border-bottom-left-radius: 0;
  }
}
@media only screen and (max-width: 500px) {
  .contacts-page .hero .contact-information-side {
    padding: 2rem;
  }
}
.contacts-page .hero .contact-information-side * {
  color: #FFF;
}
.contacts-page .hero .contact-information-side .contact-information-side-header {
  margin-bottom: 1.5rem;
}
.contacts-page .hero .contact-information-side .contact-information-side-header .small-title {
  margin-bottom: 1.5rem;
}
.contacts-page .hero .contact-information-side .contact-information-side-header .small-title span {
  color: #ABE9FF;
}
.contacts-page .hero .contact-information-side .contact-information-side-header p {
  font-size: 1rem;
}
.contacts-page .hero .contact-information-side .contact-information-item {
  margin-bottom: 1.5rem;
}
.contacts-page .hero .contact-information-side .contact-information-item:last-child {
  margin-bottom: 0;
}
.contacts-page .hero .contact-information-side .contact-information-item .contact-information-item-title {
  margin-bottom: 0.375rem;
  font-size: 1.25rem;
  font-weight: 400;
}
.contacts-page .hero .contact-information-side .contact-information-item .contact-information-item-title span {
  color: #ABE9FF;
}
.contacts-page .hero .contact-information-side .contact-information-item .subtext {
  font-size: 1rem;
  margin-bottom: 0.375rem;
}
.contacts-page .hero .contact-information-side .contact-information-item .subtext + .contact-list-item {
  margin-bottom: 0.75rem;
}
.contacts-page .hero .contact-information-side .contact-information-item .contact-list .contact-list-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.375rem;
  font-size: 1rem;
}
.contacts-page .hero .contact-information-side .contact-information-item .contact-list .contact-list-item:last-child {
  margin-bottom: 0;
}
.contacts-page .hero .contact-information-side .contact-information-item .contact-list .contact-list-item .icon-wrapper {
  width: 1.75rem;
  height: 1.75rem;
}
.contacts-page .hero .contact-information-side .contact-information-item .contact-list .contact-list-item .icon-wrapper .icon {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: auto;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}
.contacts-page .hero .contact-form-side {
  width: 40.875rem;
  background-color: #F7F7F7;
  border-top-right-radius: 1.875rem;
  border-bottom-right-radius: 1.875rem;
}
@media only screen and (max-width: 1023px) {
  .contacts-page .hero .contact-form-side {
    width: 100%;
    border-top-right-radius: 0;
    border-bottom-left-radius: 1.875rem;
  }
}
@media only screen and (max-width: 500px) {
  .contacts-page .hero .contact-form-side {
    overflow: hidden;
  }
}
.contacts-page .hero .contact-form .button-wrapper {
  position: relative;
}
.contacts-page .addresses-section {
  padding-bottom: 3rem;
}
.contacts-page .addresses-section .regular-title {
  margin-bottom: 2rem;
}
.contacts-page .addresses-section .addresses {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
@media only screen and (max-width: 767px) {
  .contacts-page .addresses-section .addresses {
    gap: 2rem;
  }
}
.contacts-page .addresses-section .addresses .single-address {
  display: flex;
  flex-direction: column;
  width: calc(50% - 0.5rem);
}
@media only screen and (max-width: 767px) {
  .contacts-page .addresses-section .addresses .single-address {
    width: 100%;
  }
}
.contacts-page .addresses-section .addresses .address-title-wrapper {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0.625rem;
}
.contacts-page .addresses-section .addresses .address-title-wrapper svg {
  width: 1.75rem;
  height: 1.75rem;
}
.contacts-page .addresses-section .addresses .address-title-wrapper svg path {
  fill: #0078A6;
}
.contacts-page .addresses-section .addresses .address-title-wrapper .address-title {
  color: #6F6F6F;
  line-height: 100%;
}
.contacts-page .addresses-section .map {
  width: 100%;
  height: 31.875rem;
  margin-top: auto;
  border-radius: 2rem;
}
@media only screen and (max-width: 1023px) {
  .contacts-page .addresses-section .map {
    height: 25.625rem;
  }
}

.thanks-for-email-page .thanks-for-email-container {
  position: relative;
  display: block;
  min-height: 35.25rem;
  padding-top: 3.438rem;
  padding-bottom: 3rem;
}
.thanks-for-email-page .thanks-for-email-container .content-wrapper {
  position: relative;
  max-width: 30.313rem;
  margin: 0 auto;
  padding-top: 2rem;
  text-align: center;
  z-index: 1;
}
@media only screen and (max-width: 1280px) {
  .thanks-for-email-page .thanks-for-email-container .content-wrapper {
    margin-bottom: 1.5rem;
  }
}
.thanks-for-email-page .thanks-for-email-container .content-wrapper .main-title {
  margin-bottom: 1.5rem;
}
.thanks-for-email-page .thanks-for-email-container .content-wrapper .button-wrapper {
  justify-content: center;
}
.thanks-for-email-page .thanks-for-email-container .image-wrapper {
  position: relative;
  width: 100%;
  max-height: 35.25rem;
  margin-top: -17.5%;
  overflow: hidden;
  mask-image: url("../../images/paldies-lapa.svg");
  -webkit-mask-image: url("../../images/paldies-lapa.svg");
  mask-size: 100% 100%;
  -webkit-mask-size: 100% 100%;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
}
@media only screen and (max-width: 1366px) {
  .thanks-for-email-page .thanks-for-email-container .image-wrapper {
    margin-top: -20.5%;
  }
}
@media only screen and (max-width: 1280px) {
  .thanks-for-email-page .thanks-for-email-container .image-wrapper {
    margin-top: 0;
    mask-image: none;
    border-radius: 1.5rem;
    overflow: hidden;
  }
}
.thanks-for-email-page .thanks-for-email-container .image-wrapper img {
  width: 100%;
  height: 100%;
  max-height: inherit;
  object-fit: cover;
}

.single-page .main-container {
  padding-top: 2.188rem;
  padding-bottom: 3rem;
}
.single-page .main-title {
  margin-bottom: 2rem;
}
.single-page .wysiwyg-styles h2 {
  margin-bottom: 1rem;
  color: #141E28;
  font-size: 1.75rem;
  font-weight: 600;
}
.single-page .wysiwyg-styles h3 {
  margin-bottom: 1rem;
  color: #141E28;
  font-size: 1.25rem;
  font-weight: 400;
}
.single-page .wysiwyg-styles h4 {
  margin-bottom: 0.375rem;
  color: #141E28;
  font-size: 1rem;
  font-weight: 600;
}
.single-page .wysiwyg-styles h4 + p {
  margin-bottom: 1rem;
}
.single-page .wysiwyg-styles p {
  margin-bottom: 2rem;
}
.single-page .wysiwyg-styles p:last-child {
  margin-bottom: 0;
}
.single-page .wysiwyg-styles a {
  color: #0078A6;
  font-weight: 600;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.single-page .wysiwyg-styles strong {
  font-weight: 600;
}

.page-404 .page-404-content {
  min-height: calc(100vh - 5.438rem - 29.656rem);
  margin: 0 auto;
  padding: 4rem 0;
}
@media only screen and (max-width: 1366px) {
  .page-404 .page-404-content {
    min-height: calc(100vh - 5.438rem - 42rem);
  }
}
.page-404 .page-404-content .main-title {
  margin-bottom: 1.25rem;
}

/*# sourceMappingURL=style.css.map */
