/*
    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
*/



@font-face {
  font-family: Blinker;
  src: url(fonts/Blinker/Blinker-Regular.woff2);
}


/* General Styles */

html,
body{
    max-width: 100%;
    overflow-x: hidden;
    margin: 0;
}

.container{
    max-width: 1240px;
    margin: 0 auto;
}

header{
    font-family: Blinker;
    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{
    font-family: Blinker;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px; /* 137.5% */;
    text-decoration: none !important;
    transition-duration: 0.75s;
}

.sticky .menu-item a{
    color: #fff;
}

.menu-item a:hover{
    text-decoration: none !important;
}

.cta_button.menu-item a{
    transition-duration: 0.75s;
}


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: #21282E;
    transition-duration: 0.75s;
    background-color: #F1607A;
}

header.scrolled .cta_button.menu-item a:hover {
    transition-duration: 0.75s;
    color: #21282E;
}



header.scrolled #logo{
    opacity: 0;
    position: absolute;
}

#site_logo_sticky {
    transition-duration: 0;
    opacity: 0;
    position: absolute;
    transition-delay: 0;
}

header.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;
}

.hamburger .line {
    width: 40px;
    height: 3px;
    background-color: #3e4883;
    display: block;
    margin: 8px auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

header.scrolled .hamburger .line {
    background-color: #fff;
}

.sticky .hamburger .line{
    background-color: #008A80;
}

.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: #1D2A69;
    border-radius: 8px;
    margin: 10vh auto;
    overflow: hidden;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    z-index: 2;
    padding-top: 80px;
    margin-top: 0;
}

.mobile.open {
    display: block;
    z-index: 3;
}

html.menu_open,
body.menu_open{
   max-height: 100%;
   overflow: hidden;
}

.mobile .mobile-controls {
    background: #ff7c00;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 50px;
}

.mobile .mobile-controls button {
    background: none;
    border: 1px solid #fff;
    border-radius: 8px;
    color: #fff;
    height: 40px;
    padding: 0 15px;
    margin: 10px 15px;
}

.mobile button:hover {
     cursor: pointer;
}

.mobile .mobile-controls button:hover {
     background: #fff;
     color: #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 {
    display: flex;
    background-color: #EBF7FC;
    background-color: #EBF7FC;
}

.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: Blinker;
    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 #00495A;
}

.owl-theme .owl-dots .owl-dot.active span{
    background: #128A3E !important;
    border: 3px solid #128A3E;
}

.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;
    color: #fff;
    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: var(--Primary-Blue-500, #0600EB);
    font-size: 60px;
    line-height: 64px;
    max-width: 330px;
    margin-bottom: 25px;
}

h1 span{
    display: block;
    color: #090093;
    font-weight: 700;
}

h2{
    color: #00495A;
    font-family: Blinker;
    font-weight: 600;
    font-size: 48px;
    line-height: 60px;
    margin-top: 0;
    margin-bottom: 20px;
}

h4{
    color: #fff;
    font-family: Blinker;
    font-weight: 600;
    font-size: 36px;
    line-height: 45px;
    margin-top: 0;
    margin-bottom: 20px;
}

h5{
    color: #fff;
    font-family: Blinker;
    font-weight: 600;
    font-size: 24px;
    line-height: 30px;
    margin-top: 0;
    margin-bottom: 0px;
}

p{
    max-width: 1000px;
    font-size: 18px;
    line-height: 31.5px;
    margin: 0 auto;
}


/* Header */

#logo_container {
    width: 100%;
    float: left;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    margin-right: 32px;
}

#logo_container a{
    display: flex;
    align-items: center;
}

.cta_button.menu-item a {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--Secondary-Yellow-500, #FBAD26);
    color: var(--Primary-Slate-600, #21282E);
    font-family: Blinker;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    padding: 10px 16px;
    border-radius: 4px;
    cursor: pointer;
}

.cta_button.menu-item:hover > a{
    background-color: #F1607A;
}

.sticky .cta_button.menu-item a{
    background-color: transparent;
    color: #fff;
    border: 1px solid #F1607A;
}

.sticky .cta_button.menu-item a:hover{
    background-color: #F1607A;
    color: #21282E;
}


/* 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: Blinker;
    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;
}

/* Default Page Template - FAQ Section */

.accordion_section{
    background: #128A3E;
}

.accordion_section .container{
    display: flex;
    flex-direction: column;
    max-width: 1096px;
    padding: 120px 0;
}

.accordion_section h2 {
    color: #fff;
    text-align: left;
    width: 100%;
    margin-bottom: 45px;
}

.accordion{
    width: 100%;
    background-color: #fff;
}

.accordion .accordion-item {
  padding: 5px 0px;
  border-bottom: 1px solid #128A3E;
}

.accordion .accordion-item button[aria-expanded=true] {
  padding-bottom: 25px;
  border-bottom: 1px solid #128A3E;
}

.accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1em 0;
  color: #444444;
  font-size: 1.15rem;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
}

