/**
Theme Name: Acuity
Description: Acuity is a custom theme developed for the organization AcuityKP
Version: 1.1
Requires at least: 5.3
Tested up to: 6.4
Requires PHP: 5.3
License: GNU General Public License v2 or later
Text Domain: acuity
Domain Path: /languages
*/

:root {
  /* Primary color */
  --primary-color: #034a52;
  --primary-color-1: #02373d;
  --primary-color-2: #00959a;
  --primary-color-3: #60e1d5;
  --primary-color-4: #defcf9;

  /* Secondary color */
  --secondary-color: #ff7c6b;
  --secondary-color-1: #ff6164;
  --secondary-color-2: #ffac88;
  --secondary-color-3: #ffe7d9;

  /* Other colors */

  --gray-color: #434241;
  --gray-color-1: #747271;
  --gray-color-2: #a9a5a2;
  --gray-color-3: #d7d3d0;

  --white-color: #ffffff;
  --white-shade-1: #f3f1ed;
  --white-shade-2: #f7f7f7;
  --white-shade-3: #ebebeb;
  --white-shade-4: #dadada;

  --black-color: #000000;
  --black-shade-1: #181818;
  --black-shade-2: #797979;
  --black-shade-3: #aaaaaa;

  /* Global style */

  --nav-bar-active-color: var(--primary-color-3);
  --text-color: var(--black-color); /* Text color */

  --font-family: "Public Sans", "Arial", sans-serif; /* Default font-family */
  --font-size-p1: 18px;
  --font-size-p2: 16px;
  --font-size-p3: 14px;
  --base-lh: 24px;
  --p3-lh: 20px;

  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  /* Headings fonts */

  --h1-font-size: 48px;
  --h1-line-height: 60px;
  --h2-font-size: 44px;
  --h2-line-height: 56px;
  --h3-font-size: 40px;
  --h3-line-height: 48px;
  --h4-font-size: 32px;
  --h4-line-height: 40px;
  --h5-font-size: 24px;
  --h5-line-height: 32px;
  --h6-font-size: 20px;
  --h6-line-height: 28px;

  --max-width: 1320px;
  --gutter-auto: max(calc((100vw - var(--max-width)) / 2), 20px);
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-p1);
  line-height: var(--base-lh);
  color: var(--text-color);
  background-color: var(--white-color);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
/*  Global */
.breadcrumb li a,
.breadcrumb li.active {
  color: var(--black-color);
  text-decoration: none;
  font-size: var(--font-size-p3);
}
nav .breadcrumb {
  margin-bottom: 30px;
}
h1,
.h1 {
  font-size: var(--h1-font-size);
  line-height: var(--h1-line-height);
  font-weight: var(--font-weight-semibold);
}
h2,
.h2 {
  font-size: var(--h2-font-size);
  line-height: var(--h2-line-height);
}
h3,
.h3 {
  font-size: var(--h3-font-size);
  line-height: var(--h3-line-height);
}
h4,
.h4,
.h4-sb {
  font-size: var(--h4-font-size);
  line-height: var(--h4-line-height);
}
h5,
.h5 {
  font-size: var(--h5-font-size);
  line-height: var(--h5-line-height);
}
h6,
.h6 {
  font-size: var(--h6-font-size);
  line-height: var(--h6-line-height);
}
h2,
h3,
h4,
h5,
h6,
.section-heading strong {
  font-weight: var(--font-weight-regular);
}
.h4-sb {
  font-weight: var(--font-weight-semibold);
}
.p3 {
  font-size: var(--font-size-p3);
  line-height: var(--p3-lh);
}
.text-light {
  color: var(--white-color);
}
.btn {
  padding: 12px 20px;
}
.btn-outline-light {
  border-color: var(--white-shade-1);
  color: var(--white-color);
}
.btn-outline-light:hover {
  border-color: var(--secondary-color-1);
  background-color: var(--secondary-color-1);
  color: var(--black-color);
}
.btn-outline-light.right-arrow:after {
  border-color: var(--white-shade-1);
}
.btn-outline-light.right-arrow:hover:after {
  border-color: var(--black-color);
}
.btn.right-arrow {
  padding: 12px 40px 12px 20px;
}
.btn.right-arrow:after {
  right: 24px;
}
.btn-outline-dark {
  border-color: var(--black-color);
  color: var(--black-color);
}
.btn-outline-dark:hover {
  border-color: var(--secondary-color-1);
  background-color: var(--secondary-color-1);
  color: var(--black-color);
}
.btn-outline-dark.right-arrow:hover:after {
  border-color: var(--black-color);
}

