@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@300;400;500;600;700&family=Montserrat:wght@300;400;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    /* COLORS */
    --white: rgba(255, 255, 255, 1);
    --black: rgba(0, 0, 0, 1);
    --dark-gray: rgba(46, 46, 46, 1);
    --gray: rgba(138, 135, 159, 1);
    --light-gray: rgba(178, 176, 193, 1);
    --dark-blue: rgba(23, 17, 81, 1);
    --middle-blue: rgba(14, 99, 255, 1);
    --blue: rgba(15, 117, 238, 1);
    --light-blue: rgba(231, 240, 255, 1);
    --light-gray-blue: rgba(242, 245, 250, 1);

    /* GRADIENTS */
    --blue-gradient: linear-gradient(0deg, #1086DD 0%, #0E63FF 100%);


    /* FONT SIZES */
    --xs: 0.7vw;
    --m: 1vw;
    --s: 0.8vw;
    --l: 1.2vw;
    --xl: 1.5vw;
    --xlb: 2.2vw;
    --xxl: 3.2vw;
    --xxxl: 5vw;
  
    /* FONT FAMILY */
    --montserrat: "Montserrat";
    --archivo: "Archivo";
    --poppins: "Poppins";
  }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  html, body {
    scroll-behavior: smooth;
    overflow-x: hidden;
    font-family: "Poppins";
    font-weight: 300;
  }


  body::-webkit-scrollbar {
    width: 0.35vw;
  }
   
  body::-webkit-scrollbar-track {
    background-color: #313643;
  }
   
  body::-webkit-scrollbar-thumb {
    background: #fff;
    border-radius: 0.3vw;
  }


/* GENERAL */
.only-mobile {
    display: none !important;
}

.hide {
  display: none !important;
  visibility: hidden !important;
}

.row-reverted {
  flex-direction: row-reverse !important;
}

/* MARGINS */

.mt-02 {
  margin-top: 0.3vw;
}

.mt-1 {
  margin-top: 1vw;
}

.mt-2 {
  margin-top: 2vw;
}

.mt-3 {
  margin-top: 3vw;
}

.mt-4 {
  margin-top: 4vw;
}

.mt-6 {
  margin-top: 6vw;
}

.mt-8 {
  margin-top: 8vw;
}

.mb-1 {
  margin-bottom: 1vw;
}

.mb-2 {
  margin-bottom: 2vw;
}

.mb-3 {
  margin-bottom: 3vw;
}

.mb-4 {
  margin-bottom: 4vw;
}

.mb-6 {
  margin-bottom: 6vw;
}

.mb-8 {
  margin-bottom: 8vw;
}

/* PADDINGS */

.padding-10 {
  padding: 0 10vw;
}

.padding-20 {
  padding: 0 20vw;
}

.padding-30 {
  padding: 0 30vw;
}

/* ROTATIONS */

.rotate-90 {
  transform: rotate(90deg);
}

.rotate-180 {
  transform: rotate(180deg);
}

.rotate-270 {
  transform: rotate(270deg);
}

/* FLEX */
.flex {
  display: flex;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}


/* TITLES, SUBTITLES */

/* FONT FAMILIES */
.montserrat {
  font-family: var(--montserrat) !important;
}

.archivo {
  font-family: var(--archivo) !important;
}

.poppins {
  font-family: var(--poppins) !important;
}

/* TRANSFORMATIONS */

.uppercase {
  text-transform: uppercase !important;
}

.lowercase {
  text-transform: lowercase !important;
}

.title-case {
  text-transform: capitalize !important;
}

/* FONT SIZES */

.xxxl {
  font-size: var(--xxxl) !important;
}

.xxl {
  font-size: var(--xxl) !important;
}

.xlb {
  font-size: var(--xlb) !important;
}

.xl {
  font-size: var(--xl) !important;
}

.l {
  font-size: var(--l) !important;
}

.m {
  font-size: var(--m) !important;
}

.s {
  font-size: var(--s) !important;
}

.xs {
  font-size: var(--xs) !important;
}

/* ALIGNMENTS */

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

.text-right {
  text-align: right !important	;
}

.text-left {
  text-align: left !important	;
}

.items-center {
  align-items: center !important;
}

.items-flex-start {
  align-items: flex-start !important;
}

.items-flex-end {
  align-items: flex-end !important;
}

.self-center {
  align-self: center !important;
}

