@charset "UTF-8";
:root {
    --color-primary-bg:var(--color1);
    --color-light-txt:var(--color1);
    --color-dark-txt:var(--color6);
    --color-a:rgb(129 0 0);
    --color0:#fff;
    --color1:#ebf0ff;
    --color2:#b9c7e9;
    --color3:#8298cd;
    --color4:#3c5799;
    --color5:#00407d;
    --color6:#0a193d;
    --color7:#040d24;
    --logo-h: 200px;
    --logo-scrolled-h: 110px;
    --topbar-height: 40px;
    --topbar-px: 10px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
.color0, .color0 a{
	color:var(--color0);
}
.bg0{
	background-color:var(--color0);
}

.color1, .color1 a{
	color:var(--color1);
}
.bg1{
	background-color:var(--color1);
}

.color2, .color2 a{
	color:var(--color2);
}
.bg2{
	background-color:var(--color2);
}

.color3, .color3 a{
	color:var(--color3);
}
.bg3{
	background-color:var(--color3);
}

.color4, .color4 a{
	color:var(--color4);
}
.bg4{
	background-color:var(--color4);
}

.color5, .color5 a{
	color:var(--color5);
}
.bg5{
	background-color:var(--color5);
}

.color6, .color6 a{
	color:var(--color6);
}
.bg6{
	background-color:var(--color6);
}
.color7, .color7 a{
	color:var(--color7);
}
.bg7{
	background-color:var(--color7);
}

/* Base utility: uses a variable */
.vh {
  height: calc(var(--vh, 100) * 1vh) !important;
  height: calc(var(--vh, 100) * 1dvh) !important; /* better on mobile */
}

/* FR View overrides */
.fr-view a {
    color: var(--color-a);
}
.fr-view a:hover {
    filter: brightness(.55);
}
.fr-view table td, .fr-view table th {
    border: none !important;
}
.fr-view .fr-file::after {
    content: " ";
}

.phone a{
    font-weight: 800;
    text-decoration: none;
}
.phone a:hover{
    text-decoration: underline;
}
/* Breakpoint overrides (Bootstrap 5 defaults) */
@media (min-width: 576px) {  /* sm */
  .vh-sm { height: calc(var(--vh-sm, var(--vh, 100)) * 1vh) !important; height: calc(var(--vh-sm, var(--vh, 100)) * 1dvh) !important; }
}
@media (min-width: 768px) {  /* md */
  .vh-md { height: calc(var(--vh-md, var(--vh-sm, var(--vh, 100))) * 1vh) !important; height: calc(var(--vh-md, var(--vh-sm, var(--vh, 100))) * 1dvh) !important; }
}
@media (min-width: 992px) {  /* lg */
  .vh-lg { height: calc(var(--vh-lg, var(--vh-md, var(--vh-sm, var(--vh, 100)))) * 1vh) !important; height: calc(var(--vh-lg, var(--vh-md, var(--vh-sm, var(--vh, 100)))) * 1dvh) !important; }
}
@media (min-width: 1200px) { /* xl */
  .vh-xl { height: calc(var(--vh-xl, var(--vh-lg, var(--vh-md, var(--vh-sm, var(--vh, 100))))) * 1vh) !important; height: calc(var(--vh-xl, var(--vh-lg, var(--vh-md, var(--vh-sm, var(--vh, 100))))) * 1dvh) !important; }
}
@media (min-width: 1400px) { /* xxl */
  .vh-xxl { height: calc(var(--vh-xxl, var(--vh-xl, var(--vh-lg, var(--vh-md, var(--vh-sm, var(--vh, 100)))))) * 1vh) !important; height: calc(var(--vh-xxl, var(--vh-xl, var(--vh-lg, var(--vh-md, var(--vh-sm, var(--vh, 100)))))) * 1dvh) !important; }
}

/* Body */
@font-face {
    font-family: "OpenSans";
    font-display: swap;
    src: url("../fonts/OpenSans.woff2") format("woff2");
}

@font-face {
    font-family: "Inter";
    font-display: swap;
    src: url("../fonts/Inter.woff2") format("woff2");
}

@font-face {
    font-family: "Andika";
    font-display: swap;
    src: url("../fonts/Andika.woff2") format("woff2");
}

@font-face {
    font-family: "FSMe";
    font-display: swap;
    src: url("../fonts/FSMe.woff2") format("woff2");
}

@font-face {
    font-family: "Tiresias";
    font-display: swap;
    src: url("../fonts/Tiresias.woff2") format("woff2");
}

@font-face {
    font-family: "OpenDyslexic";
    font-display: swap;
    src: url("../fonts/OpenDyslexic3.woff2") format("woff2");
}

@media (min-width: 992px) {
    .scrolled #lab-logo img {
        padding: 5px;
        content: url(../../assets/images/logo-short.svg);
    }
    .sticky-bar #lab-logo-nav {
    position: fixed;
    display: block;
    width: 100%;
    top: 0;
    right: 0;
    left: 0;
    z-index: 50;
    -webkit-transition: background 0.15s linear;
    transition: background 0.15s linear;
    }
    
    /* Only apply hover on larger screens (desktops) */
    .menu-item.dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0; /* Prevents a gap that might close the menu when moving mouse */
    }
    .topbar{
        height: var(--topbar-height);
    }
    ul.navbar-nav > li > a {
        height: 100%;
        font-size: 14px;
        font-weight:600;
        text-transform: uppercase;
        line-height: 100px;
        position: relative;
    }
    ul.navbar-nav > li > a:hover {
        color: #ffa238;
    }  
    .dropdown-menu a:focus, .dropdown-menu a:hover{
        color:#750000;
    }
    .dropdown-item {
        font-size: .85rem;
        font-weight: 600;
        text-transform: uppercase;
    }
    ul.dropdown-menu {
        box-shadow: 1px 1px 12px -3px #999;
    }
