/*
    Theme Name: Matrix Internet
    Theme URI: 
    Author: Matrix Internet Development Team
    Author URI: https://www.matrixinternet.ie/who-we-are/
    Description: This theme is for developing themes with full customized UX/UI
    Version: 1.0
    License: GNU General Public License v2 or later
    License URI: http://www.gnu.org/licenses/gpl-2.0.html
    Tags: Responsive
    Text Domain: matrixinternet2023
*/


/* Fonts */

@font-face {
    font-family: 'Hanken Grotesk';
    src: url('fonts/HankenGrotesk/HankenGrotesk-Regular.woff2') format('woff2'),
    url('fonts/IHankenGrotesk/HankenGrotesk-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Hanken Grotesk';
    src: url('fonts/HankenGrotesk/HankenGrotesk-Medium.woff2') format('woff2'),
    url('fonts/HankenGrotesk/HankenGrotesk-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Hanken Grotesk';
    src: url('fonts/HankenGrotesk/HankenGrotesk-SemiBold.woff2') format('woff2'),
    url('fonts/HankenGrotesk/HankenGrotesk-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'Space Grotesk';
    src: url('fonts/SpaceGrotesk/SpaceGrotesk-Regular.woff2') format('woff2'),
    url('fonts/SpaceGrotesk/SpaceGrotesk-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Accessiblity */
a:focus, 
button:focus {
    outline: none;
    border: 1px solid;
}

/* General Styles */
html,
body{
    max-width: 100%;
    overflow-x: hidden;
    margin: 0;
}

html{  margin-top:0!important; }

.container{
    max-width: 1240px;
    margin: 0 auto;
}

header{
    font-family: Hanken Grotesk, sans-serif;
    top: 0px;
    z-index: 3;
    width: calc(100% - 48px);
    padding:24px;
    position: relative;
    background-color: transparent;
}

.header_overlay{
    position: absolute;
    transform: translateY(-200px);
    transition-duration: 0.75s;
    background-color: #fff;
    width: 100%;
    height: 100%;
    left: 0;
    display: none;
}

header .container{
    display: flex;
    position: relative;
    z-index: 1;
    max-width: 1280px;
    border-radius:8px;
    box-shadow: 0 12px 20px 0 rgba(208, 219, 229, 0.25);
    padding:24px;
    background: rgba(255, 255, 255, 0.10);
}

.home header .container{
    background: rgba(255, 255, 255, 0.60);
}

header nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#menu{
    display: flex;
    align-items: center;
    list-style-type: none;
}

.menu-item{
    margin: 0 28px;
}

.menu-item{
  text-decoration: none;
  display: inline-block;
  position: relative;
  color: #000;
  padding-bottom: 5px;
}

.sub-menu .menu-item::before {
      display: none;
}

.cta_button.menu-item::before{
    display: none;
}

.menu-item:hover::before, .menu-item:active::before, .menu-item:focus::before {
  width: 100%;
}

.menu-item a{
    font-family: Hanken Grotesk, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px; /* 137.5% */;
    text-decoration: none !important;
    transition-duration: 0.75s;
}

/*.sticky .menu-item a{
    color: #fff;
}*/

.menu-item a:hover{
    text-decoration: none !important;
}

.cta_button.menu-item a{
    transition-duration: 0.75s;
}

#main-content{
    margin-top:0px;
}

.home #main-content{
    margin-top:100px;
}

.single-post #main-content{
    margin-top:16px;
}

header.scrolled .header_overlay {
    position: absolute;
    transform: translateY(0);
    transition-duration: 0.75s;
    background-color: #fff;
    width: 100%;
    height: auto;
    left: 0;
    top: 0;
}

header.scrolled .menu-item a {
    color: #3E4883;
    transition-duration: 0.75s;
}

header.scrolled .cta_button.menu-item a {
    color: #21282E;
    transition-duration: 0.75s;
    background-color: #FBAD26;
    border: 1px solid #FBAD26;
}

header.scrolled .cta_button.menu-item a:hover {
    transition-duration: 0.75s;
    color: #21282E;
}

header.scrolled #logo{
    opacity: 0;
    position: absolute;
}

#site_logo_sticky {
    transition-duration: 0;
    opacity: 0;
    position: absolute;
    transition-delay: 0;
}

header.sticky.make_sticky #site_logo_sticky {
    position: static;
    opacity: 1;
    transition-duration: 0.3s;
    transition-delay: 0.3s; 
    max-width: 160px;
}

header.sticky.make_sticky #logo{
    display: none;
}

header.scrolled .hamburger .line{
    background-color: #21282E;
}

.menu_open header.scrolled .hamburger .line{
    background-color: #fff;
}

.menu_open header.scrolled #logo{
    opacity: 1;
}

.menu_open header.scrolled #site_logo_sticky {
    display: none;
}

body.menu_open #logo{
    display: none;
}

body.menu_open #site_logo_sticky{
    opacity: 1;
    max-width: 160px;
}

/* Menu CSS */
.hamburger{
    position: relative;
    z-index: 4;
}

.hamburger .line {
    width: 40px;
    height: 3px;
    background-color: #21282E;
    display: block;
    margin: 8px auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

header.scrolled .hamburger .line {
    background-color: #fff;
}

.sticky .hamburger .line{
    background-color: #FFF;
}

.sticky.make_sticky .hamburger .line{
    background-color: #003180;
}

.hamburger:hover{
  cursor: pointer;
}

.hamburger.is-active .line:nth-child(2){
  opacity: 0;
}

.hamburger.is-active .line:nth-child(1){
  -webkit-transform: translateY(13px) rotate(45deg);
  -ms-transform: translateY(13px) rotate(45deg);
  -o-transform: translateY(13px) rotate(45deg);
  transform: translateY(13px) rotate(45deg);
}

.hamburger.is-active .line:nth-child(3) {
    -webkit-transform: translateY(-10px) rotate(-47deg);
    -ms-transform: translateY(-10px) rotate(-47deg);
    -o-transform: translateY(-10px) rotate(-47deg);
    transform: translateY(-10px) rotate(-47deg);
}

.mobile {
    display: none;
    background: #FFF;
    border-radius: 8px;
    margin: 10vh auto;
    overflow: hidden;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    z-index: 2;
    padding-top: 80px;
    margin-top: 0;
}

.mobile.open {
    display: block;
    z-index: 3;
}

html.menu_open,
body.menu_open{
   max-height: 100%;
   overflow: hidden;
}

.mobile .mobile-controls {
    background: #ff7c00;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 50px;
}

.mobile .mobile-controls button {
    background: none;
    border: 1px solid #fff;
    border-radius: 8px;
    color: #fff;
    height: 40px;
    padding: 0 15px;
    margin: 10px 15px;
}

.mobile button:hover {
     cursor: pointer;
}

.mobile .mobile-controls button:hover {
     background: #fff;
     color: #008A80;
}

.mobile .mobile-controls .back-button {
     display: none;
     align-items: center;
     margin-left: 40px;
}

.mobile .fa-chevron-right{
   color: #008A80;
   font-size: 16px;
}

.mobile .mobile-menu {
     display: none;
     height: 100%;
     left: 0;
     position: absolute;
     width: 100%;
     z-index: 10;
}

.mobile ul {
     margin: 0;
     padding: 0;
     width: 100%;
     position: absolute;
     transition: 0.25s;
}

.mobile li {
    display: flex;
}

.mobile li.cta_button {
    border-bottom: 0 none;
    padding-right: 0;
}

.mobile li button {
    height: 100%;
    background: none;
    border: 0;
    flex: 1;
    text-align: right;
    padding: 10px 15px;
    position: absolute;
    right: 10%;
}

.mobile li:hover > button {
     color: #fff;
}

.mobile div > ul {
     top: 0;
     left: 0;
}

.mobile div > ul ul {
     display: none;
     top: 0;
     left: 100%;
}

.menu-item .fa-chevron-right:before {
    color: #090093;
}

/* Breadcrumbs */
.breadcrumbs_container {
    display: flex;
    background-color: #EBF7FC;
    background-color: #EBF7FC;
}

.single-post .breadcrumbs_container{
    padding-top:56px;
}

.breadcrumbs_container .container {
    width: 100%;
    max-width: 1080px;
    margin:auto;
}

.breadcrumbs_container ul{
    display: flex;
    align-items: center;
    list-style-type: none;
    padding:0;
}

.breadcrumbs_container ul li:first-child,
.breadcrumbs_container ul li:first-child a{
    padding-left: 0;
}

.breadcrumbs_container ul li{
    padding: 0 16px 0 0;
    font-family: Blinker;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px; 
    background-image: url(images/breadcrumb-arrow.svg)!important;
    background-repeat: no-repeat;
    background-position: 100% 50%;
}

.breadcrumbs ul li:nth-child(3){
    color: #393955;
    font-weight: 700;
}

.breadcrumbs_container ul li:last-child{
    background-image: none!important;
    color: var(--Secondary-Slate-500, #333E48);
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.breadcrumbs_container ul li a {
    color: #393955;
    font-family: Montserrat;
    font-weight: 400;
    text-align: center;
    text-decoration: none;
    padding: 0 15px;
}

.column_bg{
    height: 100vh;
    background-repeat: no-repeat;
    background-position: left;
}

.column_owl_carousel{
    display: block;
}

.owl-carousel{
    display: flex !important;
    align-items: center;
}

.owl-nav{
    display: flex;
    flex-direction: column;
    font-size: 20px;
    justify-content: space-between;
}

.owl-dots{
    position: absolute;
    right: 6px;
    display: flex;
    flex-direction: column;
}

.owl-theme .owl-dots .owl-dot span{
    background: #fff !important;
    border: 3px solid #3E4883;
}

.owl-theme .owl-dots .owl-dot.active span{
    background: #3E4883 !important;
    border: 3px solid #3E4883;
}

.owl-theme .owl-nav [class*=owl-]:hover{
    background-color: transparent !important;
}

.carousel_item{
    padding-right: 60px;
}

.column_container {
    max-width: 608px;
    padding-right: 10%;
    margin-left: auto;
}

.section_cta.column a {
    display: inline-block;
    color: var(--Primary-Slate-600, #21282E);
    font-family: Blinker;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px; 
    background-color: #FBAD26;
    text-decoration: none;
    padding: 15px 30px;
    margin-top: 16px;
}

.section_cta.column a:hover {
    background-color: #F1607A;
}

h1{
    font-family: "Cairo";;
    font-weight: 400;
    color: var(--Primary-Blue-500, #0600EB);
    font-size: 60px;
    line-height: 64px;
    max-width: 330px;
    margin-bottom: 25px;
}

h1 span{
    display: block;
    color: #73E0A4;
    font-weight: 700;
    display: inline-block;
}

h2{
    color: #3E4883;
    font-family: Blinker;
    font-weight: 600;
    font-size: 48px;
    line-height: 60px;
    margin-top: 0;
    margin-bottom: 20px;
}

h4{
    color: #fff;
    font-family: Blinker;
    font-weight: 600;
    font-size: 36px;
    line-height: 45px;
    margin-top: 0;
    margin-bottom: 20px;
}

h5{
    color: #fff;
    font-family: Blinker;
    font-weight: 600;
    font-size: 24px;
    line-height: 30px;
    margin-top: 0;
    margin-bottom: 0px;
}

p{
    max-width: 1000px;
    font-size: 18px;
    line-height: 31.5px;
    margin: 0 auto;
}


/* Header */

#logo_container {
    width: 100%;
    float: left;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    margin-right: 32px;
}

#logo_container img{
    max-height:100px;
}

#logo_container a{
    display: flex;
    align-items: center;
}


/* Footer */

footer{
    background-color: #001D4C;
    color: #FFF;
    font-size: 14px;
    padding:0 24px;
}

#footer_logo{
    max-width: 98px;
}

.footer_menu_container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

footer ul {
    display: flex;
    list-style-type: none;
    padding-left: 0;
    align-items: center;
}

footer .menu-item  a{
    font-size: 14px;
    line-height: 24.5px;
    text-decoration: none;
    text-transform: none;
}

.footer_bottom a{
    color: #444;
    text-decoration: none;
}

.footer_bottom .menu_container a{
    border-bottom: 0 none;
}

.copy_text p{
    color: #444;
    font-size: 14px;
}

.copy_text a:hover{
    font-weight: 600;
}


/* Single Post */

.single-post main{
    position: relative;
    background-color:#EBF7FC;
    margin: auto;
}

.partner-template-default .homeslider_section,
.single-post .homeslider_section{
    border-radius:8px;
    background: linear-gradient(90deg, var(--global-color-cobalt-blue-400, #003180) 0%, var(--global-color-deepink-300, #001435) 100%);
    width: 100%;
    margin: auto;
    max-width: 100%;
    padding-top: 160px;
    margin-top: -166px;
    border-radius: 0;
    padding-bottom:24px;
}

/* Default Page Template */

.page_template{
    background-color: #ebf7fc;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: contain;
    padding-top: 120px;
    padding-bottom: 20px;
}

.page_container{
    flex-direction: column;
    max-width: 1320px;
    padding: 2.5% 5%;
    padding-top: 0;
    margin: 0 auto;
}

.page-template-default header{
    background-color: #fff;
}

.page-template-default #logo{
    display: none;
}

.page-template-default #site_logo_sticky {
    display: block;
    opacity: 1;
    padding-bottom: 10px;
}

.page-template-default .menu-item a {
    color: #3E4883;
}

.page-template-default .cta_button.menu-item a {
    color: #fff;
    transition-duration: 0.75s;
    background-color: #EFAC14;
}

#default_page_template .page_container {
    padding-top: 2.5%;
    margin-bottom: 7.5%;
}

#default_page_template img{
    display: block;
    margin: 0 auto;
}

.page_container h1,
.page_container h2,
.page_container h3,
.page_container h4,
.page_container p,
.page_container ul{
    width: 100%;
    max-width: 100%;
    text-align: left;
}

.page_container h1{
    margin-left: 0;
    z-index: 2;
    width: 100%;
    max-width: max-content;
    color: var(--Dark-Blue, #1C2A4A);
    font-family: Lust;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 54px;
}

.page_container h2 {
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    margin-top: 25px;
}

.page_container p {
    font-weight: 400;
    font-size: 18px;
    line-height: 31.5px;
    margin-bottom: 25px;
}

.page_container h3{
    color: #3E4883;
    font-weight: 600;
    font-size: 36px;
    line-height: 45px;
    margin-bottom: 10px;
}

.page_container h4{
    color: #444444;
    font-size: 24px;
    line-height: 42px;
    margin-bottom: 40px;
}

.page_container ol,
.page_container ul{
    padding-left: 20px;
}

.page_container li{
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 25px;
}

/* Our Team page template */
#our_team_page_template .page_container {
    width: 100%;
    max-width: 1620px;
}

.our_team_container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between;
    margin: 80px 0;
}

