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

Theme Name: Caro, MI
Front-end developer: Abdallah 
Author Design:  Matt Hicks 
Author URI: https://www.revize.com/
Date: 06/24/2025

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

#fonts

-----------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Archivo+Narrow:ital,wght@0,400..700;1,400..700&family=Archivo:ital,wght@0,100..900;1,100..900&family=Biryani:wght@200;300;400;600;700;800;900&display=swap");

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

#basic styles

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

/* very important!!! Assign these colors */

:root {
  --brandcolor: #122a51; /* Choose a dark color form the website color palette */
  --darkgray: #999; /* Choose a lighter color form the website color palette */
  --lightgray: #ddd; /* Choose a very light color form the website color palette */

  --blue-light: #d8e7ff;
  --blue-dark: #122a51;
  --beige-light: #fffef7;
}

body {
  background: #fffef7;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  font-family: "Archivo", sans-serif;
  color: #000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  top: 0 !important;
}

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

#typography

-----------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--blue-dark);
  font-weight: normal;
  margin-bottom: 20px;
  line-height: 1.2;
  font-family: "Biryani";
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  font-weight: inherit;
}

h1 {
  font-size: 36px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 21px;
}

h5 {
  font-size: 16px;
}

h6 {
  font-size: 14px;
}

#post h1{font-size:56px}
#post h2{font-size:48px}
#post h3{font-size:40px}
#post h4{font-size:32px}
#post h5{font-size:24px}
#post h6{font-size:20px}

.header {
  font-size: 28px;
  color: var(--brandcolor);
  margin-bottom: 20px;
}

.subheader {
  color: var(--brandcolor);
  margin: 20px 0;
  display: block;
  font-weight: 700;
  font-family: "Biryani";
  font-size: 40px;
}

p {
  margin: 0 0 20px 0;
}

em {
  font-style: italic;
}

strong,
b {
  font-weight: bold;
}

small {
  font-size: 80%;
}

hr {
  border: solid var(--lightgray);
  border-width: 1px 0 0;
  clear: both;
  margin: 10px 0 30px;
  height: 0;
}

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

#links

-----------------------------------------*/
a,
a:visited {
  text-decoration: underline;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
  -webkit-transition: background 0.3s ease;
  -moz-transition: background 0.3s ease;
  -o-transition: background 0.3s ease;
  transition: background 0.3s ease;
  color: var(--brandcolor);
}

p a,
p a:visited {
  line-height: inherit;
}

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

#lists

-----------------------------------------*/
ul,
ol {
  margin-bottom: 20px;
  margin-left: 10px;
}
ul {
  list-style: disc;
}
ol {
  list-style: decimal;
}
ul ul,
ul ol,
ol ol ol ul {
  margin: 4px 0 5px 30px;
}
ul ul li,
ul ol li,
ol ol li ol ul li {
  margin-bottom: 6px;
}
li {
  line-height: 1.3;
  margin-bottom: 7px;
}
li p {
  line-height: 1.3;
}

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

#images

-----------------------------------------*/
img {
  max-width: 100%;
  height: auto;
}

a img {
  border: none;
}

.alignleft {
  float: left;
  clear: left;
  margin: 0 20px 20px;
}

.alignright {
  float: right;
  margin: 0 0 20px 20px;
}

.alignnone {
  margin: 0 auto 20px;
  display: block;
}

img[align="right"],
img[style*="float: right"],
img[style*="float:right"] {
  margin: 0 0 20px 20px;
}

img[align="left"],
img[style*="float: left"],
img[style*="float:left"] {
  margin: 0 20px 20px 0;
}

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

#buttons

-----------------------------------------*/
.btn:not([data-dismiss="modal"], .rz-btn),
a.btn,
.button,
a.button,
#post button:not(.rz-agenda-search-submit),
#post input[type="submit"],
#post input[type="reset"],
#post input[type="button"],
.rz-btn {
  padding: 13px 25px;
  background: var(--blue-dark);
  color: #fff;
  border: 0;
  border-radius: 4px;
  display: inline-block;
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
  line-height: 1.5;
  vertical-align: middle;
  font-family: "Archivo";
  transition: all 0.3s;
}
#post input[type="submit"] {
  padding: 0 24px;
  border-radius: 4px;
}
#post button.rz-doc-search-reset {
  display: none;
}

.btn a {
  color: #fff;
  text-decoration: none;
}

.btn:not([data-dismiss="modal"]):hover,
a.btn:hover,
.button:hover,
a.button:hover,
#post button:hover,
#post input[type="submit"]:hover,
#post input[type="reset"]:hover,
#post input[type="button"]:hover,
.rz-btn:hover {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
  background: var(--blue-dark);
  color: var(--blue-light);
}
.button:active,
a.button:active,
#post button:active,
#post input[type="submit"]:active,
#post input[type="reset"]:active,
#post input[type="button"]:active,
.rz-btn:active {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
  background: var(--brandcolor);
  color: #fff;
}
#post button::-moz-focus-inner,
#post input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.form-wrap.form-builder .btn-group > .btn {
  color:#fff!important;
}

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

#revize edit buttons DO NOT MODIFY

-----------------------------------------*/
/* ----------------------------------------- #helpers and positioning for revize buttons -----------------------------------------*/
.relative {
  position: relative !important;
}
.absolute {
  position: absolute !important;
}
.static {
  position: static !important;
}
.user-logged-in {
  box-shadow: 0 0 10px rgba(21, 0, 56, 0);
  padding: 14px;
}
.rz-bar-center-col {
  display: none !important;
}

/* default position for revize buttons is top right DO NOT WRAP - Check Below for other positioning */
body:not(.user-logged-in) .rz-btns-container {
  display: none;
}
.rz-btns-container {
  line-height: 1.5 !important;
  font-size: 16px;
  opacity: 0;
  background: #fff;
  padding: 4px;
  box-shadow: 0px 2px 10px rgba(21, 0, 56, 0.08);
  border: 1px solid rgba(21, 0, 56, 0.1);
  transform: translateY(10px);
  transition: all 0.2s;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 9;
  white-space: nowrap;
}
.rz-btns-stacked {
  padding: 6px 6px 0 !important;
}

