@font-face {
  font-family: Raleway;
  src: url(../fonts/Raleway-Light.ttf);
  font-weight: 300;
}
@font-face {
  font-family: Raleway;
  src: url(../fonts/Raleway-Regular.ttf);
  font-weight: 400;
}
@font-face {
  font-family: Raleway;
  src: url(../fonts/Raleway-Medium.ttf);
  font-weight: 500;
}
@font-face {
  font-family: Raleway;
  src: url(../fonts/Raleway-SemiBold.ttf);
  font-weight: 600;
}
@font-face {
  font-family: Raleway;
  src: url(../fonts/Raleway-Bold.ttf);
  font-weight: 700;
}
@font-face {
  font-family: Raleway;
  src: url(../fonts/Raleway-ExtraBold.ttf);
  font-weight: 800;
}
.f-500 {
  font-weight: 500;
}

/* General */
html, body {
  font-size: 16px;
  font-family: "Raleway", sans-serif;
  font-weight: 400;
}

body.overlay-visible {
  overflow: hidden;
}
body.overlay-visible #overlay {
  left: 0;
}

main {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

p {
  color: #7D8090;
  font-size: 0.875rem;
  font-weight: 500;
}
@media (min-width: 62rem) {
  p {
    font-size: 1rem;
  }
}

h1, h2, h3 {
  font-weight: 700;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 62rem) {
  h1 {
    font-size: 4rem;
    margin-bottom: 2rem;
  }
}

h2 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 62rem) {
  h2 {
    font-size: 2.5rem;
  }
}

h3 {
  font-size: 1.75rem;
  margin-bottom: 2rem;
}
@media (min-width: 62rem) {
  h3 {
    font-size: 2rem;
  }
}

/* Components */
.hidden {
  display: none;
}

.a1-flag {
  position: relative;
  display: inline-block;
  padding: 0.625rem 1rem;
  background-color: #EE2845;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
}
.a1-flag::after {
  content: "";
  position: absolute;
  bottom: -0.375rem;
  left: 0;
  width: 0.375rem;
  height: 0.375rem;
  background-color: #AA162C;
  clip-path: polygon(0 0, 0% 100%, 100% 0);
  z-index: 1;
}

* > .a1-card-flag:nth-of-type(1) {
  top: 1rem;
}

* > .a1-card-flag:nth-of-type(2) {
  top: 4rem;
}

* > .a1-card-flag:nth-of-type(3) {
  top: 7rem;
}

.a1-card-flag {
  position: absolute;
  left: 0;
  display: inline-block;
  z-index: 1;
  padding: 0.25rem 0.25rem 0.25rem 0.75rem;
  color: #fff;
}
.a1-card-flag:before {
  content: "";
  position: absolute;
  left: 100%;
  top: 0;
  width: 0;
  height: 0;
  border-top: 1rem solid transparent;
  border-bottom: 1rem solid transparent;
}
.a1-card-flag::after {
  content: "";
  position: absolute;
  bottom: -0.25rem;
  left: 0;
  width: 0.25rem;
  height: 0.25rem;
  clip-path: polygon(0 0, 0% 100%, 100% 0);
}
.a1-card-flag.blue {
  background-color: #366CCE;
}
.a1-card-flag.blue:before {
  border-left: 1rem solid #366CCE;
}
.a1-card-flag.blue::after {
  background-color: #005EC5;
}
.a1-card-flag.red {
  background-color: #EE2845;
}
.a1-card-flag.red:before {
  border-left: 1rem solid #EE2845;
}
.a1-card-flag.red::after {
  background-color: #AA162C;
}
.a1-card-flag.green {
  background-color: #00AC42;
}
.a1-card-flag.green:before {
  border-left: 1rem solid #00AC42;
}
.a1-card-flag.green::after {
  background-color: #00710D;
}

.a1-subheading {
  color: #7D8090;
  margin-bottom: 1rem;
  letter-spacing: 0.2rem;
}

.grey-bg {
  background-color: #F5F6F7;
}

.blue-bg {
  background-color: #005EC5;
}

.color-black {
  color: #00062A;
}

.border-bottom-blue {
  border-bottom: 0.0625rem solid #CFE3FA;
}

.breadcrumbs {
  width: 100%;
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: transparent;
  font-size: 0.875rem;
  color: #fff;
  border-bottom: 0.0625rem solid #D8E6FA;
  margin-bottom: 3rem;
}
.breadcrumbs .container > a:nth-last-of-type(1) {
  font-weight: 600;
}
.breadcrumbs .breadcrumbs-divider {
  margin: 0 0.5rem;
}
.breadcrumbs a {
  color: inherit;
  text-decoration: none;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}

.container.section-margin {
  margin-top: 4rem;
  margin-bottom: 4rem;
}
@media (min-width: 62rem) {
  .container.section-margin {
    margin-top: 7.5rem;
    margin-bottom: 7.5rem;
  }
}
.container.section-margin-top {
  margin-top: 4rem;
}
@media (min-width: 62rem) {
  .container.section-margin-top {
    margin-top: 7.5rem;
  }
}
.container.section-margin-bottom {
  margin-bottom: 4rem;
}
@media (min-width: 62rem) {
  .container.section-margin-bottom {
    margin-bottom: 7.5rem;
  }
}
.container.section-positioned {
  margin-top: -4rem;
  position: relative;
}
.container.content h2:not(:first-of-type),
.container.content h3 {
  margin-top: 3rem;
}
.container.content ul {
  list-style: disc;
  list-style-position: inside;
  color: #7D8090;
}

