@charset "UTF-8";
body {
  font-family: "Lato", sans-serif;
}

.container {
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
  padding: 0 12px;
}

.mask {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.primary-button {
  display: block;
  width: 280px;
  padding: 15px 30px;
  border-radius: 5px;
  color: white;
  background-color: #7ac7c4;
  transition: 0.2s;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1.6px;
}

.primary-button:hover {
  background-color: #56b8b4;
  color: white;
}

.dark-variant {
  background-color: #384259;
}

.dark-variant:hover {
  background-color: #242b3a;
  color: white;
}

.white-variant {
  background-color: white;
  color: #384259;
}

.white-variant:hover {
  background-color: #e6e6e6;
  color: #384259;
}

.transparent-variant {
  border: 1px solid white;
  background-color: transparent !important;
  color: white;
}

.transparent-variant:hover {
  background-color: white !important;
  color: #384259;
}

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

img {
  width: 100%;
  object-fit: cover;
}

.line {
  width: 50px;
  height: 2px;
  background-color: #7ac7c4;
}

.center-line {
  margin: 0 auto;
}

.pre-title {
  width: fit-content;
  margin: 0 auto;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: normal;
  font-size: 16px;
  background-color: white;
}

p {
  font-size: 19px;
  font-weight: lighter;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  margin: 40px auto 0 auto;
  padding-bottom: 30px;
  list-style: none;
}
.pagination li span {
  display: flex;
  align-items: center;
  padding: 5px 15px;
  border-radius: 4px;
  background-color: whitesmoke;
  color: white;
}
.pagination li span.active {
  height: 35px;
  background-color: #7ac7c4;
}
.pagination li a {
  display: flex;
  align-items: center;
  padding: 5px 15px;
  height: 35px;
  border-radius: 4px;
  background-color: whitesmoke;
  color: grey;
}
.pagination li .arrow-btn {
  padding: 5px 8px;
}
.pagination li .extreme-btn {
  padding: 5px 8px;
  color: lightgray;
}

.mobile-menu-icon {
  display: none;
  align-items: center;
  justify-content: end;
}

.mobile-nav {
  display: none;
}

.mobile-nav.active {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 999;
  display: flex;
  flex-direction: column;
  max-width: 400px;
  width: 100%;
  padding: 20px;
  background-color: whitesmoke;
  transition: 0.2s;
}
.mobile-nav.active > a {
  margin: 5px 0;
  font-size: 16px;
  color: #384259;
}
.mobile-nav.active .category {
  display: flex;
  flex-direction: column;
}
.mobile-nav.active .category h3 {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 0 0 5px 0;
  font-size: 16px;
  font-weight: normal;
  color: #384259;
  cursor: pointer;
}
.mobile-nav.active .category a {
  display: none;
  margin: 0 0 5px 8px;
  color: #419a97;
}
.mobile-nav.active .category a.active {
  display: block;
}

.header {
  position: relative;
  border-bottom: 1px solid whitesmoke;
}
.header .top-bar {
  height: 1px;
}
.header .header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  height: 100px;
}
.header .header-wrapper .logo-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.header .header-wrapper .logo-box a img {
  width: 200px;
  margin: 15px 0;
}
.header .header-wrapper .general-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 100%;
}
.header .header-wrapper .general-nav a {
  display: flex;
  align-items: center;
  height: 100%;
  color: #384259;
  font-size: 19px;
}
.header .header-wrapper .general-nav a span {
  padding: 0 5px 5px 5px;
  border-bottom: 2px solid white;
  transition: 0.2s;
}
.header .header-wrapper .general-nav a:hover span {
  border-bottom: 2px solid lightgrey;
}
.header .header-wrapper .general-nav a.active span {
  border-bottom: 2px solid #7ac7c4;
}
.header .header-wrapper .general-nav .position-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
}
.header .header-wrapper .general-nav .position-wrapper span {
  display: flex;
  align-items: center;
  font-size: 19px;
  padding: 0 5px 5px 5px;
  color: #384259;
}
.header .header-wrapper .general-nav .position-wrapper .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  justify-content: center;
  background-color: whitesmoke;
  z-index: 999;
}
.header .header-wrapper .general-nav .position-wrapper .sub-menu .sub-menu-wrapper {
  display: flex;
  gap: 50px;
  height: 100%;
  width: 1500px;
  margin: 40px 0;
}
.header .header-wrapper .general-nav .position-wrapper .sub-menu .sub-menu-wrapper h3 {
  margin-top: 0;
  color: #384259;
}
.header .header-wrapper .general-nav .position-wrapper .sub-menu .sub-menu-wrapper a {
  height: auto;
  width: fit-content;
  margin-bottom: 10px;
  font-size: 16px;
  transition: 0.1s linear;
}
.header .header-wrapper .general-nav .position-wrapper .sub-menu .sub-menu-wrapper a:hover {
  transform: translateX(5px);
  color: #7ac7c4;
}
.header .header-wrapper .general-nav .position-wrapper .sub-menu.active {
  display: flex;
}