/* 
to reposition '.rz-btns-container' WRAP IT IN A DIV WITH ONE OF THE CLASSES BELOW
top-left,top-center,right-center,right-bottom,center-bottom,center-center,bottom-left,left-center 
*/
.left-top {
  top: 0 !important;
  right: auto !important;
  left: 0 !important;
  z-index: 9;
  position: absolute;
}
.left-top .rz-btns-container {
  position: relative !important;
}
.center-top {
  top: 0 !important;
  right: 50% !important;
  transform: translate(50%, 0) !important;
  z-index: 9;
  position: absolute;
}
.center-top .rz-btns-container {
  position: relative !important;
}
.right-center {
  top: 50% !important;
  right: 0 !important;
  transform: translate(0, -50%) !important;
  z-index: 9;
  position: absolute;
}
.right-center .rz-btns-container {
  position: relative !important;
}
.right-bottom {
  top: auto !important;
  right: 0 !important;
  bottom: 0 !important;
  z-index: 9;
  position: absolute;
}
.right-bottom .rz-btns-container {
  position: relative !important;
}
.center-bottom {
  top: auto !important;
  right: 50% !important;
  bottom: 0 !important;
  transform: translateX(50%) !important;
  z-index: 9;
  position: absolute;
}
.center-bottom .rz-btns-container {
  position: relative !important;
}
.center-center {
  top: 50% !important;
  right: 50% !important;
  transform: translate(50%, -50%) !important;
  z-index: 9;
  position: absolute;
}
.center-center .rz-btns-container {
  position: relative !important;
}
.left-bottom {
  top: auto !important;
  right: auto !important;
  left: 0 !important;
  bottom: 0;
  z-index: 9;
  position: absolute;
}
.left-bottom .rz-btns-container {
  position: relative !important;
}
.left-center {
  top: 50% !important;
  right: auto !important;
  left: 0 !important;
  transform: translate(0, -50%) !important;
  z-index: 9;
  position: absolute;
}
.left-center .rz-btns-container {
  position: relative !important;
}

/* ----------------------------------------- rzBtn's -----------------------------------------*/
.rz-btns-container a {
  display: inline-block !important;
}
.rzBtn {
  text-transform: capitalize;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  line-height: 1.5 !important;
  display: inline-block !important;
  letter-spacing: 0 !important;
  padding: 7px 14px;
  background: #fff !important;
  color: #000 !important;
  font-weight: bold !important;
  font-size: 16px;
  white-space: nowrap;
  text-align: center;
  border: 1px solid #e6e6e6;
  transition: all 0.2s;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
}
.rz-btns-stacked a,
.rz-btns-stacked .rzBtn {
  display: block !important;
  margin-bottom: 6px;
  text-decoration: none;
}
.rzBtn:hover {
  background: #eee !important;
  border-color: #ccc;
  color: #000 !important;
  text-decoration: none;
}
.rzBtn-sm {
  font-size: 14px !important;
  padding: 5px 10px !important;
}
.rzBtn-xs {
  font-size: 12px !important;
  padding: 3px 6px !important;
}
.user-logged-in .yes-has-edit-buttons {
  position: relative;
  outline: 3px solid transparent;
  outline-offset: 6px;
}
.user-logged-in .yes-has-edit-buttons:hover,
.show-edit-buttons .user-logged-in .yes-has-edit-buttons {
  outline: 3px solid #6000fe;
  outline-offset: 3px;
  z-index: 10 !important;
  transition: all 0.2s;
  min-width: 142px;
  min-height: 80px;
}
.user-logged-in .yes-has-edit-buttons:hover .rz-btns-container:has(.rzBtn),
.show-edit-buttons
  .user-logged-in
  .yes-has-edit-buttons
  .rz-btns-container:has(.rzBtn) {
  opacity: 1;
  height: auto;
  transform: translateY(0);
  opacity: 1;
}
.hide-edit-btns .rz-btns-container {
  display: none;
}
.user-not-logged-in .rz-btns-container {
  display: none !important;
}

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

#forms

-----------------------------------------*/
form {
  margin-bottom: 20px;
}

fieldset {
  margin-bottom: 20px;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="search"],
textarea,
select {
  border: 1px solid var(--darkgray);
  padding: 0.375rem 0.75rem;
  outline: none;
  font-size: 16px;
  font-family: sans-serif;
  color: var(--brandcolor);
  margin: 0;
  display: inline-block;
  background: #fff;
  border-radius: 0;
  box-shadow: none;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="search"]:focus,
textarea:focus {
  color: var(--brandcolor);
  border: 1px solid var(--darkgray);
}

label,
legend {
  display: block;
  font-weight: bold;
  font-size: 13px;
}

input[type="checkbox"] {
  display: inline;
}

label span,
legend span {
  font-weight: normal;
  font-size: 16px;
  color: #444;
}

.form-control:focus {
  border-color: inherit;
  -webkit-box-shadow: none;
  box-shadow: none;
}

::-webkit-input-placeholder {
  color: #777;
}

:-moz-placeholder {
  color: #777;
}

::-moz-placeholder {
  color: #777;
}

:-ms-input-placeholder {
  color: #777;
}

.gsc-control-cse * {
  box-sizing: content-box;
}

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

#rz intranet

-----------------------------------------*/
form.loginform {
  background: #fff;
  padding: 30px;
  border: 1px solid #d2dfef;
}

form.loginform p {
  background: #e65229;
  color: #fff;
  padding: 20px;
  line-height: 1;
}

form.loginform label {
  font-weight: normal;
}

form.loginform label input {
  display: block;
  margin-bottom: 10px;
  width: 100%;
  box-sizing: border-box;
  padding: 10px;
  color: #000;
}

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

#rz alert

-----------------------------------------*/
.floating-alert {
  position: fixed;
  z-index: 100;
  bottom: 20px;
  margin: 0;
  right: 20px;
  background: #fff;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15), 0 2px 6px rgba(0, 0, 0, 0.05);
  color: #666;
  padding: 28px;
  font-size: 14px;
  width: 410px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 0;
}
.floating-alert h2 {
  color: var(--brandcolor);
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}
.floating-alert p {
  margin: 0;
}
.alert-buttons {
  margin: 28px -28px -28px;
  border-top: 1px solid #eee;
  display: flex;
}
.alert-button {
  border-right: 1px solid #eee;
  flex: 1 1 auto;
  text-align: center;
  padding: 14px 0;
  text-decoration: none;
  color: #000;
  font-weight: 700;
  line-height: 1.5;
}
.alert-buttons .alert-button:last-of-type {
  border: 0;
}
.alert-button:hover {
  background: var(--brandcolor);
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
.floating-alert.fade:not(.show) {
  display: none;
}

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

#rz edit

-----------------------------------------*/
#event-modal .modal-footer {
  gap: 5px;
}
#event-modal .modal-footer .btn {
  margin: 0 0 0 0;
  color: #fff !important;
}


body.user-logged-in .uwy.userway_p5 .userway_buttons_wrapper {
  left: 74px;
}

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

#main

-----------------------------------------*/
.rz-block-img[style="background: url('_assets_/images/logo.png') center center / cover no-repeat;"] {
  background-size: contain !important;
  background-position: center center !important;
}

article#rz-business-directory i.fa.fa-twitter:before {
  content: "";
  background: url(../images/twitter-x.png);
  background-size: cover;
  display: inline-block;
  width: 18px;
  height: 18px;
  position: relative;
  top: 3px;
}
.business-social-links a > .fa-twitter:before {
  content: "";
  background: url(../images/twitter-x.png);
  background-size: cover;
  display: inline-block;
  width: 18px;
  height: 18px;
  position: relative;
  top: 3px;
}