.grey-white-gradient {
  background: linear-gradient(to bottom, #F5F6F7 50%, #fff 50%);
}

.red-warning {
  display: flex;
  align-items: center;
  color: #EE2845;
}

.small-text {
  color: #7D8090;
  font-weight: 300;
}

.box-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}
@media (min-width: 62rem) {
  .box-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
  }
}
.box-grid .box-grid-text {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  padding: 2rem;
  background-color: #F5F6F7;
}
@media (min-width: 62rem) {
  .box-grid .box-grid-text {
    padding: 3.75rem;
  }
}
.box-grid .box-grid-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.styled-info {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}
@media (min-width: 62rem) {
  .styled-info {
    grid-template-columns: 2fr 3fr;
  }
}
.styled-info .styled-info-image img {
  object-fit: cover;
  width: 100%;
  height: auto;
}
.styled-info .styled-info-content {
  padding: 3rem 1.5rem;
  background-color: #F5F6F7;
}
@media (min-width: 62rem) {
  .styled-info .styled-info-content {
    padding: 4.5rem;
    grid-column: span 2;
  }
}
@media (min-width: 62rem) {
  .styled-info .styled-info-box-wrapper {
    margin-right: -6rem;
  }
}
.styled-info .styled-info-box-wrapper .styled-info-box {
  position: relative;
  padding: 3rem 1.5rem;
  color: #fff;
}
@media (min-width: 62rem) {
  .styled-info .styled-info-box-wrapper .styled-info-box {
    padding: 3rem;
  }
}
@media (min-width: 75rem) {
  .styled-info .styled-info-box-wrapper .styled-info-box {
    padding: 4.5rem;
  }
}
.styled-info .styled-info-box-wrapper .styled-info-box .styled-info-heading {
  font-size: 1.625rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
@media (min-width: 62rem) {
  .styled-info .styled-info-box-wrapper .styled-info-box .styled-info-heading {
    font-size: 2rem;
  }
}
.styled-info .styled-info-box-wrapper .styled-info-box .a1-flag {
  margin-bottom: 1.5rem;
  background-color: #00062A;
}
.styled-info .styled-info-box-wrapper .styled-info-box .a1-flag::after {
  background-color: #00062A;
}

ol.styled-list {
  counter-reset: item;
}
ol.styled-list > li {
  display: block;
}
ol.styled-list > li:before {
  content: counters(item, ".") " ";
  counter-increment: item;
}
ol.styled-list li ul {
  margin-top: 1rem;
}
ol.styled-list li, ol.styled-list div {
  margin-bottom: 1rem;
}
ol.styled-list div {
  display: inline-block;
}
ol.styled-list .styled-list-heading {
  font-weight: 700;
}

ul.styled-list {
  list-style-type: disc;
  padding-left: 1.5rem;
}
ul.styled-list > li::marker {
  color: #005EC5;
  font-size: 1.2rem;
}

ul.unstyled-list {
  list-style-type: none;
  padding-left: 2rem;
}

input,
textarea {
  width: 100%;
  padding: 0.5rem 1rem;
  margin-bottom: 2rem;
  border: 1px solid #B3B6C6;
  border-radius: 1.5rem;
  background: #F5F6F7;
}

label {
  margin-bottom: 1rem;
}

textarea {
  min-height: 7rem;
}

.no-button {
  background: none;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
}
.no-button img {
  margin-right: 0.5rem;
}

.button-transparent,
.button-blue,
.button-white {
  display: inline-block;
  padding: 0.5rem 2rem;
  border-radius: 1.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}
.button-transparent span img,
.button-blue span img,
.button-white span img {
  display: none;
}
@media (min-width: 62rem) {
  .button-transparent span,
  .button-blue span,
  .button-white span {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 0.5rem;
    transition: padding 0.3s;
  }
  .button-transparent span img,
  .button-blue span img,
  .button-white span img {
    display: inline;
    width: 0.5rem;
    padding: 0;
    opacity: 0;
    transition: margin 0.3s, opacity 0.3s;
  }
  .button-transparent:hover span,
  .button-blue:hover span,
  .button-white:hover span {
    padding: 0;
  }
  .button-transparent:hover img,
  .button-blue:hover img,
  .button-white:hover img {
    margin-left: 0.5rem;
    opacity: 1;
  }
}

.button-transparent:hover,
.button-blue:hover {
  color: #fff;
  background-color: #366CCE;
  border: 0.0625rem solid #366CCE;
  box-shadow: 0 0.25rem 1rem rgba(67, 107, 199, 0.1215686275);
}

.button-white {
  background-color: #F5F6F7;
  color: #005EC5;
  border: 0.0625rem solid #fff;
  box-shadow: none;
}
.button-white:hover {
  color: #366CCE;
  box-shadow: 0px 4px 16px rgba(67, 107, 199, 0.1215686275);
  background-color: #fff;
}

.button-transparent {
  border: 0.0625rem solid #BBBECE;
  box-shadow: 0 0.25rem 1rem rgba(67, 107, 199, 0);
  color: #00062A;
  background-color: transparent;
}

.button-blue {
  border: 0.0625rem solid #005EC5;
  box-shadow: 0 0.25rem 1rem rgba(67, 107, 199, 0);
  color: #fff;
  background-color: #005EC5;
}

.primary-header-swiper,
.products-swiper,
.gallery-swiper,
.references-swiper,
.services-swiper {
  overflow: hidden;
}
.primary-header-swiper .swiper-slide,
.products-swiper .swiper-slide,
.gallery-swiper .swiper-slide,
.references-swiper .swiper-slide,
.services-swiper .swiper-slide {
  height: auto;
}
.primary-header-swiper .swiper-wrapper,
.primary-header-swiper .card,
.products-swiper .swiper-wrapper,
.products-swiper .card,
.gallery-swiper .swiper-wrapper,
.gallery-swiper .card,
.references-swiper .swiper-wrapper,
.references-swiper .card,
.services-swiper .swiper-wrapper,
.services-swiper .card {
  height: 100%;
}
.primary-header-swiper .swiper-pagination,
.products-swiper .swiper-pagination,
.gallery-swiper .swiper-pagination,
.references-swiper .swiper-pagination,
.services-swiper .swiper-pagination {
  position: relative;
  bottom: unset;
  left: unset;
  width: auto;
}
.primary-header-swiper .swiper-pagination .swiper-pagination-bullet,
.products-swiper .swiper-pagination .swiper-pagination-bullet,
.gallery-swiper .swiper-pagination .swiper-pagination-bullet,
.references-swiper .swiper-pagination .swiper-pagination-bullet,
.services-swiper .swiper-pagination .swiper-pagination-bullet {
  position: relative;
  width: 0.75rem;
  height: 0.75rem;
  background-color: #005EC5;
  margin: 0 0.5rem;
}
.primary-header-swiper .swiper-pagination .swiper-pagination-bullet-active::before,
.products-swiper .swiper-pagination .swiper-pagination-bullet-active::before,
.gallery-swiper .swiper-pagination .swiper-pagination-bullet-active::before,
.references-swiper .swiper-pagination .swiper-pagination-bullet-active::before,
.services-swiper .swiper-pagination .swiper-pagination-bullet-active::before {
  content: "";
  position: absolute;
  top: -0.25rem;
  left: -0.25rem;
  width: 1.25rem;
  height: 1.25rem;
  background: none;
  border-radius: 50%;
  border: 2px solid #005EC5;
}
.primary-header-swiper .swiper-button-prev,
.primary-header-swiper .swiper-button-next,
.products-swiper .swiper-button-prev,
.products-swiper .swiper-button-next,
.gallery-swiper .swiper-button-prev,
.gallery-swiper .swiper-button-next,
.references-swiper .swiper-button-prev,
.references-swiper .swiper-button-next,
.services-swiper .swiper-button-prev,
.services-swiper .swiper-button-next {
  position: relative;
  display: inline-block;
  width: 2.5rem;
  height: 2.5rem;
  left: unset;
  right: unset;
  top: unset;
  margin: 0;
  border-radius: 50%;
  border: 0.0625rem solid #7D8090;
}
.primary-header-swiper .swiper-button-prev::after,
.primary-header-swiper .swiper-button-next::after,
.products-swiper .swiper-button-prev::after,
.products-swiper .swiper-button-next::after,
.gallery-swiper .swiper-button-prev::after,
.gallery-swiper .swiper-button-next::after,
.references-swiper .swiper-button-prev::after,
.references-swiper .swiper-button-next::after,
.services-swiper .swiper-button-prev::after,
.services-swiper .swiper-button-next::after {
  width: 2.375rem;
  height: 2.375rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.75rem;
  color: #7D8090;
}
.primary-header-swiper .swiper-button-prev,
.products-swiper .swiper-button-prev,
.gallery-swiper .swiper-button-prev,
.references-swiper .swiper-button-prev,
.services-swiper .swiper-button-prev {
  margin-right: 1rem;
}

.services-swiper .swiper-pagination {
  display: grid;
  grid-template-columns: repeat(5, minmax(200px, 300px));
  width: 100%;
  border-bottom: 0.25rem solid #366CCE;
  overflow-x: auto;
}
@media (max-width: 575.9px) {
  .services-swiper .swiper-pagination {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .services-swiper .swiper-pagination::-webkit-scrollbar {
    display: none;
  }
}
@media (min-width: 36rem) {
  .services-swiper .swiper-pagination::-webkit-scrollbar {
    width: 12px;
  }
  .services-swiper .swiper-pagination::-webkit-scrollbar-track {
    background: #F5F6F7;
  }
  .services-swiper .swiper-pagination::-webkit-scrollbar-thumb {
    background-color: #366CCE;
    border-radius: 20px;
    border-top: 3px solid #F5F6F7;
    border-bottom: 3px solid #F5F6F7;
  }
}
.services-swiper .swiper-pagination .swiper-pagination-bullet {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 1.5rem 0.5rem;
  font-weight: 700;
  background: none;
  border-radius: 0;
  border: none;
  margin: 0;
  color: #00062A;
  opacity: 1;
  cursor: pointer;
}
.services-swiper .swiper-pagination .swiper-pagination-bullet:hover {
  color: #366CCE;
}
@media (min-width: 62rem) {
  .services-swiper .swiper-pagination .swiper-pagination-bullet {
    font-size: 1.25rem;
  }
}
.services-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #366CCE;
  color: #fff;
}
.services-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  content: none;
}
.services-swiper .swiper-slide {
  height: 100%;
}
@media (min-width: 62rem) {
  .services-swiper .swiper-slide {
    height: auto;
  }
}
.services-swiper .swiper-slide:not(.swiper-slide-visible) {
  opacity: 0;
}