/*    
    ul.navbar-nav > li:last-child > a {
        border-right: 1px solid white;
        border-image-source: linear-gradient(#fff, #00407c);
        border-image-slice: 1;
    }
    ul.navbar-nav > li > a {
        border-left: 1px solid white;
        border-image-source: linear-gradient(#fff, #00407c);
        border-image-slice: 1;
    }  
    */
    
    .nav-link:focus-visible {
        outline: 2px dotted #f00;
        box-shadow:none;
    }    
    .navbar-nav .nav-link{
        color: #fff;
    }    
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 20px;
        padding-left: 20px;
    }
    .navbar-nav .nav-link.show
    {
        color: #fff;
    }
    .dropdown-menu.show
    {
        border-top: solid 3px #ffa300;
    }
    #lab-logo-nav #lab-logo img  {
       height: var(--logo-h);
    }
    .scrolled  #lab-logo-nav #lab-logo img {
       height: var(--logo-scrolled-h);
    }
    .sticky-bar #lab-header:not(.top-bar-over-header) {
        padding-top:  calc(var(--logo-h) + var(--topbar-height));
    }
     .sticky-bar.scrolled #lab-header:not(.top-bar-over-header) {
        padding-top:  calc(var(--logo-scrolled-h) + var(--topbar-height));
    }    

}

html {
    font-size: 16px;
    height: 100%;
}

body {
    color: #000;
    font-family: OpenSans;
    background-color: #fff;
    line-height: 1.7;
}

body.fontfamily_inter {
    font-family: Inter;
}

body.fontfamily_andika {
    font-family: Andika;
}

body.fontfamily_fsme {
    font-family: FSMe;
}

body.fontfamily_tiresias {
    font-family: Tiresias;
}

body.fontfamily_opendyslexic {
    font-family: OpenDyslexic;
}

footer,
header,
nav,
section,
figcaption,
figure {
    display: block;
}

h1 {
    font-size: 2.1em;
    margin: 0.67em 0;
    font-weight: 600;
}

figure {
    margin: 1em 40px;
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

a:hover,
a:active,
a:focus {
    outline: 0;
    text-decoration: underline;
}

strong {
    font-weight: inherit;
}

strong {
    font-weight: 600;
}

img {
    border-style: none;
}

svg {
    height: 20px;
    width: auto;
}

svg:not(:root) {
    overflow: hidden;
}

button,
input,
textarea {
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
}

button,
input {
    overflow: visible;
}

button {
    text-transform: none;
}

button,
[type="submit"] {
    -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

button:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
}

textarea {
    overflow: auto;
}

ul {
    list-style: none;
    padding-left: 0;
}

h1,
h2,
h3,
.close {
    line-height: 1.7;
    color: #7d0000;
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

[role="button"] {
    cursor: pointer;
}

#settings_close svg {
    height: 70%;
}

/* Your VH utility should already set height via --vh / --vh-sm / etc */
.hero {
  background: #f4f7fc; /* fallback color while image loads */
  overflow: hidden;    /* important for cropping */
}

/* Background image that behaves like object-fit: cover */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../images/Hero-Image.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.02); /* tiny scale helps avoid edge gaps */
}

/* Overlay for text contrast */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0, 0, 0, 0.55),
    rgba(0, 0, 0, 0.35)
  );
}

/* Keep content above background/overlay */
.hero-content {
  z-index: 1;
  color: #fff;
}

/* Optional: improve focus visibility on button if you want */
.hero-content .btn:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

/* Accessibility */
body a:focus,
body input[type="text"]:focus,
body input[type="submit"]:focus,
body textarea:focus,
body *:focus {
    outline: 2px dotted #f00;
    outline-offset: 0;
}

.block_settings {
    box-shadow: 3px 3px 10px -5px #444;
}

.open-accessibility button .lab-only {
    font-weight: normal;
    padding: 5px;
}

.open-accessibility button .lab-only:hover {
    text-decoration: underline;
}

