html {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
}
body img {
  max-width: 100%;
  height: auto;
}

.img-border-radius {
  border-radius: 100px 0;
}

.fade-in-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1), transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.fade-in-section.is-visible {
  opacity: 1;
  transform: none;
}

.footer.fade-in-section {
  transform: none;
}

@media screen and (min-width: 991px) {
  .gap-lg {
    margin-left: -50px;
    margin-right: -50px;
  }
  .gap-lg > * {
    padding-left: 50px;
    padding-right: 50px;
  }
}
.image-text-overlay {
  position: absolute;
  left: 50px;
  bottom: 20px;
  z-index: 2;
}
.image-text-overlay i {
  color: #fff;
}
.image-text-overlay-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 50px;
}

.btn-primary {
  text-decoration: none;
  color: #00aeef;
  padding: 5px 20px;
  border-radius: 20px 0px;
  transition: all 0.3s;
  font-weight: bold;
  border: 2px solid #00aeef;
  background: transparent;
  position: relative;
}
.btn-primary::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
  width: 20px;
  height: 20px;
  /* Use mask for currentColor arrow */
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg"><path fill="%23000" d="M22 9a1 1 0 0 0 0 1.42l4.6 4.6H3.06a1 1 0 1 0 0 2h23.52L22 21.59A1 1 0 0 0 22 23a1 1 0 0 0 1.41 0l6.36-6.36a.88.88 0 0 0 0-1.27L23.42 9A1 1 0 0 0 22 9Z"/></svg>');
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg"><path fill="%23000" d="M22 9a1 1 0 0 0 0 1.42l4.6 4.6H3.06a1 1 0 1 0 0 2h23.52L22 21.59A1 1 0 0 0 22 23a1 1 0 0 0 1.41 0l6.36-6.36a.88.88 0 0 0 0-1.27L23.42 9A1 1 0 0 0 22 9Z"/></svg>');
  mask-repeat: no-repeat;
  mask-size: contain;
  background: currentColor;
  transition: filter 0.2s;
  filter: none;
}
.btn-primary:hover {
  background-color: #ff6b00;
  border-color: #ff6b00;
  color: #fff;
}
.btn-primary:hover::after {
  filter: brightness(0) invert(1);
}
.btn-nav {
  font-weight: bold;
}

.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-phone .btn-phone-icon {
  display: flex;
  align-items: center;
}
.btn-phone .btn-phone-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  transition: fill 0.2s;
}
.btn-phone .btn-phone-text {
  display: inline-block;
}
.btn-phone::after {
  display: none;
}
.btn-phone:hover {
  color: #fff;
}
.btn-phone:hover .btn-phone-icon svg {
  fill: #fff;
}

body {
  font-family: "Funnel Sans", sans-serif;
  color: #2e2e2e;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
}
h1 i, h2 i, h3 i, h4 i, h5 i, h6 i {
  font-family: "DM Serif Display", serif;
  font-weight: normal;
  color: #00aeef;
}

h1 {
  font-size: 34px;
}

h2 {
  font-size: 20px;
}

h3 {
  font-size: 30px;
}

p:last-child {
  margin-bottom: 0;
}

a {
  text-decoration: none;
  color: #2e2e2e;
  transition: color 0.3s;
}
a:hover {
  color: #00aeef;
}

.shimmer-gradient {
  display: inline-block;
  position: relative;
  user-select: text;
  overflow: hidden;
}
.shimmer-gradient h3 {
  margin-bottom: 0;
}

.shimmer-gradient__text {
  display: block;
  position: relative;
  z-index: 1;
  opacity: 0.5;
  transition: opacity 0.2s;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1), 0 0px 1px #fff;
}

.shimmer-gradient.shimmer-gradient--active .shimmer-gradient__text {
  animation: shimmer-text-opacity-in 2s linear 1 forwards;
  animation-delay: 0.5s;
}

.shimmer-gradient__text::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.85) 35%, rgb(255, 255, 255) 48%, rgb(255, 255, 255) 52%, rgba(255, 255, 255, 0.85) 65%, transparent 100%);
  transform: translateX(-100%);
  mix-blend-mode: lighten;
  opacity: 0.95;
  transition: opacity 0.2s;
}

.shimmer-gradient.shimmer-gradient--active .shimmer-gradient__text::after {
  animation: shimmer-stripe-move 5s cubic-bezier(0.4, 0, 0.2, 1) 1 forwards;
  animation-delay: 0.7s;
}

.shimmer-gradient__text.animated-finished,
.shimmer-gradient.shimmer-gradient--done .shimmer-gradient__text {
  opacity: 1 !important;
}