.self-start {
  align-self: flex-start !important;
}

.self-end {
  align-self: flex-end !important;
}


/* COLORS */

.white {
  color: var(--white) !important;
}

.black {
  color: var(--black) !important;
}

.dark-gray {
  color: var(--dark-gray) !important;
}

.gray {
  color: var(--gray) !important;
}

.light-gray {
  color: var(--light-gray) !important;
}

.dark-blue {
  color: var(--dark-blue) !important;
}

.middle-blue {
  color: var(--middle-blue) !important;
}

.blue {
  color: var(--blue) !important;
}

.light-blue {
  color: var(--light-blue) !important;
}

/* FONT WEIGHTS */

.fw-300 {
  font-weight: 300 !important;
}

.fw-400 {
  font-weight: 400 !important;
}

.fw-500 {
  font-weight: 500 !important;
}

.fw-600 {
  font-weight: 600 !important;
}

.fw-700 {
  font-weight: 700 !important;
}

/* LINE HEIGHT */

.lh-100 {
  line-height: 100% !important;
}

.lh-120 {
  line-height: 120% !important;
}

.lh-140 {
  line-height: 140% !important;
}

.lh-160 {
  line-height: 160% !important;
}

.lh-180 {
  line-height: 180% !important;
}

.lh-200 {
  line-height: 200% !important;
}

/* WIDTH */

.w-40 {
  width: 40%;
}

.w-50 {
  width: 50%;
}

.w-60 {
  width: 60%;
}

.w-70 {
  width: 70%;
}

.w-80 {
  width: 80%;
}

.w-90 {
  width: 90%;
}

.w-100 {
  width: 100%;
}

/* TITLES */
h3 {
  font-size: 1.5vw !important;
  color: var(--dark-blue);
  font-family: var(--montserrat);
  font-weight: 700 !important;
  line-height: 140%;
}



/* MAIN */

.main {
  z-index: 10 !important;
}

/* NAVIGATION */

.navigation-container {
  display: flex;
  flex-direction: row;
  height: 6vw;
  width: 100%;
  padding: 0 6vw;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 1);
}

.navigation-container .logo img {
  height: 2.5vw;
  width: auto;
}

.navigation-container .chat img {
  height: 2vw;
  width: auto;
}

.navigation-container .menu {
  display: flex;
  flex-direction: row;
  gap: 3vw;
}

.navigation-container .menu a:link, .navigation-container .menu a:visited {
  color: var(--dark-gray);
  font-family: var(--archivo);
  font-size: var(--s);
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.2vw;
  text-decoration: none;
  text-transform: uppercase;
}

.navigation-container .menu a:link.active, .navigation-container .menu a:visited.active {
  text-decoration: underline solid var(--blue) 0.15vw;
  text-underline-offset: 0.4vw;
}

/* HERO BANNER */

#background-video {
  width: 100vw;
  height: 56.25vw;
  object-fit: cover;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -10 !important;
  background: rgba(255, 255, 255, 1);
}

.background-video-overlay {
  width: 100vw;
  height: 56.25vw;
  object-fit: cover;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -9 !important;
  background: linear-gradient(180deg, rgba(23, 17, 81, 0.00) 0%, rgba(23, 17, 81, 0.8) 32%, rgba(23, 17, 81, 0.8) 75%, rgba(23, 17, 81, 0.00) 100%);
  box-shadow: 0px -3px 37px 0px rgba(0, 0, 0, 0.25);
}

.hero-container {
  margin-top: 10vw;
  display: flex;
  flex-direction: column;
  gap: 2vw;
  align-items: center;
}

.hero-container .buttons-container {
  display: flex;
  flex-direction: row;
  gap: 2vw;
}

.hero-container p {
  width: 50%;
}

.hero-container .button {
  border: 0.1vw solid var(--white);
  padding: 1.5vw 4vw;
  border-radius: 0.3vw;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  flex-shrink: 0;
  flex-grow: 0;
  color: var(--white);
  text-align: center;
  font-family: var(--archivo);
  font-size: var(--m);
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
  transition: all 0.4s ease-in-out;
  backdrop-filter: blur(15px);
}

