/*
Theme Name:   Omnidocs
Theme URI:    http://supertusch.dk/theme/omnidocs/
Description:  Basically Bootstrap 4 Child Theme created for Omnidocs 2025
Author:       Supertusch
Author URI:   http://supertusch.dk
Template:     basically-bootstrap-4
Version:      1.0.0
Domain Path: /languages/
Text Domain:  omnidocs
*/



@import url('https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible:ital,wght@0,400;0,700;1,400;1,700&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');



/****  VARIABLES  ****/

:root {
    --black: #171717;
    --black-60: rgba(23, 23, 23, .6);
    --black-10: rgba(23, 23, 23, .1);

    --gray: #555555;
    --white-80: rgba(255, 255, 255, 0.8);
    --charged-purple: #5F00FA;
    --charged-purple-light: rgba(95, 0, 250, 0.10);
    --btn-dark: #0A0014;

    --bg-gray: #F8FAFC;
    --bg-yellow: #FFF6C3;
    --bg-light-purple: #F3F0FF;
    --bg-dark-purple: #4600B4;

    --overlay-dark: rgba(0,0,0, 0.4);
    --overlay-light: rgba(255, 255, 255, 0.4);

    --border-radius-small: 4px;
    --border-radius-medium: 10px;
    --border-radius-large: 12px;

    --btn-border: 1px solid rgba(255, 255, 255, .2);
    --btn-border-dark: 1px solid rgba(23, 23, 23, .2);

}


/****  LAYOUT OVERRIDES  ****/


.grid-row {
  row-gap: 30px;
}

@media (min-width: 1300px) {
  .container {
    width: 1200px;
    max-width: 100%;
  }
}



/***** ANIMATIONS ****/

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95); /* Slight zoom effect */
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}


section.block-content .container {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

section.block-content .container.visible {
  opacity: 1;
  transform: translateY(0);
}




/****  BACKGROUNDS  ****/


.bg-white {
  background-color: white;
}

.bg-white .post-content-container, .bg-white .card  {
  background-color: var(--bg-gray);
}

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

.bg-gray .post-content-container, .bg-gray .card  {
  background-color: white;
}

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

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

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

.bg-dark_purple h1, .bg-dark_purple h2, .bg-dark_purple h3, .bg-dark_purple p.area-title , .bg-dark_purple .introduction p {
  color: white;
}

.bg-gray h1 {
  color: var(--black);
}

.bg-dark_purple p {
  color: var(--white-80);
}



/****  FONTS  ****/

body {
  font-family: "Atkinson Hyperlegible", sans-serif;
  color: var(--black);
}

body .btn, body header a, .hs-button {
  font-family: "Work Sans", serif !important;
}

strong {
  font-weight: 700;
}

.hero-content h1 {
  font-size: clamp(2.375rem, 5vw, 4rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  color: var(--black);
  font-weight: 700;
}

h3 {
  font-weight: 700;
}

p {
  font-size: 16px;
  color: var(--gray);
}

p:last-child, blockquote, .text-wrapper p:last-child {
  margin-bottom: 0px;
}

.introduction p, .introduction li {
  font-size: 20px;
  color: var(--black);
}

p.area-title {
  font-weight: 700;
  color: var(--charged-purple);
  margin: 0px;
  font-size: 16px !important;
}

li {
  font-size: inherit;
  color: inherit;
}

.left {
  text-align: left;
  left: 0;
}

.right {
  text-align: right;
  right: 0;
}

a:not(.btn) {
  color: var(--charged-purple);
  /* text-decoration: underline; */
}

.bg-dark_purple a:not(.btn), nav a:not(.btn), .hero a:not(.btn)  {
  color: white;
}

/****  ElEMENTS  ****/


body {
  position: relative;
}
 .image-container img {
   width: 100%;
 }

 button,
 button:focus,
 button:active,
 button:visited {
   outline: none;
 }


.btn-container {
  display: flex;
  grid-gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn, .hbspt-form form input.hs-button {
  background-color: var(--btn-dark);
  color: white;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: var(--border-radius-medium);
  width: fit-content;
  transition: background-color .4s ease;
}

.btn:hover {
  color: white;
  background-color: #28024e;
}


.secondary-btn {
  color: white;
  background: transparent;
  border: var(--btn-border);
  font-weight: 400;
}


.image-text-hero .secondary-btn {
  color: var(--black);
  border: var(--btn-border-dark);
}

.image-text-hero .secondary-btn:hover {
  background: #f6f6f6;
  color: var(--black);
}

.secondary-btn:hover {
  background: rgba(255, 255, 255, .1);
  color: white;
}
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
}

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

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

.light h1, .light p, .light h2 {
  color: white !important;
}

.dark h1, .dark p, .dark h2 {
  color: var(--black) !important;
}

video {
  display: block;
}

.centered {
  text-align: center;
}

a, .btn, button {
  cursor: pointer;
}

.btn:focus {
  box-shadow: none;
}

.anchor {
  position: relative;
  top: -120px;
}


/****   VIDEO MODAL  ****/


.video-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.60);
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.video-modal.show {
    opacity: 1;
}

.video-modal-content {
    position: relative;
    width: 80%;
    border-radius: 8px;
    animation: fadeIn 0.3s ease-in-out;
}

#modal-video-container {
  border-radius: var(--border-radius-large);
  overflow: hidden;
}


.close-video {
  position: absolute;
  top: 40px;
  right: 40px;
  font-size: 60px;
  color: white;
  cursor: pointer;
}

.video-trigger {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 10;
}



/****  HEADER / NAVIGATION  ****/

header {
  position: absolute;
  width: 100%;
  z-index: 2;
  margin-top: 20px;
  height: 80px;
}


