/*:root {
    --primary-color: #000000;
    --secondary-color: #ffffff;
    --paragraph-color: #555555;
    --menu-color: #484848;
    --highlight-color: #35a0e3;
    --highlight-light-color: #eaf5fc;
    --background-color: #ffffff;
    --background-secondary-color: #e1f3ff;
    --section-preTitle-background-color: #f4f4f4;
    --section2-preTitle-background2-color: #ffffff;
    --section-preTitle-color: #575656;
    --services-boxes-color: #f1f8fd;
    --news-date-color: #ababab;
    --border-color: #e9e8e8;
    --news-border-color: #eaecf0;
    --socials-icon-color: #343434;
    --footer-icon-color: #808080;
    --copyright-color: #a2a2a2;
    --table-color: #f8f9fa;
    --table-header-color: #56595e;
    --border-radius: 10px;
    --input-radius: 5px;
    --font: 'Outfit', sans-serif;
    --button-radius: 25px;
    --banner-background: url("../img/section-banner-background.png");
    --footer-background: url("../img/section-footer-background.png");
    --header-background: url("../img/section-subBanner-background.png");
    --foter-radius: 20px;
}
*/
* {
  font-family: var(--font);
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

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

body {
  overflow-x: hidden;
}

body {
  background-color: var(--background-color);
}

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

a:hover {
  text-decoration: underline;
  color: var(--link-color);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--primary-color);
}

p, ul, ol {
  color: var(--paragraph-color);
}

input, textarea {
  outline: none;
  box-shadow: none;
}

.navbar-toggler {
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}

.owl-carousel .owl-nav button {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}

@keyframes shake {
  0% {
    transform: rotateZ(0);
  }
  10% {
    transform: rotateZ(-30deg);
  }
  20% {
    transform: rotateZ(15deg);
  }
  30% {
    transform: rotateZ(-10deg);
  }
  40% {
    transform: rotateZ(7.5deg);
  }
  50% {
    transform: rotateZ(-6deg);
  }
  60% {
    transform: rotateZ(5deg);
  }
  70% {
    transform: rotateZ(-4.2857142857deg);
  }
  80% {
    transform: rotateZ(3.75deg);
  }
  90% {
    transform: rotateZ(-3.3333333333deg);
  }
  100% {
    transform: rotateZ(0);
  }
}
.header {
  background-color: var(--background-color);
}
.header-message {
  position: relative;
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 5rem 1rem 2rem;
}
@media (max-width: 993px) {
  .header-message {
    padding: 1rem 2rem 1rem 2rem;
  }
}
.header-message-content {
  width: fit-content;
  width: -moz-fit-content;
  margin: 0 auto;
  background-image: url("../img/icon-info-grey.png");
  background-repeat: no-repeat;
  background-position: left center;
  padding-left: 2.25rem;
}
.header-message-content p {
  margin-bottom: 0;
  font-size: 17px;
  color: var(--paragraph-color);
}
@media (max-width: 993px) {
  .header-message-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .header-message-content {
    background-position: center top;
    padding-left: 0;
    padding-top: 2rem;
    text-align: center;
  }
}
.header-message-close {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 2rem;
  border: 1px solid var(--border-color);
  padding: 0.25rem;
  border-radius: 50%;
  transition-duration: 0.15s;
}
.header-message-close svg, .header-message-close path {
  transition-duration: 0.15s;
  fill: var(--border-color);
}
.header-message-close:hover {
  border-color: var(--highlight-color);
}
.header-message-close:hover svg, .header-message-close:hover path {
  fill: var(--highlight-color);
}
@media (max-width: 993px) {
  .header-message-close {
    position: unset;
    width: fit-content;
    width: -moz-fit-content;
    transform: none;
    margin-top: 0.4rem;
  }
}
@media (max-width: 993px) {
  .header-logo {
    margin-left: 1rem;
    max-width: 50%;
  }
  .header-logo img {
    margin-right: 1rem;
  }
  .header .navbar-toggler {
    margin-right: 0.8rem;
  }
}
.header-nav {
  padding: 1.5rem 0;
}
@media (max-width: 1200px) {
  .header-nav {
    flex-wrap: wrap;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media (max-width: 993px) {
  .header-nav {
    justify-content: space-between;
    padding: 1.5rem 0 1rem;
  }
}
.header #nav {
  margin-left: 5rem;
}
@media (max-width: 1600px) {
  .header #nav {
    margin-left: 0;
  }
}
.header #nav .navbar-nav {
  margin: 0 0 0 auto;
  flex-wrap: wrap;
}
@media (max-width: 1200px) {
  .header #nav .navbar-nav {
    margin: 0 auto;
  }
}
@media (max-width: 993px) {
  .header #nav .navbar-nav > .nav-item {
    border-top: 1px solid var(--border-color);
  }
  .header #nav .navbar-nav .dropdown-hover > a {
    display: flex;
  }
  .header #nav .navbar-nav .dropdown-hover > a::after {
    margin-left: auto;
  }
}
.header #nav .nav-item.dropdown-hover > a::after {
  background-image: url("../img/arrow-dropdown-black.png");
  background-repeat: no-repeat;
  background-position: right center;
  content: "";
  padding-left: 1.25rem;
}
.header #nav .nav-item .dropdown-hover {
  position: relative;
}
.header #nav .nav-item .dropdown-hover-menu {
  position: absolute;
  display: none;
  z-index: 1000;
  margin-left: 1rem;
  padding-top: 0.5rem;
}
@media (max-width: 993px) {
  .header #nav .nav-item .dropdown-hover-menu {
    margin-left: 0;
    margin-bottom: 0.65rem;
    padding-top: 0.65rem;
    border-top: 1px solid var(--border-color);
  }
}
.header #nav .nav-item .dropdown-hover-menu > div {
  padding: 1.5rem 1.75rem;
  background-color: var(--background-color);
  border: 1px solid var(--news-border-color);
  border-radius: var(--border-radius);
}
@media (max-width: 993px) {
  .header #nav .nav-item .dropdown-hover-menu > div {
    padding: 0 1rem;
    border: 0;
  }
  .header #nav .nav-item .dropdown-hover-menu > div svg {
    display: none;
  }
}
@media (max-width: 993px) {
  .header #nav .nav-item .dropdown-hover-menu {
    position: unset;
    text-align: center;
  }
}
.header #nav .nav-item .dropdown-hover-item {
  color: var(--primary-color);
  transition-duration: 0.15s;
  font-size: 15px;
  line-height: 30px;
  letter-spacing: 0.025rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  min-width: 275px;
}
.header #nav .nav-item .dropdown-hover-item svg {
  fill: var(--highlight-color);
  margin-right: 0.75rem;
}
.header #nav .nav-item .dropdown-hover-item svg path {
  fill: var(--highlight-color);
}
.header #nav .nav-item .dropdown-hover-item:hover {
  color: var(--highlight-color);
  text-decoration: none;
}
@media (max-width: 993px) {
  .header #nav .nav-item .dropdown-hover-item {
    line-height: 30px;
    font-weight: 400;
    min-width: unset;
  }
}
.header #nav .nav-item .nav-link {
  color: var(--menu-color);
  font-size: 17px;
  font-weight: 600;
  padding: 0.75rem 1.125rem;
  text-decoration: none;
  position: relative;
}
@media (max-width: 993px) {
  .header #nav .nav-item .nav-link {
    margin-right: 0;
    padding: 0.65rem 1rem;
    font-size: 15px;
  }
}
.header #nav .nav-item .nav-link::before {
  content: "";
  width: calc(100% - 1.5rem);
  height: 3px;
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.25rem;
  background: var(--highlight-color);
  transition: 0.5s transform ease;
  transform: scale3d(0, 1, 1);
  transform-origin: 0 50%;
}
@media (min-width: 993px) {
  .header #nav .nav-item .nav-link:hover::before {
    transform: scale3d(1, 1, 1);
  }
}
.header #nav .nav-item.active .nav-link, .header #nav .nav-item .nav-link:hover {
  color: var(--highlight-color);
}
@media (max-width: 768px) {
  .header #nav .nav-item {
    width: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 1200px) {
  .header #nav {
    padding-left: 0rem;
    padding: 0.75rem 0;
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 993px) {
  .header #nav {
    padding: 1.25rem 0 0.5rem;
  }
}
.header-contact {
  margin-left: 7.5rem;
  flex-shrink: 0;
  margin-right: -0.5rem;
}
@media (max-width: 1600px) {
  .header-contact {
    margin-left: 1.5rem;
  }
}
@media (max-width: 1200px) {
  .header-contact {
    margin-left: 0;
  }
}
.header-contact a {
  display: flex;
  justify-content: center;
  padding: 0.25rem 0.5rem;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 17px;
  border-radius: var(--border-radius);
  transition: color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
@media (max-width: 993px) {
  .header-contact a {
    margin: 1.5rem 0 0 0;
    padding: 0;
  }
}
@media (min-width: 993px) {
  .header-contact a:hover {
    color: #fff;
    box-shadow: inset 200px 0 0 0 var(--highlight-color);
    text-decoration: none;
  }
  .header-contact a:hover svg path {
    fill: var(--background-color);
  }
}
.header-contact a svg {
  margin-right: 0.5rem;
}
.header-contact a svg path {
  fill: var(--highlight-color);
}
.header .navbar-toggler {
  padding-right: 0;
  padding-top: 0;
  margin-top: -0.25rem;
}
.header .animated-icon {
  width: 30px;
  height: 20px;
  position: relative;
  margin: 0px;
  transform: rotate(0deg);
  cursor: pointer;
  transition: 0.5s ease-in-out;
}
.header .animated-icon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
  background: var(--highlight-color);
}
.header .animated-icon span:nth-child(1) {
  top: 0px;
}
.header .animated-icon span:nth-child(2) {
  top: 10px;
}
.header .animated-icon span:nth-child(3) {
  top: 20px;
}
.header .animated-icon.open span:nth-child(1) {
  top: 11px;
  transform: rotate(135deg);
}
.header .animated-icon.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}
.header .animated-icon.open span:nth-child(3) {
  top: 11px;
  transform: rotate(-135deg);
}