@keyframes shimmer-text-opacity-in {
  0% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@keyframes shimmer-stripe-move {
  0% {
    transform: translateX(-100%);
    opacity: 0.95;
  }
  60% {
    opacity: 0.95;
    transform: translateX(60%);
  }
  85% {
    opacity: 0.5;
    transform: translateX(100%);
  }
  100% {
    transform: translateX(100%);
    opacity: 0;
  }
}
.logo-img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 70px;
}
@media screen and (max-width: 1200px) {
  .logo-img {
    max-height: 30px;
  }
}

.slider .slide {
  position: relative;
}
.slider .slide-content {
  position: absolute;
  top: 50%;
  left: 200px;
  transform: translateY(-50%);
  color: #fff;
}
.slider .slide-content h2 {
  font-size: 115px;
  line-height: 1;
  filter: drop-shadow(0px 3px 0px rgba(0, 0, 0, 0.08));
}
@media screen and (max-width: 1600px) {
  .slider .slide-content {
    left: 50px;
    right: 50px;
  }
  .slider .slide-content h2 {
    font-size: 80px;
  }
}
@media screen and (max-width: 1200px) {
  .slider .slide-content {
    left: 20px;
    right: 20px;
  }
  .slider .slide-content h2 {
    font-size: 60px;
  }
}
@media screen and (max-width: 1200px) {
  .slider .slide-content h2 {
    font-size: 30px;
  }
}
.slider .slide img {
  width: 100%;
}
.slider .swiper-pagination {
  width: fit-content !important;
  right: 45px !important;
  bottom: 30px !important;
  left: initial !important;
}
.slider .swiper-pagination-bullet {
  border: none;
  opacity: 1;
  width: 44px;
  height: 44px;
  background: transparent;
  margin: 0 6px !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.slider .swiper-pagination-bullet::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid #fff;
  transition: background 0.2s;
}
.slider .swiper-pagination-bullet-active::before {
  background: #fff;
}

section {
  margin-bottom: 75px;
}
@media screen and (max-width: 991px) {
  section {
    margin-bottom: 3rem;
  }
}
section.partners .container {
  max-width: 1250px;
}
section.partners .partner-logo {
  filter: grayscale(100%);
  opacity: 0.6;
  transition: filter 0.3s, opacity 0.3s;
  height: 80px;
  object-fit: contain;
  display: block;
  padding: 0 20px;
  margin-bottom: 20px;
}
section.partners .partner-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}
@media screen and (min-width: 1200px) {
  section.minimal .container {
    max-width: 1000px;
  }
}
section .row-bordered > .col-lg-6:first-child {
  border-right: 1px solid #e0e0e0;
  padding-right: 2rem;
}
section .row-bordered > .col-lg-6:last-child {
  padding-left: 2rem;
}
section.bg-grey {
  background-color: #efeff8;
  padding: 50px 0;
}
section:first-child {
  margin-top: 75px;
}
section:first-child.intro {
  margin-top: 0;
}

.is-home section:first-child {
  margin-top: 0;
}

@media screen and (max-width: 991px) {
  .business-card {
    padding: 0 20px;
  }
}
.business-card-inner {
  color: #fff;
  border-radius: 100px 0;
  background-color: #212529;
  margin: 0 -75px;
  margin-bottom: 75px;
  position: relative;
}
@media screen and (max-width: 1600px) {
  .business-card-inner {
    margin: 0;
  }
}
@media screen and (max-width: 991px) {
  .business-card-inner {
    border-radius: 50px 0;
  }
}
.business-card-inner::after {
  content: "";
  background-color: #00aeef;
  position: absolute;
  right: -42.5px;
  top: -42.5px;
  width: 85px;
  height: 85px;
  border-radius: 35px 0;
  z-index: 10;
}
@media screen and (max-width: 991px) {
  .business-card-inner::after {
    right: -25px;
    top: -25px;
    width: 50px;
    height: 50px;
    border-radius: 20px 0;
  }
}
.business-card-text {
  padding: 130px 180px;
  position: relative;
}
.business-card-text h2 {
  font-size: 80px;
}
.business-card-text .row:first-child {
  margin-bottom: 75px;
}
@media screen and (max-width: 1600px) {
  .business-card-text {
    padding: 80px 50px;
  }
  .business-card-text h2 {
    font-size: 60px;
  }
}
@media screen and (max-width: 991px) {
  .business-card-text {
    padding: 40px 30px;
  }
  .business-card-text h2 {
    font-size: 40px;
  }
  .business-card-text .row:first-child {
    margin-bottom: 20px;
  }
}
.business-card-form {
  padding: 50px;
}
@media screen and (max-width: 991px) {
  .business-card-form {
    padding: 20px;
  }
}
.business-card .position-relative {
  min-height: 560px;
}
.business-card-bg {
  position: absolute;
  inset: 0;
  left: calc(var(--bs-gutter-x) * 0.5);
  right: calc(var(--bs-gutter-x) * 0.5);
  background-size: cover;
  background-position: center;
  z-index: 1;
  border-top-left-radius: 100px;
}
@media screen and (max-width: 991px) {
  .business-card-bg {
    border-top-left-radius: 50px;
  }
}
.business-card-overlay {
  border-top-left-radius: 100px;
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 12px;
  right: 12px;
  color: #fff;
  padding: 50px;
  background: linear-gradient(to bottom, rgba(33, 37, 41, 0) 0%, rgba(33, 37, 41, 0) 50%, rgb(33, 37, 41) 100%);
}
@media screen and (max-width: 991px) {
  .business-card-overlay {
    border-top-left-radius: 50px;
    padding: 50px 20px;
  }
}