.footer {
  padding: 80px 0 0;
  background-color: #384259;
}
.footer .logo-box {
  max-width: 300px;
  margin: 0 auto;
}
.footer .footer-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  margin-top: 30px;
  padding-bottom: 50px;
  border-bottom: 1px solid #4c5978;
}
.footer .footer-menu a {
  font-size: 19px;
  color: white;
  transition: 0.2s;
}
.footer .footer-menu a:hover {
  transform: translateX(5px);
}
.footer .categories {
  padding: 50px 0;
}
.footer .categories .footer-menu-wrapper {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  column-gap: 40px;
}
.footer .categories .footer-menu-wrapper .category {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer .categories .footer-menu-wrapper .category h3 {
  margin: 0 0 10px;
  color: white;
}
.footer .categories .footer-menu-wrapper .category a {
  color: white;
  transition: 0.2s;
}
.footer .categories .footer-menu-wrapper .category a:hover {
  transform: translateX(5px);
}
.footer .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-top: 1px solid #4c5978;
  color: white;
}
.footer .footer-bottom a {
  display: flex;
  align-items: center;
  gap: 5px;
  color: white;
}
.footer .footer-bottom a img {
  width: 80px;
}

.technologies {
  padding: 80px 0;
}
.technologies h1 {
  margin-bottom: 50px;
  font-size: 52px;
}
.technologies .technologies-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 50px;
}
.technologies .technologies-grid .txt {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 19px;
  text-align: justify;
  line-height: 28px;
  font-weight: lighter;
}
.technologies .technologies-grid .icons {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 40px;
}
.technologies .technologies-grid .icons .icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px;
  border-radius: 10px;
  background-color: white;
  box-shadow: 3px 3px 10px 1px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}
.technologies .technologies-grid .icons .icon:hover {
  box-shadow: 3px 3px 12px 1px rgba(0, 0, 0, 0.3);
}
.technologies .technologies-grid .icons .icon p {
  color: grey;
}

.realizations {
  padding: 80px 0;
  background-color: whitesmoke;
}
.realizations h1 {
  margin-top: 0;
  font-size: 42px;
}
.realizations .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 40px;
  margin-top: 50px;
}
.realizations .grid .cell {
  box-shadow: 4px 4px 10px 1px rgba(0, 0, 0, 0.1);
}
.realizations .grid .cell .image-box {
  height: 300px;
}
.realizations .grid .cell .image-box img {
  height: 100%;
  object-position: top;
}
.realizations .grid .cell h3 {
  margin: 0;
  padding: 20px 0;
  font-size: 22px;
  border-top: 1px solid whitesmoke;
  background-color: white;
  text-align: center;
}