.primary-header-swiper {
  display: flex;
  flex-direction: column;
  max-width: 35rem;
  margin-bottom: 1rem;
}
.primary-header-swiper .swiper-wrapper {
  margin-bottom: 1rem;
}
@media (min-width: 62rem) {
  .primary-header-swiper .swiper-wrapper {
    margin-bottom: 2.5rem;
  }
}
.primary-header-swiper .swiper-slide {
  color: #fff;
}
@media (min-width: 62rem) {
  .primary-header-swiper .swiper-slide {
    font-size: 1.25rem;
  }
}
.primary-header-swiper .swiper-button-prev,
.primary-header-swiper .swiper-button-next {
  border: 0.0625rem solid #fff;
}
.primary-header-swiper .swiper-button-prev::after,
.primary-header-swiper .swiper-button-next::after {
  color: #fff;
}

.products-swiper .swiper-wrapper,
.references-swiper .swiper-wrapper {
  margin-bottom: 3rem;
}

.gallery-swiper .swiper-wrapper {
  z-index: initial;
}
.gallery-swiper .swiper-wrapper .swiper-slide {
  width: auto;
  display: flex;
  justify-content: center;
}

nav {
  height: 4.6875rem;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 8, 36, 0.0392156863);
  position: relative;
}
@media (min-width: 62rem) {
  nav {
    height: 6.25rem;
  }
}
nav .nav-brand img {
  width: 9.375rem;
  height: auto;
}
@media (min-width: 62rem) {
  nav .nav-brand img {
    width: 11.6875rem;
  }
}
nav .nav-toggler {
  padding: 0;
  border: none;
  outline: none;
  background: none;
}
nav .nav-phone {
  height: 2.1875rem;
}
nav .nav-phone a {
  text-decoration: none;
  color: #366CCE;
  font-weight: 600;
}
@media (min-width: 75rem) {
  nav .nav-phone::before {
    content: "";
    margin-left: 1rem;
    margin-right: 1rem;
    border-left: 0.0625rem solid #CFE3FA;
    width: 0.0625rem;
    height: 2.8125rem;
  }
}
nav .nav-list {
  height: 100%;
}
nav .nav-list li {
  height: 100%;
}
@media (min-width: 62rem) {
  nav .nav-list li:hover .nav-sublist,
  nav .nav-list li .nav-sublist:hover {
    display: block;
  }
}
nav .nav-list li:hover {
  color: #5B91F4;
}
nav .nav-list li:hover .nav-link {
  color: #5B91F4;
}
nav .nav-list li:hover .nav-link::before {
  display: block;
}
nav .nav-list li .nav-link {
  height: 100%;
  display: flex;
  align-items: center;
  color: #00062A;
  font-weight: 700;
  position: relative;
  padding: 0.5rem 0;
  margin: 0 1rem;
}
nav .nav-list li .nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.1875rem;
  background-color: #5B91F4;
  display: none;
}
nav .nav-list li .nav-link.active {
  color: #5B91F4;
}
nav .nav-list li .nav-link.active::before {
  display: block;
}
nav .nav-sublist {
  display: none;
  width: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  z-index: 2;
  border-top: 1px solid #CFE3FA;
  box-shadow: 0px 8px 24px rgba(0, 8, 36, 0.0784313725);
}
nav .nav-sublist .container {
  padding-top: 5rem;
  padding-bottom: 5rem;
  display: grid;
  grid-gap: 1rem;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}
nav .nav-sublist .container .nav-sublist-icon {
  margin-bottom: 2rem;
}
nav .nav-sublist .container .nav-sublist-link {
  color: #00062A;
  font-weight: 700;
  text-decoration: none;
}
nav .nav-sublist .container .nav-sublist-link:hover div {
  text-decoration: underline;
  text-underline-offset: 1px;
}