header a {
  color: white;
  font-family: "Work Sans", serif;
}

header .header-menu a {
  color: var(--white-80) !important;
}

header .header-menu a:hover {
  color: white !important;
}

.page-header {
  padding: 0px;
}

.nav-cta-wrapper {
  display: flex;
  grid-gap: 10px;
  align-items: center;
}

.nav-cta.cta-link {
  padding: 0px 16px;
  text-decoration: underline;
}

@media screen and (max-width: 576px) {
  header .container {
    width: 100%;
  }
}


/* Header banner */

header.has-banner + main .hero.centered_hero {
  padding-top: 250px !important;
}

header.has-banner {
  margin-top: 0px;
}

header.has-banner .page-header {
  padding-top: 20px;
}


.header-banner {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 20px 0px;
  text-align: center;
}

.header-banner h2 {
  font-size: 18px;
}

.header-banner p {
  font-size: 18px;
  color: var(--black);
}




/* Mega menu / Sub menu */

.mega-sub-menu {
  background-color: white;
}

header .header-menu .mega-sub-menu a {
  color: var(--black) !important;
}

header .header-menu .mega-sub-menu a.btn  {
  color: white !important;
  margin-top: 20px !important;
}

header .header-menu .mega-sub-menu a.mega-menu-link {
  color: var(--black) !important;
  text-transform: uppercase;
  border-bottom: 1px solid var(--black-10) !important;
  font-weight: 600 !important;
  margin-bottom: 12px !important;
  padding-left: 10px !important;
}


header .header-menu .mega-sub-menu a.mega-menu-link .mega-menu-description {
  margin: 0 !important;
  color: var(--gray) !important;
  font-style: normal !important;
}
header .header-menu .mega-sub-menu .mega-sub-menu .mega-sub-menu .mega-sub-menu a.mega-menu-link {
  border-bottom: none !important;
  padding: 8px 0px !important;
  color: #18181B !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  margin-bottom: 0px !important;
  padding-left: 10px !important;
  transition: background-color .4s ease !important;
}

header .header-menu .mega-sub-menu .mega-sub-menu .mega-sub-menu .mega-sub-menu a.mega-menu-link:hover {
  background-color: var(--bg-gray) !important;
  border-radius: var(--border-radius-small) !important;
}

header .header-menu .mega-sub-menu .mega-sub-menu .mega-sub-menu .mega-sub-menu a.mega-menu-link .mega-menu-description {
  font-weight: 400 !important;
  color: #71717A !important;
  margin: 0px !important;
}

#mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-megamenu > ul.mega-sub-menu {
  overflow: hidden !important;
  margin-top: 20px;
  padding: 0;
}

#mega-menu-wrap-header-menu #mega-menu-header-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column > ul.mega-sub-menu > li.mega-menu-item {
  padding: 24px;
}

#mega-menu-wrap-header-menu #mega-menu-header-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column > ul.mega-sub-menu > li.mega-menu-item.widget_custom_html, #mega-menu-wrap-header-menu #mega-menu-header-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column > ul.mega-sub-menu > li.mega-menu-item.widget_media_image {
  padding: 0px;
}
#mega-menu-wrap-header-menu #mega-menu-header-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column > ul.mega-sub-menu > li.mega-menu-item.widget_media_image img {
  height: 100% !important;
  object-fit: cover !important;
}

#mega-menu-wrap-header-menu #mega-menu-header-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column > ul.mega-sub-menu > li.mega-menu-item.widget_custom_html .custom-html-widget {
  color: var(--black) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
}

#mega-menu-wrap-header-menu #mega-menu-header-menu li.mega-menu-item.widget_custom_html .mega-block-title {
  display: none !important;
}


#mega-menu-wrap-header-menu .mega-menu-row > ul.mega-sub-menu {
  display: flex !important;
}

#mega-menu-wrap-header-menu .mega-menu-column > .mega-sub-menu {
  height: 100% !important;
}

#mega-menu-wrap-header-menu .mega-menu-column > .mega-sub-menu li, #mega-menu-wrap-header-menu .mega-menu-column > .mega-sub-menu div {
  height: 100% !important;
}


/* mobile menu */


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