.bg-dark {
  background-color: var(--primary-color) !important;
}
.btn-primary {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--black-color) !important;
}
.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus-visible,
.btn:first-child:active, :not(.btn-check)+.btn:active {
  background-color: var(--secondary-color-1);
  border-color: var(--secondary-color-1);
}
.tag {
  font-size: var(--font-size-p3);
  line-height: var(--p3-lh);
  margin-bottom: 8px;
}
.right-arrow,
.right-arrow-long {
  position: relative;
}
.right-arrow:after,
.nav-prev:after,
.nav-next:after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 1px solid var(--black-color);
  border-bottom: 1px solid var(--black-color);
  transform: rotate(-45deg);
  margin: 0;
  position: absolute;
  right: 12px;
  top: 42%;
}
.right-arrow-long:after,
.right-arrow-long:before {
  content: "";
  position: absolute;
}
.right-arrow-long:before {
  border: none;
  background-color: var(--white-color);
  height: 2px;
  width: 20px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.right-arrow-long:after {
  right: 0;
  top: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--white-color);
  border-right: 2px solid var(--white-color);
  transform: translateY(-50%) rotate(45deg);
}
.mb-20 {
  margin-bottom: 20px;
}
.primary-color-bg {
  background-color: var(--primary-color) !important;
}
.secondary-color-bg {
  background-color: var(--secondary-color) !important;
}
.secondary-color-3-bg {
  background-color: var(--secondary-color-3) !important;
}
.heading-container {
  margin-bottom: 40px;
  padding-bottom: 0 !important;
}
.heading-container .section-heading {
  margin-bottom: 0px;
}
.heading-container p {
  font-size: var(--h6-font-size);
  line-height: var(--h6-line-height);
}
.section-padding {
  padding: 80px 0;
}

.custom-h-scroller::-webkit-scrollbar {
  height: 2px;
}
.custom-h-scroller::-webkit-scrollbar-thumb {
  background: var(--gray-color-2);
  border-radius: 3px;
}
.custom-h-scroller::-webkit-scrollbar-thumb:hover {
  background: var(--gray-color-1);
}

