@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

:root{
    --primary-colour: #0394a9;
    --secondary-colour: #013145;
}

.primary-text{
    color:var(--primary-colour);
}

.secondary-text{
    color:var(--secondary-colour);
}

.primary-bg{
    background-color:var(--primary-colour);
}

.secondary-bg{
    background-color:var(--secondary-colour);
}

html, body {
    margin: 0;
    padding: 0;
    background-color:var(--secondary-colour);
}


body, caption, span, h1, h2, h3, h4, h5, h6{
    color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;    
}


p {
    font-size: clamp(1rem, 1vw, 2rem);
}

:lang(en) {
    font-family: "Roboto Condensed", sans-serif;
}


p:lang(en) {
    font-weight: 300;
}


h1, h2, h3 {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 900;
}


h1 {
    text-transform: uppercase;
}

h1, h2, h3, h4, h5, h6{
    margin: 0 0 25px 0;
    font-weight: 700;
}

a {
    font-weight: 300;
    color: #fff;
    text-decoration: none;
}

a:hover {
    color: var(--primary-colour);
}

th, td, i {
    color: #fff;
}


.bevel {
    position:relative;
    box-shadow: inset 0.1em 0.1em 0.1em 0 rgba(255, 255, 255, 0.2), inset -0.1em -0.1em 0.1em 0 rgba(0, 0, 0, 0.5);
}

.bevel:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    background: linear-gradient(-25deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.38) 50%, rgba(255, 255, 255, 1) 100%);
    opacity: 0.1;
    background-blend-mode: overlay;
}

header{
    position:absolute;
}

@media only screen and (min-width: 768px) {


    header .top-bar, header .top-bar ul {
        display: flex;
        justify-content: space-between;
    }
}

@media only screen and (max-width: 767px) {
 
    .top-bar{
        display:none;
    }
    
}



.btn {
    margin: 1em 0;
    border-radius: 999px;
    padding: 10px 10%;
    background-color: var(--primary-colour);
    -webkit-transition: background 1s; /* For Safari 3.0 to 6.0 */
    transition: background 1s; /* For modern browsers */
    border:2px solid var(--primary-colour);
    font-weight: bold;
    color: #fff;
}

.btn:hover {
    background-color: transparent;
    color: var(--primary-colour);
    font-weight: bold;
}

@keyframes fadeMove {
    0% { opacity: 0; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(20px); } /* Fade in + Move down */
    100% { opacity: 0; transform: translateY(0); } /* Fade out + Move up */
}


.post-header {
    aspect-ratio: 16 / 3;
    overflow: hidden;
    position: relative;
    min-height: 200px;
    width:100%;
}


.bottom-icon {
    position: relative;
    bottom: 0;
    width: 50px;
    margin-top: 0.5em;
    z-index:999;
}


img.custom-logo {
    display: block;
    width: 100%;
    height: 100%;
    margin: auto auto;
    max-width: 250px;
}

span.display-name {
    color: #fff;
}

.widget-title{
    text-align:center;
    text-transform:uppercase;
}



#frontpage-sidebar1 a, #product-archive-sidebar a {

    font-size: medium;

    font-weight: 600;

}

hr {
   border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75));
}



header {
    z-index: 10;
    width: 100%;
}


ul.menu {
    padding: 0;
}


#frontpage-sidebar1 a, #product-archive-sidebar a {
    font-size: medium;
    font-weight: 600;
}

header .top-bar, header .top-bar ul {
    list-style: none;
    margin: 0;
}

header .top-bar li {
    position:relative;
    width:100%;
}

header .top-bar a {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1.5em;
    position:absolute;
    top:50%;
    transform:translateY(-50%);
}

header .top-bar li .sub-menu {
    display: none;
    position: absolute;
    z-index: 2;
    top: 100%;
    left: 0;
    background: var(--secondary-colour);
    padding: 5% 10%;
    list-style-type: none;
    width: 100%;
    border-left: 2px solid var(--primary-colour);
    box-shadow: 1px 1px 10px rgb(0, 0, 0, 0.5);
}

header .top-bar li .sub-menu a {
    color: #fff;
    padding: 1rem .25rem;
    text-align: left;
    display: block;
    text-decoration: none;
    position: unset;
    transform: none;
    font-size: medium;
}

header .top-bar li .sub-menu a:hover {
    color: var(--primary-colour);
}

header .top-bar li:hover > .sub-menu{
display: block!important;
}

header .top-bar li > .menu-item-has-children:hover > .sub-menu{
display: block!important;
}

header .top-bar .menu-item-has-children .sub-menu > .menu-item-has-children:hover .sub-menu {
display: block!important;
}

header .top-bar .sub-menu li .sub-menu{
    top: 0;
    left: 100%;
}

footer {
    background-color:#fff;
    color:var(--secondary-colour);
    padding:3em 0;
}

footer a, footer span{
    color:var(--secondary-colour);
}

footer h1, footer h2, footer h3, footer h4, footer h5, footer h6 {
    color: var(--secondary-colour);
}

footer td {
    color: var(--secondary-colour)!important;
}

footer .sub-menu {
    list-style: none;
    padding: 0;
}

footer .sub-menu li:before{
    display: none;
}

.footer-title {
    color:var(--secondary-colour);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: small;
    margin-bottom:1em;
}

.footer-title:before {
    content: '|';
    margin: 0 10px 0 0;
    color: var(--primary-colour);
    font-size: x-small;
    vertical-align: text-top;
}

