:root {
  --bs-primary-soft: #ceddff;
  --body-color: #1e2022;
}

body {
  font-family: 'Poppins', Helvetica, Arial, sans-serif;
  line-height: 1.75;

  color: var(--body-color);

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  overflow-x: hidden;
}

* {
  position: relative;
}

a {
  text-decoration: none;

  color: inherit;
}

p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;

  margin: 0 0 15px;

  color: var(--secondary);
}

img {
  width: 100%;
  /* height: auto !important; */
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-weight: 500;
  line-height: 1.3;
}

.oval-divider--bottom,
.oval-divider--top {
  position: absolute;

  display: block;

  width: 100%;
  height: 100%;

  pointer-events: none;
}

.oval-divider--bottom {
  z-index: 1;
  bottom: 0;

  height: 100px;
  margin-bottom: -1px;

  background-size: 100% 100px;
}

.oval-divider--top {
  z-index: 1;
  top: -1px;

  height: 100px;

  transform: rotate(180deg);

  background-size: 100% 100px;
}

.oval-divider--1 {
  background-image: url(../svg/oval-divider--1.svg);
}

.oval-divider--5 {
  background-image: url(../svg/oval-divider--5.svg);
}

.oval-divider--8 {
  background-image: url(../svg/oval-divider--8.svg);
}

[data-scrim-top='7']::before,
[data-scrim-bottom='7']::before {
  opacity: .7;
}

[data-scrim-top]::before,
[data-scrim-bottom]::before {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 20%;
  left: 0;

  content: '';

  border-radius: inherit;
  background: linear-gradient(to bottom, #191919 0%, rgba(0, 0, 0, 0) 100%);
}

[data-overlay]::before,
[data-overlay-light]::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

  content: '';

  border-radius: inherit;
  background: #191919;
}

[data-overlay='3']::before {
  opacity: .3;
}

.section {
  position: relative;

  padding-top: 7rem;
  padding-bottom: 7rem;

  border-bottom: none;
  background: #fff;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

@media (max-width: 992px) {
  .section {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

.section-header {
  max-width: 70%;
  margin: 0 auto 50px;

  text-align: center;
}

.anim-link-2 {
  display: inline;

  box-sizing: border-box;
  padding: 1px 0;

  transition: background-size .2s cubic-bezier(.785,.135,.15,.86) 0s;

  background-image: linear-gradient(to right, #0b163f 0%, #0b163f 100%);
  background-repeat: no-repeat;
  background-position: 0 95%;
  background-size: 0 2px;
}

.anim-link-2:hover {
  background-size: 100% 2px;
}

.anim-link-2.anim-link-2-primary {
  background-image: linear-gradient(to right, #175cff 0%, #175cff 100%);
}

/* header */
#header {
  position: relative;
  z-index: 1030;

  background: #fff;
}

#header.fixed {
  position: fixed;
  z-index: 2147;
  top: 0;
  left: 0;

  width: 100%;

  border-bottom-color: rgba(234, 234, 234, .5);
  box-shadow: 0 0 7px rgb(168 166 166 / 80%);
}

#header  .header-container {
  z-index: 1001;

  display: flex;
  justify-content: space-between;

  width: 100%;
  height: 130px;

  transition: ease height .3s;
}

#header.fixed  .header-container {
  height: 60px;
}

#header .logo {
  display: flex;
  align-items: center;
}

#header .logo img {
  height: 40px !important;

  transition: ease height .3s;
}

#header.fixed .logo img {
  height: 30px !important;
}

#header .header-row {
  display: flex;
  align-items: center;
}

#header .nav {
  height: 130px;

  transition: ease height .3s;
}

#header.fixed .nav {
  height: 60px;
}

#header .nav  li {
  height: 100%;
  padding: 0 .9rem;
}

#header .nav li,
#header .nav a {
  font-weight: 400;

  display: inline-flex;
  align-items: center;

  height: 100%;
}

#header .nav li.active a {
  color: var(--primary);
}

#header .nav li.active a::before {
  position: absolute;
  bottom: 40px;
  left: 0;

  width: 100%;
  height: 3px;

  content: '';
  transition: ease bottom .3s;

  background: var(--primary);
}

#header.fixed .nav li.active a::before {
  bottom: 10px;
}

@media (min-width: 992px) {
  #header .nav  a {
    font-size: 16px;
  }

  .btn-menu,
  .nav-sm {
    display: none;
  }
}

@media (max-width: 992px) {
  #header .header-container {
    height: 80px;
  }

  #header .mobile-nav-hidden {
    display: none;
  }

  #header .btn-menu {
    line-height: 41px;

    display: block;

    width: 43px;
    padding: 0;
  }

  #header .nav-sm {
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;

    overflow: hidden;

    width: 100vw;
    height: 0;
    padding: 60px 0 0;

    transition: ease all .3s;
  }

  #header .nav-sm.show,
  #header .show.nav-sm::before {
    z-index: 2147;

    height: 100vh;
  }

  #header .nav-sm::before {
    position: fixed;
    top: 0;
    left: 0;

    width: 100vw;
    height: 0;

    content: '';
    transition: ease all .3s;

    opacity: .8;
    background: #000;
  }

  #header .nav-sm li {
    line-height: 60px;

    z-index: 2147;

    padding: 0 20px;

    list-style: none;

    color: #fff;
  }
}

#footer {
  background: #fff;
}

#footer .m-list--link {
  font-size: .875rem;

  display: block;

  padding-top: .375rem;
  padding-bottom: .375rem;

  color: var(--bs-secondary);
}

#footer img {
  width: 100%;
  max-width: 320px;
}

#footer .foot_social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 30px;
  height: 30px;
  margin: 3px;

  border: 1px solid var(--body-color);
  border-radius: 50%;
}

#footer .foot_social a:hover {
  color: inherit;
}

#banner {
  min-height: 640px;
}