/** Header **/
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 9;
}
.mobile-header-right {
  display: none;
}
.logo-container {
  padding-right: 16px;
}
header .navbar {
  position: relative;
  z-index: 99;
}
header .btn {
  line-height: 18px;
  padding: 12px 20px !important;
}
header .nav-link {
  font-size: var(--font-size-p2);
  line-height: var(--base-lh);
  color: var(--white-color);
  position: relative;
}
header .navbar-nav .nav-link.active,
header .navbar-nav .nav-link.show,
header .nav-link:focus,
header .nav-link:hover,
.search-btn,
.srchClsBtn {
  color: var(--nav-bar-active-color);
}
.navbar > .container {
  position: relative;
}
nav ul {
  list-style: none;
  padding-left: 0;
}
.header .nav-item.mega-menu {
  position: static;
}
.dropdown-menu {
  overflow: hidden;
}
.dropdown-menu .sub-drop-items {
  position: relative;
  min-height: 380px;
}
.sub-nav-container {
  background-color: var(--white-shade-1);
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  display: none;
  transition: all 0.3s ease-in-out;
}
.sub-drop-items,
.sub-nav-items {
  padding: 32px 20px;
}
.sub-nav-items {
  padding: 32px 20px;
}
li.nav-sub-link {
  border-bottom: 1px solid var(--gray-color-3);
  cursor: pointer;
}
li.nav-sub-link a {
  text-decoration: none;
}
.dropdown-menu .sub-drop-items li:last-child {
  border: none;
}
.sub-drop-items {
  background-color: var(--white-color);
}
.nav-sub-link.active,
.nav-sub-link:hover {
  background-color: var(--white-shade-1);
}
.nav-sub-link.active > .sub-drop-link a span,
.nav-sub-link:hover > a span {
  border-bottom: 1px solid var(--primary-color);
}
.nav-sub-link.active > .sub-drop-link a,
.nav-sub-link:hover > a {
  padding: 16px 20px;
}
.sub-drop-items > li .nav-sub-text,
.sub-drop-items .nav-sub-link > .sub-drop-link a {
  color: var(--black-color);
  font-size: var(--font-size-p1);
  line-height: var(--base-lh);
  display: block;
  padding: 16px 0px 16px 20px;
}
.sub-drop-items > li > .sub-drop-link a .nav-sub-text {
  padding: 0;
  display: inline;
}
.sub-drop-items .nav-sub-link.active .nav-sub-text,
.sub-drop-items > li:hover .nav-sub-text,
.single-col-dropdown .dropdown-item:hover {
  color: var(--primary-color);
}
.sub-drop-items .nav-sub-link.active .arrow,
.sub-drop-items > li:hover .arrow,
header .navbar-nav .nav-link.active::after,
header .navbar-nav .nav-link:hover:after,
header .navbar-nav .nav-link.show:after {
  border-color: var(--primary-color-2);
}
.sub-drop:hover .sub-nav-container,
.sub-drop.active .sub-nav-container {
  display: block;
  height: 100%;
}
.sub-nav-items li a {
  color: var(--black-color);
  font-size: var(--font-size-p2);
  padding: 16px 0;
  display: block;
}
.sub-nav-items li a:hover {
  color: var(--primary-color);
}

.sub-drop-link{position: relative; padding-right: 45px;}
li.nav-sub-link .arrow {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 1px solid var(--black-color);
  border-bottom: 1px solid var(--black-color);
  transform: rotate(-45deg);
  transition: border-color 0.3s ease;
  margin: 0;
  position: absolute;
  right: 24px;
  top: 45%;
}
.menu-block-image {
  background-image: url("./images/menu-block-image.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: end;
  padding: 30px 20px 20px 30px;
}
.mega-menu-heading {
  margin-bottom: 0;
  font-size: var(--h3-font-size);
  line-height: var(--h3-line-height);
  font-weight: var(--font-weight-regular);
}

.dropdown-toggle::after {
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--white-color);
  border-bottom: 2px solid var(--white-color);
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
  transition: border-color 0.3s ease;
  position: absolute;
  top: 34%;
  right: -6px;
}
.nav-item.right-arrow:after,
.sub-nav-items .right-arrow:after,
.dropdown-menu > li.right-arrow:after,
.header-cta .right-arrow:after {
  display: none;
}

/* single column dropdown menu*/
.dropdown-menu.single-col-dropdown {
  min-width: 400px;
  padding: 12px 20px 20px;
}
.single-col-dropdown > li:last-child a {
  border-bottom: 0;
}
.single-col-dropdown .dropdown-item {
  padding: 16px 20px;
  border-bottom: 1px solid var(--gray-color-3);
}
.single-col-dropdown .dropdown-item:hover {
  background-color: var(--white-shade-1);
  border-color: transparent;
}

/*  Header search */
.header-search-box {
  position: absolute;
  width: 60%;
  height: 84px;
  background-color: var(--primary-color-1);
  padding: 0 10px;
}
.header-search-box input::placeholder {
  color: var(--white-color);
  opacity: 1;
}
.srchClsBtn {
  background-image: url("./images/cross-icon.png");
  background-repeat: no-repeat;
  background-size: cover;
  width: 18px;
  height: 17px;
}