.case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 33.33vh 33.33vh 33.33vh;
  height: 100vh;
}
.case-grid .case-item {
  position: relative;
  padding: 20px;
  display: flex;
  align-items: flex-end;
  color: white;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  text-decoration: none;
}
.case-grid .case-item .case-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(33, 37, 41, 0.75);
  z-index: 2;
  transition: opacity 0.4s;
  opacity: 1;
}
.case-grid .case-item:hover .case-item__overlay {
  opacity: 0;
}
.case-grid .case-item .overlay {
  z-index: 3;
  position: relative;
}
.case-grid .case-item .overlay .case-logo {
  filter: brightness(0) invert(1);
}
.case-grid .case-item.featured {
  grid-column: 2;
  grid-row: 1/span 3;
  display: flex;
  justify-content: center;
  text-align: center;
}
.case-grid .case-item::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: none;
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 1;
}
.case-grid .case-item:hover::after {
  opacity: 1;
  background: linear-gradient(to bottom, rgba(33, 37, 41, 0) 0%, rgba(33, 37, 41, 0) 50%, rgb(33, 37, 41) 100%);
}
.case-grid .case-item.featured::after {
  opacity: 1;
  background: linear-gradient(to bottom, rgba(33, 37, 41, 0) 0%, rgba(33, 37, 41, 0) 50%, rgb(33, 37, 41) 100%);
}
.case-grid .size-66 {
  grid-row: span 2;
}
.case-grid .case-item.fade-in-child {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1), transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.case-grid .case-item.fade-in-child.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1199.98px) {
  .case-grid {
    grid-template-columns: 1fr 1fr;
  }
  .case-grid .case-item.featured {
    grid-column: auto;
    grid-row: auto;
  }
  .case-grid .case-item.featured .case-logo {
    display: none;
  }
  .case-grid .case-item.featured::after {
    opacity: 1;
    background: rgba(33, 37, 41, 0.75);
  }
  .case-grid .size-66 {
    grid-row: initial;
  }
}
.case-list .case-item {
  display: block;
  margin-bottom: 75px;
}
.case-list .case-item-thumbnail {
  overflow: hidden;
  border-radius: 100px 0;
  position: relative;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .case-list .case-item-thumbnail {
    border-radius: 50px 0;
  }
}
.case-list .case-item-thumbnail-image {
  transition: transform 0.3s ease-in-out;
  transform: scale(1);
}
.case-list .case-item-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80%;
  height: 80%;
  z-index: 2;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.case-list .case-item.custom-logo-logo {
  filter: initial;
}
.case-list .case-item-tags {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-left: -5px;
  margin-right: -5px;
}
.case-list .case-item-tags li {
  display: inline-block;
  margin: 5px;
  font-size: 14px;
  color: #2e2e2e;
  border: 2px solid #00aeef;
  padding: 5px 10px;
  border-radius: 20px 0px;
  color: #00aeef;
  font-weight: bold;
}
.case-list .case-item-tags li:last-child {
  margin-right: 0;
}
.case-list .case-item:hover {
  color: inherit;
}
.case-list .case-item:hover .case-item-thumbnail-image {
  transform: scale(1.1);
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  color: #212529;
  transition: color 0.2s;
  text-decoration: none;
}

.social-icon svg {
  width: 20px;
  height: 20px;
  display: block;
  fill: currentColor;
}

.social-icon:hover {
  color: #00aeef;
}