.services-box {
  padding: 80px 0;
}
.services-box .services-header {
  display: grid;
  grid-template-columns: 2fr 1fr;
}
.services-box .services-header .left h5 {
  width: fit-content;
  border-radius: 10px;
  font-size: 19px;
  padding: 10px;
  color: white;
  background-color: #384259;
}
.services-box .services-header .left h2 {
  margin-bottom: 0;
  font-size: 42px;
  font-weight: normal;
}
.services-box .services-header .left h2 span {
  font-weight: bold;
}
.services-box .services-header .left h3 {
  font-size: 19px;
  font-weight: normal;
}
.services-box .our-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
  margin-top: 40px;
  padding: 20px;
  border-radius: 10px;
  background-color: whitesmoke;
}
.services-box .our-services .service {
  padding: 20px;
  background-color: white;
  border-radius: 10px;
  border: 2px solid white;
  transition: 0.2s;
}
.services-box .our-services .service:hover {
  border: 2px solid #7ac7c4;
}
.services-box .our-services .service .general-grid {
  display: grid;
  grid-template-columns: 65px 1fr;
  column-gap: 20px;
}
.services-box .our-services .service .general-grid .icon-col {
  display: flex;
  align-items: start;
  justify-content: center;
}
.services-box .our-services .service .general-grid .icon-col .icon {
  padding: 12px;
  border-radius: 10px;
  background-color: whitesmoke;
}
.services-box .our-services .service .general-grid .txt-col h3 {
  margin: 10px 0;
  font-size: 24px;
}
.services-box .our-services .service .general-grid .txt-col p {
  color: #395465;
}
.services-box .our-services .service .general-grid .txt-col span {
  color: #384259;
}

.info-box-1 {
  padding: 80px 0;
}
.info-box-1 .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 50px;
}
.info-box-1 .grid .txt {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.info-box-1 .grid h2 {
  margin-top: 0;
  font-size: 32px;
}
.info-box-1 .grid p {
  margin-bottom: 0;
  font-size: 19px;
  text-align: justify;
}
.info-box-1 .grid img {
  border-radius: 10px;
}

.products {
  padding: 80px 0;
  border-top: 1px solid whitesmoke;
}
.products .pre-title {
  background-color: whitesmoke;
}
.products h1 {
  max-width: 1200px;
  margin: 30px auto 50px;
  font-size: 42px;
  font-weight: normal;
}
.products h1 span {
  font-weight: bold;
}
.products .grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  column-gap: 50px;
  margin-top: 50px;
}
.products .grid .options .option {
  margin-bottom: 10px;
  padding: 15px 25px;
  font-size: 19px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.2s;
}
.products .grid .options .option:hover {
  background-color: whitesmoke;
}
.products .grid .options .option.active {
  background-color: #384259;
  color: white;
}
.products .grid .text-box {
  height: fit-content;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 4px 4px 10px 1px rgba(0, 0, 0, 0.2);
}
.products .grid .text-box .text {
  display: none;
  font-size: 19px;
  line-height: 32px;
  font-weight: lighter;
}
.products .grid .text-box .text ul {
  list-style: none;
  padding-left: 30px;
}
.products .grid .text-box .text ul li {
  position: relative;
  margin-bottom: 10px;
}
.products .grid .text-box .text ul li::before {
  content: "";
  position: absolute;
  left: -35px; /* Dostosuj tę wartość, aby zmienić odległość ikony od tekstu */
  top: 30%;
  transform: translateY(-50%);
  width: 28px; /* Szerokość ikony */
  height: 28px; /* Wysokość ikony */
  background-image: url("/user/themes/custom-theme/images/icons/check-mark.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.products .grid .text-box .text.active {
  display: block;
}

.about-us-box {
  padding: 80px 0;
  background-color: #242b3a;
  color: white;
}
.about-us-box h2 {
  margin-top: 0;
  font-size: 52px;
  color: white;
}
.about-us-box p {
  max-width: 900px;
  margin: 0 auto 50px;
  text-align: center;
  line-height: 26px;
}
.about-us-box .points-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 100px;
}
.about-us-box .points-list .point {
  display: flex;
  align-items: center;
  gap: 20px;
}
.about-us-box .points-list .point .icon {
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-us-box .points-list .point .txt {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 5px;
}
.about-us-box .points-list .point .txt .number {
  font-size: 42px;
}

.clients-large {
  padding: 80px 0;
  background-color: whitesmoke;
}
.clients-large h1 {
  max-width: 900px;
  margin: 30px auto 50px;
  font-size: 42px;
  font-weight: normal;
}
.clients-large .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 30px;
}
.clients-large .grid .cell {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;
  border-radius: 10px;
  background-color: white;
  box-shadow: 4px 4px 10px 1px rgba(0, 0, 0, 0.05);
  transition: 0.2s;
}
.clients-large .grid .cell:hover {
  box-shadow: 4px 4px 10px 1px rgba(0, 0, 0, 0.1);
}