.page-title {
    font-family: Gilroy-Extra Bold;
    font-size: clamp(16px, 10vw, 80px);
    line-height: 1;
    text-transform: uppercase;
    display: inline-block;
}

.page-title span {
    display: block;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.dropdown-toggle img {
    height: 20px;
    margin-right: 10px;
}

.dropdown-menu {
    display: none;
    position: absolute;
    left: 0;
    top: 80%;
    z-index: 10;
    width: 100%;
    max-height: 300px;
    overflow-y: auto;
    background-color: #2b2f33;
    border: 0;
    border-radius: 0 10px 10px 0;
}

.dropdown-menu.open {
    display: block;
}

.dropdown-item {
    padding: 10px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.dropdown-item img {
    height: 20px;
    margin-right: 10px;
}

.dropdown-item:hover {
    background-color: #009696;
}

.dropdown-arrow {
    margin-left: auto;
}



.divider {
    display: flex;
    align-items: center;
    color: #414448;
    padding: 0 5px;
    font-weight: lighter;
    user-select: none;
    font-size: 2em;
}


#service-archive{
    margin:3em 0 1em 0;
}


#service-archive .service-items{
    position:relative;
}

#service-archive img {
    filter: brightness(0.5) grayscale(0.1);
}


.thumbnail-caption {
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    padding: 5% 2%;
    text-align: center;
}

.page-featured-image{
    margin:3em 0 1em 0;
}

.page-featured-image img.responsive-featured-image {
    width: 100%;
    height: auto;
    display: block;
}

.round-border{
    border-radius: 10px;
    overflow:hidden;
}


.thumbnail-container {
    width: 90%;
    position: relative;
    z-index: 1;
}

.thumbnail-container .round-border:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid #eee;
    border-radius: 10px;
    right: -10%;
    bottom: -10%;
    z-index: -1;
}

.overlay:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #2e3192;
    opacity: 0.5;
    z-index: -1;
}


.object-cover {
    object-fit: cover;
}
.thumbnail-wrapper img {
    width: 100%;
    height: 100%;
    display: block;
}

.latest-videos{
    margin: 5em auto;
}

.menu-logo {
    margin: 0em 2em 2em 2em;
    z-index: 1;
    position: relative;
}


.green-checked {
    list-style-type: none;
    padding-left: 1.5em; /* spacing for icon */
    position: relative;
}

.green-checked::before {
    content: '\f00c'; /* Font Awesome checkmark icon */
    font-family: 'Font Awesome 6 Free'; /* or 'FontAwesome' */
    font-weight: bold;
    color: #47e513;
    position: absolute;
    left: 0;
    top: 0.1em;
}



.post-header img{
    object-fit: cover;
    object-position: center;
    width:100%;
    height:100%;
    filter: grayscale(1) brightness(0.5);
}


.post-header .entry-title {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 90%;
    text-align: center;
}

.post-container {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    color: #24252a;
    padding:0;
    height:100%;
}

.post-container .text-box{
    padding:5%;
}

.post-container h2{
    color: #24252a;
    margin: 0 0 10px 0;
    text-align: center;
}


#tag-filter-bar {
    margin: 2em 0;
}

#tag-filter-bar a {
    padding: 0.5em;
    background-color: var(--primary-colour);
    margin: 0.5em;
    border-radius: 7px;
    font-size: small;
    font-weight: bold;
}



::marker {
    color: var(--primary-colour);
}


#menu-header-menu-2{
    list-style: none;
}

#menu-header-menu-2 li :before {
    content: '\f054';
    font-family: 'FontAwesome';
    margin-right: 1em;
    color: var(--primary-colour);
}

#menu-header-menu-2 li {
    margin-bottom:1em;
}


.services-widget-list a {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}

.box-item {
    position: relative;
    padding: 3em 1em 5em 1em;
    height: 100%;
}

.text-box ul {
    list-style: none;
}

.text-box li:before {
    content: '\f054';
    font-family: 'FontAwesome';
    margin-right: 0.5em;
    position: absolute;
    left: 3em;
}


.overall-effect .text-box{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
}

.product-series{
    position:relative;
    overflow:hidden;
}

.product-series .container {
    z-index: 1;
    position: relative;
}

.product-series:before {
    content:'';
    background-image: url(https://bensonluker.com/wp-content/uploads/0ad7cfc4-4803-44d9-a608-3335e291bcbf.webp);
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    width:100%;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(3, 148, 169, 0.6);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(3, 148, 169, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(3, 148, 169, 0);
  }
}

.bullet-point {
  width: 14px;
  height: 14px;
  background-color: var(--primary-colour);
  border-radius: 50%;
  cursor: pointer;
  animation: pulse 2s infinite;
  transition: transform 0.3s ease;
  position: relative;
}

.bullet-point:hover {
  transform: scale(1.3);
}

.bullet-point .label {
  position: absolute;
  top: 50%;
  transform:translateY(-50%);
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 6px 10px;
  border-radius: 5px;
  font-size: 13px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease, top 0.3s ease;
  pointer-events: none;
}

.bullet-point:hover .label {
  top: -15px;
  opacity: 1;
}

@media only screen and (max-width: 767px){
.drop-block.lang {
    right: 0;
}
}

.drop-block.lang {
    position: absolute;
    font-size: 3em;
    padding: 0.1em 0.3em;
}