.text-shadow {
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.hero-container .button:hover {
  background: var(--blue-gradient);
  fill: var(--blue-gradient);
  cursor: pointer;
  border: 0.1vw solid rgba(15 , 117, 238, 1);

}

/* NEWS SECTION */

.news-container {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2vw;
  width: 100%;
  margin-top: 20vw;
  padding: 6vw;
  align-items: flex-start;
}

.news-column-container {
  display: flex;
  flex-direction: column;
  gap: 1vw;
  align-items: center;
  flex-grow: 0;
  flex-shrink: 0;
}

.subtitle-container, .subtitle-container-row {
  display: flex;
  gap: 1vw;
}

.subtitle-container {
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.subtitle-container-row {
  flex-direction: row;
  align-items: center;
}

.subtitle-line {
  background-color: var(--blue);
  height: 0.2vw;
  width: 3vw;
}

.latest-news-title {
  display: flex;
  align-items: flex-start !important;
  align-self: flex-start !important;
  justify-content: left !important;
}

.news-list-container {
  display: flex;
  flex-direction: column;
  gap: 1.5vw;
  background: var(--light-gray-blue);
  padding: 2vw;
  width: 100%;
  border-radius: 0.3vw;
  flex-grow: 0;
  flex-shrink: 0;
}

.news-article-container {
  display: flex;
  flex-direction: column;
  gap: 1vw;
}

.news-divider {
  width: 100%;
  background-color: var(--white);
  height: 0.2vw;
}

.news-slider-title-container {
  display: flex;
  flex-direction: column;
  gap: 1.5vw;
}

.news-slider-container {
  width: 100%;
  padding: 0 6vw 6vw 6vw;
  display: flex;
  flex-direction: column;
  gap: 2vw;
}

.news-slider-top {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  padding-left: 1vw;
}

.slider-container {
  width: 100%;
}

.slider-item-container {
  display: flex;
  flex-direction: column;
  gap: 1vw;
  background-color: var(--white);
  border: 0.1vw solid #ECEEF3;
  border-radius: 0.3vw;
  width: 20.5vw;
  margin: 0 0.7vw;
  padding: 0 0 1vw 0;
  filter: drop-shadow(0px 15px 6px rgba(190, 195, 204, 0.13));
  transition: all 0.4s ease-in-out;
}

.slider-item-container:hover {
  cursor: pointer;
}

.slider-item-container img {
  width: 100%;
  height: 10vw;
  object-fit: cover;
  border-radius: 0.3vw 0.3vw 0 0;
}

.slider-item-container div, .slider-item-container p {
  padding: 0 1vw;
}

.tag {
  padding: 1.5vw 2vw;
  background-color: var(--light-blue);
  width: fit-content;
  margin-left: 1vw;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 1.5vw;
  border-radius: 0.2vw;
}

.read-more {
  margin-left: 1vw;
  padding: 2vw 2vw;
  background-color: var(--light-gray-blue);
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2vw;
  border-radius: 0.2vw;
  transition: all 0.4s ease-in-out;
}

.read-more:hover {
  transform: scale(1.05);
  cursor: pointer;
}

.slider-item-bottom-space {
  height: 3vw;
}


/* FOOTER */

ul, li {
  margin: 0 !important;
  padding: 0 !important;
  list-style-type: none !important;
}

.footer-container {
  margin-top: 2vw;
  display: flex;
  flex-direction: row;
  width: 100%;
  padding: 0 8vw;
  gap: 2vw;
}

.footer-column-one, .footer-column-two, .footer-column-three, .footer-column-four {
  display: flex;
  flex-direction: column;
  gap: 2vw;
  align-items: flex-start !important;
}

.footer-column-one img {
  height: 3.5vw;
  width: auto;
}

.footer-column-one {
  width: 33vw;
  padding-right: 8vw;
}

.footer-column-two {
  width: 15vw;
}

.footer-column-three {
  width: 15vw;
}

.footer-column-four {
  width: 15vw;
}

.footer-container ul li {
  list-style: none !important;
  list-style-type: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.footer-container ul li a:link, .footer-container ul li a:visited, .footer-bottom a:link, .footer-bottom a:visited {
  color: var(--gray);
  font-size: var(--m);
  text-decoration: none;
  font-weight: 300;
  line-height: 180%;
}

.footer-container ul li a:link.active, .footer-container ul li a:visited.active {
  color: var(--blue);
  font-weight: 400;
}

.footer-socials {
  display: flex;
  flex-direction: row;
  gap: 1vw;
  margin-top: 1vw;
}

.footer-socials .social-icon {
  height: 1.5vw;
  width: auto;
  opacity: 0.6;
  transition: all 0.4s ease-in-out;
}

.footer-socials .social-icon:hover {
  opacity: 1;
  cursor: pointer;
}

.footer-divider {
  width: 100%;
  height: 0.1vw;
  background: #ECEEF3;
  width: 84vw;
  margin-left: 8vw;
  margin-top: 4vw;
  margin-bottom: 2vw;
}

.footer-bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 0 8vw;
  margin-bottom: 2vw;
}

.footer-bottom-links {
  display: flex;
  flex-direction: row;
  gap: 1vw;
}


.mobile-menu .footer-socials {
  margin-left: 0 !important;
  margin-top: 10vw !important;
}

.footer-socials-mobile-menu {
  padding-bottom: 25vw;
}

.footer-socials-inner-container {
    align-items: center;
    display: flex;
    align-self: center;
    gap: 8vw;
    flex-direction: row;
}
  
.footer-socials {
    align-items: center;
    display: flex;
    align-self: flex-start;
}

.social-icon-footer-mobile-menu {
    height: 7vw !important;
    width: auto;
    filter: grayscale(1) invert(0);
}


/* PORTFOLIO */

.supage-hero-container {
  background-color: var(--light-gray-blue);
  padding: 4vw 6vw;
  display: flex;
  flex-direction: column;
  gap: 2vw;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.porfolio-recognize-projects {
  display: flex;
  flex-direction: row;
  gap: 0.5vw;
}

.portfolio-tags-container {
  width: 100%;
  background: var(--blue-gradient);
  padding: 1.5vw 6vw;
  display: flex;
  flex-direction: row;
  gap: 2vw;
  align-items: center;
  justify-content: center;
}

.portfolio-tag-button {
  color: var(--white);
  font-family: var(--montserrat);
  font-size: var(--m);
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  padding: 1vw 2vw;
  background: none;
  border-radius: 3vw;
}

.portfolio-tag-button:hover {
  cursor: pointer;
}

.portfolio-tags-container .active {
  color: var(--dark-blue);
  background: var(--white);
  font-weight: 700;
}

.logos-container {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 4vw;
}

.portfolio-logo {
  width: 100%;
  height: auto;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

.convert-to-black {
  -webkit-filter: invert(1);
  filter: invert(1);
}

.portfolio-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 3vw 6vw 10vw 6vw;
  align-items: center;
  justify-content: center;
}

.portfolio-container.active {
  display: flex !important;
  transition: all 0.4s ease-in-out;
}

.portfolio-container.inactive {
  display: none !important;
  transition: all 0.4s ease-in-out;
}

/* SUBPAGES */

.subpage-content-container {
  padding: 4vw 6vw;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2vw;
}

.subpage-content-container img {
  border-radius: 0.3vw;
}

.subpage-content-container p, .news-article-container-page p {
  font-size: var(--m);
}

.two-columns, .columns {
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: 2vw;
  align-items: center;
  margin-bottom: 2.5vw;
}

.columns img, .two-columns img {
  align-self: center !important;
  border-radius: 0.3vw;
  width: 100%;
  height: auto;
}

.columns div, .two-columns div {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1vw;
}

/* NEWS PAGE */

.news-page {
  width: 100%;
  padding: 4vw 6vw;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  row-gap: 2vw;
  justify-content: space-between;
  margin-top: 0;
}

.news-item {
  margin: 0 !important;
}

.news-item:hover {
  transform: scale(1.05);
}

.news-date-container {
  position: absolute;
  top: 1vw;
  right: 1vw;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--dark-blue);
  padding: 1vw 2vw;
  border-radius: 0.3vw;
  min-height: 2vw;
  font-family: var(--poppins);
  font-weight: 400;
  line-height: 100%;
  color: var(--white);
  font-size: var(--xs);
}

.news-pagination {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-bottom: 7vw;
}

.news-pagination .small {
  display: none;
  visibility: hidden;
}

.news-article-container-page {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 4vw 6vw;
  gap: 1vw;
}

.news-article-container-page h2 {
  margin-top: 1vw !important;
}

.news-article-container:hover {
  cursor: pointer;
}

.rows-container {
  display: flex;
  flex-direction: row;
  gap: 2vw;
  align-items: center;
  width: 100%;
}

.rows-container div {
  width: 50%;
  flex-grow: 0;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

.rows-container img {
  width: 100%;
  height: auto;
  border-radius: 0.3vw;
}


/* DATA ROOM */
.dataroom-tags-container {
  width: 100%;
  background: #E9EFFA;
  padding: 1.5vw 6vw;
  display: flex;
  flex-direction: row;
  gap: 2vw;
  align-items: center;
  justify-content: center;
}

.dataroom-tag-button {
  color: #565656;
  font-family: var(--montserrat);
  font-size: var(--m);
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  padding: 1vw 2vw;
  background: none;
  border-radius: 3vw;
}

.dataroom-tag-button:hover {
  cursor: pointer;
}

.dataroom-tags-container .active {
  color: var(--dark-blue);
  background: var(--white);
  font-weight: 700;
}

.dataroom-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 3vw 6vw 10vw 6vw;
  align-items: center;
  justify-content: center;
}

.dataroom-container.active {
  display: flex !important;
  transition: all 0.4s ease-in-out;
}

.dataroom-container.inactive {
  display: none !important;
  transition: all 0.4s ease-in-out;
}

.data-list-items {
  display: flex;
  flex-direction: column;
  gap: 3vw;
}

.data-item-container {
  display: flex;
  flex-direction: column;
  gap: 0.5vw;
  background-color: var(--white);
  border: 0.1vw solid #ECEEF3;
  border-radius: 0.3vw;
  width: 100%;
  margin: 0 0.7vw;
  padding: 2vw;
  filter: drop-shadow(0px 15px 6px rgba(190, 195, 204, 0.13));
  transition: all 0.4s ease-in-out;
}

.data-file-divider {
  width: 100%;
  height: 0.1vw;
  background-color: #E9E9E9;
}

.data-file-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: 1vw;
}

.data-file {
  display: flex;
  flex-direction: row;
  gap: 1vw;
  align-items: center;
}

.data-file-details {
  display: flex;
  flex-direction: column;
  gap: 0.2vw;
}

.data-file-details a:link, .data-file-details a:visited {
  color: var(--dark-blue);
  font-family: var(--montserrat);
  font-size: var(--s);
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  text-transform: uppercase;
  text-decoration: none;
}

.data-file img {
  height: 2.5vw;
  width: auto;
}

.data-file-download {
  display: flex;
  flex-direction: row;
  gap: 1vw;
  align-items: center;
}

.data-file-download img {
  height: 1.3vw;
  width: auto;
}

.data-file-download a:link, .data-file-download a:visited {
  color: #8A879F;
  font-family: var(--poppins);
  font-size: var(--m);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 100%;
}

.form-container {
  display: flex;
  flex-direction: column;
  gap: 1vw;
  margin-top: 1vw;
}

.password-button {
  font-size: var(--m);
  background-color: var(--dark-blue);
  color: var(--white);
  line-height: 100%;
  font-weight: 700;
  padding: 1vw 2vw;
  border: 0;
  border-radius: 0.3vw;
}

.password-input {
  font-size: var(--m);
  color: var(--dark-blue);
  line-height: 100%;
  font-weight: 400;
  padding: 0.7vw 1vw;
  border-radius: 0.3vw;
}


/* ABOUT PAGE */

.about-stats {
  display: flex;
  flex-direction: row !important;
  justify-content: space-between !important;
  width: 100% !important;
  margin-bottom: 2vw;
}

.stat-container {
  width: 100% !important;
  display: flex;
  flex-direction: column;
  gap: 0.5vw;
  align-items: center !important;
  justify-content: center !important;
}

.stat-value {
  width: 100% !important;
  display: flex;
  font-size: var(--xlb);
  font-weight: 700;
  font-family: var(--montserrat);
  line-height: 100%;
  justify-content: center !important;
  color: var(--dark-blue);
}

.stat-title {
  justify-content: center !important;
  width: 100% !important;
  display: flex;
  font-size: var(--s);
  font-weight: 400;
  font-family: var(--poppins);
  line-height: 100%;
}
/* PAGINATION */

.news-pagination ul li {
  padding: 0.3vw !important;
}

.page-item {
  margin: 0 5px;
  text-align: center;
}

.page-link {
  outline: initial !important;
  box-shadow: initial !important;
  border: initial;
  padding: 8px 9px;
  line-height: 1.5;
  font-size: 1.5em;
  min-width: 3.25rem;
  min-height: 3.25rem;
  color: 10px;
  border-radius: 15px !important;
  background: #fff;
  color: #274077 !important;
}
.page-link:focus {
  background: #fff;
  color: #274077;
}
.page-link:hover, .page-link:hover:focus {
  background: #274077;
  color: #fff;
}
.page-link svg {
  width: 15px;
  height: 15px;
  vertical-align: top;
  margin-top: 2px;
  margin-left: 2px;
}
.page-link i {
  margin-left: 1px;
}

.page-item.active .page-link {
  background: #274077 !important;
  box-shadow: initial !important;
  border: 0 !important;
  color: #fff !important;
}

.page-item.disabled .page-link {
  opacity: 0.5;
  color: #274077;
  background: #fff;
  box-shadow: initial !important;
}

.page-item:first-child .page-link,
.page-item:last-child .page-link {
  border-radius: 10px;
  padding-top: 3px !important;
}

.pagination.bordered .page-item .page-link {
  color: #274077;
  box-shadow: inset 0 0 0 1px #274077 !important;
  border-radius: 10px;
  background-color: transparent;
}
.pagination.bordered .page-item .page-link:hover {
  background: #274077;
  color: #fff;
}
.pagination.bordered .page-item.active .page-link {
  box-shadow: initial !important;
  background: #274077;
  color: #fff;
}

.pagination.semibordered .page-item .page-link:hover {
  background-color: transparent;
  color: #274077;
  box-shadow: inset 0 0 0 1px #274077 !important;
  border-radius: 10px;
}
.pagination.semibordered .page-item.active .page-link {
  background-color: transparent;
  color: #274077;
  box-shadow: inset 0 0 0 1px #274077 !important;
  border-radius: 10px;
}

.pagination.pagination-xl .page-link {
  line-height: 1;
  font-size: 1em;
  height: 44px;
  padding: 14px 26px;
  width: 65px;
}
.pagination.pagination-xl .page-link svg {
  margin-top: 0;
}

.pagination.pagination-lg .page-link {
  font-size: 1em;
  line-height: 18px;
  width: 50px;
  padding: 8px 15px;
}

.pagination.pagination-sm .page-link {
  font-size: 0.9em;
  height: 30px;
  width: 30px;
  line-height: 1;
  padding: 9px 3px;
}
.pagination.pagination-sm .page-link svg {
  margin-top: -1px;
}


/* MOBILE */

@media screen and (max-width: 600px) and (orientation: portrait) {

  :root {
      /* FONT SIZES */
      --xs: 2.5vw;
      --m: 4vw;
      --s: 4vw;
      --l: 4.8vw;
      --l-xl: 7.5vw;
      --xl: 5vw;
      --xlb: 6.5vw;
      --xxl: 8vw;
      --xxxl: 12vw;
    }
    
    /* GENERAL */
    .only-desktop {
      display: none !important;
    }

    .only-mobile {
      display: block !important;
    }

    /* TITLES, SUBTITLES */

    .subtitle {
      font-size: 4vw;
      line-height: 120%;
      text-align: left;
    }

    .content-title {
      font-size: 4vw;
    }

    p {
      font-size: 4vw;
      line-height: 130%;
    }

    h2.bigger {
      font-size: 5.5vw !important; 
    }

    .mt-2 {
      margin-top: 4vw;
    }

    .mt-3 {
      margin-top: 6vw;
    }
    
    .mt-4 {
      margin-top: 8vw;
    }

    .mt-6 {
      margin-top: 12vw;
    }

    .mt-8 {
      margin-top: 16vw;
    }

    .mb-2 {
      margin-bottom: 4vw;
    }

    .padding-10 {
      padding: 0 !important;
    }

    .padding-20 {
      padding: 0 !important;
    }

    .pb-10 {
      padding-bottom: 10vw !important;
    }

    .pb-6 {
      padding-bottom: 6vw !important;
    }

    .nowrap {
      white-space: nowrap !important;
    }

    .circle-tick {
      width: 9vw;
    }

    /* TITLES */

    /* TITLES */
    h3 {
      font-size: 5.5vw !important;
    }
    p {
      font-size: var(--m) !important;
    }

    .section-four-container p, .section-three-container p, .section-five-container p {
      font-size: 4vw;
    }

    

    /* TOP MENU */

    .header-logo-mobile-menu {
      height: 11vh;
      width: auto;
      margin-top: 0.7vh;
    }

    .top-menu {
      display: none;
    }

    .member-icon {
        width: 5vw;
        height: auto;
    }

    .mobile-menu .social-icon-footer {
        width: 12vw !important;
        height: auto;
    }

    .mobile-menu .footer-socials-inner-container {
        gap: auto;
        width: 85vw !important;
        align-items: center;
        justify-content: center;
      }

    .mobile-menu .footer-socials {
        margin-top: 15vw;
        flex-direction: column !important;
        gap: 5vw;
    }


    /* HERO BANNER */

    #background-video {
      height: 100vh;
    }
    
    .background-video-overlay {
      height: 100vh;
    }

    .hero-container {
      margin-top: 25vh;
      gap: 6vw;
      padding: 0 6vw;
    }

    .hero-container .buttons-container {
      display: grid;
      grid-template-columns: repeat(2,1fr);
      gap: 6vw;
      align-items: center;
      justify-content: center;
      margin-top: 4vw;
    }

    .hero-container p {
      width: 80%;
    }

    .hero-container .button {
      border: 0.25vw solid var(--white);
      padding: 3.5vw 8vw;
      border-radius: 1vw;
      width: auto;
      flex-shrink: 0;
      flex-grow: 1;
    }

    .hero-container .button:hover {
      border: 0.25vw solid rgba(15 , 117, 238, 1);
    }

    /* NEWS SECTION */

    .news-container {
      display: flex;
      flex-direction: column;
      gap: 25vw;
      width: 100%;
      margin-top: 20vh;
      padding: 6vw;
    }

    .news-column-container {
      gap: 6vw;
    }

    .subtitle-container, .subtitle-container-row {
      gap: 3vw;
    }

    .subtitle-line {
      height: 0.6vw;
      width: 9vw;
    }

    .news-list-container {
      gap: 6vw;
      padding: 6vw;
      border-radius: 1vw;
    }

    .news-article-container {
      gap: 3vw;
    }

    .news-divider {
      height: 0.6vw;
    }

    .news-slider-title-container {
      gap: 4.5vw;
    }

    .news-slider-container {
      width: 100%;
      padding: 25vw 6vw 6vw 6vw;
      display: flex;
      flex-direction: column;
      gap: 6vw;
    }

    .slider-container {
      width: 100%;
    }

    .slider-item-container {
      gap: 5vw;
      border: 0.3vw solid #ECEEF3;
      border-radius: 1vw;
      width: 100%;
      margin: 0 0;
      padding: 0 0 6vw 0;
    }

    .slider-item-container img {
      height: 50vw;
      border-radius: 1vw 1vw 0 0;
    }

    .slider-item-container div, .slider-item-container p {
      padding: 0 4vw;
    }

    .tag {
      padding: 6vw 9vw;
      margin-left: 4vw;
      min-height: 6vw;
      border-radius: 0.6vw;
    }

    .read-more {
      margin-left: 4vw;
      padding: 9vw 9vw;
      min-height: 9vw;
      border-radius: 0.6vw;
    }

    .slider-item-bottom-space {
      height: 9vw;
    }


    /* FOOTER */

    .footer-container {
      margin-top: 6vw;
      display: grid;
      grid-template-columns: repeat(2,1fr);
      grid-template-areas: "one one" "two three" "four four";
      row-gap: 10vw;
      width: 100%;
      padding: 0 8vw;
      gap: 10vw;
    }

    .footer-column-one, .footer-column-two, .footer-column-three, .footer-column-four {
      display: flex;
      flex-direction: column;
      gap: 6vw;
    }

    .footer-column-one {
      width: 100%;
      padding-right: 0;
      grid-area: one;
    }

    .footer-column-one img {
      width: 60vw;
      height: auto;
    }

    .footer-column-two {
      width: 100%;
      grid-area: two;
    }

    .footer-column-three {
      width: 100%;
      grid-area: three;
    }

    .footer-column-four {
      width: 100%;
      grid-area: four;
    }

    .footer-socials {
      gap: 5vw;
      margin-top: 1vw;
      justify-content: center;
      align-items: center;
      align-self: center;
    }

    .footer-socials .social-icon {
      height: 6vw;
      opacity: 1;
    }

    .footer-divider {
      height: 0.3vw;
      width: 84vw;
      margin-left: 8vw;
      margin-top: 8vw;
      margin-bottom: 4vw;
    }

    .footer-bottom {
      display: flex;
      flex-direction: column-reverse;
      justify-content: center;
      align-self: center;
      padding: 0 0;
      margin-bottom: 4vw;
      align-items: center;
      gap: 4vw;
    }

    .footer-bottom-links {
      gap: 3vw;
    }


    
    /* PORTFOLIO */

    .supage-hero-container {
      padding: 25vw 9vw 12vw 9vw;
      gap: 6vw;
    }

    .porfolio-recognize-projects {
      display: flex;
      flex-direction: row;
      gap: 0.5vw;
    }

    .portfolio-tags-container {
      width: 100%;
      padding: 4.5vw 9vw;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2vw;
      align-items: center !important;
      justify-content: center !important;
      text-align: center;
      margin-bottom: 6vw;
    }

    .portfolio-tag-button {
      padding: 3vw 4vw;
      border-radius: 9vw;
    }

    .logos-container {
      display: grid;
      grid-template-columns: repeat(2,1fr);
      gap: 12vw;
    }

    .portfolio-container {
      padding: 3vw 6vw 10vw 6vw;
    }

    /* SUBPAGES */

    .subpage-content-container {
      padding: 12vw 9vw;
      width: 100%;
      gap: 6vw;
    }

    .subpage-content-container img {
      border-radius: 1vw;
    }

    .subpage-content-container p, .news-article-container-page p {
      font-size: var(--m);
    }

    .two-columns, .columns {
      flex-direction: column;
      gap: 6vw;
      margin-bottom: 7.5vw;
    }

    .columns img, .two-columns img {
      border-radius: 1vw;
    }

    .columns div, .two-columns div {
      width: 100%;
      gap: 3vw;
    }

    /* NEWS PAGE */

    .news-page {
      padding: 12vw 6vw;
      display: grid;
      grid-template-columns: repeat(1,1fr);
      row-gap: 6vw;
    }

    .news-date-container {
      top: 3vw;
      right: 3vw;
      padding: 6vw 6vw;
      border-radius: 1vw;
      min-height: 6vw;
      font-size: var(--xs);
    }

    .news-pagination {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: center;
      margin-bottom: 7vw;
    }

    .news-article-container-page {
      padding: 12vw 6vw;
      gap: 3vw;
    }

    .news-article-container-page h2 {
      margin-top: 3vw !important;
    }

    .rows-container {
      flex-direction: column;
      gap: 6vw;
    }

    .rows-container div {
      width: 100%;
    }

    .rows-container img {
      border-radius: 1vw;
    }


    /* DATA ROOM */
    .dataroom-tags-container {
      padding: 4.5vw 6vw;
      display: grid;
      grid-template-columns: repeat(3,1fr);
      gap: 6vw;
    }

    .dataroom-tag-button {
      padding: 3vw 4vw;
      border-radius: 9vw;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    .dataroom-container {
      padding: 9vw 6vw 10vw 6vw;
      align-items: center;
      justify-content: center;
    }

    .form-container, .form-container form {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 3vw;
      margin-top: 3vw;
    }

    .password-button {
      font-size: var(--l);
      padding: 3vw 6vw;
      border-radius: 1vw;
    }
    
    .password-input {
      font-size: var(--l);
      padding: 2.1vw 3vw;
      border-radius: 1vw;
    }

    .data-list-items {
      gap: 9vw;
      margin-top: 8vw;
    }

    .data-item-container {
      gap: 1.5vw;
      border: 0.3vw solid #ECEEF3;
      border-radius: 1vw;
      margin: 0 2.1vw;
      padding: 6vw;
    }

    .data-file-divider {
      height: 0.3vw;
    }

    .data-file-container {
      margin-top: 3vw;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }

    .data-file {
      gap: 3vw;
    }

    .data-file-details {
      gap: 0.6vw;
    }

    .data-file img {
      height: 7.5vw;
    }

    .data-file-download {
      gap: 3vw;
    }

    .data-file-download img {
      height: 4vw;
    }

    /* ABOUT PAGE */

    .about-stats {
      display: grid !important;
      grid-template-columns: repeat(2,1fr) !important;
      justify-content: space-between !important;
      width: 100% !important;
      margin-bottom: 6vw;
      row-gap: 6vw !important;
    }

    .stat-container {
      gap: 1.5vw;
    }


}

/* DESKTOP MAX 1600px */

@media screen and (max-width: 1600px) {

}


/* DESKTOP 3k+ */

@media screen and (min-width: 2440px) {

  :root {
    --xxl: 3.2vw !important;
  }

}