.button-white {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: var(--button-radius);
  border: 2px solid var(--secondary-color);
  color: var(--secondary-color);
  background-color: transparent;
  font-size: 16px;
  font-weight: 500;
  transition: 0.25s;
  padding: 0.7rem 1.5rem;
  width: fit-content;
  width: -moz-fit-content;
}
.button-white svg {
  margin-left: 1rem;
}
.button-white svg path {
  fill: var(--secondary-color);
}
.button-white:hover {
  background-color: var(--secondary-color);
  color: var(--button-color);
  text-decoration: none;
  box-shadow: inset 10em 0 0 0 var(--secondary-color);
}
.button-white:hover svg, .button-white:hover path {
  fill: var(--button-color) !important;
}

.button-highlighted {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: var(--button-radius);
  border: 2px solid var(--button-color);
  color: var(--secondary-color);
  background-color: var(--button-color);
  font-size: 16px;
  font-weight: 500;
  transition: 0.25s;
  padding: 0.7rem 1.5rem;
  width: fit-content;
  width: -moz-fit-content;
}
.button-highlighted svg {
  margin-left: 1rem;
}
.button-highlighted svg path {
  fill: var(--secondary-color);
}
.button-highlighted:hover {
  background-color: var(--secondary-color);
  color: var(--button-color);
  text-decoration: none;
  box-shadow: inset 10em 0 0 0 var(--secondary-color);
}
.button-highlighted:hover svg, .button-highlighted:hover path {
  fill: var(--button-color) !important;
}

