/*------------------------------------------------------------------
[Table of contents]

1. Import libraries
2. Custom properties
3. General Styles
4. Typography
5. Navs and Tabs
6. Breadcrumb
7. Buttons
8. Utilities
9. Sections
10.Boxes and Cards
11.Accordion
12.Error 404
13.Preloader
14.Back to Top Button
15.Responsive Layouts

-------------------------------------------------------------------*/

/* ---------------------------- */
/* 1. Import libraries          */
/* ---------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('../css/vendor/bootstrap.min.css');


/* ---------------------------- */
/* 2. Custom properties         */
/* ---------------------------- */
:root {
  --nexa-primary: #C5E71C;
  --nexa-secondary: #1A1D27;
  --nexa-light: #ffffff;
  --nexa-dark: #12141A;
  --nexa-text: #000000;
  --nexa-text-2: #8D8D8D;
  --nexa-font: 'Roboto', sans-serif;
  --nexa-font-2: 'Montserrat', sans-serif;
  --nexa-border-rad: 30px;
  --nexa-nexa-navbar-height: 147px;
}

.dark-linear-to-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, var(--nexa-dark) 0%, transparent 100%);
  z-index: 2;
}

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

.rotate-n10 {
  transform: rotate(-10deg);
}

.img-ratio-116 {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.img-ratio-121 {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.img-ratio-316 {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.img-ratio-311 {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.img-ratio-321 {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}


/* ---------------------------- */
/* 3. General Styles            */
/* ---------------------------- */
body {
  font-family: var(--nexa-font);
  color: var(--nexa-text);
  background-color: var(--nexa-light);
  overflow-x: hidden;
  width: 100%;
}

.section {
  padding: 6em 2em;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.b-container {
  max-width: 1340px;
  margin-right: auto;
  margin-left: auto;
  /* padding-right: 1.5rem;
  padding-left: 1.5rem; */
}

img {
  object-fit: cover;
}

.heading {
  font-family: var(--nexa-font-2);
  font-weight: 800;
}


/* ---------------------------- */
/* 4. Typography                */
/* ---------------------------- */
h1 {
  font-size: clamp(2.25rem, 5vw + 1rem, 4.5rem);
}

h2 {
  font-size: clamp(1.75rem, 4vw + 1rem, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw + 1rem, 2rem);
}

h4 {
  font-size: clamp(1.25rem, 2vw + 1rem, 1.563rem);
}

h5 {
  font-size: clamp(1.125rem, 1.5vw + 1rem, 1.375rem);
}

h6 {
  font-size: clamp(1rem, 1vw + 1rem, 1.25rem);
}

a {
  font-size: 18px;
}

p {
  font-size: 17px;
}

.bg-primary-color {
  background-color: var(--nexa-primary);
}

.bg-secondary-color {
  background-color: var(--nexa-secondary);
}

.bg-light-color {
  background-color: var(--nexa-light);
}

.bg-dark-color {
  background-color: var(--nexa-dark);
}

.text-color-1 {
  color: var(--nexa-text);
}

.text-color-2 {
  color: var(--nexa-text-2);
}

.text-color-3 {
  color: var(--nexa-primary);
}

.font-1 {
  font-family: var(--nexa-font);
}

.font-2 {
  font-family: var(--nexa-font-2);
}


/* ---------------------------- */
/* 5. Navs and Tabs             */
/* ---------------------------- */
/* Navbar Base Styles */
.offcanvas-body .navbar-nav {
  background-color: var(--nexa-secondary);
  justify-content: center;
  align-items: center;
  border-radius: 48px;
  padding: 0 8px 0 16px;
  margin: 0 48px 0 24px;
  flex-direction: row;
}

.navbar-nav .nav-link {
  color: var(--nexa-light) !important;
  font-family: var(--nexa-font-2);
  font-size: 18px;
  font-weight: 600;
  /* padding: 0;
  margin: 0; */
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--nexa-primary) !important;
}

.navbar-nav .dropdown-menu {
  background-color: var(--nexa-text);
  border: none;
  border-radius: 0 0 25px 25px;
  padding: 15px 0px;
  width: 220px;
  margin-top: 8px;
  z-index: 1000;
}

.navbar-nav .dropdown-item {
  color: white;
  padding: 10px 20px;
  font-size: 18px;
  font-weight: 600;
  font-family: var(--nexa-font-2);
}

.navbar-nav .dropdown-item:hover,
.navbar-nav .dropdown-item.active {
  background-color: transparent;
  color: var(--nexa-primary);
}

.portfolio-pills .nav-link {
  width: 100%;
  background: transparent;
  color: var(--nexa-text-2);
  border-bottom: 3px solid var(--nexa-text-2);
  border-radius: 0;
  font-weight: 800;
  font-size: 20px;
  text-align: left;
  padding: 16px 48px;
  margin: 0;
  transition: all 0.3s ease;
}

.portfolio-pills .nav-link:hover,
.portfolio-pills .nav-link.active {
  background-color: transparent;
  color: var(--nexa-text);
  border-bottom: 3px solid var(--nexa-text);
  border-radius: var(--nexa-border-rad);
}

.portfolio-img-wrapper {
  position: relative;
  display: inline-block;
}

.portfolio-img-wrapper::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--nexa-primary);
  z-index: 0;
  transform: rotate(0deg);
  border-radius: var(--nexa-border-rad);
}

.portfolio-img {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  z-index: 1;
  display: block;
  max-width: 325px;
  border-radius: var(--nexa-border-rad);
}

.portfolio-text {
  margin-left: 32px;
}


/* ---------------------------- */
/* 6. Breadcrumb                */
/* ---------------------------- */
.breadcrumb {
  font-size: 18px;
  font-weight: 600;
  font-family: var(--nexa-font-2);
}

.breadcrumb .breadcrumb-item>a {
  color: var(--nexa-primary);
  text-decoration: none;
}

.breadcrumb-item+.breadcrumb-item::before {
  color: var(--nexa-light) !important;
}

.breadcrumb-item a:hover,
.breadcrumb-item.active {
  color: var(--nexa-light) !important;
}


/* ---------------------------- */
/* 7. Buttons                   */
/* ---------------------------- */
.btn-cta-primary {
  background-color: var(--nexa-primary);
  color: var(--nexa-dark);
  font-family: var(--nexa-font-2);
  font-size: 18px;
  font-weight: 600;
  padding: 17px 30px;
  border: none;
  border-radius: var(--nexa-border-rad);
}

.btn-cta-primary:hover {
  background-color: var(--nexa-primary);
  color: var(--nexa-dark);
  border-radius: 10px;
}

.btn-cta-secondary {
  background-color: var(--nexa-text);
  color: var(--nexa-primary);
  font-family: var(--nexa-font-2);
  font-size: 18px;
  font-weight: 600;
  padding: 17px 30px;
  border: none;
  border-radius: var(--nexa-border-rad);
}

.btn-cta-secondary:hover {
  background-color: var(--nexa-primary);
  color: var(--nexa-text);
  border-radius: 10px;
}

.btn-cta-accent {
  background-color: var(--nexa-primary);
  color: var(--nexa-text);
  font-family: var(--nexa-font-2);
  font-size: 18px;
  font-weight: 600;
  padding: 17px 30px;
  border: none;
  border-radius: var(--nexa-border-rad);
}

.btn-cta-accent:hover {
  background-color: var(--nexa-text);
  color: var(--nexa-primary);
  border-radius: 10px;
}

.link-cta-primary {
  color: var(--nexa-primary);
  font-family: var(--nexa-font-2);
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
}

.link-cta-primary:hover {
  color: var(--nexa-primary);
  transform: scale(1.2);
}

.link-cta-secondary {
  color: var(--nexa-secondary);
  font-family: var(--nexa-font-2);
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
}

.link-cta-secondary:hover {
  color: var(--nexa-secondary);
  transform: scale(1.2);
}

.social-links li a {
  width: 50px;
  height: 50px;
  background-color: var(--nexa-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--nexa-primary);
  font-size: 18px;
  transition: all 0.3s ease;
}

.social-links li a:hover {
  background-color: var(--nexa-primary);
  color: var(--nexa-dark);
}

.social-links-2 li a {
  width: 50px;
  height: 50px;
  background-color: var(--nexa-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--nexa-dark);
  font-size: 18px;
  transition: all 0.3s ease;
}

.social-links-2 li a:hover {
  background-color: var(--nexa-dark);
  color: var(--nexa-primary);
  border: 2px dashed var(--nexa-primary);
}


/* ---------------------------- */
/* 8. Utilities;                */
/* ---------------------------- */
.object-fit-cover {
  object-fit: cover;
}

.dark-linear-to-top {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 50%);
}

.top-right-corner {
  position: absolute;
  top: 10px;
  right: 10px;
}

.flex-xl-fill {
  flex: 1 1 auto;
}

.w-fit-content {
  width: fit-content;
}

.testimonial-swiper {
  width: 100%;
  padding: 24px 0 32px;
  overflow: hidden;
}

.testimonial-item {
  width: 100%;
  max-width: 750px;
  will-change: transform;
  -webkit-backface-visibility: hidden;
}

.testimonial-text {
  color: var(--nexa-light, #ffffff);
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.client-info {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 15px;
}

.client-info img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--nexa-primary);
}

.client-details {
  text-align: start;
}

.swiper-pagination-bullet {
  background: var(--nexa-primary) !important;
  opacity: 0.3;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  width: 25px;
  border-radius: 5px;
}

.w-55 {
  width: 55%;
}

.h-90 {
  height: 95%;
}

.top-15 {
  top: 15px;
}

.left-20 {
  left: 20px;
}

.top-right-corner {
  position: absolute;
  top: 0;
  right: 0;
  margin: 33px;
  width: 70px;
  height: 70px;
}

.pt-10-vh {
  padding-top: 10vh;
}

.links-primary a {
  color: var(--nexa-light);
  font-weight: 600;
  text-decoration: none;
}

.links-primary a:hover,
.links-primary a.active {
  color: var(--nexa-primary);
}

.object-wrapper {
  position: relative;
}

.object-grayscale {
  filter: grayscale(100%);
}

.object-wrapper:hover .object-grayscale {
  filter: grayscale(0%);
}

.border-primary-color {
  border: 2px solid var(--nexa-primary);
}

.line-dotted {
  border-top: 2px dotted var(--nexa-primary) !important;
  width: 100%;
  margin: 1.5rem 0;
  opacity: 0.5;
}


/* ---------------------------- */
/* 9. Sections                  */
/* ---------------------------- */
.hero {
  overflow: hidden;
}

.hero img {
  position: absolute;
  top: 0;
  right: 0;
  height: 95%;
  max-height: none;
  width: auto;
  z-index: 0;
  opacity: 0.3;
  pointer-events: none;
  filter: brightness(0) invert(1);
}

.hero img::after {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  z-index: -1;
  opacity: 0.2;
  pointer-events: none;
}

.badge-label-dark {
  display: inline-block;
  padding: 10px 15px;
  background-color: transparent;
  color: var(--nexa-light);
  border: 1px solid var(--nexa-light);
  border-radius: var(--nexa-border-rad);
  font-family: var(--nexa-font);
  font-weight: 600;
  font-size: 20px;
}

.badge-label-light {
  display: inline-block;
  padding: 10px 15px;
  background-color: #EEEEEE;
  color: var(--nexa-text);
  border: none;
  border-radius: var(--nexa-border-rad);
  font-family: var(--nexa-font);
  font-weight: 600;
  font-size: 20px;
}

.video-trigger {
  position: relative;
  cursor: pointer;
  display: block
}

.play-btn {
  width: 75px;
  height: 75px;
  background: var(--nexa-primary);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  z-index: 10;
  box-shadow: 0 0 0 0 rgba(193, 217, 59, 0.7);
  animation: play-pulse 3s infinite
}

@keyframes play-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(197, 231, 28, 0.7);
  }

  70% {
    box-shadow: 0 0 0 25px rgba(193, 217, 59, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(193, 217, 59, 0);
  }
}

