:root {
  --bs-gray: #302e2e;
  --bs-primary: #0e8989;
  --bs-secondary: #ac3931;
  --bs-light: #e0f4f4;
  --bs-dark: #1b5757;
  --bs-tertiary: #fb8b24;

  --bs-primary-rgb: 78, 112, 105;
  --bs-secondary-rgb: 100, 198, 196;
  --bs-light-rgb: 246, 246, 246;
  --bs-dark-rgb: 34, 45, 16;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-body-rgb: 129, 129, 129;

  --bs-font-sans-serif: "Lato", sans-serif;
  --bs-gradient: linear-gradient(135deg, #39ef9b, #004340);

  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 17px;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.75;
  --bs-body-color: #2b3232;
  --bs-body-bg: #fff;

  --bs-border-radius: 5px;

  --byf-header-font: "Montserrat", sans-serif;

  --hcm-font-size: 18px;
  --hcm-font-weight: 500;
  --hcm-primary-dark: #1b5757;
  --hcm-secondary-dark: #8d2a22;
  --hcm-pop: #ff9e43;
  --hcm-body-color: #1c1f1f;
}

body.hcm {
  --bs-primary: var(--hcm-primary-dark);
  --bs-secondary: var(--hcm-secondary-dark);
  --bs-tertiary: var(--hcm-pop);
  font-size: var(--hcm-font-size);
}

/*- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  a11y Styles
  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

#skip-navigation {
  background: #fff;
  color: #000;
  left: 0;
  padding: 0.5em;
  position: absolute;
  top: -1000px;
  transition: all 0.3s ease;
  z-index: 11;
}

a:not(.btn, .nav-link):focus-visible {
  outline: 2px solid var(--bs-primary);
}

:is(#footer-top, #footer-bottom) a:not(.btn, .nav-link):focus-visible {
  outline: 2px solid var(--bs-secondary);
}

:is(.btn-default, .btn-primary, .btn-secondary):focus-visible {
  outline: 2px solid var(--bs-primary) !important;
  outline-offset: 1px;
}

#hc-toggle {
  align-items: center;
  background: var(--bs-primary);
  border: 2px solid #fff;
  border-radius: 0.1875rem;
  bottom: 1rem;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05), 0 2px 2px rgba(0, 0, 0, 0.05),
    0 4px 4px rgba(0, 0, 0, 0.05), 0 8px 8px rgba(0, 0, 0, 0.05),
    0 16px 16px rgba(0, 0, 0, 0.05);
  color: #fff;
  display: flex;
  font-size: 1.75rem;
  justify-content: center;
  height: 3rem;
  left: 1rem;
  outline: 0;
  position: fixed;
  transition: all 0.3s ease;
  width: 3rem;
  cursor: pointer;
  z-index: 999;
}

#hc-toggle i {
  font-size: 1.75rem;
}

#hc-toggle:is(:hover, :focus, :focus-visible) {
  background: #fff;
  border-color: var(--bs-secondary);
  color: var(--bs-secondary);
}

.sr-only {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.hcm :is(p, a, ul, li):not(.btn, .btn-primary, .btn-secondary) {
  font-weight: 500;
}

.hcm :is(a, a:active, a:focus, a:visited) {
  font-weight: 600;
  text-decoration: underline;
}

@media (max-width: 767px) {
  .sr-only-sm {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
}

/*=====================
TYPOGRAPHY/DEFAULT
======================*/

body {
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
[class*="display-"] {
  font-family: var(--byf-header-font);
  font-weight: 800;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.75rem;
}

[class^="fs-"]:not([class^="fa-"]):not([class*="display-"]) {
  font-family: var(--bs-font-sans-serif);
}

.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
  max-width: 1240px;
}

#main p,
#footer p {
  line-height: var(--bs-body-line-height);
  font-weight: var(--bs-body-font-weight);
}

section {
  padding: 5rem 0 8rem;
}

#main {
  margin-top: -12rem;
  position: relative;
  z-index: 99;
}

#why-choose-us {
  background: #003481b8;
  padding: 7rem 0 6rem;
}

#why-choose-us p {
  color: #FFF;
}

.btn {
  border-radius: var(--bs-border-radius);
  border-width: 3px;
}

.bg-light {
  background-color: var(--bs-light) !important;
}

.bg-primary {
  background: var(--bs-primary) !important;
}

.bg-secondary {
  background-color: var(--bs-secondary) !important;
}

.bg-dark .bg-dark,
.bg-dark {
  background-color: var(--bs-dark) !important;
}

.bg-gray {
  background: var(--bs-gray) !important;
}

a,
a:is(:focus, :active) {
  color: var(--bs-primary);
}

a:hover {
  color: var(--bs-secondary);
}