.button,
button,
input[type="submit"] {
    display: inline-block;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    height: auto;
    line-height: 1.5;
    border: none;
    background: #000;
    font-family: inherit;
    font-weight: inherit;
    padding: 15px 60px;
    color: #fff;
    text-transform: none;
    border-radius: 24px;
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}

.button:hover,
button:hover,
input[type="submit"]:hover,
.button:focus,
button:focus,
input[type="submit"]:focus {
    text-decoration: none;
    color: #fff;
    background: #e5e5e5;
}

.button:active,
button:active,
input[type="submit"]:active {
    outline: 0;
}

.footer-dark .call-to-action-button .wm-button:hover {
    background-color: #fff;
}

.footer-light input[type="submit"] {
    background: #fff;
    color: #000;
}

.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1320px;
  }
}


#lab-main .lab-wcag-settings {
    padding: 0 15px;
    display: block;
    width: 100%;
}

#lab-main .lab-wcag-settings>li {
    clear: both;
    margin-top: 30px;
    font-weight: bold;
    float: left;
    width: 100%;
}

#lab-main .lab-wcag-settings>li:first-child {
    margin: 0;
}

#lab-main .lab-wcag-settings ul>li {
    width: 50%;
    float: left;
}

.open-accessibility,
#lab-main .lab-wcag-settings li button {
    position: relative;
    background: #fff;
    color: #161616;
    padding-top: 30px;
    padding-bottom: 30px;
}

#lab-main .lab-wcag-settings li button {
    display: contents;
    vertical-align: baseline;
    padding: 3px 7px;
    text-decoration: none;
    border: none;
    margin: 0;
    border-radius: 0;
}

#lab-main .lab-wcag-settings li button:hover,
#lab-main .lab-wcag-settings li button:focus {
    background: #000;
}

.block-settings-wrapper {
    position: fixed;
    left: -403px;
    top: 17%;
    width: 400px;
    z-index: 70;
    -moz-transition: left 0.4s;
    -webkit-transition: left 0.4s;
    transition: left 0.4s;
}

.block-settings-wrapper #settings_close {
    width: 50px;
    height: 50px;
    display: block;
    position: absolute;
    right: -50px;
    top: 15%;
    background-repeat: no-repeat;
    border-radius: 0 2px 2px 0;
    font-size: 30px;
    background-color: #000;
    color: white;
    text-align: center;
    padding: 4px;
    cursor: pointer;
    box-shadow: 5px 5px 25px -5px #444;
}

#settings_close svg {
    vertical-align: baseline;
}

.block-settings-wrapper section {
    display: block;
    clear: both;
    padding: 15px 12px 15px 15px;
    height: 199px;
}

.opened-settings .block-settings-wrapper {
    left: 0;
}

body.font-readable button .lab-only {
    letter-spacing: 1px;
}

body.font-readable {
    letter-spacing: 0.12em;
    word-spacing: 0.16em;
}

body.font-readable .button,
body.font-readable button,
body.font-readable input[type="submit"],
body.font-readable input[type="button"],
body.font-readable input[type="reset"],
body.font-readable .page-header>h1,
body.font-readable .page-header>h2,
body.font-readable .page-header>h3,
body.font-readable .page-header>h4,
body.font-readable .page-header>h5,
body.font-readable .page-header>h6,
body.font-readable .page-header>p {
    letter-spacing: 0.12em;
    word-spacing: 0.16em;
}

body.link-underline a,
body.link-underline a * {
    text-decoration: underline !important;
}

body.link-underline a svg {
    border-bottom: 1px solid #000 !important;
}

/* Font Size */
.fsize70,
.fsize70 #lab-main .lab-wcag-settings,
.fsize70 .menu ul li a,
.fsize70 #lab-logo-nav .lab-main-menu .nav-menu>.menu-item>a,
.fsize70 select,
.fsize70 textarea,
.fsize70 input,
.fsize70 button,
.fsize70 .btn,
.fsize70 .button {
    font-size: 11px;
}

.fsize80,
.fsize80 #lab-main .lab-wcag-settings,
.fsize80 .menu ul li a,
.fsize80 #lab-logo-nav .lab-main-menu .nav-menu>.menu-item>a,
.fsize80 select,
.fsize80 textarea,
.fsize80 input,
.fsize80 button,
.fsize80 .btn,
.fsize80 .button {
    font-size: 13px;
}

.fsize90,
.fsize90 #lab-main .lab-wcag-settings,
.fsize90 .menu ul li a,
.fsize90 #lab-logo-nav .lab-main-menu .nav-menu>.menu-item>a,
.fsize90 select,
.fsize90 textarea,
.fsize90 input,
.fsize90 button,
.fsize90 .btn,
.fsize90 .button {
    font-size: 15px;
}

.fsize110,
.fsize110 #lab-main .lab-wcag-settings,
.fsize110 .menu ul li a,
.fsize110 #lab-logo-nav .lab-main-menu .nav-menu>.menu-item>a,
.fsize110 select,
.fsize110 textarea,
.fsize110 input,
.fsize110 button,
.fsize110 .btn,
.fsize110 .button {
    font-size: 18px;
}