.navbar-nav.top-left > .nav-item {
  margin-right: 32px;
  height: 84px;
  display: flex;
  align-items: center;
}
.navbar-nav.top-left > .nav-item:last-child {
  margin-right: 0;
}
.navbar-toggler-icon {
  display: inline-block;
  width: 24px;
  height: 2px;
  background-color: var(--white-color);
  position: relative;
  transition: all 0.3s ease-in-out;
  background-image: none;
}
.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: var(--white-color);
  transition: all 0.3s ease-in-out;
}
.navbar-toggler-icon::before {
  top: -8px;
  left: 0;
}
.navbar-toggler-icon::after {
  top: 8px;
  left: 0;
}
.navbar-toggler.active .navbar-toggler-icon {
  background-image: none;
  background-color: transparent;
}
.navbar-toggler.active .navbar-toggler-icon::before {
  transform: rotate(45deg);
  top: 0;
}
.navbar-toggler.active .navbar-toggler-icon::after {
  transform: rotate(-45deg);
  top: 0;
}
.navbar-toggler:focus {
  box-shadow: none;
}
.banner-section .container-fluid {
  padding-left: 0;
}
/* Top notification bar*/
.top-notification-area{background-color: var(--secondary-color-2); padding: 8px; position: relative; display: none;}
.top-notification-area p, .top-notification-area a{margin-bottom: 0; font-size: var(--font-size-p3); color: var(--black-color);}
.top-notification-area .notification-content { position: relative; padding-right: 40px; }
.top-notification-area span.close-notification { position: absolute; right: 0; top: 0; font-size: 20px; font-weight: 300; cursor: pointer;}

/** Footer **/
footer .footer-menus .widget_nav_menu {
  min-height: 250px;
}
footer {
  padding: 60px 0;
  background-color: var(--primary-color-1);
}
footer .last-widget-col .footer-widget {
  background-color: var(--primary-color);
  padding: 20px;
  margin-bottom: 20px;
}
.footer-widget-title {
  color: var(--primary-color-3);
  font-size: var(--font-size-lg);
}
footer ul {
  list-style: none;
  padding-left: 0;
}
footer .menu .nav-link {
  font-size: var(--font-size-p3);
  line-height: 20px;
  margin-bottom: 8px;
}
footer .menu .nav-link:hover {
  text-decoration: underline;
}
footer .last-widget-col p,
footer .last-widget-col address {
  margin-bottom: 20px;
  font-size: var(--font-size-p3);
}
footer .last-widget-col p span {
  font-size: var(--font-size-p1);
  line-height: 24px;
}
footer .footer-devider {
  border-top: 1px solid var(--primary-color);
}
footer .copyright-text p,
footer #privacy-menu ul {
  margin-bottom: 0;
  font-size: var(--font-size-p3);
}
footer #privacy-menu {
  text-align: right;
}
footer #privacy-menu li {
  display: inline-block;
  margin-right: 20px;
}
footer #privacy-menu li:last-child {
  margin-right: 0px;
}
footer .widget-heading p {
  color: var(--white-color);
}
footer p a {
  color: var(--white-color);
  text-decoration: none;
}
footer p.widget-heading {
  margin-bottom: 4px;
}

/* 
* slider nav buttons 
*/
.swiper-outer-wrapper {
  position: relative;
}
.nav-prev,
.nav-next {
  width: 44px;
  height: 44px;
  border-radius: 4px;
  background-color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  position: relative;
}
.nav-prev:after,
.nav-next:after {
  border-bottom: 1px solid var(--black-color);
  transform: translate(-50%, -50%) rotate(-45deg);
  left: 50%;
  top: 50%;
}
.nav-prev:after {
  transform: translate(-50%, -50%) rotate(135deg);
}
.nav-prev:disabled,
.nav-next:disabled {
  background-color: var(--white-color);
  border: 1px solid var(--black-color);
}
.swiper .swiper-pagination-bullet.swiper-pagination-bullet-active,
.swiper-outer-wrapper
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--secondary-color);
  width: 9px;
  height: 9px;
}
.swiper .swiper-pagination-bullet,
.swiper-outer-wrapper .swiper-pagination-bullet {
  background-color: var(--primary-color);
  width: 6px;
  height: 6px;
}
.swiper-pagination {
  top: 100% !important;
  margin-top: 10px;
  display: none;
}

