@charset "UTF-8";
@import url("//fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap");
.background-white-shade {
  background-color: #f5faff;
}

/*=========================================
=            Convert px to rem            =
=========================================*/
/*=====================================
  =            Media queries            =
  =====================================*/
/*============================
  =            MISC            =
  ============================*/
@font-face {
  font-family: "BaskervilleURW-Reg";
  src: url("https://lieftinglegal.nl/assets/fonts/BaskervilleURW-Reg.eot") format("eot"),
    url("https://lieftinglegal.nl/assets/fonts/BaskervilleURW-Reg.svg") format("svg"),
    url("https://lieftinglegal.nl/assets/fonts/BaskervilleURW-Reg.ttf") format("ttf"),
    url("../fonts/BaskervilleURW-Reg.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "BaskervilleURW-Med";
  src: url("https://lieftinglegal.nl/assets/fonts/BaskervilleURW-Med.eot") format("eot"),
    url("https://lieftinglegal.nl/assets/fonts/BaskervilleURW-Med.svg") format("svg"),
    url("https://lieftinglegal.nl/assets/fonts/BaskervilleURW-Med.ttf") format("ttf"),
    url("../fonts/BaskervilleURW-Med.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

h1,
h2,
h3 {
  font-family: "BaskervilleURW-Med", sans-serif;
  font-size: 72px;
  letter-spacing: 4px;
  color: #ffffff;
  margin: 0 auto;
  padding: 0;
  display: block;
  text-align: center;
}

@media screen and (max-width: 768px) {
  h1,
  h2,
  h3 {
    font-size: 48px;
  }
}

@media screen and (max-height: 667px) {
  h1,
  h2,
  h3 {
    font-size: 36px;
  }
}

h1.color-black,
h2.color-black,
h3.color-black {
  color: #000d1a;
}

h1 img,
h2 img,
h3 img {
  display: block;
  position: relative;
  top: -25px;
}

@media screen and (max-width: 768px) {
  h1 img,
  h2 img,
  h3 img {
    /* display: none; */
    margin: 0 auto;
    position: absolute;
    top: 38px;
    left: 50%;
    transform: translateX(-50%);
  }
}

h2 {
  font-size: 40px;
  color: #000d1a;
  text-align: left;
  letter-spacing: 1px;
}

@media screen and (max-width: 480px) {
  h2 {
    font-size: 20px;
  }
}

h3 {
  font-size: 24px;
  color: #000d1a;
  text-align: left;
  letter-spacing: 1px;
}

p {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #003366;
  line-height: 1.8;
  margin: 16px 0;
  display: block;
}

.btn {
  background: transparent;
  border: 1px solid #99ccff;
  border-radius: 4px;
  padding: 8px 16px;
  color: #0065cb;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  outline: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 8px;
  cursor: pointer;
  -webkit-transition: background 0.2s ease-in-out, color 0.2s ease-in-out;
  transition: background 0.2s ease-in-out, color 0.2s ease-in-out;
}

.btn.color-white {
  color: #f5faff;
}

.btn:hover,
.btn:active {
  background: #99ccff;
}

.btn img {
  max-width: 16px;
}

.btn.dark {
  background: #003366;
  color: #f5faff;
}

nav {
  background: #003366;
  width: 100%;
  padding: 10px 0;
  position: fixed;
  z-index: 100;
}

nav .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  place-items: center;
}

@media screen and (max-width: 480px) {
  nav .container img {
    max-width: 160px;
  }
}

nav .container ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  place-items: center;
  gap: 20px;
}

@media screen and (max-width: 1024px) {
  nav .container ul {
    display: none;
  }
}

nav .container ul li {
  padding: 14px 10px;
}

nav .container ul li a:not(.btn) {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #cce5ff;
  text-decoration: none;
  -webkit-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}

nav .container ul li a:not(.btn).active {
  color: #f5faff;
  font-weight: 600;
}

nav .container ul li a:not(.btn):hover {
  color: #f5faff;
}

nav .container .hamburger {
  width: 32px;
  height: 24px;
  position: relative;
  cursor: pointer;
  display: none;
}

@media screen and (max-width: 1024px) {
  nav .container .hamburger {
    display: block;
  }
}

nav .container .hamburger div {
  background: #f5faff;
  width: 100%;
  height: 3px;
  border-radius: 2px;
  position: absolute;
  top: 0;
}

nav .container .hamburger div:nth-of-type(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

nav .container .hamburger div:last-of-type {
  top: initial;
  bottom: 0;
}

nav .dropdown {
  position: relative;
  transition: background 0.2s ease-in-out;
}

nav .dropdown .dropdown__items {
  background: #052444;
  min-width: 100%;
  height: 0;
  overflow: hidden;
  position: absolute;
  top: 46px;
  left: 0;
  transition: height 0.2s ease-in-out;
}

nav .dropdown.open .dropdown__items {
  height: 154px;
  transition: height 0.2s ease-in-out;
}

nav .dropdown.open {
  background: #052444;
}

nav .dropdown .dropdown__items div:not(:last-of-type) {
  display: block;
  margin-bottom: 16px;
}

nav .dropdown .dropdown__items div {
  padding: 0px 10px 0px 10px;
}

.mobile__menu {
  background: #003366;
  width: 100%;
  min-height: 100vh;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: fixed;
  z-index: 101;
  padding: 0 20px 20px;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.25s ease-in-out;
  transition: -webkit-transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out, -webkit-transform 0.25s ease-in-out;
}

@media screen and (max-width: 1024px) {
  .mobile__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.mobile__menu.open {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.mobile__menu .nav {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}

.mobile__menu .nav li {
  display: block;
  margin-bottom: 14px;
}

.mobile__menu .nav li:last-of-type {
  margin-bottom: 0;
}

.mobile__menu .nav li a {
  font-size: 24px;
  color: #f5faff;
  text-decoration: none;
}

.mobile__menu .nav li a.active {
  color: #0065cb;
}

.mobile__menu .nav li .inner__dropdown {
  margin: 0;
  padding: 0;
  height: 0;
  -webkit-transition: height 0.2s;
  transition: height 0.2s;
  overflow: hidden;
}

.mobile__menu .nav li .inner__dropdown.open {
  margin: 20px 0;
  height: 160px;
}

.mobile__menu .nav li .inner__dropdown li a {
  font-size: 16px;
  color: #cce5ff;
  font-weight: normal;
}

.mobile__menu .buttons {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}

.mobile__menu .buttons .btn {
  width: 100%;
  background: #0065cb;
  border: 1px solid #99ccff;
  border-radius: 4px;
  padding: 12px 16px;
  color: #ffffff;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  outline: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 8px;
  cursor: pointer;
  -webkit-transition: background 0.2s ease-in-out, color 0.2s ease-in-out;
  transition: background 0.2s ease-in-out, color 0.2s ease-in-out;
}

.mobile__menu .buttons .btn span {
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
}

.mobile__menu .bar {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 16px 0;
}

.mobile__menu .close {
  width: 32px;
  height: 32px;
  position: relative;
}

/* .mobile__menu .close div {
  background: #f5faff;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  position: absolute;
  top: 10px;
  left: 0;
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
  -webkit-transform-origin: center;
  transform-origin: center;
} */

/* .mobile__menu .close div:last-of-type {
  left: initial;
  right: 0;
  -webkit-transform: rotate(-45deg) translateY(-50%);
  transform: rotate(-45deg) translateY(-50%);
} */

header {
  background-color: #003366;
  background-image: url("../images/visual-header-2x.png");
  background-repeat: no-repeat;
  background-size: 466px;
  background-position: bottom right;
  width: 100%;
  height: 90vh;
  padding-top: 86px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  place-content: center;
  place-items: center;
}

@media screen and (max-width: 640px) {
  header {
    background-size: contain;
  }
}

header.sub {
  background-image: none;
  height: 200px;
}

header.sub h1,
header.sub h2,
header.sub h3 {
  font-size: 40px;
}

@media screen and (max-width: 640px) {
  header.sub h1,
  header.sub h2,
  header.sub h3 {
    font-size: 32px;
    word-wrap: break-word;
    word-break: break-all;
  }
}

header.sub .container {
  height: 100% !important;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  padding-bottom: 40px;
}

header.sub .header__image {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  position: absolute;
  top: 90px;
}

header.sub .header__image img {
  -o-object-fit: cover;
  object-fit: cover;
  max-width: 100%;
  width: 100%;
  max-height: 500px;
  border-radius: 24px;
}

@media screen and (max-width: 768px) {
  header.sub .header__image img {
    border-radius: 0;
    max-height: 250px;
  }
}

header.sub .header__image .title__wrapper {
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(0, 51, 102, 0)),
    to(#003366)
  );
  background-image: linear-gradient(
    180deg,
    rgba(0, 51, 102, 0) 0%,
    #003366 100%
  );
  width: 100%;
  height: 100px;
  position: absolute;
  bottom: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 20px;
  border-radius: 0px 0px 24px 24px;
}

@media screen and (max-width: 768px) {
  header.sub .header__image .title__wrapper {
    border-radius: 0;
  }
}

header.sub .header__image .title__wrapper h1,
header.sub .header__image .title__wrapper h2,
header.sub .header__image .title__wrapper h3 {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  place-content: center;
  place-items: flex-end;
}

header .container {
  max-width: 900px;
  height: 70%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

header .container h1 {
  display: flex;
  gap: 24px;
}

@media screen and (max-height: 896px) {
  header .container {
    height: 80%;
    gap: 20px;
  }
}

@media screen and (max-width: 640px) {
  header .container h1 {
    flex-direction: column;
    gap: 16px;
    position: relative;
  }
}

header .specialised__container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr) [3];
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 80px;
  column-gap: 80px;
  row-gap: 16px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  header .specialised__container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

header .specialised__container span a,
header .specialised__container span {
  color: #f5faff;
  text-decoration: none;
}

header .specialised__container span:not(.intro) {
  font-size: 24px;
  font-weight: 500;
}

@media screen and (max-height: 896px) {
  header .specialised__container span:not(.intro) {
    font-size: 18px;
  }
}

header .specialised__container span.intro {
  grid-column: 1/-1;
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
}

header .persona {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (auto) [2];
  grid-template-columns: repeat(2, auto);
  place-content: center;
  place-items: center;
  margin: 0 auto;
  gap: 40px;
}

@media screen and (max-width: 640px) {
  header .persona {
    gap: 20px;
  }
}

header .persona img {
  max-width: 170px;
  width: 100%;
}

@media screen and (max-height: 896px) {
  header .persona img {
    max-width: 100px;
  }
}

header .persona span {
  font-family: "BaskervilleURW-Reg", sans-serif;
  font-size: 24px;
  color: #f5faff;
  display: block;
}

@media screen and (max-height: 896px) {
  header .persona span {
    font-size: 18px;
  }
}

header .persona cite {
  display: block;
  color: #cce5ff;
  font-style: normal;
}

.usp__bar {
  width: 100%;
  height: 62px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  place-content: center;
  place-items: center;
  background: #cce5ff;
}

@media screen and (max-width: 640px) {
  .usp__bar {
    min-height: 62px;
    height: 100%;
    padding: 10px 0;
  }
}

.usp__bar .container {
  gap: 40px;
}

@media screen and (max-width: 640px) {
  .usp__bar .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }
}

.usp__bar div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  place-content: center;
  place-items: center;
  gap: 10px;
}

.usp__bar div img {
  max-width: 20px;
}

section {
  width: 100%;
  margin: 0 auto;
  padding: 100px 0;
}

section .container {
  max-width: 1024px;
}

section.onderwerpen h3 {
  text-align: center;
}

section.onderwerpen ul {
  max-width: 880px;
  width: 100%;
  margin: 48px auto 0;
  padding: 0;
  list-style: none;
  columns: 3;
}

@media screen and (max-width: 768px) {
  section.onderwerpen ul {
    columns: 1;
  }
}

section.onderwerpen ul li {
  display: flex;
  flex-direction: row;
  gap: 12px;
}

section.onderwerpen ul li img {
  max-width: 18px;
}

section.onderwerpen ul li span {
  width: 100%;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #003366;
  line-height: 1.8;
  display: block;
}

section.intro .container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 60% 40%;
  grid-template-columns: 60% 40%;
}