.fsize120,
.fsize120 #lab-main .lab-wcag-settings,
.fsize120 .menu ul li a,
.fsize120 #lab-logo-nav .lab-main-menu .nav-menu>.menu-item>a,
.fsize120 select,
.fsize120 textarea,
.fsize120 input,
.fsize120 button,
.fsize120 .btn,
.fsize120 .button {
    font-size: 19px;
}

.fsize130,
.fsize130 #lab-main .lab-wcag-settings,
.fsize130 .menu ul li a,
.fsize130 #lab-logo-nav .lab-main-menu .nav-menu>.menu-item>a,
.fsize130 select,
.fsize130 textarea,
.fsize130 input,
.fsize130 button,
.fsize130 .btn,
.fsize130 .button {
    font-size: 21px;
}

/* Skip menu */
.lab-skip-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: auto;
    z-index: 999999;
}

.lab-skip-menu ul.menu {
    margin: 0;
}

.lab-skip-menu ul.menu>li {
    padding: 0;
    margin: 0;
}

.lab-skip-menu ul.menu>li>a:before {
    display: none;
}

.lab-skip-menu ul.menu>li>a {
    color: #fff;
    background: #000;
    position: absolute;
    top: 0;
    left: -9999px;
    right: auto;
    white-space: nowrap;
    padding: 10px;
    border: none;
    line-height: 1.5;
}

.lab-skip-menu ul.menu>li>a:focus {
    left: 0;
}

.lab-skip-menu ul.menu>li>a:hover,
.lab-skip-menu ul.menu>li>a:focus {
    color: #000;
    background: #fff;
}

/* header */
#lab-main {
    position: relative;
    background: #fff;
}

#lab-header {
    background-color: #fff;
    color: #161616;
    position: relative;
}

#lab-header.header-full .lab-widget {
    padding: 0;
    margin: 0;
}

#lab-header.header-full #lab-offcanvas .lab-widget {
    padding: auto 15px;
}

#lab-header .lab-widget {
    margin: 90px auto;
}


/* Logo */
#lab-logo-nav {
    color: #000;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}


.topbar-mode-default #lab-logo-nav {
    background: #fff;
    background-image: url(../../assets/images/tn-flag.jpg);
    background-size: cover;
    background-position: bottom;
    border-bottom: solid 2px #fff;
}

.topbar-shadow-default #lab-logo-nav {
    box-shadow: 0px 2px 15px rgb(0 0 0);
    padding-top: 0px;
}

#lab-logo-nav .lab-main-menu .nav-menu {
    margin: 0;
    padding: 0;
}

#lab-logo-nav .lab-main-menu .nav-menu>.menu-item {
    float: left;
    position: relative;
    border: 1px dashed transparent;
}

#lab-logo-nav .lab-main-menu .nav-menu>.menu-item:last-child {
    margin-right: 0;
}

#lab-logo-nav .lab-main-menu .nav-menu>.menu-item>a {
    display: block;
    position: relative;
    padding: 24px 10px;
    line-height: 1.5;
    color: #161616;
    font-weight: 400;
    font-style: normal;
    text-transform: capitalize;
    text-decoration: none;
    border-radius: 5px;
}

#lab-logo-nav .lab-main-menu .nav-menu>.menu-item:hover,
#lab-logo-nav .lab-main-menu .nav-menu>.menu-item a:focus {
    background-color: #f8f8f8;
}

.topbar{
    color: var(--color1); 
    background-color: #000;
}
.topbar .lab-container{
        height: 100%;
}
.icon-scp-top svg {
    color: var(--color1); 
    background-color: var(--color5);
}
.topbar ul{
}
.topbar ul li:last-child {
    border-right: 1px solid #424242;
}
.topbar ul li {
    display: table-cell;
    height: 100%;
    vertical-align: middle;
    border-left: 1px solid #424242;
    padding: 0 var(--topbar-px);
    align-content: center;
}
.scrolled .topbar {
    display: none;
}
.topbar-col ul li:last-child {
        border-right: 1px solid #424242;
    }
.header {
    padding: 30px 0;
}
.scrolled .header {
    padding: 0;
}
.scrolled #lab-logo-nav {
    padding-top: 0px;
}
.scrolled #lab-logo-nav .lab-container {
    padding: 0px;
    margin-top: 0px;
    margin-bottom: 0px;
}
.navbar {
    padding: 0;
}
.navbar-toggler{
    margin-right: 20px;
    background-color: #fff;
}

#lab-bar-left {
    float: left;
}


#lab-bar-left #lab-logo a {
    display: block;
    position: relative;
}

/* Container */
.lab-container {
    max-width: 1280px;
    padding-bottom: 30px;
    margin: auto;
}

.inside-container {
    padding: 5em;
}