#mega-menu-wrap-header-menu #mega-menu-header-menu li.mega-menu-item-has-children.mega-hide-arrow > a.mega-menu-link > span.mega-indicator {
    display: inline-block !important;
    color: var(--charged-purple) !important;
  }

  #mega-menu-header-menu .mega-menu-item .mega-sub-menu .mega-indicator {
    display: none !important;
  }

  #mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-item:not(:last-child) {
    margin-bottom: 10px;
  }

  #mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-item > a.mega-menu-link {
    font-weight: 600 !important;
    font-size: 20px !important;
  }


  #mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-megamenu > ul.mega-sub-menu {
    background-color: var(--bg-gray) !important;
    border-radius: var(--border-radius-medium) !important;
    padding: 14px !important;
  }


  #mega-menu-header-menu {
    padding: 20px !important;
    border-radius: var(--border-radius-medium) !important;
    box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.15) !important;

  }
  /* header .container, header .col-md-9, header nav, header #mega-menu-wrap-header-menu {
    position: static !important;
  } */

  #mega-menu-header-menu li.mega-menu-item:last-child > a.mega-menu-link {
    margin-bottom: 0px !important;
  }

  #mega-menu-wrap-header-menu #mega-menu-header-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column > ul.mega-sub-menu > li.mega-menu-item {
    padding: 0px !important;
    /* margin-bottom: 30px !important; */
  }

  #mega-menu-wrap-header-menu #mega-menu-header-menu li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-2-columns > ul.mega-sub-menu > li.mega-menu-item {
    width: 100% !important;
  }

  #mega-menu-header-menu {
    /* width: 100vw !important;
    left: 0 !important; */
      top: 60px !important;
    /* height: calc(100vh - 80px) !important; */
    /* height: auto !important; */
    /* max-height: auto !important; */
  }

  #mega-menu-wrap-header-menu .mega-menu-row > ul.mega-sub-menu {
    flex-direction: column !important;
    row-gap: 30px !important;
  }

  #mega-menu-wrap-header-menu #mega-menu-header-menu a:not(.btn) {
    color: var(--black) !important;
  }

  #mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-megamenu > ul.mega-sub-menu {
    margin-top: 10px !important;
    margin-bottom: 20px !important;
  }

  /* #mega-menu-wrap-header-menu #mega-menu-header-menu > li:not(.mega-weglot-parent-menu-item) > a.mega-menu-link {
    margin-bottom: 15px !important;
  } */

  #mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-btn > a.mega-menu-link {
    margin-bottom: 0px !important;
  }


  #mega-menu-header-menu  .mega-menu-column.mega-solutions-column, #mega-menu-header-menu .mega-menu-column.mega-solitwork-for-column   {
    padding-left: 10px !important;
  }

  #mega-menu-header-menu .mega-sub-menu {
    background-color: transparent !important;
    box-shadow: none !important;
    /* padding: 10px 0px 10px 20px !important; */
  }

  #mega-menu-header-menu .mega-solutions-wrapper .mega-sub-menu {
    padding: 0 !important;
  }

  #mega-menu-header-menu .solutions-column {
    border-right: none !important;
  }



  #mega-menu-header-menu .mega-weglot-parent-menu-item, #mega-menu-header-menu .mega-btn {
    width: fit-content !important;
    margin: 0px 10px !important;
    margin-bottom: 15px !important;
  }

  #mega-menu-header-menu .mega-weglot-parent-menu-item {
    margin-top: 40px !important;
  }

  #mega-menu-wrap-header-menu .mega-menu-toggle + #mega-menu-header-menu {
    width: 100%;
    max-width: none;
    top: 80px;
    padding: 30px 0px;
    /* max-height: none !important; */
  }


  /* .logged-in.admin-bar #mega-menu-wrap-header-menu .mega-menu-toggle + #mega-menu-header-menu {
    top: 126px;
  } */

  #mega-menu-wrap-header-menu .mega-menu-toggle.mega-menu-open:after {
    content: none;
  }
}


/* @media only screen and (max-width: 576px) {
  #mega-menu-header-menu {
    border-radius: 0px 0px 10px 10px !important;
  }
} */


/* Banner bg options */

.menu-banner {
  padding: 30px !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}
.menu-banner.bg-yellow {
  background-image: url('assets/images/menu-backgrounds/bg-yellow.png') !important;
}

.menu-banner.bg-person-yellow {
  background-image: url('assets/images/menu-backgrounds/bg-person-yellow.png') !important;
}
.menu-banner.bg-gray {
  background-image: url('assets/images/menu-backgrounds/bg-gray.png') !important;
}
.menu-banner.bg-light-purple {
  background-image: url('assets/images/menu-backgrounds/bg-light-purple.png') !important;
}
.menu-banner.bg-dark-purple {
  background-image: url('assets/images/menu-backgrounds/bg-dark-purple.png') !important;
}

.menu-banner.bg-dark-purple h3, .menu-banner.bg-dark-purple p  {
  color: white !important;
}

.menu-banner.bg-dark-purple p {
  opacity: 0.6 !important;
}

.menu-banner.bg-light-purple h3, .menu-banner.bg-light-purple p  {
  color: var(--bg-dark-purple) !important;
}

.menu-banner.bg-light-purple p {
  opacity: 0.7 !important;
}


/* Submenu icons */

.icon-item > .mega-menu-link {
  /* display: flex !important;
  align-items: center !important; */
  padding-bottom: 8px !important;
}


.icon-item > .mega-menu-link::before {
  content: '' !important;
  display: flex !important;
  width: 24px !important;
  height: 24px !important;
  min-width: 24px !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  margin-bottom: 12px !important;
}

.icon-item.icon-omnidocs > .mega-menu-link::before {
  background-image: url('assets/images/menu-icons/omnidocs-icon-purple.svg') !important;
}

.icon-item.icon-legal > .mega-menu-link::before {
  background-image: url('assets/images/menu-icons/icon-legal.svg') !important;
}

.icon-item.icon-overview > .mega-menu-link::before {
  background-image: url('assets/images/menu-icons/icon-overview.svg') !important;
}

.icon-item.icon-academy > .mega-menu-link::before {
  background-image: url('assets/images/menu-icons/icon-academy.svg') !important;
}

.icon-item.icon-documents > .mega-menu-link::before {
  background-image: url('assets/images/menu-icons/icon-documents.svg') !important;
}

.icon-item.icon-processes > .mega-menu-link::before {
  background-image: url('assets/images/menu-icons/icon-processes.svg') !important;
}

.icon-item.icon-integrations > .mega-menu-link::before {
  background-image: url('assets/images/menu-icons/icon-integrations.svg') !important;
}

.icon-item.icon-industries > .mega-menu-link::before {
  background-image: url('assets/images/menu-icons/icon-industries.svg') !important;
}

.icon-item.icon-use-cases > .mega-menu-link::before {
  background-image: url('assets/images/menu-icons/icon-use-cases.svg') !important;
}

.icon-item.icon-business-needs > .mega-menu-link::before {
  background-image: url('assets/images/menu-icons/icon-business-needs.svg') !important;
}