.cta-1 {
  padding: 80px 0;
  background-color: #384259;
  color: white;
}
.cta-1 h1 {
  font-size: 52px;
  color: white;
}
.cta-1 p {
  max-width: 900px;
  margin: 0 auto 40px;
  font-size: 19px;
  line-height: 28px;
}
.cta-1 .steps {
  display: grid;
  grid-template-columns: 1fr 80px 1fr 80px 1fr 80px 1fr 80px 1fr 80px 1fr;
}
.cta-1 .steps .step .image-box {
  width: fit-content;
  margin: 0 auto;
  padding: 15px;
  border-radius: 50%;
  background-color: white;
}
.cta-1 .steps .step .image-box img {
  width: 80px;
  height: 80px;
}
.cta-1 .steps .step h5 {
  margin-top: 20px;
  font-size: 22px;
  text-align: center;
  color: white;
}
.cta-1 .steps .line {
  margin: 55px auto auto;
}
.cta-1 a {
  display: block;
  margin: 40px auto 0;
}

.cta-2 {
  padding: 50px 0;
  background-color: #c2e5e4;
}
.cta-2 h1 {
  font-size: 48px;
}
.cta-2 .img-frame {
  width: 180px;
  margin: 0 auto;
}
.cta-2 .img-frame img {
  height: 180px;
  width: auto;
}
.cta-2 p {
  font-size: 19px;
}
.cta-2 a {
  margin: 50px auto 0;
}

.faq-box {
  padding: 80px 0;
  border-top: 1px solid whitesmoke;
}
.faq-box .container {
  max-width: 1200px;
}
.faq-box .faq-header h1 {
  margin-top: 0;
  font-size: 52px;
}
.faq-box .content {
  margin-top: 50px;
}
.faq-box .content .question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 19px;
  color: #384259;
  border-bottom: 1px solid lightgrey;
  cursor: pointer;
}
.faq-box .content .question .icons {
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-box .content .question .icons .icon-1 {
  display: block;
}
.faq-box .content .question .icons .icon-2 {
  display: none;
}
.faq-box .content .answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in, padding 0.4s linear;
  padding: 0;
}
.faq-box .content .answer.active {
  max-height: 1000px;
  padding: 20px 0;
}
.faq-box .content .answer.instant-close {
  transition: max-height 0.4s ease-out, padding 0.4s linear;
}

.front-box {
  position: relative;
  height: 700px;
}
.front-box img {
  width: 100%;
  height: 100%;
  background-size: cover;
}
.front-box .txt {
  position: absolute;
  top: 50%;
  left: 40%;
  transform: translate(-50%, -50%);
  z-index: 5;
}
.front-box .txt h1 {
  font-size: 62px;
  color: white;
}
.front-box .txt h1 span {
  color: #7ac7c4;
}
.front-box .txt h3 {
  font-size: 22px;
  font-weight: lighter;
  color: white;
}