.text-primary {
  color: var(--bs-primary) !important;
}

.text-secondary {
  color: var(--bs-secondary) !important;
}

.btn-primary {
    background: #019D75;
    border-color: #FFF;
}

.btn-primary:hover {
  color: var(--bs-dark);
  background-color: #fff;
  border-color: var(--bs-tertiary);
}

.btn-secondary {
  background: #fff;
  color: var(--bs-primary);
  border-color: var(--bs-primary);
}

.btn-secondary:hover {
  background: var(--bs-secondary);
  color: #fff;
  border-color: var(--bs-secondary);
}

#pageContent a {
  color: var(--bs-primary);
  font-weight: 600;
  text-decoration: underline;
}

#pageContent li {
  font-weight: 300;
}

.btn-lg {
  font-size: 1rem;
  font-weight: 600;
  padding: 0.65rem 2.25rem;
}

.btn-light {
  background-color: var(--bs-light);
  border-color: var(--bs-light);
  color: var(--bs-dark);
}

.btn-dark {
  background-color: var(--bs-dark);
  border-color: var(--bs-dark);
  color: var(--bs-light);
}

.visible-xs {
  display: none;
}

.card {
  display: block;
  border: 0;
  border-radius: 10px;
  box-shadow: 0 4px 6px 0px rgb(0 0 0 / 20%);
}

.form-control {
  border: 1px solid #d3d3d3;
  border-radius: 30px;
  color: #404040;
  display: block;
  font-size: 0.875rem;
  margin: 5px 0 7px;
  padding: 0.5rem 0.875rem;
  width: 700px;
}

@media (max-width: 900px) {
  .form-control {
  width: 300px;
  
  }
}

.bg-container {
  position: relative;
}

.home-bg-shape {
  background: url("/images/new_layout_images/lay590/circle-shape-01.svg");
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: -340px;
  left: -39%;
  width: 151%;
  height: 345px;
  z-index: 0;
}

.inner-bg-shape {
  background: url("/images/new_layout_images/lay590/circle-shape-01.svg");
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: -325px;
  left: -60%;
  width: 180%;
  height: 325px;
  z-index: 0;
}

.inner-bg-shape.cta {
  transform: rotate(184deg);
  left: -55%;
  top: -435px;
  height: 375px;
}

/*=====================
NAVBAR
======================*/

#header {
  position: relative;
  overflow: hidden;
  background: var(--bs-gradient);
}

#topbar {
  display: flex;
}

#topbar ul {
  display: flex;
  justify-content: space-between;
  color: #fff;
  list-style: none;
  margin: 0.5rem 0 0.5rem auto;
  padding: 0.25rem 0 0.875rem;
  align-items: center;
  border-bottom: 1px solid rgb(124 191 191 / 68%);
}

#topbar li {
  margin-right: 10px;
}

#inner ul {
  list-style: none;
}

#inner ul li:before {
  content: '✓';
  margin-right: 10px;
}

.dropdown-item {
  transition: 0.1s 0s linear;
}

.dropdown-item:hover,
.dropdown-item:focus {
  color: #212121;
  background-color: var(--bs-tertiary);
}

.nav-link {
  color: var(--bs-light);
  font-weight: 500;
  margin-right: 25px;
  font-size: 1.1rem;
  border-bottom: 3px solid transparent;
  transition: 0.2s 0s ease-out;
}

.nav-link:is(:hover, :focus),
.navbar-nav .nav-link.show {
  color: #fff;
  border-bottom: 3px solid #efefef;
}

.navbar .cta-btn {
  flex-basis: 15%;
}

.cta-btn .btn-primary {
  margin-left: auto;
  width: 100%;
  padding: 13px 0;
}

.topbar-link {
  color: #fff;
  text-decoration: none;
  margin-right: 15px;
  transition: 0.2s 0s ease-out;
}

.topbar-link iconify-icon {
  margin-right: 5px;
  position: relative;
  top: 4px;
}

.topbar-link svg {
  transition: 0.2s 0s ease-out;
}

.topbar-link:hover path {
  fill: var(--bs-tertiary);
}

.topbar-link:hover {
  font-size: 1.15rem;
  color: var(--bs-tertiary);
}

.topbar-link:hover svg {
  width: 18px;
}

.hcm #topbar .topbar-link {
  color: #fff;
}

.topbar-link svg {
  margin-right: 8px;
}

.navbar-toggler {
  border: none;
}

.navbar-nav {
  text-align: center;
}

.dropdown-menu {
  text-align: center;
  border-radius: 10px;
}

.dropdown-item {
  padding: 0.5rem 1rem;
  border: 0;
  text-align: left;
}

/*=====================
HERO SECTION
======================*/