.icon-item.icon-document-generation > .mega-menu-link::before {
  background-image: url('assets/images/menu-icons/icon-document-generation.svg') !important;
}

/****  HERO  ****/

.hero {
  position: relative;
}

.hero .container {
  height: 100%;
}

.hero .bg-video-container {
  width: 100%;
}



.hero-content p {
  opacity: 0.9;
}

.hero .bg-video-container, .hero .bg-video-container video {
  /* max-height: 100vh; */
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.hero .bg-video-container {
  position: absolute;
}


/**  Centered hero  **/

.hero .centered {
  text-align: center;
}

.hero.centered_hero {
  /* height: 100vh; */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero.centered_hero .btn-container {
  justify-content: center;
}

.hero.centered_hero.image-bg {
  padding-top: 200px;
}

.hero.centered_hero.image-bg, .hero.centered_hero.video-bg  {
  padding-bottom: 120px;
}

.hero.centered_hero.image-bg.has-edge-image, .hero.centered_hero.video-bg.has-edge-image  {
  padding-bottom: 0px;
}

.hero.centered_hero .hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-gap: 40px;
}

.hero.centered_hero .hero-content .hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero.centered_hero h1 {
  margin-bottom: 15px;
}

.hero.centered_hero p {
  max-width: 70%;
  font-size: 18px;
}

.hero.centered_hero .image-column {
  position: relative;
  bottom: -100px;
  display: flex;
  justify-content: center;
}

.hero.centered_hero .video-hero-content {
  /* padding-top: 200px; */
  height: 100%;
}

.hero.centered_hero .image-hero-content {
  height: 100%;
}


.hero.centered_hero.video-bg {
  padding-top: 200px;
}

.hero.centered_hero.video-bg .bg-video-container,
.hero.centered_hero.video-bg .overlay {
  top: 0;
}

.hero.centered_hero.video-bg .bg-video-container, .hero.centered_hero.video-bg .bg-video-container video {
  position: absolute;
  height: 100%;
  max-height: none;
}

.hero.centered_hero.video-bg .overlay {
  z-index: 1;
}

.hero.centered_hero.video-bg .video-hero-content {
  z-index: 2;
  position: relative;
}

/**  Video hero  **/

.hero.video_hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  min-height: 600px;
}
.hero.video_hero .container {
  height: auto;
}

.hero.video_hero .video-hero-content {
  height: 100%;
  margin-top: 200px;
}

.hero.video_hero .overlay {
  z-index: 1;
}

.hero.video_hero h1 {
  font-size: 48px;
  margin: 0px;
}

.hero.video_hero .btn-container {
  justify-content: flex-start;
}

.hero.video_hero .hero-content {
  display: flex;
  flex-direction: column;
  grid-gap: 40px;
}

.hero.video_hero .hero-content .hero-text {
  display: flex;
  flex-direction: column;
  grid-gap: 20px;
}

.hero.video_hero .video-hero-content {
    width: 100%;
    padding-bottom: 140px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
}



/**  Image & Text hero  **/


.hero.image-text-hero {
  padding: 160px 0px 80px 0px;
}

.hero.image-text-hero .place-left {
  order: -1;
}

.hero.image-text-hero h1 {
  font-size: clamp(2.375rem, 2vw, 3rem);
  font-weight: 700;
}

.hero.image-text-hero .row {
  align-items: center;
}

.hero.image-text-hero .text-wrapper {
  display: flex;
  flex-direction: column;
  grid-gap: 20px;
  padding-right: 10px;
}

.hero.image-text-hero h1, .hero.image-text-hero .text-wrapper p:last-of-type {
  margin-bottom: 0px;
}

.hero.image-text-hero .btn-container {
  justify-content: flex-start;
  margin-top: 20px;
}



/****  BLOCKS  ****/

section.block-content {
  padding: 140px 0px;
}

section.hero.has-edge-image + section.block-content {
  padding-top: 240px;
}


.block-content.bg-white + .block-content.bg-white, .block-content.bg-gray + .block-content.bg-gray,
.block-content.bg-yellow + .block-content.bg-yellow, .block-content.bg-light_purple + .block-content.bg-light_purple,
.block-content.bg-dark_purple + .block-content.bg-dark_purple {
  padding-top: 0px;
}



/**  General  **/

.belongs-to-prev {
  margin-top: -70px; /* Half of the padding */
}

.block-introduction {
  display: flex;
  flex-direction: column;
  grid-gap: 20px;
  margin-bottom: 60px;
}

.block-introduction h2, .block-introduction p {
  margin-bottom: 0px;
}

.block-introduction.centered {
  text-align: center;
}

.image-container, .video-container {
  border-radius: var(--border-radius-large);
  overflow: hidden;
}




/* Card */

.card {
  background-color: white;
  border: none;
  border-radius: 0px;
  padding: 40px;
}

.bg-white .card {
  background-color: var(--bg-gray);
}




/**  Text content  **/

.text_content .image-container {
  margin-top: 60px;
}


@media (min-width: 768px) {
  .block-introduction.half-width {
    width: calc(50% - 15px);
  }

  .text-columns-two {
    column-count: 2;
    column-gap: 30px;
    text-align: justify;
  }
}



/**  Text & Image  **/

.text_and_image .place-left {
  order: -1;
}

.text_and_image .text-wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 20px;
}

.text_and_image .image-wrapper img {
  border-radius: var(--border-radius-medium);
}

.text_and_image .text-wrapper p:not(.area-title) {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
}




/**  Fullwidth media  **/

.media_fullwidth .block-introduction {
  margin-bottom: 60px;
}

.media_fullwidth .block-introduction p:not(.area-title) {
  padding-right: 30%;
}