.accordion button:hover, .accordion button:focus {
  cursor: pointer;
  color: #444;
}

.accordion button:hover::after, .accordion button:focus::after {
  cursor: pointer;
  color: #03b5d2;
  border: 1px solid #03b5d2;
}

.accordion button .accordion-title {
  font-weight: 700;
  font-size: 24px;
  line-height: 42px;
  padding: 0px 32px;
}

.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 32px;
  width: 40px;
  height: 40px;
  background-color: #fff;
  color: #128A3E;
  border: 1px solid;
  border-radius: 22px;
}

.accordion button .icon::before {
    display: block;
    position: absolute;
    content: "";
    top: 19px;
    left: 11px;
    width: 18px;
    height: 2px;
    background: currentColor;
    color: #128A3E;
}

.accordion button .icon::after {
    display: block;
    position: absolute;
    content: "";
    top: 11px;
    left: 19px;
    width: 2px;
    height: 18px;
    background: currentColor;
    color: #128A3E;
}

.accordion button[aria-expanded=true] {
  color: #444;
}

.accordion button[aria-expanded=true] .icon::after {
  width: 0;
}

.accordion button[aria-expanded=true] + .accordion-content {
    opacity: 1;
    max-height: unset;
    transition: all 200ms linear;
    will-change: opacity, max-height;
}

.accordion button[aria-expanded=true] > .icon{
    background-color: #128A3E;
}

.accordion button[aria-expanded=true] .icon::before,
.accordion button[aria-expanded=true] .icon::after{
    color: #fff;
}

.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}

.accordion .accordion-content p {
    font-weight: 400;
    font-size: 18px;
    line-height: 31.5px;
    margin: 45px auto;
    width: 100%;
    max-width: calc(100% - 64px);
}


/* 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-color: #FBAD26;
    background-image: url(images/newsletter-bg.png) !important;
    background-repeat: no-repeat !important;
    background-position: 100% 50% !important;
    background-size: contain !important;
    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;
}

.newsletter_section .form_input{
    display: flex;
    flex-direction: column;
}

.form_input label{
    color: #21282E;
    font-family: Blinker;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 171.429% */
    margin-bottom: 5px;
}

.newsletter_section h2 {
    display: flex;
    color: #21282E !important;
    font-family: Blinker;
    font-size: 30px;
    font-weight: 600;
    line-height: 38px;
    margin-top: 0;
}

.newsletter_section h2 img{
    margin-right: 20px !important;
}

.newsletter_section p {
    color: #21282E !important;
    font-family: Blinker;
    font-size: 16px;
    line-height: 22px;
    max-width: 500px;
    margin: 0 !important;
}

/* Plugin - Brevo  */
.sib_signup_form input[type="text"], .sib_signup_form input[type="email"] {
    color: #fff;
    font-family: Blinker;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    width: 240px;
    max-width: 612px;
    height: 48px;
    background-color: #fff;
    padding-left: 16px;
    border-radius: 4px;
    border: 1px solid #FFF;
    margin-right: 16px;
    margin-bottom: 0px;
}

.sib_signup_form input[type="text"]:active,
.sib_signup_form input[type="email"]:active {
    outline: none;
}

.sib_signup_form input[type="text"]:focus,
.sib_signup_form input[type="email"]:focus {
    outline: none;
}


.sib_signup_form ::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #59656D;
    font-family: Blinker;
    font-size: 16px;
    font-weight: 400;
}

.sib_signup_form ::-moz-placeholder { /* Firefox 19+ */
    color: #59656D;
    font-family: Blinker;
    font-size: 16px;
    font-weight: 400;
}

.sib_signup_form :-ms-input-placeholder { /* IE 10+ */
    color: #59656D;
    font-family: Blinker;
    font-size: 16px;
    font-weight: 400;
}

.sib_signup_form :-moz-placeholder { /* Firefox 18- */
    color: #59656D;
    font-family: Blinker;
    font-size: 16px;
    font-weight: 400;
}

.accept_subscription {
    display: flex;
    align-items: center;
    color: #21282E;
    font-family: Blinker;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    margin-top: 15px;
    margin-bottom: 32px;
}

.accept_subscription input {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    margin-bottom: 0;
    margin-left: 0;
}

.accept_subscription a{
    color: #21282E;
    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: #3E4883;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
    border: 0 none;
    border-radius: 4px;
    cursor: pointer;
}

.sib-default-btn:hover{
    background: #1d2763;
}

footer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 90%;
    padding: 0 5%;
}