/*
*   Hubspot form style
*/
#hubspot-form input[type="text"],
#hubspot-form input[type="email"],
#hubspot-form input[type="tel"],
#hubspot-form textarea,
#hubspot-form select {
  border: none;
  background-color: transparent;
  border-bottom: 1px solid var(--black-shade-3);
  width: 100%;
  font-size: var(--font-size-p3);
  line-height: var(--p3-lh);
}
#hubspot-form select {
  padding: 10px 0;
}
#hubspot-form fieldset.form-columns-2 {
  max-width: 100%;
}
#hubspot-form fieldset.form-columns-2 .input {
  margin-right: 20px;
}
#hubspot-form label {
  font-size: var(--font-size-p3);
  line-height: var(--p3-lh);
}
#hubspot-form .hs-form-field {
  margin-bottom: 20px;
}
#hubspot-form .hs-error-msgs {
  list-style: none;
  padding-left: 0;
  color: var(--secondary-color-1);
  padding: 10px 0;
}
input[type="submit"] {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--black-color);
  padding: 12px 20px;
  font-size: var(--font-size-p2);
  border: none;
  border-radius: 4px;
}
#hubspot-form .hs-richtext p {
  font-size: var(--font-size-p3) !important;
  line-height: var(--p3-lh);
}
.connect-with-us .form-image {
  background-image: url("./images/connect-with-us.jpg");
  background-size: cover;
  height: 100%;
}
.connect-with-us .form-content {
  max-width: 426px;
  background-color: var(--secondary-color-3);
  padding: 32px;
}
.connect-with-us .form-container {
  background-color: var(--primary-color-4);
  height: 100%;
  padding: 40px;
}
.connect-with-us .column:first-child {
  padding-right: 0;
}
.connect-with-us .column:last-child {
  padding-left: 0;
}

#introVideo button.btn-close {
  background-color: var(--secondary-color);
  opacity: 1;
  border-radius: 100%;
  background-size: 12px;
  cursor: pointer;
  z-index: 9;
}
#introVideo .modal-header {
  height: 0;
  padding: 0;
  border: 0;
}
/*
*   Flex grid system  
*/