/**  Featured case  **/

blockquote p, .author-container p  {
  color: var(--black);
}

.featured_case blockquote p {
  font-size: 22px;
}

.case-testimonial-row {
  row-gap: 20px;
}

.featured_case .icon-container img {
  max-width: 200px;
}

.star-rating {
  margin-bottom: 20px;
}

.quote-container {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}

.author-container {
  display: flex;
  column-gap: 10px;
  align-items: center;
}

.author-container p.position {
  font-size: 14px;
  color: var(--gray);
}

.author-container p.author {
  font-weight: 700;
}
.author-container p {
  margin-bottom: 0px;
}
.author-image {
  border-radius: 1000px;
  overflow: hidden;
  width: 40px;
  min-width: 40px;
  height: 40px;
  min-height: 40px;
  object-fit: cover;
}


/**  Icon cards  **/

.icon_cards .block-introduction {
  margin-bottom: 60px;
}

.icon_cards .icon img {
  width: 40px;
  height: 40px;
}

.icon_cards h3 {
  font-size: 20px;
}

.icon_cards p, .icon_cards li {
  font-size: 18px;
}

.icon_cards .card {
  row-gap: 40px;
  height: 100%;
}

/**  Icon list  **/

.row.items-grid {
  row-gap: 60px;
}

.icon-item {
  display: flex;
  grid-gap: 30px;
  align-items: flex-start;
}

.icon-item h3 {
  font-size: 18px;
}

.icon-item p {
  font-size: 14px;
}

.item-icon {
  background-color: var(--charged-purple-light);
  padding: 15px;
  border-radius: var(--border-radius-medium);
  height: fit-content;
  min-width: 70px;
}

.item-icon img {
  width: 40px;
  height: 40px;
}


/**  Partners  **/


.partners .banner .block-introduction {
  margin-bottom: 30px;
}

.partners-grid .card {
  align-items: center;
  justify-content: center;
  height: 100%;
}

.partners-grid .card img {
  width: fit-content;
  object-fit: contain;
  max-height: 35px;
}