.page_editor{
    width: 100%;
}

.our_team_item {
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 485px;
    max-width: 80%;
    margin: 0 auto;
    flex: calc(25% - 90px);
    margin-right: 30px;
    margin-bottom: 30px;
    position: relative;
    border-radius: 0 0 0 40px;
}

.our_team_item:nth-child(4n+4){
    margin-right: 0;
}

.our_team_item_info {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 73, 90, 0.85);
    color: #fff;
    padding: 15px 40px;
    border-radius: 0 0 0 40px;
    margin-bottom: 0;
}

.page_container h2.our_team_item_name{
    color: #fff;
    font-weight: 600;
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 7px;
}

.our_team_item_desc{
    font-size: 14px;
    line-height: 24px;
}

.team_projects{
    background-color: #DCEED2;
    padding-top: 7%;
    padding-bottom: 10%
}

.team_projects .container{
    width: 100%;
    max-width: 1620px;
    flex-direction: column;
    padding: 0;
}

.team_projects h2{
    width: 100%;
    color: #3E4883;
    line-height: 50px;
    margin-bottom: 60px;
}

.team_projects .owl-carousel{
    width: 100%;
    max-width: 1620px;
    margin: 0 auto;
}

.team_projects .project_item{
    height: 540px;
}

.team_projects .owl-dots {
    flex-direction: initial;
    right: 0;
    left: 0;
    bottom: -60px;
    justify-content: center;
}


/* Single Person */

.back_container{
    width: 1650px;
    padding: 0 15px;
    max-width: calc(100% - 30px);
    align-items: flex-start;
    text-decoration: none;
    padding: 0;
    margin-bottom: 80px;
}

.back_container a{
    display: flex;
    align-items: center;
    color: #008A80;
    font-weight: 700;
    font-size: 18px;
    line-height: 27px;
    text-decoration: none;
}

.back_container a img{
    margin-right: 20px;
}

.single_person_container {
    padding-bottom: 10vh;
    margin: 0 auto;
}

.single_person_container .column_left{
    width: calc(60% - 5%);
    max-width: 794px;
    align-items: flex-start;
    padding-left: 0;
    padding-right: 5%
}

.single_person_container .column_right {
    width: 40%;
    height: 74vh;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.single_person_container h1{
    color: #3E4883;
    font-weight: 700;
    font-size: 64px;
    line-height: 96px;
    margin-top: 0;
    margin-bottom: 0;
}

.person_position{
    font-weight: 700;
    font-size: 24px;
    line-height: 42px;
    color: #444444;
}

.single_person_container h3{
    font-weight: 400;
    font-size: 24px;
    line-height: 42px;
    color: #444444;
}

.single_person_container p{
    margin-left: 0;
    margin-bottom: 30px;
}

.single_person_container .editor p:last-child{
    margin-bottom: 0;
}

.single_person_links {
    list-style-type: none;
    padding-left: 0;
}

.single_person_links a{
    display: flex;
    align-items: center;
    background-color: transparent;
    color: #008A80;
    font-weight: 700;
    font-size: 18px;
    line-height: 27px;
    text-transform: none;
    padding-left: 0;
    margin-top: 0;
}

.single_person_links a img{
    margin-right: 25px;
}


/* Porfolio Template 1 */

#porfolio_template .page_container{
    display: flex;
    align-items: flex-start;
    max-width: calc(100% - 30px);
    padding: 0 15px;
    margin: 0 auto;
}

.editor{
    max-width: 1118px;
}

#porfolio_template .page_container.filter_container{
    flex-direction: row;
    align-items: center;
    margin: 80px auto;
}

.filter_container_left{
    display: flex;
    align-items: center;
}

.filter_container_left ul {
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
    margin-left: 25px;
}

.filter_option{
    color: #84C062;
    text-transform: uppercase;
    padding: 12px 30px;
    border: 2px solid #84C062;
    border-radius: 30px;
    margin-right: 10px;
    cursor: pointer;
}

.filter_option:hover{
    background-color: #84C062;
    color: #fff;
}

.filter_container_right{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.filter_container_right img{
    cursor: pointer;
    margin-top: 5px;
    margin-right: 15px;
}

#porfolio_template .projects_container{
    padding-bottom: 80px;
    margin-bottom: 0;
}

#porfolio_template .project_item {
    flex: calc(50% - 30px);
    height: 641px;
    max-height: 60vh;
    border-radius: 0 0 0 80px;
    margin-right: 30px;
    margin-bottom: 30px;
}

#porfolio_template .project_item:nth-child(4n+3) {
     flex: calc(60% - 30px);
}

#porfolio_template .project_item:nth-child(4n+4) {
     flex: calc(40% - 30px);
}

#porfolio_template .project_item:nth-child(2n+2){
    margin-right: 0;
}

#porfolio_template .project_item:last-child{
    margin-right: 0;
}

#porfolio_template .project_item .project_info{
    width: 60%;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 73, 90, 0.85);
    color: #fff;
    padding: 30px 60px;
    padding-right: 30px;
    border-radius: 0 80px 0px 80px;
    margin-bottom: 0;
}

#porfolio_template .project_item .project_info a{
    text-decoration: none;
}

#porfolio_template .project_item .project_info h2{
    color: #fff;
    font-weight: 600;
    font-size: 36px;
    line-height: 45px;
    max-width: 422px;
    margin-left: 0;
}

#porfolio_template .project_item .project_info p{
    color: #fff;
    max-width: 422px;
    margin-left: 0;
}

/* Single Project */

#single_project_template{
        background-image: none;
        padding-top: 0;
    }

.single_project_container {
    display: flex;
    justify-content: start;
    align-items: flex-start;
    width: 100%;
    max-width: calc(1620px - 0%);
    margin: 0 auto;
}

/*    .single_project_banner{
    height: 935px;
    max-height: 87vh;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}*/

.single_project_banner {
    height: 935px;
    max-height: 87vh;
    background-size: contain;
    background-repeat: no-repeat;
    position: relative;
    background-position: left;
    max-width: 1620px;
    margin: 0 auto;
    background-color: #fff;
}

.green_vector{
    max-width: 100%;
    position: relative;
    top: -1px;
}

.single_project_title_container{
    direction: flex;
    flex-direction: column;
    max-width: 1620px;
    margin: 0 auto;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.single_project_title{
    width: 100%;
    max-width: 700px;
    background-color: rgba(0, 73, 90, 0.9);
    color: #fff;
    font-size: 64px;
    line-height: 96px;
    padding: 30px 60px;
    border-radius: 0 80px 0 0;
    margin: 0;
}

.single_project_location{
    display: block;
    color: #fff;
    font-weight: 500;
    font-size: 36px;
    line-height: 36px;
}

.single_project_info{
    background-color: #F3F9EF;
    padding-top: 5%;
}

.single_project_info .single_project_container {
    align-items: center;
}

.single_project_info ul{
    list-style-type: none;
    padding-left: 0;
    margin-top: 0;
    margin-right: 10%;
    margin-bottom: 0;
}

.single_project_info li{
    color: #444;
    font-weight: 400;
    font-size: 18px;
    line-height: 31.5px;
    margin-bottom: 25px;
}

.single_project_info li:last-child{
    margin-bottom: 0;
}

.single_project_info li span{
    margin-left: 7.5px;
}

.single_project_info a{
    display: inline-block;
    background-color: #3E4883;
    color: #fff;
    font-weight: 800;
    font-size: 18px;
    line-height: 18px;
    text-decoration: none;
    padding: 15px 30px;
    margin-top: 30px;
}

.single_project_info img{
    max-width: 100%;
    position: relative;
    top: 120px;
}

.single_project_info2{
    background-color: #fff;
    padding-top: 10%;
    padding-bottom: 5%;
}

#single_project_template h3{
    color: #3E4883;
    font-weight: 600;
    font-size: 40px;
    line-height: 50px;
    margin-top: 0;
}

.single_project_gallery{
    background-color: #F6F6F6;
    padding: 120px 0;
}

.single_project_gallery h2{
    max-width: 1620px;
    margin: 0 auto;
    margin-bottom: 20px;
}

.single_project_gallery_container{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1620px;
  margin-bottom: 90px;
}

.single_project_gallery_item {
    flex: calc(50% - 30px);
    height: 720px;
    background-repeat: no-repeat;
    background-size: cover;
    margin-right: 30px;
    margin-bottom: 30px;
}

.single_project_gallery_item:nth-child(2n+2){
    margin-right: 0;
}

.team_projects .carousel_item a {
    display: flex;
    justify-content: center;
    align-items: end;
    width: 100%;
    height: 100vh;
    max-height: 350px;
    text-decoration: none;
}

.carousel_item_title{
    width: 100%;
    color: #fff;
    font-size: 20px;
    line-height: 30px;
    background-color: rgba(0, 73, 90, 0.85);
    line-height: 25px;
    padding: 15px 25px;
    margin: 0 auto;
}


/* Carrers Page */

.careers_container{
    display: flex;
    align-items: flex-start;
}

#careers_template .page_container {
    max-width: 100%;
    align-items: flex-start;
}

.tabs {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 520px;
    margin-right: 30px;
}

.tab {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #fff;
    padding: 7.5% 10%;
    border-radius: 8px;
    margin-bottom: 30px;
    cursor: pointer;
}

.job_title{
    color: #3E4883;
    font-family: Spectral;
    font-weight: 600;
    font-size: 24px;
    line-height: 30px;
}

.job_attributes{
    display: flex;
    list-style-type: none;
    padding-left: 0;
    margin: 20px 0;
}

.job_attributes li{
    background-color: #84C062;
    color: #fff;
    font-weight: 600;
    font-family: Inter;
    font-size: 14px;
    line-height: 17px;
    padding: 10px 16px;
    border-radius: 20px;
    margin-right: 10px;
}

.job_excerpt{
    display: none;
    margin: 20px 0;
    margin-top: 40px;
}

.job_more{
    max-width: fit-content;
    color: #008A80;
    font-family: Inter;
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    text-decoration: none;
    border-bottom: 1px solid #008A80;
    padding-bottom: 1px;
}

.tab.active {
  background-color: #84C062;
  color: white;
}

.tab.active .job_title{
    color: #fff;
}

.tab.active .job_attributes li {
    background-color: #fff;
    color: #008A80;
}

.tab.active .job_more{
    color: #fff;
    border-bottom: 1px solid #fff;
}

.tab-content {
  display: none;
}

.tab-content.active {
    display: block;
    width: calc(100% - 530px);
    background-color: #DCEED2;
    padding: 5% 3%;
    margin-bottom: 5%;
}

.tab-content.active h2{
    margin-top: 20px;
}

.tab-content.active p{
    margin-left: 0;
}

.tab-content.active ul {
    padding-left: 0px;
}

.tab-content.active li {
    background-image: url(/wp-content/themes/matrixinternet2023/images/list_arrow.png);
    background-repeat: no-repeat;
    background-size: 32px;
    background-position: left;
    list-style-type: none;
    padding-left: 50px;
    margin-bottom: 15px;
}

.apply_now {
    background-color: #3E4883;
    color: #fff;
    font-family: Inter;
    font-weight: 700;
    font-size: 18px;
    line-height: 18px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 15px 30px;
    cursor: pointer;
    border: 0 none;
}

.apply_now:hover{
    background-color: #008A80;
}

.popup {
  position: absolute;
  display: none;
  z-index: 1;
}

.popup-content {
    background-color: #84C062;
    padding: 10px;
    width: 50%;
    height: 50vh;
    max-height: 250px;
    position: fixed;
    top: 20%;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 3;
    max-width: 600px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.popup.show {
  display: block;
  position: relative;
}

#closeButton {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    background: transparent;
    border: 0 none;
}

.popup-content form{
    margin-top: 5%;
}

.popup-content form input{
    height: 30px;
}

.popup-content form input[type='submit'] {
    width: 72px;
    height: 36px;
    background-color: #3E4883;
    color: #fff;
    cursor: pointer;
}

/* Newsletter */
.newsletter_section {
    background-color:#D0DBE5;
    animation-duration: 2s;
    background-position: bottom left;
    display: none;
}

.home .newsletter_section{display: block;}

.newsletter_section .section_container {
    justify-content: space-between !important;
    max-width: 1236px;
    flex-wrap: wrap;
    padding: 96px 48px;
    border-right: 1px solid #F2F7FB;
    border-left: 1px solid #F2F7FB;
}

.newsletter_box {
    width: 100%;
    display: flex;
    padding: 24px;
    border-radius: 24px;
    background: #5998FF;
    box-shadow: 0 20px 24px -4px rgba(16, 24, 40, 0.08), 0 8px 8px -4px rgba(16, 24, 40, 0.03);
    overflow: hidden;
}

.newsletter_section .column_left{
    padding: 60px 40px;
    width:40%;
}

.newsletter_section .column_right {
    width:60%;
    position: relative;
}

.newsletter_section .column_right img {
    position: absolute;
    bottom:-24px;
    width: 100%;
}

.newsletter_section .row_1 {
    display: flex;
    flex-wrap: wrap;
    padding-top:40px;
}

.newsletter_section .form_input{
    display: flex;
    width: 100%;
}

.form_input label{
    color: #FFF;
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 5px;
}

.newsletter_section h2 {
    color: #001435;
    font-family: "Space Grotesk", sans-serif;
    font-size: 40px;
    font-weight: 500;
    line-height:56px;
    letter-spacing: -1px;
}

.newsletter_section p {
    color:#001435!important;
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    max-width: 500px;
    margin-top:20px;
}

@media only screen and (max-width: 767px) {

      #newletters_list {
        padding-top: 20px !important;
    }

    #newletters_list .section_container{
        flex-direction: column;
    }

   .editor_left_image_right#newletters_list .column_right {
        max-width: 100%;
        margin-left: auto;
        margin-right: 0;
    }

    .editor_left_image_right#newletters_list .column_right img {
        border-radius: 0;
        margin-bottom: 0;
        margin-left: auto;
        margin-right: 0;
    }

}

/* Plugin - Brevo  */
.sib_signup_form input[type="text"], .sib_signup_form input[type="email"] {
    color: #21282E;
    font-family: Montserrat;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    width: 100%;
    max-width: 612px;
    height: 48px;
    background-color: #fff;
    padding-left: 16px;
    border-radius: 4px;
    border: 1px solid #FFF;
    margin-bottom: 0px;
}

.sib_signup_form input[type="text"]:active,
.sib_signup_form input[type="email"]:active {
    outline: none;
}

.sib_signup_form input[type="text"]:focus,
.sib_signup_form input[type="email"]:focus {
    outline: none;
}

.sib_signup_form ::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #59656D;
    font-family: "Hanken Grotesk",sans-serif;
    font-size: 16px;
    font-weight: 400;
}