footer .desc{
    color: #22404D;
    font-family: Blinker;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px; 
    margin-top: 24px;
}

#footer .column_right{
    display: flex;
    align-items: center;
}

#footer .column_right a{
    float: left;
}

#footer .column_right a:first-child {
    margin-right: 50px;
}

footer .row_1 {
    padding: 20px 0;
    margin-bottom: 40px;
}

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 {
    color: #21282E;
    font-family: Blinker;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
}

.follow_container {
    display: flex;
    align-items: center;
    color: #142A3E;
    font-family: Blinker;
    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{
    float: left;
}

.follow_container span{
    color: var(--Primary-Navy-500, #004383);
    font-family: Blinker;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px; 
}

.by_matrix{
    color: #142A3E;
    font-family: Blinker;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px; 
}

.by_matrix a{
    color: #5C656D;
}

footer .row_3 .menu-item a {
    color: #5C656D;
    font-family: Blinker;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

/* Plugin - Add to any share */
.addtoany_shortcode{
    margin-bottom: 25px;
}

.addtoany_list a, .widget .addtoany_list a {
    margin-right: 12px;
}

.addtoany_list.a2a_kit_size_32 a:not(.addtoany_special_service)>span {
    background-color: #3E4883 !important;
    padding: 4px;
    border-radius: 50%;
}


/* Sitemap Page */
.sitemap_section{
    margin: 50px 0;
}

.sitemap_section a{
    display: block;
    color: var(--Primary-Slate-500, #07072B);
    font-family: Blinker;
    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;
    }

    .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 > 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 {
      flex: auto;
      font-size: 16px;
      line-height: 16px;
      position: relative;
    }

    .mobile li a:before, 
    .mobile li a:after {
      content: "";
      position: absolute;
      transition: transform 0.5s ease;
    }

    .mobile li a {
      display: inline-block;
      padding-top: 10px;
      padding-bottom: 10px;
      overflow: hidden;
    }

    .mobile li a:before {
      left: 0;
      bottom: 0;
      width: 100%;
      height: 2px;
      background: #6cabab;
      transform: translateX(-100%);
    }

    .mobile li a:hover:before {
      transform: translateX(0);
    }

    .mobile li.cta_button a:before{
        display: none;
    }

    .mobile li button {
        -webkit-transform: rotate(90deg) scale(1);
        -moz-transform: rotate(90deg) scale(1);
        -o-transform: rotate(90deg) scale(1);
        -ms-transform: rotate(90deg) scale(1);
        position: absolute;
        top: -2px;
        right: -40px;
    }

    .sub-menu{
        background-color: #128a3e !important;
    }

    .sub-menu .menu-item{
        margin-left: 0;
    }

    .mobile .fa-chevron-right {
        font-size: 14px;
    }

    .mobile li.current-menu-item a{
        padding-top: 5px;
        padding-bottom: 2px;
    }

    .mobile li.current-menu-item a:after {
        content: "";
        position: absolute;
        transition: transform 0.5s ease;
    }
    
    .mobile li.current-menu-item a:before {
        left: 0;
        bottom: 0;
        width: 100%;
        height: 2px;
        background: #6cabab;
        transform: translateX(-100%);
    }

    .mobile li.current-menu-item{
        border-bottom: 2px solid #6cabab;
    }

    .mobile li.current-menu-item a:before {
        left: 0;
        bottom: 0;
        width: 100%;
        height: 2px;
        background: #6cabab;
        transform: translateX(-100%);
    }

    .mobile li.cta_button.current-menu-item{
        border-bottom: 0 none;
    }

    .footer_top .column_left{
        width: 60%;
    }


}






@media only screen and (max-width: 1920px) {

    .column_bg{
        max-height: 797px;
    }


    #success_section .column_bg {
        background-size: cover;
    }

    #questions_section {
        background-color: #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) {
    
    header .container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    #logo_container {
        display: flex;
        justify-content: center;
    }

    .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;
        align-items: flex-start;
    }

    .newsletter_section h2 img {

        margin-top: 5px;
    }

    /* 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) {

    #logo_container {
        justify-content: flex-start;
    }

    .menu_open .hamburger .line {
        background-color: #fff;
    }

    .menu_open .mobile li.cta_button {
        width: 100%;
        margin-top: auto;
        margin-bottom: 0;
    }

    header .container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    #logo_container{
        z-index: 4;
    }

    header.scrolled .menu-item a {
        color: #fff;
        transition-duration: 0.75s;
    }

    header.scrolled .cta_button.menu-item a{
        color: #fff;
        border: 3px solid var(--german-uds-primary-orange-700, #fff);
        transition-duration: 0.75s;
    }

    .mobile .mobile-menu{
        height: 75vh;
    }

    .mobile ul{
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .mobile li {
        margin: 0 auto;
    }

    .mobile li a {
        flex: 3;
        color: var(--Base-White, #FFF);
        font-family: Blinker;
        font-size: 20px;
        font-weight: 600;
        line-height: 22px; 
        text-align: center;
        text-decoration: none;
        padding: 20px;
    }

    .menu_open .mobile li.cta_button {
         margin-top: auto;
    }

    .cta_button.menu-item a {
        background-color: ;
        max-width: 300px;
        margin: 20px auto;
    }
  
    .menu-item::before {
        display: none;
    }

    /* General */
    .container{
        max-width: 90%;
    }

    /* Homepage  */
    .page_banner_container {
        bottom: 5vh;
        max-width: 100%;
    }

    .page_banner h1 {
        font-size: 44px;
        line-height: 52px;
    }

    /* 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) {

    .page_banner.partner {
        background-position: left;
    }

    section h2{
        font-size: 36px;
        line-height: 44px;
    }

    .page_banner {
        height: auto;
        min-height: 25vh;
    }

    .scroll_down {
        display: block;
        margin: 0 auto;
    }

    main .container{
        display: block;
        max-width: 100%;
        width: 100%;
        padding: 50px 0;
    }

    .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%;
    }

    .accordion_section .container {
        display: flex;
        flex-direction: column;
        max-width: 90%;
        padding: 60px 0;
    }

    /* Portfolio Template 1 */
    main .container.projects_container{
        display: flex;
    }

    #porfolio_template .project_item{
        height: 40vh;
    }

    #porfolio_template .project_item .project_info {
        width: calc(100% - 60px);
        max-width: 100%;
        padding: 20px 30px;
    }

    #porfolio_template .project_item .project_info h2 {
        font-size: 28px;
        line-height: 36px;
    }

    #porfolio_template .project_item .project_info p{
        margin-bottom: 10px;
    }


    /* Single project */
    .single_project_banner{
        height: 50vh;
        background-size: cover;
    }

    .single_project_title {
        width: 100%;
        max-width: 100%;
        font-size: 36px;
        line-height: 56px;
        margin-bottom: 0px !important;
    }

    .single_project_location{
        margin-top: 10px;
    }

    .single_project_info{
        padding-top: 0;
    }

    .single_project_gallery {
        padding: 5%;
    }

    .single_project_gallery .container{
        padding: 0;
        margin: 0;
    }

    .single_project_gallery_container{
        margin-bottom: 0;
    }

    .single_project_gallery_item{
        height: 25vh;
    }

    .team_projects {
        padding-top: 0px;
        padding-bottom: 50px;
    }

    .team_projects .carousel_item{
        padding-right: 0;
    }

    .team_projects .carousel_item a {
        height: 300px;
        max-height: 100%;
        background-position: center;
    }

    /* Team Member */
    .container.back_container{
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .page_template .container.single_person_container {
        display: flex;
        flex-direction: column-reverse;
        padding-top: 0;
        padding-bottom: 5vh;
        margin-top: 25px;
    }

   .single_person_container .column_left {
        width: 100%;
        max-width: 100%;
        padding-bottom: 0px;
        text-align: center;
        justify-content: center;
        align-items: center;
    }

    .single_person_container .column_right{
        width: 100%;
        max-width: 400px;
        background-size: contain !important;
    }
    
    .person_position{
        font-size: 20px;
        line-height: 28px;
    }

    .single_person_links a {
        font-size: 14px;
        line-height: 22px;
    }


}  /* End of 991px */