.banner-logo {
  /* width: fit-content; */
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner .partners-grid {
  /* justify-content: space-between; */

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); /* Responsive grid */
  gap: 20px; /* Space between logos */
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.banner .partners-grid .card {
  background: none;
  padding: 0;
}

.banner h2 {
  font-size: 14px;
  color: var(--gray);
}

.banner .partners-grid {
  padding: 0px 15px;
}

@media screen and (max-width: 992px) {
  .partners-grid .card img {
    max-height: 20px;
  }
}




/**  Highlight section  **/

.section-container {
  padding-top: 60px;
  border-radius: var(--border-radius-large);
}

.highlight_section .edge-img-wrapper {
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 992px) {
  .section-container {
    padding: 60px 30px 0px 30px;
  }
}


/**  Featured testimonial  **/

.featured_testimonial blockquote p {
  font-size: clamp(2rem, 3vw, 3rem);
  color: var(--black);
  font-weight: 700;
  line-height: 110%;
}

.featured_testimonial .author-container {
  flex-direction: column;
  align-items: flex-start;
}

.testimonial-container {
  padding: 40px;
  padding-left: 0px;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}

.featured_testimonial .icon-container img {
  max-height: 60px;
  width: auto;
  object-fit: contain;
  object-position: left;
}

.list-grid {
  border-top: 1px solid rgba(23, 23, 23, 0.10);
  padding-top: 40px;
}

.list-grid {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}

.list-item {
  display: flex;
  column-gap: 10px;
  align-items: center;
}

.list-item .icon {
  min-width: 25px;
  width: 25px;
  min-height: 25px;
  height: 25px;
}

.list-item p {
  font-size: 18px;
}

/** Testimonials **/

.testimonials-grid .card {
  padding: 30px 20px;
  row-gap: 20px;
}

.testimonials-masonry {
  column-count: 3; /* Adjust for the number of columns */
  column-gap: 20px; /* Gap between columns */
}

@media (max-width: 768px) {
  .testimonials-masonry {
    column-count: 2; /* Fewer columns for smaller screens */
  }
}

@media (max-width: 576px) {
  .testimonials-masonry {
    column-count: 1; /* Single column for very small screens */
  }
}

.testimonial-card {
  break-inside: avoid;
  margin-bottom: 20px; /* Space between cards */
  /* display: inline-block; */
  width: 100%; /* Ensure the card fits in its column */
}


.author-container {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.author-image img {
  border-radius: 50%;
  margin-right: 0.5rem;
  width: 50px;
  height: 50px;
  object-fit: cover;
}

.author {
  font-weight: bold;
}

.position {
  font-style: italic;
  color: #555;
}



/** Visual divider **/


section.block-content.visual_divider {
  padding: 0px !important;
  position: relative;
  display: flex;
  align-items: center; /* Centers text block */
  justify-content: center; /* Centers content horizontally */
  overflow: hidden;
}

section.block-content.visual_divider .overlay {
  z-index: 2;
}

.visual_divider .divider-content {
  position: relative;
  z-index: 3; /* Ensures text is above image */
  padding: 5vw; /* Responsive padding */
}

.visual_divider h2 {
  font-size: clamp(3rem, 6vw, 6.25rem);
  color: white;
  margin: 0;
  line-height: 1.2;
}

.visual_divider .fullscreen-image, .visual_divider .fullscreen-video {
  position: absolute;
  width: 100%;
  height: 100%; /* Height adjusts dynamically */
  transform: translateY(-50%); /* Centers vertically */
  z-index: 1; /* Sends it to background */
  top: 50%;

}


.visual_divider .fullscreen-image img, .visual_divider .fullscreen-video video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Makes sure it fills the area */
  object-position: center;
}


.visual_divider .divider-content {
  display: flex;
  align-items: flex-end;
}


/**  News  **/

.news {
  display: flex;
  flex-direction: column;
  row-gap: 70px;
}

.news .insight-content-container h2 {
  color: var(--black);
}

.news .insight-content-container p {
  color: var(--gray);
}

.news .categories-container .category-link {
  color: var(--charged-purple);
  font-size: 12px;
}

.news .categories-container .category-link::before {
  background-color: var(--charged-purple);
}

.selected-articles {
  padding-top: 100px;
  row-gap: 140px;
}


/****  ARCHIVES  ****/


.post-content-container {
  padding: 30px;
  padding-top: 120px;
  background-color: var(--bg-gray);
  height: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

.post-container a {
  height: 100%;
}

.post-container a:hover {
  text-decoration: none;
}

.post-content-container h3, .post-content-container p {
  margin: 0;
}

.post-image-container img {
  border-radius: var(--border-radius-large);
  height: 200px;
  object-fit: cover;
  width: 100%;
}

.post-image-container {
  padding: 0px 30px;
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
}

.post-content-container h3 {
  color: var(--black);
  font-size: 20px;
  min-height: 44px;
}

.post-content-container p {
  color: var(--gray);
  font-size: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}


/** Insights **/

.categories-container {
  display: flex;
  grid-gap: 16px;
}

.categories-container .category-link {
  color: white;
  font-size: 18px;
  display: flex;
  align-items: center;
  margin: 0;
}


.categories-container .category-link::before {
  content: '';
  background-color: white;
  width: 8px;
  height: 8px;
  display: inline-block;
  margin-right: 8px;
}

.insights-container .categories-container .category-link::before {
  background-color: var(--charged-purple);
}

.insights-container .category-link {
  color: var(--charged-purple);
  font-size: 12px;
}

#result {
  padding: 30px 0 90px 0;
}

.purple-background .searchandfilter {
  color: #ffffff !important;
}
.searchandfilter {
  margin-top: 90px;
  color: #4600b4 !important;
}
.searchandfilter ul {
  padding-left: 0;
}

.sf-field-taxonomy-insight-categories ul, .sf-field-category ul {
  display: flex;
  grid-gap: 10px;
}

.sf-field-taxonomy-insight-categories li label, .sf-field-category li label {
  padding: 0px 20px !important;
}

.sf-field-taxonomy-insight-categories ul, .sf-field-category ul {
  border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.sf-field-taxonomy-insight-categories .sf-input-radio,
.sf-field-category .sf-input-radio {
  display: none;
}

.insights-container .searchandfilter ul li li {
  color: white;
  font-size: 18px;
  color: var(--white-80);
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  padding: 0px;
}

.insights-container .searchandfilter ul li li:hover {
  color: white;
}

.insights-container .searchandfilter ul li li:hover::after {
  content: '';
  display: inline-block;
  height: 3px;
  width: 100%;
  background-color: white;
  border-radius: 2px 2px 0px 0px;
}


/* .insights-container .searchandfilter ul li ul::after {
  content: '';
  display: inline-block;
  width: 100%;
  height: 1px;
  background-color: var(--white-80);
} */


.insights-container .searchandfilter ul li li.sf-option-active {
  color: white;
}

.insights-container .searchandfilter ul li li.sf-option-active::after {
  content: '';
  display: inline-block;
  height: 3px;
  width: 100%;
  background-color: white;
  border-radius: 2px 2px 0px 0px;
}

.insights-hero {
  background-color: var(--bg-dark-purple);
  padding-top: 200px;
  /* padding-bottom: 400px; */
}

/* .insights-container {
  position: relative;
  top: -400px;
} */

.insights-bg-element {
  background-color: var(--bg-dark-purple);
  width: 100%;
  position: absolute;
  height: 350px;
}

.insights-container .searchandfilter {
  margin: 0px;
  padding-top: 60px;
  padding-bottom: 30px;
}

.featured-insight h2 {
  color: white;
  font-size: 48px;
}

.featured-insight p {
  color: var(--white-80);
  font-size: 18px;
}



.featured-insight .insight-content-container {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  padding-right: 30px;
}

.featured-insight h2, .featured_insight p:last-child {
  margin-bottom: 0px;
}


.featured-insight img {
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius-large);
}

.insights-container #result {
  row-gap: 140px;
  margin-top: 65px;
}





/****  SINGLE  ****/


.article-blocks section.block-content {
  padding: 70px 0px;
}

.article-blocks .belongs-to-prev {
  margin-top: -35px;
}

.article-blocks .block-introduction {
  margin-bottom: 30px;
}


/** Single post **/

article {
  padding: 0;
}

.article-blocks .article-block:last-child {
  padding-bottom: 0;
}
.post-hero-container {
  background-color: var(--bg-dark-purple);
  padding-top: 150px;

}

.post-hero-img-container {
  position: relative;
}

.post-hero-img-container .image-container, .post-hero-img-container .video-container  {
  margin-top: 60px;
}
.post-hero-bg {
  background-color: var(--bg-dark-purple);
  position: absolute;
  width: 100%;
  height: calc(50% + 30px);
}

.post-hero .post-entry-info {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}

.post-hero h1 {
  color: white;
  font-weight: 700;
  font-size: 48px;
  margin: 0;
}

.post-content {
  padding-top: 60px;
  /* padding-bottom: 140px; */
}

.post-content .area-title {
  color: var(--charged-purple);
}

.post-content h2 {
  font-size: 40px;
  /* margin-bottom: 20px; */
}