@media screen and (max-width: 1024px) {
  section.intro .container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: (1fr) [2];
    grid-template-rows: repeat(2, 1fr);
  }

  section.intro.cta .container {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }
}

section.intro .container img:not(.checkmark, .arrow) {
  max-width: 320px;
  position: relative;
  top: -50px;
}

@media screen and (max-width: 1024px) {
  section.intro .container img:not(.checkmark, .arrow) {
    top: 0;
    -ms-grid-row: 1;
    grid-row: 1;
    margin: 0 auto;
  }
}

section.intro .container img.cta:not(.checkmark, .arrow) {
  max-width: 400px;
  width: 100%;
  position: absolute;
  top: -190px;
  right: 0;
}

@media screen and (max-width: 1024px) {
  section.intro .container img.cta:not(.checkmark, .arrow) {
    position: static;
    top: 0;
    -ms-grid-row: 1;
    grid-row: 1;
    margin: 0 auto;
  }
}

section.intro p {
  margin: 32px 0;
}

section.intro cite {
  font-weight: 500;
  font-size: 14px;
  font-style: normal;
  color: #99ccff;
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}

section.intro .bullets {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 30px;
}

section.intro.cta .bullets {
  margin-top: 30px;
}

section.intro.cta {
  background: #f5faff;
}