.flex-grid-4,
.flex-grid-3,
.flex-grid-2 {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.flex-grid-4 .flex-col {
  flex: 1 1 calc(25% - 20px);
}
.flex-grid-4.gap-0 .flex-col {
  flex: 1 1 25%;
}
.flex-grid-4 .flex-col,
.flex-grid-3 .flex-col,
.flex-grid-2 .flex-col {
  padding: 20px;
  box-sizing: border-box;
}
.flex-grid-3 .flex-col {
  flex: 1 1 calc(33.333% - 20px);
}
.flex-grid-3.gap-0 .flex-col {
  flex: 1 1 33.333%;
}
.flex-grid-2 .flex-col {
  flex: 1 1 calc(50% - 20px);
}

@media (max-width: 991px) {
  .flex-grid-3 .flex-col,
  .flex-grid-4 .flex-col,
  .flex-grid-2 .flex-col {
    flex: 1 1 calc(50% - 20px);
  }
}
@media (max-width: 768px) {
  .flex-grid-2 .flex-col {
    flex: 1 1 100%;
  }
  .banner-section .container-fluid {
  padding-left: 0;
  padding-right:0;
}

}
@media (max-width: 576px) {
  .flex-grid-3 .flex-col,
  .flex-grid-4 .flex-col {
    flex: 1 1 100%;
  }
}

/*
*   end Flex grid system  
*/

@media (min-width: 993px) and (max-width: 1200px) {
  .navbar > .container {
    max-width: 1024px;
  }
  .navbar-nav.top-left > .nav-item {
    margin-right: 16px;
  }
  header .nav-link {
    font-size: calc(var(--font-size-p2) - 2px);
  }
  .dropdown-toggle::after {
    width: 6px;
    height: 6px;
    border-right: 1px solid var(--white-color);
    border-bottom: 1px solid var(--white-color);
    top: 37%;
    right: -3px;
  }
  .navbar-expand-lg .navbar-right .navbar-nav {
    flex-direction: row;
    gap: 10px !important;
  }
  .dropdown-menu.single-col-dropdown {
    min-width: 340px;
  }
}
@media (min-width: 1024px) {
  .search-enable .mobile-search,
  .mobile-search {
    display: none !important;
  }
}

@media (max-width: 992px) {
  h1,
  .h1 {
    font-size: calc(var(--h1-font-size) - 12px);
    line-height: calc(var(--h1-line-height) - 20px);
  }
  .section-padding {
    padding: 32px 0;
  }
  .desktop-search {
    display: none !important;
  }
  nav.navbar {
    padding: 12px 0 !important;
  }
  .logo-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding-right: 0;
  }
  .logo-container img {
    max-width: 128px;
    height: auto;
  }
  .mobile-header-right {
    display: flex;
    gap: 18px;
    align-items: center;
  }
  .header-search-box {
    width: 87%;
    height: 52px;
    padding: 0 10px;
    margin-left: 0;
    top: -12px;
    left: 0;
  }
  .srchClsBtn {
    width: 22px;
    height: 16px;
  }
  /* Mobile menu */
  div#primaryMenu {
    padding: 24px 20px;
    background-color: #fff;
    margin-top: 20px;
    margin-left: -12px;
    margin-right: -12px;
  }
  header .btn {
    padding: 12px 30px 12px 20px !important;
  }
  header .nav-link {
    color: var(--black-color);
    font-weight: var(--font-weight-bold);
    width: 100%;
    padding: 16px 0;
  }
  header .nav-link.searchToggle {
    color: var(--white-color);
    padding: 0;
  }
  .navbar-nav.top-left > .nav-item {
    margin-right: 0;
    height: auto;
    border-bottom: 1px solid var(--gray-color-3);
  }
  li.nav-sub-link .arrow {
    border: none;
    transform: translate(0, -50%);
    width: 17px;
    height: 22px;
    top: 50%;
    right: 16px;
  }
  .dropdown-toggle::after,
  li.nav-sub-link .arrow:after {
    content: "+";
    width: auto;
    height: auto;
    font-size: 30px;
    font-weight: var(--font-weight-light);
    border: none;
    right: 0;
    transform: none;
  }
  header .dropdown-toggle.show::after {
    content: "-";
  }
  .navbar-nav.top-left > .nav-item {
    flex-direction: column;
  }
  .dropdown-menu.single-col-dropdown {
    min-width: 100%;
  }
  .navbar-nav .dropdown-menu {
    background-color: var(--white-shade-1);
  }
  .single-col-dropdown .dropdown-item {
    padding: 12px 20px 12px 0;
    border-bottom: 1px solid var(--gray-color-3);
  }
  header .navbar-nav .nav-link.active,
  header .navbar-nav .nav-link.show,
  header .nav-link:focus,
  header .nav-link:hover {
    color: inherit;
  }
  .dropdown-menu .sub-drop-items {
    position: relative;
    padding: 20px 4px;
  }
  .sub-drop-items {
    background-color: transparent;
  }
  .sub-nav-container {
    position: relative;
    top: 0;
    left: 0;
  }
  .sub-nav-container .sub-nav-items {
    padding: 8px 16px;
    background-color: var(--white-color);
  }
  .sub-nav-container .sub-nav-items li a {
    padding: 10px 0;
    font-size: var(--font-size-p3);
  }
  .sub-drop-items > li .nav-sub-text,
  .sub-drop-items .nav-sub-link > .sub-drop-link a {
    padding-left: 0;
  }
  .nav-sub-link.active > .sub-drop-link a span,
  .nav-sub-link:hover > a span {
    border-bottom: none;
  }
  .sub-nav-container .btn.right-arrow:after {
    right: 15px;
    top: 42%;
  }
  .sub-nav-container .btn.right-arrow {
    font-size: var(--font-size-p3);
  }
  .nav-item.right-arrow:after,
  .sub-nav-items .right-arrow:after,
  .dropdown-menu > li.right-arrow:after {
    right: 8px;
  }
  .nav-item.right-arrow:after,
  .sub-nav-items .right-arrow:after,
  .dropdown-menu > li.right-arrow:after,
  .header-cta .right-arrow:after {
    display: inline-block;
  }
  .header-cta .btn {
    width: 100%;
    text-align: left;
  }
  .sub-drop-items > li .nav-sub-text,
  .sub-drop-items .nav-sub-link > .sub-drop-link a {
    font-size: var(--font-size-p2);
  }
  .connect-with-us .column:first-child {
    padding-right: 12px;
  }
  .connect-with-us .column:last-child {
    padding-left: 12px;
  }
  .custom-nav {
    display: none !important;
  }
  .swiper-outer-wrapper {
    margin-bottom: 32px;
  }
  .swiper-pagination {
    display: block;
  }
  footer .copyright-text,
  footer #privacy-menu {
    text-align: center;
  }
  .accordion-header-mobile.active:after {
    top: 60%;
    transform: translateY(-60%);
  }
  .accordion-header-mobile:after {
    content: "";
    background-image: url("./images/plus-icon.png");
    background-repeat: no-repeat;
    border: none;
    width: 16px;
    height: 16px;
    transform: translateY(-50%);
    top: 50%;
    right: 0;
  }
  .accordion-header-mobile.active:after {
    background-image: url("./images/minus-icon.png");
  }
  .connect-with-us .form-image {
    background-image: none;
    position: relative;
  }
  .connect-with-us .form-image:after {
    content: "";
    background-image: url("./images/contact-mobile-bg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center;
    position: absolute;
    height: 100px;
    width: 100%;
    bottom: 0;
  }
  .connect-with-us .form-content {
    padding: 0 0 100px;
    background-color: transparent;
  }
}

