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

html {
  touch-action: auto;
}

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

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

.hide_section{
    display: none;
}

.text-black p,
.text-black li{
    color: #000 !important;
}

.page_builder section.space-top{
    padding-top: 128px;
}

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

    .page_builder section.space-top{
        padding-top: 50px;
    }

}

.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: 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: "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;
    background: #DEDEFF;
    color: var(--Primary-Blue-500, #0600EB);
    font-family: "Work Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    cursor: pointer;
    border-radius: 4px;
}

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

.cta_button.menu-item.secondary a {
    background: #0600EB;
    color: #fff;
}

.cta_button.menu-item.secondary a:hover{
    background: #DEDEFF;
    color: #0600EB;
}


/* 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: 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 {
    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%;
    z-index: 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;
    }

    .mobile li.cta_button {
        margin: 0;
    }

    .mobile li.cta_button:last-child{
        margin-left: 16px;
    }


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

    .current_page_item a{
        text-decoration: underline;
    }

    .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.pripary{
        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: 30px;
        left: 0;
        background-color: #fff !important;
        padding-left: 15px;
        padding-top: 25px;
        padding-bottom: 12.5px;
        border-radius: 12px;
        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 {
        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: 350px;
    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 {
    min-width: 230px;
    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: 650px;
}

.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: 18px;
    font-weight: 400;
    line-height: 26px;
    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 {
    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: 450px;
    margin-top: 0;
    margin-bottom: 10px;
}


.home_slide_column h1 strong{
    display: block;
    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;
    max-width: fit-content;
}

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

    .homeslider_section .cards_section{
        top:-50px;
        margin-bottom:-50px;
    }

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

    .home_slide_column h1 {
        margin-top: 90px;
    }

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

    .home_slide.slick-slide.slick-current.slick-active {
        align-items: flex-start;
    }

    .homeslider_section .cards_section {
        padding: 0;
        position: absolute;
        bottom: -80px;
        left: 0;
        right: 0;
    }

    .homeslider_section .cards_section{
        position:relative;
        bottom:-10%;
    }

}

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


    .homeslider_section .cards_section {
        bottom: -29px;
    }

}


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

.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 {
    color: var(--Primary-Blue-600, #090093);
    font-family: Cairo;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 44px;
    max-width: 496px;
}

.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 li::marker {
  color: #FF7C00; 
}

.editor_left_image_right.text-black li::marker {
    color: #090093;
}

.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 {
    color: #0600EB;
    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%;
    }

    .editor_left_image_right .vector_image{
        display: none;
    }

}

@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: -webkit-fill-available;
    }

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

    .editor_left_image_right .column_left {
        padding: 0px;
        width: 100%;
        max-width: 90%;
    }

}

/* Image Full Width */
.image_full_width .container {
    width: 1280px;
    max-width: 90%;
}

.image_full_width.width-auto .container {
    width: auto;
}

.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 {
    display: inline-flex;
    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;
    padding: 4px 30px;
    border-radius: 4px;
    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;
}


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

.editor_left_editor_right.right_column_larger .section_cta:hover{
    background: #090093;   
}

.editor_left_editor_right.right_column_larger .section_cta.secondary{
    background: #DEDEFF;
    color: #0600EB;
}

.editor_left_editor_right.right_column_larger .section_cta.secondary:hover{
    background: var(--Gradient-Blue, linear-gradient(90deg, #090093 0%, #0600EB 100%));
    color: #fff;
}


@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 {
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    animation-duration: 2.5s;
    border-radius: 8px 8px 8px 64px;
}

.image_left_editor_right .column_left .image_container {
    position: relative;
    height: 100%;
}

.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: 400;
    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;
    text-decoration: none;
    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 {
    color: #0600EB;
    text-decoration: underline;
    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;
}

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;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto;
    gap: 32px;
}

.post_grid_list h2 {
    color: var(--Primary-Blue-600, #090093);
    text-align: center;
    font-family: Cairo;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 38px;
    margin-bottom: 0;
}

.post_grid_list .section_cta{
    display: flex;
    height: 42px;
    padding: 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background: var(--Primary-Blue-200, #DEDEFF);
    color: var(--Primary-Blue-500, #0600EB);
    font-family: "Work Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    padding: 4px 16px;
    border-radius: 4px;
    margin-bottom: 25px;
}

.post_grid_list .section_cta:hover{
    background: #090093;
    color: #fff;
}

.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% - 24px);
    height: 350px;
    background-position: center;
    position: relative;
    border-radius: 8px 8px 8px 64px;
}

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

.post_grid_list.columns_12{
    padding: 32px 0;
}

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

.post_grid_list.columns_12 .post_grid_item img {
    width: auto;
    max-width: 80%;
    object-fit: contain;
}

.post_grid_list .section_container {
    width: 1340px;
    max-width: 90%;
    margin: 0 auto;
}

.post_grid_list.team_member h2{
    width: 100%;
    max-width: 100%;
    color: var(--Primary-Blue-600, #090093);
    text-align: center;
    font-family: Cairo;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 44px;
    text-align: center;
    margin-bottom: 24px;
}

.post_grid_list.team_member .post_grid_item{
    display: flex;
    flex-direction: column;
    width: calc(33.333% - 40px);
    color: var(--Primary-Blue-600, #090093);
    text-align: center;
    font-family: "Work Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    text-decoration: none;
    border: 0 none;
}

.post_grid_list.team_member .post_grid_item img {
    display: block;
    width: 140px;
    height: 140px;
    object-fit: contain;
    max-width: 100%;
    height: auto;
    border-radius: 50%;
    margin: 0 auto;
    margin-bottom: 16px;
}

.post_grid_list.team_member .post_grid_item h2{
    color: var(--Primary-Slate-400, #393955);
    text-align: center;
    font-family: "Work Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    margin: 7.5px 0;
}

.post_grid_list.team_member .post_grid_item h3{
    color: var(--Primary-Slate-300, #6A6A80);
    text-align: center;
    font-family: "Work Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; 
    margin-top: 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: 1200px) {

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

}

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


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


}


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

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

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

}

@media only screen and (max-width: 828px) {
    
    .post_grid_list.columns_12  .post_grid_item {
        width: calc(33.333% - 40px);
    }

}

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

    .post_grid_list.columns_12  .post_grid_item {
        width: calc(50% - 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;
    }

    .post_grid_list.post .section_container.heading{
        display: block;
    }

    .post_grid_list.post  h2 {
        text-align: left;
        margin-top: 30px;
        margin-bottom: 20px;
    }

    .post_grid_list.post .section_cta{
        margin-top: 0;
    }

    .post_grid_list.columns_12 .post_grid_item img{
        width: auto;
    }

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

    .post_grid_list.team_member .post_grid_item {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

}

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

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

    .post_grid_list.columns_12  .post_grid_item {
        width: calc(100% - 0px);
        padding: 5%;
        margin: 0;
    }


}





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

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

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

}

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


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

    .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) {

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

    .home_slide_column.left {
        min-height: 530px;
        height: auto;
        max-height: max-content;
    }

    .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_right{
        display: none;
    }

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

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

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

    .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: 12px 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 {
        height: auto;
        justify-content: flex-start;
        padding: 10%;
        max-width: 80%;
    }

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

    .image_left_editor_right .column_right {
        margin-left: 0;
        width: 100%;
        max-width: 90%;
    }
    
}

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


/* Univesity */
.related.university h2 {
    width: 100%;
    max-width: 100%;
    text-align: center;
}

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

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

.unversity_img_container{
    height: 80%;
}

.university_title{
    color: var(--Primary-Blue-600, #090093);
    font-family: Cairo;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    margin-top: 16px;
}

.university_excerpt, .university_excerpt p {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    color: var(--Primary-Slate-500, #07072B);
    font-family: "Work Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-top: 8px;
    margin-left: 0;
}

.university_excerpt a{
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, #FF7C00 0%, #FFA861 100%);
    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;
    padding: 4px 25px;
    border-radius: 4px;
    margin: 0;
}

.university_excerpt a:hover{
    background: #DEDEFF;
}


/* Responsive */
@media only screen and (max-width: 768px) {
	.university_excerpt a {
		margin-top: 8px;
	}

}

.related.university .owl-dots {
    bottom: 0;
}

.related.university .owl-theme .owl-nav .owl-prev {
    left: 4%;
}

.related.university .owl-theme .owl-nav .owl-next {
    right: 4%;
}

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

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

}

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

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

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

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

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

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

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

}

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

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

    .page_builder section.related.university {
        padding-bottom: 60px;
    }

    .related.university .owl-dots {
        bottom: -60px;
    }

}
.related.posts.university .unversity_img_container a {
  display:block; 
  width:100%; 
  max-height: 600px;
  aspect-ratio:16/9; /* or padding-top:56.25% */
  background-size:cover; 
  background-position:center;
}
.single-container {
    max-width: 90%;
    margin: 0 auto;
}

h2.campus_title {
    color: var(--Primary-Blue-600, #090093);
    text-align: center;
    font-family: Cairo;
    font-size: 36px !important;
    font-style: normal;
    font-weight: 400;
    line-height: 44px !important;
}

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

.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: #07072B;
    margin-left: 0;
}

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

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

.iframe_layout .preview_image_container{
    position: relative;
}

.iframe_layout .preview_image_container .preview_image{
    width: 100%;
}

.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: 1240px;
    max-width: 90%;
    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;
}