body .cat h3,
tr#rz-rpfbids-row {
  background: var(--brandcolor);
}

body table.rpfbids td {
  text-align: left !important;
}
body .faq-header {
  display: block !important;
}
.blog-header h2 {font-size: 21px !important;}
.blog-header h3, .blog-header small {font-size: 16px !important;}

/* to remove */
#wrapper_sliderVideo {
  z-index: 1 !important;
}
div.skiptranslate {
  display: none !important;
}
.container {
  width: 1278px;
  max-width: 100%;
}

/* Site header */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0;
  z-index: 250;
  background: var(--blue-light);
  box-shadow: 0px 20px 24px -4px rgba(0, 0, 0, 0.05),
    0px 8px 8px -4px rgba(0, 0, 0, 0.03);
}
.site-header .container {
  width: 1343px;
}

#social-media-links {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}
.social-media-link {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}
.social-media-link img {
  width: 18px;
}

.social-media-link:hover {
  background: var(--blue-dark);
}
.social-media-link:hover img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7495%)
    hue-rotate(176deg) brightness(103%) contrast(100%);
}

.h-bottom {
  position: relative;
}
.h-bottom-in {
  display: flex;
  gap: 16px;
}
#header-nav {
  flex: 1;
}
.h-bottom-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.h-divider {
  width: 1px;
  height: 40px;
  background: var(--blue-dark);
}

/* Logo */
.logo-wrap {
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 240px;
  transition: all 0.4s;
}
#logo {
  display: block;
  text-decoration: none;
  width: 100%;
  max-width: 100%;
}

/*base nav styles*/
.site-header #nav {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  padding: 0 4px 0 0;
}
.site-header #nav li {
  list-style: none;
  margin: 0;
}
.site-header #nav ul {
  padding: 0;
  margin: 0;
}
.site-header #nav a,
.site-header #nav span {
  padding: 38px 18px;
  display: inline-block;
  color: var(--blue-dark);
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  text-transform: capitalize;
  position: relative;
  z-index: 3;
}
.site-header #nav ul a,
.site-header #nav ul span {
  display: block;
}
.site-header #nav li:last-child > a,
.site-header #nav li:last-child > span {
  border: 0;
}
.site-header #nav > li > a:not(.toggle),
.site-header #nav > li > span {
  position: relative;
}

.text-overflow {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.toggle {
  display: none;
}

#twitterfeed {
  background: #f1f1f1;
}

.goog-te-banner-frame {
  display: none;
}

/* Translate */
.goog-te-banner-frame {
  display: none;
}
#translation {
  position: relative;
  z-index: 5;
}
#translator-toggle {
  background: var(--blue-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  width: 42px;
  height: 42px;
  border-radius: 5px;
  border: 1px solid var(--blue-dark);
}
#translator-toggle img {
  width: 24px;
  position: relative;
}
#translator-toggle:hover {
  color: #fff;
}
#translator-toggle:hover img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7495%)
    hue-rotate(176deg) brightness(103%) contrast(100%);
}

#translation-links {
  padding: 0;
  margin: 0;
  flex-shrink: 0;
}
#translation-links button {
  padding: 0;
  border: 0;
  background: none;
  font-weight: 400;
  font-size: 11.762px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0;
  width: 100%;
}
#translation-links button img {
  width: 21px;
  position: relative;
}
#translation-links li {
  position: relative;
  margin: 0;
  list-style: none;
}
#translation-links ul {
  padding: 25px;
  margin: 15px 0 0 0;
  position: absolute;
  right: -14px;
  top: 100%;
  width: 177px;
  height: 400px;
  overflow: auto;
  background: var(--blue-dark);
  display: none;
}
#translation-links ul li {
  margin-bottom: 10px;
}
#translation-links ul li a {
  text-decoration: none;
  color: #fff;
}

#translation-dropdown {
  background: var(--blue-dark);
  color: #fff;
  padding: 18px 14px 21px;
  width: 177px;
  border-radius: 4px;
  margin-top: 11px;
  position: absolute;
  right: -14px;
  display: none;
  filter: drop-shadow(0px 4px 12px rgba(0, 0, 0, 0.08));
}
.translator-title {
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 11px;
}
.quick-language a {
  text-decoration: none;
  color: #fff;
  font-size: 15.707px;
  font-weight: 700;
  line-height: 1.35;
}
.quick-language {
  text-align: center;
  display: flex;
  justify-content: space-between;
  padding: 0 7px;
  margin-bottom: 16px;
}
#translation ::-webkit-scrollbar {
  width: 3px;
}
#translation ::-webkit-scrollbar-track {
  background: #f1f1f1;
}
#translation ::-webkit-scrollbar-thumb {
  background: #0d1d51;
}
#translation ::-webkit-scrollbar-thumb:hover {
  background: #0d1d51;
}

.h-bottom-link {
  flex-shrink: 0;
  cursor: pointer;
  gap: 8px;
  color: var(--blue-dark) !important;
  font-size: 16px;
  font-weight: 400;
  height: 42px;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 4px;
  border: 1px solid var(--blue-dark);
  text-decoration: none;
}
.h-bottom-link img {
  width: 24px;
}
.h-bottom-link:hover {
  background: var(--blue-dark);
  color: #fff !important;
  text-decoration: none;
}

/* Search */
#search {
  width: 477px;
  max-width: 100%;
  margin: 0 auto;
}
#search form {
  position: relative;
  margin: 0;
}
#search input {
  border: 0;
  height: 63px;
  color: #4d4d4d;
  padding-left: 26px;
  padding-right: 58px;
  background: #fff;
  border-radius: 8px;
  font-weight: 700;
  font-size: 18px;
}
#search input::-webkit-input-placeholder {
  color: inherit;
}
#search input:-moz-placeholder {
  color: inherit;
}
#search input::-moz-placeholder {
  color: inherit;
}
#search input:-ms-input-placeholder {
  color: inherit;
}
#search label {
  margin: 0;
  position: absolute;
  left: 0;
  top: 0;
  line-height: 45px;
}
#search button {
  position: absolute;
  padding: 0;
  right: -1px;
  top: 0;
  border: 0;
  background: none;
  color: #fff;
  background: var(--blue-dark);
  text-transform: uppercase;
  width: 50px;
  height: 63px;
  border-radius: 0 8px 8px 0;
}
#search button img {
  width: 24px;
}


#search button:hover{background:var(--blue-light)!important;border-color:var(--blue-light)!important}
#search button:hover img{filter:brightness(0) saturate(100%) invert(13%) sepia(88%) saturate(834%) hue-rotate(189deg) brightness(92%) contrast(98%)}

.section-inner {
  position: relative;
  z-index: 9;
  opacity: 1;
}
.section-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 33px;
  gap: 1px;
  border-bottom: 1px solid rgba(18, 42, 81, 0.7);
  padding-bottom: 28px;
}
.section-label {
  display: block;
  text-align: center;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}