@media (max-width: 768px) {
  .first-fold p {
    font-size: var(--font-size-p2);
  }
  body,
  body p {
    font-size: var(--font-size-p2);
    line-height: var(--base-lh);
  }
  h2,
  .h2 {
    font-size: calc(var(--h2-font-size) - 18px);
    line-height: calc(var(--h2-line-height) - 12px);
  }
  h3,
  .h3 {
    font-size: var(--h3-font-size);
    line-height: var(--h3-line-height);
  }
  h4,
  .h4,
  .h4-sb {
    font-size: calc(var(--h4-font-size) - 12px);
    line-height: calc(var(--h4-line-height) - 12px);
  }
  h5,
  .h5 {
    font-size: calc(var(--h5-font-size) - 8px);
    line-height: calc(var(--h5-line-height) - 8px);
  }
  h6,
  .h6 {
    font-size: var(--h6-font-size);
    line-height: var(--h6-line-height);
  }
  .heading-container {
    margin-bottom: 24px;
  }
  footer .footer-menus .widget_nav_menu {
    min-height: 100%;
  }
}

@media (max-width: 767px) {
  .banner-content p {
    font-size: var(--font-size-p2) !important;
    line-height: var(--p3-lh) !important;
  }
  .btn {
    font-size: var(--font-size-p3);
  }
	.connect-with-us .form-container { padding: 20px; }
  .footer-widget-title {
    padding: 15px 0;
    position: relative;
    border-bottom: 1px solid var(--primary-color);
    margin-bottom: 0;
  }
  .footer-widget-title:after {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 1px solid;
    border-bottom: 1px solid;
    transform: rotate(42deg);
    margin: 0;
    position: absolute;
    right: 12px;
    top: 42%;
    border-color: var(--primary-color-3);
  }
  .footer-widget-title.active:after {
    transform: rotate(-135deg);
  }
  .footer-widget > div {
    display: none;
  }
  #privacy-menu .footer-widget > div {
    display: inline;
  }
  .footer-widget > div .menu {
    margin-top: 10px;
  }
  footer .menu .nav-link {
    padding: 5px 0;
  }
  .last-widget-col .footer-widget-title:after {
    display: none;
  }
}