.simple_text_editor.full{
    background: unset;
}

.simple_text_editor.full .container{
    width: 1024px;
    max-width: 90%;
    margin: 0 auto;
}

.simple_text_editor.full h2{
    color: #090093;
    margin-bottom: 16px;
}

.simple_text_editor.full p{
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    margin-bottom: 25px;
}

.simple_text_editor.full .cta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background: linear-gradient(90deg, #FF7C00 0%, #FFA861 100%);
    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;
    padding: 4px 24px;
    border-radius: 4px;
}

.simple_text_editor.full .cta:hover {
    background: #DEDEFF;
    color: var(--Primary-Blue-500, #0600EB);
}

@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 (min-width: 1200px) {

    .boxes_items.columns_3 .boxes_item {
        width: calc(33.333% - 120px);
    }

    .boxes_items.columns_3  .boxes_item:nth-child(2n+2) {
        margin-right: 32px;
    }

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

}


@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 {
	display: grid;
    grid-template-columns: 1;
    gap: 12px; /* controls spacing between items */
    width: 100%;
    background-color: transparent;
    margin-top: 24px;
	align-items: start; /* prevents vertical stretch */
}

.accordion_section.modules .accordion {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

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

.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;
    border: none !important;
    outline: none;
}

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

.accordion_section .read_more {
    max-width: 174px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    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;
    text-decoration: none;
    border-radius: 4px;
    padding: 0px 16px;
    margin: 24px;
    margin-left: auto;
}

.accordion_section .read_more:hover{
    background: #090093;
}

@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;
    }
	
    .accordion_section.modules .accordion {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

@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 */
.page_builder section.tabs-module {
    width: 100%;
    padding: 80px 0;
    padding-top: 32px;
}	

.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 {
    min-width: unset;
    min-height: unset;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    color: var(--Primary-D4B-Hot-Pink-500, #0600EB);
    font-size: 16px;
    line-height: 24px;
    text-decoration: none;
    padding: 8px 28px;
    border: 2px solid #090093;
    border-radius: 100px;
}

.tabs-titles li a.active {
    background: linear-gradient(90deg, #090093 0%, #0600EB 100%);
    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-Blue-600, #090093);
    font-family: Cairo;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px; 
}

.tabs-content p{
    margin-bottom: 12px;
}

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


/* Responsive */
@media only screen and (max-width: 768px) {
    .tabs-titles{
		margin: 0 auto;
		display: flex;
		cursor: pointer;
		margin-bottom: 32px;
		flex-direction: column;
		gap: 10px;
		max-width: 75%;
    }
}


/* 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 .page_banner.large{
    max-height: 400px;
}

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


.single-module .simple_text_editor.module{
    width: 1240px;
    max-width: 90%;
    background: transparent;
    padding-top: 32px;
    margin: 0 auto;
}

.single-module .simple_text_editor.module .container{
    max-width: 100%;
}

.single-module .simple_text_editor.module .container h2{
    color: var(--Primary-Blue-600, #090093);
    font-family: Cairo;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 44px;
    margin-bottom: 10px;
}

.single-module .simple_text_editor.module .container p{
    max-width: 90%;
}

.single-module .downloads_section .container {
    width: 1200px;
    max-width: calc(90% - 64px);
}

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

    .image_left_editor_right.no-padding-top .column_right{
        padding-top: 0;
    }

}

@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{
    display: flex;
    align-items: center;
    color: var(--Primary-Blue-600, #090093);
    font-family: Cairo;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 44px;
}

.resources_section h2.heading img{
    margin-right: 16px;
}

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

.resources_section.layout_2 .container {
    background: var(--Gradient-Blue, linear-gradient(90deg, #090093 0%, #0600EB 100%));
    border-radius: 8px;
}

.resources_section.layout_2 h2.heading{
    color: #fff;
}

.resources_section.layout_2 p{
    color: #fff;
}

.resources_section.layout_2 .cta_list li a{
    background: linear-gradient(90deg, #FF7C00 0%, #FFA861 100%);
    color: var(--Primary-Blue-700, #000056);
    border: 0 none;
    border-radius: 4px;
}

.resources_section.layout_2 .cta_list li a:hover{
    color: var(--Primary-Blue-500, #0600EB);
    background: var(--Primary-Blue-200, #DEDEFF);
}

.resources_section.layout_2 .cta_list li.cta_item:last-child a {
    color: var(--Primary-Blue-500, #fff);
    background: transparent;
    padding: 1px 24px;
    border: 1px solid #fff;
}

.resources_section.layout_2 .cta_list li.cta_item:last-child a:hover {
    background: #0600EB;
    border: 1px solid #0600EB;
}

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

    .resources_section .cta_list li {
        margin-right: 0;
        margin-bottom: 16px;
        width: 100%;
    }

}


/* Card Section */
.cards_section{
    display: flex;
    padding: 56px 0;
}

.cards_section .container {
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: var(--Gradient-Blue, linear-gradient(90deg, #090093 0%, #0600EB 100%));
    padding: 24px 56px 32px 96px;
    border-radius: 8px;
    width: 1540px;
    max-width: 90%;
}

.cards_section h2{
    max-width: 156px;
    color: var(--Base-White, #FFF);
    font-family: Cairo;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 38px;
    margin-bottom: 0;
}

.cards_section .card_items_list {
    display: flex;
    align-items: center;
    max-width: 90%;
    margin: 0 auto;
}

.cards_section .card_item{
    display: flex;
    padding: 32px 56px;
    flex-direction: column;
    align-items: center;
    border-radius: 16px;
}

.cards_section .card_item .card_link a {
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, #FF7C00 0%, #FFA861 100%);
    color: var(--Primary-Blue-700, #000056);
    font-family: "Work Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    text-align: center;
    text-decoration: none;
    padding: 6px 32px;
    border-radius: 4px;
    margin-top: 25px;
}

.cards_section .card_item .card_link a:hover{
    background: #dedeff;
    color: #090093;
}

.cards_section.layout_2 .container {
    width: 1280px;
    background: transparent;
}

.cards_section.layout_2 h2{
    color: var(--Primary-Blue-600, #090093);
    margin-right: 32px;
}

.cards_section.layout_2 .card_item {
    width: 235px;
    background: var(--Base-White, #FFF);
    border-radius: 8px;
    border: 1px solid var(--Primary-Blue-200, #DEDEFF);
    margin-right: 32px;
}

.cards_section.layout_2 .card_item:nth-child{
    margin-right: 0;
}

.cards_section.layout_2 .card_item .card_link a{
    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: 6px 24px;
}

.cards_section.layout_2 .card_item .card_link a:hover{
    background: #090093;
}

.cards_section.layout_2 .card_item .card_link a img{
    margin-left: 8px;
    margin-right: 0;
}

.cards_section.layout_3 .container {
    display: flex;
    flex-direction: column;
    border-radius: 32px;
    background: #ECF3FF;
    padding: 32px 56px 32px 96px;
    max-width: 80%;
}

.cards_section.layout_3 .container h2{
    width: 100%;
    max-width: 100%;
    color: var(--Primary-Blue-600, #090093);
    font-family: Cairo;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 38px;
    text-align: left;
    margin-bottom: 32px;
}

.cards_section.layout_3 .card_items_list {
    max-width: 100%;
    flex-wrap: wrap;
    align-items: flex-start;
}

.cards_section.layout_3 .card_item {
    width: 45%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0;
    padding-right: 5%;
    margin: 0;
    margin-bottom: 40px;
}

.cards_section.layout_3 .card_item img {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    object-fit: contain;
    padding: 16px;
    border-radius: 50%;
    border: 2px solid var(--Gradient-Blue, #090093);
    margin-right: 24px;
}

.cards_section.layout_3 .card_item h3{
    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: Cairo;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    margin-top: 0;
    margin-bottom: 12px;
}

.cards_section.layout_3 .card_item  p{
    color: var(--Primary-Slate-500, #07072B);
    font-family: "Work Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

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

    .cards_section .container{
        flex-wrap: wrap;
    }

    .homeslider_section .cards_section .container{
        flex-wrap: nowrap;
    }

    .cards_section h2{
        margin-bottom: 30px;
    }

    .cards_section .card_item{
        margin-bottom: 30px;
    }

}

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

    .cards_section{
        padding: 0;
    }

    .cards_section.layout_2 .container {
        max-width: 90%;
        flex-direction: column;
        padding: 0;
        margin: 0 auto;
    }

    .cards_section.layout_2 .card_item {
        width: 33.333%;
    }

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

    .homeslider_section .cards_section .container {
        flex-direction: column;
        padding: 24px;
        border-radius: 0;
    }

    .cards_section .card_item {
        margin: 15px;
        width: 300px;
    }

    .cards_section.layout_2 h2 {
        margin-right: 0;
        max-width: 100%;
    }

      .cards_section.layout_2 .card_items_list {
        flex-wrap: wrap;
        justify-content: center;
        flex-direction: column;
    }

    .cards_section.layout_2 .card_item {
        width: 100%;
        max-width: 300px;
        margin: 25px auto;
    }

}

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

    .cards_section h2{
        text-align: center;
        margin-bottom: 10px;
    }

    .cards_section .card_items_list {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .cards_section .card_item {
        width: 33.333%;
        margin: 15px auto;
    }

}


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

    .cards_section.layout_3 .container {
        padding: 5%;
        max-width: 80%;
    }

}

@media only screen and (max-width: 828px) {
    
    .cards_section .card_items_list {
        flex-wrap: wrap;
    }

}

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

    .cards_section {
        padding: 32px 0;
    }

    .homeslider_section  .cards_section {
        padding-top: 0;
    }

    .cards_section h2{
        font-size: 24px;
        line-height: 32px;
        text-align: center;
    }

    .cards_section .card_item {
        margin-bottom: 30px;
        display: flex;
        flex-direction: row;
        width: 100%;
        justify-content: space-around;
        align-items: center;
        padding: 24px;
        margin: 10px 0;
    }

    .card_item img{
        max-width: 70px;
    }

    .cards_section .card_item .card_link a{
        font-family: "Work Sans";
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: 24px;
        margin-top: 0;
    }

    .cards_section .card_item .card_link a {
        min-width: 120px;
        justify-content: center;
    }

    .cards_section.layout_2 .card_item .card_link a {
        padding: 6px 12px;
        min-width: 180px;
    }

    .cards_section.layout_2 .card_item{
        flex-direction: column;
    }

    .cards_section.layout_2 .card_link{
        display: block;
        margin-top: 25px;
    }

    .cards_section.layout_3 .card_item {
        width: 100%;
        padding-right: 0;
    }

}


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

    .card_item img {
        width: 50px;
        margin-right: 20px;
    }

    .cards_section .card_item .card_link a {
        min-width: 110px;
    }

}

/* Showcase */
.showcase_section {
    display: flex;
    position: relative;
    width: 1620px;
    max-width: 90%;
    margin: auto;
}

.showcase_section .main-slider {
    width: calc(100% - 275px);
    float: left;
    margin-right: 50px;
    z-index: 3;
}

.showcase_section .main-slider .slick-list{
    height: 100vh;
    max-height: 900px;
}

.showcase_section .main-slider .slick-track{
    height: 100%;
}

.showcase_section .main-slider .slide {
    position: relative;
    text-align: center;
}

.showcase_section .main-slider .slick-slide.slick-active img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
}

.showcase_section .main-slider .content {
    width: 100%;
    max-width: calc(100% - 112px);
    text-align: left;
    padding: 56px;
    position: absolute;
    bottom: 0;
    z-index: 1;
}

.showcase_section .main-slider .content .post_categories {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.showcase_section .main-slider .content .post_categories .category_item_container{
    background: var(--Gradient-Blue, linear-gradient(90deg, #090093 0%, #0600EB 100%));
    padding: 16px 32px;
    border-radius: 100px;
}

.showcase_section .main-slider .content .post_categories .category_item{
    color: var(--Base-White, #FFF);
    text-align: center;
    font-family: "Work Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}

.showcase_section .main-slider .content h3 {
    color: var(--Base-White, #FFF);
    font-family: Cairo;
    font-size: 60px;
    font-style: normal;
    font-weight: 400;
    line-height: 64px;
    margin-top: 24px;
    margin-bottom: 24px;
}

.showcase_section .main-slider .content p {
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    color: var(--Base-White, #FFF);
    font-family: "Work Sans";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    margin: 0;
}

.showcase_section .main-slider .content .permalink {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #FF7C00 0%, #FFA861 100%);
    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;
    padding: 10px 32px;
    border-radius: 4px;
    margin-left: 32px;
    min-width: 100px;
}

.showcase_section .main-slider .content .permalink:hover{
    background: rgb(222, 222, 255);
    color: rgb(9, 0, 147);
}

.showcase_section .main-slider .slide_overlay {
    position: absolute;
    bottom: 0;
    /*background-color: rgba(0, 0, 0, 0.3);*/
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.showcase_section .thumbnail-slider {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.showcase_section .thumbnail-slider .slick-list{
    min-width: 200px;
}

.showcase_section .thumbnail-slider .thumb {
    cursor: pointer;
    margin-bottom: 32px;
}

.showcase_section .thumbnail-slider .thumb:last-child{
    margin-bottom: 0;
}

.showcase_section .thumbnail-slider img {
    width: 200px;
    height: 147px;
    object-fit: cover;
    object-position: center;
    border: 4px solid transparent;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.showcase_section .thumbnail-slider .slick-current img {
    border: 4px solid var(--Primary-Gradient-Gradient, #090093);
    background: url(<path-to-image>) lightgray 50% / cover no-repeat, #090093;
}

.showcase_section .thumbnail-slider .slick-track {
    transform: unset !important;
    display: flex;
    flex-direction: column;
}

.showcase_section .thumbnail-slider .thumb.slick-cloned{
    display: none;
}


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

    .showcase_section .main-slider .content h3 {
        font-size: 60px;
        line-height: 68px;
    }

}

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

    .showcase_section {
        width: 1620px;
        max-width: 90%;
        padding: 32px 0;
    }

    .showcase_section .main-slider {
        width: 100%;
        max-width: 90%;
        margin: 0 auto;
    }

    .showcase_section .main-slider .slick-list {
        height: auto;
        max-height: max-content;
    }

    .showcase_section .main-slider .slick-slide img {
        height: 400px;
    }

    .showcase_section .main-slider .slick-slide.slick-active img {
        width: 100%;
        max-width: 100%;
        height: 350px;
        border-radius: 0;
    }

    .showcase_section .main-slider .content {
        max-width: 100%;
        position: static;
        padding: 25px 0;
    }

    .showcase_section .main-slider .content .post_categories {
        margin-left: 20px;
        margin-top: -100px;
    }

    .showcase_section .main-slider .content h3 {
        color: var(--Primary-D4B-Slate-900, #142A3E);
        font-family: "Cairo";
        font-size: 30px;
        font-style: normal;
        font-weight: 600;
        line-height: 38px;
        margin-top: 40px;
    }

    .showcase_section .main-slider .content p {
        flex-direction: column;
        color: var(--Primary-D4B-Slate-900, #142A3E);
        font-family: "Work Sans";
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 24px;
    }

    .showcase_section .main-slider .content .permalink {
        width: 100%;
        max-width: 90%;
        text-align: center;
        margin: 0 auto;
        margin-top: 50px;
        padding: 16px 5%;
    }

    .showcase_section .main-slider .slide_overlay {
        display: none;
    }

     .showcase_section .slick-prev, .showcase_section .slick-next {
        position: absolute;
        top: 20%;
        width: 48px;
        height: 48px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 10;
    }

    .showcase_section .slick-prev {
        left: 20px; 
    }

    .showcase_section .slick-next {
        right: 20px; 
    }

    .showcase_section .slick-arrow:before{
        display: none;
    }

    .showcase_section .slick-prev img, 
    .showcase_section .slick-next img {
        width: 48px;
        height: auto;
    }

    .showcase_section .slick-dots {
        position: absolute;
        bottom: -25px;
        left: 50%;
        transform: translateX(-50%);
        display: flex !important;
        gap: 8px;
        justify-content: center;
    }

    .showcase_section .slick-dots li {
        width: 16px;
        height: 16px;
        border-radius: 100px;
        border: 2px solid var(--Primary-Gradient-Gradient, #090093);
        background: transparent;
        list-style: none;
        display: inline-block;
        transition: all 0.3s ease;
    }

    .showcase_section .slick-dots li.slick-active {
        background: var(--Gradient-Blue, linear-gradient(90deg, #090093 0%, #0600EB 100%))
    }

    .showcase_section .slick-dots li button {
        width: 100%;
        height: 100%;
        opacity: 0;
        cursor: pointer;
    }

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

}


/* Counters */
.counters {
    width: 1620px;
    max-width: 90%;
    border-radius: 8px;
    background: var(--Gradient-Blue, linear-gradient(90deg, #090093 0%, #0600EB 100%));
    margin: 0 auto;
}

.counters .section_container {
    padding: 0px 0;
    flex-wrap: wrap;
}

.counters .counter_item {
    display: flex;
    width: calc(33.333% - 146px);
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex: 1 0 0;
    align-self: stretch;
    padding: 32px 56px;
    border-radius: 16px;
    margin: 0 20px;
}

.counters .counter_item:first-child{
    margin-left: 0;
}

.counters .counter_number_container{
    min-width: 200px;
    display: flex;
    align-items: center;
    color: var(--Secondary-Yellow-500, #FFB800);
    font-family: Cairo;
    font-size: 72px;
    font-style: normal;
    font-weight: 700;
    line-height: 78px;
}

.counter_number{
    min-width: 92px;
}

.counter_text{
    color: var(--Base-White, #FFF);
    font-family: "Work Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

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

    .counters .counter_item {
        margin-left: 0;
    }

}

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

    .counters .counter_item {
        width: calc(33.333% - 5%);
        gap: 5%;
    }

}

@media only screen and (max-width: 991px) {
    
    .counters .section_container {
        padding-top: 0;
        flex-direction: column;
    }

    .counters .counter_item:first-child{
        margin: 20px auto;
    }

    .counters .counter_item {
        flex-direction: row;
        margin: 20px 0;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 20px auto;
    }

    .counter_column {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 0 10px;
    }

}

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

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

    .counters .counter_item {
        flex-direction: column;
        margin: 0px auto;
    }

    .counters .counter_item img{
        max-width: 60px;
    }

    .counters .counter_number_container{
        font-size: 62px;
        line-height: 64px; 
        text-align: center;
        justify-content: center;
        margin: 25px 0;
    }

    .counter_text {
        font-size: 18px;
        line-height: 24px;
        text-align: center;
    }

}

/* Downloads Section */
.downloads_section{
    background: #090093;
    padding: 56px;
}

.downloads_section .container {
    width: 1040px;
    max-width: calc(90% - 64px);
    flex-direction: column;
    background-color: #fff;
    padding: 32px;
    border-radius: 32px;
    margin: 0 auto;
}



.downloads_section .container h2{
    display: flex;
    align-items: center;
    color: var(--Primary-Blue-600, #090093);
    font-family: Cairo;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 44px;
}

.downloads_section .container h2 img{
    margin-right: 16px;
}

.downloads_section .container p {
    max-width: 90%;
    margin: 0;
    margin-bottom: 32px;
}

.downloads_section .downloads_grid {
    display: flex;
    flex-wrap: wrap;
}

.downloads_section .downloads_grid 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;
    margin-right: 16px;
}

.downloads_section .downloads_grid a:hover{
    background: var(--Primary-Blue-200, #DEDEFF);
    border: 2px solid var(--Primary-Blue-500, #DEDEFF);
}

.downloads_section .downloads_grid a:last-child{
    background: var(--Primary-Blue-200, #DEDEFF);
    border: 2px solid var(--Primary-Blue-500, #DEDEFF);
}

.downloads_section .downloads_grid a:last-child:hover{
    background: var(--Primary-Blue-200, #090093);
    color: #fff;
    border: 2px solid var(--Primary-Blue-500, #090093);
}

.downloads_section .downloads_grid a img{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
}

.downloads_section.layout_2{
    background: transparent;
}

.downloads_section.layout_2 .container {
    width: 1280px;
    max-width: 90%;
    background-color: unset;
    background: var(--Gradient-Blue, linear-gradient(90deg, #090093 0%, #0600EB 100%));
    border-radius: 8px;
}

.downloads_section.layout_2 .container h2{
    color: #fff;
}

.downloads_section.layout_2 .container p{
    color: #fff;
}

.downloads_section.layout_2 .downloads_grid a{
    background: linear-gradient(90deg, #FF7C00 0%, #FFA861 100%);
    color: var(--Primary-Blue-700, #000056);
    font-family: "Work Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    border:  none;
    border-radius: 4px;
    padding: 3px 24px;
}

.downloads_section.layout_2 .downloads_grid a:hover {
    background: #dedeff;
    color: #090093;
}

.downloads_section.layout_2 .downloads_grid a.view_all{
    background: transparent;
    color: var(--Base-White, #FFF);
    font-family: "Work Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px; 
    border-radius: 4px;
    border: 1px solid var(--Base-White, #FFF);
}

.downloads_section.layout_2 .downloads_grid a.view_all:hover{
    background: #0600eb;
    border: 1px solid var(--Base-White, #0600eb);
}

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

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

}

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

    .page_builder section.downloads_section {
        padding: 60px 40px;
    }

    .page_builder section.downloads_section .container {
        max-width: 90%;
        padding: 10% 5%;
    }

    .page_builder section.downloads_section .container h2 {
        flex-direction: column;
        align-items: flex-start;    
    }

    .page_builder section.downloads_section.layout_2 .downloads_grid a{
        margin-bottom: 16px;
        margin-bottom: 25px;
    }


}

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

    .downloads_section .container {
        max-width: calc(100% - 50px);
        padding: 10% 25px;
    }

    .downloads_section .downloads_grid a {
        width: 100%;
        font-size: 16px;
        line-height: 24px;
        margin-right: 0;
    }

}


/* Resource Type */
.resources_types{
    background: var(--Primary-Slate-10, #F8F8F9);
}

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

.resources_types .resource_type_grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 32px;
}

section.resources_types h2{
    width: 100%;
    max-width: 100%;
    text-align: center;
    margin-bottom: 32px;
}

.resources_types .resource_type_item{
    flex: 0 1 calc(33.333% - 0px);
}

.resources_types .resource_type_item img{
    display: block;
    width: 100%;
    height: 100%;
    max-height: 250px;
    object-fit: cover;
    border-radius: 56px 8px 0px 0px;
}

.resources_types .resource_type_text{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: var(--Base-White, #FFF);
    gap: 16px;
    align-self: stretch;
    padding: 24px;
    border-radius: 0px 0px 8px 8px;
}

.resources_types .resource_type_text h3{
    color: var(--Primary-Blue-600, #090093);
    font-family: Cairo;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    margin-top: 0;
    margin-bottom: 0;
}

.resources_types .resource_type_text p {
    color: var(--Primary-Slate-500, #07072B);
    font-family: "Work Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
}

.resources_types .resource_type_text .permalink{
    min-height: unset;
    color: var(--Primary-Blue-500, #0600EB);
    font-family: "Work Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px;
    text-decoration: none;
}

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

    .resources_types .resource_type_grid{
        flex-direction: column;
    }

    .resources_types .resource_type_item {
        flex: 100%;
    }

}

/* Resource Type Archive Page */
.page-id-3893,
.tax-resource_type{
    background-color: #F8F8F9;
}


.tax-resource_type .accordion_section{
    background: var(--Primary-Blue-200, #DEDEFF);
}

.resource_filter_container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: var(--Gradient-Blue, linear-gradient(90deg, #090093 0%, #0600EB 100%));
    padding: 48px 56px;
    border-radius: 8px;
    margin: 32px auto;
    flex-wrap: wrap;
    max-width: -webkit-fill-available;
}

.resource_filter_item {
    display: flex;
    align-items: center;
    width: 46%;
}

.resource_filter_item.resource_search{
    margin-right: 56px;
}

.resource_filter_item label{
    color: var(--Base-White, #FFF);
    font-family: Cairo;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px; 
    margin-right: 24px;
}

.resource_filter_item input {
    display: flex;
    flex-grow: 1;
    height: 56px;
    background-image: url(images/search.svg);
    background-repeat: no-repeat;
    background-position: 16px 50%;
    padding-left: 44px;
    border: none;
    outline: none;
    border-radius: 4px;
}

.resource_filter_item input::-webkit-input-placeholder { /* Chrome, Safari, Opera */
    color: #59656D;
    font-family: "Work Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; 
}

.resource_filter_item input:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: var(--Primary-D4B-Slate-900, #142A3E);
    font-family: "Work Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.resource_filter_item input::placeholder { /* Standard */
    color: var(--Primary-D4B-Slate-900, #142A3E);
    font-family: "Work Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.resource_filter_item select{
    display: flex;
    flex-grow: 1;
    min-height: 56px;
    color: var(--Primary-D4B-Slate-900, #142A3E);
    font-family: "Work Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    padding-left: 16px;
    border: 0 none;
    border-radius: 4px;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #fff;
    background-image: url('images/chevron-down.svg');
    background-repeat: no-repeat;
    background-position: 98% 50%;
    background-size: 24px;
}

.resource_filter_item select:hover{
    cursor: pointer;
}

.resources_type_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 32px;
    margin: 32px 80px 0;
}

.resources_type_list p{
    color: var(--Primary-Slate-500, #07072B);
    font-family: "Work Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    margin-top: 25px;
}

.resource_type_item {
    flex: 1 1 calc(33.333% - 32px);
    max-width: calc(33.333% - 32px);
    color: var(--Primary-Purple-500, #7A2982);
    font-family: "Work Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    text-decoration: none;
    text-align: center;
}

.resource_type_item:link,
.resource_type_item:visited,
.resource_type_item:hover,
.resource_type_item:active,
.resource_type_item:focus {
    font-family: "Work Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px; 
}

.resource_image_container{
    height: 268px;
    max-width: 100%;
    max-height: 100%;
    overflow: hidden;
    border-radius: 56px 8px 0px 0px;
}

.resource_type_item img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    color: #090093;
}

.resource_text_container {
    background-color: #fff;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 0 0 8px 8px;
    overflow: hidden;
}

.resource_type_item h2 {
    color: var(--Primary-Blue-600, #090093);
    font-family: Cairo;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    margin-bottom: 0px;
}

.resource_type_item h2 a{
    color: var(--Primary-Blue-600, #090093);
    text-decoration: none;
}

.resource_text_container p{
    color: var(--Primary-Slate-500, #07072B);
    font-family: "Work Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    margin: 16px 0;
}

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

.resource_text_container .see_more:hover{
    text-decoration: underline;
}

.cant_find {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: calc(100% - 96px);
    background: var(--Gradient-Blue, linear-gradient(90deg, #090093 0%, #0600EB 100%));
    color: var(--Secondary-Yellow-500, #FFB800);
    font-family: Cairo;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    padding: 32px 48px;
    border-radius: 8px;
    margin: 0 auto;
    margin-top: 40px;
}

.cant_find span{
    margin-right: 56px;
}

.cant_find a {
    display: flex;
    align-items: center;
    color: var(--Base-White, #FFF);
    font-family: "Work Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    text-decoration: none;
    padding: 3px 24px;
    border: 1px solid var(--Base-White, #FFF);
    border-radius: 8px;
    min-width: max-content;
}

.cant_find a:hover{
    background-color: #FF7C00;
    color: #000056;
    font-weight: 600;
    border: 1px solid var(--Base-White, #FF7C00);
}

.accordion_section.taxonomy{
    background-color: #142A3E;
    padding-top: 45px;
}


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

        .resource_type_item {
            flex: 1 1 calc(50% - 32px);
            max-width: calc(50% - 32px);
        }
}

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

    main .container.resources_container{
        max-width: 90%;
        padding: 0;
    }

    .resource_filter_container {
        display: flex;
        flex-direction: column;
        padding: 32px 50px;
        margin: 50px auto;
        margin-bottom: 50px;
    }

    .resource_filter_item {
        display: flex;
        align-items: center;
        width: 100%;
        margin: 16px auto;
        margin-left:0;
    }

    .resource_filter_item label{
        width: 80px;
    }

    .cant_find {
        margin-top: 40px;
        margin-bottom: 60px;
    }

    .resources_type_list {
        margin-bottom: 0px;
    }

}

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

    .resource_type_item {
            flex: 1 1 calc(100% - 0px);
            max-width: 500px;
            margin: 8px auto;
    }

    .accordion_section.taxonomy .container {
        padding: 30px 0;
        padding-bottom: 60px;
    }

    .resource_filter_container {
        padding: 24px 5%;
        max-width: 90%;
    }

    .resource_filter_item.resource_search{
        margin-right: 0;
    }

    .resource_filter_item select {
        width: auto;
        max-width: calc(100% - 62px);
    }

    .resource_filter_item label {
        width: 40px;
        margin-right: 24px;
    }

    .resource_type_item h2{
        text-align: left;
    }

    .cant_find {
        flex-direction: column;
        align-items: flex-start;
        margin: 0;
        margin-bottom: 32px;
    }

    .cant_find a{
        margin-top: 24px;
    }

    .cant_find span {
        margin-right: 0;
        font-size: 20px;
        line-height: 28px;
    }

}


/* A-Z sort Page */
.page-id-3911 .page_builder {
    background-color: #F8F8F9;
}

.resources_page{
    width: 1620px;
    max-width: 90%;
    padding: 40px;
    margin: 0 auto;
}

.resources_page .sort_results{
    display: flex;
    align-items: center;
    justify-content: end;
    color: var(--Primary-Slate-400, #393955);
    font-family: "Work Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 16px;
}

.resources_page .sort_results select{
    width: 100%;
    max-width: 300px;
    height: 48px;
    color: var(--Primary-D4B-Slate-500, #727F8B);
    font-family: "Work Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; 
    margin-left: 16px;
    padding: 12px 12px;
    border: 1px solid #9BADBD;
    border-radius: 4px;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #fff;
    background-image: url('images/chevron-down.svg');
    background-repeat: no-repeat;
    background-position: 98% 50%;
    background-size: 24px;
}

.resources_page .sort_results select:hover{
    cursor: pointer;
}

.resources_page .resource-sort{
    margin-left: 16px;
}

.resources_page .resources_container{
    display: flex;
    align-items: flex-start;
}

.resources_page .resources_controls {
    width: 512px;
    margin-right: 40px;
}

.resource_search_container {
    border-radius: 16px 16px 0px 0px;
    background: var(--Primary-Gradient-Gradient, linear-gradient(90deg, #7A2982 0%, #BC0E71 100%));
    padding: 32px;
}

.resource_search_container{
    border-radius: 8px 8px 0px 0px;
    background: var(--Gradient-Blue, linear-gradient(90deg, #090093 0%, #0600EB 100%));
    padding: 32px;
    max-width: calc(100% - 64px);
}

.resource_search_container input {
    width: 100%;
    max-width: calc(100% - 44px);
    display: flex;
    flex-grow: 1;
    height: 56px;
    background-image: url(images/search.svg);
    background-repeat: no-repeat;
    background-position: 16px 50%;
    padding-left: 44px;
    border: none;
    border-radius: 4px;
    outline: none;
}

.resource_search_container input::-webkit-input-placeholder { /* Chrome, Safari, Opera */
    color: var(--Primary-D4B-Slate-900, #142A3E);
    font-family: "Work Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.resource_search_container input:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: var(--Primary-D4B-Slate-900, #142A3E);
    font-family: "Work Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.resource_search_container input::placeholder { /* Standard */
    color: var(--Primary-D4B-Slate-900, #142A3E);
    font-family: "Work Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.resources_controls_bottom {
    padding: 32px;
    border-radius: 0px 0px 16px 16px;
    background: var(--Base-White, #FFF);
}

.resources_controls_bottom h3{
    color: var(--Primary-Slate-500, #07072B);
    font-family: Cairo;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    margin-top: 0;
}

.resources_controls_bottom label {
    display: flex;
    align-items: center;
    color: var(--Primary-Slate-400, #393955);
    font-family: "Work Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 8px;
}

.resources_controls_bottom input{
    margin-right: 16px;
}

.resources_controls_bottom input {
    visibility: hidden;
    position: relative;
    margin-right: 8px;
}

.resources_controls_bottom input:after {
    content: '';
    display: inline-block;
    width: 32px;
    height: 32px;
    background-image: url(images/filter-checkbox.svg);
    background-size: contain;
    background-repeat: no-repeat;
    cursor: pointer;
    position: relative;
    top: 8px;
    visibility: visible;
}

.resources_controls_bottom input.checked:after {
    background-image: url(images/filter-checkbox-checked.svg);
}

.resources_controls_bottom .resource-filter span{
    color: var(--Primary-D4B-Slate-900, #142A3E);
    font-family: "Work Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; 
}

.resource_item{
    height: 300px;
    display: flex;
    align-items: center;
    margin-bottom: 32px;
    border-radius: 0px 16px 16px 0px;
}

.resource_item_column{
    width: 50%;
}

.resource_item_column.img {
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 16px 0 0 16px;
}

.resource_item_column.text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: calc(100% - 64px);
    background: var(--Base-White, #FFF);
    padding: 32px;
    border-radius: 0px 16px 16px 0px;
}

.resource_item h2{
    color: var(--Primary-Blue-600, #090093);
    font-family: Cairo;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    margin-bottom: 16px;
}

.resource_excerpt{
    margin-bottom: 16px;
}

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

.resource_item a{
    display: flex;
    align-items: center;
    color: var(--Primary-Blue-500, #0600EB);
    font-family: "Work Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px;
    text-decoration: none;
}

.resource_item a img{
    color: #0600EB;
    margin-left: 8px;
}

.filter-tag {
    display: inline-flex;
    align-items: center;
    background: var(--Primary-Blue-500, #0600EB);
    color: #FFF;
    font-family: "Work Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    padding: 16px 16px;
    border-radius: 100px;
    margin-bottom: 15px;
    margin-right: 15px;
}

.remove-filter-button {
    background-color: transparent;
    border: 0 none;
    background-image: url(images/remove-filter.svg);
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: center;
    outline: none;
}

.remove-filter-button:hover{
    outline: none;
    cursor: pointer;
}

.remove-filter-button img {
    visibility: hidden;
    opacity: 0;
}

#resources-list{
    width: 100%;
}

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

    .resources_page {
        padding: 0;
    }

    .resources_page .sort_results {
        margin: 16px 0;
    }

    .resources_page .resources_container {
        flex-direction: column;
    }

    .resources_page .resources_controls {
        width: 100%;
        margin-right: 0;
        margin-bottom: 40px;
    }

    .resource_item {
        height: auto;
        flex-direction: column;
    }

    .resource_item_column{
        width: 100%;
    }

    .resource_item_column.img {
        height: 300px;
        border-radius: 16px 16px 0 0px;
    }

    .resource_item_column.text {
        width: calc(100% - 64px);
    }

}

@media only screen and (max-width: 767px) {
    
    .resources_controls_bottom {
        padding: 24px;
    }

}
    

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

    .resources_page .sort_results {
        flex-direction: column;
        align-items: flex-start;
    }

    .resources_page .sort_results select{
        max-width: 100%;
        margin-top: 12px;
        margin-bottom: 8px;
        margin-left: 0;
    }

}


/* CTA list */
.page_builder section.cta_list{
    padding: 32px 0;
}

.cta_list .container {
    width: 1136px;
    max-width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 56px;
    align-self: stretch;
    background: var(--Gradient-Blue, linear-gradient(90deg, #090093 0%, #0600EB 100%));
    border-radius: 8px;
    padding: 40px 96px !important;
    margin: 0 auto;
}

.cta_list h2{
    color: var(--Primary-Blue-600, #fff);
    font-family: Cairo;
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: 40px; 
    letter-spacing: -0.72px;
    margin-right: 16px;
    margin-bottom: 0px;
}

.cta_list .cta_items_container{
    display: flex;
    align-items: center;
}

.cta_list .cta_items_container .cta_item{
    margin: 0 16px;
}

.cta_list .cta_items_container .cta_item a{
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, #FF7C00 0%, #FFA861 100%);
    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;
    padding: 4px 24px;
    border-radius: 4px;
}

.cta_list .cta_items_container .cta_item a:hover{
    background: #dedeff;
    color: #090093;
}

.cta_list .cta_items_container .cta_item a img{
    margin-left: 8px;
}

.partner_overview .cta_list {
    display: flex;
    align-items: center;
    padding: 0;
    margin-top: 28px;
}

.partner_overview.right .cta_list {
    border-radius: 8px;
    background: var(--Primary-D4B-Slate-100, #F0F3F5);
    padding: 16px;
}

.partner_overview .cta_list h4{
    width: auto;
    color: var(--Primary-D4B-Slate-600, #435565);
    font-family: Blinker;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px; 
    margin-right: 16px;
    margin-bottom: 0;
}

.partner_overview.right .cta_list h4{
    margin-left: 16px;
}

.partner_overview .cta_list a{
    display: flex;
    align-items: center;
    color: var(--Primary-D4B-Slate-900, #142A3E);
    font-family: "Work Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px; 
    text-decoration: none;
    padding: 16px 24px;
    border-radius: 4px;
    border: 1px solid var(--Primary-D4B-Hot-Pink-500, #BC0E71);
    margin-right: 32px;
}

.partner_overview.right .cta_list a {
   background-color: #BC0E71;
   color: #fff;
}

.partner_overview.right .cta_list a:hover{
    background-color: #7a2982;
}

.partner_overview .cta_list a:hover{
    background-color: #BC0E71;
    color: #fff;
}

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

    .partner_overview.right .cta_list{
        flex-wrap: wrap;
    }

    .partner_overview.right .cta_list{
        padding-top: 24px;
    }

    .partner_overview.right .cta_list a{
        margin-bottom: 16px;
    }


}

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

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

    .cta_list .container{
        flex-wrap: wrap;
    }

    .cta_list .cta_items_container{
        flex-wrap: wrap;
    }

    .cta_list .cta_items_container .cta_item:first-child{
        margin-left: 0;
        margin-right: 32px;
    }

    .cta_list .cta_items_container .cta_item{
        margin-left: 0;
        margin-right: 32px;
    }

     .cta_list {
        flex-wrap: wrap;
    }

    .cta_list a{
        margin-bottom: 28px;
    }

}

@media only screen and (max-width: 991px) {
    
    .partner_overview.right .cta_list h4{
        flex-basis: 100%;
        margin-left: 0;
        margin-bottom: 25px;
    }

    .cta_list .container {
        max-width: 80% !important;
        padding: 40px 5% !important;
    }

}


@media only screen and (max-width: 767px) {
    
    .page_builder section.cta_list {
        padding: 16px 0;
    }

    .cta_list .cta_items_container {
        flex-direction: column;
        justify-content: center;
    }

    .cta_list .cta_items_container .cta_item,
    .cta_list .cta_items_container .cta_item:first-child{
        margin-right: 0;
    }

    .cta_list .cta_items_container .cta_item a {
        min-width: 200px;
        justify-content: center;
    }

}


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

    .partner_overview.right .cta_list h4{
        margin-left: 0;
        margin-bottom: 16px;
    }

}




/* Search */
.search_icon {
    background-image: url(images/search.svg);
    background-repeat: no-repeat;
    background-position: 53% 44%;
    margin-left: auto;
}

.mobile li.search_icon a{
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--Primary-Blue-200, #DEDEFF);
}

.mobile li.search_icon a span{
    display: none;
}

.search_bar_container {
    display: none;
    max-width: calc(90% - 64px);
    align-items: center;
    background-color: #fff;
    padding: 32px;
    border-radius: 16px;
    margin: 0 auto;
}

.search_bar_container.active{
    display: flex;
}

.search-form{
    width: 100%;
    position: relative;
}

.search-form input{
    width: -webkit-fill-available;
    border-radius: 100px;
    border: 2px solid var(--Primary-Blue-500, #0600EB);
    border-radius: 40px;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.10);
    padding: 6px 24px;
}

.search-form input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #59656D;
    font-family: "Work Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.search-form input::-moz-placeholder { /* Firefox 19+ */
    color: #59656D;
    font-family: "Work Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.search-form input:-ms-input-placeholder { /* IE 10+ */
    color: #59656D;
    font-family: "Work Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.search-form input:-moz-placeholder { /* Firefox 18- */
    color: #59656D;
    font-family: "Work Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.search-submit {
    position: absolute;
    right: 24px;
    top: 8px;
    background-color: transparent;
    background-image: url(images/search.svg);
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 24px;
    border: 0 none;
    outline: none;
}

.close_search{
    width: 48px;
    height: 48px;
    background-image: url(images/close-search.svg);
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: contain;
    margin-left: 32px;
}

.close_search:hover{
    cursor: pointer;
}

.search_icon_mobile{
    display: none;
    width: 35px;
    height: 35px;
    background-image: url(images/search.svg);
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 24px;
    margin-right: 12px;
}

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

    .search_bar_container {
        max-width: calc(90% - 0px);
    }

    .close_search {
        margin-left: 16px;
    }

    .mobile-menu .search_icon{
        display: none;
    }

    .search_icon_mobile{
        display: block;

    }

}

.resource_filter_container {
    display: none;
}

section.cards_section.layout_1.key_points .container {
    border-radius: 0;
}
section.cards_section.layout_1.key_points .card_item {
    margin: 10px;
    background: #fff;
}



/* Discount */

.page_builder section.discount{
    width: 1620px;
    max-width: 90%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
    border: 1px solid var(--Gradient-Blue, #090093);
    border-radius: 8px;
    padding: 0;
    margin: 56px auto;
    margin-bottom: 0;
}

.discount .section_container {
    align-items: center;
    width: -webkit-fill-available;
    padding: 24px 32px !important;
}

.discount h2{
    font-family: Cairo;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    margin-left: 32px;
    margin-right: auto;
    margin-bottom: 0;
}

.discount .section_cta{
    background: #0600EB;
    color: #FFF;
    font-family: "Work Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}

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


    .page_builder section.discount{
        margin-top: 60px;
    }

}

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


    .page_builder section.discount{
        margin-top: 100px;
    }

}

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

    .discount .section_container{
        flex-wrap: wrap;
    }

}

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

    .page_builder section.discount .container{
        flex-direction: column;
        align-items: flex-start;
        padding: 40px !important;
    }

    .discount h2{
        margin: 20px;
        margin-left: 0;
    }

    .discount .section_cta{
        margin-top: 0;
        margin-bottom: 0;
    }

}


/* Sticky Course */

.sticky_course {
    position: fixed;
    right: 41px;
    z-index: 11;
    bottom: 200px;
}

.sticky_course.active {
    bottom: 105px;
}

.sticky_course .sticky_course_container{
    width: auto;
    padding: 0;
}

.sticky_course.active .sticky_course_container {
    flex-direction: column;
    width: 393px;
    max-width: calc(100% - 120px);
    background: linear-gradient(90deg, #090093 0%, #0600EB 100%);
    border-radius: 8px;
    padding: 32px 48px;
    position: relative;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.15);
}

.sticky_course .sticky_course_info{
    display: none;
}

.sticky_course.active .sticky_course_info{
    display: block;
}

.sticky_course .sticky_course_container .toggle_sticky_course {
    display: flex;
    justify-content: space-between;
    width: auto;
    min-width: 210px;
    height: auto;
    position: absolute;
    top: 0px;
    right: 0px;
    background:linear-gradient(90deg, #090093 0%, #0600EB 100%);
    background-repeat: no-repeat;
    padding: 20px;
    border-radius: 8px;
    background-position: center;
}

.sticky_course .sticky_course_container .toggle_sticky_course:hover{
    cursor: pointer;
}

.sticky_course.active .sticky_course_container .toggle_sticky_course {
    min-width: unset;
    background-image: url(images/close-sticky-course.svg);
    top: 28px;
    right: 12px;
}

.sticky_course .placeholder{
    display: flex;
    width: 100%;
    max-width: fit-content;
    padding: 8px 24px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    color: var(--Base-White, #FFF);
    font-family: "Work Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    border: 2px solid #FF7C00;
    border-radius: 100px;
}

.sticky_course .course_title{
    color: var(--Base-White, #FFF);
    font-family: Cairo;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    margin-top: 8px;
    margin-bottom: 16px;
}

.sticky_course .course_details_top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.sticky_course .course_details_top .course_details_column{
    width: 50%;
    color: var(--Base-White, #FFF);
    font-family: "Work Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; 
    margin-bottom: 16px;
}

.sticky_course .course_details_top .course_details_column span{
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
}

.sticky_course .course_details_bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    margin-bottom: 16px;
}

.sticky_course .course_details_bottom a{
    display: flex;
    align-items: center;
    color: var(--Base-White, #FFF);
    font-family: "Work Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px;
    text-decoration: none;
}

.sticky_course .course_details_bottom img{
    margin-right: 8px;
}

.sticky_course .apply_course{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    background-color: #FF7C00;
    color: #000056;
    font-family: "Work Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 4px;
}

.sticky_course .apply_course:hover{
    background: #7a2982;
}

.sticky_course.active .toggle_sticky_course .apply_course,
.sticky_course.active .toggle_sticky_course img{
    display: none;
}

.sticky_course .toggle_sticky_course img {
    width: 50px;
    height: 52px;
    margin-left: 16px;
}

.scroll_to_top{bottom:36px;}

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

    .sticky_course {
        position: fixed;
        z-index: 4;
        right: 0;
        width: 100%;
        max-width: 100%;
    }

    .sticky_course.active .sticky_course_container {
        width: 100%;
        padding: 5%;
        max-width: 80%;
    }

}

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

    .sticky_course .course_details_top {
        flex-direction: column;
    }

    .sticky_course .course_details_bottom {
        margin-top: 0px;
        align-items: flex-start;
    }

    .sticky_course .course_details_bottom .contact{
        margin-top: 16px;
    }

    .sticky_course .course_details_top .course_details_column{
        width:100%;
    }

    .sticky_course .sticky_course_container .toggle_sticky_course{right:8px;}

    .scroll_to_top{display:none!important;}

    .sticky_course{bottom:170px!important;}
    .sticky_course.active{bottom:72px!important;}

}
.search_bar_container {
    display: none;
}

p.color-text-base-darkest._0JEbf.fontType-h4._title_8lg0g_15
 {
    color: var(--Primary-Blue-600, #090093);
    font-size: 36px !important;
    font-style: normal;
    font-weight: 400;
    font-family: "Work Sans";
    line-height: 24px;
}
label.color-text-base-darkest._0JEbf.fontType-h5._RwO91 {
    font-family: "Work Sans";
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
}

._dcAwn.fontType-f5 {
    font-family: "Work Sans";
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
}

@media only screen and (max-width: 1024px) {
    p.color-text-base-darkest._0JEbf.fontType-h4._title_8lg0g_15 {
        font-size: 28px !important;
        line-height: 36px;
    }
}


/* Adjustments */

.showcase_section{display:none;}
.home .counters {margin-top: 64px;margin-bottom:64px;}