.front-box-home-variant h1 {
  font-size: 45px !important;
}

.front-box.small-variant {
  height: 400px;
}

.front-box.small-variant.article-variant h1 {
  font-size: 52px;
}

.front-box.all-offers-variant .mask {
  background-color: rgba(0, 0, 0, 0.6);
}

.statistic-box {
  padding: 40px;
  background-color: #384259;
}
.statistic-box .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.statistic-box .grid .cell {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.statistic-box .grid .cell h3 {
  margin: 0;
  font-size: 32px;
  color: white;
}
.statistic-box .grid .cell p {
  margin-bottom: 0;
  color: white;
}

.history-box {
  padding: 80px 0;
}
.history-box .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 50px;
}
.history-box .grid .txt h1 {
  font-size: 52px;
  margin-top: 0;
}
.history-box .grid .txt p {
  font-size: 19px;
}
.history-box .grid .images {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  row-gap: 30px;
}
.history-box .grid .images img {
  width: 100%;
  height: 100%;
}
.history-box .grid .images .image-1, .history-box .grid .images .image-2, .history-box .grid .images .image-3 {
  max-height: 200px;
}
.history-box .grid .images .two-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 30px;
  max-height: 200px;
}

.why-us {
  padding: 80px 0;
  background-color: whitesmoke;
}
.why-us h1 {
  margin-top: 0;
  font-size: 52px;
}
.why-us p {
  margin: 0 auto;
  max-width: 900px;
  font-size: 19px;
}

.why-us {
  padding: 80px 0;
}
.why-us .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 40px;
  margin-top: 50px;
}
.why-us .grid .cell {
  display: grid;
  grid-template-columns: 100px 1fr;
  column-gap: 40px;
  border-radius: 10px;
  padding: 20px;
  transition: 0.2s;
  box-shadow: 4px 4px 10px 1px rgba(0, 0, 0, 0.15);
  background-color: white;
}
.why-us .grid .cell:hover {
  box-shadow: 4px 4px 10px 1px rgba(0, 0, 0, 0.2);
}
.why-us .grid .cell .icon-box .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  border-radius: 10px;
  background-color: whitesmoke;
  color: #7ac7c4;
}
.why-us .grid .cell .txt h3 {
  margin-top: 0;
  font-size: 24px;
}

.our-clients-2 {
  padding: 80px 0;
}
.our-clients-2 .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 50px;
}
.our-clients-2 .grid .txt h3 {
  margin-top: 0;
  font-size: 42px;
}
.our-clients-2 .grid .txt p {
  font-size: 19px;
}
.our-clients-2 .grid .grid-clients {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 40px;
}
.our-clients-2 .grid .grid-clients img {
  filter: grayscale(100%);
  transition: 0.2s;
}
.our-clients-2 .grid .grid-clients img:hover {
  filter: grayscale(0%);
}

.all-offers-list {
  padding: 80px 0;
  background-color: whitesmoke;
}
.all-offers-list h1 {
  margin-top: 0;
  font-size: 46px;
}
.all-offers-list p {
  font-size: 22px;
}
.all-offers-list .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 40px;
  margin-top: 50px;
}
.all-offers-list .grid .offer {
  box-shadow: 4px 4px 10px 1px rgba(0, 0, 0, 0.1);
  transition: 0.2s;
}
.all-offers-list .grid .offer .icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background-color: #7ac7c4;
}
.all-offers-list .grid .offer .icon-box .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  padding: 10px;
  border-radius: 50%;
  background-color: white;
}
.all-offers-list .grid .offer .txt {
  background-color: white;
}
.all-offers-list .grid .offer .txt h3 {
  margin: 0;
  padding: 20px;
  text-align: center;
}
.all-offers-list .grid .offer:hover {
  transform: translateY(-4px);
  box-shadow: 4px 4px 10px 1px rgba(0, 0, 0, 0.15);
}