#hero {
  position: relative;
  padding: 0 0 25rem;
}

#hero .card-img-top {
  max-width: 450px;
}

#hero .background-hero {
  position: absolute;
  width: 70%;
  left: 29%;
  top: 0%;
  opacity: 0.3;
}

.highlight {
  color: var(--bs-primary);
}

.carousel-control-next,
.carousel-control-prev {
  width: 5%;
}

/*===============
AFFILIATES SECTION
===============*/

section#affiliates {
  padding: 5rem 3rem 5rem;
}

#affiliates .container {
  background-color: var(--bs-light);
  border-radius: 25px;
}

/*===============
INDEX SECTION
===============*/

.index-content .subtitle {
  color: var(--bs-primary);
  font-weight: 500;
}

.index-content h1 {
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

/*=============
SERVICES
=============*/

.service-boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.service-boxes h2 {
  font-size: 1.875rem;
  color: var(--bs-light);
}

.service-boxes p {
  color: var(--bs-light);
}

.service-boxes .column-1 {
  display: flex;
  padding: 0.75rem;
  margin-bottom: 2rem;
}

.service-boxes .column-2 {
  display: flex;
  padding: 0.75rem;
  margin-top: 2rem;
}

.box-1 {
  background: var(--bs-dark);
  flex-basis: 45%;
  flex-grow: 0;
  border-radius: 8px;
  padding: 1.75rem 2rem;
  margin-bottom: 1rem;
}

.box-2 {
  background: #3981eb;
  flex-basis: 45%;
  flex-grow: 0;
  padding: 1.5rem 1.75rem;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.box-2 :is(h2, p) {
  color: #fff;
}

.box-3 {
  background: #003481;
  flex-basis: 45%;
  flex-grow: 0;
  padding: 1.5rem 1.75rem;
  border-radius: 8px;
}

.box-4 {
  background: var(--bs-primary);
  flex-basis: 45%;
  flex-grow: 0;
  padding: 1.5rem 1.75rem;
  border-radius: 8px;
}

/*==============
WHY CHOOSE US
=============*/

#why-choose-us .vector-img {
  max-width: 450px;
}

.header-container {
  margin: 0 auto 7rem;
}

#why-choose-us h2 {
  font-weight: 800;
}

#why-choose-us h3 {
  font-size: 2.35rem;
  color: #FFF;
}

#why-choose-us .row {
  margin-bottom: 5rem;
}

/*==============
PRICING PACKAGES
=============*/

section#pricing {
  position: relative;
  padding: 10rem 0 6rem;
}

#pricing .pricing-img {
  position: absolute;
  top: 4%;
  width: 215px;
  z-index: -1;
  opacity: 0.6;
  left: -4%;
}

#pricing::before {
  content: "";
  display: block;
  position: absolute;
  top: 55%;
  height: 215px;
  width: 100%;
  background: var(--bs-primary);
}

#pricing .card-header span {
  font-size: 2.5rem;
  color: var(--bs-tertiary);
  font-weight: 800;
}

#pricing .card-header {
  padding: 2.25rem;
}

#pricing .card-header h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

#pricing .card-header p {
  margin-bottom: 0;
}

#pricing .card-body {
  padding: 1.5rem 2rem 3rem;
  background: var(--bs-dark);
  border-radius: 0 0 10px 10px;
}

#pricing .card-body p {
  color: var(--bs-light);
  padding-bottom: 2rem;
}

#pricing .card-body .btn-primary {
  display: block;
  margin-top: 3rem;
}

/*==============
INNER PAGES
=============*/

.overlay-img {
  background: no-repeat url(../site_images/vector-bg.svg) 100% 61%;
  width: 106%;
  z-index: 0;
  position: absolute;
  top: -300px;
  height: 800px;
  right: 0;
  opacity: 0.175;
}

#inner-hero :is(h1, p) {
  color: #fff;
  text-align: left;
}

#inner h2 {
  margin: 1.5rem 0;
}

#inner {
  position: relative;
  z-index: 1;
  margin-top: -17rem;
}

#inner article {
  padding: 0 1.75rem 4rem 0;
}

#inner article p {
  line-height: 2;
}

#consult-cta {
  padding: 10rem 0 4rem;
  overflow-x: hidden;
  background: var(--bs-gradient);
}

.consultation_form {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column;
    margin-top: 50px;
}

.cta-header .subtitle {
  margin-bottom: 0;
}

.cta-header p {
  font-size: 1.25rem;
}

.cta-header {
  flex-basis: 75%;
}

.cta-btn {
  flex-basis: 20%;
}

.cta-header .tertiary {
  color: var(--bs-tertiary);
}

.cta-header :is(h2, p) {
  color: #fff;
}