footer {
  background: -webkit-image-set(url("../images/footer.png") 1x, url("../images/footer@2x.png") 2x);
  background: image-set(url("../images/footer.png") 1x, url("../images/footer@2x.png") 2x);
  color: #fff;
}
footer a {
  color: #5B91F4;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
  color: #5B91F4;
}
footer .footer-top {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 0.0625rem solid #182676;
  font-size: 0.875rem;
  font-weight: 700;
}
@media (min-width: 62rem) {
  footer .footer-top {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
    font-size: 1rem;
    display: flex;
  }
}
footer .footer-top .footer-top-logos {
  flex-wrap: wrap;
}
@media (min-width: 62rem) {
  footer .footer-top .footer-top-logos {
    width: 100%;
    flex-wrap: nowrap;
  }
}
footer .footer-top .footer-top-logos .footer-top-logo {
  padding-right: 1rem;
  max-width: 25%;
  text-align: center;
}
footer .footer-top .footer-top-logos .footer-top-logo:last-of-type {
  padding-right: 0;
}
@media (min-width: 62rem) {
  footer .footer-top .footer-top-logos .footer-top-logo {
    max-width: unset;
    padding-right: 0;
  }
}
footer .footer-top .footer-top-logos .footer-top-heading {
  width: 100%;
  flex-basis: 100%;
  margin-bottom: 1rem;
}
@media (min-width: 62rem) {
  footer .footer-top .footer-top-logos .footer-top-heading {
    max-width: 12rem;
    margin-bottom: 0;
  }
}
footer .footer-middle {
  padding-top: 4rem;
  padding-bottom: 4rem;
  border-bottom: 0.0625rem solid #182676;
}
@media (min-width: 62rem) {
  footer .footer-middle {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
footer .footer-middle a {
  display: inline-block;
  margin-bottom: 1rem;
}
footer .footer-middle p {
  color: #BBBECE;
}
footer .footer-middle .column {
  margin-bottom: 2rem;
}
footer .footer-middle .column:last-of-type {
  margin-bottom: 0;
}
@media (min-width: 62rem) {
  footer .footer-middle .column {
    margin-bottom: 0;
  }
}
footer .footer-middle .footer-heading {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  font-weight: 700;
}
footer .footer-middle .footer-phone,
footer .footer-middle .footer-email {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0;
}
footer .footer-middle .footer-phone {
  color: #fff;
}
footer .footer-bottom {
  padding-top: 2rem;
  padding-bottom: 3.5rem;
}
@media (min-width: 62rem) {
  footer .footer-bottom {
    padding-top: 2.5rem;
    padding-bottom: 4.5rem;
  }
}

#overlay {
  position: fixed;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  transition: left 0.2s ease-in-out;
  z-index: 10;
}
#overlay .overlay-wrapper {
  height: 100%;
  max-width: 100%;
  margin-left: auto;
  background-color: #fff;
}
@media (min-width: 75rem) {
  #overlay .overlay-wrapper {
    max-width: 60.75rem;
  }
}
#overlay .overlay-wrapper .container {
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}
@media (min-width: 36rem) {
  #overlay .overlay-wrapper .container {
    padding-right: 1.25rem;
  }
}
#overlay .overlay-wrapper .container .overlay-header,
#overlay .overlay-wrapper .container .overlay-content {
  padding: 2rem 0;
}
#overlay .overlay-wrapper .container .overlay-header {
  height: 4.6875rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 0.0625rem solid #D5D5D5;
}
#overlay .overlay-wrapper .container .overlay-header .overlay-header-text {
  font-weight: 600;
}
@media (min-width: 75rem) {
  #overlay .overlay-wrapper .container .overlay-header {
    height: 6.25rem;
  }
}
#overlay .overlay-wrapper .container .overlay-header .nav-toggler {
  padding: 0;
  border: none;
  outline: none;
  background: none;
}
#overlay .overlay-wrapper .container .overlay-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#overlay .overlay-wrapper .container .overlay-content .overlay-content-heading {
  font-weight: 700;
  font-size: 1.25rem;
}
#overlay .overlay-wrapper .container .overlay-content .overlay-content-icon,
#overlay .overlay-wrapper .container .overlay-content .overlay-content-text,
#overlay .overlay-wrapper .container .overlay-content .overlay-content-heading {
  margin-bottom: 1.5rem;
}
#overlay .overlay-wrapper .container .overlay-content .nav-mobile-list li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
}
#overlay .overlay-wrapper .container .overlay-content .nav-mobile-list .nav-link {
  color: #00062A;
  font-size: 1.25rem;
  font-weight: 700;
  padding: 0;
}
#overlay .overlay-wrapper .container .overlay-contact-person {
  display: none;
  position: fixed;
  bottom: 0;
  max-height: 700px;
  transform: translateX(-100%);
}
@media (min-width: 75rem) {
  #overlay .overlay-wrapper .container .overlay-contact-person {
    display: block;
  }
}

#overlay-contact-us,
#overlay-services,
#overlay-ac,
#overlay-default {
  overflow-y: auto;
  padding-left: 1rem;
}
#overlay-contact-us::before,
#overlay-services::before,
#overlay-ac::before,
#overlay-default::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1rem;
  height: 100%;
  background-color: #005EC5;
}

@media (min-width: 62rem) {
  #overlay-contact-us::before {
    width: calc(100vw - 59.75rem);
  }
  #overlay-contact-us .container {
    max-width: 40rem;
  }
}

.page-header {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-header .page-header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -1;
  filter: brightness(0.5);
}
@media (min-width: 62rem) {
  .page-header .page-header-bg {
    filter: none;
  }
}
.page-header .container {
  position: relative;
  color: #fff;
}
.page-header .container .a1-flag {
  margin-bottom: 1rem;
}
.page-header .container p {
  max-width: 35rem;
}

