* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --font-Montserrat: 'Montserrat', sans-serif;
  --font-Tinos: 'Tinos', "Times New Roman";
  --clr-primary: #0066A1;
  --clr-success: #28A745;
  --clr-warning: #FFC100;
  --clr-danger: #FF0000;
  --clr-white: #FFF;
  --clr-black: #000;
  --clr-dark: #101010;
  --clr-border: #CED4DA;
  --clr-grey: #FAFBFF;
  --clr-dark-grey: #C3C3C3;
}
@font-face {
  font-family: 'Tinos';
  src: url('../fonts/Tinos-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: 'Tinos';
  src: url('../fonts/Tinos-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: 'Tinos';
  src: url('../fonts/Tinos-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: block;
}
@font-face {
  font-family: 'Tinos';
  src: url('../fonts/Tinos-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: block;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Italic-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: italic;
  font-display: block;
}

html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  height: 100%;
  font-family: var(--font-Montserrat);
  background-color: var(--clr-white);
}

section {
  padding-block: 3rem;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
  margin-bottom: 0;
}

/* TITLES */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

h1 {
  font-size: clamp(2.25rem, 1.5rem + 2vw, 3rem);
}

h2 {
  font-size: clamp(2rem, 1.4rem + 1.8vw, 2.5rem);
}

h3 {
  font-size: clamp(1.75rem, 1.2rem + 1.5vw, 2rem);
}

h4 {
  font-size: clamp(1.25rem, .9rem + 0.8vw, 1.4rem);
}

h5 {
  font-size: clamp(1.125rem, .9rem + 0.8vw, 1.25rem);
}

h6 {
  font-size: clamp(1rem, .85rem + 0.5vw, 1.125rem);
}

p {
  color: var(--clr-dark);
  font-size: 1rem;
}

.lead {
  font-size: 1rem;
  font-weight: 200;
  color: var(--clr-dark);
}

.title {
  border-bottom: 1px solid var(--clr-border);
  padding: 1.5rem 1rem 1rem;
  color: var(--clr-primary);
  margin-bottom: 3rem;
  width: 100%;
  max-width: 25rem;
}

.title h6 {
  font-size: 1.125rem;
  font-weight: 700;
}

/* COLORS */

.clr-primary {
  color: var(--clr-primary);
}

.clr-success {
  color: var(--clr-success);
}

.clr-danger {
  color: var(--clr-danger);
}

.clr-white {
  color: var(--clr-white);
}

.clr-black {
  color: var(--clr-black);
}

.clr-dark {
  color: var(--clr-dark);
}

.clr-border {
  color: var(--clr-border);
}

.clr-grey {
  color: var(--clr-grey);
}

.fw-black {
  font-weight: 900;
}

.fw-extra-bold {
  font-weight: 800;
}

.fw-medium {
  font-weight: 500;
}

.fw-extra-light {
  font-weight: 200;
}

.landing .container {
  max-width: 80rem;
  margin: 0 auto;
}

/* BACKGROUNDS */

.bg-grey {
  background-color: var(--clr-grey);
}

/* BUTTONS */
.btn-primary.active.focus,
.btn-primary.active:focus,
.btn-primary.active:hover,
.btn-primary:active.focus,
.btn-primary:active:focus,
.btn-primary:active:hover,
.open > .dropdown-toggle.btn-primary.focus,
.open > .dropdown-toggle.btn-primary:focus,
.open > .dropdown-toggle.btn-primary:hover {
  color: var(--clr-white);
  background: var(--clr-primary);
  border-color: var(--clr-primary);
}

.btn {
  font-family: var(--font-Montserrat);
  font-size: .9375rem;
  font-weight: 500;
  line-height: 100%;
  padding: .75rem 1rem;
  border-radius: 100px;
  text-align: center;
  border: 1px solid transparent;
  background-size: 300% 100%;
  transition: all .25s ease-in-out;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .25rem;
  box-shadow: unset;
  white-space: nowrap;
}

.btn.btn-lg {
  padding: 1.5rem 1.25rem;
}

.btn.btn-md {
  padding: .75rem 1.25rem;
}

.btn.btn-sm {
  font-size: .75rem;
}

.btn.btn-square {
  width: 2.9rem;
  height: 2.9rem;
  padding: 0;
  display: grid;
  place-items: center;
}

.btn:hover {
  background-position: 100% 0;
  border-color: transparent;
  color: inherit;
  transition: all .25s ease-in-out;
}

.btn:focus {
  outline: none;
}

.btn:active {
  transform: scale(0.99);
}

.btn:focus-visible {
  color: unset;
  background: unset;
  box-shadow: none;
}

.btn:first-child:active,
:not(.btn-check)+.btn:active {
  color: var(--clr-white);
}

.btn:first-child:active:focus-visible {
  box-shadow: unset;
}

.btn.btn-primary {
  --bs-btn-bg: unset;
  color: var(--clr-white);
  --bs-btn-hover-bg: var(--clr-primary);
  background-image: linear-gradient(to right, #036096, #0067a3, #0066A1, #005f96);
}

.btn.btn-primary:hover {
  color: var(--clr-white);
}

.btn.btn-primary:first-child:active {
  color: var(--clr-white);
  border-color: transparent;
  background-image: linear-gradient(to right, #036096, #0067a3, #0066A1, #005f96);
}

.btn.btn-primary-outline {
  color: var(--clr-primary);
  --bs-btn-hover-bg: var(--clr-primary);
  background: transparent;
  border: 1px solid var(--clr-primary);
  box-shadow: none;
}

.btn.btn-primary-outline:hover {
  color: var(--clr-primary);
  background: transparent;
}

.btn.btn-primary-outline:first-child:active {
  color: var(--clr-primary);
  border-color: var(--clr-primary);
}

.btn.btn-link,
.btn.btn-link:active {
  text-decoration: none;
  color: var(--clr-primary);
  font-weight: 600;
}

.btn.btn-link:focus,
.btn.btn-link:hover {
  text-decoration: underline;
  border-color: transparent;
}

.btn.btn-white,
.btn.btn-white:active {
  color: var(--clr-primary);
  background: var(--clr-white);
  font-weight: 600;
  font-size: .875rem;
}

.btn.btn-link:focus,
.btn.btn-link:hover {
  border-color: var(--clr-white);
  text-decoration: underline;
  border-color: transparent;
}

/* HEADER */

header .navbar {
  padding-block: 0;
  margin: 0;
  gap: 1.5rem;
  background: rgba(0, 0, 0, 0);
  transition: background .25s ease;
}

header .navbar-brand {
  margin-right: 2rem;
  padding-left: 0;
}

header .navbar-brand picture {
  display: block;
  width: 5rem;
  height: 4.25rem;
  position: relative;
}

header .navbar-brand picture img {
  max-width: 100%;
  transition: opacity .3s ease;
  position: absolute;
}

header .navbar-toggler {
  border: 1px solid var(--clr-dark-grey);
}

header .navbar-toggler:focus {
  box-shadow: unset;
}

header .navbar-nav {
  gap: 1.75rem;
}

header .navbar-expand-lg .nav-link:not(.btn) {
  font-size: .8125rem;
  line-height: 1.125rem;
  padding: 0;
  background: transparent;
  color: var(--clr-white);
  cursor: pointer;
  text-align: center;
  opacity: .8;
  transition: color .25s ease;
}

header .navbar-expand-lg .nav-item:hover .nav-link {
  opacity: 1;
}

header .navbar-nav .btn.btn-white {
  padding-inline: 1.25rem;
  font-size: .75rem;
}

header .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
@media (width > 992px) {
  header .navbar-brand {
    padding-block: .5rem;
  }

  header .nav-link {
    padding-inline: 0;
  }
}
@media (width < 1200px) {
  header .navbar-brand {
    margin-right: 1.25rem;
  }

  header .navbar-brand picture {
    width: 5rem;
    height: 4.31rem;
  }

  header .navbar-expand-lg .nav-link:not(.btn) {
    font-size: .75rem;
  }

  header .navbar-nav {
    gap: 1.125rem;
  }
}

@media (992px <= width < 1100px) {
  header .navbar-nav {
    gap: .75rem;
  }
     header .navbar-expand-lg .nav-link:not(.btn) {
        font-size: .7rem;
        white-space: nowrap;
        
    }
}

@media (width < 992px) {
  header {
    position: fixed;
    top: 0;
    z-index: 2;
    width: 100%;
  }

  header .navbar-brand {
    margin-left: 0;
  }

  header .navbar-toggler {
    margin-right: 0rem;
  }

  header .navbar {
    display: flex;
    align-items: center;
    padding-block: 0;
    background: rgba(255, 255, 255, 0.96);
  }

  header .navbar-collapse {
    overflow-y: auto;
    padding-inline: .5rem;
    max-height: calc(100vh - 71px);
    scroll-behavior: smooth;
    scrollbar-gutter: stable;
  }

  header .navbar-collapse > .navbar-nav {
    padding-block: 1rem 1.5rem;
  }

  header .navbar-nav li.nav-item:last-child {
    padding-top: 8px;
    width: 100%;
  }

  header .nav-item .nav-link {
    font-size: 1rem;
    font-weight: 300;
    text-decoration: none;
    padding: .25rem 0;
    display: block;
  }

  header .navbar-expand-lg .nav-link:not(.btn) {
    text-align: left;
    color: var(--clr-dark);
  }

  header .btn.btn-white {
    background: var(--clr-primary);
    color: var(--clr-white);
    padding: .75rem;
    text-align: center;
    font-weight: 400;
  }
}

/* HEADER SCROLLED */

@media (width > 992px) {
  header .scrolled {
    background: rgba(255, 255, 255, 0.96);
    transition: background .25s ease;
  }

  header .navbar-expand-lg.scrolled .nav-link:not(.btn) {
    color: var(--clr-dark);
    transition: color .25s ease;
  }

  header .navbar-expand-lg.scrolled .nav-item:hover .nav-link {
    color: var(--clr-primary);
  }

  header .scrolled .btn.btn-white {
    border: 1px solid var(--clr-primary);
  }

  header .scrolled .hamburger-inner,
  header .scrolled .hamburger-inner::after,
  header .scrolled .hamburger-inner::before {
    background-color: var(--clr-primary);
  }
}

/* HAMBURGER */

.hamburger {
  padding: .75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: .15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  margin: 0;
  overflow: visible;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::after,
.hamburger.is-active .hamburger-inner::before {
  background-color: #ff0000;
}

.hamburger-box {
  width: 30px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner::after,
.hamburger-inner::before {
  width: 30px;
  height: 4px;
  background-color: var(--clr-primary);
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: .15s;
  transition-timing-function: ease;
}

.hamburger-inner::after,
.hamburger-inner::before {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -10px;
}

.hamburger-inner::after {
  bottom: -10px;
}

.hamburger--slider .hamburger-inner {
  top: 2px;
}

.hamburger--slider .hamburger-inner::before {
  top: 10px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: .15s;
}

.hamburger--slider .hamburger-inner::after {
  top: 20px;
}

.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--slider.is-active .hamburger-inner::before {
  transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
  opacity: 0;
}

.hamburger--slider.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(-90deg);
}

/* SPINNER */

.fa-spinner {
  color: var(--clr-primary);
  user-select: none;
}

/* FOOTER */

footer {
  background-color: var(--clr-white);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

footer .footer-top {
  padding-block: 4rem 10rem;
}

footer .footer-top picture {
  max-width: 8rem;
  width: 100%;
  margin-bottom: 1.5rem;
  padding-left: 1rem;
}

footer .footer-top picture img {
  width: 100%;
  object-fit: contain;
  object-position: center;
}

footer .footer-top p {
  font-size: .8125rem;
  line-height: 2;
  max-width: 27rem;
  font-weight: 400;
  color: #9D9D9D;
  margin-bottom: 1.5rem;
  padding-inline: 1rem;
}

footer .footer-top ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: .625rem;
}

footer .footer-top ul a {
  text-decoration: none;
  color: var(--clr-dark);
}

footer .footer-top ul li:first-child {
  font-size: 1rem;
  font-weight: 500;
  color: var(--clr-dark);
}

footer .footer-top ul a:hover {
  text-decoration: none;
  color: var(--clr-primary);
}

footer .footer-bottom {
  border-top: 1px solid var(--clr-border);
  padding: 1rem 1rem 1.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

footer .footer-bottom p {
  color: #9D9D9D;
  font-size: .8125rem;
  line-height: 2;
  margin-bottom: 0;
}

footer .footer-bottom i {
  font-size: 1rem;
  color: var(--clr-primary);
}

@media (width < 992px) {
  footer .footer-top {
  padding-block: 2rem 5rem;
}
footer .footer-top ul {
  padding-left: 1rem;
}
}

/* BG-HERO */

.bg-hero {
  background-image: url("../img/bg-hero3.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 100% 40%;
  min-height: 100svh;
  padding-block: 5.5rem;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.logo-bg {
  position: absolute;
  bottom: -12rem;
  right: -4rem;
  width: 55svw;
  opacity: .05;
}
@media (width < 1200px) {
  .logo-bg {
    width: 80svw;
  }
}
@media (width < 992px) {
  .bg-hero {
    background-attachment: unset;
    background-position: 75%;
    padding-bottom: 3rem;
  }
}
@media (width < 768px) {
  .logo-bg {
    width: 200svw;
  }
}

/* CAROUSEL */

#carousel-hero.carousel {
  position: relative;
  z-index: 1;
  max-width: 42rem;
  min-height: 20rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#carousel-hero .carousel-item {
  transition: transform 0 ease-in-out;
}

#carousel-hero .active.carousel-item-end,
#carousel-hero .carousel-item-next:not(.carousel-item-start) {
  transform: translateX(0);
}

#carousel-hero .active.carousel-item-start,
#carousel-hero .carousel-item-prev:not(.carousel-item-end) {
  transform: translateX(0);
}

.animate__animated {
  animation-duration: .5s;
  animation-fill-mode: zoomIN;
}
@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.2, .2, .2);
    transform: scale3d(.2, .2, .2);
  }

  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.2, .2, .2);
    transform: scale3d(.2, .2, .2);
  }

  50% {
    opacity: 1;
  }
}

.animate__zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

#carousel-hero.carousel h2 {
  color: var(--clr-white);
  font-family: var(--font-Tinos);
  margin-bottom: .75rem;
  font-size: 3rem;
}