@media only screen and (max-width: 768px) {

    /* Breadcrumbs */
    .breadcrumbs_container ul {
        padding-left: 0;
    }

    .breadcrumbs_container ul li:first-child a{
        padding-left: 0;
    }

    /* Homepage */
    .page_banner{
        min-height: 50vh;
    }

    .page_banner.middle {
        min-height: 35vh;
    }

    .page_banner_container {
        bottom: 10vh;
    }

    .newsletter_section .row_1 {
        display: flex;
        flex-direction: column;
    }


    /* 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%;
        max-width: 100px;
    }

    /* Header */
    #logo{
        max-width: 120px;
    }

/*    .menu_open #logo{
        max-width: 150px;
    }
*/

    /* Homepage  */
    .page_banner_container {
        bottom: 5vh;
        padding: 10%;
    }

    .page_banner h1 {
        font-size: 32px;
        line-height: 40px;
    }

    .carousel_item_container img{
        height: 40vh;
    }

    .scroll_down{
        max-width: 60px;
        cursor: pointer;
    }

    /* Newsletter */
    .newsletter_section{
        background-image: none !important;
    }

    .newsletter_section .container {
        padding: 0;
    }

    .newsletter_section 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 {
        padding-top: 25px;
    }

    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: Blinker;
        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 */