section.intro.cta .container {
  position: relative;
}

@media screen and (max-width: 768px) {
  section.intro .bullets {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr) [2];
    grid-template-columns: repeat(2, 1fr);
  }
}

section.intro .bullets div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  place-items: center;
  place-content: center;
  gap: 10px;
}

@media screen and (max-width: 768px) {
  section.intro .bullets div {
    place-content: flex-start;
  }
}

section.intro .bullets div .checkmark {
  max-width: 20px;
}

section.intro .bullets span {
  color: #003366;
}

section.experience {
  background: #f5faff;
}

section.experience .col-2 {
  width: 100%;
  display: -ms-grid;
  display: grid;
  gap: 80px;
  -ms-grid-columns: auto 1fr;
  grid-template-columns: auto 1fr;
  place-items: center;
}

@media screen and (max-width: 640px) {
  section.experience .col-2 {
    gap: 40px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

section.experience .col-2:first-of-type {
  margin-bottom: 48px;
}

section.experience .col-2 img {
  max-width: 210px;
}

section.workflow .treeview {
  min-width: 420px;
  background-color: #ffffff;
  background-image: url("../images/visual-dark-2x.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom right;
  border: 1px solid #cce5ff;
  border-radius: 16px;
  padding: 20px;
}

@media screen and (max-width: 480px) {
  section.workflow .treeview {
    min-width: 300px;
    width: 100%;
  }
}

section.workflow .treeview ul {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

section.workflow .treeview ul li:nth-child(1n + 1) {
  padding-left: 10px;
}

section.workflow .treeview ul li:nth-child(1n + 2) {
  padding-left: 20px;
}

section.workflow .treeview ul li:nth-child(1n + 3) {
  padding-left: 30px;
}

section.workflow .treeview ul li:nth-child(1n + 4) {
  padding-left: 40px;
}

section.workflow .treeview ul li:nth-child(1n + 5) {
  padding-left: 50px;
}

section.workflow .treeview ul li:nth-child(1n + 6) {
  padding-left: 60px;
}

section.workflow .treeview ul li {
  margin: 12px 0;
  color: #003366;
  padding-left: 0;
}

section.workflow .treeview ul li:before {
  content: "↳";
  width: 16px;
  height: 24px;
  display: inline;
  color: #00cb78;
  margin-right: 8px;
}

section.workflow .treeview ul li:first-of-type:before {
  content: "";
  display: none;
}

section.blog__summary .container {
  max-width: 1295px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(298px, 1fr)) [auto-fit];
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 20px;
}

@media screen and (max-width: 1024px) {
  section.blog__summary .container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 640px) {
  section.blog__summary .container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 480px) {
  section.blog__summary .container {
    grid-template-columns: 1fr;
  }
}

section.template__blog {
  padding-top: 410px;
  position: relative;
}

@media screen and (max-width: 768px) {
  section.template__blog {
    padding-top: 150px;
  }

  section.template__blog:before {
    display: none !important;
  }
}

section.template__blog .container {
  max-width: 940px;
}

section.template__blog article p {
  margin: 20px 0;
  display: block;
}

section.template__blog article p strong {
  display: block;
  font-size: 18px;
  margin-bottom: 4px;
}

section.template__blog article img {
  border-radius: 24px;
  margin: 20px auto;
  max-width: 100%;
}

section.template__blog article figcaption {
  font-size: 14px;
  color: #99ccff;
}

section.template__blog article blockquote {
  font-family: "BaskervilleURW-Med", sans-serif;
  font-size: 24px;
  color: #0065cb;
  text-align: center;
  display: block;
  margin: 40px auto;
}

section.template__blog article blockquote span {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #99ccff;
}

section {
  position: relative;
}

section:not(
    .intro,
    .experience,
    .workflow,
    .blog__slider,
    .blog-prevnext
  ):before {
  content: "";
  background-image: url("https://lieftinglegal.nl/assets/images/visual-header-new@2x.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position-x: right;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  z-index: -1;
}

.tags {
  width: 100%;
  display: block;
  margin: 10px 0;
}

.tags span.tag,
.tags span.tag a,
.tags time {
  font-size: 10px;
  color: #99ccff;
  text-decoration: none;
}

.blog__card {
  width: 100%;
}

.blog__card img.thumb {
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 16px;
  aspect-ratio: 2/1.3;
}

.blog__card p {
  position: relative;
  margin-top: 0;
}

.blog__card p:after {
  content: "";
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(255, 255, 255, 0.01)),
    to(#ffffff)
  );
  background-image: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.01) 0%,
    #ffffff 100%
  );
  width: 100%;
  height: 50px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.blog__slider .container {
  position: relative;
}

.swiper-wrapper {
  padding: 40px 0;
}

.swiper-wrapper p:after {
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(255, 255, 255, 0.01)),
    to(#f5faff)
  ) !important;
  background-image: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.01) 0%,
    #f5faff 100%
  ) !important;
}