.section-title {
  text-align: left;
  position: relative;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  text-transform: capitalize;
  color: var(--blue-dark);
  margin: 0;
  font-family: "Biryani";
}
.section-desc {
  font-size: 18px;
  font-weight: 400;
  max-width: 771px;
  margin: 0 auto;
}

.section-link {
  margin: 0;
  display: flex !important;
  width: fit-content;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  z-index: 5;
  margin: 0 auto;
}
.section-link img {
  width: 24px;
}
.link-icon {
  width: 20px;
}
.section-text {
  color: #2e2e2e;
  font-size: 16px;
  font-weight: 400;
}

/* quicklinks section */
#quicklinks {
  position: relative;
  z-index: 20;
  width: 100%;
}
.quicklinks-in::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--blue-dark);
  opacity: 0.9;
  z-index: 1;
  border-radius: 8px;
}
.quicklinks-in {
  border-radius: 8px;
  overflow: hidden;
  margin: -139px 0 0 0;
  padding: 48px 96px;
}

#quicklinks .tns-ovh {
  width: 1056px;
  margin: 0 auto;
  max-width: 100%;
}
#quicklinks .tns-controls {
  left: -68px;
  right: -68px;
  top: 40%;
}
#quicklinks .tns-controls button {
  margin: 0;
}

#quicklinks .tiny-item {
  margin: 0;
}
#quicklinks .tiny-item:not(.tns-slide-active) {
  opacity: 0;
}

#quicklinks .tiny-carousel {
  display: flex;
  align-items: stretch;
  position: relative;
  z-index: 2;
}

.qlink-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.qlink {
  position: relative;
  text-decoration: none;
  display: flex;
  align-items: center;
  padding: 12px 24px;
  border-radius: 4px;
  background: transparent;
}
.qlink::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: #fffef7;
  border-radius: 4px;
}
.qlink:hover::before {
  background: var(--blue-light);
  opacity: 0.9;
}

.qlink-in {
  position: relative;
  z-index: 5;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  transition: all 0.4s;
}
.qlink .qlink-divider {
  flex-shrink: 0;
  width: 2px;
  height: 55px;
  background: var(--blue-dark);
  opacity: 0;
  transition: all 0.4s;
}
.qlink .qlink-icon {
  width: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qlink .qlink-icon img {
  width: 48px;
}
.qlink .qlink-title {
  text-transform: capitalize;
  color: var(--blue-dark);
  font-size: 20px;
  font-weight: 700;
  position: relative;
  z-index: 5;
  display: block;
  text-align: center;
  line-height: 1.5;
}
.qlink:hover {
  text-decoration: none;
  background: url("../images/quicklinks-bg.jpg") center no-repeat;
  background-size: cover;
}
.qlink:hover .qlink-icon img {
  filter: brightness(0) saturate(100%) invert(13%) sepia(20%) saturate(4193%)
    hue-rotate(194deg) brightness(92%) contrast(95%);
}

.qlink:hover .qlink-title {
  color: var(--blue-dark);
}
.qlink:hover .qlink-divider {
  opacity: 1;
}

/* News Section */
#homepage #news-section {
  padding: 144px 0 111px;
  position: relative;
}

#news-section .section-header {
  margin-bottom: 33px;
  background: linear-gradient(
      90deg,
      #fffef7 0%,
      rgba(255, 255, 255, 0) 50%,
      #fffef7 100%
    ),
    linear-gradient(180deg, #fffef7 0%, rgba(255, 255, 255, 0) 196.24%), #d8e7ff;
}

#news-section .tns-controls {
  top: 45.3%;
}
#news-section .tns-controls button {
  margin: 0;
}
#news-section .tns-controls button:not(:hover) img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(2%)
    hue-rotate(46deg) brightness(110%) contrast(101%);
}

body:not(#freeform) #news-in {
  margin-top: 28px;
}
body:not(#freeform) #news-list {
  position: relative;
  margin: 64px 0 63px;
}
body:not(#freeform) .news-banner {
  min-height: 373px;
  padding-bottom: 80.5%;
  border-radius: 8px;
  margin-bottom: 12px;
}
body:not(#freeform) .news-box {
  display: block;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0px 11px 9px -5px rgba(0, 0, 0, 0.08);
}
body:not(#freeform) .news-info {
  display: block;
  position: relative;
  padding: 17px 25px 17px;
  transition: all 0.4s;
  border-radius: 8px;
  background: url("../images/quicklinks-bg.jpg") center no-repeat;
  background-size: cover;
}
body:not(#freeform) .news-info::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--blue-dark);
  opacity: 0.9;
  border-radius: 8px;
  backdrop-filter: blur(6px);
}

body:not(#freeform) #news-list .tns-ovh {
  margin: 0 72px;
}

body:not(#freeform) .news-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  position: relative;
  z-index: 2;
  color: #fff;
}
body:not(#freeform) .news-date {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  background: rgba(255, 255, 255, 0.77);
  border-radius: 4px;
  margin: 16px 24px;
  display: inline-block;
  padding: 8px 12px;
  color: #000;
}

body:not(#freeform) #news-btns {
  flex-shrink: 0;
}
body:not(#freeform) .news-box:hover .news-info:before {
  background: var(--blue-light);
}
body:not(#freeform) .news-box:hover .news-title {
  color: var(--blue-dark);
}

#news-section .section-link {
  margin: 0 auto;
}

body:not(#freeform) .news-box:hover .news-info > *:not(.news-title) {
  color: var(--green-light);
}

/* Events Section */
#events-section {
  position: relative;
  padding: 144px 0 65px;
}
#events-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--blue-light);
  opacity: 90%;
}
#events-section .section-header {
  background: linear-gradient(
      90deg,
      #c2d7f2 0%,
      rgba(194, 215, 242, 0) 50%,
      #c2d7f2 100%
    ),
    linear-gradient(180deg, #c2d7f2 0%, #fffef7 196.24%), #d8e7ff;
}

#events-list {
  min-height: 435px;
  margin: 52px 0 41px;
}

/* News Section */
#newsletter-section {
  padding: 112px 0 216px;
  position: relative;
  background: var(--green-light);
}
#newsletter-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--blue-dark);
  opacity: 90%;
  z-index: 1;
}

#newsletter-section .newsletter-header {
  max-width: 835px;
  margin: 0 auto;
}
#newsletter-section .section-title {
  color: #fff;
  font-size: clamp(32px, 5vw, 48px);
  text-align: center;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
}
#newsletter-section .newsletter-desc {
  font-size: 18px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 32px;
  color: #fff;
}

.newsletter-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  gap: 12px;
}
.newsletter-buttons .section-link {
  padding: 12px 24px;
  background: #fff;
  color: var(--blue-dark);
}
.newsletter-buttons .section-link:hover {
  background: var(--blue-light);
  color: var(--blue-dark);
}