.our-project-pros {
  padding: 50px 0;
}
.our-project-pros h2 {
  font-size: 48px;
  text-align: center;
}
.our-project-pros .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 40px;
  margin-top: 60px;
}
.our-project-pros .grid .cell {
  padding: 30px;
  background-color: #384259;
  transition: 0.2s;
}
.our-project-pros .grid .cell * {
  color: white;
}
.our-project-pros .grid .cell .title-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.our-project-pros .grid .cell .title-box .icon-box {
  width: 80px;
  height: 60px;
}
.our-project-pros .grid .cell .title-box .icon-box img {
  width: 60px;
  height: 60px;
}
.our-project-pros .grid .cell .title-box h3 {
  margin: 0;
  font-size: 22px;
}
.our-project-pros .grid .cell p {
  text-align: justify;
}
.our-project-pros .grid .cell:hover {
  transform: translateY(-3px);
}
.our-project-pros .grid .white-cell {
  background-color: whitesmoke;
}
.our-project-pros .grid .white-cell h3 {
  color: #384259;
}
.our-project-pros .grid .white-cell p {
  color: #384259;
}

.our-process-box {
  padding: 80px 0;
  border-bottom: 1px solid whitesmoke;
}
.our-process-box h1 {
  font-size: 38px;
}
.our-process-box .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 40px;
  margin-top: 80px;
}
.our-process-box .grid .step {
  padding: 30px;
  box-shadow: 4px 4px 10px 1px rgba(0, 0, 0, 0.1);
}
.our-process-box .grid .step .icon {
  width: fit-content;
  margin: 0 auto;
  padding: 10px;
  border: 2px solid #7ac7c4;
  border-radius: 50%;
  background-color: whitesmoke;
}
.our-process-box .grid .step .icon img {
  width: 80px;
}
.our-process-box .grid .step h2 {
  margin-top: 8px;
  text-align: center;
}
.our-process-box .grid .step p {
  margin-bottom: 0;
  text-align: justify;
}

.blog-site {
  background-color: whitesmoke;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr 250px;
  grid-gap: 40px;
  padding: 50px 0 20px;
}
.blog-grid .article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 40px;
}
.blog-grid .article-grid .article {
  box-shadow: 4px 4px 10px 1px rgba(0, 0, 0, 0.1);
  background-color: white;
  transition: 0.2s;
}
.blog-grid .article-grid .article img {
  height: 215px;
  width: 100%;
}
.blog-grid .article-grid .article .txt {
  padding: 20px;
}
.blog-grid .article-grid .article .txt .date {
  color: #395465;
}
.blog-grid .article-grid .article .txt h3 {
  margin: 20px 0 0;
}
.blog-grid .article-grid .article:hover {
  box-shadow: 4px 4px 10px 1px rgba(0, 0, 0, 0.15);
}

.sidebar-column {
  position: relative;
}
.sidebar-column .sidebar {
  position: sticky;
  top: 50px;
}
.sidebar-column .sidebar .sidebar-item {
  box-shadow: 4px 4px 10px 1px rgba(0, 0, 0, 0.1);
  background-color: whitesmoke;
}
.sidebar-column .sidebar .sidebar-item .image-box {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background-color: #384259;
}
.sidebar-column .sidebar .sidebar-item .image-box img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-size: cover;
}
.sidebar-column .sidebar .sidebar-item .txt {
  padding: 20px;
}
.sidebar-column .sidebar .sidebar-item .txt h3 {
  margin: 0 0 20px;
  font-size: 22px;
  text-align: center;
}
.sidebar-column .sidebar .sidebar-item .txt a.contact-link {
  display: block;
  margin-bottom: 10px;
  text-align: center;
  color: #395465;
}
.sidebar-column .sidebar .sidebar-item .txt a.contact-link svg {
  width: 50px;
  height: 50px;
  object-fit: contain;
}
.sidebar-column .sidebar .sidebar-item .txt .primary-button {
  margin: 30px auto 0;
}

