@font-face {
  font-family: 'Aspekta-300';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/Aspekta-300.woff2') format('woff2');
}

@font-face {
  font-family: 'Aspekta-350';
  font-style: normal;
  font-weight: 350;
  font-display: swap;
  src: url('../fonts/Aspekta-350.woff2') format('woff2');
}

@font-face {
  font-family: 'Aspekta-400';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/Aspekta-400.woff2') format('woff2');
}

@font-face {
  font-family: 'Aspekta-450';
  font-style: normal;
  font-weight: 450;
  font-display: swap;
  src: url('../fonts/Aspekta-450.woff2') format('woff2');
}

@font-face {
  font-family: 'Aspekta-500';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/Aspekta-500.woff2') format('woff2');
}

@font-face {
  font-family: 'Aspekta-550';
  font-style: normal;
  font-weight: 550;
  font-display: swap;
  src: url('../fonts/Aspekta-550.woff2') format('woff2');
}

@font-face {
  font-family: 'Aspekta-600';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/Aspekta-600.woff2') format('woff2');
}

@font-face {
  font-family: 'Aspekta-650';
  font-style: normal;
  font-weight: 650;
  font-display: swap;
  src: url('../fonts/Aspekta-650.woff2') format('woff2');
}

@font-face {
  font-family: 'Aspekta-700';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/Aspekta-700.woff2') format('woff2');
}

@font-face {
  font-family: 'Aspekta-750';
  font-style: normal;
  font-weight: 750;
  font-display: swap;
  src: url('../fonts/Aspekta-750.woff2') format('woff2');
}

@font-face {
  font-family: 'Aspekta-800';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../fonts/Aspekta-800.woff2') format('woff2');
}

@font-face {
  font-family: 'Aspekta-850';
  font-style: normal;
  font-weight: 850;
  font-display: swap;
  src: url('../fonts/Aspekta-850.woff2') format('woff2');
}

@font-face {
  font-family: 'Aspekta-900';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('../fonts/Aspekta-900.woff2') format('woff2');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --content-width: 1440px;
    --dark-blue: #001856;
    --sky-blue: #cce3ec;
    --white: #ffffff;
    --font-family: 'Aspekta-350', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
    font-family: var(--font-family);
    background: var(--white);
    color: var(--white);
}

.content-wrapper {
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 0 33px;
}

.nav-container {    
    width: 100%;    
    position: fixed;
    z-index: 100; 
    transition: background-color 0.3s ease, transform 0.3s ease;  
    transform: translateY(0);
}

.nav-container.hide-nav {
    transform: translateY(-100%);
}

.nav-container.active {
    background-color: #001A5E;
}

.nav-container.scrolled {
    background-color: #001A5E;
}

.nav-container .nav-wrapper {
    height: 93px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;    
}

.nav-container .nav-wrapper {
    border-bottom: 1px rgb(255, 255, 255, 0.5) solid;
}

.nav-container.active .nav-wrapper{
    border-color: #001A5E;
}

.nav-container.scrolled {
    background-color: #001A5E;
}

.nav-container.scrolled .nav-wrapper{
    border-color: #001A5E;
}

.nav-container img {
    display: block;
    height: 40px;
}

/* Navigation Menu */
.nav-menu {
    display: none;
    position: absolute;
    top: 93px;
    left: 0;
    right: 0;
    background-color: #001A5E;
    flex-direction: column;
    padding: 30px 33px;
    gap: 30px;
    z-index: 99;
}

.nav-menu.active {
    display: flex;
    padding-top: 15px;
    padding-bottom: 54px;
}

.nav-menu ul {
    display: flex;
    flex-direction: column;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    display: flex;
}

.nav-menu li:not(.login-btn) {
    flex-direction: column;
    align-items: flex-start
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-family: 'Aspekta-500';
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    position: relative;
    flex: 1;
}

.nav-menu li:not(.login-btn) a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 1px;
    background-color: var(--white);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.nav-menu li:not(.login-btn) a:hover::after {
    transform: scaleX(1);
}

.nav-menu li.current-menu-item:not(.login-btn) a::after {
    transform: scaleX(1);
}