.newsletter-divider {
  width: 100%;
  height: 2px;
  background: var(--green-ultradark);
  margin: 32px 0 48px;
  margin: 64px 0;
}
.newsletter-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.newsletter-logo {
  flex: 1;
  max-width: 272px;
  min-width: 150px;
}
.newsletter-logo img {
  width: 100%;
}

/* footer-section */
.site-footer {
  position: relative;
  padding: 64px 0;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--blue-light);
  opacity: 92%;
}

#footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 47px;
  row-gap: 30px;
  justify-content: space-between;
  padding-bottom: 38px;
}
#footer-logo {
  display: block;
  width: 446px;
  max-width: 100%;
}
.footer-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--blue-dark);
  margin-bottom: 24px;
  font-family: "Biryani";
}
.footer-subtitle {
  color: #fff;
  display: block;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}
.site-footer #footer-socials {
  display: flex;
  justify-content: flex-start;
  gap: 8px;
  margin-top: 8px;
}
.site-footer #footer-socials .social-media-link {
  width: 24px;
}
.footer-top-left {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-top-right {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

#footer-bottom {
  padding: 32px 0 0;
  border-top: 1px solid var(--blue-dark);
}
#footer-bottom-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  row-gap: 20px;
  color: #fff;
}
#copyright {
  color: #00335e;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  text-decoration: none;
  text-transform: capitalize;
}
#privacy {
  color: #00335e;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  text-decoration: none;
  text-transform: capitalize;
}
.footer-links .footer-link {
  margin-bottom: 16px;
  color: #000 !important;
}

.footer-link.f-contact-link {
  margin: 0;
}

.footer-link {
  display: block;
  color: var(--blue-dark) !important;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  text-transform: capitalize;
}
.footer-link:hover {
  color: #00335e;
}

.footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-nav .f-nav-link {
  display: block;
  color: var(--blue-dark);
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
}
.footer-nav .f-nav-link:hover {
  color: #92a65f;
   text-decoration: underline;
}

#revize {
  color: var(--blue-dark);
  font-weight: 400;
  font-size: 14px;
}
#revize a {
  color: var(--green-light);
  font-weight: bold;
  text-decoration: none;
}
#revize #revize-login {
  font-weight: 400;
  color: #fff;
}

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

#inner

-----------------------------------------*/
#freeform {
  position: relative;
}
#freeform #main {
  position: relative;
  padding: 48px 0 264px;
}
#freeform aside {
  border-radius: 8px;
  padding: 0;
  background: url("../images/aside-bg.jpg") center no-repeat;
  background-size: cover;
  box-shadow: 0px 12px 16px -4px rgba(0, 0, 0, 0.08),
    0px 4px 6px -2px rgba(0, 0, 0, 0.03);
}
#freeform aside::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--blue-dark);
  opacity: 0.94;
  border-radius: 8px;
}

#freeform #slider {
  position: relative;
}
#freeform #slider > img {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: 1;
}
#freeform #slider {
  min-height: 384px;
  padding: 0;
  z-index: 10;
}

.inner-slider-caption {
  position: relative;
  z-index: 5;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 26px;
}

#flyout-wrap {
  color: var(--blue-dark);
  position: relative;
  padding: 26px 0 16px;
  width: 100%;
}
#inner-quicklinks {
  padding: 0 0 97px;
}

#flyout-header {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 25px;
  padding: 0 31px;
  font-family: "Biryani";
}
#flyout {
  padding: 0;
  margin: 0;
  padding: 0 24px;
}
#flyout > li {
  position: relative;
  margin: 0;
  list-style: none;
  padding: 0 0 0;
}
#flyout a,
#flyout span {
  display: block;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  line-height: 1.35;
  text-transform: capitalize;
}
#flyout ul {
  padding: 0;
  margin: 0;
  display: none;
  list-style: none;
}
#flyout ul a,
#flyout ul span {
  font-size: 14px;
  padding: 10px 15px;
  display: block;
}
#breadcrumbs {
  font-size: 14px;
  text-transform: capitalize;
}
#breadcrumbs a {
  text-decoration: none;
  font-weight: 400;
  color: #000;
}
#breadcrumbs a:after {
  content: "\f105";
  font-family: "FontAwesome";
  font-weight: 900;
  color: #000;
  margin: 0 15px 0 19px;
  font-size: 12px;
}
#breadcrumbs ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#breadcrumbs li {
  display: inline-block;
  margin: 0;
  padding: 0;
  font-weight: 700;
  color: var(--blue-dark);
}
.col-xs-12 {
  width: 100%;
}

.freeform__box {
  position: relative;
  padding: 24px;
  width: 100%;
  margin-left: 0px;
}
.freeform__box-header {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: capitalize;
  margin-bottom: 12px;
  color: #fff;
  font-family: "Biryani";
}
#contact-wrap {
  padding-bottom: 32px;
}
#contact-img {
  width: 164px;
  height: 164px;
  border-radius: 50%;
  margin: 0 0px 16px 0px;
}
#contact-name {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  line-height: 1.35;
  color: #fff;
}
#contact-position {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
}
#contact-info {
  margin: 26px 0 0 0;
  padding: 0;
  list-style: none;
}
#freeform .contact-text {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}
.freeform__box .contact-link {
  display: flex;
  align-items: center;
  color: #fff !important;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  line-height: 1.5;
  gap: 16px;
  margin-bottom: 16px;
}
.freeform__box .contact-link img {
  width: 24px;
}
.freeform__box .contact-link:hover {
  color: #1b1b1b;
}
#office-wrap {
  padding-bottom: 15px;
}
#office-hours {
  margin: 0;
  padding: 1px 0 0 0;
  list-style: none;
}
#office-hours > li {
  padding: 0 0 16px;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}
#office-hours .day {
  color: var(--primary-dark);
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
  width: 38px;
  margin-right: 13px;
}
#office-hours .time {
  color: #1a1a1a;
  font-weight: 400;
  font-size: 14px;
}
#social-wrap {
  padding: 35px 11px 38px 43px !important;
}
#resource-wrap {
  padding-bottom: 20px;
}
.resource-item {
  display: flex;
  align-items: center;
  text-decoration: none;
  background: var(--blue-light);
  border-radius: 8px;
  margin: 0 0 15px 0;
  padding: 8px 12px;
  color: var(--blue-dark) !important;
  font-size: 14px;
  font-weight: 400;
  text-transform: capitalize;
}
.resource-item-icon {
  margin: 0 10px 0 0;
  width: 24px;
}
.resource-item:hover {
  background: #3f86c7;
  text-decoration: none;
}

#socials-wrap .social-media-link {
  width: 32px;
  filter: brightness(0) saturate(100%) invert(98%) sepia(1%) saturate(116%)
    hue-rotate(245deg) brightness(119%) contrast(100%);
}
.social-media-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