.article-site {
  background-color: white;
}
.article-site .container {
  max-width: 1200px;
}
.article-site .content-grid {
  display: grid;
  grid-template-columns: 1fr 250px;
  column-gap: 50px;
  padding: 50px 0;
}
.article-site table {
  border: 1px solid lightgrey;
  background-color: whitesmoke;
}
.article-site table th {
  padding: 10px 15px;
  border: 1px solid lightgrey;
}
.article-site table td {
  padding: 10px;
  border: 1px solid lightgrey;
}
.article-site .relevant {
  padding: 20px;
  font-size: 19px;
  background-color: #7ac7c4;
  color: white;
}
.article-site ul {
  list-style: square;
}
.article-site ul li {
  margin-bottom: 10px;
  font-size: 19px;
}

.form-box {
  padding: 50px 0;
  background-color: whitesmoke;
}
.form-box .container {
  max-width: 1200px;
}
.form-box .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 50px;
  margin-top: 50px;
}
.form-box .grid .form input, .form-box .grid .form textarea {
  width: 100%;
  padding: 10px;
  margin: 5px 0 20px;
  border-radius: 10px;
  border: 1px solid lightgrey;
}
.form-box .grid .form textarea {
  resize: vertical;
}
.form-box .grid .form label {
  margin-left: 5px;
}
.form-box .grid .form .form-input-wrapper {
  display: flex;
  align-items: start;
}
.form-box .grid .form .form-input-wrapper #privacy {
  width: fit-content;
  margin: 5px 5px 0 0;
}
.form-box .grid .form .button {
  margin-top: 30px;
  padding: 10px 30px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(84.56deg, #384259 12.23%, #21aefc 94.22%);
  color: white;
}
.form-box .grid .company-data {
  height: fit-content;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 4px 4px 10px 1px rgba(0, 0, 0, 0.1);
  background-color: white;
}
.form-box .grid .company-data .img-frame {
  margin-bottom: 20px;
}
.form-box .grid .company-data .img-frame img {
  border-radius: 10px;
}
.form-box .grid .company-data h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
  font-weight: normal;
}
.form-box .grid .company-data h3 svg {
  margin-bottom: 3px;
}
.form-box .grid .company-data p {
  margin: 20px 0 0;
  font-size: 14px;
}

.header-offer .path {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 15px 0;
}
.header-offer .path a {
  height: 100%;
  width: fit-content;
  display: flex;
  align-items: center;
  font-size: 14px;
  color: grey;
}
.header-offer .path span {
  font-size: 19px;
}
.header-offer .path .page-title {
  font-size: 14px;
  color: grey;
}
.header-offer .content-wrapper {
  background-color: #384259;
}
.header-offer .content-wrapper .content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 50px;
  padding: 60px 0;
}
.header-offer .content-wrapper .content .txt h1 {
  margin-top: 0;
  font-size: 48px;
  color: white;
}
.header-offer .content-wrapper .content .txt h4 {
  font-size: 19px;
  font-weight: normal;
  color: white;
}
.header-offer .content-wrapper .content .txt .actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 50px;
}
.header-offer .content-wrapper .content .image {
  position: relative;
}
.header-offer .content-wrapper .content .image img {
  height: calc(100% + 100px);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.header-offer .bottom-bar {
  padding: 20px 0;
  background-color: white;
}

.thanks-page {
  padding: 100px 0;
}
.thanks-page .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.error-page {
  padding: 80px 0;
  background-color: whitesmoke;
}
.error-page .error-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 4px 4px 10px 1px rgba(0, 0, 0, 0.1);
  background-color: white;
}
.error-page .error-content h1 {
  font-size: 78px;
  margin: 10px 0 0 0;
}
.error-page .error-content h3 {
  font-size: 24px;
}
.error-page .error-content a {
  margin-top: 40px;
}

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