.freeform-form label {
  font-weight: bold;
}
.freeform-form label.required::after {
  display: none;
}
.freeform-form .form-control {
  background: transparent;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid #fff;
  color: #fff;
}
.freeform-form .form-control:focus {
  outline: none;
  box-shadow: none;
}
.freeform-form textarea.form-control {
  resize: none;
}

.page-links-title {
  font-size: 60px;
}
@media screen and (max-width: 1199px) {
  .page-links-title {
    font-size: 40px;
  }
}
.page-links-item {
  border-radius: 50px 0px;
  padding: 20px 0;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: space-between;
}
.page-links-item:hover {
  color: #fff;
  background-color: #00aeef;
  padding: 20px 20px;
}
@media screen and (max-width: 1199px) {
  .page-links-item:hover {
    padding: 20px;
  }
}
.page-links-item h2, .page-links-item p {
  margin-bottom: 0;
}
.page-links-item-title {
  font-size: 40px;
}
@media screen and (max-width: 1199px) {
  .page-links-item-title {
    font-size: 30px;
  }
}
.page-links-item-content {
  display: flex;
  align-items: center;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}
@media screen and (max-width: 1199px) {
  .page-links-item-content {
    display: block;
  }
}
.page-links-item-arrow {
  font-size: 40px;
}

.carousel {
  padding-bottom: 20px;
}
.carousel-section {
  position: relative;
}
.carousel-section .slide-mockup {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-10%, -7%);
  z-index: 50;
  overflow: hidden;
  width: 600px;
  height: 360px;
}
@media (max-width: 767.98px) {
  .carousel-section .slide-mockup {
    display: none;
  }
}
.carousel-section .swiper {
  width: 100%;
  overflow-x: hidden;
}
.carousel-section .swiper-wrapper {
  display: flex;
}
.carousel-section .swiper-slide {
  width: 460px;
}
@media (max-width: 767.98px) {
  .carousel-section {
    max-width: 540px;
  }
  .carousel-section .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80%;
  }
  .carousel-section .swiper-slide-prev {
    visibility: visible;
  }
}

.intro {
  position: relative;
}
.intro img {
  display: block;
  width: 100%;
  height: auto;
}
.intro .case-intro-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(33, 37, 41, 0.45);
  z-index: 1;
  pointer-events: none;
}
.intro .case-intro-overlay.custom-logo .case-intro-logo {
  filter: initial;
}
.intro .case-intro-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 40%;
  max-height: 40%;
  width: initial;
  z-index: 2;
  pointer-events: none;
  filter: brightness(0) invert(1);
}

