/*
    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
*/


/* General Styles */
@font-face {
  font-family: "Work Sans";
  src: url(fonts/WorkSans/WorkSans-Regular.woff2);
}

@font-face {
  font-family: "Cairo";
  src: url(fonts/Cairo/Cairo-Regular.woff2);
}

@font-face {
  font-family: "Cairo-Light";
  src: url(fonts/Cairo/Cairo-Light.woff2);
}


@font-face {
  font-family: Poppins;
  src: url(fonts/Poppins/Poppins-Regular.woff2);
}

@font-face {
  font-family: "Titillium Web";
  src: url(fonts/Titillium/TitilliumWeb-Regular.woff2);
}

.comp-text {
	font-family: "Work Sans";
}



html {
  touch-action: auto;
}

html,
body{
    max-width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}


a:focus, 
button:focus {
    outline: none;
    border: 1px solid #090093 !important; 
}

.hide_section{
    display: none;
}

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

header{
    font-family: "Work Sans";
    top: 0px;
    z-index: 3;
    width: 100%;
    width: 100%;
    padding-top: 20px;
    padding-bottom: 10px;
}

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

header .container{
    display: flex;
    max-width: 90%;
}

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{
    color: var(--Primary-Blue-600, #090093);
    font-family: "Work Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px; /* 137.5% */;
    text-decoration: none !important;
    transition-duration: 0.75s;
}

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

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


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

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

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

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

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

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

header.scrolled #site_logo_sticky {
    position: static;
    opacity: 1;
    transition-duration: 0.5s;
    transition-delay: 0.5s; 
}


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

.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;
}

/* Menu CSS */
.hamburger {
    position: relative;
    z-index: 4;
    border: none;
    background-color: transparent;
}

.hamburger .line {
    width: 40px;
    height: 3px;
    background-color: #fff;
    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;
}

.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: #000064;
    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;
    background-color: #fff;
    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: #128A3E;
}

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

.mobile .fa-chevron-right{
   color: #128A3E;
   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 {
    padding: 0;
    display: flex;
}

.breadcrumbs_container .container{
    width: 100%;
    max-width: 100%;
}

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

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

.breadcrumbs_container ul li{
    padding: 0 15px;
    font-family: "Work Sans";
    font-size: 14px;
    font-weight: 400;
    line-height: 20px; 
    background-image: url(images/breadcrumb-arrow.svg);
    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;
}

.breadcrumbs_container ul li a {
    color: #393955;
    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 #090093;
}

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

.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;
}

.column a{
    display: inline-block;
    font-weight: 500;
    font-size: 18px;
    line-height: 18px;
    background-color: #00495A;
    text-decoration: none;
    padding: 15px 30px;
    margin-top: 30px;
}

.column a:hover {
    background-color: #128A3E;
}

h1{
    font-family: "Cairo";;
    font-weight: 400;
    color: #e8491d !important;
    font-size: 60px;
    line-height: 64px;
    max-width: 330px;
    margin-bottom: 25px;
}

h1 span{
    display: block;
    color: #090093;
    font-weight: 700;
}

h2{
    color:  #e8491d;
    font-family: "Work Sans";
    font-weight: 600;
    font-size: 48px;
    line-height: 60px;
    margin-top: 0;
    margin-bottom: 20px;
}

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

h5{
    color: #fff;
    font-family: "Work Sans";
    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;
}

main{
    position: relative;
    overflow: hidden;
}

/* Header */

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

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

.cta_button.menu-item a {
    display: flex;
    padding: 8px 32px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    color: var(--Base-Colours-White, #FFF);
    font-family: "Work Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 27px;
    cursor: pointer;
    border-radius: 4px;
}

.cta_button.menu-item:hover > a{
    background-color: #FF8B00;
}


/* Footer */

footer{
    color: #444;
    font-size: 14px;
}


#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;
}


/* Main Content */

.page_banner{
    display: flex;
    align-items: flex-end;
    height: 95vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    position: relative;
}

.scroll_down{
    cursor: pointer;
}


/* Default Page Template */
.page_template{
    font-family: "Work Sans";
    background-color: #F3F9EF;
    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: #000064;
}

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

#default_page_template .page_container {
    background-color: #fff;
    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{
    color: #00495A;
    font-weight: 600;
    font-size: 48px;
    line-height: 60px;
}

#default_page_template .page_container h1:after{
    display: block;
    content: '';
    background-color: #444444;
    width: 62px;
    height: 2px;
    margin: 4% 0;
}

.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: #00495A;
    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: #00495A;
    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: #128A3E;
    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: #00495A;
    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: #128A3E;
    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: #00495A;
    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: #00495A;
    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: #00495A;
    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: #128A3E;
    font-family: Inter;
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    text-decoration: none;
    border-bottom: 1px solid #128A3E;
    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: #128a3e;
}

.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: #00495A;
    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: #128a3e;
}

.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: #00495A;
    color: #fff;
    cursor: pointer;
}

/* Newsletter */
.newsletter_section {
    background: var(--Gradient-Blue, linear-gradient(90deg, #090093 0%, #0600EB 100%));
    padding: 48px 0;
    animation-duration: 2s;
}

.newsletter_section  .section_container {
    justify-content: space-between !important;
    max-width: 90% !important;
}

.newsletter_section .column_left{
    padding-right: 7%;
}

.newsletter_section .row_1 {
    display: flex;
    align-items: flex-end;
}

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

.form_input label{
    color: var(--Base-White, #FFF);
    font-family: "Work Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 171.429% */
    margin-bottom: 5px;
}

.newsletter_section h2 {
    display: flex;
    color: #fff !important;
    font-family: "Cairo";
    font-size: 30px !important;
    font-weight: 400 !important;
    line-height: 38px !important;
    margin-top: 0;
}

.newsletter_section h2 img{
    margin-right: 20px !important;
}

.newsletter_section p {
    color: #FFF !important;
    font-family: "Work Sans";
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 24px !important;
    max-width: 500px;
    margin: 0 !important;
}

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

.sib_signup_form input[type="text"]:focus, .sib_signup_form input[type="email"]:focus {
    border-color: #FFD700; /* Change border color on focus */
    box-shadow: 0 0 5px rgba(255, 215, 0, 0.7); /* Add a subtle glow effect around the input */
    outline: none; /* Remove the default outline */
}

.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: #fff;
    font-family: "Work Sans";
    font-size: 14px;
    font-weight: 400;
}

.sib_signup_form ::-moz-placeholder { /* Firefox 19+ */
    color: #fff;
    font-family: "Work Sans";
    font-size: 14px;
    font-weight: 400;
}

.sib_signup_form :-ms-input-placeholder { /* IE 10+ */
    color: #fff;
    font-family: "Work Sans";
    font-size: 14px;
    font-weight: 400;
}

.sib_signup_form :-moz-placeholder { /* Firefox 18- */
    color: #fff;
    font-family: "Work Sans";
    font-size: 14px;
    font-weight: 400;
}

.accept_subscription {
    display: flex;
    align-items: center;
    color: #FFF;
    font-family: "Work Sans";
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    margin-top: 15px;
    margin-bottom: 32px;
}

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

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

.sib-default-btn {
    display: flex;
    padding: 15px 30px;
    justify-content: center;
    align-items: center;
    background: #FF7C00;
    color: #000056;
    font-family: "Work Sans";
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
    border: 0 none;
    border-radius: 4px;
    cursor: pointer;
}

.sib-default-btn:hover{
    background: #dedeff;
    color: #00284e;
}

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

footer .desc {
    color: #22404D;
    font-family: "Work Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
    margin-top: 24px;
    max-width: 700px;
}

#footer .column_right{
    display: flex;
    align-items: center;
}

#footer .column_right a {
    float: left;
    min-width: 44px;
    min-height: 44px;
}

#footer .column_right a:first-child {
    margin-right: 50px;
}

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

footer .row_2 {
    padding: 24px 0;
    border-top: 1px solid var(--S4R-Primary-Teal-100, #E4E4E4);
    border-bottom: 1px solid var(--S4R-Primary-Teal-100, #E4E4E4);
}

footer .row_3 {
    padding: 24px 0;
}

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

footer .menu-item a {
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    color: #000056;
    font-family: "Work Sans";
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
}

.follow_container {
    display: flex;
    align-items: center;
    color: #142A3E;
    font-family: "Work Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
}

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

footer .follow_container ul li a{
    display: flex;
    align-items: center;
    min-width: 44px;
    min-height: 44px;
    float: left;
}

footer .follow_container ul li a img{
    display: block;
    margin: 0 auto;
}

.follow_container span{
    color: var(--Primary-Navy-500, #004383);
    font-family: "Work Sans";
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    margin-left: 10px;
}

.by_matrix{
    color: #142A3E;
    font-family: "Work Sans";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px; 
}

footer .row_3 .menu-item a {
    color: #000056;
    font-family: "Work Sans";
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

/* Plugin - Add to any share */
.addtoany_list a, .widget .addtoany_list a {
    margin-right: 12px;
}

.addtoany_list.a2a_kit_size_32 a:not(.addtoany_special_service)>span {
    background-color: #090093 !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: "Work Sans";
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    max-width: 500px;
    text-decoration: none;
    margin-bottom: 10px;
}

.scroll_to_top {
    position: fixed;
    bottom: 50px;
    right: 5%;
}



/* EXTRA STYLES FOR THIS SITE */
.page_builder section.about-us-section-2{
    padding-bottom: 0;
}


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


    .mobile{
        padding-top: 120px;
    }


}


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

    header{
        padding-top: 30px;
    }

    #logo_container{
        width: auto;
        margin-bottom: 15px;
    }

    .current_page_item a{
        text-decoration: underline !important;
    }

    .footer_top .column_left{
        width: 60%;
    }


}

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


    .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;
    }


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

    .mobile li:hover{
        background-color: transparent;
    }

    .mobile li:hover > ul {
        display: block;
        position: absolute;
        top: 15px;
        left: 0;
        background-color: transparent !important;
        padding-top: 25px;
        padding-bottom: 25px;
        min-width: 250px;
    }

    .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 {
        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 {
        display: flex;
        align-items: center;
        flex: auto;
        font-size: 16px;
        line-height: 16px;
        z-index: 2;
    }

    .mobile li a span{
        display: flex;
        align-items: center;
        height: 100%;
    }

    .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: #128a3e !important;
    }*/

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

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


}


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

    .column_bg{
        max-height: 797px;
    }


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

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


}


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

    /* General */ 
    .column {
        padding: 0 5%;
    }

    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%;
    }


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


    /* Newsletter */
    .newsletter_section  .section_container {
        justify-content: space-between !important;
        max-width: 90% !important;
    }


} /* 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) {

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

    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 li {
        margin: 0 auto;
    }

    .mobile li a {
        flex: 3;
        text-align: center;
        text-decoration: none;
        padding: 20px;
    }

    .cta_button.menu-item a {
        background-color: ;
        max-width: 300px;
        margin: 20px auto;
    }
  
    .menu-item::before {
        display: none;
    }

     .hamburger .line {
        background-color: #0600EB;
    }

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

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

    .menu_open .cta_button.menu-item a {
        background-color: #FF7C00;
        color: #0A2134 !important;
        border: 4px none;
    }

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

    .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: 28px !important;
        line-height: 36px !important;
    }


    /* 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%;
    }


} /* End of 1200px */



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

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

    .newsletter_section .container{
        flex-direction: column;
        justify-content: flex-start !important;
    }

    .newsletter_section h2 {
        max-width: 100%;
        margin-top: 0;
        margin-bottom: 25px;
    }

    .newsletter_section h2 img{
        margin-right: 20px;
    }

    .newsletter_section p {
        margin: 0;
    }

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



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

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

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

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

    /* 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;
    }


    /* 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) {

    
    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;
    }

    .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;
    }

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

    #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%;
    }

    /* 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_container {
        bottom: 10vh;
    }

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

    .newsletter_section .form_input {
        width: 100%;
    }

    .sib_signup_form input[type="text"], .sib_signup_form input[type="email"] {
        width: 100%;
        max-width: 100%;
    }

    /* Footer */
    footer .container.row_1{
        align-items: flex-start;
    }

    /* 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%;
    }

    .newsletter_section {
        padding: 50px 5%;
        margin-top: 0;
    }

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

    .newsletter_section .form_input {
        width: 100%;
    }

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

    .sib_signup_form input[type="text"], .sib_signup_form input[type="email"]{
        margin-bottom: 20px;
    }

    .accept_subscription{
        margin-bottom: 0;
    }

    .accept_subscription input {
        width: 35px;
        height: 24px;
    }

    .sib_signup_form input[type="text"], .sib_signup_form input[type="email"] {
        width: 100%;
        max-width: calc(100% - 16px);
        margin-right: 0px;
    }

    .sib-default-btn {
        padding: 15px 20px;
        width: 100%;
    }

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


    /* 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 .container {
        padding: 0;
    }

    .newsletter_section h2 img{
        margin-left: 0 !Important;
    }

   .newsletter_section h2 {
        width: auto;
        font-size: 24px !important;
        line-height: 32px !important;
        margin-bottom: 10px;
    }

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


    .newsletter_section h2 img{
        margin-right: 20px !important;
    }


    /* Footer */

    footer {
        padding-top: 10px;
    }

    #footer_menu_container {
        justify-content: flex-start;
        align-items: flex-start;
        flex-direction: column;
    }

    .footer_top{
        padding-bottom: 10px;
    }

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

    #footer .column_right a:first-child {
        margin-right: 10px;
    }

    .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;
    }

    footer .menu-item {
        margin-left: 0;
        margin-bottom: 15px;
    }

    .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;
        color: var(--Primary-Navy-500, #004383);
        font-family: "Work Sans";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 20px;
        margin-bottom: 30px;
    }

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

    footer section .section_container {
        padding: 0 5%;
    }


} /* End of 767px */


/* Flexi Elements Styles */

/* General Styles */

.page-template-template-builder header{
    background-color: #fff;
    position: relative;
}

.home.page-template-template-builder header{
    position: absolute;
}

.page-template-template-builder header.sticky{
    background-color: transparent;
}

header.scrolled{
    position: fixed;
}

.page_builder section{
    padding: 64px 0;
}

.section_cta{
    border-radius: 4px;
}

/* Page Banner */
.page_banner{
    display: flex;
    align-items: flex-end;
    height: 95vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    position: relative;
}

.page_banner.middle {
    max-height: 400px;
    align-items: center;
    top: 0;
    margin-top: 0px;
}

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

    .page_banner.middle {
        max-height: 100%;
    }

}

.page_banner.small {
    max-height: 206px;
    align-items: center;
    top: 0;
    margin-top: 0px;
}

.page_banner.large{
    max-height: 635px;
    animation-duration: 1s;
}