.nav-menu li.login-btn a {
    border: 1px solid var(--White, #FFF);
    padding: 21px 0 22px;
    text-align: center;
    transition: all 0.2s ease;
}

.nav-menu li.login-btn a:hover {
    background-color: #fff;
    color:#001A5E;
}

/*.nav-menu li.current-menu-item.login-btn a{
    background-color: #fff;
    color:#001A5E;
}*/

.logged-in .login-btn{
	display: none;
}

/* User Account Button */
.user-account-item {
    position: relative;
    display: none;
}

.logged-in .user-account-item {
    display: flex;
}

.user-account-btn {
    color: var(--Blue, #001A5E);
    text-align: center;
    font-family: 'Aspekta-750';
    font-size: 15px;
    font-style: normal;
    font-weight: 750;
    line-height: 107.2%;
    letter-spacing: 0.6px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 17px;
    width: auto;
    height: 32px;
    transition: all 0.3s ease;
    padding: 0;
}

.user-account-btn span{
    position: relative;
}

.user-account-btn span::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 1px;
    background-color: var(--white);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.user-account-btn svg{
    margin-right: 1px;
}

.user-account-btn:hover span::after {
    transform: scaleX(1);
}

.user-account-btn.active span::after{
    transform: scaleX(1);
}

.user-account-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: var(--white);
    border-radius: 0;
    box-shadow: 0px 4px 23.2px rgba(0, 0, 0, 0.1);
    min-width: 220px;
    display: none;
    z-index: 1000;
    margin-top: 10px;
    overflow: hidden;
}

.user-account-dropdown.active {
    display: block;
}

.user-account-dropdown .user-card {
    padding: 16px;
}

.user-name {
    color: var(--dark-blue);
    font-family: 'Aspekta-500';
    font-size: 15px;
    font-weight: 500;
    margin: 0 0 8px 0;
    line-height: 1.2;
    letter-spacing: 0.6px;
}

.user-email {
    color: var(--dark-blue);
    font-family: 'Aspekta-500';
    font-size: 12px;
    font-weight: 500;
    margin: 0;
    line-height: 1.2;
    letter-spacing: 0.48px;
    opacity: 0.7;
}

.user-menu {
    padding: 8px 16px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.user-menu a {
    display: flex;
    margin: 0;
    padding: 0!important;
    color: var(--dark-blue)!important;
    text-decoration: none;
    font-family: 'Aspekta-400';
    font-size: 14px;
    font-weight: 400;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
    text-align: left!important;
    position: relative;
}

.nav-menu .user-account-dropdown .user-menu a::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #2E69B3!important;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;    
}

.nav-menu .user-account-dropdown .user-menu a:hover {
    color: #2E69B3!important;
    /*background-color: #f5f5f5;
    border-left-color: var(--dark-blue);
    padding-left: 18px;*/
}

.nav-menu .user-account-dropdown  .user-menu a:hover::after {
    transform: scaleX(1);
}


/* Hamburger Button */
.nav-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: 5px;
}

.nav-hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--white);
    transition: all 0.3s ease;
}

.nav-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -8px);
}

.hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 38px 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 56% center;
	background-color: #001856;
}

.hero .content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 46px;
    width: 100%;
}

.headline {
    font-weight: 350;
    font-size: 36px;
    line-height: 41px;
    padding-bottom: 128px;
}

/*plain text*/
.plain-text p, .plain-text h1, .plain-text h2, .plain-text h3, .plain-text h4, .plain-text h5, .plain-text h6{
    margin-bottom: 20px;
}

.plain-text b, .plain-text strong{
    font-family: 'Aspekta-700';
    font-weight: 700px;
}

.plain-text ul {
    margin-left: 30px;
}

.plain-text ul{
    margin-bottom: 20px;
}

.plain-text ul li{
    margin-bottom: 10px;
}

.plain-text ul li:last-child{
    margin-bottom: 0px;
}

/*animated text*/
.animated-text .text-container{
    font-family: 'Aspekta-300';
    margin: 60px 0;
    padding-top: 26px;
    border-top: 1px #001856 solid;
    color: rgba(0, 24, 86, 0.34);
    font-size: 26px;
    font-style: normal;
    font-weight: 300;
    line-height: 132%;
}

.animated-text .text-container span{
    transition: all 0.5s ease;
}

.animated-text .text-container span.dark{
    color: #001856;
}