.page-title {
  overflow: hidden;
  height: 275px;
}

.page-title img {
  position: absolute;
  bottom: 40%;
  left: 50%;
  transform: translateX(-50%);
  height: 170vh;
  width: 100%;
  object-fit: cover;
  object-position: top;
  max-height: none;
  z-index: 0;
  opacity: 0.3;
  pointer-events: none;
  filter: brightness(0) invert(1);
}

.page-title img::after {
  position: fixed;
  bottom: 0;
  left: 15%;
  height: 100vh;
  z-index: -1;
  opacity: 0.3;
  pointer-events: none;
}


/* ---------------------------- */
/* 10. Boxes and Cards          */
/* ---------------------------- */
.logo-box {
  width: 100%;
  max-width: 200px;
  padding: 8px 0px;
}

.team-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--nexa-border-rad);
  border: none;
  width: 100%;
  height: auto;
}

.team-card .card-img {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.team-card .card-img-overlay {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.team-card .social-media {
  display: flex;
  flex-direction: column;
  align-self: flex-end;
  gap: 16px;
}

.team-card .social-media a {
  width: 32px;
  height: 32px;
  background-color: var(--nexa-dark);
  color: var(--nexa-primary);
  border-radius: 8px;
  padding: 3px 8px;
}

.team-card .social-media a:hover {
  background-color: var(--nexa-primary);
  color: var(--nexa-dark);
}

.team-card .team-profile {
  text-align: center;
}

.team-card .team-profile h3 {
  font-family: var(--nexa-font-2);
  font-size: 32px;
  font-weight: 800;
  color: var(--nexa-dark);
  background-color: var(--nexa-primary);
  padding: 4px;
  border-radius: 8px;
  margin: 8px 0;
}

.team-card .team-profile p {
  background-color: var(--nexa-dark);
  color: var(--nexa-primary);
  padding: 4px;
  border-radius: 8px;
  margin: 8px 0;
}

.blog-card {
  border: none;
  border-radius: var(--nexa-border-rad);
  height: 100%;
  transition: all 0.3s ease;
}

.blog-tag {
  background-color: var(--nexa-primary);
  color: var(--nexa-text);
  margin: 8px;
  padding: 8px 12px;
  top: 15px;
  left: 20px;
  font-size: 17px;
  font-weight: normal;
  z-index: 2;
}

.blog-card.img-wrapper {
  position: relative;
  overflow: hidden;
}

.blog-card.img-wrapper img {
  transition: transform 0.5s ease;
  transform-origin: center center;
  display: block;
  width: 100%;
  height: auto;
}

.blog-card:hover .img-wrapper img {
  transform: scale(1.05) rotate(1deg);
}

.blog-card .card-body {
  background-color: var(--nexa-dark);
  color: var(--nexa-light);
  padding: 32px 40px;
}

.blog-card a {
  color: var(--nexa-light);
  font-size: 18px;
  font-family: var(--nexa-font-2);
  transition: color 0.3s ease;
  text-decoration: none;
}

.blog-card a:hover {
  color: var(--nexa-primary);
  text-decoration: none;
}

.card-img-info {
  background-color: rgba(255, 255, 255, 0.7);
  position: absolute;
  bottom: -5%;
  left: 50%;
  transform: translateX(-50%) translateY(10%);
  width: 90%;
  max-height: 175px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.card-img-info .card-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-color-1);
  border-bottom: 2px solid var(--nexa-dark);
  padding-bottom: 20px;
}

.card-img-info .card-text {
  color: var(--text-color-2);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.popup-trigger:hover .card-img-info {
  transform: translateX(-50%) translateY(-12%);
  height: auto;
  max-height: 450px;
}

.popup-trigger:hover .card-img-info .card-text {
  opacity: 1;
}

.process-card {
  background-color: var(--nexa-dark);
  border: 3px solid var(--nexa-primary);
  border-radius: var(--nexa-border-rad);
  padding: 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
  width: 205px;
}

.card-step-1 {
  height: 250px;
}

.card-step-2 {
  height: 280px;
}

.card-step-3 {
  height: 310px;
}

.card-step-4 {
  height: 340px;
}

.step-number {
  color: transparent;
  -webkit-text-stroke: 1px var(--nexa-light);
  font-family: var(--nexa-font-2);
  font-size: 3rem;
  font-weight: 800;
  text-align: right;
  line-height: 1;
}

.step-title {
  color: var(--nexa-light);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0;
  line-height: 1.2;
}

.process-card:hover {
  background-color: var(--nexa-secondary);
  transform: translateY(-5px);
}


/* ---------------------------- */
/* 11. Accordion                */
/* ---------------------------- */
.accordion-button {
  background-color: var(--nexa-dark);
  color: var(--nexa-text-2);
  font-size: 24px;
  font-weight: 800;
  padding: 16px 0;
  border-bottom: 1px solid var(--nexa-text-2);
  border-radius: 0 !important;
  box-shadow: none;
  transition: all 0.3s ease-in-out;
}

.accordion-button:hover {
  background-color: var(--nexa-dark);
  color: var(--nexa-light);
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background-color: var(--nexa-dark);
  color: var(--nexa-light);
  transition: all 0.3s ease-in-out;
}

.accordion-button:not(.collapsed):hover {
  background-color: var(--nexa-dark);
  color: var(--nexa-light);
}

.accordion-body {
  background-color: var(--nexa-dark);
  font-size: 18px;
  border-bottom: 0;
  padding: 32px 0;
  transition: all 0.3s ease-in-out;
}

.accordion-button::after {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background-image: none !important;
  font-family: "bootstrap-icons" !important;
  content: "\f64d";
  /* bi-plus-lg */
  font-size: 18px;
  font-weight: bolder;
  color: #fff;
  transition: all 0.3s ease-in-out;
}

.accordion-button:not(.collapsed)::after {
  content: "\f2ea";
  /* bi-dash-lg */
}


/* ---------------------------- */
/* 12. Error 404                */
/* ---------------------------- */
.error-code {
  font-family: var(--nexa-font-2);
  font-size: 18rem;
  font-weight: 800;
  color: var(--nexa-light);
  line-height: 1;
  margin-bottom: 2rem;
}

.error-code span {
  display: inline-block;
  animation: float 1.5s ease-in-out infinite;
}

.error-code span:nth-child(2) {
  animation-delay: 0.5s;
  background: linear-gradient(180deg, var(--nexa-primary), var(--nexa-secondary));
  color: var(--nexa-white);
  padding: 15px 0;
  border-radius: var(--nexa-border-rad);
}

.error-code span:nth-child(3) {
  animation-delay: 1s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}


/* ---------------------------- */
/* 13. Preloader                */
/* ---------------------------- */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease-out;
  background: var(--nexa-dark, #1a1a1a);
}

#preloader .spinner-border {
  animation: none;
  border: none;
  width: 100px;
  height: 100px;
  position: relative;
}

#preloader .spinner-border::before,
#preloader .spinner-border::after {
  content: '';
  position: absolute;
  border: 4px solid var(--nexa-primary, #C5E71C);
  opacity: 1;
  border-radius: 50%;
  animation: preloader-pulse 3s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader .spinner-border::after {
  animation-delay: -1.0s;
}

@keyframes preloader-pulse {
  0% {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    opacity: 1;
  }

  100% {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    opacity: 0;
  }
}

#preloader .visually-hidden {
  display: none !important;
}


/* ---------------------------- */
/* 14. Back to Top Button       */
/* ---------------------------- */
.back-to-top {
  position: fixed;
  bottom: -50px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: var(--nexa-primary, #C5E71C);
  border-radius: 50%;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.back-to-top::before {
  content: '';
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 12px;
  height: 12px;
  border-top: 4px solid var(--nexa-dark, #1a1a1a);
  border-left: 4px solid var(--nexa-dark, #1a1a1a);
  transition: all 0.3s ease;
}

.back-to-top:hover {
  background: var(--nexa-secondary, #1a1a1a);
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border: 2px dashed var(--nexa-primary, #C5E71C);
}

.back-to-top:hover::before {
  border-color: var(--nexa-primary, #C5E71C);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
  bottom: 30px;
}


/* ---------------------------- */
/* 15. Responsive Layouts       */
/* ---------------------------- */
@media only screen and (max-width: 1199.98px) {
  .section {
    padding: 5em 1.5em;
  }

  a {
    font-size: 17px;
  }

  p {
    font-size: 16px;
  }

  .offcanvas-body .navbar-nav {
    background-color: transparent;
    flex-direction: column;
    align-items: stretch;
    padding: 16px 0;
    margin: 0;
    border-radius: 0;
  }

  .navbar-nav .nav-link {
    padding-top: 12px;
    padding-bottom: 12px;
    width: 100%;
    display: block;
  }

  .navbar-nav .dropdown-menu {
    padding: 8px 0px;
    border-radius: 0;
    width: 100%;
  }

  .navbar-nav .dropdown-item {
    padding: 10px 20px;
    width: 100%;
    display: block;
  }

  .quotes-cta {
    display: none;
  }

  .portfolio-img-wrapper::before {
    top: 0;
    right: 0;
  }

  .portfolio-img {
    aspect-ratio: 21 / 9;
    max-width: 700px;
  }

  .portfolio-text {
    margin-top: 64px;
    margin-left: 0;
  }

  .img-ratio-116 {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
  }

}

@media only screen and (max-width: 991.98px) {
  .section {
    padding: 4em 1em;
  }

  .img-ratio-121 {
    position: relative;
    aspect-ratio: 21 / 9;
    overflow: hidden;
  }

  .img-ratio-316 {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
  }

  .img-ratio-311 {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
  }

  .img-ratio-321 {
    position: relative;
    aspect-ratio: 21 / 9;
    overflow: hidden;
  }

  .team-card .card-img {
    aspect-ratio: 1 / 1;
  }

}

@media only screen and (max-width: 767.98px) {
  .section {
    padding: 3em 1em;
  }

  .portfolio-img {
    max-width: 600px;
  }

  .process-card {
    width: auto !important;
    height: 220px !important;
    padding: 1rem;
    margin-bottom: 1rem;
  }

  .step-number {
    font-size: 2rem;
  }

  .step-title {
    font-size: 1rem;
  }

  .error-code {
    font-size: 15rem;
  }

}

@media only screen and (max-width: 576.98px) {
  .portfolio-img {
    max-width: 400px;
    margin: auto;
  }

  .img-ratio-116 {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
  }

}

@media only screen and (max-width: 399.98px) {
  .portfolio-img {
    aspect-ratio: 1 / 1;
    max-width: 275px;
  }

  .team-card .card-img {
    aspect-ratio: 3 / 4;
  }

  .team-card .team-profile h3 {
    font-size: 20px;
  }

  .team-card .team-profile p {
    font-size: 14px;
  }

}



/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/