.sib_signup_form ::-moz-placeholder { /* Firefox 19+ */
    color: #59656D;
    font-family: "Hanken Grotesk",sans-serif;
    font-size: 16px;
    font-weight: 400;
}

.sib_signup_form :-ms-input-placeholder { /* IE 10+ */
    color: #59656D;
    font-family: "Hanken Grotesk",sans-serif;
    font-size: 16px;
    font-weight: 400;
}

.sib_signup_form :-moz-placeholder { /* Firefox 18- */
    color: #59656D;
    font-family: "Hanken Grotesk",sans-serif;
    font-size: 16px;
    font-weight: 400;
}

.accept_subscription {
    display: flex;
    align-items: center;
    margin-top: 15px;
    margin-bottom: 32px;
    color: #FFF;
    font-family: "Hanken Grotesk",sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

#newsletter .accept_subscription{
    margin-bottom:8px;
}

.accept_subscription input {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    margin-bottom: 0;
    margin-left: 0;
}

.accept_subscription a{
    color: #001D4C;
    text-decoration-line: underline;
    display: inline-block;
    margin: 0 3px;
}

.accept_subscription a{color: #9FEFC4;}

.sib-default-btn {
    display: flex;
    padding: 15px 30px;
    justify-content: center;
    align-items: center;
    background: #1C2A4A;
    color: #fff;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px;
    border: 0 none;
    border-radius: 12px;
    cursor: pointer;
}

#newsletter .sib-default-btn-container {
    width: 100%;
}

#newsletter .sib-default-btn {
    width: 100%;
    border-radius: 4px;
    background: #003FA4;
    box-shadow: 0 10px 30px -10px rgba(0, 63, 164, 0.50);
    color:#FFF;
    font-family: "Hanken Grotesk",sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px; 
    letter-spacing:0;
    margin-top:16px;
}

.page-template-contact .sib-default-btn{
    background:  #73E0A4;
    box-shadow: 0 10px 30px -10px #73E0A4;
    color: #001435;
    font-family: "Hanken Grotesk",sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0;
    width: 100%;
    border-radius: 4px;
}

.privacy-consent .wpcf7-list-item {
    margin: 0;
}

.privacy-consent .wpcf7-list-item label {
    display: flex;
    align-items: center;
    gap: 24px;
    cursor: pointer;
}

.privacy-consent input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 56px;
    height: 56px;
    border: 2px solid #fff;
    border-radius: 8px;
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
}

.privacy-consent input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    left: 17px;
    top: 8px;
    width: 14px;
    height: 28px;
    border: solid #fff;
    border-width: 0 4px 4px 0;
    transform: rotate(45deg);
}

.privacy-consent span {
    font-size: 22px;
    line-height: 1.4;
}

.privacy-consent a {
    text-decoration: underline;
}

footer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width:1216px;
    padding:0 32px;
}

footer .desc{
    color: #FFF;
    font-family: Hanken Grotesk, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px; 
    margin-top: 24px;
    max-width: 700px;
    width: 100%;
}

#footer .column_left,
#footer .column_right{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

#footer .column_right a{
    float: left;
}

.footer_logo_container{
    display: flex;
    flex-direction: column;
    max-width: 200px;
}

.footer_logo_text {
    color:#98A2B3;
    font-family: "Hanken Grotesk",sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing:0;
    margin-top: 16px;
}

footer .row_1 {
    padding: 48px 0 0;
}

footer .row_2 {
    padding: 24px 0 64px;
    border-bottom: 1px solid #EAECF0;
}

footer .row_3 {
    padding: 24px 0;
}

footer .menu-item:first-child{
    margin-left: 0;
}

footer .menu-item a {
    color: #FFF;
    font-family: Hanken Grotesk, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0;
}

.follow_container {
    display: flex;
    align-items: center;
    color: #142A3E;
    font-family: Hanken Grotesk, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
}

footer section li {
    padding:0;
}

footer .follow_container ul li:first-child{
    margin-right: 10px;
}

footer .follow_container ul li a{
    float: left;
}

.menu_bottom_left{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#footer_menu_container {
    display: flex;
    align-items: center;
    gap: 16px;
}

.socials_bottom_right {
    display: flex;
    justify-content: center;
    height: fit-content;
    align-items: center;
    gap: 8px;
}

.socials_bottom_right .social{margin: 0;}

.footer_social_icons a{
    display: flex;
    align-items: center;
}

.footer_social_text {
    color: #98A2B3;
    text-align: right;
    font-family: "Hanken Grotesk",sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0;
}

.follow_container span{
    color: var(--Primary-Navy-500, #004383);
    font-family: Hanken Grotesk, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px; 
}

.by_matrix, .by_matrix a,
footer .row_3 .menu-item a {
    font-family: Hanken Grotesk, sans-serif;
    color: #D0DBE5;
    font-size: 14px;
    font-weight: 500;
    line-height:22px;
    letter-spacing: 0;
    text-decoration: none;
}

.by_matrix, .by_matrix a{color:#98A2B3;}

/* Plugin - Add to any share */
.addtoany_shortcode{
    margin-bottom: 0px;
}

.addtoany_list a, .widget .addtoany_list a {
    margin-right: 12px;
}

.addtoany_list.a2a_kit_size_32 a:not(.addtoany_special_service)>span {
    background-color: #3E4883 !important;
    padding: 4px;
    border-radius: 50%;
}


/* Sitemap Page */
.sitemap_section{
    margin: 50px 0;
}

.sitemap_section a{
    display: block;
    color: var(--Primary-Slate-500, #07072B);
    font-family: Hanken Grotesk, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    max-width: 500px;
    text-decoration: none;
    margin-bottom: 10px;
}

.scroll_to_top {
    position: fixed;
    bottom: 75px;
    right: 5%;
    z-index:3;
}


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

    .mobile{
        padding-top: 120px;
    }

}


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

    #logo_container{
        width: auto;
    }

    .mobile{
        position: static;
        display: block;
        height: auto;
        background-color: transparent;
        padding-top: 0;
        margin: 0 auto;
        overflow: visible;
    }

    .mobile .mobile-controls{
        display: none;
    }

    .hamburger{
        display: none;
    }

    .mobile .mobile-menu {
        position: static;
        height: 100%;
        display: flex;
    }

    .menu{
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .mobile ul{
        position: static;
    }

    .mobile li:first-child{
        margin-left: auto;
    }

    .mobile li:last-child{
        margin-left: auto;
        background-color:#003FA4;
        padding: 0;
        font-size: 16px;
        font-weight: 600;
        line-height: 24px;
        letter-spacing: 0.08px;
        transition: all 0.3s ease;
        border-radius: 4px;
        box-shadow: 0 10px 30px -10px rgba(0, 63, 164, 0.50);
        margin-right:0;
    }

    .mobile li{
        background-color: transparent;
        border: 0 none;
        white-space: nowrap;
        position: relative;
        padding-bottom: 0;
    }

     .mobile li:hover>ul {
        display: block;
        position: absolute;
        top: 35px;
        left: 0;
        background-color: transparent!important;
        padding-top: 15px;
        padding-bottom: 25px;
        width: 100%;
        max-block-size: max-content;
    }

    .mobile li.level-2:hover > ul{
        top: 0;
        left: 100%;
    }

    .mobile li.level-2 button {
        -webkit-transform: rotate(0deg) scale(1);
        -moz-transform: rotate(0deg) scale(1);
        -o-transform: rotate(0deg) scale(1);
        -ms-transform: rotate(0deg) scale(1);
    }

    .mobile li.level-3{
        padding-bottom: 0;
    }
    mobile li.level-3 a{
        padding-bottom: 0;
    }

    .mobile li:hover > a,
    footer .menu-item:hover a:before {
        text-decoration: underline;
    }

    .mobile li.level-3 button {
        -webkit-transform: rotate(90deg) scale(1);
        -moz-transform: rotate(90deg) scale(1);
        -o-transform: rotate(90deg) scale(1);
        -ms-transform: rotate(90deg) scale(1);
    }

    .mobile li a {
        color: #FFF;
        font-family: "Hanken Grotesk", sans-serif;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 24px;
        letter-spacing: 0;
        position: relative;
        overflow: hidden;
        padding-bottom:4px;
    }

    .home .mobile li a,
    header.sticky.make_sticky .mobile li a{
        color: #001435;
    }

    .mobile li:last-child a,
    header.sticky.make_sticky .mobile li:last-child a{
        padding:16px 32px;
        color: #FFF;
        font-family: Hanken Grotesk, sans-serif;
        letter-spacing:2px;
        font-size:14px;
        font-weight: 400;
        line-height: 20px;
    }

    .mobile li:last-child:hover{
        background-color:#001435;
        transition: all 0.3s ease;
    }

    .mobile li:last-child a:after{
        display: inline-block;
        content:" ";
        width:16px;
        height:16px;
        background:url(./images/arrow-right-green.svg);
        background-repeat: no-repeat;
        background-size:contain;
        position: relative;
        top: 3px;
        left: 8px;
    }

    .mobile li a:before, 
    .mobile li a:after,
    footer .menu-item a:before,
    footer .menu-item a:after{
      content: "";
      position: absolute;
      transition: transform 0.5s ease;
    }

    footer .menu-item{overflow:hidden;}

    .mobile li a:before,
    footer .menu-item a:before {
      left: 0;
      bottom: 0;
      width: 100%;
      height: 2px;
      background: #003FA4;
      transform: translateX(-100%);
    }

    .mobile li a:hover:before,
    footer .menu-item a:hover:before {
      transform: translateX(0);
    }

    .mobile li.cta_button a:before{
        display: none;
    }

    .mobile li button {
        -webkit-transform: rotate(90deg) scale(1);
        -moz-transform: rotate(90deg) scale(1);
        -o-transform: rotate(90deg) scale(1);
        -ms-transform: rotate(90deg) scale(1);
        position: absolute;
        top: -2px;
        right: -40px;
    }

    .sub-menu{
        background-color: #008A80 !important;
    }

    .sub-menu .menu-item{
        margin-left: 0;
    }

    .mobile .fa-chevron-right {
        font-size: 14px;
    }

    .mobile li.cta_button.current-menu-item a {
        padding: 10px 16px;
    }

    .mobile li.current-menu-item a:after {
        content: "";
        position: absolute;
        transition: transform 0.5s ease;
    }
    
    .mobile li.current-menu-item a:before {
        left: 0;
        bottom: 0;
        width: 100%;
        height: 2px;
        background: #6cabab;
        transform: translateX(-100%);
    }

    .mobile li.current-menu-item{
        border-bottom: 2px solid #6cabab;
    }

    .mobile li:last-child.current-menu-item{
        border-bottom:0;
    }

    .mobile li.current-menu-item a:before {
        left: 0;
        bottom: 0;
        width: 100%;
        height: 2px;
        background: #6cabab;
        transform: translateX(-100%);
    }

    .mobile li:last-child.current-menu-item a:before{
        display: none;
    }

    .mobile li:last-child.current-menu-item a:after{position: relative;}

    .mobile li.cta_button.current-menu-item{
        border-bottom: 0 none;
    }

    .footer_top .column_left{
        width: 60%;
    }
}



@media only screen and (max-width: 1920px) {

    .column_bg{
        max-height: 797px;
    }


    #success_section .column_bg {
        background-size: cover;
    }

    #questions_section {
        background-color: #008A80;
        padding: 6.2% 0;
    }
    
    #questions_section .column_bg {
        background-size: contain;
    }

}


@media only screen and (max-width: 1680px) {

    /* General */ 
    h2{
        font-size: 44px;
        line-height: 56px;
    }

    /* Homepage Template */
    .page_banner h1 {
        font-size: 60px;
        line-height: 68px;
    }


    #success_section .column_bg{
        background-size: contain;
    }

    #questions_section{
        padding: 0;
    }

    #questions_section .column_bg{
        background-size: contain;
    }

    /* Our Team */
    #our_team_page_template .page_container {
        width: 100%;
        max-width: 80%;
        padding: 0;
    }

    .our_team_item{
        flex: calc(33.333% - 60px);
    }

    .our_team_item:nth-child(4n+4) {
        margin-right: 30px;
    }

    .our_team_item:nth-child(3n+3) {
        margin-right: 0px;
    }

    .team_projects .container{
        width: 100%;
        max-width: 80%;
    }

    .team_projects h2{
        margin-bottom: 50px;
    }


} /* End of 1680px */


@media only screen and (max-width: 1540px) {
    /* Our Team */
    .team_projects .project_item{
        height: 400px;
    }
} /* End of 1440px */



@media only screen and (max-width: 1440px) {

    /* Global */    
    h2 {
        font-size: 36px;
        line-height: 44px;
    }

    section h2 {
        font-size: 40px;
        line-height: 50px;
    }

    .page_template{
        padding-top: 10%;
    }

    .page_banner h1 {
        font-size: 52px;
        line-height: 60px;
    }



} /* End of 1440px */


@media only screen and (max-width: 1280px) {

    .container {
        max-width: 90%;
    }

    #logo {
        max-width: 180px;
    }

    header.scrolled #site_logo_sticky{
        max-width: 180px;
    }

    .page_banner h1 {
        font-size: 50px;
        line-height: 58px;
    }

    h2{
        font-size: 32px;
        line-height: 40px;
    }

    #questions_section h3 {
        color: #fff;
        font-weight: 400;
        font-size: 20px;
        line-height: 32px;
    }

    /* Our Team */
    .team_projects .project_item{
        height: 400px;
    }

    /* Newsletter */
    .newsletter_section {
        padding-bottom: 60px;
    }

    .newsletter_section {
        padding: 75px 0;
    }

    .footer_top .section_container {
        padding-bottom: 0;
    }

} /* End of 1280px */


@media only screen and (max-width: 1200px) {
    
    header .container {
        justify-content: center;
        align-items: center;
    }

    #logo_container {
        display: flex;
        justify-content: center;
    }

    .menu {
        align-items: center;
        justify-content: center;
    }

    .menu-item{margin:0 20px;}

    .container {
        max-width: 90%;
        margin: 0 auto;
    }

    section h2 {
        font-size: 30px;
        line-height: 40px;
        max-width: 400px;
    }

    .page_banner{
        height: 50vh;
    }

    /* Newsletter */
    .newsletter_section h2 {
        font-size: 32px !important;
        line-height: 40px !important;
        align-items: flex-start;
    }

    /* Portfolio template 1 */
    #porfolio_template .projects_container {
        max-width: calc(100% - 30px);
        padding: 0 15px;
        padding-bottom: 40px;
    }

    #porfolio_template .project_item {
        height: 40vh;
    }

    #porfolio_template .project_item:nth-child(4n+3) {
         flex: calc(50% - 30px);
    }

    #porfolio_template .project_item:nth-child(4n+4) {
         flex: calc(50% - 30px);
    }

    /* Portfolio Details */
    .single_project_info .single_project_container{
        padding: 5%;
        max-width: 90%;
    }

    footer .column_left img{max-width: 160px;}

} /* End of 1200px */