.banner {
  background-image: var(--banner-background);
  background-repeat: no-repeat;
  background-size: cover;
  height: 600px;
  margin-bottom: 7rem;
}
@media (max-width: 1600px) {
  .banner {
    height: 550px;
    margin-bottom: 6rem;
  }
}
@media (max-width: 1200px) {
  .banner {
    height: auto;
    margin-bottom: 0;
  }
}
.banner-text {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 8.5rem;
  padding-bottom: 4rem;
}
@media (max-width: 1600px) {
  .banner-text {
    padding-top: 6.5rem;
  }
}
@media (max-width: 993px) {
  .banner-text {
    padding-top: 2.5rem;
    padding-bottom: 3.5rem;
  }
}
@media (max-width: 768px) {
  .banner-text {
    text-align: center;
  }
}
.banner-text h1 {
  color: var(--secondary-color);
  font-size: 60px;
  line-height: 65px;
  margin-bottom: 1.5rem;
  letter-spacing: -0.025rem;
  max-width: 80%;
}
@media (max-width: 1600px) {
  .banner-text h1 {
    max-width: 100%;
  }
}
@media (max-width: 1200px) {
  .banner-text h1 {
    font-size: 50px;
    line-height: 55px;
  }
}
@media (max-width: 576px) {
  .banner-text h1 {
    font-size: 45px;
    line-height: 50px;
  }
}
.banner-text p {
  font-size: 21px;
  line-height: 30px;
  color: var(--secondary-color);
  margin-bottom: 2.5rem;
  max-width: 70%;
}
@media (max-width: 1600px) {
  .banner-text p {
    max-width: 100%;
  }
}
@media (max-width: 1200px) {
  .banner-text p {
    font-size: 19px;
    line-height: 28px;
  }
}
@media (max-width: 576px) {
  .banner-text p {
    margin-bottom: 1.5rem;
  }
}
.banner-images {
  margin-top: 4rem;
}
@media (max-width: 1200px) {
  .banner-images {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 993px) {
  .banner-images {
    margin-top: 0;
    margin-bottom: 0;
  }
}
.banner-images-item {
  height: 650px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-top: -1px;
  border-radius: 15px 0 0 15px;
}
@media (max-width: 1600px) {
  .banner-images-item {
    height: 575px;
  }
}
@media (max-width: 1200px) {
  .banner-images-item {
    height: 500px;
  }
}
@media (max-width: 993px) {
  .banner-images-item {
    height: 350px;
    border-radius: 0 0 15px 15px;
  }
}
.banner-homepage {
  position: relative;
}
.banner-homepage .owl-dots {
  margin: 0;
  position: absolute;
  bottom: 60px;
  z-index: 999;
  left: -12%;
  transform: translateX(-50%);
}
@media (max-width: 1600px) {
  .banner-homepage .owl-dots {
    bottom: 40px;
  }
}
@media (max-width: 1200px) {
  .banner-homepage .owl-dots {
    display: none;
  }
}
.banner-homepage .owl-dots button span {
  background-color: var(--section-preTitle-background-color) !important;
  margin: 5px 5px !important;
}
.banner-homepage .owl-dots button.active span {
  background-color: var(--highlight-color) !important;
}
.banner-homepage .owl-nav {
  margin: 0;
  position: absolute;
  bottom: 180px;
  z-index: 999;
  left: -12%;
  transform: translateX(-50%);
}
@media (max-width: 1600px) {
  .banner-homepage .owl-nav {
    bottom: 140px;
  }
}
@media (max-width: 1200px) {
  .banner-homepage .owl-nav {
    bottom: 20px;
    left: -14%;
  }
}
@media (max-width: 993px) {
  .banner-homepage .owl-nav {
    bottom: 25px;
    left: 50%;
  }
}
.banner-homepage .owl-nav button {
  margin: 0 !important;
}
.banner-homepage .owl-nav .owl-prev {
  margin-right: 0.5rem !important;
}
.banner-homepage .owl-nav .owl-prev img {
  transform: rotate(180deg);
}

.banner-subpage {
  background-image: var(--header-background);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 7rem 0 4rem;
}
.banner-subpage h1 {
  color: var(--secondary-color);
  font-size: 60px;
  margin-bottom: 2rem;
}
@media (max-width: 993px) {
  .banner-subpage h1 {
    margin-bottom: 0rem;
  }
}
@media (max-width: 576px) {
  .banner-subpage h1 {
    font-size: 45px;
    line-height: 50px;
  }
}
@media (max-width: 993px) {
  .banner-subpage {
    padding: 5rem 0;
  }
}
@media (max-width: 576px) {
  .banner-subpage {
    padding: 3rem 0;
  }
}
@media (max-width: 768px) {
  .banner-subpage {
    text-align: center;
  }
}

.services {
  margin-bottom: -1.4rem;
  padding-bottom: 3rem !important;
}
.services-box {
  margin-bottom: 1.4rem;
  background-color: var(--services-boxes-color);
  padding: 4rem 3.5rem 3.5rem;
  border-radius: var(--border-radius);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  height: calc(100% - 1.4rem);
}
.services-box:hover .services-box-icon svg, .services-box:hover .services-box-icon img {
  animation: shake 1300ms;
}
@media (max-width: 993px) {
  .services-box {
    padding: 4rem 3.5rem;
  }
}
@media (max-width: 768px) {
  .services-box {
    padding: 3rem 2.5rem;
  }
}
@media (max-width: 576px) {
  .services-box {
    padding: 3rem 2rem;
  }
}
.services-box-icon svg, .services-box-icon img {
  margin: 0 auto;
  max-height: 68px;
}
.services-box-title {
  font-size: 25px;
  color: var(--primary-color);
  font-weight: 600;
  display: block;
  text-align: center;
  margin: 1.75rem 0 1.25rem;
  transition: 0.15s;
}
.services-box-title:hover {
  color: var(--highlight-color);
  text-decoration: none;
}
@media (max-width: 1200px) {
  .services-box-title {
    margin: 1.75rem 0 1.25rem;
  }
}
.services-box-desc {
  color: var(--paragraph-color);
  font-size: 17px;
  line-height: 30px;
  margin-bottom: 1rem;
  text-align: center;
}
.services-box-more {
  color: var(--highlight-color) !important;
  font-size: 17px;
  line-height: 30px;
  font-weight: 600;
  display: flex;
  align-items: center;
}
.services-box-more:hover {
  text-decoration: none;
}
.services-box-more:hover svg {
  margin-left: 0.75rem;
}
.services-box-more svg {
  transition: 0.25s;
  margin-left: 0.5rem;
}
@media (min-width: 1600px) {
  .services .row {
    margin: 0 -25px;
  }
  .services .row > div {
    padding: 0 25px;
  }
}
@media (max-width: 768px) {
  .services {
    padding-bottom: 1.5rem !important;
    margin-bottom: -0.88rem;
  }
  .services .row {
    margin-left: -7px;
    margin-right: -7px;
  }
  .services .row > div {
    padding-left: 7px;
    padding-right: 7px;
  }
  .services-box {
    height: calc(100% - 0.88rem);
    margin-bottom: 0.88rem;
  }
}

.section {
  padding: 2rem 0 2rem;
}
@media (max-width: 768px) {
  .section {
    padding: 0 0 0;
  }
}
.section-secondary {
  background-color: var(--background-secondary-color);
}
.section-header-center > div {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-preTitle {
  background-color: var(--section-preTitle-background-color);
  color: var(--section-preTitle-color);
  text-transform: uppercase;
  font-size: 13px;
  border-radius: 5px;
  padding: 0.3rem 0.95rem;
  width: fit-content;
  width: -moz-fit-content;
  margin-bottom: 1rem;
  font-weight: 600;
}
@media (max-width: 768px) {
  .section-preTitle {
    margin: 0 auto 0.75rem;
  }
}
@media (max-width: 768px) {
  .section-title {
    width: 100%;
  }
}
.section-title-center {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.section-title h3, .section-title h2 {
  font-size: 40px;
  letter-spacing: -0.025rem;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
}
@media (max-width: 768px) {
  .section-title h3, .section-title h2 {
    text-align: center;
    margin-bottom: 1.75rem !important;
  }
}
.section-footer {
  margin-top: 3.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 993px) {
  .section-footer {
    margin-top: 2.5rem;
  }
}
@media (max-width: 768px) {
  .section-footer {
    margin-top: 2rem;
  }
}
.section-block {
  padding: 5rem 0 5rem;
}
@media (max-width: 768px) {
  .section-block {
    padding: 3.5rem 0 3.5rem;
  }
}
.section-block .section-preTitle {
  margin-bottom: 1.75rem !important;
}
@media (max-width: 768px) {
  .section-block .section-preTitle {
    margin-bottom: 1.25rem !important;
  }
}
.section-block-textimage:not(.onephoto) {
  margin-bottom: 3.5rem;
}
.section-block-textimage .owl-stage-outer {
  border-radius: var(--border-radius);
}
.section-block-textimage .owl-stage {
  display: flex;
}
.section-block-textimage .owl-item {
  background-color: var(--section-preTitle-background-color);
  border-radius: var(--border-radius);
  flex: 1 0 auto;
}
.section-block-textimage .owl-item > div {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.section-block-textimage .owl-item img {
  height: 480px;
  max-width: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: var(--border-radius);
}
@media (max-width: 576px) {
  .section-block-textimage .owl-item img {
    height: 300px;
  }
}
.section-block-textimage .owl-dots {
  position: absolute;
  bottom: -3.5rem;
  left: 50%;
  transform: translateX(-50%);
}
.section-block-textimage .owl-dots button span {
  background-color: var(--section-preTitle-background-color) !important;
  margin: 5px 5px !important;
}
.section-block-textimage .owl-dots button.active span {
  background-color: var(--highlight-color) !important;
}
.section-block-textimage .owl-nav {
  position: absolute;
  bottom: -4.25rem;
  right: 0;
  display: flex;
  margin-top: 0 !important;
}
.section-block-textimage .owl-nav button {
  border: 1px solid var(--border-color) !important;
  width: 44px;
  height: 44px;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition-duration: 0.15s;
}
.section-block-textimage .owl-nav button:hover {
  background-color: var(--border-color) !important;
}
.section-block-textimage .owl-nav .owl-prev img {
  transform: rotate(90deg);
}
.section-block-textimage .owl-nav .owl-next img {
  transform: rotate(-90deg);
}
.section-block-textimage-left .owl-nav {
  right: unset;
  left: 0;
}
.section-block-textimage-nosliderimages {
  margin-bottom: -1.4rem;
}
.section-block-textimage-nosliderimages .row > div {
  margin-bottom: 1.4rem;
}
.section-block-textimage-nosliderimages .col-12 img {
  height: 480px;
}
.section-block-textimage-nosliderimages .col-6 img {
  height: 230px;
}
@media (max-width: 768px) {
  .section-block-textimage-nosliderimages {
    margin-bottom: -0.88rem;
  }
  .section-block-textimage-nosliderimages .row {
    margin-left: -7px;
    margin-right: -7px;
  }
  .section-block-textimage-nosliderimages .row > div {
    padding-left: 7px;
    padding-right: 7px;
  }
  .section-block-textimage-nosliderimages .row > div {
    margin-bottom: 0.88rem;
  }
}
.section-block-gallery {
  margin-bottom: -1.4rem;
  /*
  .row > div {
      margin-bottom: 1.4rem;
      div {
          display: block;
          height: 100%;
          & > a {
              @include flexCenter();
              height: 100%;
              img {
                  border-radius: var(--border-radius);
                  object-fit: cover;
              }
          }
      }
  }
  */
}
.section-block-gallery .owl-stage-outer {
  border-radius: var(--border-radius);
}
.section-block-gallery-image {
  border-radius: var(--border-radius);
}
.section-block-gallery-item {
  border-radius: var(--border-radius);
  background-color: var(--section-preTitle-background-color);
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-block-gallery .owl-nav {
  margin-top: 0;
}
.section-block-gallery .owl-nav button {
  border: 1px solid var(--border-color) !important;
  height: 44px;
  width: 44px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 50% !important;
  transition-duration: 0.15s;
  margin: 0 !important;
}
.section-block-gallery .owl-nav button:hover {
  background-color: var(--border-color) !important;
}
.section-block-gallery .owl-nav button.owl-prev {
  left: -60px;
}
.section-block-gallery .owl-nav button.owl-prev img {
  transform: rotate(90deg);
}
.section-block-gallery .owl-nav button.owl-next {
  right: -60px;
}
.section-block-gallery .owl-nav button.owl-next img {
  transform: rotate(-90deg);
}
@media (max-width: 1200px) {
  .section-block-gallery .owl-nav button {
    position: unset;
    display: inline-flex !important;
    transform: none;
    margin: 1rem 0.125rem 0 !important;
  }
}
@media (min-width: 1200px) {
  .section-block-gallery .col-xl-4 img {
    height: 335px;
  }
  .section-block-gallery .col-xl-3 img {
    height: 245px;
  }
  .section-block-gallery .col-xl-2 img {
    height: 190px;
  }
}
@media (min-width: 1200px) {
  .section-block-gallery .owl-item img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .section-block-gallery .col-xl-2 {
    width: 20%;
  }
}
@media (max-width: 768px) {
  .section-block-gallery {
    margin-bottom: -0.88rem;
  }
  .section-block-gallery .row {
    margin-left: -7px;
    margin-right: -7px;
  }
  .section-block-gallery .row > div {
    padding-left: 7px;
    padding-right: 7px;
  }
  .section-block-gallery .row > div {
    margin-bottom: 0.88rem;
  }
}
.section-block-gallery2-image {
  border-radius: var(--border-radius);
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-block-gallery2 .row > div {
  margin-bottom: 1.4rem;
}
@media (max-width: 993px) {
  .section-block-gallery2 .row > div {
    max-width: 100% !important;
  }
}
.section-block-gallery2 .row > div div {
  display: block;
  height: 100%;
  border-radius: var(--border-radius);
  background-color: var(--section-preTitle-background-color);
}
.section-block-gallery2 .row > div div > a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.section-block-gallery2 .row > div div > a img {
  border-radius: var(--border-radius);
  aspect-ratio: 1/1;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 993px) {
  .section-block-gallery2 .row > div div > a img {
    height: 250px;
  }
}
@media (max-width: 768px) {
  .section-block-gallery2 .row > div div > a img {
    height: 200px;
  }
}
@media (max-width: 576px) {
  .section-block-gallery2 .row > div div > a img {
    height: 175px;
  }
}
@media (max-width: 768px) {
  .section-block-gallery2 {
    margin-bottom: -0.88rem;
  }
  .section-block-gallery2 .row {
    margin-left: -7px;
    margin-right: -7px;
  }
  .section-block-gallery2 .row > div {
    padding-left: 7px;
    padding-right: 7px;
  }
  .section-block-gallery2 .row > div {
    margin-bottom: 0.88rem;
  }
}
.section-block-download-iconFile {
  background-color: var(--highlight-light-color);
  border-radius: 50%;
  width: 43px;
  height: 43px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 0.75rem;
  transition-duration: 0.15s;
}
@media (max-width: 768px) {
  .section-block-download-iconFile {
    margin-right: 0;
    margin-bottom: 0.125rem;
  }
}
.section-block-download-item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.section-block-download-item:not(:last-child) {
  margin-bottom: 0.5rem;
}
@media (max-width: 768px) {
  .section-block-download-item:not(:last-child) {
    margin-bottom: 1.25rem;
  }
}
@media (max-width: 768px) {
  .section-block-download-item {
    flex-direction: column;
    justify-content: center;
  }
}
.section-block-download-item:hover .section-block-download-iconFile {
  background-color: var(--highlight-color);
}
.section-block-download-item:hover .section-block-download-iconFile svg, .section-block-download-item:hover .section-block-download-iconFile path {
  fill: var(--secondary-color);
}
.section-block-download-name {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.section-block-download-name p {
  color: var(--primary-color);
  font-size: 18px;
  line-height: 33px;
  margin-bottom: 0;
}
.section-block-download-name:hover {
  text-decoration: none;
}
@media (max-width: 768px) {
  .section-block-download-name {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}
.section-block-download-iconDownload {
  margin-left: 0.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .section-block-download-iconDownload {
    margin-left: 0;
  }
}
.section-block-download-iconDownload span {
  padding-left: 0.5rem;
  color: var(--highlight-color);
  font-size: 18px;
  line-height: 33px;
  font-weight: 500;
  transition-duration: 0.15s;
}
.section-block-download-iconDownload span:hover {
  text-decoration: underline;
}
.section-block-partners {
  margin-bottom: -1.4rem;
}
.section-block-partners-item {
  box-shadow: 0px 0px 25px 5px rgba(0, 0, 0, 0.03);
  margin-bottom: 1.4rem;
  width: 100%;
  height: calc(100% - 1.4rem);
}
.section-block-partners-item a {
  background-color: var(--background-color);
  padding: 2rem;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  height: 100%;
  padding: 1.5rem;
}
.section-block-partners-item a img {
  max-height: 100px;
  -o-object-fit: scale-down;
     object-fit: scale-down;
  transition-duration: 0.3s;
  filter: grayscale(1);
}
.section-block-partners-item a:hover {
  box-shadow: inset 250px 0 0 0 var(--border-color);
}
.section-block-partners-item a:hover img {
  filter: grayscale(0);
}
@media (max-width: 768px) {
  .section-block-partners {
    margin-bottom: -0.88rem;
  }
  .section-block-partners .row {
    margin-left: -7px;
    margin-right: -7px;
  }
  .section-block-partners .row > div {
    padding-left: 7px;
    padding-right: 7px;
  }
  .section-block-partners-item {
    height: calc(100% - 0.88rem);
    margin-bottom: 0.88rem;
  }
}
@media (max-width: 1200px) {
  .section-block-contact .footer-icons-box {
    margin-bottom: 1.5rem;
  }
}
.section-block-contact-image {
  max-height: 480px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: var(--border-radius);
}
@media (max-width: 576px) {
  .section-block-contact-image {
    max-height: 300px;
  }
}
.section-block-dropdowns-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem 1.2rem 2rem;
}
@media (max-width: 768px) {
  .section-block-dropdowns-header {
    padding: 1.2rem 1.5rem 1.2rem 1.5rem;
  }
}
.section-block-dropdowns-header:hover {
  text-decoration: none;
}
.section-block-dropdowns-header:hover h4 {
  color: var(--highlight-color);
}
.section-block-dropdowns-header h4 {
  color: var(--primary-color);
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  margin-bottom: 0;
  transition-duration: 0.15s;
}
.section-block-dropdowns-header-icon {
  background-color: var(--highlight-light-color);
  height: 43px;
  width: 43px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-left: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-block-dropdowns-header-icon svg {
  transition-duration: 0.1s;
}
.section-block-dropdowns-body {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: opacity 100ms linear, max-height 100ms linear;
  will-change: opacity, max-height;
}
.section-block-dropdowns-body-content {
  padding: 0 2rem 2.25rem;
}
.section-block-dropdowns-body-content > div > *:last-child {
  margin-bottom: 0;
}
.section-block-dropdowns-item {
  box-shadow: 0px 0px 25px 5px rgba(0, 0, 0, 0.03);
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  background-color: var(--background-color);
  margin-top: 0.44rem;
  margin-bottom: 0.44rem;
}
.section-block-dropdowns-item.active .section-block-dropdowns-body {
  opacity: 1;
  max-height: 100%;
}
.section-block-dropdowns-item.active .section-block-dropdowns-header-icon svg {
  transform: rotate(180deg);
}
.section-block-services {
  margin-bottom: -24px;
}
.section-block-services .owl-nav {
  margin-top: 0;
}
.section-block-services .owl-nav button {
  border: 1px solid var(--border-color) !important;
  height: 44px;
  width: 44px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 50% !important;
  transition-duration: 0.15s;
  margin: 0 !important;
}
.section-block-services .owl-nav button:hover {
  background-color: var(--border-color) !important;
}
.section-block-services .owl-nav button.owl-prev {
  left: -60px;
}
.section-block-services .owl-nav button.owl-prev img {
  transform: rotate(90deg);
}
.section-block-services .owl-nav button.owl-next {
  right: -60px;
}
.section-block-services .owl-nav button.owl-next img {
  transform: rotate(-90deg);
}
@media (max-width: 1200px) {
  .section-block-services .owl-nav {
    display: none !important;
  }
}
.section-block-team {
  margin-bottom: -1.4rem;
}
.section-block-team-image {
  width: 155px;
  height: 155px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
}
.section-block-team-image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.section-block-team-item {
  box-shadow: 0px 0px 25px 5px rgba(0, 0, 0, 0.03);
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  height: calc(100% - 1.4rem);
  margin-bottom: 1.4rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 3rem 2rem 3rem;
}
.section-block-team-item-column {
  flex-direction: row;
}
.section-block-team-item-column .section-block-team-image {
  margin-bottom: 0;
}
.section-block-team-item-column .section-block-team-body {
  margin-left: 2.5rem;
}
@media (max-width: 768px) {
  .section-block-team-item-column {
    flex-direction: column;
  }
  .section-block-team-item-column .section-block-team-image {
    margin-bottom: 1.5rem;
  }
  .section-block-team-item-column .section-block-team-body {
    margin-left: 0;
  }
}
.section-block-team-body {
  text-align: center;
}
.section-block-team-body h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.section-block-team-body p {
  font-size: 17px;
  line-height: 30px;
  margin-bottom: 0;
}
.section-block-team-name {
  margin-bottom: 0.5rem;
}
.section-block-team-phone {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 700;
  display: block;
  margin-bottom: 0.125rem;
}
.section-block-team-phone:hover {
  text-decoration: none;
}
.section-block-team-email {
  color: var(--highlight-color);
  font-size: 18px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .section-block-team {
    margin-bottom: -0.88rem;
  }
  .section-block-team .row {
    margin-left: -7px;
    margin-right: -7px;
  }
  .section-block-team .row > div {
    padding-left: 7px;
    padding-right: 7px;
  }
  .section-block-team-item {
    height: calc(100% - 0.88rem);
    margin-bottom: 0.88rem;
  }
}
.section-block-team-carousel .owl-stage {
  margin: 0 auto;
  display: flex;
}
.section-block-team-carousel .owl-stage .owl-item {
  flex: 1 0 auto;
}
.section-block-team-carousel .owl-nav {
  margin-top: 0;
}
.section-block-team-carousel .owl-nav button {
  border: 1px solid var(--border-color) !important;
  height: 44px;
  width: 44px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 50% !important;
  transition-duration: 0.15s;
  margin: 0 !important;
}
.section-block-team-carousel .owl-nav button:hover {
  background-color: var(--border-color) !important;
}
.section-block-team-carousel .owl-nav button.owl-prev {
  left: -60px;
}
.section-block-team-carousel .owl-nav button.owl-prev img {
  transform: rotate(90deg);
}
.section-block-team-carousel .owl-nav button.owl-next {
  right: -60px;
}
.section-block-team-carousel .owl-nav button.owl-next img {
  transform: rotate(-90deg);
}
@media (max-width: 1200px) {
  .section-block-team-carousel .owl-nav {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .section-block-numbers {
    margin-bottom: -0.88rem;
  }
  .section-block-numbers .row {
    margin-left: -7px;
    margin-right: -7px;
  }
  .section-block-numbers .row > div {
    padding-left: 7px;
    padding-right: 7px;
  }
  .section-block-numbers-col {
    height: calc(100% - 0.88rem);
    margin-bottom: 0.88rem;
  }
}
@media (max-width: 1200px) {
  .section-block-form .footer-icons-box {
    margin-bottom: 1.5rem;
  }
}
.section-block-map {
  box-shadow: 0px 0px 25px 5px rgba(0, 0, 0, 0.03);
  padding: 0.75rem;
  border-radius: var(--border-radius);
  background-color: var(--background-color);
}
.section-block-map iframe {
  display: block;
  border-radius: var(--border-radius);
  width: 100%;
  height: 550px;
}
@media (max-width: 993px) {
  .section-block-map iframe {
    height: 375px;
  }
}
@media (max-width: 768px) {
  .section-block-map iframe {
    height: 325px;
  }
}
.section-block-newsDetail-image {
  border-radius: var(--border-radius);
  display: block;
}
@media (max-width: 768px) {
  .section-block-newsDetail-image {
    margin: 0 auto 2rem;
  }
}
.section-block-subpages {
  padding: 1rem;
  box-shadow: 0px 0px 25px 5px rgba(0, 0, 0, 0.03);
  border: 1px solid var(--news-border-color);
  border-radius: var(--border-radius);
  width: fit-content;
  width: -moz-fit-content;
  min-width: 33%;
}
@media (max-width: 993px) {
  .section-block-subpages {
    min-width: unset;
    width: 100%;
  }
}
.section-block-subpages a {
  display: block;
}
.section-block-subpages a:not(:last-child) {
  margin-bottom: 0.5rem;
}

.about h2 {
  margin-bottom: 1.5rem;
}
.about-text {
  max-width: 85%;
}
.about-text p {
  color: var(--paragraph-color);
  font-size: 18px;
  line-height: 33px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .about-text {
    text-align: center;
    max-width: 100%;
  }
}
.about-image {
  background-image: url("../img/section-about-background2.png"), url("../img/section-about-background1.png");
  background-repeat: no-repeat, no-repeat;
  background-position: left bottom, right top;
  background-size: auto, 78%;
  width: fit-content;
  width: -moz-fit-content;
  margin: auto;
  transition: 0.25s;
}
.about-image:hover {
  background-position: left 1rem bottom 1rem, right 1rem top 1rem;
}
.about-image img {
  max-width: 525px;
  display: block;
  margin: 0 auto;
  padding: 2rem;
  border-radius: calc(var(--border-radius) * 4);
}
@media (max-width: 993px) {
  .about-image img {
    margin-top: 3rem;
    max-width: 100%;
  }
}

.numbers {
  margin-bottom: -1.4rem;
}
.numbers-row {
  max-width: 85%;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .numbers-row {
    max-width: 100%;
  }
}
.numbers-col {
  background-color: var(--numbers-number-background);
  padding: 2rem;
  border-radius: var(--border-radius);
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 1.4rem;
  box-shadow: 0px 0px 25px 5px rgba(0, 0, 0, 0.03);
  height: calc(100% - 1.4rem);
}
.numbers-col.bordered {
  border: 1px solid var(--border-color);
}
@media (max-width: 576px) {
  .numbers-col {
    margin-left: auto;
    margin-right: auto;
    max-height: 270px;
    aspect-ratio: unset;
  }
}
.numbers-col-number {
  color: var(--numbers-number-color);
  font-size: 60px;
  line-height: 80px;
  font-weight: 700;
}
.numbers-col-text {
  color: var(--primary-color);
  font-size: 18px;
  line-height: 26px;
  font-weight: 600;
  text-align: center;
}
@media (max-width: 768px) {
  .numbers {
    margin-bottom: -0.88rem;
  }
  .numbers .row {
    margin-left: -7px;
    margin-right: -7px;
  }
  .numbers .row > div {
    padding-left: 7px;
    padding-right: 7px;
  }
  .numbers-col {
    height: calc(100% - 0.88rem);
    margin-bottom: 0.88rem;
  }
}
@media (min-width: 1600px) {
  .numbers .row {
    margin: 0 -25px;
  }
  .numbers .row > div {
    padding: 0 25px;
  }
}

.news {
  background-color: var(--background-color);
}
.news-content {
  margin-bottom: -2.8rem;
}
.news-box {
  background-color: var(--background-color);
  border-radius: var(--border-radius);
  box-shadow: 0px 0px 25px 5px rgba(0, 0, 0, 0.03);
  margin-bottom: 2.8rem;
  height: calc(100% - 2.8rem);
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .news-box {
    text-align: center;
  }
}
.news-header {
  overflow: hidden;
  display: block;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}
.news-img {
  width: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
  height: 275px;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
  transition: transform 0.5s ease;
}
@media (max-width: 576px) {
  .news-img {
    width: 100% !important;
    max-height: 220px;
  }
}
.news-img:hover {
  transform: scale(1.15);
}
.news-body {
  padding: 2rem 2rem 2rem 2rem;
  border: 1px solid var(--news-border-color);
  border-radius: 0 0 var(--border-radius) var(--border-radius);
  flex: 1;
}
.news-body-border {
  border-radius: var(--border-radius);
}
.news-body:not(.news-body-border) {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 1200px) {
  .news-body {
    padding: 2rem 1rem 2rem 1.25rem;
  }
}
@media (max-width: 576px) {
  .news-body {
    max-width: 100%;
  }
}
.news-date {
  font-size: 14px;
  color: var(--news-date-color);
  display: flex;
  line-height: 30px;
  font-weight: 400;
}
@media (max-width: 768px) {
  .news-date {
    justify-content: center;
  }
}
.news-date svg {
  margin-right: 0.5rem;
}
.news-date svg path {
  fill: var(--news-date-color);
}
.news-description {
  font-size: 17px;
  color: var(--paragraph-color);
  line-height: 28px;
  font-weight: 400;
}
.news-title {
  font-size: 22px;
  color: var(--primary-color);
  line-height: 30px;
  font-weight: 700;
  transition: 0.15s;
  margin-bottom: 1rem;
  display: block;
}
.news-title:hover {
  text-decoration: none;
}
@media (min-width: 1600px) {
  .news .row {
    margin: 0 -25px;
  }
  .news .row > div {
    padding: 0 25px;
  }
}
@media (max-width: 768px) {
  .news {
    text-align: center;
  }
  .news .row {
    margin-left: -7px;
    margin-right: -7px;
  }
  .news .row > div {
    padding-left: 7px;
    padding-right: 7px;
  }
  .news-box {
    height: calc(100% - 0.88rem);
    margin-bottom: 0.88rem;
  }
  .news-content {
    margin-bottom: -0.88rem;
  }
}

.footer {
  padding: 5rem 0 0;
  background-image: var(--footer-background);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  position: relative;
}
.footer-content {
  box-shadow: 0px 0px 25px 5px rgba(0, 0, 0, 0.05);
  background-color: var(--background-color);
}
.footer-content::after {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 0;
  background-color: var(--background-color);
  content: "";
  display: block;
  width: 50%;
}
.footer-extended {
  padding: 5rem 0 2.5rem 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 993px) {
  .footer-extended {
    padding: 4rem 0 2.5rem 0;
  }
}
.footer-extended::before {
  position: absolute;
  left: -4rem;
  top: 0;
  bottom: 0;
  z-index: 0;
  background-color: var(--background-color);
  content: "";
  display: block;
  width: 4rem;
  border-radius: var(--foter-radius) 0 0 0;
}
@media (max-width: 993px) {
  .footer-extended::before {
    width: 4rem;
    left: -4rem;
  }
}
@media (max-width: 768px) {
  .footer-extended::before {
    width: 0.75rem;
    left: -0.75rem;
  }
}
@media (max-width: 576px) {
  .footer-extended::before {
    width: 0.35rem;
    left: -0.35rem;
  }
}
@media (min-width: 768px) {
  .footer-icons-right .footer-icons-box {
    flex-direction: row-reverse;
  }
  .footer-icons-right .footer-icons-content {
    text-align: right;
  }
  .footer-icons-right .footer-icons-image {
    margin-right: 0;
    margin-left: 1rem;
  }
}
.footer-icons-box {
  display: flex;
  margin-bottom: 2.5rem;
}
@media (max-width: 768px) {
  .footer-icons-box {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
  }
}
.footer-icons-box:hover .footer-icons-image:not(.noborder) {
  background-color: var(--footer-icon-color);
}
.footer-icons-box:hover .footer-icons-image:not(.noborder) svg path {
  fill: var(--background-color);
}
.footer-icons-image {
  flex-shrink: 0;
  margin-right: 1rem;
  border: 1px solid var(--footer-icon-color);
  border-radius: 50%;
  width: 65px;
  height: 65px;
  transition: all 0.15s cubic-bezier(0, 0, 0, 0.68);
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-icons-image.noborder {
  width: auto;
  height: auto;
  border: 0 !important;
  align-items: flex-start;
}
.footer-icons-image.noborder svg {
  margin-top: 1.25rem;
}
@media (max-width: 768px) {
  .footer-icons-image.noborder svg {
    margin-top: 0;
  }
}
@media (max-width: 768px) {
  .footer-icons-image {
    margin-right: 0;
  }
}
.footer-icons-image svg path {
  fill: var(--footer-icon-color);
}
.footer-icons-title {
  color: var(--paragraph-color);
  font-size: 13px;
  line-height: 22px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.033rem;
}
.footer-icons-content {
  margin-top: 1rem;
}
.footer-icons-content p {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0;
}
.footer-icons-content a {
  color: var(--highlight-color);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .footer-about {
    text-align: center;
  }
}
.footer-about h3 {
  font-size: 31px;
  color: var(--primary-color);
  line-height: 50px;
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.footer-about p {
  font-size: 17px;
  color: var(--paragraph-color);
  line-height: 28px;
  font-weight: 400;
}
@media (max-width: 1200px) {
  .footer {
    padding: 4rem 0 0;
  }
}
@media (max-width: 576px) {
  .footer {
    padding: 2rem 0 0;
  }
}
.footer-socials {
  margin-top: 2rem;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .footer-socials {
    justify-content: center;
  }
}
.footer-socials a {
  border: 1px solid var(--socials-icon-color);
  background-color: var(--socials-icon-color);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  transition: 0.15s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-socials a:not(:last-of-type) {
  margin-right: 0.5rem;
}
.footer-socials a:hover {
  box-shadow: 0px 0px 14px -3px var(--highlight-color);
}
.footer-socials a:hover img {
  animation: shake 1300ms;
}
@media (max-width: 993px) {
  .footer-menu {
    margin-top: 2.5rem;
  }
}
.footer-menu h3 {
  font-size: 18px;
  color: var(--primary-color);
  line-height: 50px;
  font-weight: 700;
  margin-bottom: 1.25rem;
}
@media (max-width: 1200px) {
  .footer-menu h3 {
    line-height: 28px;
    margin-bottom: 0.75rem;
  }
}
@media (max-width: 768px) {
  .footer-menu h3 {
    text-align: center;
  }
}
.footer-menu a {
  font-size: 17px;
  color: var(--paragraph-color);
  line-height: 28px;
  margin-bottom: 0.5rem;
  display: block;
  font-weight: 400;
}
.footer-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 1200px) {
  .footer-menu ul {
    display: flex;
    flex-wrap: wrap;
  }
  .footer-menu ul li:not(:last-child) {
    margin-right: 1.5rem;
  }
}
@media (max-width: 768px) {
  .footer-menu ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .footer-menu ul li {
    margin-right: 0 !important;
  }
}

.copyright {
  border-top: 1px solid var(--border-color);
  padding: 2.5rem 0 0 0;
  margin-top: 6rem;
  text-align: center;
}
.copyright p {
  color: var(--copyright-color);
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 0;
  font-weight: 400;
}
.copyright p a {
  color: var(--copyright-color) !important;
}
@media (max-width: 1200px) {
  .copyright {
    margin-top: 3rem;
  }
}
@media (max-width: 768px) {
  .copyright {
    margin-top: 2.5rem;
  }
}

.breadcrumb ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}
.breadcrumb ul li {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.breadcrumb ul li a {
  color: var(--secondary-color);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 300;
}
.breadcrumb ul li:not(:last-child) {
  margin-right: 0.6rem;
}
.breadcrumb ul li:not(:last-child)::after {
  display: block;
  content: "";
  width: 20px;
  height: 1px;
  background-color: var(--background-color);
  margin-left: 0.6rem;
}
@media (max-width: 993px) {
  .breadcrumb {
    display: none;
  }
}

.pagination ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 3rem auto 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 768px) {
  .pagination ul {
    margin: 1.75rem auto 0;
  }
}
.pagination ul li a {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  color: var(--paragraph-color);
  transition-duration: 0.15s;
}
.pagination ul li a:hover {
  color: var(--highlight-color);
  text-decoration: none;
}
.pagination ul li:not(:last-child):not(:first-child) a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  margin-right: 0.125rem;
}
.pagination ul li:not(:last-child):not(:first-child) a.active, .pagination ul li:not(:last-child):not(:first-child) a:hover {
  background-color: var(--highlight-color);
  color: var(--secondary-color);
}
.pagination ul li:first-child {
  margin-right: 1rem;
}
.pagination ul li:first-child svg {
  margin-right: 0.5rem;
}
.pagination ul li:last-child {
  margin-left: 1rem;
}
.pagination ul li:last-child svg {
  margin-left: 0.5rem;
}

.section-subpage:not(.section-subpage-margin) > *:first-child {
  margin-top: 0 !important;
}
.section-subpage > p:last-child, .section-subpage > ul:last-child, .section-subpage:not(.section-subpage-heading) > h2:last-child, .section-subpage:not(.section-subpage-heading) > h3:last-child, .section-subpage:not(.section-subpage-heading) > h4:last-child, .section-subpage:not(.section-subpage-heading) > h5:last-child {
  margin-bottom: 0 !important;
}
.section-subpage h1 {
  font-size: 47px;
  letter-spacing: -0.025rem;
  margin-top: 3rem;
  margin-bottom: 1.75rem;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: initial;
}
@media (max-width: 768px) {
  .section-subpage h1 {
    font-size: 44px;
  }
}
.section-subpage h2 {
  font-size: 42px;
  letter-spacing: -0.025rem;
  margin-top: 2.75rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: initial;
}
@media (max-width: 768px) {
  .section-subpage h2 {
    font-size: 39px;
  }
}
.section-subpage h3 {
  font-size: 37px;
  letter-spacing: -0.025rem;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: initial;
}
@media (max-width: 768px) {
  .section-subpage h3 {
    font-size: 34px;
  }
}
.section-subpage h4 {
  font-size: 31px;
  letter-spacing: -0.025rem;
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: initial;
}
@media (max-width: 768px) {
  .section-subpage h4 {
    font-size: 28px;
  }
}
.section-subpage h5 {
  font-size: 26px;
  letter-spacing: -0.025rem;
  margin-top: 2rem;
  margin-bottom: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: initial;
}
@media (max-width: 768px) {
  .section-subpage h5 {
    font-size: 23px;
  }
}
.section-subpage p, .section-subpage li, .section-subpage td {
  font-size: 17px;
  line-height: 30px;
  color: var(--paragraph-color);
}
.section-subpage-heading h3, .section-subpage-heading h2 {
  margin-bottom: 2.25rem !important;
}
@media (max-width: 768px) {
  .section-subpage-heading h3, .section-subpage-heading h2 {
    margin-bottom: 1.75rem !important;
  }
}
.section-subpage ul {
  padding: 0.5rem 0 0 0;
  margin-left: 1rem;
  margin-bottom: 1.5rem;
}
.section-subpage ul li {
  list-style: none;
  display: flex;
  text-align: left;
}
.section-subpage ul li::before {
  content: "";
  flex-shrink: 0;
  background-color: var(--highlight-color);
  width: 13px;
  height: 3px;
  display: block;
  margin-top: 14px;
  margin-right: 0.5rem;
}
.section-subpage ol {
  padding-left: 1.25rem;
  margin: 0 0 1rem 1rem;
}
.section-subpage ol li::marker {
  font-weight: 500;
}
.section-subpage table {
  width: 100%;
  overflow-y: scroll;
}
@media (max-width: 768px) {
  .section-subpage table {
    text-align: center;
  }
}
.section-subpage table tbody tr:first-child {
  background-color: var(--table-header-color) !important;
}
.section-subpage table tbody tr:first-child th {
  padding: 1.25rem 1.5rem;
  font-size: 17px;
  color: var(--secondary-color);
  font-weight: 500;
}
.section-subpage table tr td {
  padding: 1rem 1.5rem;
  border: 1px solid var(--border-color);
  background-color: var(--background-color);
}
.section-subpage table tr:nth-child(even) {
  background-color: var(--table-color);
}
.section-subpage table tr:not(:last-child) td {
  border-bottom: 0 !important;
}
@media (max-width: 768px) {
  .section-subpage {
    text-align: center;
  }
}

.section-form form {
  box-shadow: 0px 0px 25px 5px rgba(0, 0, 0, 0.03);
  border: 1px solid var(--news-border-color);
  padding: 3rem 3.75rem;
  border-radius: var(--border-radius);
}
@media (max-width: 768px) {
  .section-form form {
    padding: 2.25rem 2.25rem;
  }
  .section-form form a, .section-form form button {
    margin-left: auto;
    margin-right: auto;
  }
}
.section-form form .button-highlighted svg, .section-form form .button-highlighted path {
  fill: var(--background-color);
}
.section-form-checkbox {
  display: block;
  position: relative;
  padding-left: 2rem;
  cursor: pointer;
  text-align: left;
  font-size: 17px;
  line-height: 22px;
  color: var(--paragraph-color);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.section-form-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.section-form-checkbox-checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 22px;
  width: 22px;
  border: 1px solid var(--border-color);
  border-radius: var(--input-radius);
}
.section-form-checkbox-checkmark::after {
  content: "";
  position: absolute;
  display: none;
  left: 7px;
  top: 3px;
  width: 7px;
  height: 12px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
.section-form-checkbox input:checked ~ .section-form-checkbox-checkmark:after {
  display: block;
}
.section-form-checkbox:hover input ~ .section-form-checkbox-checkmark {
  background-color: var(--border-color);
}
.section-form-checkbox input:checked ~ .section-form-checkbox-checkmark {
  border-color: var(--highlight-color);
  background-color: var(--highlight-color);
}
.section-form-checkbox-radio .section-form-checkbox-checkmark {
  border-radius: 50%;
  height: 21px;
  width: 21px;
}
.section-form-checkbox-radio .section-form-checkbox-checkmark::after {
  top: 5px;
  left: 5px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: white;
}
.section-form-box {
  margin-bottom: 0.75rem;
}
.section-form-input {
  width: 100%;
  border: 1px solid var(--news-border-color);
  border-radius: var(--input-radius);
  color: var(--primary-color);
  font-size: 17px;
  font-weight: 500;
  line-height: 30px;
  padding: 0.75rem 1.5rem;
  transition-duration: 0.15s;
}
.section-form-input:is(textarea) {
  resize: none;
  min-height: 120px;
}
.section-form-input:is(select) {
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: "";
  background-image: url("../img/arrow-dropdown-black.png");
  background-repeat: no-repeat;
  background-position: right 1.5rem center;
}
.section-form-input:focus, .section-form-input:active {
  border-color: var(--highlight-color);
  outline: none;
  box-shadow: none;
}
.section-form-input::-moz-placeholder {
  color: var(--primary-color);
}
.section-form-input::placeholder {
  color: var(--primary-color);
}

@media (min-width: 1600px) {
  .container {
    max-width: 1540px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .container-split-left {
    max-width: 775px;
    margin-left: auto;
    margin-right: 0;
  }
}
.dropdown-hover:hover .dropdown-hover-menu {
  display: block !important;
}

.dropdown-hover:hover > a {
  color: var(--highlight-color) !important;
}/*# sourceMappingURL=main.css.map */