.swiper-wrapper p.white:after {
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(255, 255, 255, 0.01)),
    to(white)
  ) !important;
  background-image: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.01) 0%,
    white 100%
  ) !important;
}

.swiper-scrollbar {
  background: #cce5ff;
  max-width: 300px;
  left: 50% !important;
  bottom: 0 !important;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  padding: initial !important;
}

@media screen and (max-width: 768px) {
  .swiper-scrollbar {
    max-width: 100%;
  }
}

.swiper-scrollbar-drag {
  background: #0065cb;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  content: "";
}

.swiper-button-next {
  right: -20px;
}

.swiper-button-prev {
  left: -30px;
}

@media screen and (max-width: 768px) {
  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
}

ol {
  margin: 0;
  padding: 0 0 0 16px;
  display: block;
}

ol li,
ol li a {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #003366;
  line-height: 1.8;
  margin: 16px 0;
}

ol li a {
  text-decoration: underline;
  color: #0065cb;
}

footer {
  background-color: #000d1a;
  background-image: url("../images/visual-dark-2x.png");
  background-repeat: no-repeat;
  background-size: 200px;
  background-position: bottom right;
  padding: 40px 0 0 0;
  position: relative;
}

footer:before {
  content: "";
  width: 100%;
  height: 10px;
  background: #003366;
  display: block;
  position: absolute;
  top: -10px;
}