.post-content .post-introduction {
  color: var(--black);
  font-size: 20px;
}

.article-blocks p {
  font-size: 16px;
  color: var(--gray);
  line-height: 160%;
}

.articles_suggestion {
  padding: 140px 0px;
}

.articles_suggestion .categories-container .category-link {
  color: var(--charged-purple);
  font-size: 12px;
}

.articles_suggestion .categories-container .category-link::before {
  background-color: var(--charged-purple);
}


/****  FORM PAGE TEMPLATE / FORM  ****/

.form-page {
  padding-top: 200px;
  margin-bottom: 80px;
  position: relative;
}

.form-page.layout-grid {
  margin-bottom: 0px;
  padding-bottom: 80px;
}

.form-page.layout-centered {
  background-color: transparent;
}


.form-page .block-introduction.centered p {
  margin: 0px 40px;
}

.form-page.layout-grid .form-grid {
  background-color: transparent;
}


.form-container {
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1);
}

.form-page .form-wrapper {
  position: relative;
}


.form-page .bg-element {
  position: absolute;
  height: calc(40% + 200px);
  width: 100%;
  top: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.hbspt-form fieldset[class^="form-columns-"] div:last-child .input {
  margin-right: 0px;
}

.hbspt-form .form-columns-3 .hs-form-field {
  width: 33.33% !important;
}


/* Hubspot form */


.hbspt-form p {
  color: var(--black);
}

.hbspt-form .hs-richtext.hs-main-font-element {
  display: none;
}

.hbspt-form fieldset {
  max-width: none !important;
}

.hbspt-form .hs-form-field {
  margin-bottom: 12px;
}
.hbspt-form .hs-form-booleancheckbox-display {
  display: flex !important;
  align-items: center;
}

.hbspt-form .hs-fieldtype-booleancheckbox {
  margin-top: 8px;
}
.hbspt-form .legal-consent-container .hs-form-booleancheckbox-display span {
  color: var(--black);
}

.hbspt-form .legal-consent-container .hs-form-booleancheckbox-display>span {
  margin-left: 0px;
}
.hbspt-form form input {
  padding: 12px 10px;
  outline: none !important;
  width: 100% !important;
  background-color: #fff;
  font-family: 'Atkinson Hyperlegible',sans-serif;
}
.hbspt-form form input:focus, .hbspt-form form textarea:focus, .hbspt-form form select:focus {
  outline: none !important;
}
.hbspt-form form input, .hbspt-form form textarea, .hbspt-form form select {
  border: 1.5px solid #4600b4;
  border-radius: var(--border-radius-medium);
  width: 100% !important;
}
.hbspt-form .hs-fieldtype-select select {
  width: 100%;
  padding: 12px;
}


.hbspt-form .hs-fieldtype-textarea.hs-input {
  width: 100%;
  resize: none;
  height: 100px;
  padding: 12px 10px;
}

.hbspt-form form input.hs-button {
  border: none;
  margin-top: 10px;
  background-color: var(--btn-dark) !important;
}

.hbspt-form .grecaptcha-logo {
  margin-top: 12px;
}


.hbspt-form form label {
    font-family: 'Atkinson Hyperlegible', sans-serif !important;
    font-weight: 700;
    /* padding-top: 20px; */
    display: block !important;
}

.hbspt-form .legal-consent-container p, .hbspt-form .legal-consent-container .hs-richtext, .hbspt-form .legal-consent-container span {
    font-size: 14px;
}

.hbspt-form .hs-form-booleancheckbox, .hbspt-form li {
    list-style: none;
}

.hbspt-form input[type="checkbox"] {
  width: auto !important;
  margin-right: 10px;
}

.hbspt-form .inputs-list {
    padding-left: 0;
}

.hbspt-form a {
  color: var(--charged-purple);
}

.hs-error-msg {
    font-weight: 500 !important;
    padding-left: 0px;
    font-size: 14px;
    margin-top: 4px;
    color: var(--gray) !important;
}


.form-container.bg-white .hbspt-form form input, .form-container.bg-white .hbspt-form form select, .form-container.bg-white .hbspt-form form textarea {
  border-color: #d6d6d6;
  background: #f4f4f4;
}

.form-container.bg-gray .hbspt-form form input, .form-container.bg-gray .hbspt-form form select, .form-container.bg-gray .hbspt-form form textarea {
  border-color: #d2d5d9;
}

.form-container.bg-yellow .hbspt-form form input, .form-container.bg-yellow .hbspt-form form select, .form-container.bg-yellow .hbspt-form form textarea {
  border-color: #e2dbaf;
}

.form-container.bg-light_purple .hbspt-form form input, .form-container.bg-light_purple .hbspt-form form select, .form-container.bg-light_purple .hbspt-form form textarea {
  border-color: #cfcbdd;
}

.form-container.bg-dark_purple .hbspt-form form input, .form-container.bg-dark_purple .hbspt-form form select, .form-container.bg-dark_purple .hbspt-form form textarea {
  border-color: #c6b0e8;
}

.form-container.bg-dark_purple .hbspt-form form label {
  color: white;
}

.form-container.bg-dark_purple .hs-error-msg {
  color: white !important;
  opacity: 0.7;
}







/****  FOOTER  ****/

footer {
  background-color: var(--bg-dark-purple);
  padding-top: 80px;
}

footer p, footer a {
  color: var(--white-80) !important;
  margin: 0;
}

footer a.btn, footer span {
  color: white !important;
}

footer span {
  font-weight: 700;
}

footer a:not(.btn) {
  text-decoration: underline;
}

footer a:not(.btn):hover {
  color: white;
}

footer li.menu-item > a {
  color: white !important;
}

footer .footer-column.hidden {
  display: none;
}

.footer-info-col {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
}

footer .btn-container {
  flex-direction: column;
}

footer .contact-links {
  display: flex;
  flex-direction: column;
}

footer .bottom-footer {
  border-top: 1px solid rgba(255, 255, 255, .2);
  padding: 30px 0px;
  margin-top: 80px;
}

footer .bottom-footer-content {
  display: flex;
  justify-content: space-between;
}

footer .socials-wrapper a {
  text-decoration: none;
}

footer .socials-wrapper {
  display: flex;
  grid-gap: 20px;
  align-items: center;
}

.footer-nav {
    column-count: 3; /* Creates 3 masonry-style columns */
    column-gap: 20px;
}

.footer-column {
    display: inline-block;
    width: 100%;
    break-inside: avoid; /* Ensures items do not break inside a column */
    margin-bottom: 15px;
}

.footer-column .menu-item {
    padding: 5px 0;
    list-style: none;
}

.footer-column .menu-item a {
    text-decoration: none;
    color: white; /* Adjust as needed */
    font-size: 14px;
    opacity: .7;
}

.footer-column > .menu-item > a {
  font-weight: 700;
  opacity: 1;
}

.footer-column ul {
    padding: 0; /* Indent sub-submenus */
    list-style: none;
    margin: 5px 0;
}

/* Ensure sub-submenu items are slightly indented */
.footer-column ul ul {
    padding-left: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-nav {
        column-count: 2; /* 2 masonry columns on tablets */
    }
}

@media (max-width: 480px) {
    .footer-nav {
        column-count: 1; /* Single column layout on mobile */
    }
}



/****  404 PAGE  ****/

.error404 main.content-area {
  display: flex;
}
.page-not-found {
  background-image: url('assets/images/bg.png');
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 50vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-not-found h1 {
  font-weight: 700;
  font-size: clamp(4rem, 6vw, 6.25rem);
  color: white;
}

.page-not-found h2 {
  font-weight: 400;
  font-size: clamp(1rem, 2vw, 2rem);
  color: white;
  opacity: 0.7;
}

.page-not-found .btn {
  margin-top: 30px;
}


/***** MOBILE OPTIMIZATION ***/

@media screen and (max-width: 767px) {
  .place-right, .featured-insight .insight-img-container {
    order: -1;
  }
  .text_and_image .image-wrapper, .featured-insight .insight-img-container {
    margin-bottom: 40px;
  }

  .testimonial-container {
    padding: 0px;
    padding-bottom: 40px;
  }

  .footer-menu {
    margin-top: 30px;
  }

  footer .bottom-footer {
    margin-top: 40px;
  }

  .footer-menu .footer-column, .footer-nav#menu-main {
    padding: 0;

  }

  .insights-hero .featured-insight .col-md-6:not(:first-child) {
    order: -1;
    margin-bottom: 40px;
  }

  .insights-hero {
    padding-top: 120px;
  }
}

@media (max-width: 768px) {
  section.block-content {
    padding: 80px 0px;
  }

  .belongs-to-prev {
    margin-top: -30px;
  }
  .hero.centered_hero .image-column {
    bottom: -70px;
  }
  section.hero.has-edge-image + section.block-content {
    padding-top: 150px;
  }

  .hero.centered_hero p {
    max-width: 90%;
  }

  .hero.image-text-hero .image-wrapper {
    margin-bottom: 40px;
  }
  .hero.image-text-hero {
    padding: 120px 0px 80px 0px;
  }
}

/* Tablet */

@media (max-width: 1200px) {
  .navbar .nav-cta-wrapper, .nav-cta {
    display: none;
  }
}



/****** NEW STYLES END *****/




.mobile-only {
  display: none;
}



/* .button-wrapper {
  display: flex;
  grid-gap: 10px;
  flex-wrap: wrap;
} */

/* .btn.video-btn {
  width: fit-content;
} */


/* .btn,
._submit {
  border-radius: 0;
  font-size: 16px;
  padding: 1rem 1.5rem;
  transition: box-shadow 0.5s;
} */



/* #video-modal {
  background-color: rgb(70,0,180, .9);
  justify-content: center;
  align-items: center;
}
#video-modal-content {
  min-width: 75%;
  position: relative;
} */
.embed-container {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  height: auto;
}

.embed-container.background-video {
  padding-bottom: 56.25%;
}

#video-modal-content iframe, #video-modal-content video  {
  position: absolute;
  top: 0;
  left: 0;
  width: 98%;
  height: 100%;
  border-top: 20px solid #000000;
  border-bottom: 20px solid #000000;
}

#video-modal-content video  {
  border: none;
}

.closeVideo {
  cursor: pointer;
  position: absolute;
  width: 30px;
  top: -1rem;
  right: 1rem;
}

/* Header and main menu */
/* .logo {
  width: 120px;
  height: auto;
} */
.menu-sep {
  display: none;
}

.navbar {
  width: 100%;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.navbar-light .menu-item {
  padding: 0 20px;
}
.navbar-light .navbar-nav .nav-link {
  color: #4600b4;
  font-size: 13px;
  padding: 0;
  height: 20px;
}
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.open,
.navbar-light .navbar-nav .open > .nav-link,
.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
  color: #4600b4;
  font-family: "Atkinson Hyperlegible", sans-serif;
  font-weight: 700;
  border-bottom: 2px solid #ffa6a6;
}







@media screen and (min-width: 1200px) {
  .navbar {
    padding: 0.5rem 0 !important;
  }
}

@media screen and (max-width: 991px) {
  .navbar {
    padding: 0;
    justify-content: right;

  }
}
