/*-- -------------------------- -->
<---        Core Styles         -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0em) {
  :root {
    --primary: #176ca8;
    --primaryShade: #ffd675;
    --primaryDark: #805d0d;
    --bodyText: #1a1a1a;
  }
  /* roboto-regular - latin */
  @font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: local(''), url('../fonts/roboto-v29-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ url('../fonts/roboto-v29-latin-regular.woff') format('woff');
    
    /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  }
  /* roboto-700 - latin */
  @font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: local(''), url('../fonts/roboto-v29-latin-700.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ url('../fonts/roboto-v29-latin-700.woff') format('woff');
    
    /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  }
  /* roboto-900 - latin */
  @font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 900;
    src: local(''), url('../fonts/roboto-v29-latin-900.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ url('../fonts/roboto-v29-latin-900.woff') format('woff');
    
    /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  }
  body,
  html {
    margin: 0;
    padding: 0;
    font-size: 100%;
    font-family: 'Roboto', Arial, sans-serif;
    color: var(--bodyText);
    overflow-x: hidden;
  }
  *,
  *:before,
  *:after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    transition: background-color 0.3s;
  }
  .container {
    position: relative;
    width: 92%;
    margin: auto;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin: 0;
    color: #1a1a1a;
  }
  p,
  li,
  a {
    font-size: 1.125em;
    line-height: 1.5em;
    margin: 0;
  }
  p,
  li {
    color: #575757;
  }
  a:hover,
  button:hover {
    cursor: pointer;
  }
  .button-solid {
    font-size: 0.875em;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    width: auto;
    line-height: 3.57142857em;
    height: 3.57142857em;
    text-align: center;
    padding: 0 2.14285714em;
    position: relative;
    z-index: 1;
    background-color: var(--primary);
    color: #fff;
    transition: color .3s;
    transition-delay: .1s;
  }
  .button-solid:hover {
    color: #fff;
  }
  .button-solid:hover:before {
    width: 100%;
  }
  .button-solid:before {
    content: '';
    position: absolute;
    display: block;
    height: 100%;
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: #000;
    width: 0;
    transition: width .3s;
  }
  .skip {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: -1111111;
  }
}
/* Reset Margins */
@media only screen and (min-width: 1024px) {
  body,
  html {
    padding: 0;
    margin: 0;
  }
}
/* Scale full website with the viewport width */
@media only screen and (min-width: 2000px) {
  body,
  html {
    font-size: .85vw;
  }
}
/*-- -------------------------- -->
<---         Navigation         -->
<--- -------------------------- -*/
/* Mobile - Top Drop Down */
@media only screen and (max-width: 1299px) {
  #navigation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: auto;
  }
  #navigation .background-color-div {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #fff;
    width: 100%;
    height: 100%;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  }
  #navigation .container {
    padding: 0.8125em 0;
    width: 96%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* Align logo and hamburger menu at ends */
  }
  #navigation .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    /* Center the text */
    height: 3em;
    width: auto;
    text-decoration: none;
    margin-left: -2em;
    /* Adjust the margin as needed */
  }
  #navigation .logo img {
    width: auto;
    height: 100%;
  }
  #navigation .logo video {
    width: auto;
    height: 3.375em;
    display: none;
  }
  #navigation .logo .light {
    display: none;
  }
  #navigation .logo .dark {
    display: block;
  }
  #navigation .logo .logo-text {
    font-size: 1.125em;
    /* Adjust the font size to match desktop */
    margin-left: 2em;
    /* Space between the logo and the text */
    font-weight: bold;
    color: var(--primary);
    /* Same color as desktop */
    text-transform: uppercase;
    /* To match desktop styling */
    white-space: nowrap;
    /* Prevent text wrapping */
    text-decoration: none;
    /* Remove underline */
    text-align: center;
    /* Center the text */
  }
  #navigation .hamburger-menu {
    position: absolute;
    right: 0em;
    border: none;
    height: 3em;
    width: 3em;
    z-index: 100;
    display: block;
    background: transparent;
    padding: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: top .3s;
  }
  #navigation .hamburger-menu span {
    height: 2px;
    width: 1.875em;
    background-color: #000;
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: background-color 0.3s;
  }
  #navigation .hamburger-menu span:before {
    content: '';
    position: absolute;
    display: block;
    height: 2px;
    width: 80%;
    background: #000;
    opacity: 1;
    top: -6px;
    left: 0;
    transition: width .3s, left .3s, top .3s, transform .5s;
  }
  #navigation .hamburger-menu span:after {
    content: '';
    position: absolute;
    display: block;
    height: 2px;
    width: 80%;
    background: #000;
    opacity: 1;
    top: 6px;
    left: 0;
    transition: width .3s, left .3s, top .3s, transform .3s;
  }
  #navigation #navbar-menu {
    position: fixed;
    right: 0;
    padding: 0;
    width: 100%;
    border-radius: 0 0 0.375em 0.375em;
    z-index: 2000;
    overflow: hidden;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    background-color: #d3d3d3;
    top: 4.625em;
    padding-top: 0;
    height: 0;
    transition: height 0.3s, padding-top 0.3s, top 0.3s;
  }
  #navigation #navbar-menu ul {
    padding: 0;
    perspective: 700px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2000;
  }
  #navigation #navbar-menu ul li {
    list-style: none;
    margin-bottom: 1em;
    text-align: center;
  }
  #navigation #navbar-menu ul li a,
  #navigation #navbar-menu ul li button.dropdown-toggle {
    /* Style links and button similarly */
    text-decoration: none;
    text-transform: uppercase;
    color: #000;
    font-size: 0.875em;
    text-align: center;
    display: inline-block;
    position: relative;
    font-weight: bold;
    border: none;
    background: none;
    cursor: pointer;
  }
  #navigation #navbar-menu ul li a.active:before,
  #navigation #navbar-menu ul li button.dropdown-toggle.active:before {
    content: '';
    position: absolute;
    display: block;
    height: 0.42105263em;
    color: var(--primary);
    opacity: 1;
  }
  #navigation #navbar-menu ul li .dropdown-container {
    position: relative;
    text-align: center;
    width: 100%;
  }
  #navigation #navbar-menu ul li .dropdown-container .dropdown-toggle {
    margin: 0 auto;
  }
  #navigation #navbar-menu ul li .dropdown-container .dropdown {
    display: none;
    /* Hidden by default */
    position: relative;
    /* Positioned within the dropdown container */
    background-color: white;
    width: 100%;
    padding: 10px 0;
    z-index: 100;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  }
  #navigation #navbar-menu ul li .dropdown-container .dropdown li {
    list-style: none;
    height: 1.25em;
  }
  #navigation #navbar-menu ul li .dropdown-container .dropdown li a {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 0.625em;
    text-transform: uppercase;
    color: var(--primary);
    transition: background-color 0.3s, color 0.3s;
  }
  #navigation #navbar-menu ul li .dropdown-container .dropdown li a:hover {
    background-color: var(--primary);
    color: #fff;
  }
  #navigation #navbar-menu ul li .dropdown-container.dropdown-open .dropdown {
    display: block;
    /* Show dropdown when open */
  }
  #navigation #navbar-menu ul li .dropdown-container.dropdown-open + #auth-section {
    margin-top: 10px;
    transition: margin 0.3s ease;
  }
  #navigation #navbar-menu.open {
    height: 100vh;
    z-index: 2000;
    background-color: white;
  }
  #navigation #navbar-menu.open ul {
    justify-content: center;
    align-items: center;
  }
  #navigation #navbar-menu.open ul li {
    opacity: 1;
    transform: translateY(0) rotateX(0);
    font-size: 1.125em;
  }
  #navigation .letstalk-button {
    display: none;
  }
  #navigation #contactLink {
    display: block;
  }
  #sign-in-btn {
    background-color: var(--primary);
    color: var(--primary) !important;
    border: none;
    border-radius: 5px;
    padding: 10px;
    cursor: pointer;
    font-size: 1em;
    display: block;
    max-width: 6em;
  }
}
/* Desktop */
@media only screen and (min-width: 1300px) {
  #navigation {
    width: 85%;
    height: 100px;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 200000;
    padding: 0;
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, #ffffff 0%, var(--primary) 100%);
    border-radius: 50px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  #navigation .background-color-div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    height: 100%;
    z-index: -1;
    border-radius: 50px;
  }
  #navigation .container {
    max-width: 87.5em;
    width: 100%;
    display: flex;
    justify-content: space-between;
    /* Space between the three sections */
    align-items: center;
    padding: 0 20px;
    margin-left: 4.5em;
    /* Adjust the margin as needed */
  }
  #navigation .logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100px;
    flex: 0 1 200px;
    /* Reduce the width and make it more flexible */
    text-decoration: none;
    margin-left: -7.5em;
    /* Adjust the margin as needed */
  }
  #navigation .logo img,
  #navigation .logo video {
    width: 15em;
    /* Increase the width of the video */
    height: auto;
  }
  #navigation .logo .logo-text {
    font-size: 1.25em;
    /* Adjust the font size as needed */
    margin-left: -3em;
    /* Space between the logo and the text */
    font-weight: bold;
    color: var(--primary);
    /* Change text color to var(--primary) */
    text-transform: uppercase;
    /* Optional: to match the nav text style */
    white-space: nowrap;
    /* Prevent text wrapping */
    text-decoration: none;
  }
  #navigation #navbar-menu {
    flex: 1 1 auto;
    /* This allows more space for the navigation links */
    display: flex;
    justify-content: center;
    /* Center the navigation links */
    align-items: center;
    height: 100%;
    width: 70%;
  }
  #navigation #navbar-menu ul {
    padding: 0;
    display: flex;
    justify-content: center;
    /* Align links in the middle */
    align-items: center;
  }
  #navigation #navbar-menu ul li {
    list-style: none;
    margin-left: 10px;
    /* Reduce the margin to prevent wrapping */
    position: relative;
    /* Required for dropdown positioning */
  }
  #navigation #navbar-menu ul li a,
  #navigation #navbar-menu ul li button.dropdown-toggle {
    text-decoration: none;
    font-weight: bold;
    font-size: 0.75em;
    text-transform: uppercase;
    color: #fff;
    transition: color .3s;
    border: none;
    background: none;
    cursor: pointer;
  }
  #navigation #navbar-menu ul li a:hover,
  #navigation #navbar-menu ul li button.dropdown-toggle:hover {
    color: #D6F6FF;
  }
  #navigation #navbar-menu ul li a.active,
  #navigation #navbar-menu ul li button.dropdown-toggle.active {
    color: #D6F6FF;
  }
  #navigation #navbar-menu ul li .dropdown {
    display: none;
    /* Hidden by default */
    position: absolute;
    top: 100%;
    /* Position below parent link */
    left: 0;
    background-color: #fff;
    border-radius: 8px;
    padding: 10px 0;
    list-style: none;
    z-index: 10;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
    width: 8.875em;
  }
  #navigation #navbar-menu ul li .dropdown li {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  #navigation #navbar-menu ul li .dropdown li a {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 0.875em;
    text-transform: uppercase;
    color: #000;
    transition: background-color 0.3s, color 0.3s;
  }
  #navigation #navbar-menu ul li .dropdown li a:hover {
    background-color: var(--primary);
    color: #fff;
  }
  #navigation #navbar-menu ul li:hover .dropdown {
    display: block;
  }
  #navigation .letstalk-button {
    flex: 0 1 200px;
    /* Slightly reduce the width of the button */
    color: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1em;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    transition: background .3s;
    width: auto;
    height: 100px;
    text-decoration: none;
  }
  #navigation .letstalk-button .arrow {
    margin-left: 10px;
    transition: margin-left 0.3s;
  }
  #navigation #contactLink {
    display: none;
  }
  #navigation .hamburger-menu {
    display: none;
  }
  #sign-in-btn {
    background-color: var(--primary);
    color: white !important;
    border: none;
    border-radius: 5px;
    padding: 10px;
    cursor: pointer;
    font-size: 1em;
    display: block;
    max-width: 6em;
  }
}
/* Desktop */
@media only screen and (min-width: 1550px) {
  #navigation {
    width: 85%;
    height: 100px;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 200000;
    padding: 0;
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, #ffffff 0%, var(--primary) 100%);
    border-radius: 50px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  #navigation .background-color-div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    height: 100%;
    z-index: -1;
    border-radius: 50px;
  }
  #navigation .container {
    max-width: 87.5em;
    width: 100%;
    display: flex;
    justify-content: space-between;
    /* Space between the three sections */
    align-items: center;
    padding: 0 20px;
    margin-left: 4.5em;
    /* Adjust the margin as needed */
  }
  #navigation .logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100px;
    flex: 0 1 200px;
    /* Reduce the width and make it more flexible */
    text-decoration: none;
    margin-left: -7.5em;
    /* Adjust the margin as needed */
  }
  #navigation .logo img,
  #navigation .logo video {
    width: 15em;
    /* Increase the width of the video */
    height: auto;
  }
  #navigation .logo .logo-text {
    font-size: 1.25em;
    /* Adjust the font size as needed */
    margin-left: -3em;
    /* Space between the logo and the text */
    font-weight: bold;
    color: var(--primary);
    /* Change text color to var(--primary) */
    text-transform: uppercase;
    /* Optional: to match the nav text style */
    white-space: nowrap;
    /* Prevent text wrapping */
    text-decoration: none;
  }
  #navigation #navbar-menu {
    flex: 1 1 auto;
    /* This allows more space for the navigation links */
    display: flex;
    justify-content: center;
    /* Center the navigation links */
    align-items: center;
    height: 100%;
    width: 70%;
  }
  #navigation #navbar-menu ul {
    padding: 0;
    display: flex;
    justify-content: center;
    /* Align links in the middle */
    align-items: center;
  }
  #navigation #navbar-menu ul li {
    list-style: none;
    margin-left: 15px;
    /* Reduce the margin to prevent wrapping */
    position: relative;
    /* Required for dropdown positioning */
  }
  #navigation #navbar-menu ul li a,
  #navigation #navbar-menu ul li button.dropdown-toggle {
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    text-transform: uppercase;
    color: #fff;
    transition: color .3s;
    border: none;
    background: none;
    cursor: pointer;
  }
  #navigation #navbar-menu ul li a:hover,
  #navigation #navbar-menu ul li button.dropdown-toggle:hover {
    color: #D6F6FF;
  }
  #navigation #navbar-menu ul li a.active,
  #navigation #navbar-menu ul li button.dropdown-toggle.active {
    color: #D6F6FF;
  }
  #navigation #navbar-menu ul li .dropdown {
    display: none;
    /* Hidden by default */
    position: absolute;
    top: 100%;
    /* Position below parent link */
    left: 0;
    background-color: #fff;
    border-radius: 8px;
    padding: 10px 0;
    list-style: none;
    z-index: 10;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
    width: 8.875em;
  }
  #navigation #navbar-menu ul li .dropdown li {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  #navigation #navbar-menu ul li .dropdown li a {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 1em;
    text-transform: uppercase;
    color: #000;
    transition: background-color 0.3s, color 0.3s;
  }
  #navigation #navbar-menu ul li .dropdown li a:hover {
    background-color: var(--primary);
    color: #fff;
  }
  #navigation #navbar-menu ul li:hover .dropdown {
    display: block;
  }
  #navigation .letstalk-button {
    flex: 0 1 200px;
    /* Slightly reduce the width of the button */
    color: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1em;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    transition: background .3s;
    width: auto;
    height: 100px;
    text-decoration: none;
  }
  #navigation .letstalk-button .arrow {
    margin-left: 10px;
    transition: margin-left 0.3s;
  }
  #navigation #contactLink {
    display: none;
  }
  #navigation .hamburger-menu {
    display: none;
  }
  #sign-in-btn {
    background-color: var(--primary);
    color: white !important;
    border: none;
    border-radius: 5px;
    padding: 10px;
    cursor: pointer;
    font-size: 1em;
    display: block;
    max-width: 6em;
  }
}
/* Dark Mode Mobile */
@media only screen and (max-width: 1023px) {
  body.dark-mode #navigation .background-color-div {
    background-color: var(--dark);
  }
  body.dark-mode #navigation .hamburger-menu.clicked span {
    background-color: var(--dark);
  }
  body.dark-mode #navigation .hamburger-menu span {
    background-color: #fff;
  }
  body.dark-mode #navigation .hamburger-menu span:before,
  body.dark-mode #navigation .hamburger-menu span:after {
    background-color: #fff;
  }
  body.dark-mode #navigation .logo .light {
    display: block;
  }
  body.dark-mode #navigation .logo .dark {
    display: none !important;
  }
  body.dark-mode #navigation #navbar-menu {
    background-color: var(--medium);
  }
  body.dark-mode #navigation #navbar-menu ul li a {
    color: #fff;
  }
  body.dark-mode #navigation #navbar-menu ul li a:before {
    background: var(--accent);
  }
  body.dark-mode #navigation #navbar-menu ul li a.active {
    color: var(--primary);
  }
}
/* Dark Mode Desktop */
@media only screen and (min-width: 1024px) {
  body.dark-mode #navigation .background-color-div {
    background-color: var(--dark);
  }
  body.dark-mode #navigation .logo .light {
    display: block;
  }
  body.dark-mode #navigation .logo .dark {
    display: none !important;
  }
  body.dark-mode #navigation #navbar-menu ul li a {
    color: #fff;
  }
  body.dark-mode #navigation #navbar-menu ul li a:before {
    background: var(--accent);
  }
  body.dark-mode #navigation #navbar-menu ul li a.active {
    color: var(--primary);
  }
}
/*-- -------------------------- -->
<---   Interior Page Header     -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0em) {
  #int-hero {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    z-index: 1;
    min-height: 30vh;
    padding-top: 3.125em;
  }
  #int-hero:before {
    content: '';
    position: absolute;
    display: block;
    height: 100%;
    width: 100%;
    background: #000;
    opacity: .7;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #int-hero picture {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -2;
  }
  #int-hero picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  #int-hero h1 {
    color: #fff;
    font-size: 2.13333333em;
    text-align: center;
    margin: 0 auto;
    position: relative;
    width: 96%;
    max-width: 7.8125em;
    margin-top: 1.09375em;
    margin-bottom: 0.46875em;
  }
  #int-hero p {
    color: #fff;
    text-align: center;
    max-width: 22.22222222em;
    margin: auto;
    margin-bottom: 1.66666667em;
    display: block;
    width: 96%;
  }
}
/* Tablet */
@media only screen and (min-width: 48em) {
  #int-hero {
    font-size: 16px;
  }
  #int-hero h1 {
    font-size: 4em;
  }
}
/* Small Desktop */
@media only screen and (min-width: 64em) {
  #int-hero {
    min-height: 18.75em;
    height: auto;
    padding-top: 11.25em;
    padding-block-end: 6.25em;
    background-attachment: fixed;
    font-size: inherit;
  }
}
/*-- -------------------------- -->
<---           Footer           -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0em) {
  #footer {
    background: #1C1C1C;
    padding: 1em 0 1em;
    font-size: min(4vw, 1.2em);
  }
  #footer .left-section {
    margin: auto;
    text-align: center;
  }
  #footer .left-section .logo {
    display: inline-block;
    margin: auto;
    width: auto;
    height: 17.5em;
    text-align: center;
  }
  #footer .left-section .logo img {
    width: auto;
    height: 100%;
    display: block;
  }
  #footer .left-section p {
    font-size: 0.875em;
    line-height: 1.92857143;
    color: #fff;
    opacity: .9;
    text-align: center;
    width: 100%;
    width: 21.92857143em;
    margin: auto;
  }
  #footer .right-section {
    width: 96%;
    max-width: 25.4375em;
    margin: auto;
  }
  #footer .right-section .lists {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 96%;
    max-width: 19.1875em;
    margin: auto;
  }
  #footer .right-section .lists ul {
    padding: 0;
    margin-bottom: 0;
    margin-top: 0;
  }
  #footer .right-section .lists ul:nth-of-type(3) {
    margin-top: 3.125em;
  }
  #footer .right-section .lists ul:nth-of-type(3) li {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 0.88888889em;
  }
  #footer .right-section .lists ul:nth-of-type(3) li:last-of-type {
    margin-bottom: 0;
  }
  #footer .right-section .lists ul li {
    list-style: none;
    margin-bottom: 0.66666667em;
    color: #fff;
    font-size: 1em;
    opacity: .9;
  }
  #footer .right-section .lists ul li a {
    text-decoration: none;
    color: #fff;
    line-height: 1.16666667;
    transition: color .3s;
  }
  #footer .right-section .lists ul li a:hover {
    color: var(--primary);
  }
  #footer .right-section .lists ul h2 {
    color: #fff;
    font-size: 1.125em;
    line-height: 1.16666667;
    margin-bottom: 2.05555556em;
    text-transform: uppercase;
    font-weight: bold;
    position: relative;
  }
  #footer .right-section .lists ul h2:before {
    content: '';
    position: absolute;
    display: block;
    height: 0.11111111em;
    width: 5.38888889em;
    background: var(--primary);
    opacity: 1;
    bottom: -0.88888889em;
    left: 0;
  }
  #footer .right-section .buttons {
    display: flex;
    justify-content: center;
  }
  #footer .right-section .button-solid {
    margin: 0;
    height: 2.94444444em;
    padding-top: 0.16666667em;
    width: 13.88888889em;
  }
  #footer .credit {
    color: #fff;
    width: 96%;
    margin: auto;
    text-align: center;
    margin-top: 6.25em;
    line-height: 2.25em;
    font-size: 1em;
  }
  #footer .credit a {
    color: #fff;
    text-decoration: none;
    font-size: 1.125em;
  }
  #footer .credit a:hover {
    text-decoration: underline;
  }
  #footer .credit .copyright {
    display: block;
    font-size: 1em;
  }
}
/* Small Desktop */
@media only screen and (min-width: 64em) {
  #footer {
    font-size: min(1.2vw, 1em);
  }
  #footer .container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    width: 96%;
    max-width: 82.5em;
    margin: auto;
    padding: 0;
  }
  #footer .left-section {
    width: 25.5625em;
    margin: 0;
    text-align: left;
  }
  #footer .left-section .logo {
    text-align: left;
    margin-left: 0;
    height: 21.25em;
    width: auto;
    margin-top: -2.625em;
  }
  #footer .left-section p {
    text-align: left;
    margin-left: 0;
  }
  #footer .right-section {
    margin: 0;
    width: 38.0625em;
    max-width: none;
    margin-top: 5.125em;
  }
  #footer .right-section .lists {
    width: 96%;
    max-width: 48.0625em;
    margin: 0;
    max-width: initial;
  }
  #footer .right-section .lists ul:nth-of-type(3) {
    margin-top: 0;
  }
  #footer .right-section .lists ul:nth-of-type(3) li:first-of-type {
    margin-bottom: 0;
  }
  #footer .right-section .lists ul li a {
    position: relative;
  }
  #footer .right-section .lists ul li a:before {
    content: '';
    position: absolute;
    display: block;
    height: 0.11111111em;
    width: 0%;
    background: var(--primary);
    opacity: 1;
    bottom: -0.16666667em;
    left: 0;
    transition: width .3s;
  }
  #footer .right-section .lists ul li a:hover:before {
    width: 100%;
  }
  #footer .right-section .buttons {
    justify-content: flex-start;
  }
  #footer .credit .copyright {
    display: inline-block;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0em) {
  body.dark-mode #footer {
    background: #061623;
  }
}
/*-- -------------------------- -->
<---         Chatbot         -->
<--- -------------------------- -*/
/* Mobile - Top Drop Down */
@media only screen and (max-width: 1299px) {
  #chat-container {
    width: 95%;
    height: 80px;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 200000;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    margin-top: 30px;
  }
  #chat-container #chat-button {
    max-width: 20%;
    display: flex;
    max-height: 100%;
    justify-content: space-between;
    /* Space between the three sections */
    padding: 0 10px;
    cursor: pointer;
  }
  #chat-container .chatbox-image {
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 100%;
    flex: 0 1 200px;
    /* Reduce the width and make it more flexible */
    text-decoration: none;
    background: linear-gradient(90deg, #ffffff 0%, var(--primary) 100%);
    border-radius: 50%;
    padding: 20px;
    margin-top: 5px;
  }
  #chat-container .chatbox-image img {
    width: 100%;
    /* Increase the width of the video */
    height: 100%;
  }
  #iframe-container {
    position: absolute;
    bottom: 100px;
    /* Positioned above the button */
    right: 0;
    /* Align to the right */
    width: 45vw;
    /* Width of the iframe container */
    height: 65vh;
    /* 70% of the viewport height */
    z-index: 1001;
    display: none;
    /* Hidden by default */
    border: solid 1px #7899c6;
    border-radius: 3%;
    /* Add border radius of 5% */
    overflow: hidden;
    /* Ensure the content of the iframe fits inside the rounded corners */
    box-shadow: black 1px 2px 2px 4px;
  }
  /* Update iframe styling */
  #chat-iframe {
    width: 100%;
    /* Take full width of the iframe container */
    height: 100%;
    /* Take full height of the iframe container */
    border: none;
    border-radius: 2%;
    /* Add border radius of 5% */
    overflow: hidden;
    /* Ensure the content of the iframe fits inside the rounded corners */
  }
}
/* Desktop */
@media only screen and (min-width: 1300px) {
  #chat-container {
    width: 95%;
    height: 100px;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 200000;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
  }
  #chat-container #chat-button {
    max-width: 50%;
    display: flex;
    max-height: 100%;
    justify-content: space-between;
    /* Space between the three sections */
    padding: 0 20px;
    cursor: pointer;
  }
  #chat-container .chatbox-image {
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 80%;
    flex: 0 1 200px;
    /* Reduce the width and make it more flexible */
    text-decoration: none;
    background: linear-gradient(90deg, #ffffff 0%, var(--primary) 100%);
    border-radius: 50%;
    padding: 20px;
  }
  #chat-container .chatbox-image img {
    width: 100%;
    /* Increase the width of the video */
    height: 100%;
  }
  #iframe-container {
    position: absolute;
    bottom: 100px;
    /* Positioned above the button */
    right: 0;
    /* Align to the right */
    width: 45vw;
    /* Width of the iframe container */
    height: 65vh;
    /* 70% of the viewport height */
    z-index: 1001;
    display: none;
    /* Hidden by default */
    border: solid 1px #7899c6;
    border-radius: 3%;
    /* Add border radius of 5% */
    overflow: hidden;
    /* Ensure the content of the iframe fits inside the rounded corners */
    box-shadow: black 1px 2px 2px 4px;
  }
  /* Update iframe styling */
  #chat-iframe {
    width: 100%;
    /* Take full width of the iframe container */
    height: 100%;
    /* Take full height of the iframe container */
    border: none;
    border-radius: 2%;
    /* Add border radius of 5% */
    overflow: hidden;
    /* Ensure the content of the iframe fits inside the rounded corners */
  }
}