#socials-wrap .social-media-link:hover{background:transparent}

.newsletter-signup {
  margin-top: 32px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 2px solid var(--blue-light);
  background: var(--blue-light);
  border-radius: 12px;
  text-decoration:none!important;
}
.newsletter-signup img {
  width: 32px;
}
.newsletter-signup .newsletter-title {
  color: var(--blue-dark);
  font-size: 14px;
  font-weight: 700;
  margin: 0;
}
.newsletter-signup .newsletter-text {
  color: var(--blue-dark);
  font-size: 14px;
  font-weight: 400;
  margin: 0;
}

#flyout li {
  margin: 0;
}
#entry {
  padding: 0 0 0 20px;
  margin: 0;
}
#freeform.fullwidth #entry {
  margin: 0;
}
#page-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  margin: 30px 0 9px;
  color: var(--blue-dark);
  text-transform: capitalize;
  font-family: "Biryani";
}

.spotlight-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.spotlight-box {
  display: flex;
  align-items: center;
  gap: 24px;
}
.spotlight-banner {
  flex: 1 0 144px;
  align-self: stretch;
  border-radius: 4px;
}
.spotlight-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.spotlight-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}
.spotlight-desc {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.spotlight-link {
  text-decoration: underline;
  font-size: 14px;
  font-weight: 400;
  color: #fff !important;
}

#post blockquote {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: var(--blue-dark);
  font-size: 24px;
  font-style: italic;
  font-weight: 400;
  position: relative;
  line-height: 1.5;
  margin: 32px 0;
  border-left: 2px solid var(--blue-dark);
  padding-left: 20px;
}

/* -----------------------------------------
#tiles
-----------------------------------------*/
.tiles-section {
  padding: 24px 0;
}
.tiles-section-title {
  color: #000;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  margin: 0;
  text-transform: capitalize;
  margin-bottom: 24px;
}
.tiles-section-desc {
  color: #000;
  margin-bottom: 24px;
}
.tiles-section-link {
  display: flex !important;
  align-items: center;
  gap: 12px;
  width: fit-content;
  margin: 24px auto 0;
}
.tiles-section-link img {
  width: 24px;
}

.tiles-section-link:hover img {
  filter: brightness(0) saturate(100%) invert(7%) sepia(4%) saturate(4153%)
    hue-rotate(71deg) brightness(92%) contrast(80%);
}

.tiles-list {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 24px;
}

.tile-wrap {
  position: relative;
  flex: 1 0 calc(33.333% - 24px);
  display: flex;
  align-items: flex-end;
  min-height: 260px;
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
}
.tile {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-decoration: none;
  background: var(--green-dark);
  padding: 10px 32px;
}

.tile-wrap:hover,
.tile-wrap:focus-within {
  text-decoration: none;
}
.tile-title {
  position: static;
  display: block;
  width: 100%;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  color: #fff;
  text-decoration: none;
  line-height: 1.4;
  z-index: 10;
}

.tile-wrap:hover .tile {
  height: 100%;
  background: var(--green-ultradark);
}
.tile-wrap:hover .tile-title,
.tile-wrap:focus-within .tile-title {
  background: none;
  backdrop-filter: none;
  box-shadow: none;
}

.tile-wrap:hover .tile {
  text-decoration: none;
}
.tile .tile-info {
  position: relative;
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  font-size: 16px;
  font-weight: 400;
  color: #5f5f5f;
  line-height: 1.5;
  z-index: 10;
  text-align: center;
  transition: all 0.4s;
}
.tile .tile-info-in {
  display: block;
  text-align: center;
  overflow: hidden;
}
.tile-wrap:hover .tile-info,
.tile-wrap:focus-within .tile-info {
  grid-template-rows: 1fr;
}
.tile .tile-info p {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
  margin: 0;
  padding: 16px 0;
}

.tile .tile-link {
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  text-decoration: underline;
  margin-top: 16px;
}
.tile .tile-link .arrow-forward {
  position: relative;
  width: 24px;
}

/* -----------------------------------------
#freeform Edit Buttons
-----------------------------------------*/
#freeform.user-logged-in aside .has-edit-buttons {
  min-height: 50px;
  z-index: 20 !important;
}
#freeform.user-not-logged-in .freeform__box:has(h2:empty) {
  display: none;
}
#freeform.user-logged-in .freeform__box:has(h2:empty) {
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  min-height: 33px;
  margin: -10px 0 15px !important;
}

#freeform:not(.user-logged-in)
  .freeform__box:has(.freeform__box-body[style="display: none;"]) {
  display: none;
}
#freeform:not(.user-logged-in)
  #flyout-wrap:has(#flyout[style="display: none;"]) {
  display: none;
}

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

#share widget