@media only screen and (max-width: 1080px) {

    .menu-item{margin:0 16px;}

    .mobile li:last-child a{padding:16px 20px;}

   /* Newsletter */
    .newsletter_section {
        padding-top: 60px;
        padding-bottom: 30px;
        border-radius: 0;
    }

    .newsletter_section h2 {
        max-width: 100%;
    }

    .newsletter_section .column_right{
        margin: 20px 0 0;
    }
}


/* Mobile Menu Breakpoint */
@media only screen and (max-width: 1024px) {

    #logo_container {
        justify-content: flex-start;
    }

    .menu_open .hamburger .line {
        background-color: #21282E;
    }

    .menu_open .mobile li.cta_button {
        width: 100%;
        margin-top: auto;
        margin-bottom: 0;
    }

    header .container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    #logo_container{
        z-index: 4;
    }

    header.scrolled .menu-item a {
        color: #fff;
        transition-duration: 0.75s;
    }

    header.scrolled .cta_button.menu-item a{
        color: #fff;
        border: 3px solid var(--german-uds-primary-orange-700, #fff);
        transition-duration: 0.75s;
    }

    .mobile .mobile-menu{
        height: 75vh;
    }

    .mobile ul{
        display: flex;
        flex-direction: column;
        height: 80%;
    }

    .mobile li {
        margin: 0 auto;
    }

    .mobile li a {
        flex: 3;
        padding: 20px;
        color: #21282E;
        font-family: Hanken Grotesk, sans-serif;
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: 22px;
        text-align: center;
    }

    .menu_open .mobile li.cta_button {
         margin-top: auto;
    }
  
    .menu-item::before {
        display: none;
    }

    /* General */
    .container{
        max-width: 90%;
    }

    /* Homepage  */
    .page_banner_container {
        bottom: 5vh;
        max-width: 100%;
    }

    .page_banner h1 {
        font-size: 44px;
        line-height: 52px;
    }

	.newsletter_section .column_left {
		padding: 24px 24px 0;
		width: 50%;
	}

    /* Footer */
    footer {
        padding: 0% 0;
        margin-top: 0px;
    }

    footer .row_1 {
        margin-bottom: 0px;
    }

    .footer_top {
        flex-direction: column;
    }

    .footer_menu_container{
        max-width: 100%;
        justify-content: space-between;
    }

    footer .menu-item {
        margin: 10px 15px;
    }

    footer .menu-item  a{
        font-size: 16px;
        font-weight: 600;
        line-height: 24px; 
    }

    .footer_bottom {
        padding: 0;
    }

    .copy_text {
        line-height: 24px;
        text-align: right;
    }

    /* Default Page Template */
    .page_template{
        padding-top: 200px;
    }

    .page_template h1{
        font-size: 44px;
        line-height: 52px;
        margin-bottom: 10px;
    }

    .page_template h2 {
        font-size: 28px;
        line-height: 36px;
    }

    .page_template h3{
        font-size: 24px;
        line-height: 32px;
    }

    .page_banner.middle{
        max-height: 400px!important;
    }

    /* Single Project */
    .single_project_gallery {
        padding-top: 50px;
        padding-bottom: 0;
    }

    .single_project_gallery_item{
        height: 50vh;
    }

    /* Our Team Template */
    .our_team_item{
        flex: calc(50% - 30px);
    }

    .our_team_item:nth-child(3n+3) {
        margin-right: 0px;
    }

     .our_team_item:nth-child(n+2) {
        margin-right: 30px;
    }

    .team_projects {
        padding-top: 40px;
        padding-bottom: 130px;
    }

    .team_projects h2 {
        margin-bottom: 15px;
    }

    #porfolio_template .page_container.filter_container {
        flex-direction: column;
        align-items: center;
        margin: 40px auto;
    }

    .filter_container_right{
        margin-top: 20px;
    }

    /* Careers 1024 */
    .careers_container{
        flex-direction: column;
    }

    .tabs {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        width: 100%;
        margin-right: 0;
    }

    .tab {
        padding: 1%;
        margin-right: 20px;
        margin-bottom: 10px;
    }

    .job_title {
        font-size: 20px;
        line-height: 28px;
    }

    .job_attributes{
        display: none;
    }

    .job_excerpt{
        display: none;
    }

    .job_more{
        display: none;
    }

    .tab-content.active {
        width: 100%;
        max-width: 90%;
        padding: 5%;
    }

} /* End of 1024px */



@media only screen and (max-width: 991px) {

    .page_banner.partner {
        background-position: left;
    }

    section h2{
        font-size: 36px;
        line-height: 44px;
    }

    .page_banner {
        height: auto;
        min-height: 25vh;
    }

    .scroll_down {
        display: block;
        margin: 0 auto;
    }

    main .container{
        display: block;
        max-width: 100%;
        width: 100%;
        padding: 50px 0;
    }

    .deliverables_section .container{width:auto;}

    .column {
        justify-content: space-between;
        width: 100%;
        height: auto;
        min-height: 25vh;
        max-height: unset;
        background-size: cover !important;
        background-position: center;
        max-width: 80%;
        padding: 5% 0;
        padding-bottom: 50px;
        margin: 0 auto;
    }

    .column_container{
        padding-right: 0;
    }

    #success_section{
        padding: 0;
    }

    #success_section .owl-carousel{
        padding-bottom: 50px;
    }

    .column_owl_carousel .column_container{
        margin-left: 0;
    }

    #success_section .carousel_item_container {
        flex-direction: column;
    }

    #success_section .carousel_item_container h2{
        margin-top: 30px;
    }

    #success_section .owl-dots {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        display: flex;
        flex-direction: row;
        justify-content: center;
    }

    #success_section .img_container{
        margin-bottom: 0;
    }

    main .container.top_project_container{
        padding-top: 0;
        padding-bottom: 0;
    }

    main .container.projects_container{
        padding-top: 0;
    }

    .projects_container_column {
        width: 100%;
        max-width: 90%;
        margin: 0 auto;
        margin-bottom: 25px;
    }

    .project_item{
        height: 45vh;
    }

    #project_item_3{
        height: 45vh;
    }

    .project_title {
        border-radius: 0 40px 0 0px;
    }

    /* Default Page Template */
    .page_template{
        padding-top: 100px;
    }

    .page_template .container{
        max-width: 90%;
        padding: 5%;
    }

    .team_projects .container{
        padding: 10% 5%;
    }

    .accordion_section .container {
        display: flex;
        flex-direction: column;
        max-width: 90%;
        padding: 60px 0;
    }

    /* Portfolio Template 1 */
    main .container.projects_container{
        display: flex;
    }

    #porfolio_template .project_item{
        height: 40vh;
    }

    #porfolio_template .project_item .project_info {
        width: calc(100% - 60px);
        max-width: 100%;
        padding: 20px 30px;
    }

    #porfolio_template .project_item .project_info h2 {
        font-size: 28px;
        line-height: 36px;
    }

    #porfolio_template .project_item .project_info p{
        margin-bottom: 10px;
    }


    /* Single project */
    .single_project_banner{
        height: 50vh;
        background-size: cover;
    }

    .single_project_title {
        width: 100%;
        max-width: 100%;
        font-size: 36px;
        line-height: 56px;
        margin-bottom: 0px !important;
    }

    .single_project_location{
        margin-top: 10px;
    }

    .single_project_info{
        padding-top: 0;
    }

    .single_project_gallery {
        padding: 5%;
    }

    .single_project_gallery .container{
        padding: 0;
        margin: 0;
    }

    .single_project_gallery_container{
        margin-bottom: 0;
    }

    .single_project_gallery_item{
        height: 25vh;
    }

    .team_projects {
        padding-top: 0px;
        padding-bottom: 50px;
    }

    .team_projects .carousel_item{
        padding-right: 0;
    }

    .team_projects .carousel_item a {
        height: 300px;
        max-height: 100%;
        background-position: center;
    }

    /* Team Member */
    .container.back_container{
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .page_template .container.single_person_container {
        display: flex;
        flex-direction: column-reverse;
        padding-top: 0;
        padding-bottom: 5vh;
        margin-top: 25px;
    }

   .single_person_container .column_left {
        width: 100%;
        max-width: 100%;
        padding-bottom: 0px;
        text-align: center;
        justify-content: center;
        align-items: center;
    }

    .single_person_container .column_right{
        width: 100%;
        max-width: 400px;
        background-size: contain !important;
    }
    
    .person_position{
        font-size: 20px;
        line-height: 28px;
    }

    .single_person_links a {
        font-size: 14px;
        line-height: 22px;
    }


}  /* End of 991px */



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

    /* Breadcrumbs */
    .breadcrumbs_container ul {
        padding-left: 0;
    }

    .breadcrumbs_container ul li:first-child a{
        padding-left: 0;
    }

    /* Homepage */
    .page_banner{
        min-height: 50vh;
    }

    .page_banner.middle {
        min-height: 40vh;
        max-height: 100% !important;
    }

    .page_banner.small {
        min-height: 30vh;
    }

    .page_banner_container {
        bottom: 10vh;
    }

    .newsletter_section .row_1 {
        display: flex;
        flex-direction: column;
    }

    /* Footer */
     footer .container.row_1 {
        margin-top: 0;
    }

    /* Footer */
    footer .desc {
        margin-bottom: 24px;
    }

    footer .row_2{
        align-items: flex-start;
    }

    footer .row_3{
        flex-direction: row;
    }

    .follow_container {
        width: 100%;
    }


} /* End of 768px */


@media only screen and (max-width: 767px) {

    .scroll_to_top {
        bottom: 100px;
    }

    /* General */
    h2{
        font-size: 24px;
        line-height: 36px;
    }

    section h2 {
        font-size: 24px;
        line-height: 36px;
    }

    .page_container h4{
        line-height: 32px;
    }

    p{
        font-size: 14px;
        line-height: 22px;
    }

    .breadcrumbs_container ul {
        padding-left: 0;
    }

    .breadcrumbs_container ul li {
        font-size: 14px;
        line-height: 24px;
        text-align: left;
        padding-left: 0;
        padding-right: 25px;
    }

    .breadcrumbs_container ul li a {
        font-size: 14px;
        padding: 0;
    }

    .column_container{
        max-width: 100%;
    }

    /* Header */
    #logo{
        max-width: 120px;
    }

    header.sticky{
        position:fixed;
    }

    .page-template-template-builder header{
        z-index: 5;
    }

    single-post .breadcrumbs_container {
        padding-top: 24px;
    }   

/*    .menu_open #logo{
        max-width: 150px;
    }
*/

    /* Homepage  */
    .page_banner_container {
        bottom: 5vh;
        padding: 10%;
    }

    .page_banner h1 {
        font-size: 32px;
        line-height: 40px;
    }

    .carousel_item_container img{
        height: 40vh;
    }

    .scroll_down{
        max-width: 60px;
        cursor: pointer;
    }

    /* Newsletter */
    .newsletter_section{
        background-image: none !important;
    }

    .newsletter_section .container {
        padding: 0;
    }

    .newsletter_section p {
        font-size: 16px;
        line-height: 26px;
    }

    /* Footer */

    footer {
        padding:32px 12px;
    }

    .footer_menu_container {
        justify-content: flex-start;
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 24px;
    }

    .footer_top{
        padding-bottom: 10px;
    }

    .footer_top .menu{
        margin-right: 0;
    }

    .footer_bottom{
        display: flex;
        flex-direction: column;
    }

    footer .row_3{
        padding-top: 0;
    }

    .copy_text {
        flex-direction: column;
        text-align: center;
        line-height: 24px;
    }

    footer ul li a{
        border-bottom: 0 none;
    }

    .footer_bottom a{
        border-bottom: 0 none;
    }

    /* Default Page Template */
    .page_template{
        padding-top: 153px;
    }

    .page_template h1{
        font-size: 24px;
        line-height: 32px;
    }

    .page_template h2{
        font-size: 20px;
        line-height: 28px;
    }

    .page_template h3{
        font-size: 16px;
        line-height: 24px;
    }

    .page_container p{
        font-size: 14px;
        line-height: 22px;
    }

    footer .container{
        flex-direction: column;
        align-items: flex-start;
    }

    footer .desc {
        margin-top: 10px;
        margin-bottom: 30px;
    }

    footer .row_1 {
        margin-bottom: 10px;
    }

    footer .row_1 .column_right{
        width: 100%;
        display: flex;
        justify-content: space-between;
        margin-bottom: 10px;
    }

    footer .row_2 {
        padding-top: 5px;
    }

    footer .menu {
        align-items: center;
        justify-content: center;
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 0;
        margin-top:0;
    }

    footer .menu-item {
        margin:8px 0!important;
        font-weight: 500;
    }

    .follow_container{
        margin-top: 0px;
    }

    .by_matrix a {
        display: block;
    }

    header.scrolled .menu-item a {
        color: #fff;
    }

    header.scrolled .cta_button.menu-item a {
        color: #fff;
        border: 3px solid var(--german-uds-primary-orange-700, #fff);
        transition-duration: 0.75s;
    }

    .menu-footer-menu-2-container{
        width: 100%;
    }

    #menu-footer-menu-2 {
        flex-direction: column;
        justify-content: space-between;
    }

    .row_3 .footer_menu_container{
        width: 100%;
    }

    .by_matrix {
        display: flex;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 20px;
        margin-bottom: 30px;
        max-width: 200px;
        flex-wrap: wrap;
    }

    .by_matrix a {
        margin-left: 5px;
    }

    footer section .section_container {
        padding: 0;
        align-items: center;
    }

    .menu_bottom_left{flex-wrap: wrap;position: relative;}

    #footer_menu_container{
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .menu-footer-bottom-container{width: 100%;}

    footer .menu{align-items: center;}

    footer .container.section_container.row_3 .menu{flex-direction: row;gap:12px;padding-top:24px;}

    .socials_bottom_right{
        position: absolute;
        right: 0;
        bottom:49px;
    }

     .newsletter_box {
        flex-wrap: wrap;
        width: fit-content;
        border-radius: 8px;
    }

    .newsletter_section .column_left,
	.newsletter_section .column_right{
		width: 100%;
	}

    .newsletter_section .column_left{
        padding: 12px 0 0;
    }

	.newsletter_section .column_right{margin:0;}

	.section_box_content{
		flex-wrap: wrap;
	}

    .container.section_container.row_1 {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: flex-start;
        gap: 24px;
    }

    #footer .column_left, #footer .column_right{width: 50%;}
    #footer .column_right{align-items: flex-end;}

    .footer_logo_container img,
    footer .column_left img{width: 120px;}


} /* End of 767px */

/* Image Gallery */
.image_gallery_section {
    padding: 120px 0;
}

.image_gallery_container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.image_gallery_container .row {
    width: 100%;
    height: 480px;
    display: flex;
    gap: 30px;
}