/*home research*/
.research-block{
    background-image: url(../images/research-bg-1.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.research-block .content-wrapper{
    padding:0;
}

.research-grid{
    display: block;
}

.research-block h2{
    color: var(--White, #FFF);
    font-family: 'Aspekta-750';
    font-size: 22px;
    font-style: normal;
    font-weight: 750;
    line-height: 130%;
    padding: 27px 33px 26px;
}

.research-cell{
    position: relative;
    padding: 62px 33px 57px;
    border-top: 1px rgb(255, 255, 255, 0.5) solid;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.research-cell:before{
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s ease;
  z-index: 0;
}

.research-cell:hover::before {
  transform: scaleX(1);
}

.research-block h3{
    color: var(--White, #FFF);
    font-family: 'Aspekta-350';
    font-size: 26px;
    font-weight: 350;
    line-height: 100%;
    z-index: 1;
    transition: color 0.4s ease;
}

.research-block .cell-content{
    color: var(--Dark-Blue, #001856);
    font-family: 'Aspekta-350';
    font-size: 16px;
    font-style: normal;
    font-weight: 350;
    line-height: normal;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 1;
}

.research-cell:hover h3{
    color: var(--Dark-Blue, #001856);
}

.research-cell:hover .cell-content{
    opacity: 1;
}

.research-block .cell-content a{
    display: block;
    margin-top: 24px;
    color: #001856;
    font-family: 'Aspekta-300';
    font-weight: 300;
    text-decoration: none;
    
}

.research-cell a{
    display: none;    
}

.research-cell:hover a{
    display: block;    
}

.research-block .cell-content a svg{
    position: relative;
    top: 2px;
    margin-right: 6px;
}

.research-block .cell-content a span{
    text-decoration: none;
	position: relative;
}

.research-block .cell-content a span::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #001856;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.research-block .cell-content a:hover span::after {
	transform: scaleX(1);
}

.research-block .cell-content a svg{
	transition: all 0.2s ease;	
}

.research-block .cell-content a:hover span{
    text-decoration: none;
}

.research-block .cell-content a:hover svg{
	translate: 3px 0;
}

.description {
    font-weight: 300;
    font-size: 20px;
    line-height: 26px;
    max-width: 100%;
}

.button-container {
    margin-top: 5px;
}

.cta-button {
    display: inline-block;
    padding: 20px 40px;
    background-color: var(--sky-blue);
    color: var(--dark-blue);
    border: none;
    cursor: pointer;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    text-align: center;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.cta-button:hover {
    background-color: #728aaa;
}

.cta-button:active {
    transform: scale(0.98);
}

/* Footer Section */
.footer {
    background-color: #001a5e;
    color: var(--white);
    padding: 70px 0 56px;
    font-family: var(--font-family);
}

.footer-container {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 74px;
}
.footer-info {
    display: flex;
    flex-direction: column;
    gap: 56px;
}

.footer-newsletter {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-newsletter-title {
    font-family: 'Aspekta-500';
    font-size: 26px;
    font-weight: 500;
    line-height: 1.15;
    margin: 0 0 40px 0;
}

.footer-newsletter-form {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    border-bottom: 1px solid var(--white);
}

.footer-email-input {
    flex: 1;
    background: transparent;
    border: none!important;    
    color: var(--white);
    font-family: var(--font-family);
    font-size: 15px;
    font-weight: 500;
    padding: 10px 0 15px;
    outline: none;
    transition: border-color 0.3s ease;
    width: 100%;
}

.footer-email-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.footer-email-input:focus {
    border-bottom-color: #cce3ec;
}

.footer-submit-btn {
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-submit-btn:hover {
    color: #cce3ec;
}

.wpcf7-form-control-wrap{
    display: block;
    width: 100%;
}
.footer-newsletter .wpcf7-not-valid-tip{
    display: none;
}

.footer-newsletter .wpcf7 form.invalid .wpcf7-response-output, .footer-newsletter .wpcf7 form.unaccepted .wpcf7-response-output, .footer-newsletter .wpcf7 form.payment-required .wpcf7-response-output {
    border: none;
    padding: 0;
    margin: 10px 0 0 0;
    color: #ffb900;
}

.footer-newsletter .wpcf7 form.sent .wpcf7-response-output {
    border: none;
    margin: 10px 0 0 0;
    padding: 0;
}

.footer input:-webkit-autofill,
.footer input:-webkit-autofill:hover, 
.footer input:-webkit-autofill:focus, 
.footer input:-webkit-autofill:active{
    -webkit-box-shadow: 0 0 0 30px #001A5E inset !important;
    -webkit-text-fill-color: white !important;
}
.footer input:-webkit-autofill { 
    -webkit-background-clip: text;
}
.footer input:-webkit-autofill{
    -webkit-text-fill-color: #fff !important;
}
.footer input:-webkit-autofill,
.footer input:-webkit-autofill:hover,
.footer input:-webkit-autofill:focus,
.footer input:-webkit-autofill:active {
    transition: background-color 5500s ease-in-out 0s;
    -webkit-text-fill-color: white !important;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-menu {
    display: flex;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-nav ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-nav li {
    display: flex;
}

.footer-nav a {
    font-family: 'Aspekta-500';
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.footer-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 1px;
    background-color: var(--white);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.footer-nav a:hover::after {
    transform: scaleX(1);
}

.footer-contact {
    font-size: 16px;
    font-weight: 350;
    line-height: 1.5;
}

.footer-contact address {
    display: flex;
    flex-direction: column;
    gap:10px;
    font-style: normal;
    margin: 0;
}

.footer-contact p {
    margin: 0 0 10px 0;
}

.footer-contact a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #cce3ec;
}

.footer-logo {
    display: flex;
    align-items: flex-start;
}

.footer-logo img {
    width: 206px;
    height: auto;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    font-size: 12px;
    font-weight: 500;    
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 15px 15px;   
}

.footer-legal ul{
    list-style-type: none;
    display: flex;
    flex-direction: row;
    gap: 15px 15px;
}

.footer-legal a {
    font-family: 'Aspekta-500';
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
    opacity: 0.5;
}

.footer-legal a:hover {
    opacity: 1;
}

.footer-copyright {
    font-family: 'Aspekta-500';
    margin: 0;
    white-space: nowrap;
    opacity: 0.5;
}

.footer-credit {
    font-family: 'Aspekta-500';
    margin: 0;
    white-space: nowrap;
}

.footer-credit a {
    opacity: 0.5;
}

.footer-credit a:hover {
    opacity: 1;
}

/*Cookie banner*/
.cky-banner-bottom {
    bottom: 0;
    left: 0!important;
    right: 0!important;
}

.cky-consent-container .cky-consent-bar {
	background: rgb(255, 255, 255, 0.3)!important;
    border: none!important;
    padding: 16px 33px!important;
    box-shadow: none!important;   
    transition: background-color 0.3s ease;	
}

.page-template-template-roica .cky-consent-container .cky-consent-bar,
.page-template-template-approach .cky-consent-container .cky-consent-bar,
.research-page .cky-consent-container .cky-consent-bar,
.page-template-template-contact .cky-consent-container .cky-consent-bar,
.wp-singular.page-template-default .cky-consent-container .cky-consent-bar
{
	background: #535b8c!important;
}

.scrolled .cky-consent-container .cky-consent-bar {
	background: #535b8c!important;
}

.cky-custom-brand-logo-wrapper, .cky-notice .cky-title, .cky-notice-des, .cky-notice-btn-wrapper {
    padding: 0!important;
}
.cky-notice .cky-title {
    margin: 0!important;
}
.cky-notice-btn-wrapper {
    margin-top: 2px!important;
}
.cky-notice-des p {
	color: var(--White, #FFF)!important;
	font-family: 'Aspekta-350'!important;
	font-size: 13px!important;
	font-style: normal!important;
	font-weight: 350!important;
	line-height: normal!important;
}
.cky-notice-des p a{
    color: #fff!important;
	text-decoration: underline!important;
}

.cky-notice-des p a:hover{
	text-decoration: none!important;
}

.cky-notice-btn-wrapper .cky-btn {
    border: 1px solid var(--White, #FFF)!important;
	color: var(--White, #FFF)!important;
	font-family: 'Aspekta-300'!important;
	font-size: 15px!important;
	font-style: normal!important;
	font-weight: 300!important;
	line-height: normal!important;
	border-radius: 0!important;
}

.cky-notice-btn-wrapper .cky-btn:hover{
	background: #fff!important;
	color: #001856!important;
	opacity: 1!important;
}

.cky-notice-btn-wrapper .cky-btn.cky-btn-accept{
	background: var(--Sky, #CCE3EC)!important;
	border: 1px solid var(--Sky, #CCE3EC)!important;
	color: #001856!important;
}
.cky-notice-btn-wrapper .cky-btn.cky-btn-accept:hover{
	border: 1px solid #001856!important;
	background: #001856!important;
	color: #fff!important;
}

.cky-consent-bar .cky-banner-btn-close {
    top: 15px!important;
}

.cky-consent-bar .cky-banner-btn-close img {
    height: 13px!important;
    width: 13px!important;
    margin: 0;
	display:none;
}

.cky-consent-bar .cky-banner-btn-close:before{
	content: "\00D7";
	color: #fff;
	font-size: 28px;
	font-family: 'Aspekta-300'!important;
	font-weight: 300!important;
}
.cky-consent-bar .cky-banner-btn-close:hover:before{
	color:#001856;
}

.cky-modal {
	border-radius:0!important;;
}

.cky-prefrence-btn-wrapper .cky-btn-preferences, .cky-prefrence-btn-wrapper .cky-btn-reject {
    color: #001856!important;
    background: transparent;
    border: 2px solid #001856!important;
	border-radius:0!important;;
}

.cky-prefrence-btn-wrapper .cky-btn-accept {
    background:#001856!important;
    color: #ffffff;
    border: 2px solid #001856!important;
	border-radius:0!important;;
}

.no-research .research-mnu, .no-research .login-btn, .no-research .research-block{
	display: none;
}

@media (min-width: 380px) {
	.cky-notice-btn-wrapper{
		flex-direction: row!important;
		gap: 8px;
	}
	.cky-notice-btn-wrapper .cky-btn {
		padding: 8px 4px!important;
		font-size: 13px!important;
	}
	.cky-notice-btn-wrapper .cky-btn-accept {
        margin-top: 10px!important;
    }
}

@media (max-width: 379.98px) {
	.cky-consent-container .cky-consent-bar {
		background: #535b8c!important;
		border: none!important;
		padding: 20px 29px!important;
		box-shadow: none!important;    
	}
}

/* Tablet - Medium screens (768px and up) */
@media (min-width: 768px) {
    .content-wrapper {
        padding: 0 55px;
    }

    .nav-menu {
        padding: 30px 55px;
    }

    .user-account-dropdown {
        right: 0;
    }

    .hero {
        padding: 38px 0;
        background-position: 70% center;
    }  
    
    .animated-text .text-container{
        margin: 73px 0;
        padding-top: 41px;
        font-size: 32px;
    }

    /*home research */
    .research-grid{
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .research-cell{
         padding: 49px 55px 51px;
         overflow: hidden;
    }

    .research-cell:nth-child(2n+1){
        border-right: 1px rgb(255, 255, 255, 0.5) solid;
    }

    .research-block h2{
        font-size: 24px;
        line-height: 100%;
        padding: 35px 55px 36px;
    }

    .research-block h3{
        font-size: 32px;
        height: 66px;
    }

    .headline {
        font-size: 50px;
        line-height: 58px;
        max-width: 80%;
        padding-bottom: 189px;
    }

    .description {
        font-size: 24px;
        line-height: 31px;
        max-width: 75%;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 0.9375rem;
    }

    .footer {
        padding: 85px 0 70px;
    }

    .footer-logo img {
        width: 244px;
    }
    .footer-newsletter{
        max-width: 480px;
    }

    .footer-newsletter-title {
        font-size: 32px;
        line-height: 1.15;
    }

    .footer-contact {
        font-size: 20px;
    }

    .footer-container {
        gap: 78px;
    }

    .footer-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
    }

    .footer-info {
        gap: 78px;
    }

    .footer-nav a {
        font-size: 24px;
    }

    .footer-bottom {
        gap: 52px;
        padding-top: 30px;   
    }

    .footer-legal {
        gap: 15px 48px;
    }

    .footer-legal ul{
        gap: 15px 48px;
    }

    /*Cookie banner*/
	.cky-consent-container{
		margin: 0 auto 42px!important;
	}
    .cky-banner-bottom {		
		max-width: 1440px;
		margin: 0 auto;
	}
	
    .cky-consent-container .cky-consent-bar {
		padding: 0 55px;
		padding: 20px 68px 20px 29px!important;		
	    max-width: 1440px!important;
		margin: 0 55px!important;
		position: relative;
	}
	
	.cky-notice-group {
		display: flex;
		flex-direction: column;
		align-items: flex-start!important;
		justify-content: space-between;
		font-size: 14px;
		line-height: 24px;
		font-weight: 400;
	}
	
	.cky-notice-btn-wrapper {
		margin-top: 10px!important;
		margin-left: 0!important
	}
	
	.cky-notice-des p {
		font-size: 15px!important;
	}
	
	.cky-notice-btn-wrapper .cky-btn {
		padding: 8px 8px!important;
		font-size: 15px!important;
		margin-top: 0px!important;
	}
	
	.cky-notice-btn-wrapper .cky-btn-accept {
        margin-top: 0px!important;
    }

}

/* Desktop - Small screens (1024px and up) */
@media (min-width: 1024px) {  

    /* Navigation Menu - Desktop */
    .nav-hamburger {
        display: none;
    }

    .nav-menu {
        position: static;
        display: flex;
        flex-direction: row;
        align-items: center;
        background-color: transparent;
        padding: 0;
        gap: 9px;
        top: auto;
    }

    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu ul{
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 9px;
    }

    .nav-menu ul li:not(.login-btn){
        margin-right: 21px;
    }

    .nav-menu a {
        font-size: 15px;
        font-family: 'Aspekta-500';
        color: #FFF;
        line-height: 16px;        
    }

    .nav-menu li.login-btn a{
        border: 1px solid var(--White, #FFF);
        padding: 12px 17px;
        text-align: center;
    }

    .nav-menu li.login-btn a:hover{
        background-color: #fff;
        color:#001A5E;
    }

    .user-account-dropdown {
        position: absolute;
        top: calc(100% + 10px);
    }

    .user-account-item {
        margin-left: auto;
    }

    .nav-container.active {
        background-color: transparent;
    }    

    .hero {
        padding: 38px 0;        
        background-position: center center;
    }

    /*plain text*/
    .plain-text p, .plain-text h1, .plain-text h2, .plain-text h3, .plain-text h4, .plain-text h5, .plain-text h6{
        margin-bottom: 30px;
    }

    .plain-text ul {
        margin-left: 40px;
    }

    .plain-text ul{
         margin-bottom: 30px;
    }

    .plain-text ul li{
        margin-bottom: 15px;
    }
    
    /* home animated text */
    .animated-text .text-container{
        margin: 89px 0;
        padding-top: 41px;
        font-size: 42px;
    }

    /*home research*/
    .research-cell{
        padding: 93px 55px 125px;
        border-right: 1px rgb(255, 255, 255, 0.5) solid;
    }

    .research-cell:last-of-type{
        border-right: 0px rgb(255, 255, 255, 0.5) solid;
    }

    .research-block h2{
        font-size: 30px;
        padding: 41px 55px 42px;
    }   

    .research-block h3{
        font-size: 42px;
        height: 82px;
    }

    .research-block .cell-content{
        font-size: 20px;
    }
	
    .headline {
        font-size: 65px;
        line-height: 75px;
        max-width: 72%;
        padding-bottom: 169px;
    }

    .description {
        font-size: 26px;
        line-height: normal;
        max-width: 60%;
    }

    .cta-button {
        padding: 1.125rem 2.25rem;
        font-size: 0.9375rem;
    }

    .footer-info{
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }

    .footer-newsletter-title {
        font-size: 36px;
    }

    .footer-nav a {
        font-size: 20px;
    }    

    .footer-logo img {
        max-width: 297px;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
        gap: 52px;
        padding-top: 30px;   
    }

    .footer-legal {
        gap: 15px 27px;
    }

    .footer-legal ul{
        gap: 15px 27px;
    }  

	/*cookie banner*/
	.cky-notice-group {
		flex-direction: row;
		gap: 44px;
	}
}

@media (min-width: 1149px) {
    .nav-container img {
        height: 49px;
    }

   /*home researchg*/
   .research-grid{
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }

    .footer-newsletter-title {
        font-size: 42px;
        line-height: 48px;
    }
    .footer-submit-btn {
        padding-right: 5px;
    }
    .footer-submit-btn:hover {
        padding-right: 0px;
    }
    .footer-contact address {
        gap: 15px;
    }
    .footer-nav {
        gap: 0;
    }
    .footer-nav a {
        font-size: 30px;
        line-height: 50px;
    }
    .footer-legal a{
        font-size: 15px;
        line-height: 20px;
    }

    .footer-copyright {
        font-size: 15px;
        line-height: 20px;
    }

    .footer-credit {
        font-size: 15px;
        line-height: 20px;
    }
}

/* Large screens (1280px and up) */
@media (min-width: 1280px) {
    .headline {
        max-width: 65%;
    }
}

/* Extra large screens (1440px and up) */
@media (min-width: 1440px) {
    .headline {
        max-width: 56%;
    }

    .description {
        max-width: 50%;
    }
}