-----------------------------------------*/
/** modal **/
.modal {
  z-index: 100000;
}
.modal .modal-dialog {
  transition: transform cubic-bezier(0.86, 0, 0.07, 1);
  transform: scale(0.98) !important;
  opacity: 1 !important;
}
.modal.show .modal-dialog {
  transition: transform 0.3s cubic-bezier(0.86, 0, 0.07, 1);
  transform: translateY(0%) !important;
}
.modal-content {
  border-radius: 10px;
  overflow: hidden;
  border: 0;
}
.modal-header {
  background: #d2d2d2;
  border-radius: 10px 10px 0 0;
  font-size: 18px;
  line-height: 1.4;
}
.share-btns {
  display: flex;
  gap: 8px;
  justify-content: center;
}
.share-btns a {
  display: flex;
  text-decoration: none;
  border-radius: 100%;
  height: 44px;
  width: 44px;
  outline-offset: 0;
  outline: 2px solid transparent;
  transition: all 0.3s;
}
.share-btns svg {
  width: 16px;
  height: 16px;
  margin: auto;
  fill: #fff;
}
.btn-linkedin {
  background: #0077b5;
}
.btn-linkedin:hover {
  border-color: #0077b5;
  outline: 2px solid #0077b5;
  outline-offset: 2px;
}
.btn-facebook {
  background: #3b5998;
}
.btn-facebook:hover {
  border-color: #3b5998;
  outline: 2px solid #3b5998;
  outline-offset: 2px;
}
.btn-twitter {
  background: #000;
}
.btn-twitter:hover {
  border-color: #000;
  outline: 2px solid #000;
  outline-offset: 2px;
}
.btn-reddit {
  background: #ff5700;
}
.btn-reddit:hover {
  border-color: #ff5700;
  outline: 2px solid #ff5700;
  outline-offset: 2px;
}
.modal .btn {
  font-size: 16px !important;
  font-weight: bold !important;
  padding: 0.6rem 1.2rem !important;
  border: 0 !important;
  line-height: 1.4 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  color: #000 !important;
  border: 0 !important;
}
.modal .btn.p-0 {
  padding: 0 !important;
}
.modal .btn-inverse:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.25);
}
.floating-share-btn {
  position: fixed;
  z-index: 99999;
  top: 40%;
  width: 39px;
  height: 44px;
  right: 0;
  border-radius: 4px 0 0 4px;
  border: 2px solid #fff;
  border-right: 0;
  background: var(--brandcolor) !important;
  color: #fff !important;
  padding: 0 !important;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.floating-share-btn span {
  display: none;
  margin-top: 5px;
  text-transform: uppercase;
}
.floating-share-btn img {
  width: 18px;
}
.floating-share-btn:hover{background:var(--blue-light)!important;border-color:var(--blue-light)!important}
.floating-share-btn:hover img{filter:brightness(0) saturate(100%) invert(13%) sepia(88%) saturate(834%) hue-rotate(189deg) brightness(92%) contrast(98%)}
/* -----------------------------------------

#slider

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

#slider {
  position: relative;
  padding-bottom: 30%;
  z-index: 1;
}
#slider > .tns-outer {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
#freeform #slider {
  padding-bottom: 15%;
}

#homepage #slider {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0;
  padding-top: 53.6%;
  min-height: 610px;
}
.slider-logo {
  position: relative;
  z-index: 10;
  width: 200px;
  margin: 40px;
  margin-left: auto;
}

.slider-data {
  position: absolute;
  left: 0;
  right: 0;
  top: 31%;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.slider-data-in {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.slider-data-in .slider-caption {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.slider-data-in .slider-caption .sc-top {
  font-size: 25px;
  font-weight: 700;
  color: #fff;
  font-family: "Archivo Narrow";
}
.slider-data-in .slider-caption .sc-mid {
  font-size: clamp(100px, 27vw, 196px);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.71);
  font-family: "Biryani";
  line-height: 0.5;
}
.slider-data-in .slider-caption .sc-bottom {
  font-weight: 700;
  font-size: clamp(28px, 5vw, 45px);
  color: #fff;
  letter-spacing: clamp(18px, 5vw, 35px);
  font-family: "Archivo Narrow";
  margin-top: -19px;
}

#homepage #slider .tns-controls {
  display: none;
}
#homepage #slider .tns-nav {
  bottom: 156px;
  max-width: 1249px;
  display: flex;
  justify-content: flex-end;
  margin: 0 auto;
}

.tns-outer button[data-controls] {
  border: 0;
  padding: 0;
  background: var(--blue-dark);
  border: 0;
  width: 42px;
  height: 42px;
  border-radius: 4px;
  color: #fff;
  font-size: 18px;
  margin: 0 15px;
  position: relative;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
}
.tns-outer button[data-controls] img {
  width: 24px;
}
.tns-outer button[data-controls]:hover {
  background: var(--blue-light) !important;
}
.tns-outer button[data-controls]:hover img {
  filter: brightness(0) saturate(100%) invert(12%) sepia(39%) saturate(2431%)
    hue-rotate(197deg) brightness(93%) contrast(95%);
}

.tns-nav {
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 0;
  z-index: 1;
  text-align: center;
}
.tns-nav button {
  border: 0;
  background: #d8e7ff;
  padding: 0;
  width: 30px;
  height: 12px;
  border-radius: 4px;
  margin: 0 3px;
  border: 1px solid var(--blue-light);
}
.tns-nav button.tns-nav-active {
  background: var(--brandcolor);
}

.tiny-slider-wrap > .tns-outer,
.tiny-slider-wrap > .tns-outer > .tns-inner,
.tiny-slider-wrap > .tns-outer > .tns-inner > .tiny-slider,
.tiny-slider-wrap > .tns-outer > .tns-inner > .tiny-slider .tns-item,
.tns-bg-slide {
  height: 100%;
}
.tns-outer {
  position: relative;
}
.tns-controls {
  position: absolute;
  top: 46%;
  left: 0;
  right: 0;
}
.tns-controls button:last-of-type {
  float: right;
}
.tiny-slider-wrap button[data-action] {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}
ul.tiny-slider,
ul.tiny-carousel {
  padding: 0;
  margin: 0;
}

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

#media queries

-----------------------------------------*/
@media only screen and (max-width: 1300px) {
  .logo-wrap {
    width: 230px;
  }
  .site-header #nav > li > a:not(.toggle),
  .site-header #nav span:not(.toggle) {
    padding: 38px 10px;
  }
}
@media only screen and (max-width: 1200px) {
  .logo-wrap {
    width: clamp(150px, 10vw, 230px);
  }
}
@media only screen and (max-width: 1100px) {
  .site-header #nav > li > a:not(.toggle),
  .site-header #nav span:not(.toggle) {
    font-size: 14px;
  }
}
@media only screen and (min-width: 992px) {
  .site-header #nav .toggle,
  .site-header #nav .toggle2,
  #flyout .toggle {
    display: none;
  }

  .site-header #nav .toggle,
  .site-header #nav .toggle2 {
    padding: 0 !important;
  }
  .site-header #nav .focused .toggle,
  .site-header #nav .focused .toggle2,
  #flyout .focused .toggle {
    display: inline-block;
    margin-left: 8px;
  }

  #flyout .focused .toggle,
  .site-header #nav .focused .toggle2 {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
  #flyout .focused .toggle,
  #nav .focused .toggle2 {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    position: absolute;
    right: 15px;
    top: 0px;
  }

  #flyout ul {
    width: 100%;
    padding: 0;
  }
  #flyout > li:hover ul {
    display: block;
  }
  #flyout > li:hover > a,
  #flyout > li:hover > span {
    background: #fff;
  }

  #flyout > li:has(ul) > a::after,
  #flyout > li:has(ul) > span::after {
    content: "\f106";
    font-family: "fontawesome";
    margin-left: auto;
    font-size: 20px;
  }

  #flyout > li:has(ul):hover > a::after,
  #flyout > li:has(ul):hover > span::after {
    transform: rotate(180deg);
  }

  #flyout > li:hover > a:not(.fa),
  #flyout > li:hover > span {
    background: var(--blue-light);
    color: var(--blue-dark);
  }
  #flyout a,
  #flyout span {
    padding: 8px;
    border-radius: 4px;
    display: flex;
    align-items: center;
  }

  /* base nav styles  */
  .site-header #nav li:hover > ul {
    display: block;
  }
  .site-header #nav ul a:not(.fa),
  .site-header #nav ul span {
    display: block;
    color: #000;
  }

  .site-header #nav > li:hover > a:not(.toggle),
  .site-header #nav > li:hover > span {
    background: var(--blue-dark);
    color: #fff;
  }

  /* mega menu */
  #nav li.static:hover ul {
    display: block;
  }
  #nav > li > ul.make-mage {
    position: absolute;
    right: 0;
    left: 0;
    width: 1009px;
    max-width: calc(100% - 30px);
    /* top: 100%; */
    margin: 0 auto;
    display: none;
    max-height: 400px;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 9;
  }
  #nav > li .nav-in {
    -webkit-column-count: 4;
    -moz-column-count: 4;
    column-count: 4;
    padding: 30px 45px;
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.25);
    border-radius: 0 0 12px 12px;
    background: #fffef7;
    border-bottom: 6px solid var(--blue-dark);
    backdrop-filter: blur(2.5px);
  }
  #nav > li > ul.make-mage > li {
    display: inline-block;
    break-after: avoid;
    width: 100%;
    margin-bottom: 16px;
  }
  #nav li:hover > ul.make-mage ul {
    position: static;
    padding: 0;
    display: none;
  }

  /* hiding the menu scrollbar */
  #nav > li > ul::-webkit-scrollbar {
    display: none;
  }

  /* mega menu - First Level */
  #nav ul.make-mage a:not(.fa),
  #nav ul.make-mage span {
    color: var(--blue-dark);
    font-size: 18px;
    font-weight: 700;
    text-transform: capitalize;
    margin: 0 0 9px 0;
    line-height: 135%;
    display: block;
    padding: 0 !important;
  }
  #nav ul.make-mage a:not(.fa):hover,
  #nav ul.make-mage span:hover {
    text-decoration: underline;
  }

  /* mega menu - Second Level */
  #nav ul.make-mage ul a:not(.fa),
  #nav ul.make-mage ul span {
    display: block;
    padding: 0 0 6px 0;
    font-size: 14px;
    font-weight: 400;
    color: #000;
    line-height: 1.5;
    text-transform: capitalize;
  }
  #nav ul.make-mage ul a:not(.fa):hover,
  #nav ul.make-mage ul span:hover {
    text-decoration: underline;
  }
  #nav .make-mage .focused .toggle2 {
    display: block;
  }

  .layout-table {
    table-layout: fixed;
    width: 100%;
  }

  #nav .second-level a:first-child:hover, #nav .second-level span:hover{color:var(--blue-dark)}
}