.image_gallery_container .row:nth-child(odd) .image:first-child {
    width: 60%;
    border-radius: 48px 0 0 0;
}

.image_gallery_container .row:nth-child(odd) .image:last-child {
    width: 40%;
    border-radius: 0 48px 0 0;
}

.image_gallery_container .row:nth-child(even) .image:first-child {
    width: 40%;
    border-radius: 0 0 0 48px;
}

.image_gallery_container .row:nth-child(even) .image:last-child {
    width: 60%;
    border-radius: 0 0 48px 0;
}

.image_gallery_container.reversed_layout .row:nth-child(odd) .image:first-child {
    width: 40%;
}

.image_gallery_container.reversed_layout .row:nth-child(odd) .image:last-child {
    width: 60%;
}

.image_gallery_container.reversed_layout .row:nth-child(even) .image:first-child {
    width: 60%;
}

.image_gallery_container.reversed_layout .row:nth-child(even) .image:last-child {
    width: 40%;
}

.image_gallery_container .row .image {
    box-sizing: border-box;
    background-size: cover;
    background-position: center;
}

@media only screen and (max-width: 991px) {

    .image_gallery_section {
        padding: 60px 0;
    }

    .image_gallery_container .row {
        height: 50vh;
        max-height: 400px;
    }
    
    .image_gallery_container .row .image,
    .image_gallery_container .row:nth-child(odd) .image:first-child,
    .image_gallery_container .row:nth-child(odd) .image:last-child,
    .image_gallery_container .row:nth-child(even) .image:first-child,
    .image_gallery_container .row:nth-child(even) .image:last-child  {
        width: 50%;
    }

}

@media only screen and (max-width: 991px) {
    
    .image_gallery_container .row {
        height: auto;
        max-height: unset;
        flex-direction: column;
        gap: 0;
        max-width: 90%;
        margin: 0 auto;
    }

    .image_gallery_container .row .image, 
    .image_gallery_container .row:nth-child(odd) .image:first-child, 
    .image_gallery_container .row:nth-child(odd) .image:last-child, 
    .image_gallery_container .row:nth-child(even) .image:first-child, 
    .image_gallery_container .row:nth-child(even) .image:last-child {
        width: 100%;
        height: 300px;
        margin-bottom: 30px;
    }

}

/* Skip Link for Accessibility issues */
.skip-link {
    position: absolute;
    top: -40px;
    left: -40px;
    background: #000;
    color: #fff;
    padding: 8px;
    z-index: 100;
    text-decoration: none;
    font-weight: bold;
    transition: top 0.3s ease-in-out, left 0.3s ease-in-out;
}

.skip-link:focus,
.skip-link:active {
    top: 10px; 
    left: 10px;
    outline: 2px solid #fff; 
}


/* Box Items */
.boxes_item_section{
    position: relative;
}

.boxes_item_section h2{
    color: var(--Tertiary-Dark-Blue-500, #3E4883);
    font-family: Hanken Grotesk, sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 42px;
    letter-spacing: -0.72px;
    margin-bottom: 32px;
}

.boxes_item_section .boxes_item_container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    z-index: 2;
    position: relative;
}