footer .subtitle {
  font-family: "BaskervilleURW-Reg", sans-serif;
  font-size: 24px;
  color: #99ccff;
  display: block;
  margin-bottom: 16px;
}

@media screen and (max-width: 480px) {
  footer .col-25 div:first-of-type,
  footer .col-25 div:last-of-type {
    grid-column: 1/-1;
  }
}

footer p {
  color: #cce5ff;
  font-size: 14px;
}

footer ul {
  margin: 0;
  padding: 0;
}

footer ul li {
  padding: 0;
  display: block;
  margin-bottom: 10px;
}

footer ul li a {
  color: #cce5ff;
  font-size: 14px;
  text-decoration: none;
  -webkit-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}

footer ul li a:hover {
  color: #0065cb;
}

footer ul.contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  place-items: center;
}

footer ul.contact li {
  width: 100%;
  margin-bottom: 30px;
}

@media (hover: none) and (pointer: coarse) and (max-width: 640px) {
  footer ul.contact li a {
    width: 100%;
    background: #0065cb;
    border: 1px solid #99ccff;
    border-radius: 4px;
    padding: 12px 16px;
    color: #ffffff;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    outline: none;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    gap: 8px;
    cursor: pointer;
    -webkit-transition: background 0.2s ease-in-out, color 0.2s ease-in-out;
    transition: background 0.2s ease-in-out, color 0.2s ease-in-out;
  }
  footer ul.contact li a span {
    position: absolute;
    left: 50%;
    -webkit-transform: translate(-50%);
    transform: translate(-50%);
  }
}