@media only screen and (max-width: 991px) {
  /* rz form tables - without page scope this targets editforms and makes
  * editing confusing
  */
  .site-header .logo-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .site-header .toggle,
  .site-header .toggle2 {
    display: block;
    line-height: 45px;
    width: 45px;
    text-align: center;
    color: #fff;
    background: var(--gray);
    position: absolute !important;
    right: 0;
    top: 0;
  }
  .site-header .logo-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .site-header #nav {
    display: none;
  }
  .site-header #nav li {
    position: relative !important;
  }
  .site-header #nav a,
  .site-header #nav span {
    line-height: 1;
    font-size: 14px;
    padding: 15px;
    display: block;
    border-bottom: 1px solid var(--darkgray);
  }
  .site-header #nav ul {
    display: none;
  }

  #freeform #formwizziwmorf tr,
  #freeform #formwizziwmorf tr td {
    display: block !important;
  }

  #freeform #formwizziwmorf tr table tr {
    display: table-row !important;
  }

  #freeform #formwizziwmorf tr table td {
    display: table-cell !important;
  }

  #flyout-wrap {
    padding: 0;
    width: 100%;
  }

  #entry {
    padding: 40px 0;
  }
  .tile-wrap {
    flex: 1 1 calc(50% - 24px);
  }

  /* Allows tables to be used as columns with responsive stacking */
  .layout-table {
    width: 100% !important;
  }

  .layout-table,
  .layout-table thead,
  .layout-table tbody,
  .layout-table th,
  .layout-table td,
  .layout-table tr {
    display: block !important;
  }

  .layout-table td {
    margin-bottom: 15px;
  }

  #nav-toggle,
  #search-toggle {
    line-height: 45px;
    width: 45px;
    text-align: center;
    border-radius: 4px;
    background: var(--blue-dark);
    color: #fff;
    margin-left: 5px;
    cursor: pointer;
  }
  #search-toggle {
    display: none;
  }

  #flyout-toggle {
    padding: 0;
    padding: 15px;
    color: #fff;
  }
  #flyout-header {
    margin: 0;
    padding: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.15);
  }

  #nav,
  #flyout {
    display: none;
  }

  #nav li {
    display: block;
  }

  #nav a,
  #nav span,
  #flyout a,
  #flyout span {
    font-size: 14px !important;
    line-height: 1 !important;
    padding: 15px !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  }

  #nav li:last-child > a,
  #nav li:last-child > span,
  #flyout li:last-child > a,
  #flyout li:last-child > span {
    border: 0;
  }

  #nav ul,
  #flyout ul {
    background: rgba(0, 0, 0, 0.15);
  }

  .toggle,
  .toggle2 {
    display: block;
    position: absolute !important;
    right: 0;
    top: 0;
    line-height: 45px;
    text-align: center;
    width: 45px;
    background: rgba(0, 0, 0, 0.15);
    transform: none !important;
  }

  /* custom styles */
  body .h-top-in {
    padding: 7px 0 !important;
  }
  .h-top {
    display: none;
  }
  .h-bottom-in {
    display: block;
    padding: 10px 0;
  }
  .site-header .logo-wrap {
    width: 100% !important;
  }
  .h-bottom-right {
    margin: 10px 0 0 0;
    display: none;
  }

  #logo {
    position: relative;
    width: 200px;
    margin: 0 !important;
  }

  .slider-data {
    top: 18%;
  }

  .quicklinks-in {
    padding: 48px 60px;
  }
  #quicklinks .tns-controls {
    left: -50px;
    right: -50px;
  }

  #homepage #news-section {
    padding: 71px 0 111px;
  }
  body:not(#freeform) #news-list .tns-ovh {
    margin: 0 37px;
  }

  .tns-outer button[data-controls] {
    width: 30px;
    height: 30px;
  }
  .tns-outer button[data-controls] img {
    width: 16px;
  }

  #footer-logo {
    width: auto;
    max-width: 400px;
  }
}

/* All Mobile Sizes (devices and browser) */
@media only screen and (max-width: 767px) {
  .floating-alert {
    width: auto;
    right: 10px;
    left: 10px;
  }
  .floating-alert {
    font-size: 12px;
  }
  .floating-alert h4 {
    margin-bottom: 10px;
    font-size: 14px;
  }
  .floating-alert .btn {
    font-size: 10px;
  }
  .share-btns a {
    padding: 10px;
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
  }
  .share-btns i {
    display: block;
    line-height: 50px !important;
    font-size: 20px;
  }
}
@media only screen and (max-width: 600px) {
  .tile-wrap {
    flex: 1 1 100%;
  }
}

/* Mobile Landscape Size to Tablet Portrait (devices and browsers) */
@media only screen and (min-width: 480px) and (max-width: 767px) {
}

/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
@media only screen and (max-width: 479px) {
}

@media print {
  #slider,
  footer,
  #breadcrumbs,
  #flyout-wrap,
  .floating-share-btn,
  .e-notify,
  .site-header {
    display: none !important;
  }

  a[href]:after {
    content: none !important;
  }
}
