@font-face {
    font-family: 'PF Bague Sans Std';
    src: url('../fonts/subset-PFBagueSansStd-Light.woff2') format('woff2'),
        url('../fonts/subset-PFBagueSansStd-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Sonder';
    src: url('../fonts/subset-SonderRegular.woff2') format('woff2'),
        url('../fonts/subset-SonderRegular.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Times New Roman';
    src: url('../fonts/subset-TimesNewRomanPS-BoldItalicMT.woff2') format('woff2'),
        url('../fonts/subset-TimesNewRomanPS-BoldItalicMT.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Times New Roman';
    src: url('../fonts/subset-TimesNewRomanPS-ItalicMT.woff2') format('woff2'),
        url('../fonts/subset-TimesNewRomanPS-ItalicMT.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'PF Futura Neu Book';
    src: url('../fonts/subset-PFFuturaNeuBook-Regular.woff2') format('woff2'),
        url('../fonts/subset-PFFuturaNeuBook-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PF Futura Neu';
    src: url('../fonts/subset-PFFuturaNeuLight-Regular.woff2') format('woff2'),
        url('../fonts/subset-PFFuturaNeuLight-Regular.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PF Futura Neu';
    src: url('../fonts/subset-PFFuturaNeuMedium-Regular.woff2') format('woff2'),
        url('../fonts/subset-PFFuturaNeuMedium-Regular.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'CeraGR';
    src: url('../fonts/subset-CeraGR-Light.woff2') format('woff2'),
        url('../fonts/subset-CeraGR-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

:root {
    --main-bg-color: #67879B;
    --dark-bg-color: #101c25;
    --white: #fff;
    --black: #000;
    --gray: #B4B4B4;
    --brown: #B59075;
    --pale: #8da3af;

    --footer-bg: #123344;

    --bg-1: #84a6b7;
    --bg-2: #5c889d;
    --bg-3: #4c6f80;
    --bg-4: #4e7083;
    --bg-5: #395b6a;
    --bg-6: #2b4757;

    --sonder-font: 'Sonder', sans-serif;
    --time-new-roman-font: 'Times New Roman', sans-serif;
    --futura-neu-font: 'PF Futura Neu', sans-serif;
    --bague-font: 'PF Bague Sans Std', sans-serif;

    --default-transition: all 0.3s ease-in-out;
}

body {
    font-family: 'PF Futura Neu';
    font-weight: 300;
    font-size: 28px;
    background: var(--main-bg-color);
    color: var(--white);
}

body.bg1 {
    background: var(--bg-1);
}

body.bg2 {
    background: var(--bg-2);
}

body.bg3 {
    background: var(--bg-3);
}

body.bg4 {
    background: var(--bg-4);
}

body.single-post,
body.blog,
body.bg5 {
    background: var(--bg-5);
}

body.bg6 {
    background: var(--bg-6);
}

.img-fluid.full {
    width: 100%;
    height: auto;
}

.pagewrap {
    max-width: 2560px;
    margin: 0 auto;
}

header {
    padding: 2rem;
    position: sticky;
    top: 0;
    z-index: 25;
}

header::before {
    opacity: 0;
    transition: var(--default-transition);
}

.scrolled header::before {
    opacity: 0.95;
}

.bg1 header::before {
    content: '';
    background: color-mix(in srgb, var(--bg-1) 80%, black);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.bg2 header::before {
    content: '';
    background:  color-mix(in srgb, var(--bg-2) 80%, black);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.bg3 header::before {
    content: '';
    background:  color-mix(in srgb, var(--bg-3) 80%, black);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.bg4 header::before {
    content: '';
    background:  color-mix(in srgb, var(--bg-4) 80%, black);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.single-post header::before,
.blog header::before,
.bg5 header::before {
    content: '';
    background:  color-mix(in srgb, var(--bg-5) 80%, black);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.single-post main h1 {
    font-size: 70px;
}

.bg6 header::before {
    content: '';
    background:  color-mix(in srgb, var(--bg-6) 80%, black);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.admin-bar header {
    top: 32px;
}

.logo {
    display: block;
    width: 90px;
}

.burger {
    display: block;
}

.burger span {
    display: block;
    width: 40px;
    height: 2px;
    background: var(--white);
    margin: 8px;
}

.burger span:first-child {
    width: 16px;
}

.burger span:nth-child(2) {
    transform: translateX(16px);
    transition: var(--default-transition);
}

.burger:hover span:nth-child(2) {
    transform: translateX(8px);
}

.lang-switch {
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    font-family: var(--sonder-font);
    color: var(--white);
    position: relative;
}

.lang-switch::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--white);
    z-index: -1;
    transform: translateY(-2px);
}

.lang-switch a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.4rem;
    line-height: 1.4;
    transition: var(--default-transition);
}

.lang-switch a:hover,
.lang-switch a.active {
    color: var(--gray);
}

main {
    padding: 4rem;
    overflow-x: hidden;
}

.title-block {
    position: relative;
}

.title-block .line {
    display: block;
    width: 0;
    height: 1px;
    background: var(--white);
}

#introvideo {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
}

.sector-video {
  width: 100%;
  overflow: hidden;
}

.sector-video video {
  width: 100%;
  height: auto;
  transform: scale(1.5);
}

.single-sector .sector-video {
  max-width: 650px;
}

main h1 {
    font-size: 80px;
    font-weight: 300;
    /* border-bottom: 1px solid var(--white); */
    opacity: 0;
    transform: translateY(40px);
}

main h1 span {
    font-family: var(--sonder-font);
    animation: rotate 8s linear infinite;
    display: inline-block;
    line-height: 1;
    transform-origin: center center;
    height: 38px;
}

/* infinite rotate keyframes */
@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

main h1 em {
  font-family: var(--time-new-roman-font);
  font-style: italic;
  font-size: 80px;
}

[lang="en-US"] main h1 em {
  font-family: var(--sonder-font);
  font-style: italic;
  margin-right: 10px;
}

.page-intro {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10rem auto;
    max-width: 80%;
    gap: 4rem;
}

.page-intro .details {
    text-align: right;
    line-height: 1;
}

.page-intro .details h3 {
    font-family: var(--sonder-font);
    color: var(--pale);
    font-size: 192px;
}

.page-intro .details p {
    font-size: 78px;
}

.page-intro .details p em {
    font-family: var(--time-new-roman-font);
    font-style: italic;
}

[lang="en-US"] .page-intro .details p em {
    font-family: var(--sonder-font);
    font-style: italic;
    margin-right: 10px;
}

.shape-inactive {
  display: none !important;
}

.content {
    margin: 0 auto;
    max-width: 80%; 
    opacity: 0;
    transform: translateY(40px);
}

.content.full {
    max-width: 100%;
}

.content .back {
    display: inline-flex;
    border-radius: 50%;
    border: 1px solid var(--white);
    width: 80px;
    height: 80px;
    align-items: center;
    justify-content: center;
    margin-top: 8rem;
}

.content .back img {
    transform: translateX(0);
    transition: all 0.3s ease-in-out;
}

.content .back:hover img {
    transform: translateX(-4px);
}

.content .next {
    display: inline-flex;
    border-radius: 50%;
    border: 1px solid var(--white);
    width: 80px;
    height: 80px;
    align-items: center;
    justify-content: center;
    margin-top: 8rem;
}

.content .next img {
    transform: translateX(0) rotate(180deg);
    transition: all 0.3s ease-in-out;
}

.content .next:hover img {
    transform: translateX(4px) rotate(180deg);
}

.content .page-text {
    padding-right: 10rem;
    /* border-right: 1px solid var(--white); */
    height: 785px;
}

.simplebar-track.simplebar-vertical {
    border-right: 1px solid;
}

ul.wp-block-list {
    padding-top: 3rem;
    padding-left: 5rem;
    list-style: square;
}

ul.wp-block-list li {
    margin-bottom: 3rem;
}

.simplebar-scrollbar.simplebar-visible:before {
    background: var(--white);
    opacity: 1;
    border-radius: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.article-list {
    padding-top: 2rem;
}

.article-list article {
    position: relative;
}

.article-list article a {
    display: block;
    color: var(--white);
    text-decoration: none;
    position: relative;
    padding: 4rem 0 2rem 2rem;
}

.article-list article p {
    font-family: var(--bague-font);
    font-size: 1.4rem;
    line-height: 1.4;
}

.article-list article h2 {
    font-family: var(--futura-neu-font);
    font-size: 1.8rem;
    line-height: 1;
    font-weight: 300;
    font-style: italic;
    position: absolute;
    right: 2rem;
    max-width: 80%;
    bottom: 55%;
    text-align: right;
    z-index: 5;
}

.article-list .row > div:nth-child(2) article h2 {
    bottom: 10%;
    text-align: left;
}

.article-list article .thumb-wrap {
    position: relative;
}

.article-list article .thumb-wrap img {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
}

.article-list article .thumb-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.article-list article .box-top-line {
    display: block;
    width: 0;
    height: 1px;
    background: var(--white);
    position: absolute;
    left: 0;
    top: 0;
}

.article-list article .box-right-line {
    display: block;
    width: 1px;
    height: 0;
    background: var(--white);
    margin: 0 auto;
    position: absolute;
    right: 0;
    top: 0;
}

.article-list article .box-bottom-line {
    display: block;
    width: 0;
    height: 1px;
    background: var(--white);
    position: absolute;
    right: 0;
    bottom: 0;
}

.article-list article .box-left-line {
    display: block;
    width: 1px;
    height: 0;
    background: var(--white);
    margin: 0 auto;
    position: absolute;
    left: 0;
    bottom: 0;
}

.article-list article p.date, 
.article-list article h2, 
.article-list article .thumb-wrap {
    opacity: 0;
    transform: translateY(20px);
}

.wp-pagenavi {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.wp-pagenavi a,
.wp-pagenavi span {
    display: block;
    color: var(--white);
    text-decoration: none;
    font-size: 1.4rem;
    line-height: 1;
    position: relative;
    min-width: 50px;
    text-align: center;
    padding-bottom: 2rem;
} 

.wp-pagenavi span::after,
.wp-pagenavi a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 5px;
    background: var(--white);
    transition: var(--default-transition);
}

.wp-pagenavi a.prevnext {
    display: block;
    width: 50px;
    margin: 0 1rem;
}

.wp-pagenavi a.prevnext::after {
    display: none;
}

.wp-pagenavi .current::after,
.wp-pagenavi a.active::after {
    width: 100%;
}

/* paging-next.svg
paging-prev.svg */

.wp-pagenavi a.nextpostslink {
    display: block;
    width: 50px;
    height: 50px;
    background: url('../assets/paging-next.svg') no-repeat center center;
    background-size: 100%;
    padding: 0;
    transform: translateY(-15px);
}

.wp-pagenavi a.previouspostslink {
    display: block;
    width: 50px;
    height: 50px;
    background: url('../assets/paging-prev.svg') no-repeat center center;
    background-size: 100%;
    padding: 0;
    transform: translateY(-15px);
}

.sector-list {
    padding-top: 10rem;
    display: flex;
    flex-wrap: wrap;
    gap: 10rem 12rem;
}

.sector {
    display: flex;
    flex-direction: column;
    color: var(--white);
    text-decoration: none;
    position: relative;
    width: calc(50% - 6rem);
}

.sector:nth-child(even) {
    margin-top: 20rem;
}

.sector:nth-child(2) {
    margin-top: 0rem;
}

.sector img {
    margin-left: auto;
}

.sector p {
    font-family: var(--sonder-font);
    font-size: 3rem;
    line-height: 1;
    margin: 3rem 0 0;
}

.sector .sector-line {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--white);
    left: 0;
    top: 0;
}

.sector h2 {
    font-family: var(--futura-neu-font);
    font-size: 1.8rem;
    font-weight: 300;
    text-align: right;
}

.sector h2 span {
    font-family: var(--time-new-roman-font);
    font-style: italic;
}

[lang="en-US"] .sector h2 span {
    font-family: var(--sonder-font);
    font-style: italic;
    margin-right: 10px;
}

.animated-svg {
    position: relative;
    text-align: right;
    display: flex;
    width: 100%;
    height: auto;
    max-width: 400px;
    min-height: 400px;
    margin-left: auto;
    align-items: flex-end;
}

.home .animated-svg {
    min-height: auto
}

.page-intro .animated-svg {
    margin-left: 0;
}

.animated-svg.icon6 {
    max-width: 220px;
}

.animated-svg.icon7 {
    width: 100%;
    max-width: 100%;
}

.animated-svg.icon8 {
    max-width: 280px;
}

.animated-svg.icon9 {
    max-width: 300px;
}

.homeheader {
    position: fixed;
    top: 0;
    width: 100%;
}

.cubes {
    height: 100dvh;
}

.admin-bar .cubes {
    height: calc(100dvh - 32px);
}

.person {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 2rem;
    position: relative;
}

.person-card-wrap {
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.person-card {
    padding: 1rem;
    position: relative;
    z-index: 5;
    background: #5c889d;
}

.person .person-top-line {
    display: block;
    width: 0;
    height: 1px;
    background: var(--white);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.person .person-right-line {
    display: block;
    width: 1px;
    height: 0;
    background: var(--white);
    margin: 0 auto;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}

.person .person-bottom-line {
    display: block;
    width: 0;
    height: 1px;
    background: var(--white);
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.person .person-left-line {
    display: block;
    width: 1px;
    height: 0;
    background: var(--white);
    margin: 0 auto;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
}

.person-link {
    color: var(--white);
    text-decoration: none;
    transform: translateY(-60px);
    position: relative;
    display: block;
    margin-bottom: -60px;
}

.person-link span {
    font-family: var(--time-new-roman-font);
    font-style: italic;
    font-size: 1.4rem;
    line-height: 1.4;
    color: var(--brown);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    margin: 3rem 0 1rem;
    height: 32px;
}

.reverse .person-link span {
    justify-content: flex-end;
}

.person-link span img {
    width: 60px;
    transform: rotate(0);
    transition: var(--default-transition);
}

.active .person-link em {
    display: none;
}

.active .person-link span img {
    transform: rotate(180deg);
}

.person-link h3 {
    font-family: var(--futura-neu-font);
    font-weight: 300;
    font-size: 1.4rem;
    line-height: 1;
    font-style: italic;
    margin-top: 1rem;
}

.person-details {
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.reverse .person-details {
    justify-content: flex-end;
    align-items: flex-end;
}

.person-details h2 {
    font-family: var(--futura-neu-font);
    font-weight: 300;
    font-size: 4rem;
    line-height: 1;
    font-style: italic;
    margin: 0 0 16px;
}

.person-details h2 span {
    font-family: var(--time-new-roman-font);
    font-style: italic;
    display: block;
}

[lang="en-US"] .person-details h2 span {
    font-family: var(--sonder-font);
    font-style: italic;
    margin-right: 10px;
}

.person-info {
    font-size: 1.4rem;
}

.card-links {
    display: flex;
    flex-direction: column;
}

.card-links a {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #fff;
    text-decoration: none;
    transition: var(--default-transition);
}

.card-links a span {
    display: block;
    width: 20px;
    fill: white;
    transition: var(--default-transition);
}

.card-links a:hover {
    color: var(--brown);
}

.card-links a:hover span {
    fill: var(--brown);
}

h2.people-text {
    font-family: var(--time-new-roman-font);
    font-style: italic;
    font-size: 3rem;
    line-height: 1;
    border-bottom: 1px solid var(--brown);
    margin: 3rem 0 0;
    display: inline;
    text-align: right;
}

[lang="en-US"] h2.people-text {
    font-family: var(--sonder-font);
    font-style: italic;
}

/* create an infinite rotating animation */
.rotator {
    display: inline-block;
    animation: rotate 6s linear infinite;
    position: absolute;
    right: 8rem;
    bottom: -15rem;
    width: 180px;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

.content.about-texts {
  max-width: 100%;
  padding: 0;
}

.page-template-office main {
    padding: 4rem 0;
}

.page-template-office main .page-title {
  padding: 0 4rem;
}

.office-text {
    padding: 8rem;
}

.about-texts h2 {
    font-family: var(--time-new-roman-font);
    font-style: italic;
    font-size: 4rem;
    line-height: 1;
    margin: 0 0 2rem;
    display: block;
    position: relative;
}

[lang="en-US"] .about-texts h2 {
    font-family: var(--sonder-font);
    font-style: italic;
}

.about-texts .office-text span {
    background: var(--white);
    width: 1px;
    height: 120px;
    display: block;
    margin: 0.5rem 0;
}

.about-texts .text-end .office-text span {
    margin: 0.5rem 0 0.5rem auto;
}

.contact-text {
  margin-top: 5rem;
  text-align: center;
}

h2.contact-text {
    font-family: var(--sonder-font);
    font-size: 3rem;
    line-height: 1;
    margin: 3rem 0 0;
    display: block;
    position: relative;
    padding-bottom: 10rem;
}

h2.contact-text span {
    font-family: var(--futura-neu-font);
    color: var(--black);
    font-size: 2.8rem;
    line-height: 1;
}

h2.contact-text a {
  color: var(--white);
  text-decoration: none;
}

.contact-form .form-control {
    font-family: var(--bague-font);
    font-weight: 300;
    font-size: 1.4rem;
    width: 100%;
    padding: 0;
    border: 0 none;
    border-bottom: 1px solid var(--white);
    background: transparent;
    border-radius: 0;
    color: var(--white);
    outline: none;
    box-shadow: none;
    resize: none;
}

.contact-form .form-label {
    font-family: var(--bague-font);
    font-weight: 600;
}

.contact-form .form-label span {
    font-family: var(--sonder-font);
    font-weight: normal;
    font-size: 3rem;
    margin-right: 10px;
}

.contact-form button.btn,
.contact-form input[type="submit"] {
    font-family: var(--bague-font);
    font-weight: 600;
    font-size: 1.4rem;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-left: auto;
    background: url(https://staging.webtree.gr/va/wp-content/themes/va/assets/submitarrow.svg) no-repeat right center transparent;
    border: 0 none;
    padding-right: 70px;
    background-size: 40px;
}

.contact-form button.btn span {
    display: block;
    width: 40px;
}

span.wpcf7-list-item-label {
    font-size: 1.3rem;
}

.form-check.form-check-inline {
    padding: 0;
    margin: 0;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner {
    text-transform: uppercase;
}

span.wpcf7-list-item label {
    display: flex
;
    align-items: center;
    gap: 5px;
}

input.form-check-label {
    width: 28px;
    height: 28px;
    margin-right: 10px;
}

.wpcf7-list-item {
    margin: 0;
}

span.wpcf7-list-item {
    margin-left: 0;
}

.form-check-label {
    font-size: 1.3rem;
}

.gmapslink {
    display: block;
    width: 150px;
}

footer {
    font-family: 'CeraGR';
    padding: 2rem 4rem;
    background: var(--footer-bg);
}

footer p {
    font-family: 'CeraGR';
    font-weight: normal;
    font-size: 1.1rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

footer p a {
    color: var(--white);
    text-decoration: none;
    transition: var(--default-transition);
}

footer p a:hover {
    color: var(--main-bg-color);
}

.megamenu {
    background: var(--bg-4);
    position: fixed;
    left: 0;
    top: 0;
    z-index: 150;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: space-between;
}

.megamenu .logo-bar {
    padding: 2rem 2.8rem;
    position: absolute;
    left: 0;
    top: 0;
}

.megamenu.active {
    display: flex;
}

.megamenu .logo {
    display: block;
    width: 90px;
}

.megamenu .menu-bar {
    width: 100%;
}

.megamenu nav {
    font-size: 80px;
    padding-top: 5rem;
}

.megamenu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.megamenu a {
    display: block;
    color: rgba(255,255,255,0.2);
    text-decoration: none;
    position: relative;
    transition: var(--default-transition);
}

.megamenu a em {
    font-family: var(--time-new-roman-font);
    font-style: italic;
    font-size: 80px;
}

[lang="en-US"] .megamenu a em {
    font-family: var(--sonder-font);
    font-style: italic;
    margin-right: 10px;
}

.megamenu .menu-bar a {
    padding-left: 40%;
}

.megamenu .menu-bar a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 1px;
    background: var(--white);
    transition: var(--default-transition);
}

.megamenu .menu-bar a:hover {
    color: var(--white);
}

.megamenu .menu-bar li:hover > a::after {
    width: 60%;
}

.megamenu .close-bar {
    padding: 2rem;
    width: 90px;
    border-left: 1px solid var(--white);
}

.megamenu a.close {
    display: inline-block;
    transform: translateX(0px) rotate(90deg);
    transform-origin: center;
    width: 20px;
    height: 40px;
    font-size: 40px;
    line-height: 1;
    color: var(--white);
    transition: color 0.3s ease-in-out;
}

.megamenu a.close:hover {
    color: var(--dark-bg-color);
}

.megamenu li {
    position: relative;
}

.megamenu .sub-menu {
    display: none;
    position: absolute;
    top: 69px;
    left: 0;
    width: calc(40% - 40px);
    font-size: 24px;
    text-align: right;
    z-index: 15;
    font-size: 24px;
}

.megamenu li:hover .sub-menu {
    display: block;
}

.megamenu .sub-menu a {
    padding-left: 0;
    opacity: 1;
    transform: none;
}

.megamenu .sub-menu a::after {
    background: var(--brown);
}

.megamenu .sub-menu a em {
    font-family: var(--time-new-roman-font);
    font-style: italic;
    font-size: 28px;
}

.main-menu > li a {
    opacity: 0;
    transform: translateY(40px);
}

.framed-image {
    padding: 0;
    position: relative;
    z-index: 5;
}

.framed-image .line-wrap {
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 110%;
  height: 100%;
}

.framed-image .image-top-line {
    display: block;
    width: 0;
    height: 1px;
    background: var(--white);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.framed-image .image-right-line {
    display: block;
    width: 1px;
    height: 0;
    background: var(--white);
    margin: 0 auto;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}

.framed-image .image-bottom-line {
    display: block;
    width: 0;
    height: 1px;
    background: var(--white);
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.framed-image .image-left-line {
    display: block;
    width: 1px;
    height: 0;
    background: var(--white);
    margin: 0 auto;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
}

.loader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-6);
    z-index: 5;
}

.loader.hide {
    display: none;
}

canvas {
    position: absolute;
    max-width: 100%;
    height: auto;
    cursor: pointer;
}




.sector-icon-1 .circle-container {
    position: relative;
    width: 400px;
    height: 400px;
}

/* Large central circle */
.sector-icon-1 .large-circle {
    width: 260px;
    height: 260px;
    border: 40px solid white;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: #4d6f82;
    z-index: 5;
}

/* Small circles */
.sector-icon-1 .small-circle {
    width: 30px;
    height: 30px;
    border: 6px solid white;
    border-radius: 50%;
    position: absolute;
}

/* Positioning small circles */
.sector-icon-1 .top-left {
    top: 10%;
    left: 10%;
}

.sector-icon-1 .top-right {
    top: 10%;
    right: 10%;
}

.sector-icon-1 .bottom-left {
    bottom: 10%;
    left: 10%;
}

.sector-icon-1 .bottom-right {
    bottom: 10%;
    right: 10%;
}

#container {
    position: relative;
    width: 100%;
}

#container.contact-blob {
    height: 800px;
}

#container.office-blob {
    height: 1060px;
}

.otgs-development-site-front-end {
    display: none;
}

.gmapslink-anim {
    animation: rotate 6s linear infinite;
    transform-origin: 50% 57%;
}

@media screen and (max-width: 1400px) {

}

@media screen and (max-width: 1200px) {

}

@media screen and (max-width: 992px) {

    .page-intro {
        gap: 0;
        margin: 0 0 3rem;
        padding: 0;
        width: 100%;
        max-width: 100%;
    }

    .content.about-texts {
        max-width: 100%;
        padding: 1rem;
    }

    .office-text {
        padding: 2rem 0rem;
    }

    .content .back {
      margin-top: 2rem;
    }

    .line-wrap {
        display: none;
    }

    .page-template-office main .page-title {
        padding: 0 1rem;
    }

}

@media screen and (max-width: 768px) {

    body {
      font-size: 22px;
    }

    header {
        padding: 1rem;
    }

    footer {
        padding: 2rem 0;
    }

    main {
        padding: 2rem 0;
    }

    main h1 {
        font-size: 2rem;
    }

    main h1 em {
        font-size: 2.2rem;
    }

    .megamenu .logo-bar {
        padding: 1rem 1.8rem;
    }

    .about-texts h2 {
        font-size: 2rem;
    }

    .content {
        max-width: 100%;
    }

    .megamenu nav {
        font-size: 2.2rem;
        padding-top: 7rem;
    }

    .megamenu nav a em {
        font-size: 2.4rem;
    }

    .megamenu .close-bar {
        border-left: 0 none;
    }

    .page-intro {
        flex-direction: column;
    }

    .page-intro .details h3 {
        font-size: 80px;
        margin-top: 2rem;
    }

    .page-intro .details p {
        font-size: 35px;
    }

    .content .page-text {
        padding-right: 1rem;
    }

    .sector-list {
        flex-direction: column;
    }

    .sector {
        width: 100%;
        margin: 0;
    }

    .sector:nth-child(2) {
        margin-top: 0rem;
    }

    .sector:nth-child(even) {
        margin-top: 0;
    }

    .megamenu .sub-menu,
    .megamenu li:hover .sub-menu {
        display: none;
    }

    .pagination {
        gap: 1rem;
    }

    .pagination a,
    .pagination a.prevnext {
        min-width: 40px;
    }

    .article-list article h2 {
        bottom: 10%;
    }

    .person-details h2 {
        font-size: 2rem;
    }

    .person {
        flex-direction: column;
    }

    .person.reverse {
        flex-direction: column-reverse;
    }

    .person-card,
    .person-details {
        width: 100%;
    }

    .person-details {
        flex-direction: column;
        gap: 1rem;
    }

    .rotator {
        right: 5rem;
        bottom: -7rem;
        width: 120px;
    }

    .animated-svg {
        max-width: 50% !important;
        margin: auto;
    }

    #container.contact-blob {
        height: 200px;
    }
    
    #container.office-blob {
        height: 260px;
    }

    .megamenu .menu-bar a {
        padding-left: 10%;
    }

    .person-card-wrap {
      width: 100%;
    }

    .shapes {
      height: 100dvh;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    main h1 span {
      height: 14px;
    }

    .footer-logo {
        max-width: 200px;
        margin: 0 auto;
        display: block;
    }

    footer p {
        font-size: 1rem;
        text-align: center;
    }

    .reverse .person-details {
        justify-content: flex-start;
        align-items: flex-start;
    }

    .sector-list {
        padding-top: 0;
        gap: 0;
    }

    #introvideo {
        width: 100%;
        height: 100dvh;
        transform: scale(1.3);
    }

    .content .page-text {
        height: auto;
    }

    [lang="en-US"] main h1 em,
    [lang="en-US"] .page-intro .details p em,
    [lang="en-US"] .sector h2 span,
    [lang="en-US"] .person-details h2 span,
    [lang="en-US"] .megamenu a em {
      margin-right: 5px;
    } 

}