.primary-header {
  min-height: calc(100vh - 4.6875rem);
  height: 100%;
}
@media (min-width: 62rem) {
  .primary-header {
    height: calc(100vh - 6.25rem);
    min-height: 650px;
    margin-bottom: 0;
  }
}
.primary-header .primary-header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  filter: brightness(0.5);
}
@media (min-width: 62rem) {
  .primary-header .primary-header-bg {
    filter: none;
    object-position: center;
  }
}
.primary-header .container {
  height: 100%;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.primary-header .container .primary-header-modal-mobile .promotion-card.preview {
  max-width: unset;
}
.primary-header .container .primary-header-modal-mobile .promotion-card.preview .promotion-card-info {
  padding: 0.75rem;
}
@media (min-width: 48rem) {
  .primary-header .container .primary-header-modal-mobile .promotion-card.preview .promotion-card-info {
    padding: 1rem;
  }
}
.primary-header .container .primary-header-modal-mobile .promotion-card.preview .promotion-card-bg {
  max-height: 326px;
  object-fit: cover;
}
.primary-header .container .primary-header-products {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1rem;
}
@media (min-width: 62rem) {
  .primary-header .container .primary-header-products {
    max-width: 35rem;
    margin-bottom: 0;
  }
}
@media (min-width: 75rem) {
  .primary-header .container .primary-header-products {
    flex-direction: row;
    max-width: 45rem;
  }
}
.primary-header .container .primary-header-products .primary-header-product {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  background-color: #fff;
  color: #00062A;
  text-decoration: none;
  font-weight: 700;
  border-bottom: 1px solid #CFE3FA;
  transition: all 0.3s;
}
.primary-header .container .primary-header-products .primary-header-product:last-of-type {
  border-bottom: none;
}
@media (min-width: 75rem) {
  .primary-header .container .primary-header-products .primary-header-product {
    border-bottom: none;
    border-right: 1px solid #CFE3FA;
    padding: 0.5rem 1rem;
  }
  .primary-header .container .primary-header-products .primary-header-product:last-of-type {
    border-right: none;
  }
}
.primary-header .container .primary-header-products .primary-header-product img {
  margin-right: 1rem;
  transition: all 0.3s;
}
.primary-header .container .primary-header-products .primary-header-product:hover {
  background-color: #C1DAFD;
  text-decoration: underline;
}
.primary-header .container .primary-header-products .primary-header-product:hover img {
  transform: scale(1.1);
}
.primary-header .primary-header-modal {
  display: none;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (min-width: 62rem) {
  .primary-header .primary-header-modal {
    display: block;
  }
}

.secondary-header {
  min-height: 28.75rem;
}
.secondary-header p {
  color: #fff;
}
.secondary-header h1 {
  font-size: 2rem;
}
@media (min-width: 62rem) {
  .secondary-header h1 {
    font-size: 2.5rem;
  }
}

.simple-header {
  height: 100%;
  display: block;
}
.simple-header .breadcrumbs {
  border-bottom: 0.0625rem solid #F5F6F7;
}
.simple-header .breadcrumbs .container > a:nth-last-of-type(2) {
  color: #7D8090;
}
.simple-header .breadcrumbs .breadcrumbs-divider {
  color: #7D8090;
}
.simple-header .breadcrumbs .container {
  color: #00062A;
  flex-direction: row;
  align-items: center;
}
.simple-header > .container {
  color: #00062A;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 1.5rem;
}
@media (min-width: 62rem) {
  .simple-header > .container {
    grid-template-columns: 1fr 1fr;
    grid-gap: 2rem;
    align-items: center;
  }
}
.simple-header > .container p {
  max-width: 100%;
}
.simple-header > .container .simple-header-text,
.simple-header > .container .simple-header-heading {
  width: 100%;
}
.simple-header > .container .simple-header-text {
  font-size: 1rem;
  color: #7D8090;
}
.simple-header > .container .simple-header-text p {
  margin-bottom: 0;
}
@media (min-width: 62rem) {
  .simple-header > .container .simple-header-text {
    font-size: 1.25rem;
    line-height: 2;
  }
}

.breadcrumbs-header .breadcrumbs {
  position: relative;
  border-bottom: 0.0625rem solid #F5F6F7;
}
.breadcrumbs-header .breadcrumbs .container {
  color: #00062A;
}

.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-gap: 1.5rem;
  /*
  &.products-grid {
      @media (min-width: $lg) {
          grid-template-columns: 1fr 1fr;
      }
  }
  */
}
@media (min-width: 48rem) {
  .card-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 62rem) {
  .card-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.card-grid .card {
  cursor: pointer;
  align-items: center;
  text-align: center;
  padding: 2.5rem;
  border: none;
  border-radius: 0;
  box-shadow: 0 0.25rem 0.5rem rgba(1, 6, 40, 0.0392156863);
  background-color: #fff;
  color: #00062A;
  text-decoration: none;
}
.card-grid .card:hover {
  box-shadow: 0 0.75rem 1.5rem rgba(1, 6, 40, 0.0784313725);
}
.card-grid .card:hover .button-blue {
  color: #fff;
  background-color: #366CCE;
  border: 0.0625rem solid #366CCE;
  box-shadow: 0 0.25rem 1rem rgba(67, 107, 199, 0.1215686275);
}
.card-grid .card:hover .button-blue span {
  padding: 0;
}
.card-grid .card:hover .button-blue img {
  margin-left: 0.5rem;
  opacity: 1;
}
.card-grid .card.reference-card {
  background-color: #F5F6F7;
  box-shadow: none;
  cursor: default;
  text-align: start;
  align-items: flex-start;
}
.card-grid .card.reference-card:hover {
  box-shadow: none;
}
.card-grid .card .card-image {
  transition: all 0.3s;
}
.card-grid .card .card-name {
  font-weight: 700;
}
.card-grid .card .card-age {
  font-size: 0.875rem;
  color: #BBBECE;
  font-weight: 500;
}
.card-grid .card .card-icon,
.card-grid .card .card-heading,
.card-grid .card .card-text,
.card-grid .card .card-info,
.card-grid .card .card-tag,
.card-grid .card .card-name {
  margin-bottom: 1rem;
}
.card-grid .card .card-heading {
  font-size: 1.25rem;
  font-weight: 700;
}
@media (min-width: 62rem) {
  .card-grid .card .card-heading {
    font-size: 1.5rem;
  }
}
.card-grid .card .card-text {
  font-size: 0.875rem;
  font-weight: 400;
}
@media (min-width: 62rem) {
  .card-grid .card .card-text {
    font-size: 1rem;
  }
}
.card-grid .card .card-tag {
  position: relative;
  display: inline-block;
  padding: 0.25rem 1rem;
  border-radius: 1.25rem;
}
.card-grid .card .card-tag.purple {
  background-color: #DFCCF9;
}
.card-grid .card .card-tag.orange {
  background-color: #FEDAB9;
}
.card-grid .card .card-tag.blue {
  background-color: #C1DAFD;
}
.card-grid .card:hover .card-image {
  transform: scale(1.1);
}
.card-grid .card:hover .card-heading {
  text-decoration: underline;
}
.card-grid.swiper-grid {
  display: flex;
  grid-gap: unset;
}

.component-banner {
  display: grid;
  grid-template-columns: 1fr;
  background: #00093A;
  color: #fff;
}
@media (min-width: 62rem) {
  .component-banner {
    grid-template-columns: 1fr 1fr;
  }
}
.component-banner .component-banner-section {
  padding: 3rem 1.5rem;
}
@media (min-width: 62rem) {
  .component-banner .component-banner-section {
    padding: 3rem 5rem;
  }
}
.component-banner .component-banner-section:first-of-type {
  border-bottom: 0.0625rem solid #262B4B;
}
@media (min-width: 62rem) {
  .component-banner .component-banner-section:first-of-type {
    border-bottom: none;
    border-right: 0.0625rem solid #262B4B;
  }
}
.component-banner .component-banner-section .component-banner-heading {
  margin-bottom: 1rem;
  font-size: 1.125rem;
}
@media (min-width: 62rem) {
  .component-banner .component-banner-section .component-banner-heading {
    font-size: 1.25rem;
  }
}
.component-banner .component-banner-section .component-banner-text {
  font-size: 0.875rem;
  color: #BBBECE;
}

.component-locations .component-locations-flex {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 62rem) {
  .component-locations .component-locations-flex {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}
.component-locations .component-locations-flex .component-locations-map,
.component-locations .component-locations-flex .component-locations-info {
  width: 100%;
}
@media (min-width: 62rem) {
  .component-locations .component-locations-flex .component-locations-map {
    order: 2;
  }
}
.component-locations .component-locations-flex .component-locations-info {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 2rem;
}
@media (min-width: 62rem) {
  .component-locations .component-locations-flex .component-locations-info {
    grid-template-columns: 1fr 1fr;
  }
}
.component-locations .component-locations-flex .component-locations-info .component-locations-box {
  display: flex;
  flex-direction: row;
}
@media (min-width: 62rem) {
  .component-locations .component-locations-flex .component-locations-info .component-locations-box {
    flex-direction: column;
  }
}
.component-locations .component-locations-flex .component-locations-info .component-locations-box .component-locations-icon {
  margin-right: 2rem;
}
@media (min-width: 62rem) {
  .component-locations .component-locations-flex .component-locations-info .component-locations-box .component-locations-icon {
    margin-right: 0;
    margin-bottom: 2rem;
  }
}
.component-locations .component-locations-flex .component-locations-info .component-locations-box .component-locations-heading {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.component-locations .component-locations-flex .component-locations-info .component-locations-box .component-locations-text {
  font-size: 0.875rem;
}
.component-locations .component-locations-links {
  font-size: 0.8125rem;
  color: #BBBECE;
}
@media (min-width: 62rem) {
  .component-locations .component-locations-links {
    font-size: 0.875rem;
  }
}

.component-help {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 62rem) {
  .component-help {
    grid-template-columns: 1fr 1fr;
  }
}
.component-help .component-help-section:first-of-type {
  margin-bottom: 3rem;
}
@media (min-width: 62rem) {
  .component-help .component-help-section:first-of-type {
    margin-bottom: 0;
    border-right: 0.0625rem solid #CFE3FA;
    padding-right: 5rem;
  }
}
@media (min-width: 62rem) {
  .component-help .component-help-section:last-of-type {
    padding-left: 5rem;
  }
}
.component-help .component-help-section .component-help-icon {
  margin-bottom: 2rem;
}
.component-help .component-help-section .component-help-heading {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
@media (min-width: 62rem) {
  .component-help .component-help-section .component-help-heading {
    font-size: 1.5rem;
  }
}

.gallery {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 1rem;
}
.gallery a, .gallery img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
}
.gallery img {
  object-fit: cover;
  object-position: center;
}
@media (min-width: 36rem) {
  .gallery {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 48rem) {
  .gallery {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (min-width: 62rem) {
  .gallery {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.hp-icons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 2rem;
  padding-bottom: 2rem;
  grid-gap: 1rem;
}
@media (min-width: 62rem) {
  .hp-icons {
    grid-template-columns: repeat(4, auto);
    justify-content: space-between;
  }
}
.hp-icons .hp-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 1rem;
}
.hp-icons .hp-icon img {
  margin-bottom: 1rem;
}
@media (min-width: 48rem) {
  .hp-icons .hp-icon:nth-last-of-type(1), .hp-icons .hp-icon:nth-last-of-type(2) {
    margin-bottom: 0;
  }
}
@media (min-width: 62rem) {
  .hp-icons .hp-icon {
    flex-direction: row;
    margin-bottom: 0;
  }
  .hp-icons .hp-icon img {
    margin-bottom: 0;
    margin-right: 1rem;
  }
}

.references-rating {
  font-weight: 700;
  font-size: 2rem;
  color: #EE2845;
}
@media (min-width: 62rem) {
  .references-rating {
    font-size: 2.5rem;
  }
}

.references-link:hover {
  color: #00062A;
}

.contact-info {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 1fr;
  margin-bottom: 3.75rem;
}
@media (min-width: 62rem) {
  .contact-info {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    grid-gap: 1.5rem;
  }
}
.contact-info .contact-info-item {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  background-color: #fff;
}
@media (min-width: 62rem) {
  .contact-info .contact-info-item {
    padding: 2.5rem;
  }
}
.contact-info .contact-info-item .contact-link {
  color: #005EC5;
}
.contact-info .contact-info-item .contact-link:hover {
  text-decoration: underline;
}
.contact-info .contact-info-item .contact-link,
.contact-info .contact-info-item .contact-heading {
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 2rem;
}
.contact-info .contact-info-item .contact-text {
  margin-bottom: 1rem;
}
.contact-info .contact-info-item .contact-text {
  font-weight: 500;
}
.contact-info .contact-info-item .contact-text {
  color: #7D8090;
  line-height: 2rem;
  font-size: 0.875rem;
}
@media (min-width: 62rem) {
  .contact-info .contact-info-item .contact-text {
    font-size: 1rem;
  }
}
.contact-info .contact-info-item .contact-info-flex {
  display: flex;
  flex-direction: column;
}
@media (min-width: 62rem) {
  .contact-info .contact-info-item .contact-info-flex > div {
    width: 50%;
  }
}
@media (min-width: 75rem) {
  .contact-info .contact-info-item .contact-info-flex {
    flex-direction: row;
  }
}

.contact-map {
  margin-bottom: 3.75rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-gap: 2rem;
}
@media (min-width: 62rem) {
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.blog-grid .blog-grid-article {
  position: relative;
  overflow: hidden;
}
.blog-grid .blog-grid-article:hover .blog-grid-content .blog-grid-heading {
  text-decoration: underline;
}
.blog-grid .blog-grid-article:hover .blog-grid-bg {
  transform: scale(1.1);
}
.blog-grid .blog-grid-article .blog-grid-content {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 75%;
  padding-left: 1rem;
  background-color: #fff;
  color: #00062A;
}
.blog-grid .blog-grid-article .blog-grid-content .blog-grid-category {
  margin-top: -1.25rem;
  padding: 0.25rem 1rem;
  border: 0.25rem solid #fff;
  border-radius: 1.25rem;
  background-color: #DFCCF9;
}
.blog-grid .blog-grid-article .blog-grid-content .blog-grid-heading {
  font-size: 1.25rem;
  font-weight: 700;
}
@media (min-width: 62rem) {
  .blog-grid .blog-grid-article .blog-grid-content .blog-grid-heading {
    font-size: 1.5rem;
  }
}
.blog-grid .blog-grid-article .blog-grid-content .blog-grid-heading,
.blog-grid .blog-grid-article .blog-grid-content .blog-grid-category {
  margin-bottom: 1rem;
}
.blog-grid .blog-grid-article .blog-grid-content .blog-grid-date,
.blog-grid .blog-grid-article .blog-grid-content .blog-grid-author {
  display: flex;
  align-items: center;
}
.blog-grid .blog-grid-article .blog-grid-content .blog-grid-date {
  margin-right: 1rem;
}
.blog-grid .blog-grid-article .blog-grid-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.3s;
}
.blog-grid.blog-grid-grey .blog-grid-article .blog-grid-content {
  background-color: #F5F6F7;
}

.pagination {
  display: flex;
  justify-content: space-between;
  margin-top: 3.75rem;
  color: #BBBECE;
}
.pagination a {
  color: #00062A;
  text-decoration: none;
}
.pagination a:hover {
  text-decoration: underline;
}

.article-header {
  text-align: center;
  margin-bottom: 4rem;
}
@media (min-width: 62rem) {
  .article-header {
    margin-bottom: 5rem;
  }
}
.article-header .article-date-author {
  display: flex;
  justify-content: center;
}
.article-header .article-category {
  position: relative;
  display: inline-block;
  padding: 0.25rem 1rem;
  border: 0.25rem solid #fff;
  border-radius: 1.25rem;
  background-color: #DFCCF9;
}
.article-header .article-image {
  margin-top: -1.25rem;
}

.promotions-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 2rem;
}
@media (min-width: 62rem) {
  .promotions-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }
}

.promotion-card {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
}
.promotion-card .promotion-card-before {
  font-size: 1.125rem;
  font-weight: 700;
  text-decoration: line-through;
  opacity: 0.75;
}
@media (min-width: 62rem) {
  .promotion-card .promotion-card-before {
    font-size: 1.25rem;
  }
}
.promotion-card .promotion-card-after {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
@media (min-width: 62rem) {
  .promotion-card .promotion-card-after {
    font-size: 1.5rem;
  }
}
@media (min-width: 75rem) {
  .promotion-card .promotion-card-after {
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
  }
}
.promotion-card .promotion-card-bg {
  width: 100%;
  height: auto;
}
.promotion-card .promotion-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
}
.promotion-card .promotion-card-info .promotion-card-arrow {
  transition: all 0.2s linear;
  opacity: 0;
  margin-right: 0.5rem;
}
.promotion-card .promotion-card-info .promotion-card-product {
  margin-left: -1.5rem;
  margin-bottom: -1.5625rem;
  transition: all 0.2s linear;
}
.promotion-card .promotion-card-info .promotion-card-text {
  margin: 0;
  color: #fff;
}
@media (min-width: 48rem) {
  .promotion-card .promotion-card-info .promotion-card-text {
    max-width: 75%;
  }
}
.promotion-card .promotion-card-info .promotion-card-heading {
  font-size: 1.25rem;
  font-weight: 700;
}
@media (min-width: 62rem) {
  .promotion-card .promotion-card-info .promotion-card-heading {
    font-size: 1.5rem;
  }
}
@media (min-width: 87.5rem) {
  .promotion-card .promotion-card-info .promotion-card-heading {
    font-size: 1.75rem;
  }
}
.promotion-card.preview {
  max-width: 24.5rem;
  max-height: 24.5rem;
}
.promotion-card.preview:hover {
  color: #fff;
}
.promotion-card.preview:hover .promotion-card-info .promotion-card-heading {
  text-decoration: underline;
}
.promotion-card.preview:hover .promotion-card-info .promotion-card-product {
  transform: scale(1.05);
}
.promotion-card.preview:hover .promotion-card-info .promotion-card-arrow {
  opacity: 1;
  margin-right: 0;
}
@media (min-width: 75rem) {
  .promotion-card.full .promotion-card-heading {
    margin-bottom: 1rem;
  }
}
.promotion-card.full .promotion-card-product {
  margin-bottom: -0.5625rem;
}
.promotion-card.full .promotion-card-bg {
  width: 100%;
  height: 600px;
  object-fit: cover;
}
.promotion-card.full .promotion-card-heading {
  max-width: 70%;
}
@media (min-width: 62rem) {
  .promotion-card.full .promotion-card-heading {
    max-width: 55%;
  }
}
.promotion-card.full .promotion-card-product {
  display: none;
}
@media (min-width: 28rem) {
  .promotion-card.full .promotion-card-product {
    display: block;
  }
}

.promotion-card-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 2rem;
  margin-bottom: 3.5rem;
  background-color: #F5F6F7;
}
@media (min-width: 75rem) {
  .promotion-card-footer {
    flex-direction: row;
  }
}
.promotion-card-footer div:first-of-type {
  margin-bottom: 1rem;
}
@media (min-width: 75rem) {
  .promotion-card-footer div:first-of-type {
    margin-bottom: 0;
    max-width: 60%;
  }
}

.promotion-card-calculation {
  padding: 0 2rem;
}
.promotion-card-calculation div {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
@media (min-width: 62rem) {
  .promotion-card-calculation div {
    font-size: 1.5rem;
  }
}

.numbered-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 2rem;
}
@media (min-width: 48rem) {
  .numbered-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }
}
@media (min-width: 62rem) {
  .numbered-grid {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
  }
}
.numbered-grid .numbered-grid-number {
  font-size: 3.75rem;
  color: #366CCE;
  margin-bottom: 2rem;
}
.numbered-grid .numbered-grid-heading {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
@media (min-width: 62rem) {
  .numbered-grid .numbered-grid-heading {
    font-size: 1.5rem;
  }
}

.ac-products {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 1.5rem;
}
.ac-products .ac-products-pagination {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 2.5rem 0;
  color: #7D8090;
}
.ac-products .ac-products-pagination b {
  color: #00062A;
}
@media (min-width: 62rem) {
  .ac-products .ac-products-pagination {
    flex-direction: row;
  }
}
.ac-products .ac-products-aside {
  position: relative;
  margin-top: -4rem;
  background-color: #fff;
  box-shadow: 0 0.25rem 0.5rem rgba(1, 6, 40, 0.0392156863);
}

.product-detail {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-gap: 1.5rem;
  padding-top: 1rem;
}
@media (min-width: 62rem) {
  .product-detail {
    padding-top: 3rem;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  }
}
.product-detail .product-image {
  position: relative;
  overflow: hidden;
}
.product-detail .product-name {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
@media (min-width: 62rem) {
  .product-detail .product-name {
    font-size: 2.5rem;
  }
}
.product-detail .product-code {
  color: #7D8090;
  font-size: 0.875rem;
}
.product-detail .product-features {
  background-color: #F5F6F7;
  padding: 2rem 2rem 2rem 3rem;
}
.product-detail .product-contact {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  background-color: #005EC5;
  color: #fff;
  padding: 1.5rem;
}

.product-detail-header {
  background-color: #005EC5;
  position: sticky;
  top: 0;
  z-index: 10;
}
.product-detail-header .container {
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media (min-width: 48rem) {
  .product-detail-header .container {
    flex-direction: row;
    justify-content: space-between;
  }
}
.product-detail-header .container .product-name,
.product-detail-header .container .product-navigation {
  width: 100%;
  text-align: center;
}
@media (min-width: 48rem) {
  .product-detail-header .container .product-name,
  .product-detail-header .container .product-navigation {
    width: auto;
    text-align: initial;
  }
}
.product-detail-header .container .product-name,
.product-detail-header .container .product-navigation-link a {
  padding: 0.5rem 0;
}
@media (min-width: 48rem) {
  .product-detail-header .container .product-name,
  .product-detail-header .container .product-navigation-link a {
    padding: 1rem 0;
  }
}
.product-detail-header .container .product-name {
  font-weight: 700;
  font-size: 1rem;
}
@media (min-width: 62rem) {
  .product-detail-header .container .product-name {
    font-size: 1.25rem;
  }
}
.product-detail-header .container .product-navigation {
  display: flex;
  justify-content: center;
  height: auto;
  border-top: 1px solid #366CCE;
  font-size: 0.9rem;
}
@media (min-width: 28rem) {
  .product-detail-header .container .product-navigation {
    font-size: 1rem;
  }
}
@media (min-width: 62rem) {
  .product-detail-header .container .product-navigation {
    border-top: none;
  }
}
.product-detail-header .container .product-navigation .product-navigation-link {
  position: relative;
  display: flex;
  align-items: center;
  margin: 0 0.5rem;
  font-weight: 300;
}
@media (min-width: 62rem) {
  .product-detail-header .container .product-navigation .product-navigation-link {
    margin: 0 0.75rem;
  }
  .product-detail-header .container .product-navigation .product-navigation-link::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0.1875rem;
    background-color: #fff;
    display: none;
  }
  .product-detail-header .container .product-navigation .product-navigation-link:hover::before, .product-detail-header .container .product-navigation .product-navigation-link.active::before {
    display: block;
  }
}
.product-detail-header .container .product-navigation .product-navigation-link a {
  text-decoration: none;
  color: #fff;
}
.product-detail-header .container .product-navigation .product-navigation-link:first-of-type {
  margin-left: 0;
}
.product-detail-header .container .product-navigation .product-navigation-link:last-of-type {
  margin-right: 0;
}

.icons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  grid-gap: 2rem;
  margin-bottom: 3rem;
}
@media (min-width: 62rem) {
  .icons-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr;
    margin-bottom: 5rem;
  }
}
.icons-grid img {
  margin-bottom: 1.5rem;
}
.icons-grid .icons-grid-small {
  font-size: 0.875rem;
  font-weight: 300;
  color: #7D8090;
}
@media (min-width: 62rem) {
  .icons-grid .icons-grid-small {
    font-size: 1rem;
  }
}
.icons-grid .icons-grid-large {
  font-size: 1.625rem;
  font-weight: 700;
}
@media (min-width: 62rem) {
  .icons-grid .icons-grid-large {
    font-size: 2rem;
  }
}

.specs-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  margin-bottom: 1.5rem;
}
@media (min-width: 62rem) {
  .specs-grid {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr;
    grid-gap: 2rem;
    margin-bottom: 2.5rem;
  }
}
.specs-grid .specs-grid-column {
  display: flex;
  flex-direction: column;
  background-color: #F5F6F7;
}
.specs-grid .specs-grid-column > div {
  border-bottom: 0.0625rem solid #fff;
  padding: 1.5rem;
  height: 50%;
}
.specs-grid .specs-grid-column .specs-grid-small {
  font-size: 0.875rem;
  color: #7D8090;
  margin-bottom: 0.5rem;
}
.specs-grid .specs-grid-column .specs-grid-large {
  font-size: 1rem;
  font-weight: 700;
}

.downloads-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  column-gap: 1rem;
}
@media (min-width: 62rem) {
  .downloads-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }
}
.downloads-grid .downloads-grid-item {
  display: flex;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  background-color: #F0F7FF;
  cursor: pointer;
  text-decoration: none;
  border-bottom: 0.0625rem solid #fff;
}
.downloads-grid .downloads-grid-item .downloads-grid-icon,
.downloads-grid .downloads-grid-item .downloads-grid-hover {
  margin-right: 1rem;
}
.downloads-grid .downloads-grid-item .downloads-grid-hover {
  display: none;
}
.downloads-grid .downloads-grid-item .downloads-grid-small {
  color: #7D8090;
  font-size: 0.875rem;
  text-align: end;
  margin-left: 1rem;
}
.downloads-grid .downloads-grid-item .downloads-grid-large {
  color: #005EC5;
  font-weight: 700;
}
.downloads-grid .downloads-grid-item:hover {
  background-color: #366CCE;
}
.downloads-grid .downloads-grid-item:hover .downloads-grid-icon {
  display: none;
}
.downloads-grid .downloads-grid-item:hover .downloads-grid-hover {
  display: block;
}
.downloads-grid .downloads-grid-item:hover .downloads-grid-small,
.downloads-grid .downloads-grid-item:hover .downloads-grid-large {
  color: #fff;
}

#specifikace,
#podpora,
#porovnani-modelu {
  scroll-behavior: smooth;
  scroll-margin-top: 78px;
}
@media (min-width: 48rem) {
  #specifikace,
  #podpora,
  #porovnani-modelu {
    scroll-margin-top: 57px;
  }
}
@media (min-width: 62rem) {
  #specifikace,
  #podpora,
  #porovnani-modelu {
    scroll-margin-top: unset;
  }
}

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