.lab-container:before,
.lab-container:after {
    content: " ";
    display: table;
}

.lab-container:after {
    clear: both;
}

/* Row 1 */
.icon-scp-top-left {
    float: left;
    padding-left: 25px;
    height: 100%;
    align-content: center;
}

.ml-auto.icon-scp-top {
    float: right;
    height: 100%;
}

.ml-auto.icon-scp-top a:hover {
    cursor: pointer;
	fill: #F4D03F;
}

#lab-bar-right {
    float: right;
}

#menu-side-menu a:hover {
	background-color: transparent;
}

.sticky-bar.scrolled #lab-main #lab-wcag .icon-scp-top,
.sticky-bar.scrolled #lab-main #lab-wcag .icon-scp-top-left {
    display: none;
}

/* Menu */
#lab-main-menu {
    float: left;
    position: relative;
    z-index: 5;
}

.lab-main-menu {
    float: left;
}

.menu li {
    display: block;
    position: relative;
}

.menu li a {
    display: block;
    color: inherit;
    line-height: 20px;
    padding: 5px 0;
    text-decoration: none;
}

.menu li a:hover,
.menu li a:focus {
    color: #000;
}

.menu>li {
    padding: 15px auto;
    border-top: 1px solid #ededed;
}

.menu>li:first-child {
    border-top: none;
    padding-top: 0;
}

.menu>li:last-child {
    padding-bottom: 0;
}

.menu>li>a {
    padding: 0 0 0 30px;
    position: relative;
}

.menu>li>a:before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    right: auto;
    width: 8px;
    height: 8px;
    border: 1px solid #000;
    border-radius: 100%;
    margin-right: 22px;
}

/* Off-Canvas Menu */
#lab-offcanvas-button {
    float: left;
    margin: 24px 0 24px 30px;
}

#lab-main .lab-offcanvas-menu {
    text-align: center;
}

.lab-offcanvas-menu .nav-menu .menu-item {
    width: 270px !important;
}

#lab-main .lab-offcanvas-menu>ul,
#lab-main .lab-offcanvas-menu .menu-item {
    margin: 0;
    padding: 0;
}

#lab-main .lab-offcanvas-menu .menu-item {
    text-align: left;
}

#lab-main .lab-offcanvas-menu .menu-item a {
    display: block;
    padding: 5px 0;
    line-height: 1.5;
}

#lab-main .lab-offcanvas-menu .menu-item a:hover {
    color: #000;
    text-decoration: none;
}

#lab-main .lab-offcanvas-menu .menu-item a:focus-within {
    color: #000;
    text-decoration: none;
}

#lab-main .lab-offcanvas-menu .menu-item.current-menu-item>a {
    color: #000;
}

#lab-main .lab-offcanvas-menu .nav-menu>.menu-item>a {
    padding: 20px 0;
}

#lab-main .lab-offcanvas-menu .nav-menu>.menu-item+.menu-item {
    border-top: 1px solid rgba(102, 102, 102, 0.2);
}

.menu-standard #lab-offcanvas-button,
.menu-standard #lab-offcanvas .lab-offcanvas-menu {
    display: none;
}

.call-to-action-button {
    text-align: center;
    margin-top: 35px;
}

.call-to-action-button .wm-button {
    background-color: #000;
    color: #fff;
}

.size-large {
    border-radius: 10px;
    padding: 25px 50px;
    display: block;
}

#lab-offcanvas {
    position: fixed;
    height: 100%;
    width: 300px;
    max-width: 100%;
    top: 0;
    z-index: 900;
    overflow: hidden;
}

#lab-offcanvas #lab-offcanvas-content .lab-widget {
    margin: 0 auto 30px auto;
}

#lab-offcanvas.off-canvas-right {
    -webkit-transition: right 300ms ease-in-out;
    transition: right 300ms ease-in-out;
    right: -300px;
    left: auto;
}

#lab-offcanvas {
    color: #666;
    background: #f6f6f6;
}

#lab-offcanvas-toolbar {
    padding: 15px;
}

#lab-offcanvas .toggle-nav.close {
    cursor: pointer;
    display: inline-block;
}

#lab-offcanvas-content {
    padding: 15px;
}

#lab-main .toggle-nav.open {
    cursor: pointer;
    display: block;
    color: #161616;
    line-height: 1.5;
    height: 20px;
    text-align: center;
}

#lab-main .toggle-nav.open:hover,
#lab-main .toggle-nav.open:focus {
    color: #000;
}

/* Side Navigation */
.sidenav {
    background-color: #fff;
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 5;
    top: 0;
    left: auto;
    right: 0;
    overflow: hidden;
    transition: 0.5s;
    padding-top: 60px;
    box-shadow: -1px 0 5px -2px #666;
    text-align: center;
	display: none;
}

.sidemenu-logo {
    margin: 50px 0;
    display: inline-block;
}

#sidemenu-logo a:hover {
    background-color: transparent;
}