#carousel-hero.carousel h2 span {
  font-weight: 600;
}

#carousel-hero.carousel p {
  color: var(--clr-white);
  font-family: var(--font-Montserrat);
  font-size: 1.375rem;
  line-height: 1.5;
  font-weight: 300;
  max-width: 38rem;
}

#carousel-hero .carousel-control-next,
#carousel-hero .carousel-control-prev {
  position: static;
  background-color: #fff;
  border-radius: 100%;
  width: 3rem;
  aspect-ratio: 1/1;
  opacity: .75;
}

#carousel-hero .carousel-control-next:hover,
#carousel-hero .carousel-control-prev:hover {
  opacity: 1;
}

#carousel-hero .carousel-control-prev-icon {
  width: 1.75rem;
  height: 1.75rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%233C369C'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

#carousel-hero .carousel-control-next-icon {
  width: 1.75rem;
  height: 1.75rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%233C369C'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

@media (width < 1100px) {
  #carousel-hero.carousel {
    margin-inline: auto;
  }

}
@media (width < 992px) {
  #carousel-hero.carousel {
    min-height: 23rem;
  }

  #carousel-hero.carousel h2 {
    font-size: 2.25rem;
  }

  #carousel-hero.carousel p {
    font-weight: 300;
    font-size: 1.25rem;
  }

}