.page_banner .container {
    display: flex;
    padding: 24px 48px;
    flex-direction: column;
    align-items: flex-start;
    background: var(--Primary-Navy-500, #004383);
    border-radius: 0px 0px 32px 0px;
    margin: 0 56px;
    position: relative;
    top: 40px;
    z-index: 2;
}

.page_banner .container.page_banner_container {
    position: absolute;
    top: unset;
    bottom: 0;
    border-radius: 0px 32px 0px 0px;
    background: var(--Gradient-Blue, linear-gradient(90deg, #090093 0%, #0600EB 100%));
    color: #fff;
    padding: 16px 48px 16px 90px;
    margin: 0;
      animation-duration: 1.3s;
}

.page_banner .container.page_banner_container h1{
    color: #fff;
}

.page-template-template-builder .page_banner.middle .container {
    display: flex;
    align-items: flex-start;
    background: transparent;
    position: static;
    animation-duration: 1.5s;
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
}

.page-template-template-builder .page_banner.small .container {
    display: flex;
    align-items: flex-start;
    background: transparent;
    position: static;
}


.page-template-template-builder .page_banner .container h1 {
    font-family: "Work Sans";
    font-size: 36px;
    font-weight: 900;
    line-height: 44px;
    letter-spacing: -0.72px;
    margin-top: 10px;
    margin-bottom: 5px;
    margin-left: 0;
    z-index: 2;
    width: 100%;
    max-width: 550px;
}

.page-template-template-builder .page_banner.middle .container h1 {
    color: #fff;
    font-family: "Work Sans";
    font-size: 48px;
    font-weight: 600;
    line-height: 54px;
    letter-spacing: -0.72px;
    margin-top: 10px;
    margin-bottom: 5px;
    margin-left: 0;
    z-index: 2;
}

.page-template-template-builder .page_banner.small .container h1 {
    color: #fff;
    font-family: "Work Sans";
    font-size: 48px;
    font-weight: 600;
    line-height: 54px;
    letter-spacing: -0.72px;
    margin-top: 10px;
    margin-bottom: 5px;
    margin-left: 0;
    z-index: 2;
}


.page-template-template-builder .page_banner .container p{
    color: var(--Base-White, #FFF);
    font-family: "Work Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    margin: 0;
    z-index: 2;
}

.page-template-template-builder .page_banner.middle .container p{
    color: #FFF;
    font-family: "Work Sans";
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.page-template-template-builder .page_banner.middle .container p strong{
    display: block;
    color: var(--Primary-Orange-500, #FF7C00);
    font-family: Cairo;
    font-size: 20px;
    font-weight: 600;
    line-height: 26px; 
    margin-top: 8px;
    margin-bottom: 24px;
}

.before_title_link{
    display: flex;
}

.before_title_link img{
    margin-right: 10px;
}

.before_title_link a{
    color: #FFF;
    font-family: "Work Sans";
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-decoration: none;
    z-index: 2;
    position: relative;
}

.page_banner_container h1{
    color: #FFF;
    font-family: Cairo;
    font-size: 36px;
    font-weight: 600;
    line-height: 44px;
    letter-spacing: -0.72px;
    margin: 0;
    margin-left: 24px;
}

.after_title_text{
    display: block;
    max-width: 90%;
    color: #FFF;
    font-family: "Work Sans";
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 20px;
}

.after_title_text p{
    margin: 0;
}

.banner_overlay{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

/* Page Banner 3 Columns */

.page_builder section.homeslider_section{
    position: relative;
    padding: 0;
}

.homeslider_section .slick-list{
    overflow: visible;
}

.home_slide.slick-slide {
    height: 100vh;
    max-height: 750px;
    background: var(--S4R-Primary-Gradient, linear-gradient(104deg, #75BC22 0%, #0095A9 100%));
    background-repeat: no-repeat;
    background-size: cover;
}

.banner_linear_gradient .home_slide.slick-slide{
    background: var(--S4R-Primary-Gradient, linear-gradient(104deg, #75BC22 0%, #0095A9 100%)));
    background-repeat: no-repeat;
    background-size: cover;
}

.home_slide.slick-slide.slick-current.slick-active {
    display: flex;
    align-items: end;
    justify-content: center;
}

.home_slide.slick-slide .home_slide_text{
    visibility: hidden;
    animation-duration: 2.5s;
}

.home_slide.slick-slide.slick-current.slick-active .home_slide_text {
    display: flex;
    align-items: end;
    width: 100%;
    max-width: 100%;
    visibility: visible;
}

.home_slide_column {
    width: 100%;
      animation-duration: 1.3s;
    max-width: 80%;
    margin: 0 auto;
      animation-duration: 1.3s;
    margin-top: 50px;
}

.home_slide_column.left {
    display: flex;
    height: 100vh;
    max-height: 664px;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: contain;
    margin-left: 50px;
    max-width: 1280px;
    margin: 0 auto;
}

.home_slide_column.left img {
    max-width: 500px;
}

.home_slide_column_left_1 {
    display: flex;
    align-items: flex-end;
    max-width: 500px;
    margin-right: 10%;
}

.home_slide_column_left_2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    margin-top: auto;
    margin-bottom: auto;
}

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


.home_slide_column h1 strong{
    color: #090093;
    font-family: Cairo;
    font-size: 60px;
    font-weight: 700;
    line-height: 64px;
}

.home_slide_column_left_2 p {
    width: fit-content;
    color: var(--Primary-Slate-500, #07072B);
    font-family: "Work Sans";
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    max-width: 500px;
    margin: 20px 0;
}

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

.home_slide_column_left_2 a {
    display: flex;
    padding: 10px 40px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-family: "Work Sans";
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    background: #0600EB;
    text-decoration: none;
    border-radius: 4px;
}

.home_slide_column_left_2 a:hover{
    background-color: #dedeff;
    color: #090093;
}

.home_slide_buttons {
    display: flex;
    align-items: center;
    padding-top: 15px;
}

.home_slide_buttons a {
    display: flex;
    max-width: fit-content;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-family: "Work Sans";
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    background: #0600EB;
    text-decoration: none;
    border-radius: 4px;
    padding: 16px 24px;
}

.home_slide_buttons a:hover{
    background: #ef7e14;
    color: #00284e;
}


.home_slide_column.right {
    width: auto;
    height: 100vh;
    max-height: 664px;
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: contain;
    position: relative;
    top: 40px;
}

.home_slide_column.right img {
    margin-left: auto;
    margin-top: auto;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 2;
}

@-webkit-keyframes ani-mouse {
    0% {
    opacity: 1;
    top: 29%;
    }
    15% {
    opacity: 1;
    top: 50%;
    }
    50% {
    opacity: 0;
    top: 50%;
    }
    100% {
    opacity: 0;
    top: 29%;
    }
}
@-moz-keyframes ani-mouse {
    0% {
    opacity: 1;
    top: 29%;
    }
    15% {
    opacity: 1;
    top: 50%;
    }
    50% {
    opacity: 0;
    top: 50%;
    }
    100% {
    opacity: 0;
    top: 29%;
    }
}
@keyframes ani-mouse {
    0% {
    opacity: 1;
    top: 29%;
    }
    15% {
    opacity: 1;
    top: 50%;
    }
    50% {
    opacity: 0;
    top: 50%;
    }
    100% {
    opacity: 0;
    top: 29%;
    }
}

.scroll-btn {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    bottom: 30px;
}

.scroll-btn > * {
    display: inline-block;
    line-height: 18px;
    font-size: 13px;
    font-weight: normal;
    color: #7f8c8d;
    color: #ffffff;
    letter-spacing: 2px;
}
.scroll-btn > *:hover,
.scroll-btn > *:focus,
.scroll-btn > *.active {
    color: #ffffff;
}
.scroll-btn > *:hover,
.scroll-btn > *:focus,
.scroll-btn > *:active,
.scroll-btn > *.active {
    opacity: 0.8;
    filter: alpha(opacity=80);
}

.scroll-btn .mouse {
    position: relative;
    display: block;
    width: 30px;
    height: 48px;
    margin: 0 auto 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: 3px solid white;
    border-radius: 23px;
}

.scroll-btn .mouse > * {
    position: absolute;
    display: block;
    top: 29%;
    left: 50%;
    width: 8px;
    height: 8px;
    margin: -4px 0 0 -4px;
    background: white;
    border-radius: 50%;
    -webkit-animation: ani-mouse 2.5s linear infinite;
    -moz-animation: ani-mouse 2.5s linear infinite;
    animation: ani-mouse 2.5s linear infinite;
}



/* Editor on the Left - Image on the Right */
.editor_left_image_right {
    position: relative;
}

.editor_left_image_right.gradient{
    background: var(--Gradient-Blue, linear-gradient(90deg, #090093 0%, #0600EB 100%));
}

.editor_left_image_right .section_container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.editor_left_image_right .vector_image{
    position: absolute;
    top: -25px;
    right: 0;
}

.editor_left_image_right .column_left {
    margin-right: 7%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.editor_left_image_right#newsletter_list .column_right img {
    border-radius: 0;
}

.editor_left_image_right h2 {
    font-family: "Cairo";
    font-size: 36px;
    font-weight: 700;
    line-height: 44px;
    letter-spacing: -0.72px;
}

.editor_left_image_right p{
    max-width: 464px;
    color: var(--Primary-Navy-500, #004383);
    font-family: "Work Sans";
    font-size: 18px;
    font-weight: 400;
    line-height: 24px; 
    margin: 0;
    margin-bottom: 16px;
}

.editor_left_image_right h5{
    color: var(--Primary-Blue-500, #0600EB);
    font-family: "Work Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px;
    margin-bottom: 12px;
}

.editor_left_image_right li{
    max-width: 464px;
    color: var(--Primary-Navy-500, #004383);
    font-family: "Work Sans";
    font-size: 18px;
    font-weight: 400;
    line-height: 24px; 
    margin: 0;
    margin-bottom: 16px;
}

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

.editor_left_image_right.bgcolor li::marker {
  color: #FF7C00; 
}

.editor_left_image_right.bgcolor p{
    color: #fff;
}

.editor_left_image_right.bgcolor ul{
    margin-bottom: 0;
}

.editor_left_image_right.bgcolor li{
    color: #fff;
}

.editor_left_image_right.text_orange.bgcolor li{
    color: #FFA861;
}

.editor_left_image_right.text_orange.bgcolor li a{
    color: #FFA861;
    text-decoration: none;
}

.editor_left_image_right.text_orange.bgcolor li a:hover{
    text-decoration: underline;
}

.editor_left_image_right.text_orange.bgcolor .column_right img{
    display: block;
}

.editor_left_image_right p span{
    display: block;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    margin-top: 16px;
}

.editor_left_image_right a {
    margin-bottom: 0;
}

.editor_left_image_right .column_right .image_container{
    position: relative;
}

.editor_left_image_right .column_right img {
    display: block;
    animation-duration: 2.5s;
    border-radius: 8px 8px 8px 64px;
    max-width: 100%;
}

.editor_left_image_right .column_right img.vector_image{
    border-radius: 0;
    top: -20px;
    right: -20px;
}

.editor_left_image_right .section_cta{
    background-color: #FF7C00;
    color: #000056;
}

.editor_left_image_right .section_cta:hover {
    background-color: #dedeff;
    color: #090093;
}

.editor_left_image_right.cta_blue .section_cta{
    background-color: #004383;
    color: #fff;
}

/* Form BG */
.editor_left_image_right.form_bg .schemable-form{
    max-width: 474px;
    margin: 0 auto;
}

.editor_left_image_right.form_bg .color-text-info {
    color: #090093;
}

.editor_left_image_right.form_bg{
    padding: 0;
}

.editor_left_image_right.form_bg .section_container{
    width: 100%;
    max-width: 100%;
}

.editor_left_image_right.form_bg .column_50{
    padding-bottom: 0;
}

.editor_left_image_right.form_bg .column_left {
    padding: 48px 64px;
    padding-top: 0px;
    margin-right: 0;
    width: calc(45% - 128px);
}

.editor_left_image_right.form_bg .column_right {
    width: 55%;
    max-width: 55%;
}

.editor_left_image_right.form_bg .column_right .image_container{
    height: 100%;
}

.editor_left_image_right.form_bg .column_right img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 0;
}

.editor_left_image_right.form_bg label{
    color: #000;
    font-family: "Work Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.editor_left_image_right.form_bg input[type=text], 
.editor_left_image_right.form_bg input[type=email] {
    width: 100%;
    height: 48px;
    border: 1px solid #666;
    border-radius: 4px;
    box-shadow: none;
}

.editor_left_image_right.form_bg ._fVrYg{
    margin-bottom: 15px;
}

.editor_left_image_right.form_bg .ff-react-dropdown__value-container.ff-react-dropdown__value-container--is-multi {
    flex: 100%;
    height: 48px;
    border: 1px solid #666;
    border-radius: 4px;
    border: none;
}

.editor_left_image_right.form_bg ._7Ymce .ff-react-dropdown__control  {
    border: 1px solid #000;
}

.editor_left_image_right.form_bg ._7Ymce .ff-react-dropdown__control .ff-react-dropdown__value-container {
    height: 48px;
}

.editor_left_image_right.form_bg p{
    color: var(--Primary-Slate-500, #07072B);
    font-family: "Work Sans";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px; 
}

.editor_left_image_right.form_bg .ff-react-dropdown__indicators {
    background-image: url(https://www.digital4security.eu/wp-content/uploads/2024/11/chevron-down.svg);
    background-repeat: no-repeat;
    background-size: 24px;
    background-position: center;
    width: 50px;
}

.editor_left_image_right.form_bg .ff-react-dropdown__indicators:hover{
    cursor: pointer;
}

.editor_left_image_right.form_bg ._7Ymce .ff-react-dropdown__dropdown-indicator {
    padding: var(--space-less);
    visibility: hidden;
}

.editor_left_image_right.form_bg .color-text-base-darkest._0JEbf.fontType-h5._RwO91._Pkm-T{
    color: var(--Primary-Slate-500, #07072B);
    font-family: "Work Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px; 
}

.editor_left_image_right.form_bg ._oH-nW input[type=checkbox]+label:before {
    width: 32px !important;
    height: 32px !important;
    border-color: #666666 !important;
    border-radius: 4px;
}

.editor_left_image_right.form_bg ._dcAwn.fontType-f5 label{
    margin-left: 5px;
}

.editor_left_image_right.form_bg ._fVrYg.schemable-form-marketing-policy-field._checkboxMargin_1kqn0_10{
    margin-bottom: 30px !important;
}

.editor_left_image_right.form_bg ._vQiD7 input[type=radio]+label:before {
    width: 32px !important;
    height: 32px !important;
    border-color: #666666 !important;
}

.editor_left_image_right.form_bg ._TRNPt {
    width: 100%;
    height: 56px;
    border-radius: 4px;
    background: var(--Primary-Blue-500, #0600EB);
    color: #fff;
    margin-top: 25px;
}

.editor_left_image_right.image_margin_0 .section_container{
    align-items: flex-start;
}

.editor_left_image_right.image_margin_0 .section_container .column_left{
    padding-top: 10px;
}

.editor_left_image_right.image_margin_0 .column_right img{
    display: block;
}


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

    .editor_left_image_right  .column_50{
        max-width: 50%;
    }

    .editor_left_image_right .img_container:hover > .img_filter {
        background-image: none;
    }

}

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

    .editor_left_image_right.form_bg .column_50{
        max-height: 1300px;
        padding-bottom: 0;
    }

}


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

    .editor_left_image_right .column_right {
        max-width: 40%;
    }

}

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

    .editor_left_image_right .column_left img{
        max-width: 90%;
    }

}

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

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

    .editor_left_image_right  .section_container {
        justify-content: center;
    }

    .editor_left_image_right .column_right img {
        max-width: 100%;
    }

}

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

    .editor_left_image_right .column_left img{
        max-width: 80%;
    }

    .editor_left_image_right .column_right img {
        margin-bottom: 50px;
    }

    .editor_left_image_right.image_margin_0 .column_right img{
        margin-bottom: 0;
    }

    .editor_left_image_right.text_orange.bgcolor .column_right img{
       margin-bottom: 0;
    }

}

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



    .editor_left_image_right h2{
        font-size: 30px;
        line-height: 40px;
    }

    .editor_left_image_right .section_cta,{
        margin-top: 35px;
    }

    .editor_left_image_right .column_left {
        padding: 0 25px;
        margin-right: 0;
    }

    .editor_left_image_right .column_left img {
        max-width: 70%;
    }

}

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

    .editor_left_image_right.form_bg .section_container{
        flex-direction: column;
    }

    .editor_left_image_right.form_bg .column_left {
        padding: 0 5%;
        margin-right: 0;
        width: 90%;
    }

    .editor_left_image_right.form_bg .column_right {
        width: 100%;
        max-width: 100%;
        max-height: 50vh;
    }

}

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

    .editor_left_image_right .column_left {
        padding: 0 25px;
        margin-right: 0;
        padding-right: 7%;
    }

}

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

    .editor_left_image_right .column_right {
        max-width: 50%;
        margin: auto;
        margin-top: 25px;
    }

}

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

    
    .editor_left_image_right .section_cta, .image_left_editor_right a {
        margin-top: 0;
        margin-bottom: 50px;
    }

    
    .editor_left_image_right.cta_blue  .section_cta {
        margin-top: 0;
    }

    .editor_left_image_right .column_right img{
        margin-left: 0;
        margin-bottom: 0;
    }

}

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

    .editor_left_image_right .column_right {
        max-width: 100%;
    }

    .editor_left_image_right.bgcolor ul {
        padding-left: 20px;
    }

    .editor_left_image_right .section_cta {
        margin: 40px 0;
        width: 100%;
        max-width: 90%;
    }

    .editor_left_image_right.gradient.bgcolor  {
        padding-top: 60px !important;
    }

}


.image_full_width .container {
    width: 1280px;
    max-width: 90%;
}

.image_full_width .image_container {
    width: 100%;
    position: relative;
}

.image_full_width img{
    display: block;
    width: 100%;
    border-radius: 0 0 50px 0;
    margin: 0px auto;
    margin-bottom: 0;
}

.image_full_width .vector_image{
    width: auto;
    position: absolute;
    top: -20px;
    left: -20px;
}

/* Editor Left - Editor Right */
.editor_left_editor_right .container {
    width: 1280px;
    max-width: 90%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    color: #fff;
    padding: 0px 0;
}

.editor_left_editor_right .column {
    width: 50%;
    max-width: 640px;
}

.editor_left_editor_right .container.container_full .column{
    width: 100%;
    max-width: 90%;
}

.editor_left_editor_right h2 {
    color: var(--Primary-Blue-600, #090093);
    font-family: Cairo;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 44px;
    letter-spacing: -0.72px;
}

.editor_left_editor_right .container.container_full h2{
    width: 100%;
    max-width: 100%;
}

.editor_left_editor_right h3 {
    color: #090093;
    font-family: Cairo;
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px;
    margin-top: 0;
    max-width: 400px;
}

.colored .editor_left_editor_right h3{
    color: #fff;
}

.editor_left_editor_right h4{
    color: var(--Primary-Blue-700, #000056);
    font-family: Cairo;
    font-size: 24px;
    font-weight: 400;
    line-height: 28px;
}

.editor_left_editor_right.equal_columns h4{
    max-width: 352px;
}

.editor_left_editor_right p{
    color: #07072B;
    font-family: "Work Sans";
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    margin-left: 0;
    margin-bottom: 20px;
}

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

.editor_left_editor_right p strong{
    color: var(--Primary-Blue-600, #090093);
    font-family: Cairo;
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
}

.editor_left_editor_right ul{
    padding-left: 15px;
    margin-top: 25px;
}

.editor_left_editor_right li {
    color: #07072B;
    font-family: "Work Sans";
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    margin-left: 0;
    margin-bottom: 20px;
}

.editor_left_editor_right li a{
    color: #0600EB;
}

.editor_left_editor_right.bgcolor li{
    color: #fff;
}

.editor_left_editor_right.color_blue h2,
.editor_left_editor_right.color_blue h3,
.editor_left_editor_right.color_blue h4,
.editor_left_editor_right.color_blue p{
    color: #004383;
}

.editor_left_editor_right .section_cta{
    border-radius: 4px;
    background-color: var(--Primary-Orange-500, #FF7C00);
    color: var(--Primary-Blue-700, #000056);
    font-family: "Work Sans";
    font-size: 16px;
    font-weight: 600;
    line-height: 24px; 
    margin-right: 10px;
    margin-top: 10px;
    margin-bottom: 0;
}

.editor_left_editor_right .section_cta.secondary{
    border-radius: 4px;
    background: var(--Primary-Blue-500, #0600EB);
    color: #fff;
}

.editor_left_editor_right .section_cta:hover {
    background-color: #dedeff;
    color: #090093;
}


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

     .editor_left_editor_right.right_column_larger .column.left{
        width: 38%;
        max-width: 38%;
     }

     .editor_left_editor_right.right_column_larger .column.right{
        width: 62%;
        max-width: 62%;
     }

     .editor_left_editor_right.right_column_larger .column.right p{
        max-width: 100%;
     }

    .editor_left_editor_right.left_column_larger .column.left{
        width: 62%;
        max-width: 62%;
     }

    .editor_left_editor_right.left_column_larger .column.left .column_container{
        margin-left: 0;
     }

    .editor_left_editor_right.left_column_larger .column.left p{
        max-width: 100%;
     }

     .editor_left_editor_right.left_column_larger .column.right{
        width: 38%;
        max-width: 38%;
     }

}


   

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

    .editor_left_editor_right .container.container_full .column {
        width: 100%;
        max-width: 90%;
        margin-left: 0;
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .editor_left_editor_right h4{
        max-width: 90%;
    }

}

/* Image Left - Image Right */

.image_left_image_right .container {
    width: 1280px;
    max-width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    margin: 0px auto;
}

.image_left_image_right .column{
    width: 50%;
    height: 403px;
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
}

.image_left_image_right .column.left{
    margin-right: 32px;
}

.image_left_smaller .column.left{
    width: 40%;
}

.image_left_smaller .column.right{
    width: 60%;
}

.image_left_image_right .column img{
    display: none;
}

.image_left_image_right .column.left{
    border-radius: 0 0 0 50px;
}

.image_left_image_right .column.right{
    border-radius: 0 50px 0 0px;
}


/* Image Left - Editor Right */

.image_left_editor_right{
    padding: 0px 0;
    position: relative;
}

.image_left_editor_right .container {
    justify-content: space-between;
    align-items: center;
}

.image_left_editor_right .column_left img {
    max-width: 100%;
    animation-duration: 2.5s;
    border-radius: 8px 8px 8px 64px;
}

.image_left_editor_right .column_left .image_container {
    position: relative;
}

.image_left_editor_right .column_left img.vector_image {
    border-radius: 0;
    position: absolute;
    top: -20px;
    left: -20px;
}

.image_left_editor_right .column_right {
    margin-left: 7%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.image_left_editor_right h2 {
    font-family: "Cairo";
    font-size: 36px;
    font-weight: 700;
    line-height: 44px;
    letter-spacing: -0.72px;
}

.image_left_editor_right h5{
    color: var(--Primary-Blue-500, #0600EB);
    font-family: "Work Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px;
    margin-bottom: 16px;
}

.image_left_editor_right p{
    max-width: 464px;
    color: var(--Primary-Navy-500, #004383);
    font-family: "Work Sans";
    font-size: 18px;
    font-weight: 400;
    line-height: 24px; 
    margin: 0;
    margin-bottom: 16px;
}

.image_left_editor_right li{
    max-width: 464px;
    color: var(--Primary-Navy-500, #004383);
    font-family: "Work Sans";
    font-size: 18px;
    font-weight: 400;
    line-height: 24px; 
    margin: 0;
    margin-bottom: 16px;
}

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

.image_left_editor_right.bgcolor li::marker {
  color: #FF7C00; 
}

.image_left_editor_right.bgcolor p{
    color: #fff;
}

.image_left_editor_right.bgcolor li{
    color: #fff;
}

.image_left_editor_right p span{
    display: block;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    margin-top: 16px;
}

.image_left_editor_right .buttons_container{
    display: flex;
    align-items: center;
}

.image_left_editor_right .section_cta{
    background-color: #FF7C00;
    color: #000056;
    margin-right: 16px;
}

.image_left_editor_right .section_cta:hover {
    background-color: #dedeff;
    color: #0029FF;
}

.image_left_editor_right .section_cta.secondary{
    border-radius: 4px;
    background: var(--Primary-Blue-500, #0600EB);
    color: #fff;
}

.image_left_editor_right .section_cta.secondary:hover{
    background-color: #fff;
    color: #0600EB;
}

.image_left_editor_right a {
    /*margin-top: auto;*/
    margin-bottom: 0;
}

.image_left_editor_right.image_as_bg {
    background-size: 50%;
    background-position: left;
    background-repeat: no-repeat;
}

.image_left_editor_right.image_as_bg .column_left img{
    opacity: 0;
}

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

    .image_left_editor_right .buttons_container{
        align-items: flex-start;
        flex-direction: column;
    }

    .image_left_editor_right .section_cta {
        margin: 0;
        margin-top: 15px;
    }

}

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

    .image_left_editor_right .section_cta {
        margin: 0;
        margin-top: 15px;
        width: 100%;
        max-width: calc(100% - 64px);
    }

    .editor_left_image_right.image_margin_0 .column_right img {
        max-width: 90%;
        margin: 15px auto;
        margin-bottom: 0;
    }

}

/* Address Layout */
.address_layout{
    background: var(--Gradient-Blue, linear-gradient(90deg, #090093 0%, #0600EB 100%));
}

.address_layout h2{
    color: var(--Base-White, #FFF);
    font-family: "Work Sans";
    font-size: 30px;
    font-weight: 700;
    line-height: 38px; 
}

.address_items {
    width: 100%;
    margin-top: 0;
}

.address_item_repeater{
    margin-bottom: 25px;
}

.address_item{
    display: flex;
    align-items: center;
    background-color: #fff;
    margin-bottom: 32px;
}

.address_item_column.left{
    width: 36%;
    padding: 64px 48px;
}

.address_item_column.right{
    display: flex;
    width: 100%;
    flex-grow: 1;
}

.address_item_icon{
    margin-right: 12px;
}

.address_item_title {
    display: flex;
    align-items: center;
    color: var(--Primary-Navy-500, #004383);
    font-family: "Work Sans";
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
    margin-top: 0;
    margin-bottom: 16px;
}

.address_item_address {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    color: var(--Primary-Slate-500, #07072B);
    font-family: "Work Sans";
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin: 24px 0;
    margin-bottom: 24px;
}

.address_item_address p{
    margin-left: 0;
}

.address_item_tel{
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.address_item_tel a{
    color: var(--Primary-Slate-500, #07072B);
    font-family: "Work Sans";
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-decoration: none;
}

.address_item_email{
    display: flex;
    align-items: center;
    font-family: "Work Sans";
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 24px;
}

.address_item_email a{
    display: flex;
    align-items: center;
    color: var(--Primary-Navy-500, #004383);
    font-family: "Work Sans";
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    text-decoration: none;
}

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

.address_item_team a {
    display: flex;
    align-items: center;
    color: var(--Primary-Navy-500, #004383);
    font-family: "Work Sans";
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    text-decoration: none;
}

.map_iframe {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.map_iframe iframe{
    width: 100%;
    height: 450px;
}













@-webkit-keyframes ani-mouse {
    0% {
    opacity: 1;
    top: 29%;
    }
    15% {
    opacity: 1;
    top: 50%;
    }
    50% {
    opacity: 0;
    top: 50%;
    }
    100% {
    opacity: 0;
    top: 29%;
    }
}
@-moz-keyframes ani-mouse {
    0% {
    opacity: 1;
    top: 29%;
    }
    15% {
    opacity: 1;
    top: 50%;
    }
    50% {
    opacity: 0;
    top: 50%;
    }
    100% {
    opacity: 0;
    top: 29%;
    }
}
@keyframes ani-mouse {
    0% {
    opacity: 1;
    top: 29%;
    }
    15% {
    opacity: 1;
    top: 50%;
    }
    50% {
    opacity: 0;
    top: 50%;
    }
    100% {
    opacity: 0;
    top: 29%;
    }
}

.scroll-btn {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    bottom: 30px;
}

.scroll-btn > * {
    display: inline-block;
    line-height: 18px;
    font-size: 13px;
    font-weight: normal;
    color: #7f8c8d;
    color: #ffffff;
    letter-spacing: 2px;
}
.scroll-btn > *:hover,
.scroll-btn > *:focus,
.scroll-btn > *.active {
    color: #ffffff;
}
.scroll-btn > *:hover,
.scroll-btn > *:focus,
.scroll-btn > *:active,
.scroll-btn > *.active {
    opacity: 0.8;
    filter: alpha(opacity=80);
}

.scroll-btn .mouse {
    position: relative;
    display: block;
    width: 30px;
    height: 48px;
    margin: 0 auto 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: 3px solid white;
    border-radius: 23px;
}

.scroll-btn .mouse > * {
    position: absolute;
    display: block;
    top: 29%;
    left: 50%;
    width: 8px;
    height: 8px;
    margin: -4px 0 0 -4px;
    background: white;
    border-radius: 50%;
    -webkit-animation: ani-mouse 2.5s linear infinite;
    -moz-animation: ani-mouse 2.5s linear infinite;
    animation: ani-mouse 2.5s linear infinite;
}


.watch_video {
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 20px;
    right: 5%;
    color: var(--base-colours-white, #FFF);
    font-family: SourceSans;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 27px;
}

.watch_video img{
    margin-right: 16px;
}


.partners_section {
    padding: 25px 0;
}

.partners_carousel{
    max-width: 1200px;
    margin: 0 auto;
}

.partners_carousel .slick-slide {
    display: flex !important;
    align-items: center;
    justify-content: center;
    height: 64px;
}

.partners_carousel {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.partners_carousel_item {
    width: 40%;
    float: left;
    height: 52px;
    margin: 10px 5%;
}

.partners_carousel_item img{
    max-width: 100%;
}

.partners_carousel .slick-slide img {
    /*filter: grayscale(100%);*/
}

.partners_carousel .slick-slide img {
  transition: filter 0.3s ease;
}

.partners_section p {
    color: #000;
    font-family: "Work Sans";
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    width: 1130px;
    max-width: 90%;
    margin: 0 auto;
    margin-top: 15px;
}

section .section_container{
    display: flex;
}

section h4{
    color: var(--german-uds-primary-blue-500, #000064);
    font-family: "Work Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    margin: 0;
}

section h2,
section p {
    max-width: 608px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

section h2 {
   color: #090093;
   font-family: "Cairo";
   font-size: 36px;
   line-height: 44px; 
   letter-spacing: -0.72px;
}

section h3 {
   color: #090093;
   font-family: "Cairo";
   font-size: 30px;
   line-height: 40px; 
   letter-spacing: -0.72px;
}

section p{
    color: #004383;
    font-family: "Work Sans";
    font-size: 18px;
    font-weight: 400;
    line-height: 28px; 
}

section p span{
    color: #536B7E;
    font-family: "Work Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
}

section li {
    color: #004383;
    font-family: "Work Sans";
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
}


.section_cta{
    max-width: fit-content;
    display: flex;
    padding: 6px 48px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background-color: #EFAC14;
    color: var(--Primary-Navy-600, #003467);
    font-family: "Work Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    text-decoration: none;
    margin-top: 25px;
    margin-bottom: 25px;
}

.section_cta:hover{
    background-color: #004383;
}

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

    .section_cta {
        padding: 16px 32px;
    }

}


.section_2 {
    background-color: #004383;
    padding: 80px 0;
    position: relative;
}

.section_2 .section_container {
    display: flex;
    justify-content: space-between;
}

.section_2 .column_left {
    padding-right: 5vw;
    max-width: 612px;
    animation-duration: 3s;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section_2 .vector_image{
    position: absolute;
    top: -20px;
    left: -20px;
}

section.section_2 .column_left h2{
    color: #fff;
    font-family: "Cairo";
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 44px;
    letter-spacing: -0.72px;
}

section.section_2 .column_left p{
    color: #fff;
    max-width: 464px;
}

section.section_2 .column_left p{
    color: #fff;
}


.section_2 .column_right img{
    border-radius: 10px 50px 10px 50px;
    animation-duration: 2.5s;
}

.section_3 {
    background: var(--Primary-Blue-100, #BFE8F7);
    padding: 80px;
    padding-bottom: 40px;
}

.section_3 .section_container {
    align-items: center;
    justify-content: space-between;
    padding: 50px 0;
    padding-top: 0;
}

.section_3 .column_left{
    position: relative;
}

.section_3 .column_left img {
      animation-duration: 1.3s;
    border-radius: 0 0 50px 0;
}

.section_3 .column_left .vector_image {
    position: absolute;
    top: -20px;
    left: -20px;
    z-index: 2;
}

.section_3 .column_right p{
    animation-duration: 2s;
}

.section_container {
    justify-content: space-between;
    max-width: 90%;
    width: 1280px;
}

 .column_33 {
    width: 100%;
    max-width: 491px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

 .column_33.column_center{
    margin: 0 40px;
}

 .blog_item {
    height: 47%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    animation-duration: 2s;
    border-radius: 8px 64px 8px 8px;
    overflow: hidden;
}

 .column_33.column_center .blog_item{
    height: 100%;
}

.blog_item a{
    cursor: pointer;
}

.blog_item img {
    width: 100%;
    transition: transform 0.3s ease;
    visibility: hidden;
}

 .blog_item:hover > img{
    transform: scale(1.2);
 }


 .blog_item h3{
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 252px;
    font-family: "Work Sans";
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    text-decoration: none;
    position: absolute;
    left: 0;
    bottom: -1px;
    border-radius: 0px 16px 0px 0px;
    margin-bottom: 0;
    padding: 20px 16px;
}

.post_grid h2{
    color: #090093;
    font-family: "Cairo";
    font-size: 36px;
    font-weight: 700;
    line-height: 44px;
    letter-spacing: -0.72px;
    margin-bottom: 0;
}

.heading_with_cta{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.heading_with_cta a{
    display: flex;
    padding: 16px 24px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background-color: #004383;
    color: #FFF;
    font-family: "Work Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; 
    text-decoration: none;
}

.heading_with_cta a:hover{
    background-color: #EFAC14;
}

.post_grid .post_grid_container{
    display: flex;
    margin-top: 50px;
}

.post_grid.middle h2{
    width: 100%;
    max-width: 100%;
    font-family: "Cairo";
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
}

.post_grid.middle .column_33 {
    height: 650px;
}

.post_grid .post_item{
    width: 100%;
}

.post_grid .post_item a{
    text-decoration: none;
}

.post_grid .post_item:nth-child(2){
    margin: 0 60px;
    margin-top: 40px;
}

.post_grid .post_item_img{
    height: 461px;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 0 0 50px 0;
}

.post_grid .post_item .title{
    color: var(--Primary-Navy-500, #004383);
    font-family: "Work Sans";
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
    margin-left: 15px;
}

/*  Post Grid List */

.post_grid_list {
    padding: 64px 0;
    position: relative;
}

.post_grid_list .section_container {
    max-width: 85%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: 0 auto;
    gap: 32px;
}

.post_grid_list h2{
    margin-bottom: 25px;
}

.post_grid_list .post_grid_item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(16.666% - 40px);
    background-color: #fff;
    border: 1px solid #B3DFE5;
    box-sizing: border-box;
    animation-duration: 2.5s;
    min-width: 44px;
    min-height: 44px;
}

.post_grid_list .post_grid_item:hover{
    border: 3px solid #B3DFE5;
}

.post_grid_list .post_grid_item img {
    max-width: calc(100% - 48px);
    margin: 0 auto;
}

.post_grid_list.post .post_grid_item {
    width: calc(33.333% - 40px);
    height: 256px;
    background-position: center;
    position: relative;
}

.post_grid_list.post .post_grid_item:hover {
    border: 1px solid #B3DFE5;
}

.post_grid_list.post .post_grid_item .post_grid_item_title{
    border-radius: 0px 32px 0px 0px;
    background: var(--Gradient-Blue, linear-gradient(90deg, #090093 0%, #0600EB 100%));
    color: #FFF;
    font-family: Cairo;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    padding: 24px;
    margin: 0;
    position: absolute;
    bottom: 0px;
    left: 0px;
}

.post_grid_list.module .section_container {
    gap: 32px;
}

.post_grid_list.module h2 {
    margin-bottom: 48px;
    text-align: center;
    width: 100%;
    max-width: 100%;
}

.post_grid_list.module .post_grid_item {
    width: calc(33.333% - 32px);
    flex-direction: column;
    background: transparent;
    text-decoration: none;
    border: none;
}

.post_grid_list.module .post_grid_item .image_container{
    width: 100%;
}

.post_grid_list.module .post_grid_item img {
    width: 100%;
    max-width: 100%;
    height: 276px;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    margin: 0 auto;
}

.post_grid_list.module .post_grid_item h3{
    width: 100%;
    color: var(--Primary-Blue-500, #0600EB);
    font-family: Cairo;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    text-align: left;
    margin-top: 16px;
    margin-bottom: 16px;
}

.post_grid_list.module .post_grid_item .post_grid_item_excerpt p{
    color: var(--Primary-Slate-500, #07072B);
    font-family: "Work Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    margin: 0;
}

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

    .post_grid_list .post_grid_item {
        width: calc(20% - 40px);
    }

}

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

    .post_grid_list .post_grid_item {
        width: calc(25% - 40px);
    }

}

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

    .post_grid_list .section_container {
        max-width: 90%;
        justify-content: space-between;
    }

    .post_grid_list .section_container.heading{
        padding-bottom: 0;
    }

}

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

    .post_grid_list {
        padding: 5% 0;
    }

    .post_grid_list.post .post_grid_item {
        width: calc(50% - 40px);
        height: 300px;
    }

    .post_grid_list.module .post_grid_item {
        width: calc(50% - 16px);
    }

}

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

    .post_grid_list .section_container{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .post_grid_list .post_grid_item {
        width: calc(33.333% - 40px);
        height: 200px !important;
    }

}


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

    .post_grid_list .section_container {
        padding-top: 0;
    }

    .post_grid_list .post_grid_item {
        width: calc(50% - 40px);
        height: 300px !important;
    }

    .post_grid_list.post .post_grid_item {
        width: 100%;
    }

    .post_grid_list.module .post_grid_item{
        height: auto !important;
    }

}

@media only screen and (max-width: 668px) {
    
    .post_grid_list.module .section_container {
        flex-direction: column;
        gap: 0;
    }

    .post_grid_list.module h2{
        margin-bottom: 15px;
    }

    .post_grid_list.module .post_grid_item {
        width: 100%;
        height: auto !important;
        align-items: flex-start;
        max-width: 320px;
        margin: 15px auto;
    }

    .post_grid_list.module .post_grid_item img {
        width: auto;
        height: auto;
    }

}

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

    .post_grid_list .post_grid_item {
        width: calc(100% - 40px);
        margin: 15px auto;
    }

}



/* 2 Editors - 2 Images */
.editors2_images2 {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center;
}

.editors2_images2_editors2 .image_left_image_right{
    padding: 0;
}

.editors2_images2_editors2 .editor_left_editor_right h3 {
    margin-top: 0;
}

.editors2_images2_editors2 .image_left_image_right .column {
    margin-bottom: 0px;
}


/* Image Full Width - 2 Editors - 2 Images */
.image_full_width_2_editors_in_bottom_2_images_bottom{
    background-size: cover;
}

.image_full_width_2_editors_in_bottom_2_images_bottom .image_full_width img {
    border-radius: 0 0 0px 50px;
}

.image_full_width_2_editors_in_bottom_2_images_bottom .editor_left_editor_right .column.left{
    width: 33%;
}

.image_full_width_2_editors_in_bottom_2_images_bottom .editor_left_editor_right .column.right{
    width: 67%;
    max-width: 100%;
}

.image_full_width_2_editors_in_bottom_2_images_bottom .editor_left_editor_right .column.right p{
    max-width: 100%;
}

.image_full_width_2_editors_in_bottom_2_images_bottom .editor_left_editor_right h2{
    color: #fff;
}

.image_full_width_2_editors_in_bottom_2_images_bottom .editor_left_editor_right h3 {
    color: #fff;
}

.image_full_width_2_editors_in_bottom_2_images_bottom .editor_left_editor_right p {
    color: #fff;
    font-family: "Work Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
}

.image_full_width_2_editors_in_bottom_2_images_bottom .editor_left_editor_right{
    padding: 0;
}

.image_full_width_2_editors_in_bottom_2_images_bottom .image_left_image_right .column.left {
    width: 60%;    
}

.image_full_width_2_editors_in_bottom_2_images_bottom .image_left_image_right .column.right {
    width: 40%;    
}


/* Address & Contact Form */
.address_contact_form .address_item_column.left{
    width: 36%;
    border-radius: 8px;
    background: var(--Gradient-Blue, linear-gradient(90deg, #090093 0%, #0600EB 100%));
    padding-top: 40px;
    padding-bottom: 32px;
}

.address_contact_form .address_item_column.right {
    flex-direction: column;
    align-items: flex-start;
    padding: 48px 64px;
}

.address_contact_form .address_item{
    align-items: flex-start;
    margin-top: 0;
}

.address_contact_form .address_item:last-child{
    margin-bottom: 0;
}

.address_contact_form .address_item_column.right {
    flex-direction: column;
    align-items: center;
    animation-duration: 1.5s;
    width: 100%;
}

.address_desc h1{
    color: var(--Primary-Blue-500, #0600EB);
    font-family: Cairo;
    font-size: 36px;
    font-weight: 600;
    line-height: 44px; 
    letter-spacing: -0.72px;
}

.address_desc p{
    margin-left: 0;
    margin-bottom: 32px;
}

.address_contact_form .address_item_title {
    color: #FFF;
    font-family: Cairo;
    font-size: 30px;
    font-weight: 400;
    line-height: 38px; 
}

.address_contact_form .address_item_address p {
    color: #FFF;
    font-family: "Work Sans";
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    margin-left: 0;
}

.address_contact_form .address_item_tel a{
    color: var(--Base-White, #FFF);
    font-family: "Work Sans";
    font-size: 18px;
    font-weight: 400;
    line-height: 24px; 
}

.address_contact_form .address_item_email a{
    color: var(--Base-White, #FFF);
    font-family: "Work Sans";
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
}

.address_contact_form .map_iframe{
    margin-top: 50px;
}

.address_contact_form .map_iframe iframe {
    height: 350px;
    border-radius: 8px;
}

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

.form_row label {
    color: #000;
    font-family: "Work Sans";
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    display: flex;
    flex-direction: column;
}

.form_row label:first-child {
    margin-right: 32px;
}

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

.wpcf7-form {
    display: flex;
    flex-direction: column;
}

.wpcf7 .form_row{
    display: flex;
    flex-direction: column;
    order: 2;
}

.wpcf7-response-output{
    display: flex;
    order: 1;
}

.wpcf7 input[type="text"], .wpcf7 input[type="email"], .wpcf7 input[type="tel"]{
    background-color: transparent;
    color: #142a3e;
    width: auto;
    max-width: 287px;
    height: 40px;
    font-size: 20px;
    padding: 5px 0;
    padding-left: 15px;
    border-radius: 4px;
    border: 1px solid var(--primary-d-4-b-slate-500, #142A3E);
    margin-top: 8px;
    margin-bottom: 32px;
    outline: none;
}

.wpcf7 ::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #000;
    font-family: "Work Sans";
    font-size: 14px;
    font-weight: 400;
    line-height: 24px; 
}

.wpcf7::-moz-placeholder { /* Firefox 19+ */
    color: #000;
    font-family: "Work Sans";
    font-size: 14px;
    font-weight: 400;
    line-height: 24px; 
}

.wpcf7:-ms-input-placeholder { /* IE 10+ */
    color: #000;
    font-family: "Work Sans";
    font-size: 14px;
    font-weight: 400;
    line-height: 24px; 
}

.wpcf7:-moz-placeholder { /* Firefox 18- */
    color: #000;
    font-family: "Work Sans";
    font-size: 14px;
    font-weight: 400;
    line-height: 24px; 
}

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

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

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

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

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

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

.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_method input:checked {
   width: 62px;
   height: 62px;
}

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

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

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

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

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

.form_row.textarea textarea {
    width: 100%;
    max-width: calc(100% - 4px);
    height: 200px;
    border: 1px solid #142A3E;
    margin-top: 20px;
    margin-bottom: 10px;
}

.form_row.checkbox p{
    align-items: center;
}

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

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

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

.form_row.checkbox label{
    flex-direction: row;
    color: #000;
    font-family: "Work Sans";
    font-size: 14px;
    font-weight: 400;
    line-height: 24px; 
    margin-right: 10px;
}

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

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

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

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

.form_row.checkbox a {
    color: #0600EB;
    text-decoration: underline;
    margin: 0 5px;
}

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

.form_row .wpcf7-submit{
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--Primary-Blue-500, #0600EB);
    color: #FFF;
    font-family: "Work Sans";
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
    padding: 16px 24px;
    border: 0 none;
    border-radius: 4px;
    margin-top: 32px;
}

.form_row .wpcf7-submit:hover{
    background-color: #dedeff;
    color: #0600EB;
    cursor: pointer;
}

.wpcf7 form .wpcf7-response-output{
    background-color: red;
    color: #fff;
    font-family: "Work Sans";
    font-size: 24px;
    padding: 20px;
    width: 100%;
    max-width: 96%;
    margin: 20px 0;
    background-image: url(https://www.digital4security.eu/wp-content/themes/matrixinternet2023/images/close-video.png);
    background-repeat: no-repeat;
    background-position: 100% 0;
    background-size: 35px;
}

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

.wpcf7 form.sent .wpcf7-response-output {
    background-color: #46b450;
    color: #000;
}

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

.wpcf7-response-output.hide{
    display: none;
}

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

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

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

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

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

.address_contact_form.only .wpcf7 input[type="text"], 
.address_contact_form.only .wpcf7 input[type="email"],
.address_contact_form.only .wpcf7 input[type="tel"] {
    width: 100%;
    max-width: calc(100% - 15px);
}


.address_contact_form.only .wpcf7-form.invalid input[type="text"], 
.address_contact_form.only .wpcf7-form.invalid input[type="email"], 
.address_contact_form.only .wpcf7-form.invalid  input[type="tel"]{
    margin-bottom: 0;
}

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

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

.address_contact_form .wpcf7-radio .wpcf7-list-item input[type="radio" i] {
    visibility: visible; 
}

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

.address_contact_form .wpcf7-radio .wpcf7-list-item.active {
    background-image: url('../images/form-radio-checked.png');
}


/* Post Grid List */
.post_grid_list_with_content{
    padding: 40px 0;
}

.post_grid_list_with_content .partners_carousel .slick-slide {
    display: flex !important;
    align-items: center;
    justify-content: center;
    height: 64px;
}

.post_grid_list_with_content {
    padding-top: 80px;
    position: relative;
    background-image: none;
}

.post_grid_list_with_content .section_container {
    max-width: 1240px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: 0 auto;
}

.post_grid_list_with_content .post_categories {
    display: flex;
    align-items: center;
    list-style-type: none;
    flex-wrap: wrap;
    padding-left: 15px;
}

.post_grid_list_with_content .post_categories li {
    background-color: #FF7C00;
    border-radius: 8px;
    margin-right: 8px;
}

.post_grid_list_with_content .post_categories li:hover{
    background-color: #0600eb;
    color: #fff;
    cursor: pointer;
}

.post_grid_list_with_content .post_categories li:hover > a{
    color: #fff;
}

.post_grid_list_with_content .post_categories li.active {
    background-color: #0600eb;
}

.post_grid_list_with_content .post_categories li a {
    display: block;
    color: #000056;
    font-family: "Work Sans";
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    text-decoration: none;
    padding: 16px 16px;
}

.post_grid_list_with_content .post_categories li.active a{
    color: #fff;
}

.post_grid_list_with_content .news_item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: calc(33% - 40px);
    text-decoration: none;
    margin: 20px;
    box-sizing: border-box;
    animation-duration: 2.5s;
    position: relative;
}

.post_grid_list_with_content .news_item:first-child {
    width: calc(66% - 40px);
    max-height: 600px;
}

.post_grid_list_with_content .news_item:first-child .news_item_content{
    padding: 32px;
    border-radius: 0px 32px 0px 0px;
    background: var(--Gradient-Blue, linear-gradient(90deg, #090093 0%, #0600EB 100%));
    position: absolute;
    bottom: 0;
}

.post_grid_list_with_content .news_item_img {
    width: 100%;
    height: 360px;
    background-position: center;
    background-size: cover;
    border-radius: 8px 64px 8px 8px;
}

.post_grid_list_with_content .news_item h2 {
    color: var(--Primary-Blue-500, #0600EB);
    font-family: Cairo;
    font-size: 24px;
    font-weight: 400;
    line-height: 28px;
    margin-top: 16px;
    margin-bottom: 0;
}

.post_grid_list_with_content .news_item:first-child .news_item_content h2{
    color: #fff;
    height: auto !important;
}

.post_grid_list_with_content .news_item:nth-child(2) .news_item_content h2{
    height: auto !important;
}

.post_grid_list_with_content .news_item h3{
    color: var(--Primary-Slate-500, #07072B);
    font-family: "Work Sans";
    font-size: 14px;
    font-weight: 400;
    line-height: 20px; 
}

.post_grid_list_with_content .news_item:nth-child(2) .news_item_content h3{
    height: auto !important;
}

.post_grid_list_with_content .news_item:first-child .news_item_content h3{
    color: #fff;
    height: auto !important;
}


/* Image Full Width - 2 editor on bottom */
.image_full_width_2_editors_on_bottom{
    background-size: cover;
    position: relative;
}

.page_builder section.editor_left_editor_right.with_image_on_top{
    padding-top: 0;
}

.editor_left_editor_right.colored.with_image_on_top h2{
    color: #FFA861;
    font-weight: 400;
    font-family: Cairo;
}

.editor_left_editor_right.colored.with_image_on_top p{
    color: #fff;
}

.editor_left_editor_right.colored.with_image_on_top li{
    color: #fff;
}

/* Text Editor */
section.text_editor_section{
    padding: 5%;
}

section.text_editor_section  p{
    max-width: 100%;
}

/* Responsive Design */


@media only screen and (min-width: 768px) {
    .sib-default-btn{
        padding: 14px 30px;
        margin-top: 28px;
    }

}




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


        .post_grid.middle .section_container{
            max-height: 650px;
        }       
        
        .blog_item{
            background-image: none;
            transition: transform 0.3s ease;
            transform: scale(1);
        }

        .blog_item img {
            visibility: visible;
            transition: transform 0.3s ease;
            height: 100%;
            object-fit: cover;
        }

        .blog_item:hover img{
            transition: transform 0.3s ease;
         }

}

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

    .homeslider_section{
        z-index: 2;
    }

    .home_slide_column_right{
        position: relative;
        top: 30px;
    }

}


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

     .column_left h2 {
        max-width: 800px;
    }

}


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


    .container.section_container.course_container {
        max-width: calc(100% - 100px);
        padding: 0 50px;
        align-items: center;
        justify-content: center;
    }

    .course_item{
        width: 33.333%;
    }



}


@media only screen and (max-width: 1480px) {
  
    .section_3 .column_right {
        max-width: 40%;
        padding: 0 5%;
    }

}


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

    .home_slide_text h1 {
        font-size: 50px;
        line-height: 62px;
    }

    .section_2 .section_container {
        justify-content: center;
    }

    .section_2 .column_left {
        padding: 0 5%;
    }

    .section_2 .column_right img {
        max-width: 100%;
    }

    .section_3 .column_left img {
        max-width: 100%;
    }

     .column_33{
        width: 33.333%;
    }

     .column_left h2 {
        max-width: 750px;
    }

    /* Post Grid List with Content */
    .post_grid_list_with_content .section_container {
        max-width: 90%;
    }

}

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

    .home_slide_column.left img {
        max-width: 400px;
    }

    .home_slide_column_right img{
        max-width: 250px;
    }

    .home .home_slide.slick-slide {
        height: auto;
        padding-top: 120px;
    }


}

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


    .home_slide_column.left {
        height: auto;
        max-height: unset;
        margin: 0 auto;
        align-items: center;
    }

    .home_slide_column.left img {
        max-width: 350px;
    }

    .home_slide_column_right{
        display: none;
    }

    .page_banner {
        height: 50vh;
    }

    .image_full_width .container,
    .editor_left_editor_right .container,
    .image_left_image_right .container,
    .image_left_editor_right .container  {
        max-width: 90%;
    }

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

     .home_slide_column_left_1 {
        margin-right: 0%;
        margin-top: auto;
    }

    .home_slide_column_left_2 {
        padding: 5%;
    }

    .column_left h2 {
        max-width: 650px;
    }

    .container.section_container.course_container {
        margin-top: 30px;
    }

}


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

    .page_banner.middle {
        height: auto;
    }

    .page_builder section {
        padding: 50px 0;
    }

    .home_slide_column.left img {
        max-width: 450px;
    }

    .home_slide_text h1,
    .home_slide_text h1 strong {
        font-size: 40px;
        line-height: 52px;
    }

    .slick-slide img {
        max-width: 220px;
    }

    .image_left_editor_right a {
        margin-top: 35px;
    }

    .column_right .vector {
        max-width: 450px;
    }

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

    .strategy_section h2 {
        font-size: 28px;
        line-height: 36px;
        max-width: 100%;
    }

    section h5 {
        font-size: 24px;
        line-height: 32px;
    }

    .section_2 .column_left {
        padding-right: 5vw;
        max-width: calc(50% - 5vw);
    }

    section .team_carousel_item h5 {
        font-size: 18px;
        line-height: 28px;
    }

    /*Post Grid List With Content */
    .post_grid_list_with_content .news_item {
        width: calc(33.333% - 40px);
    }

}

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

    .home_slide_column h1 {
        max-width: 100%;
    }

    .home_slide_column_left_2 p {
        width: 100%;
        max-width: 100%;
    }

    .home_slide_column.left img {
        max-width: 350px;
    }

    .home_slide_column.left{
        margin-left: 0;
    }

    .home_slide_column.center {
        width: 50%;
        padding-bottom: 0;
        margin-left: 10vw;
        margin-top: auto;
        margin-bottom: 25px;
    }

    .home_slide_column.center h1 {
        font-size: 50px;
        line-height: 60px;
    }

    .home_slide_column.right img {
        max-width: 250px;
        bottom: 40px;
    }

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

    /* Addres & Contact Form */
    .address_contact_form .address_items{
        margin-top: 0;
    }

    .address_contact_form .address_item_column.left {
        width: 90%;
        padding: 5%;
        margin-top: 100px;
    }

    .address_contact_form .address_item_column.right {
        width: 100%;
        padding: 0;
        margin-top: 20px;
    }

    .address_contact_form .address_item {
        flex-direction: column;
    }

    .address_contact_form .wpcf7{
        width: 100%;
    }

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

    .form_row.textarea label {
        width: 100%;
        max-width: 100%;
        margin-right: 0;
    }

    .wpcf7 input[type="text"], .wpcf7 input[type="email"] {
        max-width: calc(100% - 20px);
    }

    .form_row.textarea textarea {
        max-width: calc(100% - 2px);
        margin-top: 10px;
    }

}


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

    h1 {
        font-size: 32px !important;
        line-height: 40px !important;
    }

    h2 {
        font-size: 28px !important;
        line-height: 36px !important;
    }

    .page_banner.middle {
        margin-top: 0;
    }

    .home .home_slide.slick-slide {
        padding-top: 60px;
    }

    .home_slide_column.left {
        margin-left: 0;
        width: 100%;
        max-width: 100%;
    }

    .home_slide_column_left_2 {
        padding-top: 0;
    }

    .page-template-template-builder header {
        position: static;
        background-color: transparent;
    }

    .page_builder{
        margin-top: 20px;
    }

    section .section_container {
        max-width: 90%;
    }

    .home_slide.slick-slide {
        max-height: 580px;
    }

    .partners_carousel .slick-slide img {
        max-width: 100px;
    }

    .scroll-btn .mouse{
        display: none;
    }

    section p{
        margin: 0;
    }

    section h2, section p{
        padding: 0%;
    }


    section h2{
        max-width: 100%;
    }

    .column_right .vector {
        display: none;
    }

    section .section_container{
        width: 100%;
    }

    .value_item:nth-child(2n+2) {
        justify-content: flex-start;
    }

    .value_item_text {
        display: flex;
        flex-grow: 1;
        flex-direction: column;
        max-width: 600px;
    }

    .popup_column.right {
        max-height: 100vh;
        overflow-y: scroll;
    }

    .custom_dots .slick-dots {
        text-align: center;
        margin-left: 0px;
    }

    .custom_dots .slick-dots li {
        width: auto;
        height: 2px;
        margin-right: 0px;
    }

    .custom_dots .slick-dots li:nth-child(1) button:after {
        display: none;
    }

    .custom_dots .slick-dots li:nth-child(2) button:after {
        display: none;
    }

    .custom_dots .slick-dots li button:before {
        width: 10px;
        height: 10px;
        border-radius: 50%;
    }

    .custom_dots .slick-dots li.slick-active button:before {
        width: 10px;
        height: 10px;
        border-radius: 50%;
    }

    .section_7{
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .container.section_container.course_container {
        align-items: flex-start;
    }

    .course_item:nth-child(2) {
        top: 0;
    }

    .course_item:nth-child(3) {
        top: 0px;
    }

    /* Address & Contact Form */
    .address_contact_form{
        position: relative;
    }

    .address_contact_form .address_item_column.left {
        margin-top: 0;
    }

    .address_contact_form .wpcf7 input[type="text"], .wpcf7 input[type="email"] {
        max-width: calc(100% - 50px);
    }

    /* Post Grid Middle */
    .post_grid.middle .column_left .blog_item {
        height: calc(50% - 12px);
    }

    .post_grid.middle .column_right .blog_item {
        height: calc(50% - 12px);
    }

    .post_grid.middle .column_33 {
        height: 550px;
    }

    .post_grid.middle .column_33.column_center {
        margin: 0 24px;
    }

}


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

    .page_builder .column{
        min-height: unset;
    }

    .section_cta{
        margin-bottom: 50px;
    }

    /* Post Grid List With Content */
    main .container.post_categories_container{
        max-width: 90%;
        padding-bottom: 0;
        margin: 0 auto;
    }

    .post_grid_list_with_content .post_categories li {
        margin-bottom: 20px;
    }

    .post_grid_list_with_content .section_container {
        padding-top: 0;
    }

}

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

    .page-template-template-builder .page_banner.middle .container h1 {
        margin-top: 0;
    }

    .home_slide_column_left_2 a {
        margin-bottom: 50px;
    }

    .page_builder section{
        padding: 40px 0;
    }

    .page_builder section .container{
        padding: 0 0;
    }

    .page_builder section .container.page_banner_container {
        padding: 20px 40px;
        width: auto;
    }

    .page_builder .column{
        padding: 0;
    }

    .home_slide.slick-slide {
        max-height: 500px;
    }

    .home_slide_column_right img {
        max-width: 200px;
    }

    .post_grid .section_container{
        flex-direction: column;
        align-items: center;
    }

    .column_33{
        width: 100%;
    }

    .column_33.column_center {
        margin: 0 auto;
    }

    .blog_item {
        height: 25vh !important;
        margin-bottom: 15px;
    }

    .post_grid.middle .blog_item {
        height: 350px !important;
    }

    .post_grid.middle .column_33 {
        height: auto;
    }

    .column_33.column_center {
        height: auto;
    }

    .column_33.column_center .blog_item {
        height: 25vh;
    }

    .blog_item h3 {
        bottom: 0px;
    }

    .image_left_image_right .column {
        margin-bottom: 50px;
    }

    .editor_left_editor_right .column.left{
        padding-right: 20px;
        margin-left: 0;
    }

    .editor_left_editor_right .column.right{
        padding-left: 20px;
    }

    .image_full_width_2_editors_in_bottom_2_images_bottom .editor_left_editor_right p {
        font-size: 24px;
        line-height: 32px;
    }

    .editors2_images2 .image_left_image_right .column {
        margin-bottom: 10px;
    }

    /* Address & Contact Form */
    .form_row p {
        flex-direction: column;
    }

    .address_contact_form .wpcf7 input[type="text"], .wpcf7 input[type="email"] {
        max-width: calc(100% - 10px);
        width: 100%;
    }

    .form_row label:first-child {
        margin-right: 0px;
    }

    .form_row.checkbox p {
        flex-direction: row;
    }

    .form_row.checkbox label{
        margin-right: 15px;
    }

}

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

    .page-template-template-builder .page_banner .container {
        margin: 0;
        border-radius: 0;
    }

    .page_builder section .container{
        max-width: 90%;
    }

    .page_builder .column {
        padding: 10px;
    }

    .home_slide.slick-slide {
        height: auto;
        max-height: unset;
    }

    .home_slide_column {
        margin-top: 150px;
    }

    .home_slide_column.left {
        flex-direction: column;
        max-height: unset;
    }

    .home .home_slide.slick-slide {
        padding-top: 0;
    }

    .home_slide_column_left_2 {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .image_full_width img{
        margin-top: 0;
    }

    .page_builder section.image_left_image_right{
        padding: 0;
    }

    .page_builder .image_full_width_2_editors_in_bottom_2_images_bottom section.image_left_image_right {
        padding: 40px 0;
    }

    .image_left_editor_right .column_left{
        display: flex;
        align-items: center;
    }

    .address_layout h2 {
        width: 100%;
        text-align: center;
        margin-bottom: 30px;
    }

    .editors2_images2 .image_left_image_right .column {
        margin-bottom: 50px;
    }

}

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

    /* Address & Contact Form */
    .address_contact_form .wpcf7 input[type="text"], .wpcf7 input[type="email"] {
        max-width: calc(100% - 20px);
        margin-bottom: 15px;
    }

    .address_contact_form .wpcf7 input[type="text"].wpcf7-not-valid, 
    .address_contact_form .wpcf7 input[type="email"].wpcf7-not-valid{
        margin-bottom: 0px;
    }

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

}

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

    .home_slide_column.left {
        width: 100%;
        max-width: 100%;
        height: auto;
        flex-direction: row;
        margin-top: 0;
    }

    .home_slide_column_left_1 {
        width: 50%;
    }

    .home_slide_column_left_2 {
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: auto;
        margin-top: auto;
        margin-bottom: 20px;
    }

    .home_slide_column_left_2 a {
        padding: 20px 20px;
    }

    .home_slide_column_right {
        display: none;
    }


}


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

    .section_container {
        flex-direction: column;
    }

    .home_slide_text h1 {
        margin-top: 30px;
    }

    .image_left_editor_right .column_left {
        margin: 40px auto;
    }

    .image_left_editor_right a {
        margin-top: 0;
        margin-bottom: 50px;
    }

    .post_grid .post_grid_container {
        flex-direction: column;
        margin-top: 35px;
    }

    .post_grid .post_item:nth-child(2) {
        margin: 0;
    }

    .post_grid .post_item .title {
        font-weight: 600;
        margin-left: 24px;
    }

    .blog_item {
        height: 50vh;
        margin-bottom: 50px;
    }

    .column_33.column_center .blog_item {
        height: 350px !important;
    }


    .column_33.column_center {
        width: 100%;
    }

    /* Post Grid List With Content */
    .post_grid_list_with_content .section_container {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }



}


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


    .text_editor_section h3{
        font-size: 24px !important;
        line-height: 32px !important;
    }

    .address_contact_form.only .wpcf7 input[type="text"], 
    .address_contact_form.only .wpcf7 input[type="email"],
     .address_contact_form.only .wpcf7 input[type="tel"]{
        width: 100%;
        max-width: 90%;
        padding: 0 5%;
    }

    .post_grid_list_with_content .news_item:first-child {
        width: 100%;
    }

    .post_grid_list_with_content .news_item:first-child .news_item_content {
        position: static;
        background: none;
        padding: 0;
        border-radius: 0;
    }

    .post_grid_list_with_content .news_item:first-child .news_item_content h2 {
        color: #0600EB;
    }

    .post_grid_list_with_content .news_item:first-child .news_item_content h3 {
        color: #07072B;
    }
    .home .home_slide.slick-slide {
        max-height: unset;
    }

    .home_slide_column_left_2 {
        max-width: 100%;
        height: auto;
        justify-content: flex-start;
    }

    .home_slide_column_right{
        display: none;
    }

    .page-template-template-builder .page_banner.middle .container h1 {
        font-size: 36px;
        line-height: 44px;
    }

    .page-template-template-builder .page_banner.middle .container p {
        font-size: 14px;
        line-height: 22px;
    }

    .page_builder {
        margin-top: 0px;
    }

    .page_banner.middle {
        margin-top: 0;
    }

    .page_banner.small {
        margin-top: 0px;
    }

    .home_slide_column {
        margin-top: 120px;
    }

    .home_slide_column.left {
        max-width: 100%;
    }

    .home_slide_column_left_1 {
        order: 2;
    }

    .home_slide_column.left img {
        max-width: 320px;
        margin: 0 auto;
    }

    .home_slide_column_left_2 a {
        margin-bottom: 0;
    }

    .home_slide_column_right img {
        max-width: 150px;
        position: absolute;
        bottom: 40%;
        right: 0%;
    }

    .image_left_editor_right .column_left {
        margin: 0px auto;
        margin-bottom: 25px;
    }

    .image_left_editor_right .column_right {
        margin-left: 0;
    }

    .image_left_editor_right.image_as_bg {
        background-size: 0;
    }

    .image_left_editor_right.image_as_bg .column_left .image_container {
        width: 100%;
    }

    .image_left_editor_right.image_as_bg .column_left  {
        width: 100%;
    }

    .image_left_editor_right.image_as_bg .column_left img {
        opacity: 1;
        width: 100%;
    }

    .image_left_editor_right a {
        margin: 40px 0;
    }

    .blog_item {
        margin-bottom: 25px;
    }

    .column_33.column_center .blog_item {
        height: 25vh;
    }

    .post_grid.middle .column_33.column_center {
        margin: 0 auto;
    }

    .column_33.column_center .blog_item {
        height: 50vh;
    }

    /* Editor Left - Editor Right */
    .editor_left_editor_right .container{
        flex-direction: column;
    }

    .editor_left_editor_right .column {
        width: 100%;
        max-width: 90%;
    }

   .editor_left_editor_right .column.right {
        max-width: 100%;
        padding-left: 0;
        margin-left: 0;
    }

    /* Image Left - Image Right */
    .image_left_image_right .container{
        flex-direction: column;
    }

    .image_left_image_right .column{
        width: 100%;
    }

    .image_left_image_right .column.left {
        margin: 0 auto;
        margin-bottom: 40px;
    }

    /* Address */
    .address_items {
        margin-top: 15px;
    }

    .address_item {
        flex-direction: column;
    }

    .address_item_column.left {
        width: 80%;
        padding: 10%;
    }

    .editors2_images2_editors2 .editor_left_editor_right h2 {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 0;
    }

    .editors2_images2_editors2 .editor_left_editor_right .column.right {
        padding-left: 0px;
        padding-bottom: 0;
    }

    .editors2_images2_editors2 .image_left_image_right .column.left {
        margin: 0 auto;
        margin-bottom: 40px;
    }

    .editors2_images2_editors2 .editor_left_editor_right h3 {
        margin-bottom: 0;
    }

    .editors2_images2_editors2 .editor_left_editor_right .column.left {
        padding-top: 0px;
        padding-left: 0;
        padding-right: 0;
    }

    .editors2_images2_editors2 .image_left_image_right .column {
        max-width: 90%;
    }

    .image_full_width_2_editors_in_bottom_2_images_bottom .editor_left_editor_right h3 {
        margin-bottom: 0;
    }

    .image_full_width_2_editors_in_bottom_2_images_bottom .editor_left_editor_right .column.left {
        width: 100%;
    }

    .image_full_width_2_editors_in_bottom_2_images_bottom .editor_left_editor_right .column.right {
        width: 100%;
        max-width: 90%;
        padding-left: 0;
    }

    .image_full_width_2_editors_in_bottom_2_images_bottom .image_left_image_right .column.left {
        width: 100%;
    }

    .image_full_width_2_editors_in_bottom_2_images_bottom .image_left_image_right .column.right {
        width: 100%;
    }

    .image_full_width_2_editors_in_bottom_2_images_bottom .editor_left_editor_right p {
        font-size: 20px;
        line-height: 28px;
    }

    .editors2_images2 .editor_left_editor_right .column.right {
        padding-left: 0px;
    }

    .editors2_images2 .editor_left_editor_right h3 {
        margin-bottom: 0;
    }

    /* Post Grid List With Content */
    .post_grid_list_with_content .news_item {
        margin-bottom: 0;
    }

    /* Address Contact Form */
    .address_contact_form .map_iframe {
       height: auto;
       margin-top: 30px;
    }

    .form_row .wpcf7-form-control-wrap {
        line-height: 26px;
    }

    .form_row label {
        font-size: 16px;
        line-height: 24px;
    }

    .form_row.checkbox .wpcf7-not-valid-tip {
        bottom: -42px;
    }

    .wpcf7 form .wpcf7-response-output {
        margin: 0;
        padding: 15px 10px;
        border: 2px solid #00a0d2;
    }

    /* Specific Styles */
    .section-3 .section_cta{
        margin-bottom: 0;
    }

    .page_builder section.section-4{
        padding-top: 0;
        padding-bottom: 0;
    }

    .page_builder section.section-5{
        padding-top: 0;
    }


    .post_grid_list_with_content .section_container {
        padding-top: 0;
    }

    .post_grid_list_with_content .news_item {
        width: 100%;
    }

    .home .post_grid.middle{
        padding-bottom: 0;
    }
    
}

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

    .address_item_column.left {
        width: 90%;
        padding: 10% 5%;
    }

    .address_contact_form .address_item_title {
        font-size: 24px;
        line-height: 32px;
    }

    .address_desc h1 {
        margin-top: 10px;
    }

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

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

    .form_row.checkbox label {
        flex-wrap: wrap;
    }

    .address_layout .map_iframe iframe {
        height: 400px;
    }


}

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

    /* Post Grid List With Content */
    .post_grid_list_with_content .news_item {
        width: calc(100% - 40px);
    }

}

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

        .home_slide_column_right img {
            max-width: 110px;
        }

}







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

.image_gallery_container {
    width: 1280px;
    max-width: 90%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

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

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

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

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

.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%;
    border-radius: 8px 64px 8px 8px;
}

.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%;
    border-radius: 8px 64px 8px 8px;
}

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

.image_gallery_container .row:nth-child(2n+1) .image:nth-child(n+1) {
    border-radius: 8px 8px 8px 64px;
}

.image_gallery_container .row.row:nth-child(2n+1) .image:nth-child(n+2)  {
    border-radius: 8px 64px 8px 8px;
}

.image_gallery_container .row:nth-child(2n+2) .image:nth-child(n+1) {
    border-radius: 8px 8px 8px 64px;
}

.image_gallery_container .row.row:nth-child(2n+2) .image:nth-child(n+2)  {
    border-radius: 8px 8px 64px 8px;
}


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


    .image_gallery_section {
        padding: 60px 0;
    }

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

    .image_gallery_container .row {
        height: 50vh;
        max-height: 400px;
        margin-bottom: 30px;
    }
    
    .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: 767px) {

    .image_gallery_container .row {
        height: 100vh;
        max-height: 400px;
    }

    .image_gallery_container .row .image {
        width: 100% !important;
        height: 400px;
    }


}


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

    .image_gallery_container .row{
        height: auto;
        flex-direction: column;
        max-height: unset;
    }

}


/***** Posts Carousel *****/
.page_builder section.related {
    font-family: Montserrat;
    padding-top: 5%;
    padding-bottom: 100px;
}

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

.related h2 {
    color: #090093;
    font-weight: 400;
    font-size: 36px;
    line-height: 44px;
    margin-bottom: 40px;
}

.related h3 {
    max-width: 90%;
    color: var(--Primary-Blue-700, #000056);
    font-family: Cairo;
    font-size: 24px;
    font-weight: 400;
    line-height: 28px; /* 116.667% */
    margin-top: 0;
}

.related h4 {
    color: var(--S4R-Primary-Slate-400, #536B7E);
    font-family: "Cairo";
    font-size: 24px;
    font-weight: 400;
    line-height: 40px;
}

.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: NotoSans;
    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.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;
    }

}


/***** Iframe *****/
.iframe_layout {
   
    background-image: url(../images/values-vector-2.png);
    background-repeat: no-repeat;
    background-position: 100% 80%;
    position: relative;
    padding: 80px 0;
    background: var(--Gradient-Blue, linear-gradient(90deg, #090093 0%, #0600EB 100%))
}

.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%;
}

.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 p{
    max-width: 100%;
    color: #fff;
    margin-left: 0;
}

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

.iframe_layout .preview_image_container{
    position: relative;
}

.iframe_layout .preview_image_overlay {
    background-color: rgba(9, 0, 147, 0.2);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 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: "Work Sans";
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-top: 15px;
}

.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: 1;
}

.video_overlay.active {
    display: block;
    background-color: rgba(9, 0, 147, 0.8);
}

@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;
    }

}


/* Iframe with Editor */
.iframe_with_editor {
    background: var(--Primary-Blue-200, #DEDEFF);
    background-repeat: no-repeat;
    background-position: 100% 80%;
    position: relative;
    padding: 80px 0;
}

.iframe_with_editor .section_container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.iframe_with_editor .section_container .column_50 {
    display: flex;
    align-items: center;
    width: 45%;
    margin-right: 5%;
}

.iframe_with_editor .img_container {
    position: relative;
    height: 100vh;
    max-height: 573px;
}

.iframe_with_editor .img_container img.play_button,
.iframe_with_editor .img_container img.close_video {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 3;
    cursor: pointer;
    max-width: 80px;
}

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

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

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

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

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

.iframe_with_editor .img_container img {
    width: 100%;
}

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

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

.iframe_with_editor .preview_image {
    height: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px 8px 8px 64px;
}

.iframe_editor_container h2 {
    color: #090093;
    font-family: Cairo;
    font-size: 36px;
    font-weight: 600;
    line-height: 44px;
    letter-spacing: -0.88px;
}

.iframe_editor_container p{
    color: var(--Base-Colours-White, #07072B);
    font-family: "Work Sans";
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 20px;
}

.iframe_editor_container li{
    color: var(--Base-Colours-White, #07072B);
    font-family: "Work Sans";
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 20px;
}

.iframe_with_editor .cta_buttons{
    display: flex;
    align-items: center;
}

.iframe_with_editor .cta_buttons a {
    border-radius: 4px;
    background: var(--Primary-Orange-500, #FF7C00);
    margin-right: 16px;
    margin-bottom: 0;
}

.video_overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(9, 0, 147, 0.80);
    z-index: 1;
}

.video_overlay.active {
    display: block;
}

@media only screen and (max-width: 1024px) {
    
    .iframe_with_editor .iframe_container.active {
        top: 50px;
    }

}

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

    .iframe_with_editor .section_container .column_50 {
        width: 100%;
        margin-right: 0;
    }

    .iframe_with_editor .img_container {
        max-height: 400px;
        margin-bottom: 30px;
    }

}

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

    .iframe_with_editor .section_container .column_50 {
        width: 100%;
        height: auto;
        margin-right: 0%;
        margin-bottom: 30px;
    }

    .iframe_with_editor .iframe_container.active {
        top: 20%;
    }

    .iframe_with_editor .img_container img.play_button, 
    .iframe_with_editor .img_container img.close_video {
        max-width: 60px;
    }

}


/***** Simple Text Editor *****/
.simple_text_editor{
    background: var(--S4R-Primary-Slate-100, #F3F5F8);
}

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

.simple_text_editor h2{
    color: var(--Primary-Blue-500, #0600EB);
    font-family: Cairo;
    font-size: 36px;
    font-weight: 400;
    line-height: 44px;
    max-width: 1480px;
    margin-bottom: 40px;
}

.simple_text_editor h3 {
    color: var(--Primary-Blue-600, #090093);
    font-family: Cairo;
    font-size: 30px;
    font-weight: 400;
    line-height: 38px;
    width: 860px;
    max-width: 90%;
    margin: 15px 0;
}

.simple_text_editor h4{
    color: var(--Primary-Blue-600, #090093);
    font-family: Cairo;
    font-size: 20px;
    font-weight: 700;
    line-height: 26px; 
}

.simple_text_editor p{
    max-width: 1000px;
    color: var(--Primary-D4B-Slate-900, #142A3E);
    font-family: "Work Sans";
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
    margin-left: 0;
    margin-bottom: 20px;
}

.simple_text_editor p a:hover {
    text-decoration: underline;
}

.simple_text_editor .cta_container{
    display: flex;
}

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

.simple_text_editor li {
    color: var(--Primary-Slate-400, #393955);
    font-family: "Work Sans";
    font-size: 16px;
    font-weight: 400;
    line-height: 24px; 
    margin: 3px 0;
}

.simple_text_editor.bgcolor li::marker {
    color: #090093; 
}

.simple_text_editor li a{
    display: flex;
    align-items: center;
    color: var(--Primary-Slate-400, #393955);
    text-decoration: none;
}

.simple_text_editor p a,
.simple_text_editor li a{
    display: inline;
    color: var(--Primary-D4B-Hot-Pink-500, #0600EB) !important;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    text-decoration: none;
}

.simple_text_editor li a:hover{
    color: #0600EB;
    text-decoration: underline;
}

.simple_text_editor iframe{
    width: 100%;
    height: 100vh;
    max-height: 522px;
}

.simple_text_editor.bgcolor h2,
.simple_text_editor.bgcolor h3,
.simple_text_editor.bgcolor h4,
.simple_text_editor.bgcolor h5,
.simple_text_editor.bgcolor h6,
.simple_text_editor.bgcolor p{
    color: #fff;
} 

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

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

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

.simple_text_editor.boxed ul{
    padding-left: 20px;
    margin-bottom: 0;
}

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

.simple_text_editor.semi .container{
    width: 1248px;
    max-width: 90%;
    margin: 0 auto;
}

.simple_text_editor.table p{
        margin: 0 auto;
}

.simple_text_editor.breakdown .container{
    max-width: 1020px;
    background-color: #fff;
}

.simple_text_editor.breakdown .course_breakdown_heading{
    background: var(--Gradient-Blue, linear-gradient(90deg, #090093 0%, #0600EB 100%));
    border-radius: 8px 8px 0px 0px;
    padding: 32px 48px;
}

.simple_text_editor.breakdown .course_breakdown_heading h4{
    color: var(--Primary-Orange-300, #FFA861);
    font-family: Cairo;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px; 
}

.simple_text_editor.breakdown .course_breakdown_heading h2{
    color: var(--Base-White, #FFF);
    font-family: Cairo;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 44px;
    margin-bottom: 0;
}

.simple_text_editor.breakdown .editor_container{
    padding: 48px;
}

.simple_text_editor.breakdown .editor_container p{
    color: var(--Primary-Slate-500, #07072B);
    font-family: "Work Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; 
}

.simple_text_editor.breakdown .editor_container p:last-child{
    margin-bottom: 0;
}

.simple_text_editor.breakdown .editor_container li{
    color: var(--Primary-Slate-500, #07072B);
    font-family: "Work Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px; 
}

.simple_text_editor.breakdown .editor_container li li{
    font-weight: 400;
}

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

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

    .simple_text_editor h2 {
        font-size: 48px;
        line-height: 58px;
    }

    .simple_text_editor h3{
        font-size: 36px;
        line-height: 44px;
    }

    .simple_text_editor h4{
        font-size: 28px;
        line-height: 36px;
    }

}

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

    .simple_text_editor.boxed .container {
        width: 90%;
        max-width: 80%;
        padding: 5%;
    }


}

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

    .simple_text_editor.bgcolor.boxed ul{
        padding-left: 20px;
    }

    .simple_text_editor h2 {
        margin-bottom: 20px;
    }

}


@media (max-width: 828px) {

    .simple_text_editor.table p{
        display: block;
        margin-top: 10px;
        margin-bottom: 10px;
        margin-bottom: 60px;
        overflow-x: auto;
        white-space: nowrap; 
        max-width: 100%;
    }

    .simple_text_editor.table p img {
        max-width: none;
        width: auto;
        height: 600px;
    }

    .simple_text_editor.table p::-webkit-scrollbar {
        height: 10px; 
        background-color: #F0F0F0; 
    }

    .simple_text_editor.table p::-webkit-scrollbar-thumb {
        background-color: #142A3E; 
        border-radius: 5px; 
    }

}


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

    .simple_text_editor h3 {
        font-size: 28px;
        line-height: 36px;
    }

}

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

    .simple_text_editor .cta_container{
        flex-direction: column;
    }

    .single-module .simple_text_editor.semi .cta {
        width: 100%;
        max-width: calc(100% - 48px);
    }

}


/* Timeline */
.timeline_section {
    padding: 100px 0;
}

.timeline_section .timeline_container {
    width: 90%;
    max-width: 1170px;
    margin: 0 auto;
}

.timeline_section .timeline_container::after {
    content: "";
    display: table;
    clear: both;
}

.timeline_section h2 {
    width: 100%;
    max-width: 100%;
    text-align: center;
    margin-bottom: 68px;
}

.timeline_section #cd-timeline {
    position: relative;
}

.timeline_section #cd-timeline::before {
    content: "";
    position: absolute;
    top: 0;
    left: 18px;
    height: 100%;
    width: 2px;
    background: #090093;
}

.timeline_section .cd-timeline-block {
    position: relative;
    margin: 2em 0;
}

.timeline_section .cd-timeline-block::after {
    clear: both;
    content: "";
    display: table;
}

.timeline_section .cd-timeline-block:first-child {
    margin-top: 0;
}

.timeline_section .cd-timeline-block:last-child {
    margin-bottom: 0;
}

.timeline_section .cd-timeline-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    z-index: 1;
}

.timeline_section .cd-timeline-img img {
    display: block;
    width: 24px;
    height: 24px;
    position: relative;
    left: 50%;
    top: 50%;
    margin-left: -12px;
    margin-top: -12px;
}

.timeline_section .cd-timeline-img.cd-picture {
    background: var(--Gradient-Blue, linear-gradient(90deg, #090093 0%, #0600EB 100%));
    z-index: 1;
}

.timeline_section .cd-timeline-img.cd-movie {
    background: #c03b44;
    z-index: 1;
}

.timeline_section .cd-timeline-img.cd-location {
    background: #f0ca45;
}

.timeline_section .cd-timeline-content {
    position: relative;
    margin-left: 60px;
    background: #ffffff;
    border-radius: 8px;
    padding: 1em;
}

.timeline_section .cd-timeline-content::after {
    clear: both;
    content: "";
    display: table;
}

.timeline_section .cd-timeline-content h3 {
    color: var(--Primary-Blue-500, #0600EB);
    font-family: Cairo;
    font-size: 24px;
    font-weight: 700;
    line-height: 28px;
    margin-top: 0;
    margin-bottom: 0;
}

.timeline_section .timeline_text {
    color: var(--Primary-Slate-400, #393955);
    font-family: "Work Sans";
    font-size: 14px;
    line-height: 20px;
    padding: 16px 0;
}

.timeline_section .cd-timeline-content .cd-read-more,
.timeline_section .cd-timeline-content .cd-date {
    display: inline-block;
}

.timeline_section .cd-timeline-content p {
    margin: 1em 0;
    line-height: 1.6;
}

.timeline_section .cd-timeline-content .cd-read-more {
    padding: 20px 40px;
    background: #FF7C00;
    color: var(--Primary-Blue-700, #000056);
    font-family: "Work Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px; /* 171.429% */
    text-decoration: none;
    border-radius: 4px;
    margin-top: 15px;
}

.timeline_section .cd-timeline-content .cd-read-more:hover {
    background-color: #22404D;
    color: #fff;
}

.timeline_section .no-touch .cd-timeline-content .cd-read-more:hover {
    background-color: #bac4cb;
}

.timeline_section .cd-timeline-content .cd-date {
   color: var(--Primary-Blue-600, #090093);
    font-family: "Work Sans";
    font-size: 14px;
    font-weight: 600;
    line-height: 20px; 
    float: left;
    padding: 0.8em 0;
    opacity: 1;
}

.timeline_section .cd-timeline-content::before {
    content: "";
    position: absolute;
    top: 16px;
    right: 100%;
    height: 0;
    width: 0;
    border: 7px solid transparent;
    border-right: 7px solid #ffffff;
    display: none;
}

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

    .timeline_section #cd-timeline::before {
        left: 50%;
        margin-left: 0px;
    }

    .timeline_section .cd-timeline-block {
        margin: 4em 0;
    }

    .timeline_section .cd-timeline-block:first-child {
        margin-top: 0;
    }

    .timeline_section .cd-timeline-block:last-child {
        margin-bottom: 0;
    }

    .timeline_section .cd-timeline-img {
        width: 32px;
        height: 32px;
        left: 50%;
        margin-left: -15px;
        -webkit-transform: translateZ(0);
        -webkit-backface-visibility: hidden;
    }

    .timeline_section .cssanimations .cd-timeline-img.is-hidden {
        visibility: hidden;
    }

    .timeline_section .cssanimations .cd-timeline-img.bounce-in {
        visibility: visible;
        -webkit-animation: cd-bounce-1 0.6s;
        -moz-animation: cd-bounce-1 0.6s;
        animation: cd-bounce-1 0.6s;
    }

    .timeline_section .cd-timeline-content {
        width: calc(45% - 64px);
        padding: 32px;
        margin-left: 0;
    }

    .timeline_section .cd-timeline-content::before {
        top: 24px;
        left: 100%;
        border-color: transparent;
        border-left-color: #ffffff;
    }

    .timeline_section .cd-timeline-content .cd-read-more {
        float: left;
    }

    .timeline_section .cd-timeline-content .cd-date {
        position: absolute;
        width: 100%;
        left: 120%;
        top: 3px;
        font-size: 18px;
        padding-top: 0;
        margin-top: 0;
    }

    .timeline_section .cd-timeline-block:nth-child(even) .cd-timeline-content {
        float: right;
    }

    .timeline_section .cd-timeline-block:nth-child(even) .cd-timeline-content::before {
        top: 24px;
        left: auto;
        right: 100%;
        border-color: transparent;
        border-right-color: #ffffff;
    }

    .timeline_section .cd-timeline-block:nth-child(even) .cd-timeline-content .cd-date {
        left: auto;
        right: 122%;
        text-align: right;
    }

    .timeline_section .cssanimations .cd-timeline-content.is-hidden {
        visibility: hidden;
    }

    .timeline_section .cssanimations .cd-timeline-content.bounce-in {
        visibility: visible;
        -webkit-animation: cd-bounce-2 0.6s;
        -moz-animation: cd-bounce-2 0.6s;
        animation: cd-bounce-2 0.6s;
    }

    .timeline_section .cssanimations .cd-timeline-block:nth-child(even) .cd-timeline-content.bounce-in {
        -webkit-animation: cd-bounce-2-inverse 0.6s;
        -moz-animation: cd-bounce-2-inverse 0.6s;
        animation: cd-bounce-2-inverse 0.6s;
    }

    @-webkit-keyframes cd-bounce-1 {
        0% {
            opacity: 0;
            -webkit-transform: scale(0.5);
        }
        60% {
            opacity: 1;
            -webkit-transform: scale(1.2);
        }
        100% {
            -webkit-transform: scale(1);
        }
    }

    @-moz-keyframes cd-bounce-1 {
        0% {
            opacity: 0;
            -moz-transform: scale(0.5);
        }
        60% {
            opacity: 1;
            -moz-transform: scale(1.2);
        }
        100% {
            -moz-transform: scale(1);
        }
    }

    @keyframes cd-bounce-1 {
        0% {
            opacity: 0;
            -webkit-transform: scale(0.5);
            -moz-transform: scale(0.5);
            -ms-transform: scale(0.5);
            -o-transform: scale(0.5);
            transform: scale(0.5);
        }
        60% {
            opacity: 1;
            -webkit-transform: scale(1.2);
            -moz-transform: scale(1.2);
            -ms-transform: scale(1.2);
            -o-transform: scale(1.2);
            transform: scale(1.2);
        }
        100% {
            -webkit-transform: scale(1);
            -moz-transform: scale(1);
            -ms-transform: scale(1);
            -o-transform: scale(1);
            transform: scale(1);
        }
    }

    @-webkit-keyframes cd-bounce-2 {
        0% {
            opacity: 0;
            -webkit-transform: translateX(-100px);
        }
        60% {
            opacity: 1;
            -webkit-transform: translateX(20px);
        }
        100% {
            -webkit-transform: translateX(0);
        }
    }

    @-moz-keyframes cd-bounce-2 {
        0% {
            opacity: 0;
            -moz-transform: translateX(-100px);
        }
        60% {
            opacity: 1;
            -moz-transform: translateX(20px);
        }
        100% {
            -moz-transform: translateX(0);
        }
    }

    @keyframes cd-bounce-2 {
        0% {
            opacity: 0;
            -webkit-transform: translateX(-100px);
            -moz-transform: translateX(-100px);
            -ms-transform: translateX(-100px);
            -o-transform: translateX(-100px);
            transform: translateX(-100px);
        }
        60% {
            opacity: 1;
            -webkit-transform: translateX(20px);
            -moz-transform: translateX(20px);
            -ms-transform: translateX(20px);
            -o-transform: translateX(20px);
            transform: translateX(20px);
        }
        100% {
            -webkit-transform: translateX(0);
            -moz-transform: translateX(0);
            -ms-transform: translateX(0);
            -o-transform: translateX(0);
            transform: translateX(0);
        }
    }

    @-webkit-keyframes cd-bounce-2-inverse {
        0% {
            opacity: 0;
            -webkit-transform: translateX(100px);
        }
        60% {
            opacity: 1;
            -webkit-transform: translateX(-20px);
        }
        100% {
            -webkit-transform: translateX(0);
        }
    }

    @-moz-keyframes cd-bounce-2-inverse {
        0% {
            opacity: 0;
            -moz-transform: translateX(100px);
        }
        60% {
            opacity: 1;
            -moz-transform: translateX(-20px);
        }
        100% {
            -moz-transform: translateX(0);
        }
    }

    @keyframes cd-bounce-2-inverse {
        0% {
            opacity: 0;
            -webkit-transform: translateX(100px);
            -moz-transform: translateX(100px);
            -ms-transform: translateX(100px);
            -o-transform: translateX(100px);
            transform: translateX(100px);
        }
        60% {
            opacity: 1;
            -webkit-transform: translateX(-20px);
            -moz-transform: translateX(-20px);
            -ms-transform: translateX(-20px);
            -o-transform: translateX(-20px);
            transform: translateX(-20px);
        }
        100% {
            -webkit-transform: translateX(0);
            -moz-transform: translateX(0);
            -ms-transform: translateX(0);
            -o-transform: translateX(0);
            transform: translateX(0);
        }
    }
}

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

    .timeline_section h2 {
        margin-bottom: 34px;
    }
    
    .timeline_section .cd-timeline-content {
        display: flex;
        flex-direction: column;
    }

    .timeline_section .cd-timeline-content .cd-read-more {
        max-width: fit-content;
    }

}

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

    .timeline_section .cd-timeline-content .cd-date {
        color: #22404D;
    }

}


/* Box Items */
.boxes_items{
    background: var(--Gradient-Blue, linear-gradient(90deg, #090093 0%, #0600EB 100%));
    position: relative;
}

.boxes_items h2{
    color: var(--Base-White, #FFF);
    font-family: Cairo;
    font-size: 36px;
    font-weight: 400;
    line-height: 44px;
    margin-bottom: 32px;
}

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

.boxes_items .boxes_item {
    width: calc(50% - 80px);
    border-radius: 8px;
    background: var(--Base-White, #FFF);
    padding: 32px;
    margin-right: 32px;
    margin-bottom: 32px;
}

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

.boxes_items .boxes_item_title{
    color: var(--Primary-Blue-600, #090093);
    font-family: Cairo;
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
    margin-top: 0;
}

.boxes_items .boxes_item_text{
    color: var(--Primary-Slate-400, #393955);
    font-family: "Work Sans";
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

.boxes_items .bgimage{
    position: absolute;
    right: 0;
    bottom: 0;
}

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

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

}

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

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

}



/* Deliverables  */
.deliverables_section{
    padding: 80px 0;
}

.deliverables_section .container{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 32px;
}

.deliverables_section .deliverable_item {
    position: relative;
    width: calc(33.333% - 96px);
    padding: 32px;
    border-radius: 16px;
    background: var(--Primary-Slate-50, #F3F3F4);
}

.deliverables_section .delivered {
    background: transparent;
    color: var(--Primary-Blue-500, #0600EB);
    font-family: Poppins;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px; 
    border-radius: 30px;
    max-width: fit-content;
    padding: 8px 16px;
    border: 1px solid #0600EB;
    display: flex;
    align-items: center;
}

.deliverables_section .delivered img{
    margin-right: 3px;
}

.deliverables_section .deliverable_title{
    color: var(--Primary-Blue-600, #090093);
    font-family: Cairo;
    font-size: 24px;
    font-weight: 700;
    line-height: 28px;
    margin-bottom: 16px;
}

.deliverables_section .deliverable_text{
    color: #142A3E;
    font-family: "Work Sans";
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
}

.deliverables_section .deliverable_text p{
    color: var(--Primary-Slate-500, #07072B);
    font-family: "Work Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
}

.deliverables_section .deliverable_text strong{
    font-weight: 600;
}

.deliverables_section .deliverable_level{
    color: var(--Primary-D4B-Slate-900, #142A3E);
    font-family: "Work Sans";
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 25px;
}

.deliverables_section .deliverable_date{
    display: block;
    color: #000;
    font-family: "Work Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px; /* 171.429% */
    margin-top: 20px;
}

.deliverables_section .deliverable_download a {
    display: flex;
    align-items: center;
    text-decoration: none;
    background: var(--Gradient-Blue, linear-gradient(90deg, #090093 0%, #0600EB 100%));
    color: #FFF;
    font-family: "Work Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    padding: 2px 20px;
    border-radius: 4px;
    margin-top: 25px;
    max-width: fit-content;
}

.deliverables_section .deliverable_download a:hover{
    background: #090093;
}

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

    .deliverables_section .deliverable_item {
        width: calc(50% - 80px);
    }

}

@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: calc(100% - 64px);
    }

    .deliverables_section .deliverable_text{
        max-width: 90%;
    }

}


/****** Team Member *****/
.team_member_section {
    background-image: url(/wp-content/themes/matrixinternet2023/images/team-vector.png);
    background-size: contain;
    background-position: bottom right;
    background-repeat: no-repeat;
}

 .section_container {
    width: 1248px;
    max-width: 90%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin: 0 auto;
}

.team_member_section .team_member_title{
    color: var(--Primary-Blue-600, #090093);
    font-family: Cairo;
    font-size: 36px;
    font-weight: 400;
    line-height: 44px;
    margin-bottom: 7.5px;
}

.team_member_section .team_member_position{
    color: var(--Primary-Slate-500, #07072B);
    font-family: "Work Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */ 
    margin: 0;
}

.team_member_section .team_member_content{
    color: var(--Primary-Blue-600, #090093);
    font-family: "Work Sans";
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    padding-right: 8vw;
}

.team_member_section .team_member_content p {
    color: #07072B;
    margin: 16px 0;
}

.team_member_section .team_member_content p strong{
    color: #090093;
}

.team_member_section .team_member_attributes {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 20px;
}

.team_member_section .team_member_attribute {
    margin-right: 16px;
    margin-bottom: 16px;
}

.team_member_section .team_member_attribute a{
    display: flex;
    align-items: center;
    color: var(--Primary-Blue-500, #0600EB);
    font-family: "Work Sans";
    font-size: 16px;
    font-weight: 600;
    line-height: 22px; 
    text-decoration: none;
}

.team_member_section .team_member_attribute a img{
    margin-right: 16px;
}

.team_member_image img{
    border-radius: 8px;
}


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

    .team_member_section .section_container {
        flex-direction: column;
        gap: 0;
        max-width: 550px;
        margin: 0 auto;
    }

    .team_member_text{
        margin-bottom: 40px;
    }

    .team_member_image img{
        max-width: 100%;
    }

}

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

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

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

    .team_member_section .team_member_content {
        padding-right: 0;
    }

}

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

    .team_member_section{
        background-image: none;
    }

}


/***** Accordion *****/
.accordion_section {
    padding-top: 120px;
    padding-bottom: 120px;
}

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

.accordion_section h2 {
    color: var(--Primary-Blue-600, #090093);
    font-family: Cairo;
    font-size: 36px;
    font-weight: 400;
    line-height: 44px;
    margin-bottom: 8px;
    text-align: left;
    width: 100%;
    margin-bottom: 10px;
}

.accordion_section .accordion_description {
    color: var(--Primary-Slate-500, #07072B);
    font-family: "Work Sans";
    font-size: 16px;
    font-weight: 400;
    line-height: 24px; 
}

.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 #090093;
}

.accordion_section .accordion-item.active .accordion-title {
    color: var(--Primary-Slate-400, #393955);
    font-family: Cairo;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px; 
}

.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-Blue-500, #0600EB);
    font-family: Cairo;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    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-400, #393955);
    font-family: "Work Sans";
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin: 25px auto;
    margin-top: 0px;
    width: 100%;
    max-width: calc(100% - 64px);
}

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

@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;
    }
}


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

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

.team_section .leaders_heading {
    max-width: 500px;
}

.team_section h2 {
    color: var(--Primary-Blue-600, #090093);
    font-family: Cairo;
    font-size: 36px;
    font-weight: 400;
    line-height: 44px;
    margin: 0 0 20px 0;
    max-width: 300px;
}

.team_section p {
    max-width: 90%;
    color: var(--Primary-Slate-500, #07072B);
    font-family: "Work Sans";
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin: 0;
}

.team_section .leaders_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.team_section .column_right {
    display: flex;
}

.team_section .leader_item {
    padding-top: 0;
    position: relative;
}

.team_section .leader_item:first-child {
    margin-right: 48px;
}

.team_section .team_member img {
    width: 20vw;
    max-width: 280px;
    height: 20vw;
    max-height: 280px;
    object-fit: cover;
    border-radius: 8px;
}

.team_section h5 {
    color: var(--Primary-Blue-600, #090093);
    font-family: "Work Sans";
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    margin-top: 0;
}

.team_section h6 {
    color: var(--Primary-Slate-500, #07072B);
    font-family: "Work Sans";
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin: 0;
}

.team_section .team_carousel {
    max-width: 1240px;
    margin: 0 auto;
    margin-top: 64px;
}

.team_section .slick-slide {
    margin: 0 10px; /* Adjusted for 20px total spacing */
}

.team_section .slick-list {
    margin: 0 -10px; /* Adjusted for 20px total spacing */
}

.team_section .slick-prev,
.team_section .slick-next {
    z-index: 2;
    top: 45%;
}

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

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

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

.team_section .team_carousel_item {
    position: relative;
    overflow: hidden;
    width: 256px; /* Set fixed width */
    height: 256px; /* Set fixed height */
    margin: 0 10px; /* Adjusted for 20px total spacing */
    max-width: 256px;
}

.team_section .team_member_img_container {
    width: 256px; /* Set fixed width */
    height: 256px; /* Set fixed height */
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

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

.team_section .team_member_info {
    padding: 20px 0;
    text-align: center; /* Center the text */
}

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

.team_section .team_member_image {
    max-width: 100%;
}

@media only screen and (max-width: 1440px) {
    .team_section .leader_item {
        margin-left: 40px;
        margin-right: 0;
    }
}

@media only screen and (max-width: 962px) {
    .team_section .team_carousel {
        margin-top: 32px;
    }

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

    .team_section .leaders_heading {
        max-width: 100%;
    }

    .team_section .leader_item {
        width: 100%;
        max-width: 100%;
        margin: 50px auto 0;
    }

       .team_section .team_member_img_container {
        background-position: center;
    }

    .team_section .slick-prev,
    .team_section .slick-next {
        top: 25%;
    }
}

@media only screen and (max-width: 767px) {
    .team_section p {
        max-width: 100%;
    }

    .team_section .column_right {
        width: 100%;
        flex-direction: column;
    }

    .team_section .team_member_img_container {
        margin: 0 auto;
    }

    .team_section .team_carousel_item{
        max-width: 90%;
    }

    .team_section .leader_item img {
        display: block;
        max-width: 100%;
        border-radius: 72px 0 0 0;
        margin: 0 auto;
    }

    .team_section .team_member img {
        width: fit-content;
        height: 300px;
    }

    .team_section .team_member_info {
        text-align: center;
    }

    .team_section .team_carousel .team_member_info h5 {
        font-size: 24px;
        line-height: 32px;
    }

    .team_section .team_carousel .team_member_info h6 {
        font-size: 18px;
        line-height: 26px;
        min-height: 52px;
    }

    .team_section .leader_item:first-child {
        margin-right: 0;
    }

    .team_section .team_member_info {
        padding: 10px;
    }

    .team_section .team_carousel .team_member_info h5 {
        font-size: 20px;
        line-height: 28px;
    }

    .team_section .team_carousel .team_member_info h6 {
        font-size: 16px;
        line-height: 24px;
        min-height: unset;
    }

    .team_section .slick-prev,
    .team_section .slick-next {
        top: 40%;
    }

}



/* Tabs */
.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-bottom: 80px;
}

.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, #0600EB);
    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, #0600EB);
}

.tabs-titles li a.active {
    background-color: #0600EB;
    color: #fff;
    border-color: #0600EB;
}

.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(--Primary-D4B-Hot-Pink-500, #BC0E71);
    font-family: Blinker;
    font-size: 30px;
    font-weight: 700;
    line-height: 100%;
    margin-top: 0; 
}

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

.tabs-content li{
    margin-bottom: 10px;
}

.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-module .section_cta{
    background-color: #FF7C00;
}

.tabs-module .section_cta:hover{
    background-color: #dedeff;
}



/* Newsletter Page */
#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: "Work Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; 
}

#newsletter_section .sib_signup_form label {
    color: #000;
    font-family: "Work Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 171.429% */
}

#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: "Work Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 171.429% */
}

#newsletter_section .sib_signup_form ::-moz-placeholder { /* Firefox 19+ */
    color: #59656D;
    font-family: "Work Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 171.429% */
}

#newsletter_section .sib_signup_form :-ms-input-placeholder { /* IE 10+ */
    color: #59656D;
    font-family: "Work Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 171.429% */
}

#newsletter_section .sib_signup_form :-moz-placeholder { /* Firefox 18- */
    color: #59656D;
    font-family: "Work Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 171.429% */
}


#newsletter_section .accept_subscription {
    color: #000;
    font-family: "Work Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 171.429% */
}

#newsletter_section .accept_subscription a {
    color: #000;
}

#newsletter_section .sib-default-btn {
    border-radius: 4px;
    background: var(--Primary-Blue-500, #0600EB);
    color: #FFF;
    font-family: "Work Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    width: 100%;
    max-width: 224px;
}

#newsletter_section .sib-default-btn:hover {
    background-color: #ff7c00;
    color: #0A2134;
}

.page-id-2648 #newsletter_section .section_container {
    width: 100%;
    max-width: 1280px;
}

.page-id-2648 .newsletter_section{
    display: none;
}

.page-id-2648 .page_banner_3 p {
    max-width: 570px;
}

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

    .page-id-2648 #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) {

    .page-id-2648 #newsletter_section .sib_signup_form label, 
    .page-id-2648 #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;
    }

}


/* Single Module */
.single-module .breadcrumbs{
    display: flex;
    align-items: center;
    list-style-type: none;
    padding-left: 25px;
} 

.single-module .breadcrumbs li{
    margin-right: 5px;
}

.single-module .breadcrumbs li a{
    color: #fff;
    text-decoration: none;
}

.single-module .breadcrumbs li a img{
    position: relative;
    top: 2px;
    margin-left: 3px;
}

.single-module .page_banner_container h1{
    max-width: 90%;
}

.single-module .simple_text_editor{
    background: var(--Gradient-Blue, linear-gradient(90deg, #090093 0%, #0600EB 100%));
}

.single-module .simple_text_editor.semi h2{
    color: var(--Base-White, #FFF);
    font-family: Cairo;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 44px;
    margin-bottom: 16px;
}

.single-module .simple_text_editor.semi p{
    color: #fff;
}

.single-module .simple_text_editor.semi .cta{  
    max-width: fit-content;
    display: flex;
    padding: 16px 24px;
    justify-content: center;
    align-items: center;
    background: var(--Primary-Orange-500, #FF7C00);
    color: var(--Primary-Blue-700, #000056);
    font-family: "Work Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    text-decoration: none;
    border-radius: 4px;
}

.single-module .simple_text_editor .cta.secondary{
    background-color: transparent;
    color: #fff;
    border: 1px solid var(--Base-White, #FFF);
    border-radius: 4px;
}

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

    .single-module .breadcrumbs li:last-child{
        display: none;
    }

}


/* 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;
    }

}



a, button, input{
    min-width: 44px;
    min-height: 44px;
}

#wpadminbar a,
#wpadminbar button,
#wpadminbar input{
    min-width: unset;
    min-height: unset;
}








/* Single Post Builder */

.breadcrumbs_container.flexible {
    width: 1136px;
    max-width: 90%;
    margin: 0 auto;
    margin-top: 50px;
}

.breadcrumbs_container.flexible ul{
    padding-left: 0;
}

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

.post_builder {
    width: 1072px;
    max-width: 90%;
    background-color: #fff;
    padding: 32px;
    border-radius: 32px;
    margin: 0 auto;
    margin-bottom: 56px;
}

.post_builder .home_slide.slick-slide.slick-current.slick-active {
    max-height: 500px;
    border-radius: 20px;
}

.post_builder .new_details_container h1{
    margin-top: 0;
}

.post_builder .post_excerpt{
    color: var(--Primary-Slate-400, #393955);
    font-family: Cairo;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 38px;
    margin-top: 25px;
}

.post_builder .simple_text_editor {
    background: #fff;
    padding: 0;
    margin: 32px 0;
}

.post_builder .simple_text_editor .container{
    max-width: 100%;
}

.post_builder .simple_text_editor h2{
    color: var(--Primary-Blue-600, #090093);
    font-family: Cairo;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 44px;
    margin-bottom: 15px;
}

.post_builder .simple_text_editor.dark_h2  h2{
    color: #393955;
}

.post_builder .simple_text_editor h3{
    color: var(--Primary-Slate-400, #393955);
    font-family: Cairo;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 38px;
    margin: 0;
    margin-bottom: 15px;
}

.post_builder .simple_text_editor h5{
    color: var(--Primary-Slate-400, #393955);
    font-family: Cairo;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
    margin-bottom: 24px;
}

.post_builder .simple_text_editor li{
    color: var(--Primary-Slate-400, #393955);
    font-family: "Work Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 24px;
}

.post_builder .simple_text_editor li::marker {
    color: #0600EB;
    font-weight: 600;
}

.post_builder .simple_text_editor p {
    margin: 0px;
    margin-bottom: 40px;
}

.post_builder .simple_text_editor p:last-child{
    margin-bottom: 0;
}

.post_builder .simple_text_editor blockquote{
    background-image: url(images/blockquote.png);
    background-repeat: no-repeat;
    background-position: 0% 0%;
    padding: 20px 60px;
}

.post_builder .simple_text_editor blockquote p {
    background: var(--Gradient-Blue, linear-gradient(90deg, #090093 0%, #0600EB 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: "Titillium Web";
    font-size: 30px;
    font-style: normal;
    font-weight: 300;
    line-height: 38px;
    margin-bottom: 10px;
}

.post_builder .simple_text_editor figure{
    max-width: 100%;
}

.post_builder .simple_text_editor img{
    border-radius: 8px 8px 8px 8px;
}

.post_builder .simple_text_editor figcaption{
    color: var(--Primary-Slate-400, #393955);
    font-family: "Work Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; 
}

.post_builder .image_caption{
    color: var(--Primary-Slate-400, #393955);
    font-family: "Work Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    color: red;
}

.post_builder .simple_text_editor .cta{
    display: flex;
    min-height: unset;
    background: var(--Primary-Blue-500, #0600EB);
    color: #FFF;
    font-family: "Work Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    text-decoration: none;
    padding: 16px 24px;
    border-radius: 4px;
}

.post_builder .simple_text_editor .cta:hover{
    background: #090093;
}

.post_builder .simple_text_editor .cta img{
    margin-left: 8px;
}

.post_builder .simple_text_editor.purple{
    background: var(--Primary-Blue-200, #DEDEFF);
    padding: 48px 56px;
    border-radius: 8px 8px 8px 64px;
}

.post_builder .simple_text_editor.purple h4{
    color: #07072B;
    margin-bottom: 10px;
}

.post_builder .simple_text_editor.purple p:last-child{
    margin-bottom: 25px;
}

.post_builder .simple_text_editor.blue{
    background: var(--Gradient-Blue, linear-gradient(90deg, #090093 0%, #0600EB 100%));
    padding: 48px 56px;
    border-radius: 8px 8px 8px 64px;
}

.post_builder .simple_text_editor.blue h4{
    color: #fff;
    margin-bottom: 10px;
}

.post_builder .simple_text_editor.blue p{
    color: #fff;
}

.post_builder .simple_text_editor.blue p:last-child{
    margin-bottom: 25px;
}

.post_builder .simple_text_editor.blue .cta{
    background: var(--Primary-Orange-500, #FF7C00);
    color: var(--Primary-Blue-700, #000056);
    font-weight: 600;
    border-radius: 4px;
}

.post_builder .simple_text_editor.blue .cta:hover{
    background: var(--Primary-Orange-500, #fff);
}

.post_builder .iframe_layout {
    background: transparent;
    padding: 0;
}

.post_builder  .iframe_layout .section_container {
    max-width: 100%;
    margin: 0;
    justify-content: flex-start;
}

.post_builder .iframe_layout p {
    width: 100%;
    color: var(--Primary-Slate-400, #393955);
    font-family: "Work Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    margin: 0;
    margin-top: 10px;
}

.post_builder .simple_text_editor.gray{
    background: var(--Primary-Slate-10, #F8F8F9);
    padding: 48px;
    padding-bottom: 24px;
    border-radius: 72px 0px;
}

.post_builder .editor_left_image_right  {
    padding: 32px 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 .editor_left_image_right h3{
    color: var(--Primary-Slate-400, #393955);
    font-family: Cairo;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 38px;
    margin-bottom: 12px;
}

.post_builder .editor_left_image_right p{
    color: var(--Primary-Slate-400, #393955);
    font-family: "Work Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.post_builder .editor_left_image_right .column_right img {
    border-radius: 0;
}


.post_builder .image_left_editor_right  {
    padding: 32px 0;
}

.post_builder .image_left_editor_right .container {
    max-width: 100%;
    align-items: flex-start;
}

.post_builder .image_left_editor_right h3{
    color: var(--Primary-Slate-400, #393955);
    font-family: Cairo;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 38px; 
    margin-bottom: 12px;
}

.post_builder .image_left_editor_right p{
    color: var(--Primary-Slate-400, #393955);
    font-family: "Work Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.post_builder .image_left_editor_right .column_right {
    margin-left: 32px;
}

.post_builder .image_left_editor_right .column_left img {
    border-radius: 8px 8px 8px 8px;
}

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

    .post_builder .editor_left_image_right .column_right{
        padding-top: 54px;
    }

    .image_left_editor_right .column_right{
        padding-top: 44px;
    }

}

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

    .post_builder .new_details_container h1{
        margin-top: 40px;
    }

}

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

    .post_builder .simple_text_editor .cta {
        display: flex;
        min-height: unset;
        background: var(--Primary-Blue-500, #0600EB);
        color: #FFF;
        font-family: "Work Sans";
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: 24px;
        text-decoration: none;
        padding: 16px 24px;
        border-radius: 4px;
        text-align: center;
        justify-content: center;
    }

   .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 .column_left {
        flex-direction: column;
        align-items: flex-start;
    }

}

/* Resources */
.resources_section .container {
    width: 1200px;
    max-width: calc(90% - 64px) !important;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    padding: 32px !important;
    border-radius: 16px;
    margin: 0 auto;
}

.resources_section h2.heading{
    color: var(--Primary-Blue-600, #090093);
    font-family: Cairo;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 44px;
}

.resources_section p{
    max-width: 100%;
    color: var(--Primary-Slate-500, #07072B);
    font-family: "Work Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-left: 0;
}

.resources_section .cta_list {
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
    padding-left: 0px;
    margin-top: 24px;
}

.resources_section .cta_list li{
    margin-right: 16px;
    margin-bottom: 16px;
}

.resources_section .cta_list li a{
    display: flex;
    justify-content: center;
    align-items: center;
    color: #0029FF;
    font-family: "Work Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    text-decoration: none;
    border-radius: 4px;
    border: 2px solid var(--Primary-Blue-500, #0600EB);
    padding: 2px 24px;
}

.resources_section .cta_list li a:hover{
    background: var(--Primary-Blue-200, #DEDEFF);
    border: 2px solid var(--Primary-Blue-500, #DEDEFF);
}

.resources_section .cta_item img{
    margin-right: 8px;
}

.resources_section .cta_item:last-child img{
    display: none;
}

.resources_section .cta_list li.cta_item:last-child a{
    color: var(--Primary-Blue-500, #0600EB);
    border-radius: 4px;
    background: var(--Primary-Blue-200, #DEDEFF);
    border: 2px solid var(--Primary-Blue-500, #DEDEFF);
}

.resources_section .cta_list li.cta_item:last-child a:hover{
    color: var(--Primary-Blue-500, #fff);
    border-radius: 4px;
    background: var(--Primary-Blue-200, #090093);
    border: 2px solid var(--Primary-Blue-500, #090093);
}

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

    .resources_section .cta_list li {
        margin-right: 0;
        margin-bottom: 16px;
        width: 100%;
    }

}


/* === Header and Footer Styling === */

.site-header {
  background-color: #432a38;
  width: 100%;
}

.main-nav {
  background-color: #432a38;
  padding: 1rem 2rem;
  width: 100%;
}

/* .main-nav .menu {
  display: flex !important;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
  align-items: center;
} */

.icons-hover a {
  color: #fff !important;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  padding: 0.5rem 1rem;
}

.icons-hover a:hover {
  color: #e8491d !important;
  text-decoration: underline;
}

.main-nav .menu li a {
  color: #fff !important;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  padding: 0.5rem 1rem;
}

.main-nav .menu li a:hover {
  color: #e8491d !important;
  text-decoration: underline;
}

/* Fix container inside nav overriding header background */
.main-nav .container {
  background: transparent !important;
}

/* Optional logo text */
.logo,
.site-title {
  color: #fff !important;
}

/* === Blog Hero Text Fix === */
/*.blog-hero h1,*/
.blog-hero p {
  color: #fff !important;
}

/* === Blog Page Styling === */

.blog-hero {
  position: relative;
  background: url('https://security.matrixinternet.ie/wp-content/uploads/2025/05/blog-banner.jpg') center/cover no-repeat;
  padding: 6rem 2rem;
  text-align: center;
  color: #fff;
  overflow: hidden;
}


/* New tint layer */
.blog-hero .tint {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #432a38;
  opacity: 0.75;
  z-index: 1;
}

/* Ensure text sits above the tint */
.blog-hero .overlay {
  position: relative;
  z-index: 2;
  padding: 3rem 2rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

/* Hero's */
.home-hero {
  position: relative;
  background: url('https://security.matrixinternet.ie/wp-content/uploads/2025/07/shutterstock_2429607293-scaled.webp') center/cover no-repeat;
  height: 500px;
  margin-left: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 40px 20px;
  overflow: hidden;
}


.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* dark overlay */
  z-index: 1;
}

.home-hero-content {
  position: relative;
  z-index: 2;
}

.home-hero h1 {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 10px;
}

.home-hero p {
  color: #ddd;
  font-size: 1.1rem;
}


/* Packages Page */
.page-hero {
  position: relative;
  background: url('https://security.matrixinternet.ie/wp-content/uploads/2025/05/packages-banner.jpg') center/cover no-repeat;
  padding: 6rem 2rem;
  text-align: center;
  color: #fff;
  overflow: hidden;
  margin-top: -10px;
}

.page-hero .tint {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #432a38;
  opacity: 0.75;
  z-index: 1;
}

.page-hero .overlay {
  position: relative;
  z-index: 2;
  padding: 3rem 2rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}


.page-hero h1,
.page-hero p {
  color: #fff;
}

.page-hero.faq-hero h1 {
  color: #e8491d !important;
}

.blog-hero.faq-hero h1 {
  color: #e8491d !important;
}

.page-hero.team-hero h1 {
  color: #e8491d !important;
}

.page-hero.funding-hero h1 {
  color: #e8491d !important;
}

.page-hero.resources-hero h1 {
  color: #e8491d !important;
}

.page-hero.packages-hero h1 {
  color: #e8491d !important;
}


.page-hero.faq-hero {
position: relative;
  background: url('https://security.matrixinternet.ie/wp-content/uploads/2025/07/cyberimage11-scaled.webp') center/cover no-repeat;
  padding: 6rem 2rem;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.page-hero.team-hero {
position: relative;
  background: url('https://security.matrixinternet.ie/wp-content/uploads/2025/07/cyberimage7-scaled.webp') center/cover no-repeat;
  padding: 6rem 2rem;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.page-hero.funding-hero {
position: relative;
  background: url('https://security.matrixinternet.ie/wp-content/uploads/2025/07/shutterstock_2204212039-scaled.webp') center/cover no-repeat;
  padding: 6rem 2rem;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.page-hero.packages-hero {
position: relative;
  background: url('https://security.matrixinternet.ie/wp-content/uploads/2025/07/cyberimage5-scaled.webp') center/cover no-repeat;
  padding: 6rem 2rem;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.page-hero.packages-hero {
position: relative;
  background: url('https://security.matrixinternet.ie/wp-content/uploads/2025/07/cyberimage8-scaled.webp') center/cover no-repeat;
  padding: 6rem 2rem;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.page-hero.resources-hero {
position: relative;
  background: url('https://security.matrixinternet.ie/wp-content/uploads/2025/07/cyberimage4-scaled.webp') center/cover no-repeat;
  padding: 6rem 2rem;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

/* New tint layer */
.home-hero .tint {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #432a38;
  opacity: 0.75;
  z-index: 1;
}

/* Ensure text sits above the tint */
.home-hero .overlay {
  position: relative;
  z-index: 2;
  padding: 3rem 2rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}


.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.2s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
}

.blog-card h2 {
  font-size: 1.25rem;
  margin: 1rem;
  color: #e8491d; /* Matrix orange for headings */
}

.blog-card p {
  margin: 0 1rem 1rem;
  color: #333;
}

.read-more {
  margin: 0 1rem 1.5rem;
  display: inline-block;
  color: #e8491d;
  font-weight: bold;
  text-decoration: underline;
}


.scroll_to_top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.scroll_to_top img {
    width: 25px;    
    height: auto;
    opacity: 0.8;    
    transition: opacity 0.3s ease;
}

.scroll_to_top:hover img {
    opacity: 1;
}


/* Resize the large content-area logo */
img[src$="matrix-logo-white.webp"] {
    max-width: 100%;
    max-height: 400px; /* or adjust to your liking */
    height: auto;
    display: block;
    margin: 0 auto;
	margin-left: auto;
	margin-right: auto;
    object-fit: contain;
}


/* === Blog Post Section Styling === */
.blog-posts {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

/* === Footer Styling === */
.site-footer {
  background-color: #432a38 !important;
  color: #fff;
  padding: 2rem 1rem;
  text-align: center;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.site-footer a {
  color: #fff;
  text-decoration: none;
}

.site-footer a:hover {
  color: #e8491d;
  text-decoration: underline;
}


/* Footer visibility fix */
.site-footer .follow_container span,
.site-footer .by_matrix {
  color: #ffffff !important; 
}

/* Optional: unify font styling */
.site-footer .follow_container span,
.site-footer .by_matrix a {
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.site-footer .by_matrix a:hover {
  color: #e8491d !important; 
}

.site-footer hr {
  display: none;
}

.header_overlay {
  display: none !important;
}


/* === Header & Nav Layout === */

.main-nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;         
  margin: 0;                
  padding: 1rem 2rem;       
  width: 100%;              
}
.nav-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 1;
}

.nav-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.site-logo {
  margin-right: auto;
}

.site-logo img {
  height: 60px;
  width: auto;
  display: block;
}

.nav-right .menu {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-right .menu li a {
  color: #fff !important;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  padding: 0.5rem 1rem;
}

.nav-right .menu li a:hover {
  color: #e8491d !important;
}

/* Fix for Footer */
.menu li {
  display: inline-block !important;
  margin-right: 24px !important;
}

.menu li:last-child {
  margin-right: 0 !important;
}

a {
  color: #e8491d; 
  text-decoration: none;
}

a:hover {
  color: #ff6a00 !important; /* Optional: slight hover effect */
  text-decoration: underline;
}

.footer_menu_container {
  color: #e8491d !important; 
  text-decoration: none;
}


/* Footer Layout Change */
.combined-footer-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  border-top: 1px solid #6a4a5a;
  border-bottom: 1px solid #6a4a5a;
  padding: 1rem 2rem;
}

/* Footer Menu Styling */
.footer_menu_container .menu {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding-top: 27px;
}

.footer_menu_container .menu li a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.footer_menu_container .menu li a:hover {
  color: #e8491d;
  text-decoration: underline;
}

/* Footer Credit Styling */
.by_matrix {
  margin-top: 1rem;
  margin-left: auto;
  text-align: right;
  font-size: 12px;
  color: #fff;
  width: 100%;
  max-width: 100%;
}

.by_matrix a {
  color: #fff;
  text-decoration: none;
}

.by_matrix a:hover {
  color: #e8491d;
}

.blog-post-single {
  background: #fff;
  padding: 4rem 2rem 0; /* Top and side padding, remove bottom space */
  color: #000;
  margin-bottom: 15%;
}

.blog-post-single h1 {
  font-size: 2.5rem;
  color: #e8491d; /* Matrix orange */
  margin-bottom: 0.5rem;
}

.blog-post-single .container {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.blog-post-single .post-date {
  font-size: 14px;
  color: #666;
  margin-bottom: 2rem;
}

.site-footer a:hover {
  color: #e7581f !important;
}



/* Catch deeply nested blocks and containers */
body.home .wp-block-group,
body.home .wp-block-group.has-background,
body.home .wp-block-cover,
body.home .wp-block-cover-image,
body.home .entry-content,
body.home .site-content,
body.home .content-area,
body.home .content-wrapper,
body.home .page-wrapper,
body.home .wp-block-columns,
body.home .wp-block-column,
body.home .wp-block-cover__inner-container {
  background-color: #ffffff !important;
  color: #000 !important;
  border: none !important;
  box-shadow: none !important;
}

/* Reset hero and service box styles too */
body.home .page-hero,
body.home .wp-block-column.has-background,
body.home .wp-block-group.has-background {
  background-color: #ffffff !important;
  color: #000 !important;
  border: none !important;
  box-shadow: none !important;
}


.footer-logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 20px 0;
}

.footer-logo-container img {
  max-height: 60px;
  width: auto;
}



/* Hide hamburger by default (desktop) */
.mobile-menu-toggle {
  display: none;
  background: #fff;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 999;
  margin-right: 40px;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background-color: #432a38;
  position: absolute;
  top: 100%;
  right: 0;
  width: 100%;
  padding: 20px;
  z-index: 9999;
  transition: all 0.3s ease-in-out;
}

/* Show menu when active */
.mobile-menu.active {
  display: flex;
}

.menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px; /* Adjust for spacing between menu items */
  padding: 0;
  margin: 0;
  list-style: none;
  flex-wrap: wrap;
}

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

.menu li a {
  padding: 10px 12px;
  display: block;
  text-align: center;
  font-weight: 500;
  white-space: nowrap;
}

body.custom-background.home,
body.custom-background.blog,
body.custom-background.page-template-front-page {
  background-color: #F3F9EF !important;
}

/* Center the "Our Services" section heading */
.home h2,
.front-page h2 {
  font-size: 28px;
  text-align: center;
	padding: 5px;
}

/* Prevent hero image from overlapping nav */
.hero-section {
  position: relative;
  z-index: 1;
}

.site-header,
.main-nav {
  position: relative;
  z-index: 10000;
}



/* Show hamburger + stack nav on small screens */
@media (max-width: 1024px) {
  .mobile-menu-toggle {
    display: block;
  }

  .nav-right {
    display: none;
  }

  .mobile-menu {
    display: none;
  }

  .mobile-menu.active {
    display: flex;
  }

  .mobile-menu .menu {
    flex-direction: column;
    gap: 15px;
  }

  .mobile-menu .menu li {
    text-align: right;
  }
}


  .nav-right {
    flex: 1;
    justify-content: flex-end;
    align-items: center;
    overflow: hidden;
    white-space: nowrap;
  }

  .menu {
    flex-wrap: wrap;
	justify-content: center;
    gap: 20px;
  }

  .menu li {
    white-space: nowrap;
  }

  .menu li a {
    padding: 10px 12px;
  }
}


  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
	
/*
.mobile-menu .menu {
  flex-direction: column;
  align-items: flex-end;
} */
	
}

  .nav-right .menu li {
    white-space: nowrap;
  }


  .main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    width: 100%;
  }
}


/*
.desktop-menu .menu {
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.desktop-menu {
  width: 100%;
}
*/


.menu li a {
  padding: 8px 10px; /* slightly tighter padding */
  font-size: 16px;
  white-space: nowrap;
}

@media (min-width: 1025px) and (max-width: 1300px) {
  .menu li a {
    font-size: 15px;
    padding: 6px 8px;
  }
}

/* Ensure logo and nav are on one line and spaced correctly */
@media (min-width: 1025px) {
  .site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
  }

  .nav-left {
    flex-shrink: 0;
    margin-right: 30px;
  }

  .desktop-menu {
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    overflow: hidden;
  }

  .menu {
    display: flex;
    flex-wrap: nowrap;
    gap: 18px;
    margin: 0;
    padding: 0;
  }

  .menu li {
    list-style: none;
    white-space: nowrap;
  }

  .menu li a {
    font-size: 15px;
    padding: 6px 10px;
    text-decoration: none;
    color: color: #fff;
;
  }
}

/* === FINAL NAV VISIBILITY FIX === */

@media (min-width: 1025px) {
  .mobile-menu .menu, .mobile-menu-toggle {
    display: none !important;
  }
}


/* Mobile: show hamburger and mobile menu only */
@media (max-width: 1024px) {
  .desktop-menu.menu {
    display: none !important;
  }

  .mobile-menu-toggle {
    display: block !important;
  }
 }
  
	
  desktop-menu.menu {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    width: 0 !important;
    pointer-events: none !important;
    position: absolute !important;
    top: -9999px !important;
    left: -9999px !important;
  }
}	
}

  .mobile-menu {
    display: none;
    flex-direction: column;
    background-color: #432a38;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    padding: 20px;
    z-index: 9999;
    transition: all 0.3s ease-in-out;
  }

  .mobile-menu.active {
    display: flex !important;
  }

	/*
  .mobile-menu .menu {
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
  }
	*/
}