.inner-img {
  float: right;
  margin: 10px 0 0 10px;
  max-width: 300px;
}

.sidebar-section {
  padding: 2rem 0;
}

/*==============
FOOTER
=============*/

#footer {
  background: var(--bs-dark);
}

footer .nav-link {
  color: #fff;
  line-height: 1;
}

footer .nav-link:hover {
  color: var(--bs-tertiary);
  border-bottom: 3px solid transparent;
}

#copyright :is(p, a) {
  color: #fff;
}

.social-media {
  list-style: none;
}

.social-media a {
  background: var(--bs-primary);
  padding: 5px 8px;
  color: #fff;
  margin-right: 10px;
  border-radius: 5px;
}

.hcm #footer .social-media a {
  background: var(--bs-tertiary);
  color: #fff;
}

@media (max-width: 800px) {
  .dropdown-menu {
    text-align: center;
    border: none;
  }

  .nav-link {
    color: #212121;
    font-weight: 500;
    margin-right: 0;
    font-size: 1.25rem;
    border-bottom: 3px solid transparent;
  }

  .nav-link:is(:hover, :focus),
  .navbar-nav .nav-link.show {
    color: var(--bs-secondary);
    border-bottom: 3px solid transparent;
  }

  .navbar {
    z-index: 5;
  }

  .navbar .cta-btn {
    display: none;
  }

  .cta-btn {
    display: block;
    flex-basis: auto;
  }

  #hero {
    position: relative;
    padding: 0 0 21rem;
    z-index: 0;
  }

  #inner {
    z-index: 0;
  }

  .dropdown-item {
    padding: 0.5rem;
    border: 0;
    text-align: center;
  }

  section#inner-hero {
    padding: 4rem 3rem;
  }

  #why-choose-us .row:nth-child(3) {
    flex-direction: column-reverse;
  }

  #hero .background-hero {
    position: absolute;
    width: 140%;
    left: -22%;
    top: 24%;
    opacity: 0.3;
  }

  #inner article {
    flex-grow: 1;
    padding: 4rem 2rem;
  }

  #inner aside {
    padding: 4rem 2rem;
    flex-grow: 1;
  }

  .inner-bg-shape {
    top: -325px;
    left: -76%;
    width: 181%;
    height: 340px;
  }

  .inner-bg-shape.cta {
    left: -10%;
    top: -402px;
    height: 400px;
  }

  #consult-cta {
    padding: 13rem 0 4rem;
  }
}

@media (max-width: 599px) {
  #main {
    margin-top: -6rem;
    padding: 0 0.25rem;
  }

  #hero .background-hero {
    position: absolute;
    width: 195%;
    left: -65%;
    top: 0%;
    opacity: 0.3;
  }

   footer .link-light:hover {
    color: var(--bs-tertiary) !important;
 }

   footer .link-light:hover {
    color: var(--bs-tertiary);
}

   footer .link-light:hover path {
    fill: var(--bs-tertiary);
}

  #main > #hero {
    padding: 1rem 0 4rem;
  }

  .topbar-link {
    display: inline-block;
    width: 48px;
    height: 48px;
    padding: 15px 1px 0px 8px;
    text-align: center;
  }

  .index-content h1 {
    line-height: 1.25;
    margin-bottom: 1rem;
  }

  #affiliates .d-flex {
    flex-direction: column;
  }

  #why-choose-us .vector-img {
    max-width: 325px;
    margin-bottom: 1.5rem;
  }

  #why-choose-us .row :is(h3, p) {
    text-align: center;
  }

  .service-boxes {
    margin-top: 2rem;
  }

  .service-boxes .column-1 {
    margin-bottom: 0;
  }

  .service-boxes .column-2 {
    margin-top: 0;
  }

  .text-area {
    margin: 3rem 0 1rem;
    text-align: center;
  }

  #hero .btn {
    display: block;
    width: 200px;
    margin: 1rem auto;
  }

  .hero-image {
    max-width: 75%;
    text-align: center;
    margin-top: 3rem;
  }

  #hero .row {
    flex-direction: column-reverse;
  }

  #pricing .row {
    justify-content: center;
  }

  section#affiliates {
    padding: 0rem 3rem 5rem;
  }

  #affiliates img {
    margin-top: 1rem;
  }

  .inner-bg-shape {
    top: -369px;
    left: -96%;
    width: 215%;
    height: 372px;
    z-index: 0;
  }

  .inner-bg-shape.cta {
    transform: rotate(184deg);
    left: -12%;
    top: -325px;
    height: 380px;
  }

  .navContainer img {
    display: none;
  }

  #header .navContainer {
    position: relative;
  }

  .visible-xs {
    display: block;
    width: 65px;
  }
}