/* ABOUT US */

section.about-us {
  padding-block: 5rem 7rem;
}

.about-us .title {
  border-right: 1px solid var(--clr-border);
  border-bottom: 0;
  padding: 1.5rem 1rem 1.5rem 0;
  width: 3rem;
}

.about-us h6 {
  transform: rotate(-90deg) translateX(-70px);
  white-space: nowrap;
  color: var(--clr-primary);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.125rem;
}

.about-us .content {
  padding: 4rem 2rem 4rem 3rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.about-us h3 {
  font-family: var(--font-Tinos);
  font-size: 2.5rem;
  color: var(--clr-primary);
  margin-bottom: 1rem;
}

.about-us p {
  max-width: 32rem;
  font-size: 1.0625rem;
}

.about-us img {
  width: 100%;
  max-width: 33rem;
}
@media (width < 1200px) {
  .about-us .content {
    padding-left: 1.5rem;
  }

  .about-us p {
    max-width: 30rem;
    font-size: 1rem;
  }
}
@media (width < 992px) {
  section.about-us {
    padding-block: 6rem 8rem;
  }
}
@media (width < 576px) {
  .about-us .title {
    width: 2.5rem;
    padding-right: 0;
  }

  .about-us .content {
    padding: 1.5rem;
  }
}

/* ASSET MANAGERS */

section.asset-managers {
  padding-block: 12rem 6rem;
  background-color: var(--clr-primary);
  position: relative;
}

.asset-managers img {
  position: absolute;
  bottom: 0;
  left: 0;
  max-width: 100%;
}

.asset-managers .title {
  border-bottom: 1px solid var(--clr-white);
  padding: 1.5rem 1rem 1rem;
  color: var(--clr-white);
  margin-bottom: 3rem;
  width: 100%;
  max-width: 25rem;
}

.asset-managers .title h6 {
  font-size: 1.125rem;
  font-weight: 700;
}

.asset-managers .lead {
  max-width: 25rem;
  font-size: 1.875rem;
  line-height: 1.2;
  font-family: var(--font-Tinos);
  color: var(--clr-white);
}

.asset-managers p:first-child {
  margin-top: 7.5rem;
}

section.asset-managers p {
  max-width: 31rem;
  color: var(--clr-white);
  font-size: 1.0625rem;
  margin-bottom: 4rem;
}
@media (width < 992px) {
  section.asset-managers {
    padding-block: 3rem 8rem;
  }

  .asset-managers .lead {
    max-width: 31rem;
    padding-inline: 1rem;
    font-size: 1.75rem;
  }

  .asset-managers .title {
    max-width: 31rem;
    padding-inline: 1rem;
  }

  .asset-managers p {
    padding-inline: 1rem;
  }

  .asset-managers p:first-child {
    margin-top: 4rem;
  }
}

/* FOR PROFESSIONAL INVESTORS */

section.professional-investors {
  padding-block: 10rem 6rem;
  background-color: #FAFBFF;
  position: relative;
}

.professional-investors img {
  position: absolute;
  bottom: 0;
  right: 0;
}

.professional-investors ul {
  list-style: none;
  padding-left: 2rem;
  margin-top: 7.5rem;
}

.professional-investors ul li {
  position: relative;
  margin-bottom: 3rem;
  font-size: 1.0625rem;
  color: var(--clr-dark);
  max-width: 27rem;
}

.professional-investors p {
  max-width: 27rem;
  color: var(--clr-dark);
  font-size: 1.0625rem;
  margin-bottom: 3rem;
}

.professional-investors ul li::before {
  content: "";
  position: absolute;
  left: -1.5rem;
  top: .4em;
  width: .5rem;
  height: .5rem;
  background-color: var(--clr-primary);
}
@media (width < 992px) {
  section.professional-investors {
    padding-block: 6rem;
  }

  .professional-investors ul {
    margin-top: 0;
    padding-left: 3rem;
  }

  .professional-investors .title,
  .professional-investors p {
    max-width: 31rem;
    padding-inline: 1rem;
  }
}

/* PARTNERS */

.partners .grid-container {
  display: grid;
  gap: 5rem 1.25rem;
  padding-block: 9rem 3rem;
  grid-template-columns: repeat(4, 1fr);
}

.partners .grid-container .grid-item {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.partners .grid-item img {
  width: 100%;
  max-width: 12rem;
}
@media (max-width: 1200px) {
  .partners .grid-container {
    grid-template-columns: repeat(2, 1fr);
    padding-block: 6rem;
    gap: 10rem 1.25rem;
  }
}
@media (max-width: 576px) {
  .partners .grid-container {
    grid-template-columns: 1fr;
  }
}

/* MEET THE TEAM */

section.meet-team {
  padding-block: 6rem 4rem;
  position: relative;
}

.meet-team .title  {
  text-align: center;
  width: fit-content;
  padding-inline: 3rem;
}

.meet-team .title span {
  display: block;
}

.meet-team .lead {
  text-align: center;
  font-size: 1.875rem;
  line-height: 1.2;
  font-family: var(--font-Tinos);
  color: var(--clr-primary);
  margin-bottom: 5rem;
}

.meet-team .actions {
  display: flex;
  height: 3rem;
  position: relative;
  width: fit-content;
  padding-left: 0;
  gap: 1rem;
}

.meet-team .swiper-team {
  position: relative;
}

.meet-team .swiper-slide {
  display: flex;
  justify-content: center;
}

.meet-team .swiper-button-next,
.meet-team .swiper-button-prev {
  font-size: 1.25rem;
  color: var(--clr-primary);
  border: 1px solid var(--clr-border);
  border-radius: 100%;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-white);
}

.meet-team .swiper-button-next:hover,
.meet-team .swiper-button-prev:hover {
  background: var(--clr-primary);
  border-color: var(--clr-primary);
  transition: background .25s ease;
}

.meet-team .swiper-button-next:hover i:before,
.meet-team .swiper-button-prev:hover i:before {
  color: var(--clr-white);
  transition: color .25s ease;
}

.meet-team .swiper-button-next:after,
.meet-team .swiper-button-prev:after {
  display: none;
}

.meet-team .swiperTeam:before {
  content: '';
  background: linear-gradient(to left, #ffffff00, #ffffff);
  width: 6rem;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.meet-team .swiperTeam:after {
  content: '';
  background: linear-gradient(to right, #ffffff00, #ffffff);
  width: 6rem;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}

.meet-team article {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 14rem;
  overflow: hidden;
  user-select: none;
}

.meet-team article {
  width: 13.75rem;
  height: auto;
}

.meet-team article img {
  width: 100%;
  height: auto;
  margin-bottom: 1rem;
}

.meet-team article h6 {
  color: var(--clr-dark);
  font-weight: 200;
  font-size: 1.125rem;
  text-align: center;
}

.meet-team article h5 {
  font-weight: 600;
  font-size: 1.875rem;
  text-align: center;
  margin-bottom: .625rem;
}

.meet-team article small {
  text-align: center;
  color: var(--clr-primary);
  text-transform: uppercase;
  font-size: .75rem;
  font-weight: 600;
  margin-bottom: .5rem;
  min-height: 2lh;
}

.meet-team article i {
  color: var(--clr-primary);
  font-size: 1.25rem;
}
@media (width < 992px) {
  section.meet-team {
    padding-block: 0 8rem;
  }

  .meet-team .lead {
    max-width: unset;
  }

  .meet-team .actions {
    width: 100%;
    margin-bottom: 3rem;
  }

  .meet-team .swiperTeam:after {
    display: none;
  }
}

/* BUSINESS AREA */

section.business-areas {
  padding-block: 12rem 1rem;
}

section.business-areas .row {
  margin-bottom: 9rem;
}

section.business-areas .lead {
  font-size: 2.5rem;
  font-family: var(--font-Tinos);
  color: var(--clr-primary);
  line-height: 1.25;
  font-weight: 700;
  margin-block: 2rem .75rem;
}

.business-areas picture {
  display: flex;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}

.business-areas picture img {
  width: 100%;
  height: 100%;
  max-width: 31rem;
  object-fit: cover;
  object-position: center;
}

.business-areas p {
  max-width: 27rem;
  color: var(--clr-dark);
  margin-bottom: 1rem;
}

.business-areas p:not(.fw-medium) {
  font-weight: 300;
}
@media (width < 1200px) {
  .business-areas p {
    font-size: .875rem;
  }
}
@media (width < 992px) {
  section.business-areas .lead {
    font-size: 2rem;
  }
  .business-areas picture img{
  aspect-ratio: 1 / 1;
}
}

/* HEADQUARTERS */

section.headquarters {
  padding-block: 0rem 6rem;
}

section.headquarters ul {
  padding: 1.5rem 0 0;
  list-style: none;
  display: flex;
  flex-direction: column;
}

section.headquarters li {
  font-size: 1rem;
}

section.headquarters ul i {
  color: #F05555;
  font-size: 1.25rem;
  margin-top: .125rem;
}

section.headquarters ul li:first-child {
  font-size: 1.625rem;
  font-family: var(--font-Tinos);
  font-weight: 700;
  color: var(--clr-primary);
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .75rem;
}

section.headquarters ul li:not(:first-child) {
  padding-left: 2rem;
  margin-bottom: .5rem;
}

/* DOWNLOAD OUR APP */

section:has( .download-app)  {
  padding-block: 3rem 12rem;
}

section .download-app  {
  background: var(--clr-grey);
}

.download-app .content {
  padding: 3rem;
  position: relative;
  z-index: 1;
}

.download-app .content small {
  font-family: var(--clr-dark);
  text-transform: uppercase;
  font-size: .875rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.download-app .content h3 {
  font-family: var(--font-Tinos);
  font-size: 2.25rem;
  color: var(--clr-primary);
  max-width: 40rem;
}

.download-app .content .actions{
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
}

.download-app .content .actions a {
  font-size: 1.75rem;
  line-height: 1;
  display: flex;
  flex-direction: column;
  gap: .125rem;
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: .75rem;
  padding: .75rem 1rem;
  text-decoration: none;
  user-select: none;
}

section .download-app picture {
  position: relative;
  display: block;
  height: 100%;
}

section .download-app picture img {
  position: absolute;
  bottom: 0;
  right: 3rem;
  width: 100%;
  max-width: 34rem;
}

@media (width < 992px) {
  section .download-app .content h3 {
  font-size: 2rem;
}
  section .download-app picture img {
  right: 0;
  max-width: 22rem;
}
}

@media (width < 768px) {
    section .download-app picture  {
  position: unset;
  display: flex;
  justify-content: center;
}
  section .download-app picture img {
  position: unset;
}
}

@media (width < 400px) {
    section .download-app .actions  {
  flex-direction: column;
}
   section .download-app .actions a  {
  width: 100%;
}

}

/* FOLLOW US LINKEDIN */

.linkedin {
  background-image: url('../img/bg-linkedin.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  margin-bottom: 8rem;
  padding-block: 4rem;
}

.linkedin .card {
  background: rgba(0, 88, 210, 0.1);
  border: 0;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 4px 2px rgba(124, 124, 124, .05);
  padding: 2.5rem 1.5rem;
  color: var(--clr-white);
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  width: 100%;
  max-width: 42rem;
}

.linkedin .card small {
  text-transform: uppercase;
  font-size: .875rem;
  font-weight: 500;
  margin-bottom: .5rem;
}

.linkedin .card h3 {
  font-family: var(--font-Tinos);
  font-size: 2.5rem;
}

.linkedin .card a {
  font-size: .875rem;
  padding: 1rem 1.5rem;
}

@media (width < 576px) {
  .linkedin .card h3 {
    font-size: 2.25rem;
  }
}

/* BACK TO TOP */

.back-to-top {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: .25rem;
  background: rgb(46, 99, 169, .75);
  border: 1px solid var(--clr-primary);
  backdrop-filter: invert(1);
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top a {
  color: var(--clr-white);
}