.boxes_item_section .boxes_item {
    width: calc(50% - 80px);
    border-radius: 8px;
    background: var(--Base-White, #FFF);
    padding: 32px;
    border-top: 8px solid var(--Secondary-Dark-Green-500, #008A80);
    border-radius: 8px;
    margin-right: 32px;
    margin-bottom: 32px;
}

.boxes_item_section .boxes_item:nth-child(2n+2){
    margin-right: 0;
}

.boxes_item_section .boxes_item_title{
    color: var(--Tertiary-Dark-Blue-500, #3E4883);
    font-family: Hanken Grotesk, sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    margin-top: 0;
}

.boxes_item_section .boxes_item_text,
.boxes_item_section .boxes_item_text p{
    color: var(--Primary-Slate-500, #333E48);
    font-family: Hanken Grotesk, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
}

.boxes_item_section .bgimage {
    position: absolute;
    right: 0;
    bottom: 5%;
}

@media only screen and (max-width: 991px) {

    .boxes_item_section .container{
        max-width: 90%;
    }

}

@media only screen and (max-width: 668px) {

    .boxes_item_section .boxes_item {
        width: 100%;
        margin-right: 0;
    }

}


/***** Iframe *****/
.iframe_layout {
    background-image: url(../images/values-vector-2.png);
    background-repeat: no-repeat;
    background-position: 100% 80%;
    position: relative;
    padding: 80px 0;
}

.iframe_layout .section_container {
    display: flex;
    justify-content: center;
}

.iframe_layout .img_container {
    position: relative;
}

.iframe_layout .img_container img.play_button,
.iframe_layout .img_container img.close_video {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 3;
    cursor: pointer;
}

.iframe_layout .img_container img.play_button {
    top: 40%;
    left:calc(50% - 36px);
}

.iframe_layout .img_filter {
    position: absolute;
    width: 100%;
    height: calc(100% - 28px);
    top: 12px;
    background-color: rgba(40, 58, 151, 0.3);
    border-radius: 32px;
}

.iframe_layout .img_container img.close_video {
    display: none;
    top: -30px;
    left: unset;
    right: -30px;
    transition-duration: 0;
}

.iframe_layout .img_container img.close_video.active {
    display: block;
}

.iframe_layout .iframe_container {
    position: relative;
    visibility: hidden;
    transition-duration: 0;
}

.iframe_layout .iframe_container.active {
    z-index: 4;
    visibility: visible;
    position: fixed;
    max-width: 70%;
    left: 0;
    right: 0;
    margin: 0 auto;
    height: 60%;
    top: 25%;
}

.iframe_layout iframe {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.iframe_layout .img_container img {
    max-width: 100%;
}

.iframe_layout .preview_image.active,
.iframe_layout .img_filter.active {
    visibility: hidden;
}

.iframe_layout.active {
    background-color: transparent !important;
    z-index: 2;
}

.iframe_layout .section_container.iframe_editor_text{
    width: 100%;
    max-width: 1040px;
    color: var(--Primary-Slate-500, #07072B);
    font-family: Hanken Grotesk, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-top: 15px;
}

.iframe_layout p{
    max-width: 100%;
    color: var(--Primary-Slate-500, #333E48);
    font-family: Hanken Grotesk, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    margin-left: 0;
}

.video_description{
    color: var(--Secondary-Slate-500, #333E48);
    font-family: Hanken Grotesk, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.bgcolor .iframe_editor_text p {
    width: 100%;
    max-width: 1040px;
}

.video_overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 2;
}

.video_overlay.active {
    display: block;
    background-color: rgba(62, 72, 131, 0.9);
}

@media only screen and (max-width: 1200px) {

    .iframe_layout .section_container.iframe_editor_text {
        max-width: 90%;
    }

}

@media only screen and (max-width: 767px) {

    .iframe_layout .img_container img.play_button {
        top: calc(50% - 30px);
    }

    .iframe_layout .img_container img.play_button {
        max-width: 60px;
    }

    .iframe_layout .iframe_container.active {
        max-height: 450px;
    }

}

/***** Posts Carousel *****/
.page_builder section.related {
    font-family: Hanken Grotesk, sans-serif;
    padding-top: 5%;
    padding-bottom: 100px;
}

.related .container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 90%;
}

.related h2 {
    color: var(--Tertiary-Dark-Blue-500, #3E4883);
    font-family: Hanken Grotesk, sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 42px; 
    letter-spacing: -0.72px;
    margin-bottom: 24px;
}

.related h3 {
    width: 100%;
    color: var(--Tertiary-Accessible-Blue-500, #006BB8);
    font-family: Hanken Grotesk, sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    margin-top: 0;
}

.related h4 {
    max-width: 90%;
    color: var(--Tertiary-Accessible-Blue-500, #006BB8);
    font-family: Hanken Grotesk, sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    margin-top: 0;
}

.related p{
    color: var(--Primary-Slate-600, #21282E);
    font-family: Hanken Grotesk, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.related .section_container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
    color: var(--Primary-D4B-Slate-900, #142A3E);
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 80px;
}

.related_posts_editors_column.right {
    align-items: flex-end;
}

.related_posts_editors p {
    color: #536B7E;
    font-family: Hanken Grotesk, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 32px;
    max-width: calc(100% - 15px);
    margin-left: 0;
}

.related .carousel_item {
    padding-right: 0;
}

.related .carousel_item a {
    display: inherit;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.related .owl-theme .owl-nav {
    z-index: 2;
    width: 100%;
    position: absolute;
    top: 42%;
}

.related .owl-theme .owl-nav .owl-prev {
    position: absolute;
    left: 0;
}

.related .owl-theme .owl-nav .owl-next {
    position: absolute;
    right: 0;
}

.related .owl-dots {
    display: table;
    width: 100%;
    bottom: -50px;
}

.related .owl-carousel .owl-item {
    position: relative;
    max-height: 574px;
    margin-top: 32px;
}

.related .owl-carousel .owl-item.active {
    max-height: 650px;
    margin-top: 0;
}

.related .owl-carousel .owl-item:before {
    content: "";
    display: block;
    padding-top: 100%; 
}

.related .owl-carousel .owl-item > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.related .container{
    width: 1200px;
    max-width: 90%;
}

.related .container.items3 {
    max-width: 90%;
}

.related .owl-carousel.items3 {
    max-width: 90%;
    margin: 0 auto;
}

.owl-theme.items3 .owl-dots .owl-dot span {
    background: transparent !important;
    border: 3px solid #fff;
}

.owl-theme.items3 .owl-dots .owl-dot.active span {
    background: #fff !important;
}

@media only screen and (max-width: 962px) {
    
    .related .owl-dots {
        bottom: -50px;
    }

    .related h2 {
        width: 100%;
        margin-bottom: 20px;
    }

}

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

    .related .owl-carousel .owl-stage {
        display: flex;
        align-items: center;
    }

    .related .owl-carousel .owl-item {
        margin-top: 0;
    }

    .related .carousel_item a {
        background-size: cover;
        background-repeat: no-repeat;
    }

    .related .owl-carousel .owl-item {
        max-height: 300px;
    }

    .related .owl-carousel .owl-item.active{
        max-height: 350px;
    }

    .related .owl-carousel .owl-item.active{
        margin-top: unset;
    }

}

@media only screen and (max-width: 767px) {

    .related .container {
        align-items: center;
    }

}

.page_builder section.contact_section {
    display: flex;
    align-items: stretch;
    padding: 0;
}


.page-template-contact #main-content{
    position: relative;
    top:-150px;
    margin-bottom:-150px;
}

.page-template-contact #main-content .contact_section{
    background-size: cover;
}

.contact_section .contact_container {
    width: 100%;
    display: flex;
    align-items: stretch;
    max-width: 1480px;
    margin: auto;
    padding: 96px 0;
}

.contact_section .contact_column {
    flex: 1; 
    background-size: cover;
    padding: 6%;
    padding-top: 48px;
    padding-bottom: 88px;
}

.contact_section .contact_column.left {
    width: 43%;
    background:transparent;
    padding:48px 96px;
    margin-left:40px;
}

.contact_section .addtoany_content{display: none;}

.contact_section .contact_column.right {
    width: 33%;
    background-size: 600px;
    background-repeat: no-repeat;
    background-position: right 140px;
}

.page-id-1133 .contact_section .contact_column.right {
    background-position: right bottom;
}

.contact_section.contact_boxed .contact_column.right{
    display: none;
}

.contact_section h1 {
    color: var(--Tertiary-Dark-Blue-500, #3E4883);
    font-family: Hanken Grotesk, sans-serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 54px; /* 112.5% */
    letter-spacing: -0.96px;
}

.contact_section p {
    color: var(--Primary-Slate-500, #333E48);
    font-family: Hanken Grotesk, sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    margin: 0;
}

.contact_section .wpcf7 {
    margin-top: 24px;
}

.contact_section .form_row {
    display: flex;
    flex-direction: column;
}

.contact_section .form_row p {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
}

.contact_section .form_row label {
    color:  #FFF;
    font-family:  "Hanken Grotesk",sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    letter-spacing:0;
}

.contact_section .form_row .wpcf7-form-control-wrap {
    position: relative;
    width: 100%;
}

p.cf7-consent.form_row.checkbox span{
    color: #F2F7FB;
    font-family: "Hanken Grotesk",sans-serif;
    font-size:16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0;
}

p.cf7-consent.form_row.checkbox span a{
    color:#5998FF;
}

p.cf7-consent.form_row.checkbox span a:last-child{margin-right:0;}

.contact_section .wpcf7 input[type="text"], 
.contact_section .wpcf7 input[type="email"], 
.contact_section .wpcf7 input[type="tel"] {
    background-color: #fff;
    color: #142a3e;
    width: -webkit-fill-available;
    max-width: 100%;
    height: 40px;
    padding: 5px 0;
    padding-left: 16px;
    border-radius: 12px;
    border: 1px solid var(--Primary-Yellow, #FFF3C1);
    margin-top: 8px;
    margin-bottom: 0px;
    outline: none;
    font-size: 16px;
    font-family: Hanken Grotesk, sans-serif;
}

.contact_section .wpcf7-not-valid {
    margin-bottom: 0px !important;
}

.contact_section .wpcf7-not-valid-tip {
    margin-bottom: 15px;
}

.contact_section .wpcf7 ::-webkit-input-placeholder {
    color: #59656D;
    font-family: Hanken Grotesk, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.contact_section .wpcf7::-moz-placeholder {
    color: #59656D;
    font-family: Hanken Grotesk, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.contact_section .wpcf7:-ms-input-placeholder {
    color: #59656D;
    font-family: Hanken Grotesk, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.contact_section .wpcf7:-moz-placeholder {
    color: #59656D;
    font-family: Hanken Grotesk, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.contact_section .contact_method {
    display: flex;
    flex-direction: column;
}

.contact_section .contact_method .wpcf7-radio .wpcf7-list-item {
    margin-top: 8px;
}

.contact_section .contact_method .wpcf7-radio .wpcf7-list-item {
    background-image: url('images/form-radio.png');
    background-repeat: no-repeat;
    background-size: 32px 32px;
}

.contact_section .contact_method .wpcf7-radio .wpcf7-list-item.active {
    background-image: url('images/form-radio-checked2.svg');
}

.contact_section .contact_method .wpcf7-radio .wpcf7-list-item label {
    display: flex;
    align-items: center;
    flex-direction: row;
}

.contact_section .contact_method .wpcf7-radio .wpcf7-list-item label:hover {
    cursor: pointer;
}

.contact_section .contact_method .wpcf7-radio .wpcf7-list-item input[type="radio" i] {
    width: 32px;
    height: 32px;
    margin-right: 8px;
    margin-left: 0;
    margin-top: 0;
    visibility: hidden;
}

.contact_section .contact_method input:checked {
    width: 62px;
    height: 62px;
}

.contact_section .contact_method .wpcf7-radio .wpcf7-list-item input[type="radio" i]:hover {
    cursor: pointer;
}

.contact_section .form_container .wpcf7-form p.contact_method {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact_section .contact_method .wpcf7-radio .wpcf7-list-item {
    margin-left: 0;
    margin-right: 32px;
}

.contact_section .form_row.textarea {
    width: 100%;
    max-width: 100%;
    margin-top: 32px;
}

.contact_section .form_row.textarea label {
    width: 100%;
    max-width: 100%;
}

.contact_section .form_row.textarea textarea {
    width: -webkit-fill-available;
    max-width: 100%;
    height: 168px;
    border-radius: 12px;
    border: 1px solid var(--Primary-Yellow, #FFF3C1);
    margin-top: 20px;
    margin-bottom: 10px;
}

.contact_section .form_row.checkbox p {
    align-items: center;
    flex-direction: row;
}

.contact_section .form_row.checkbox .wpcf7-form-control-wrap {
    width: auto;
}

.contact_section .form_row.checkbox .wpcf7-form-control.wpcf7-checkbox {
    display: flex;
}

.contact_section .form_row.checkbox .wpcf7-not-valid-tip {
    position: absolute;
    min-width: 300px;
}

.contact_section .form_row.checkbox label {
    flex-direction: row;
    color: #000;
    font-family: Hanken Grotesk, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    margin-right: 10px;
}

.contact_section .form_row.checkbox .wpcf7-list-item {
    margin-left: 0;
}

.contact_section .form_row.checkbox .wpcf7-list-item-label {
    display: none;
}

.contact_section .form_row.checkbox input[type="checkbox" i] {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    margin: 0;
}

.contact_section .form_row.checkbox input[type="checkbox" i]:hover {
    cursor: pointer;
}

.contact_section .form_row.checkbox a {
    color: #000;
    font-family: Hanken Grotesk, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    text-decoration-line: underline;
}

.contact_section .form_row.checkbox a:hover {
    text-decoration: underline;
}

.contact_section .form_row .wpcf7-submit {
    width:100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    background: #003FA4;
    box-shadow: 0 10px 30px -10px rgba(0, 63, 164, 0.50);
    color: #FFF;
    font-family: Hanken Grotesk, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px;
    padding: 16px 24px;
    border: 0 none;
    margin-top: 16px;
    transition: all 0.3s ease;
}

.contact_section .form_row .wpcf7-submit:hover{
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact_section .wpcf7 form.invalid .wpcf7-response-output,
.contact_section .wpcf7 form.unaccepted .wpcf7-response-output,
.contact_section .wpcf7 form.payment-required .wpcf7-response-output {
    border-color: red;
}

.contact_section .asterisk {
    display: inline;
    color: red;
    font-size: 25px;
    position: relative;
    left: 3px;
    top: 5px;
}

.wpcf7 form.sent .wpcf7-response-output {
    width: 100%;
    background: #1C2A4A;
    display: flex;
    align-items: center;
    justify-content: space-around;
    font-size: 30px;
    max-width: fit-content;
    left: 0;
    right: 0;
    padding: 10vh;
    margin: 0 auto !important;
    z-index: 9999;
    border-radius: 8px;
    color: #fff;
    font-family: Hanken Grotesk, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    padding: 16px 24px;
    border:0;
}

.wpcf7-response-output:hover{
    cursor: pointer;
}


/* Default visibility */
.wpcf7-response-output {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

/* When clicked or focused, hide the element */
.wpcf7-response-output:active,
.wpcf7-response-output:focus {
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}


/* Address Contact Form Only */
.contact_section .address_contact_form.only .address_items {
    margin-top: 0;
}

.contact_section .address_contact_form.only .address_desc {
    width: 100%;
    text-align: left;
}

.contact_section .address_contact_form.only .address_desc p {
    width: 100%;
    max-width: 100%;
    color: #07072B;
}

.contact_section .address_contact_form.only .wpcf7 {
    width: 100%;
}

.contact_section .address_contact_form.only .form_row label {
    width: 100%;
}

.contact_section .address_contact_form.only .wpcf7 input[type="text"],
.contact_section .address_contact_form.only .wpcf7 input[type="email"]{
    width: 100%;
    max-width: 100%;
}

.contact_section .address_contact_form.only .form_row.textarea label {
    margin-right: 0;
}

.contact_section .address_contact_form.only .wpcf7-spinner{
    position: absolute;
}

.contact_section .page-template-newsletter .contact_section h1 {
    color: var(--Tertiary-Dark-Blue-500, #3E4883);
    font-family: Hanken Grotesk, sans-serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 54px;
    letter-spacing: -0.96px;
    width: 100%;
    max-width: 100%;
}

.contact_section #sib_signup_form_2 {
    margin-top: 25px;
}

.contact_section #sib_signup_form_2 .form_input label {
    color: #FFF;
    font-family: Hanken Grotesk, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 5px;
}

.contact_section #sib_signup_form_2 .form_input {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.contact_section .sib_signup_form input[type="text"], 
.contact_section .sib_signup_form input[type="email"] {
    width: 100%;
    border: 1px solid #99D7F2;
}

.page-template-contact .sib_signup_form input[type="text"], .page-template-contact .sib_signup_form input[type="email"]{
    width: calc(100% - 18px);
}

.contact_section .accept_subscription {
    margin-top: 20px;
}

/* Media Queries */
@media only screen and (max-width: 767px) {

    .contact_section {
        display: flex;
        flex-direction: column-reverse;
    }

    .contact_section .contact_column.right {
        min-height: 250px;
    }

    .contact_section .contact_column.left, 
    .contact_section .contact_column.right {
        width: 100%;
        padding: 5%;
        max-width: 90%;
    }

    .contact_section .contact_column.left {
        padding-bottom: 50px;
    }

    .contact_section .contact_column.right {
        height: 40vh;
    }

    .contact_section .wpcf7 {
        margin-top: 30px;
    }

    .contact_section .wpcf7 input[type="text"], 
    .contact_section .wpcf7 input[type="email"], 
    .contact_section .wpcf7 input[type="tel"] {
        padding: 0;
        padding-left: 12px;
        max-width: calc(100% - 12px);
    }

    .contact_section .form_row.textarea {
        margin-top: 20px;
    }

    .contact_section .form_row .wpcf7-submit {
        width: 100%;
    }

    .contact_section .accept_subscription {
        margin-bottom: 20px;
    }

    .contact_section .sib-default-btn {
        max-width: 100%;
    }
}


/* Tabs */
.tabs-module h2{
    color: var(--Tertiary-Dark-Blue-500, #3E4883);
    font-family: Hanken Grotesk, sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 42px; 
    letter-spacing: -0.72px;
}

.tabs-module p{
    color: var(--Primary-Slate-600, #21282E);
    font-family: Hanken Grotesk, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    margin-left: 0;
}

.tabs-module {
    width: 100%;
    padding: 80px 0;
}

.tabs-module .container{
    flex-direction: column;
    align-items: flex-start;
}

.tabs-titles {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    cursor: pointer;
    margin-top: 32px;
    margin-bottom: 50px;
}

.tabs-titles li {
    margin-right: 10px;
}

.tabs-titles li a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background-color: transparent;
    color: var(--Primary-D4B-Hot-Pink-500, #006BB8);
    font-size: 16px;
    line-height: 100%;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 3px;
    border-radius: 20px;
    border: 2px solid var(--Primary-D4B-Hot-Pink-500, #006BB8);
}

.tabs-titles li a.active {
    background-color: #FBAD26;
    color: #21282E;
    border-color: #FBAD26;
}

.tabs-content-wrapper {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.tabs-content {
    display: none;
}

.tabs-content.active {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.tab-editor {
    width: 100%;
    max-width: 543px;
    padding-bottom: 12px;
    /*border-bottom: 1px solid #BC0E71;*/
    margin-right: 10%;
}

.tabs-content h3{
    color: var(--Tertiary-Dark-Blue-500, #3E4883);
    font-family: Hanken Grotesk, sans-serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 38px;
    margin-top: 0; 
}

.tabs-content h4{
    color: var(--Secondary-Dark-Green-500, #008A80);
    font-family: Hanken Grotesk, sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    margin-top: 16px;
}

.tabs-content ul{
    padding-left: 30px;
}

.tabs-content li{
    color: var(--Primary-Slate-600, #21282E);
    font-family: Hanken Grotesk, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px; 
    margin-bottom: 10px;
}

.tabs-content li::marker {
  color: #008A80;
  font-size: 24px;
}

.tabs-content li a{
    color: #142A3E;
}

.tabs-content img{
    max-width: 100%;
    border-radius: 0px 0px 0px 80px;
}

.tabs-content .apply{
    display: inline-block;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    background-color: #BC0E71;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 8px;
    margin-top: 15px;
    margin-right: 32px;
}

.tabs-content .apply{
    background-color: #7a2982;
}

.tabs-content .register{
    display: inline-block;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    background-color: #BC0E71;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 8px;
    margin-top: 15px;
    margin-right: 32px;
}

.tabs-content .register:hover{
    background-color: #7a2982;
}

.tabs-content .section_cta:hover{
    background-color: #F1607A;
}

@media only screen and (max-width: 1024px) {

    .tabs-module .container{
        max-width: 90%;
    }

}

@media only screen and (max-width: 668px) {

    .tabs-titles{
        margin-bottom: 25px;
    }
    
    .tabs-content{
        flex-direction: column;
    }

    .tabs-content h3{
        margin-bottom: 15px;
    }

}

/* Simple Text Editor */
.simple_text_editor{
    padding: 80px 0;
}

.simple_text_editor .container{
    max-width: 90%;
    flex-direction: column;
    align-items: flex-start;
}

.simple_text_editor h2{
    color: var(--Primary-Purple-500, #7A2982);
    font-family: Hanken Grotesk, sans-serif;
    font-size: 60px;
    font-weight: 600;
    line-height: 70px;
    max-width: 1480px;
}

.simple_text_editor h3{
    max-width: 1240px;
    color: var(--Primary-Slate-800, #282B35);
    font-family: Hanken Grotesk, sans-serif;
    font-size: 30px;
    font-weight: 400;
    line-height: 38px;
    margin: 0 auto;
}

.simple_text_editor h4{
    color: var(--White, #7A2982);
    font-family: Hanken Grotesk, sans-serif;
    font-size: 36px;
    font-weight: 600;
    line-height: 46px;
}

.simple_text_editor p{
    max-width: 1000px;
    color: var(--Primary-D4B-Slate-900, #142A3E);
    font-family: Hanken Grotesk, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.simple_text_editor p a{
    color:#BC0E71;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    text-decoration: none;
}

.simple_text_editor .cta{
    margin-top: 10px;
}

.simple_text_editor li {
    color: var(--Primary-D4B-Slate-900, #142A3E);
    font-family: Hanken Grotesk, sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
    margin: 7.5px 0;
}

.simple_text_editor.boxed{
    padding: 80px 0;
}

.simple_text_editor.boxed .container {
    width: 90%;
    max-width: 985px;
    background-color: #fff;
    padding: 28px 48px;
    margin: 0 auto;
}

.simple_text_editor.bgcolor.boxed h2,
.simple_text_editor.bgcolor.boxed h3,
.simple_text_editor.bgcolor.boxed h4,
.simple_text_editor.bgcolor.boxed h5,
.simple_text_editor.bgcolor.boxed h6{
    color: #7A2982;
}

.simple_text_editor.bgcolor.boxed h2{
    margin-bottom: 48px;
    position: relative;
}

.simple_text_editor.bgcolor.boxed h2:after{
    display: block;
    content: '';
    background: #142A3E;
    width: 62px;
    height: 2px;
    margin-top: 48px;
}

.simple_text_editor.bgcolor.boxed h3{
    margin: 0;
}

.simple_text_editor.bgcolor.boxed ul{
    margin-bottom: 0;
}

.simple_text_editor.bgcolor.boxed p{
    color: #142A3E;
}

/***** Accordion *****/
.accordion_section {
    background: #CCEBF8;
    background-image: url(images/accordion-bg.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
}

.accordion_section .container {
    display: flex;
    flex-direction: column;
}

.accordion_section h2 {
    color: var(--Tertiary-Dark-Blue-500, #3E4883);
    font-family: Hanken Grotesk, sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 42px; 
    letter-spacing: -0.72px;
    margin-bottom: 8px;
    text-align: left;
    width: 100%;
    margin-bottom: 10px;
}

.accordion_section .accordion_description {
    color: var(--Primary-Slate-600, #21282E);
    font-family: Hanken Grotesk, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
}

.accordion_section .accordion {
    width: 100%;
    background-color: transparent;
    margin-top: 24px;
}

.accordion_section .accordion-item {
    border: 4px solid #fff;
    border-radius: 4px;
    margin-bottom: 5px;
}

.accordion_section .accordion-item.active {
    border: 4px solid #FBAD26;
}

.accordion_section .accordion-item.active .accordion-title {
    color: var(--Primary-Slate-400, #5C656D);
    font-family: Hanken Grotesk, sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px; 
}

.accordion_section .accordion-item button[aria-expanded="true"] {
    padding-bottom: 7.5px;
}

.accordion_section button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    width: 100%;
    padding: 20px 25px;
    color: #444;
    font-size: 1.15rem;
    font-weight: 400;
    border: none;
    background-color: #fff;
    outline: none;
}

.accordion_section button:hover,
.accordion_section button:focus {
    cursor: pointer;
    color: #444;
}

.accordion_section button .accordion-title {
    color: var(--Primary-Slate-600, #21282E);
    font-family: Hanken Grotesk, sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px; 
    padding: 0px;
}

.accordion_section button .icon {
    display: none;
    position: absolute;
    top: 10px;
    right: 32px;
    width: 40px;
    height: 40px;
    background-color: #fff;
    color: #2A708B;
    border: 1px solid #090093;
    border-radius: 22px;
}

.accordion_section button .icon::before {
    display: block;
    position: absolute;
    content: "";
    top: 19px;
    left: 11px;
    width: 18px;
    height: 2px;
    background: currentColor;
}

.accordion_section button .icon::after {
    display: block;
    position: absolute;
    content: "";
    top: 11px;
    left: 19px;
    width: 2px;
    height: 18px;
    background: currentColor;
}

.accordion_section button[aria-expanded="true"] {
    color: #444;
}

.accordion_section button[aria-expanded="true"] .icon::after {
    width: 0;
}

.accordion_section button[aria-expanded="true"] > .icon {
    background-color: #090093;
}

.accordion_section button[aria-expanded="true"] .icon::before,
.accordion_section button[aria-expanded="true"] .icon::after {
    color: #fff;
}

.accordion-item .accordion_arrow {
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion_arrow {
    transform: rotate(180deg);
}

.accordion_section .accordion-content {
    background-color: #fff;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 200ms linear, max-height 200ms linear;
    will-change: opacity, max-height;
    border-radius: 4px;
}

.accordion_section button[aria-expanded="true"] + .accordion-content {
    opacity: 1;
    max-height: unset;
    transition: all 200ms linear;
}

.accordion_section .accordion-content p {
    color: var(--Primary-Slate-600, #21282E);
    font-family: Hanken Grotesk, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; 
    margin: 25px auto;
    margin-top: 0px;
    width: 100%;
    max-width: calc(100% - 50px);
}

@media only screen and (max-width: 1200px) {
    .accordion_section h2 {
        font-size: 40px;
        line-height: 48px;
    }

    .contact_section .contact_container{padding:40px 0;}

    .contact_section .contact_column.left{
        margin-left: 0;
        padding: 48px;
    }
}

@media only screen and (max-width:1024px){

    .contact_section .contact_container{
        width: 100%;
        max-width: calc(100% - 48px);
        padding: 148px 24px 24px;
        flex-wrap: wrap;
    }

    .contact_section .contact_column.left{
        width: 90%;
        min-width: auto;
        padding: 40px;
        display: flex;
        flex-direction: column;
    }

    .contact_section .contact_column.right{
        background-position: 0;
        background-size: cover;
        margin-top:16px;
        margin-bottom:24px;
    }

    .contact_section .form_row.textarea{margin-top:0;}

    .contact_section .form_row.textarea textarea{margin-bottom:0;}

    .contact_section .contact_column.left{padding-top: 64px;}
}

@media only screen and (max-width: 991px) {
    .accordion_section .container {
        display: flex;
        flex-direction: column;
        max-width: 90%;
        padding: 60px 0;
    }
}

@media only screen and (max-width: 767px) {
    .accordion_section h2 {
        font-size: 32px;
        line-height: 40px;
    }

    .contact_section .contact_column.left{padding-top: 148px;}
    
}


/* Team Section */
.team_section {
    padding: 120px 0;
    padding-bottom: 100px;
    border-radius: 80px 0px;
}

.team_section .container.team_carousel_container{
    display: block;
    max-width: 90%;
}

.team_section .team_member:hover {
    cursor: pointer;
}

.team_section h2 {
    color: var(--Tertiary-Dark-Blue-500, #3E4883);
    font-family: Hanken Grotesk, sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 42px; 
    letter-spacing: -0.72px;
    margin: 0;
    max-width: 300px;
}

.team_section p{
    color: var(--Primary-Slate-600, #21282E);
    font-family: Hanken Grotesk, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
}

.team_section .leaders_container {
    justify-content: space-between;
    align-items: center;
    max-width: 90%;
}

.team_section .leaders_container .column_right {
    display: flex;
}

.team_section .leaders_container .column_right .leader_item {
    padding-top: 0;
    margin-left: 80px;
}

.team_section .leaders_container .column_right .leader_item img {
    max-width: 256px;
    height: 256px;
    border-radius: 16px;
    object-fit: cover;
}

.team_section section h5 {
    color: #000064;
    font-family: Hanken Grotesk, sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 40px;
    margin: 15px 0;
    margin-top: 25px;
}

.team_section section h6 {
    color: #344864;
    font-family: Hanken Grotesk, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
    margin: 0;
}

.team_section .team_carousel {
    margin-top: 64px;
}

.team_section .team_carousel_item.slick-slide {
    overflow: hidden;
}

.team_carousel .slick-slide {
    margin: 0 32px; 
}

.team_carousel .slick-list {
    margin: 0 -32px;
}

.team_carousel .slick-prev, 
.team_carousel .slick-next{
    z-index: 2;
    top: 33%;
}

.team_carousel .slick-prev:before,
.team_carousel .slick-next:before{
  display: none;
}

.team_carousel .slick-next{
    right: 25px;
}

.team_section .team_member_img_container {
    height: 320px !important;
    background-size: cover;
    background-position: center;
    border-radius: 16px;
}

.team_section .team_carousel_item.slick-slide img {
    display: block;
    width: auto;
    height: 267px;
    overflow: hidden;
}

.team_section h5{
    color: var(--Tertiary-Dark-Blue-500, #3E4883);
    font-family: Hanken Grotesk, sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    margin-top: 10px;
}

.team_section h6 {
    color: var(--Primary-Slate-400, #5C656D);
    font-family: Hanken Grotesk, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    margin-top: 10px;
    margin-bottom: 0;
}

.team_section section .team_carousel_item p {
    color: var(--german-uds-primary-light-blue-900, #344864);
    font-family: Hanken Grotesk, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    margin: 0 !important;
}


@media only screen and (max-width: 991px) {

    .team_section .leaders_container{
        flex-direction: column;
    }

    .team_section .leaders_container .column_right .leader_item {
        margin-top: 50px;
        margin-right: 50px;
    }

    .team_section .leaders_container{
        padding: 0;
    }

    .team_section .container.team_carousel_container{
        padding-top: 0;
    }

}

@media only screen and (max-width: 767px) {

    .team_section .leaders_container .column_right{
        flex-direction: column;
    }

    .team_section .leaders_container .column_right .leader_item {
        margin-left: 50px;
    }

    .team_section .leaders_container .column_right .leader_item img {
        width: 300px;
        height: 300px;
        border-radius: 16px;
        object-fit: cover;
        display: block;
        margin: 0 auto;
    }

    .team_section h6{
        margin-top: 0;
    }

    .team_section .team_member_img_container {
        height: 300px !important;
        background-size: contain;
        background-repeat: no-repeat;
    }

    .team_carousel_item h5,
    .team_carousel_item h6{
        text-align: center;
    }

    .team_carousel .slick-prev, .team_carousel .slick-next{
        width: 56px;
    }

    .team_carousel .slick-prev{
        left: 0;
    }

    .team_carousel .slick-next{
        right: 0;
    }

}

/* Team Member Item */
.team_member_section{
    padding: 120px 0;
}

.team_member_text {
    border-radius: 32px;
    background: var(--Primary-Blue-50, #EBF7FC);
    padding: 40px 32px;
    margin-right: 48px;
}

.team_member_attribute{
    display: flex;
    align-items: center;
    color: var(--Primary-D4B-Hot-Pink-500, #BC0E71);
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;
    margin-bottom: 10px;
}

.team_member_attribute a{
    color: var(--Primary-D4B-Hot-Pink-500, #BC0E71);
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;
    text-decoration: none;
}

.team_member_attribute img{
    width: 22px;
    margin-right: 16px;
}

.team_member_title{
    color: var(--Tertiary-Dark-Blue-500, #3E4883);
    font-family: Hanken Grotesk, sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 42px;
    letter-spacing: -0.72px;
    margin-bottom: 15px;
}

.team_member_position{
    color: var(--Primary-Slate-400, #5C656D);
    font-family: Hanken Grotesk, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; 
    margin-top: 0;
}

.team_member_content p{
    color: var(--Primary-Slate-600, #21282E);
    font-family: Hanken Grotesk, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 16px;
}

.team_member_content p strong{
    color: var(--Tertiary-Dark-Blue-500, #3E4883);
    font-weight: 600;
}

.team_member_image img {
    border-radius: 32px;
    max-width: 100%;
}

.team_member_attribute{
    color: var(--Secondary-Dark-Green-700, #006962);
    font-family: Hanken Grotesk, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    margin-bottom: 17px;
}

.team_member_attribute a{
    color: var(--Secondary-Dark-Green-700, #006962);
}

@media only screen and (max-width: 767px) {

    .team_member_text {
        padding: 32px;
        margin-right: 0;
        margin-bottom: 35px;
    }

    .team_member_image img {
        display: block;
        margin: 0 auto;
        margin-bottom: 16px;
    }

}

/* Newsletter Page */
.page-id-3077 .page_banner.middle .container p {
    max-width: 400px;
}

/* Newsletter Page */
#newsletter_section.editor_left_image_right .column_left h2{
    color: var(--Tertiary-Accessible-Blue-500, #006BB8);
    font-family: Hanken Grotesk, sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 42px;
    letter-spacing: -0.72px;
    margin-bottom: 16px;
}

#newsletter_section.editor_left_image_right .column_left p{
    color: var(--Primary-Slate-500, #333E48);
    font-family: Hanken Grotesk, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 16px;
}

#newsletter_section .form_input{
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

#newsletter_section.bgcolor{
    background: none;
}

#newsletter_section.bgcolor h2{
    color: #090093;
} 

#newsletter_section p{
    color: var(--Primary-Slate-500, #07072B);
    font-family: Hanken Grotesk, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; 
}

#newsletter_section .sib_signup_form label {
    color: #000;
    font-family: Hanken Grotesk, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

#newsletter_section .sib_signup_form input[type="text"], #newsletter_section .sib_signup_form input[type="email"] {
    color: #536B7E;
    border: 2px solid #666666;
    width: 100%;
    max-width: 90%;
}

#newsletter_section .sib_signup_form ::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #59656D;
    font-family: Hanken Grotesk, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

#newsletter_section .sib_signup_form ::-moz-placeholder { /* Firefox 19+ */
    color: #59656D;
    font-family: Hanken Grotesk, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

#newsletter_section .sib_signup_form :-ms-input-placeholder { /* IE 10+ */
    color: #59656D;
    font-family: Hanken Grotesk, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

#newsletter_section .sib_signup_form :-moz-placeholder { /* Firefox 18- */
    color: #59656D;
    font-family: Hanken Grotesk, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

#newsletter_section .accept_subscription {
    margin-top: 15px;
    margin-bottom: 32px;
    color: var(--Base-White, #FFF);
    font-family: Hanken Grotesk, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

#newsletter_section .accept_subscription a {
    color: #FFF;
}

.home .accept_subscription{
    color:#001435;
}

.home .accept_subscription a{
    color:#001D4C;
}

.page-id-3077 #newsletter_section .section_container {
    width: 1280px;
    max-width: 80%;
    border-radius: 0px 56px;
    background: var(--Primary-Blue-50, #EBF7FC);
    padding: 4%;
}

.page-id-3077 .newsletter_section{
    display: none;
}

.page-id-3077 .page_banner_3 p {
    max-width: 570px;
}

@media only screen and (max-width: 1280px) {

    .page-id-3077 #newsletter_section .section_container {
        width: 100%;
        max-width: 95%;
        margin: 0 auto;
    }

}


@media only screen and (max-width: 828px) {

    #newsletter_section .sib_signup_box_inside_1{
        margin-bottom: 50px;
    }

}

@media only screen and (max-width: 767px) {

    #newsletter_section{
        padding: 0;
    }

    .page-id-3077 #newsletter_section .section_container{
        border-radius: 0;
    }

    #newsletter_section .editor_left_image_right .column_right{
        margin-top: 40px;
    }

    .editor_left_image_right .column_right img {
        display: block;
        max-width: 90%;
        margin: 0 auto;
    }

    .page-id-3077 #newsletter_section .sib_signup_form label, 
    .page-id-3077 #newsletter_section .accept_subscription a {
        margin-left: 0;
    }

    #newsletter_section .form_input {
        margin-bottom: 0;
    }

    #newsletter_section .sib_signup_form input[type="text"], #newsletter_section .sib_signup_form input[type="email"] {
        max-width: calc(100% - 20px);
        padding-left: 16px;
    }

    #newsletter_section .sib-default-btn {
        max-width: 100%;
        margin-top: 10px;
    }

    .contact_section .contact_container{flex-direction: column;}

    .page-id-1133 .contact_section .contact_column.right{
        background-size: contain;
        background-position: center;
    }

    .page-template-contact #main-content{top:0;}

    .page-template-contact #main-content .contact_section{padding-top:0px;}

}


/* Single partner */
.single-partner .editor_left_image_right .column_right img.vector_image{
    max-width: 150px;
    min-height: 50px;
    background-color: #fff;
    border-radius: 0;
    top: -30px;
    right: -60px;
    padding: 20px;
    border-radius: 8px;
    background: var(--Base-White, #FFF);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
}

@media only screen and (max-width: 991px) {

    .single-partner .editor_left_image_right .column_right img.vector_image {
        top: 0;
        right: 0px;
        max-width: 100px;
        min-width: unset;
    }

}


/* Deliverables  */
.deliverables_section{
    padding: 80px 0;
}

.deliverables_section .container{
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    display: flex;
    justify-content: space-between;
    border-right: 1px solid #E4ECF2;
    border-left: 1px solid #E4ECF2;
    padding: 96px 48px;
    max-width: 1236px;
}

.deliverables_section .deliverable_item {
    width: calc(33.333% - 72px);
    border-radius: 8px;
    background: #D0DBE5;
    padding: 32px 24px;
    padding-top: 24px;
    border-radius: 16px;
    position: relative;
}

.deliverables_section .delivered{
    display: flex;
    align-items: center;
    font-family: Hanken Grotesk, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    padding: 4px 24px;
    border-radius: 100px;
    border: 1px solid #001D4C;
    max-width: fit-content;
    color: #001435;
    letter-spacing: 0;
}

.deliverables_section .deliverable_title{
    color: #001435;
    font-family: "Space Grotesk", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    letter-spacing: -1px;
}

.deliverables_section .deliverable_text,
.deliverables_section .deliverable_text p{
    color: #001435;
    font-family: "Hanken Grotesk",sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    letter-spacing:0;
}

.deliverables_section .deliverable_text strong{
    font-weight: 600;
}

.deliverables_section .deliverable_date{
    color: var(--Secondary-Slate-500, #333E48);
    font-family: Hanken Grotesk, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
}

.deliverables_section .deliverable_download a{
    display: flex;
    gap:8px;
    align-items: center;
    color: #FFF;
    font-family: Hanken Grotesk, sans-serif;
    font-size:14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing:0;
    text-decoration: none;
    padding: 12px 16px;
    margin-top: 24px;
    max-width: fit-content;
    transition: all 0.3s ease;
    border-radius: 4px;
    background: #003FA4;
    box-shadow: 0 10px 30px -10px rgba(0, 63, 164, 0.50);
}

.deliverables_section .deliverable_download a:hover {
    background-color: #001435;
    transition: all 0.3s ease;
}

@media only screen and (max-width: 1200px) {

    .deliverables_section .deliverable_item {
        width: calc(50% - 64px);
    }

}

@media only screen and (max-width: 767px) {

    .deliverables_section .deliverable_title {
        font-size: 28px;
        line-height: 34px;
    }

}

@media only screen and (max-width: 668px) {

    .deliverables_section .deliverable_item {
        width: 100%;
    }

    .deliverables_section .deliverable_text{
        max-width: 90%;
    }

}

/* Single Post Builder */
.breadcrumbs_container.post_builder {
    width: calc(100% - 152px);
    margin: 0 auto;
    background-color:#D0DBE5;
    max-width: 1200px;
    border-radius: 0 0 8px 8px;
    margin-top: 0;
    padding: 8px 64px;
}

.breadcrumbs_container.post_builder ul {
    padding-left: 0;
    margin:0;
}

.breadcrumbs_container.post_builder li {
    padding: 0;
    padding-right: 32px;
    margin-right: 6px;
    width: fit-content;
}

.breadcrumbs_container.post_builder li a{
    padding: 0;
}

.post_builder {
    width: 100%;
    background-color: #fff;
    border-radius: 32px;
    margin: 0 auto;
    margin-bottom: 56px;
}

.post_builder .new_details_container{
    padding-top: 0px;
    padding-bottom:0px;
}

.post_builder .post_date{
    color: #003180;
    font-family:  "Hanken Grotesk",sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 2px;
    margin: 12px 0 24px;
}

.post_builder .new_details_container h1{
    max-width: 100%;
    color:#001435;
    font-family: "Space Grotesk",sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height:56px;
    letter-spacing: -1px;
}

.post_builder section.simple_text_editor:last-child{
    padding-bottom: 0;
}

.post_builder section.simple_text_editor.cyan:last-child{
    padding-bottom:40px;
}

.post_builder .simple_text_editor h2{
    color: #1C2A4A;
    font-family: Hanken Grotesk, sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 42px;
    letter-spacing: -0.72px;
    margin-top: 28px;
    margin-bottom: 16px;
}

.post_builder .simple_text_editor h3 {
    color: #1C2A4A;
    font-family: Hanken Grotesk, sans-serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 38px;
    margin-top:28px;
    margin-bottom: 12px;
}

.post_builder .simple_text_editor blockquote p{
    color: var(--Blue-60, #3C7197);
    font-family: Hanken Grotesk, sans-serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 38px;
}

.post_builder .home_slide.slick-slide.slick-current.slick-active {
    max-height: 500px;
    border-radius: 20px 20px 0 0;
    background-position: center;
}

.post_builder .post_excerpt{
    color: var(--Primary-Dark-Blue, #1C2A4A);
    font-family: Hanken Grotesk, sans-serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 38px;
    padding-bottom: 16px;
}

.post_builder .simple_text_editor {
    background: #fff;
    padding: 32px 0;
}

.post_builder section.simple_text_editor .container{
    max-width: 100%;
}

.post_builder .simple_text_editor .container{
    max-width: 100%;
}


.post_builder .simple_text_editor h4{
    color: #006962;
    font-family: Hanken Grotesk, sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
    margin-bottom: 12px;
}

.post_builder .simple_text_editor h5{
    color: #006962;
    font-family: Hanken Grotesk, sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 12px;
}

.post_builder .simple_text_editor li{
    color: var(--Secondary-Slate-500, #333E48);
    font-family: Hanken Grotesk, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    width:100%;
}

.post_builder .simple_text_editor li::marker {
    color:#001435;
    font-weight: 600;
    font-size:20px;
}

.post_builder .simple_text_editor ol li::marker{
    font-size:16px;
}

.post_builder .simple_text_editor p,
.post_builder .simple_text_editor p a {
    color: #001435;
    font-family: "Hanken Grotesk",sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0;
    margin-bottom: 24px;
}

.post_builder .simple_text_editor p a{
    color: #003FA4;
}

.post_builder .simple_text_editor p a:hover{
    text-decoration: underline;
    text-underline-offset: 2px;
}

.post_builder .simple_text_editor p:last-child{
    margin-bottom: 0;
}

.addtoany_list.a2a_kit_size_32 a:not(.addtoany_special_service)>span{background:transparent;}

a.a2a_button_linkedin svg {
    background: #115C99;
}

.post_builder .simple_text_editor blockquote{
    background-image: url(images/quote-symbol.svg);
    background-repeat: no-repeat;
    background-position: 0% 0%;
    padding: 20px 60px;
}

.post_builder .simple_text_editor blockquote p {
    color: var(--Blue-60, #3C7197);
    font-family: Hanken Grotesk, sans-serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 38px; 
}

.post_builder .simple_text_editor figure {
    width: 100% !important;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
}

.post_builder .simple_text_editor img {
    width: 100%;
    object-fit: cover;
    border-radius: 32px;
    margin-bottom: 0;
}

.post_builder .simple_text_editor figcaption {
    color: var(--Primary-Slate-500, #333E48);
    font-family: Hanken Grotesk, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    width: 100%;
    margin-top: 7px;
}

.post_builder .image_caption{
    color: var(--Primary-Slate-400, #393955);
    font-family: Hanken Grotesk, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    color: red;
}

.post_builder .cta_container{
    display: flex;
    align-items: center;
}

.post_builder .simple_text_editor .cta{
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    min-height: unset;
    border-radius: 12px;
    background: var(--Secondary-Bright-Green, #8CBD22);
    color: var(--Primary-Dark-Blue, #1C2A4A);
    font-family: Hanken Grotesk, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px;
    text-decoration: none;
    padding: 16px 24px;
    border-radius: 4px;
    margin-right: 16px;
    transition: all 0.3s ease;
}

.post_builder .simple_text_editor .cta:hover{
    background-color: #70971B;
    border-color: #70971B;
    transition: all 0.3s ease;
}

.post_builder .simple_text_editor .cta img {
    width: 24px;
    margin-top: 0;
    margin-left: 8px;
}

.post_builder .simple_text_editor.cyan{
    padding: 40px 56px;
    border-radius: 32px;
    background: var(--Primary-Blue-50, #EBF7FC);
    margin-bottom: 40px;
}

.post_builder .simple_text_editor.cyan .container{
    background:transparent;
}


.post_builder .simple_text_editor li{
    color:  #001435;
    font-family: "Hanken Grotesk",sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    letter-spacing:0;
}

.post_builder .simple_text_editor.cyan p:last-child{
    margin-bottom: 25px;
}

.post_builder .simple_text_editor.blue{
    background: #1C2A4A;
    padding: 40px 56px;
    border-radius: 32px;
}

.post_builder .simple_text_editor.blue .container{
    background:transparent;
}

.post_builder .simple_text_editor.blue h4{
    color: var(--Secondary-Deep-Orange, #EE7D4A);
    font-family: Hanken Grotesk, sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
}

.post_builder .simple_text_editor.blue p, 
.post_builder .simple_text_editor.blue p a{
    color: var(--Primary-White, #FFF);
}

.post_builder .editor_left_image_right{
    padding: 0;
}

.post_builder .editor_left_image_right .section_container {
    max-width: 100%;
}

.post_builder .editor_left_image_right .column_left {
    margin-right: 32px;
}

.post_builder section.simple_text_editor.blue:last-child{
    padding-bottom:40px;
}

.post_builder .editor_left_image_right h3{
    color: var(--Primary-Dark-Blue, #1C2A4A);
    font-family: Hanken Grotesk, sans-serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 38px;
}

.post_builder .editor_left_image_right p{
    color: var(--Secondary-Slate-500, #333E48);
    font-family: Hanken Grotesk, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.post_builder .editor_left_image_right .column_right img {
    border-radius: 0;
}

.post_builder .image_left_editor_right {
    padding: 0;
}

.post_builder .image_left_editor_right h3{
    color: var(--Primary-Dark-Blue, #1C2A4A);
    font-family: Hanken Grotesk, sans-serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 38px; 
}

.post_builder .image_left_editor_right p{
    color: var(--Secondary-Slate-500, #333E48);
    font-family: Hanken Grotesk, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px; 
}

.post_builder .image_left_editor_right .column_right {
    margin-left: 32px;
}

.post_builder .iframe_layout {
    background: transparent;
    padding: 32px 0;
}

.post_builder  .iframe_layout .section_container {
    max-width: 100%;
    padding: 0;
    margin: 0;
    justify-content: flex-start;
}

.post_builder .iframe_layout .section_container{
    flex-wrap: wrap;
}

.post_builder .iframe_layout p {
    width:100%;
    color: var(--Secondary-Slate-500, #333E48);
    font-family: Hanken Grotesk, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    margin: 0;
    margin-top: 12px;
    margin-bottom:12px;
}

@media only screen and (min-width: 1800px) {
    .post_builder .new_details_container h1{
        font-size:44px;
        line-height: 50px;
    }

    .post_builder .post_excerpt{
        font-size:24px;
        line-height: 32px;
    }

    .post_builder .simple_text_editor blockquote p{
        font-size:24px;
        line-height: 32px;
    }

    .post_builder .simple_text_editor blockquote{
        background-position: 0px 24px;
    }
}

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

    .post_builder .editor_left_image_right .column_right{
        padding-top: 54px;
    }

    .post_builder .image_left_editor_right .column_right{
        padding-top: 30px;
    }

}

@media only screen and (max-width: 1024px) {

    #logo{max-width: 160px;}

    header{padding-top:8px;padding-bottom:8px;}

    .post_builder section.simple_text_editor .container{padding:16px 0;}

    .post_builder .home_slide.slick-slide.slick-current.slick-active{ max-height: 460px;}

}

@media only screen and (max-width:991px){
    .breadcrumbs_container .container{padding:0;}

    .breadcrumbs_container.post_builder{
        padding: 8px 24px;
        max-width: calc(100% - 68px);
        width: 100%;
    }

}
    
@media only screen and (max-width: 767px) {

    .post_builder section .container {
        padding: 0 !important;
    }

    .post_builder .simple_text_editor .cta {
        line-height: 24px;
    }

   .post_builder .simple_text_editor blockquote {
        background-image: url(images/blockquote.png);
        background-repeat: no-repeat;
        background-position: 0% 0%;
        padding: 0px;
        padding-top: 50px;
        padding-bottom: 25px;
    }

    .post_builder .image_left_editor_right .container {
        max-width: 100%;
        align-items: flex-start;
        flex-direction: column;
    }

    .post_builder .image_left_editor_right .column_left {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        display: flex;
    }

    .post_builder .image_left_editor_right .column_right {
        margin-left: 0;
    }

    .post_builder .editor_left_image_right .section_container {
        max-width: 100%;
        flex-direction: column;
    }

    .post_builder .editor_left_image_right .column_left {
        margin-right: 0;
        margin-top: 15px;
    }

    .post_builder .image_left_editor_right .column_right {
        margin-left: 0;
    }

    .post_builder .editor_left_image_right .column_right img {
        margin: 0;
    }

    .breadcrumbs_container.post_builder{
        max-width: calc(100% - 72px);
    }
}


/* Style focus for all input, button, textarea, and links */
input:focus,
textarea:focus,
select:focus,
button:focus,
a:focus {
  outline: 3px solid #005fcc; 
  outline-offset: 2px;
  transition: outline 0.2s ease-in-out;
}

input:focus-visible,
button:focus-visible {
  box-shadow: 0 0 0 3px rgba(0, 95, 204, 0.5);
}

/* GENERAL FOCUS FOR COOKIE BANNER */
#cookiescript_injected :where(
  [role="button"],
  button,
  a,
  input[type="checkbox"]
):focus-visible,
#cookiescript_injected :where(
  [role="button"],
  button,
  a,
  input[type="checkbox"]
):focus {
  outline: 3px solid #000;       /* high-contrast ring */
  outline-offset: 3px;
}

/* Optional: make the big consent buttons extra clear */
#cookiescript_save:focus-visible,
#cookiescript_accept:focus-visible,
#cookiescript_reject:focus-visible,
#cookiescript_manage_wrap:focus-visible {
  box-shadow: 0 0 0 4px rgba(255,255,255,0.8);
  border-radius: 999px;          /* match pill shape */
}

/* Optional: checkboxes – highlight the box when focused */
#cookiescript_injected .mdc-checkbox__native-control:focus-visible
+ .mdc-checkbox__background {
  outline: 3px solid #000;
  outline-offset: 2px;
}

/* Fix focus visibility inside CookieScript dialog */
#cookiescript_injected [tabindex]:focus-visible,
#cookiescript_injected [role="button"]:focus-visible,
#cookiescript_injected button:focus-visible,
#cookiescript_injected a:focus-visible,
#cookiescript_injected input[type="checkbox"]:focus-visible {
    outline: 3px solid #000 !important;
    outline-offset: 4px !important;
    border-radius: 6px;
}

/* For the main banner buttons (Accept / Decline / Save) */
#cookiescript_buttons > div[role="button"]:focus-visible {
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.4) !important;
    border-radius: 40px !important;
}

/* Checkbox focus fix */
#cookiescript_injected .mdc-checkbox__native-control:focus-visible + .mdc-checkbox__background {
    outline: 3px solid #000 !important;
    outline-offset: 3px !important;
}

.remove_bottom_padding {
    padding-bottom: 0 !important;
}

section.image_left_image_right.no_bt_images {
    display: none;
}


/* Fixes */

section h2{
	max-width:100%;
}

.newsletter_page .accept_subscription,
.newsletter_page .accept_subscription a{
	color: #21282E;
    font-family: Hanken Grotesk, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.newsletter_page{
	background-color:#fff3c1
}

.newsletter_page
.form_input {
	display:flex;
	margin:8px 0;
	align-items:center; 
}

.newsletter_page .form_input label{
	min-width:100px; 
	color:#21282E;
}

.page-id-1059 #newsletter{
	display:none;
}

.newsletter_page .sib_signup_form input[type="text"], .newsletter_page .sib_signup_form input[type="email"] {
	width:50%;
}

.partner-template-default .homeslider.slick-initialized.slick-slider,
.single-post .homeslider.slick-initialized.slick-slider{
    width:98%;
    margin:auto;
    max-width: 1328px;
}

.single-post #main-content img{
	max-width:100%;
}

.nav-links {
    display: flex;
    flex-direction: row-reverse;
    padding-top:28px;
    gap:40px;
    width: 100%;
    justify-content: space-between;
}

.nav-links a {
    max-width: 90%;
    color: #393955;
    font-family: Hanken Grotesk, sans-serif;
    font-size:14px;
    font-weight: 400;
    text-align: center;
    text-decoration: none;
    padding: 0;
}

.nav-next, .nav-previous{
    display: flex;
}

.nav-next:before{
    content: "←";
    display:block;
}

.nav-previous:after {
    content: "→";
    display: block;
}

@media only screen and (max-width: 962px) {

    .post_grid.middle.four .column_66.column_left{
        max-width:100%!important;
    }

    .editor_left_image_right .section_container{
        align-items:center;
    }
}

@media only screen and (max-width:480px){
    .breadcrumbs_container ul li a,
    .breadcrumbs_container ul li:last-child{
		font-size: 12px;
	}

}

@media only screen and (max-width:400px){
    .by_matrix{
        max-width: 100%;
        margin: auto;
        margin-bottom: 24px;
    }

    .socials_bottom_right{
        position: relative;
        bottom: 0;
        width: 100%;
    }
}