.header {
  position: relative;
  z-index: 100;
  background-color: #fff;
  position: sticky;
  top: 0;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.header .top-bar {
  background-color: #efeff8;
  padding: 15px 0;
}
@media screen and (max-width: 1200px) {
  .header .top-bar {
    padding: 15px 0;
  }
}
.header .top-bar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.header .top-bar ul li {
  display: inline-block;
  margin-right: 20px;
}
.header .top-bar ul li a {
  text-decoration: none;
  color: #2e2e2e;
  font-size: 15px;
  font-weight: 300;
}
.header-inner {
  padding: 20px 0;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 1200px) {
  .header-inner {
    padding: 20px 0;
  }
}
.header.header-hidden {
  transform: translateY(-100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body.nav-open::after {
  content: "";
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #212529;
  opacity: 0.75;
  z-index: 10;
}

html.offcanvas-open {
  overflow: hidden !important;
}

.main-navigation-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.main-navigation-list-item {
  display: inline-block;
  margin: 0 10px;
}
.main-navigation-list-item:hover .main-navigation-sub {
  display: block;
}
.main-navigation-list-item .main-navigation-sub:hover {
  display: block;
}
.main-navigation-link {
  text-decoration: none;
  color: #2e2e2e;
  font-size: 24px;
  padding: 5px 20px;
  border-radius: 20px 0px;
  transition: background-color 0.3s, color 0.3s;
  font-weight: bold;
}
.main-navigation-link:hover {
  background-color: #ff6b00;
  color: #fff;
}
.main-navigation-sub {
  display: none;
  position: absolute;
  top: 70px;
  left: 0;
  right: 0;
  z-index: 10;
  padding-top: 36px;
}
.main-navigation-sub:hover {
  display: block;
}
.main-navigation-sub::after {
  content: "";
}
.main-navigation-sub-inner {
  background: #fff;
  --bs-gutter-x: .75rem;
  --bs-gutter-y: 0;
}
.main-navigation-sub-inner .row {
  padding-bottom: 20px;
}
.main-navigation-sub-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.main-navigation-sub-list.level-1 {
  display: flex;
  flex-wrap: wrap;
}
.main-navigation-sub-list.level-1 .main-navigation-sub-link {
  font-size: 20px;
  padding: 5px 0;
  margin-bottom: 20px;
  flex: 0 0 auto;
  width: 50%;
}
.main-navigation-sub-list.level-1 .main-navigation-sub-link-item {
  font-weight: bold;
  color: #00aeef;
}
.main-navigation-sub-list.level-2 {
  columns: initial;
}
.main-navigation-sub-list.level-2 .main-navigation-sub-link {
  font-size: 20px;
  padding: 5px 0;
  margin-bottom: 0;
  font-weight: normal;
  flex: 0 0 auto;
  width: 100%;
}
.main-navigation-sub-list.level-2 .main-navigation-sub-link-item {
  font-weight: normal;
  color: #2e2e2e;
}
.main-navigation-sub-list.level-2 .main-navigation-sub-link-item:hover {
  color: #00aeef;
}
.main-navigation-sub-link {
  text-decoration: none;
}
.main-navigation-sub-case {
  width: 100%;
  height: 100%;
  display: flex;
  background-size: cover;
  background-position: center;
  border-radius: 100px 0;
  padding: 15px;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
}
.main-navigation-sub-case .overlay {
  z-index: 3;
  position: relative;
  color: #fff;
}
.main-navigation-sub-case .overlay .case-logo {
  filter: brightness(0) invert(1);
  max-width: 60%;
}
.main-navigation-sub-case .overlay.custom-logo .case-logo {
  filter: initial;
}
.main-navigation-sub-case::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: none;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(33, 37, 41, 0) 0%, rgba(33, 37, 41, 0) 50%, rgb(33, 37, 41) 100%);
}

@media screen and (max-width: 565px) {
  .offcanvas {
    width: 100% !important;
  }
}
.offcanvas .main-navigation-link {
  padding: 0;
}
.offcanvas .main-navigation-link:hover {
  background-color: transparent;
  color: #00aeef;
}
.offcanvas .main-navigation-list-item {
  display: block;
  width: 100%;
  margin: 0;
  padding: 10px 0;
}
.offcanvas .main-navigation-sub {
  position: initial;
  display: initial;
  padding-top: 0;
}
.offcanvas .main-navigation-sub .container {
  max-width: 100%;
}
.offcanvas .main-navigation-sub-list.level-1 {
  display: block;
  margin-top: 20px;
}
.offcanvas .main-navigation-sub-list.level-1 .main-navigation-sub-link {
  width: 100%;
}

.footer {
  margin-top: 55px;
}
.footer .container {
  max-width: 1140px;
}
.footer-highlight {
  background-color: #fff;
  position: absolute;
  top: -35px;
  right: 75px;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .footer-highlight {
    top: -20px;
    right: 20px;
  }
}
.footer-highlight p {
  margin-bottom: 0;
  font-weight: bold;
  font-size: 40px;
}
@media screen and (max-width: 767px) {
  .footer-highlight p {
    font-size: 22px;
  }
}
.footer-highlight p i {
  color: #00aeef;
  font-family: "DM Serif Display", serif;
  font-weight: normal;
}
.footer-inner {
  position: relative;
  border-top: 1px solid #2e2e2e;
  border-bottom: 1px solid #2e2e2e;
  padding-top: 140px;
  padding-bottom: 75px;
}
@media screen and (max-width: 767px) {
  .footer-inner {
    padding-top: 80px;
    padding-bottom: 20px;
  }
}
.footer-inner .logo {
  margin-bottom: 15px;
  display: block;
}
.footer-inner .logo-img {
  max-width: 150px;
}
.footer-headline {
  color: #00aeef;
  margin-bottom: 15px;
}
.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav-item {
  margin-bottom: 15px;
}
.footer-nav-item-link {
  text-decoration: none;
  color: #2e2e2e;
  transition: color 0.3s;
}
.footer-nav-item-link:hover {
  color: #00aeef;
}
.footer-nav-item-read-more {
  color: #ff6b00;
  text-decoration: underline;
}
.footer-nav-item-read-more:hover {
  color: #ff6b00;
}
.footer .bottom-bar {
  padding: 20px 0;
}
.footer .bottom-bar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .bottom-bar ul li {
  display: inline-block;
  margin-right: 20px;
}
.footer .bottom-bar ul li a {
  text-decoration: none;
  color: #2e2e2e;
  font-size: 15px;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .footer .bottom-bar ul li a {
    font-size: 12px;
  }
}

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