.sidenav a {
    text-decoration: none;
    color: #161616;
    transition: 0.3s;
    text-align: center;
}

.menu-item:hover {
    text-decoration: underline;
}

.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
}

#closebtn:hover {
    background-color: transparent;
}

#off-canvas-btn {
    font-size: 20px;
    float: right;
    cursor: pointer;
}

/* Breadcrumb */

#lab-offcanvas-button {
    margin-left: 10px;
}

/* Section */
.section-bg {
    background-color: #f4f7fc;
}

.row-pad {
    padding: 35px;
}

.our-spec h3 {
    text-align: center;
    font-weight: 600;
    margin-bottom: 25px;
    max-height: 70px;
    line-height: 1.5;
}

.our-spec p {
    text-align: center;
    min-height: 84px;
}

.our-spec svg {
    width: 208px;
    height: 208px;
    padding: 25px;
    margin: 25px;
    border-radius: 15px;
}

.our-spec svg:hover {
    border: 1px solid;
}

#portfolios .mix {
    padding: 0;
}

#portfolios .portfolio-item {
    padding: 10px;
}

.controls {
    text-align: center;
    padding-top: 50px;
    padding-bottom: 100px;
}

.controls .active {
    color: #373737;
    border-color: #373737;
    background: transparent;
}

.controls .btn.active {
    background-color: #fff;
    color: #373737;
}

.controls .btn:focus {
    outline: 2px dotted #f00;
    outline-offset: 0;
}

.controls .btn {
    text-align: center;
    text-decoration: none;
    color: #fff;
    border: 1px solid #373737;
    padding: 15px 60px;
    border-radius: 24px;
    margin-top: 5px;
}

.controls:hover {
    color: #fff;
    cursor: pointer;
}

.btn-common {
    background-color: #373737;
    position: relative;
    z-index: 1;
    padding: 12px 32px;
    border-radius: 30px;
}

.btn-common:hover {
    color: #000000ff;
}