footer ul.contact li img {
  margin-right: 24px;
}

footer .sub__footer {
  background: #00050a;
  padding: 20px 0;
  margin-top: 80px;
}

@media screen and (max-width: 640px) {
  footer .sub__footer {
    margin-top: 20px;
  }
}

footer .sub__footer .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 480px) {
  footer .sub__footer .container {
    display: block;
  }
}

footer .sub__footer .container span,
footer .sub__footer .container a {
  color: #cce5ff;
  font-size: 12px;
  text-decoration: none;
  -webkit-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}

footer .sub__footer .container a:hover {
  color: #0065cb;
}

footer .sub__footer .container a:not(:last-of-type) {
  margin-right: 12px;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  background: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  opacity: 0;
}

body.visible {
  opacity: 1;
  -webkit-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}

.container {
  max-width: 1295px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
  display: block;
}

.col-50 {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr) [2];
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}

@media screen and (max-width: 640px) {
  .col-50 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.col-50.v-center {
  place-items: center;
}

.col-25 {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr) [4];
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}

@media screen and (max-width: 640px) {
  .col-25 {
    -ms-grid-columns: (1fr) [2];
    grid-template-columns: repeat(2, 1fr);
  }
}

ul.with__bullets,
section .container .col-50 ul,
section article ul {
  width: 100%;
  margin: 10px 0;
  padding: 0;
  list-style: none;
}

ul.with__bullets li,
section .container .col-50 ul li,
section article ul li {
  width: 100%;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #003366;
  line-height: 1.8;
  display: block;
}

ul.with__bullets li:before,
section .container .col-50 ul li:before,
section article ul li:before {
  content: "↳";
  /* background-image: url("../icons/badge-check.svg");
  background-repeat: no-repeat;
  background-size: contain; */
  width: 16px;
  height: 16px;
  margin-right: 10px;
  display: inline-block;
  color: #00cb78;
  font-size: 12px;
}
/*# sourceMappingURL=style.css.map */