.shot-item {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.shot-item img {
    width: 100%;
    height: 100%;
    -webkit-transition-duration: 4000ms;
    -o-transition-duration: 4000ms;
    transition-duration: 4000ms;
}

.shot-item .single-content {
    background-color: rgba(22, 26, 39, 0.7);
    opacity: 1;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    -webkit-transition-duration: 500ms;
    -o-transition-duration: 500ms;
    transition-duration: 500ms;
    width: 100%;
}

.shot-item .single-content .fancy-table {
    display: table;
    height: 100%;
    left: 0;
    top: 0;
    position: relative;
    width: 100%;
    z-index: 2;
}

.shot-item .single-content .fancy-table {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

.shot-item:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.shot-item:hover .single-content {
    opacity: 1;
    background-color: rgba(22, 26, 39, 0.3);
}

.offcanvas-butns {
    padding: 10px 0;
}

.our-header h2 {
    text-transform: capitalize;
    text-decoration: none;
    font-size: 60px;
    text-align: center;
    line-height: 1.7;
    padding-bottom: 60px;
}

/* Team Section */
.team {
    text-align: center;
}

.section {
    padding: 0;
}

.team .team-item {
    text-align: left;
    margin-bottom: 30px;
}

.team .team-item figure {
    position: relative;
    overflow: hidden;
}

img {
    max-width: 100%;
}

.team .team-item figure figcaption {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background: rgba(0, 0, 0, 0.6);
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.team .team-item figure figcaption .info {
    position: absolute;
    color: #fff;
    float: left;
    bottom: 10px;
    left: 20px;
    margin-left: -80px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.team .team-item figure:hover figcaption {
    opacity: 1;
}

.team .team-item figure:focus figcaption,
.team .team-item figure figcaption:focus-within {
    opacity: 1;
}


.team .team-item figure:hover figcaption .info {
    margin-left: 0;
}

.team .team-item figure figcaption .info h3 {
    font-size: 16px;
}

.team .team-item figure figcaption .info p {
    color: #fff;
    font-size: 14px;
    margin-bottom: 180px;
}

.team .team-item figure:hover figcaption .social {
    margin-bottom: 0;
}

.team .team-item figure:hover figcaption .social a:hover {
    text-decoration: none;
    cursor: pointer;
	background-color: #000;
	fill: #F4D03F;
}

.team .team-item figure:focus figcaption .social,
.team .team-item figure:focus-within figcaption .social {
    margin-bottom: 0;
}

.team .team-item figure figcaption .social {
    position: absolute;
    float: right;
    bottom: 28px;
    margin-bottom: -80px;
    right: 20px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.team .team-item figure figcaption .social a {
    color: #fff;
    font-size: 15px;
    width: 36px;
    height: 36px;
    background: #fff;
    display: inline-block;
    text-align: center;
    line-height: 36px;
    border-radius: 2px;
    margin: 4px;
}

/* Contact */
.aligncenter,
div.aligncenter {
    display: block;
    margin: auto;
}

.contact-bg {
    background-repeat: no-repeat;
    background-size: cover;
}

.contact-con {
    margin-right: 1em;
}

.contact-con p {
    padding: 25px 0;
    font-weight: 400;
}

.contact-con h2,
.author span {
    font-weight: 400;
    text-transform: capitalize;
}

.contact {
    font-weight: 400;
    padding: 15px 40px;
    border-radius: 8px;
    color: #161616;
}

.contact:hover {
    text-decoration: none;
}

.img-box {
    width: 90px !important;
    max-height: 90px;
    border-radius: 50%;
    margin: auto;
}

.all-testimonial {
    padding: 30px 0;
    border: 1px solid #ececec;
}

.testimonial {
    text-align: center;
    padding-left: 50px;
    padding-right: 50px;
}

.stars-icon svg {
    fill: #FFFFFF;
}

.author {
    text-align: center;
    padding: 30px;
}

.author p {
    font-weight: 400;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
}

/* News */
.lab-part-content {
    padding: 35px;
    background-color: #000;
    color: #fff;
    margin: 5px;
    border-radius: 20px;
}

.lab-bs-item-content {
    position: relative;
}

.lab-bs-item-date {
    font-weight: 400;
    margin-bottom: 12px;
    display: inline-block;
}

h3.lab-bs-item-title {
    font-weight: 400;
    margin-bottom: 14px;
    line-height: 1.5;
}

.lab-bs-item-title {
    margin-top: 0;
}

.lab-bs-item-excerpt {
    margin-bottom: 20px;
    padding-bottom: 24px;
    border-bottom: 1px solid #f2f2f2;
}

/* Counters */

/* Footer */
/* ============================= */
/* Footer */
/* ============================= */

.site-footer {
    font-size: 16px;
}

/* Main footer section */

.footer-main {
    background-image: url("../images/tn-flag.jpg");
    background-size: cover;
    background-position: center;
    position: relative;
    color: #fff;
    border-top: solid 2px #fff;
    box-shadow: 0px -1px 15px rgb(0 0 0 / 60%);
}

.footer-main::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 9, 59, 0.8);
}

.footer-main .container {
    position: relative;
    z-index: 2;
}

/* Footer headings */

.footer-title {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 25px;
}

/* Links */

.footer-link {
    color: #fff;
    text-decoration: underline;
}

.footer-link:hover {
    color: #fff;
}

/* Disclaimer */

.footer-disclaimer {
    line-height: 1.9;
    max-width: 620px;
}

/* Bottom bar */

.footer-bottom {
    background: #8b0000;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    color: #fff;
}

.footer-social a {
    margin-left: 15px;
}

.footer-social svg {
    fill: #1b3b6f;
}

.footer-social a:hover svg {
    fill: #000;
}

/* Responsive */

@media (max-width: 991px) {

    .footer-content {
        padding: 50px 0;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 10px;
    }

}

.footer-container {
    max-width: 1950px;
    width: 100%;
    overflow: hidden;
}

.footer-nav {
    margin-top: 0;
}

.footer-social-left {
    float: right;
    margin-right: 50px;
}

.foot-logo {
    margin-bottom: 25px;
    text-align: center;
}

.foot-col-padd {
    padding: 0 20px;
}

.dream-text p {
    color: #000;
    padding-top: 20px;
    padding-left: 39px;
}

.foot-icon svg {
    fill: #000;
    margin: 25px 18px auto auto;
}

.foot-icon a:hover svg {
    text-decoration: none;
    cursor: pointer;
	background-color: #000;
	fill: #F4D03F;
}

.foot-icon svg:hover {
    fill: #000;
}

.footer-dark h3,
.footer-light h3 {
    font-weight: 600;
    text-transform: capitalize;
    margin: 0;
}

.footer-dark h3:after,
.footer-light h3:after {
    border-bottom: 1px solid #000;
    content: " ";
    width: 100%;
    display: block;
    position: relative;
    top: 15px;
    left: 0;
    clear: both;
    margin-bottom: 40px;
    text-align: center;
}

.foot-icon {
    text-align: center;
}

.pop-link a {
    color: #000;
    margin-bottom: 20px;
    text-transform: capitalize;
    display: block;
}

.ltl-blog {
    display: inline-flex;
}

.blog-post {
    color: #000;
    padding-left: 30px;
}

.blog-vl {
    margin: 0 5px;
}

.blog-icon {
    margin-right: 5px;
}

.blog-icon svg,
.contact-icon svg {
    fill: #000;
}

.footer-contact-icon {
    text-align: center;
}

.icon-footer-contact svg {
    width: 85px;
    height: 85px;
    border: 1px dashed;
    padding: 24px 0;
    font-size: 45px;
    fill: #fff;
    border-radius: 50%;
}

.contacts p {
    padding: 15px 0;
    text-align: center;
}

.contact-icon {
    border: 1px solid #000;
    border-radius: 50%;
    padding: 5px;
    width: 38px;
    height: 38px;
    text-align: center;
    margin: 0 20px;
    color: #fff;
}

.contact-row-margin {
    margin-top: 20px;
}

.contact-row-margin p {
    margin: auto 0;
    color: #000;
}

.copyright-text {
    color: #000;
}

.copyright-text a {
    color: #000;
}

.copyright-text a:hover {
    color: #243659;
    text-decoration: none;
}

.call-to-action-button .wm-button:hover {
    background-color: #373737 !important;
    color: #fff !important;
}

.our-spec h3,
.our-spec p {
    color: #161616;
}

.icon-footer-contact svg:hover {
    background-color: #fff !important;
    fill: #000;
    border: 1px solid;
}

/*footer opning time*/

.opening-time li {
    text-transform: capitalize;
}

.opening-time {
    padding-left: 0;
}

input.btnContact:hover {
    background-color: #fff !important;
    color: #000 !important;
}

.opening-time p {
    color: #fff;
}

.contact-form label,
.form-group label {
    font-weight: 400;
}

#email1:focus {
    outline: 2px dotted #f00;
    outline-offset: 0;
}

#msg1:focus {
    outline: 2px dotted #f00;
    outline-offset: 0;
}

.footer-dark {
    background-color: #f4f7fc;
    color: #000;
}

.footer-light {
    background-color: #000;
    color: #fff;
}

.footer-social-left svg {
    margin: 15px;
    fill: #000;
}

.footer-social-left a:hover svg {
    text-decoration: none;
    cursor: pointer;
	background-color: #000;
	fill: #F4D03F;
}

/* Tag Cloud */
.tagcloud ul.tagcloudul {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: left;
}

.tagcloud ul.tagcloudul li {
    display: inline-block;
    margin: 0 0.3em 0.3em 1em;
    padding: 0;
}

.tagcloud ul.tagcloudul li a {
    position: relative;
    display: inline-block;
    height: 30px;
    line-height: 30px;
    padding: 0 1em;
    background-color: #fff;
    border-radius: 0 3px 3px 0;
    text-decoration: none;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

.tagcloud ul.tagcloudul li a::before {
    position: absolute;
    top: 0;
    left: -15px;
    content: "";
    width: 0;
    height: 0;
    border-color: transparent #fff transparent transparent;
    border-style: solid;
    border-width: 15px 15px 15px 0;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

.tagcloud ul.tagcloudul li a::after {
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 2;
    display: block;
    content: "";
    width: 6px;
    height: 6px;
    margin-top: -3px;
    background-color: #373737;
    border-radius: 100%;
}

.tagcloud ul.tagcloudul li span {
    display: block;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    color: initial;
}

.tagcloud ul.tagcloudul li a:hover {
    background-color: #fff;
}

.tagcloud ul.tagcloudul li a:hover::before {
    border-right-color: #fff;
}

.lab-footer-menu .nav-menu>.menu-item {
    float: left;
    position: relative;
    padding: 0;
    margin: 0 15px;
}

.lab-footer-menu {
    margin: auto;
}

#footer-menu li a {
    color: #000;
}

/* Back To Top */
#lab-back-top {
    position: fixed;
    bottom: 30px;
    right: 10px;
    left: auto;
    z-index: 999;
}

#lab-back-top a {
    cursor: pointer;
    display: block;
    position: relative;
    height: 35px;
    width: 35px;
    fill: #fff;
    background-color: #000;
    text-decoration: none;
    -webkit-transition: all 1s ease 0s;
    transition: all 1s ease 0s;
    border-radius: 100%;
    text-align: center;
    border: 1px solid #fff;
    padding-top: 1px;
}

/* Media Query */
@media (max-width: 991px) {
    #off-canvas-btn {
        padding: 0 5px;
        position: relative;
        top: 5px;
    }
    .dropdown-menu{border:none;}
    .navbar-collapse {
        position: fixed;
        top: 160px;
        left: 0px;
        right: 0;
        padding: 15px;
        background: #fff;
    }
    .menu-standard #lab-logo-nav .lab-main-menu,
    #lab-wcag {
        display: none;
    }

    .menu-standard #lab-offcanvas-button,
    .menu-standard #lab-offcanvas .lab-offcanvas-menu {
        display: block;
    }

    .block-settings-wrapper {
        left: -301px;
        top: 15%;
        width: 300px;
        z-index: 500;
    }

    .open-accessibility {
        top: -65px;
    }

    .contact-col,
    .footer-dark h3,
    .footer-light h3 {
        text-align: center;
        margin-top: 100px;
    }

    #team .col-12,
    #team .col-sm-6 {
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 500px) {
    .footer-social-left {
        float: none;
    }

    .copyright-text {
        text-align: center;
    }
}

@media reader,
speech,
aural {

    *:before,
    *:after {
        display: none !important;
        content: "" !important;
        visibility: hidden;
    }
}

/* CS - Custom */
