/*
============================
IMPORT FONTS
============================
*/

@font-face {
    font-family: 'Open Sans';
    src: url('./assets/fonts/OpenSans-Bold.ttf');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('./assets/fonts/OpenSans-ExtraBold.ttf');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('./assets/fonts/OpenSans-Regular.ttf');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('./assets/fonts/OpenSans-Semibold.ttf');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('./assets/fonts/Montserrat-Regular.ttf');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('./assets/fonts/Montserrat-ExtraLightItalic.ttf');
    font-weight: 100;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('./assets/fonts/Montserrat-Italic.ttf');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('./assets/fonts/Montserrat-Bold.ttf');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('./assets/fonts/Montserrat-ExtraLight.ttf');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('./assets/fonts/Montserrat-LightItalic.ttf');
    font-weight: 200;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('./assets/fonts/Montserrat-Medium.ttf');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('./assets/fonts/Montserrat-MediumItalic.ttf');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('./assets/fonts/Montserrat-Black.ttf');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

/*
============================
GLOBAL
============================
*/

html {
    scroll-behavior: smooth;
}

main{
    margin: 0;
}

.page-layout{
    background: #fff;
}

a{
    text-decoration: none;
}

a:hover{
    text-decoration: underline;
}

.row>*{
    padding: 0 !important;
}

.odsui-top:before{
    font-family: "FontAwesome";
    content: "\f106" !important;
    cursor: pointer;
}

.odsui-bottom:before{
    font-family: "FontAwesome";
    content: "\f107" !important;
    cursor: pointer;
}

.odswidget-map-legend__picto{
    vertical-align: unset;
}

/*
============================
PAGE STYLES
============================
*/

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

.tab-bar .tab {
    padding: 15px 0;
    margin: 0 25px;
    color: #002664;
    font-size: 16px;
    font-weight: 500;
}

.tab-bar .active-tab {
    padding: 15px 0 11px 0;
    border-bottom: 4px solid #D7153A;
}

.overlay-container {
    width: 100%;
    height: 100%;
    background-image: linear-gradient(263.04deg, rgba(23, 25, 26, 0.7) 2.24%, rgba(23, 25, 26, 0.3) 99.15%), url('./assets/images/circular-economy-home-2.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.overlay-container h5 {
    color: #ffffff;
    font-size: 16px;
    margin: 0;
    font-weight: 500;
    margin-top: 9%;
}

.overlay-container h1 {
    color: #ffffff;
    font-family: 'Avenir Next';
    font-size: 72px;
    font-weight: 600;
    margin: 2% 0 5% 0;
}

.overlay-container .overlay-scroll {
    margin-bottom: 50px;
}

.overlay-container .overlay-scroll a {
    font-size: 16px;
    color: #ffffff;
    font-weight: 500;
    line-height: 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.overlay-container .overlay-scroll img {
    width: 30px;
    height: 30px;
    -webkit-animation: fade_move_down 2s ease-in-out infinite;
    -moz-animation:    fade_move_down 2s ease-in-out infinite;
    animation:         fade_move_down 2s ease-in-out infinite;
}

/*animated scroll arrow animation*/
@-webkit-keyframes fade_move_down {
    0%   { -webkit-transform:translate(0, 0px); opacity: 0;  }
    50%  { opacity: 1;  }
    100% { -webkit-transform:translate(0,15px) ; opacity: 0; }
}
@-moz-keyframes fade_move_down {
    0%   { -moz-transform:translate(0, 0px) ; opacity: 0;  }
    50%  { opacity: 1;  }
    100% { -moz-transform:translate(0,15px) ; opacity: 0; }
}
@keyframes fade_move_down {
    0%   { transform:translate(0, 0px) ; opacity: 0;  }
    50%  { opacity: 1;  }
    100% { transform:translate(0,15px) ; opacity: 0; }
}

.overlay-container .overlay-scroll a:hover {
    text-decoration: none;
}


/* Learn more */

.learn-more{
    padding: 100px 125px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.learn-more .ce-desc h5 {
    font-size: 16px;
    color: #D7153A;
    font-weight: 500;
    line-height: 22px;
    margin: 0;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.learn-more .ce-desc h4 {
    text-align: justify;
    font-size: 28px;
    color: #002664;
    position: relative;
    margin: 0;
}

.learn-more .ce-desc p {
    color: #000E24;
    text-align: left;
    padding-top: 20px;
    margin-left: 60px;
    border-top: 5px solid #D7153A;
}
.learn-more .ce-desc span {
    font-family: 'Montserrat';
    font-size: 20px;
    font-weight: 400;
    display: block;
    line-height: 24px;
}
.learn-more .ce-desc span:nth-of-type(2){
    padding-top: 20px;
}

/* CE Challenges */

.ce-challenges{
    padding: 100px 125px;
    width: 100%;
    background-color: #EDF6FE;
}

.ce-challenges .main-heading h4{
    color: #002664;
    font-size: 32px;
    font-weight: 600;
    line-height: 38px;
    margin-top: 0;
}

.ce-challenges .heading-container{
    display: flex;
    flex-wrap: wrap;
}

.ce-challenges h5 {
    margin: 0 0 25px 0;
}

.ce-challenges h3 {
    margin: 0;
}

.ce-challenges .definition p {
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    color: #000E24;
    text-align: justify;
    margin-top: 45px;
    margin-left: 60px;
}

.ce-challenges .definition h5,
.ce-challenges h5 {
    font-size: 16px;
    color: #D7153A;
    font-weight: 500;
    line-height: 22px;
    text-transform: uppercase;
}

.ce-challenges .hidden {
    opacity: 0;
}

/*.ce-challenges .challenge-heading{
display: flex;
justify-content: flex-start;
align-items: center;
}*/

.ce-challenges .key-challenges{
    margin-top: 30px;
}

.ce-challenges .benefit h4 {
    font-family: 'Avenir Next';
    font-weight: 600;
    font-size: 24px;
    line-height: 38px;
    color: #000E24;
    margin: 10px 0;
}

.ce-challenges .benefit p {
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    color: #000E24;
    text-align: justify;
    font-family: 'Montserrat';
}

.ce-challenges .benefit {
    padding: 0 40px !important;
}

.ce-challenges .benefit2 {
    position: relative;
}

/*.ce-challenges .benefit2 h4 {
margin-left: 15px;
}*/

.ce-challenges .benefit1 img {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    stroke: 2px;
}

.ce-challenges .benefit2 img {
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
    stroke: 2px;
}

.ce-challenges .benefit3 img {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    stroke: 2px;
}


/* CE Importance*/

.ce-importance {
    width: 100%;
    background-color: #EDF6FE;
    display: flex;
    padding: 100px 100px;
    margin-top: 80px;
    justify-content: space-evenly;
}

.ce-importance h5 {
    margin: 0 0 25px 0;
}

.ce-importance h4 {
    margin: 0 0 15px 0;
}

.ce-importance h3 {
    margin: 0;
}

.ce-importance .definition {
    margin-right: 95px;
}

.ce-importance .definition h3 {
    font-weight: 600;
    font-size: 32px;
    line-height: 42px;
    color: #000E24;
}

.ce-importance .definition h5,
.ce-importance h5 {
    font-size: 16px;
    color: #D7153A;
    font-weight: 500;
    line-height: 22px;
}

.ce-importance .hidden {
    opacity: 0;
}

.ce-importance .benefit {
    padding: 0 40px;
}

.ce-importance .benefit h4 {
    font-family: 'Avenir Next';
    font-weight: 600;
    font-size: 24px;
    line-height: 38px;
    color: #000E24;
}

.ce-importance .benefit p {
    font-weight: 300;
    font-size: 24px;
    line-height: 32px;
    color: #000E24;
    margin-bottom: 50px;
    text-align: justify;
}

.ce-importance .benefit2 {
    position: relative;
}

.ce-importance .benefit2 h4 {
    margin-left: 15px;
}

.ce-importance .benefit1 h4::before {
    content: "";
    display: inline-block;
    width: 50px;
    height: 50px;
    vertical-align: middle;
    margin-right: 15px;
    background-image: url('./assets/images/planet-icon.svg');
    background-repeat: no-repeat;
    stroke: 2px;
}

.ce-importance .benefit2 h4::before {
    content: "";
    position: absolute;
    left: 40px;
    width: 60px;
    height: 60px;
    vertical-align: middle;
    background-image: url('./assets/images/nsw-icon.svg');
    background-repeat: no-repeat;
    stroke: 2px;
}
.ce-importance .benefit2 h4 {
    margin-left: 75px;
}

.ce-importance .benefit3 h4::before {
    content: "";
    display: inline-block;
    width: 60px;
    height: 60px;
    vertical-align: middle;
    margin-right: 10px;
    background-image: url('./assets/images/co-icon.svg');
    background-repeat: no-repeat;
    stroke: 2px;
}

/* Navy Paragraph */

.navy-paragraph {
    background-color: #002664;
    padding: 100px 125px;
    display: flex;
    position: relative;
}

.navy-paragraph .navy-image img {
    width: 480px;
    height: 100%;
    position: absolute;
}

.navy-paragraph .navy-desc {
    margin-left: 540px;
}

.navy-paragraph .navy-desc p:first-child {
    padding: 20px 0;
    border-top: 2px solid #ffffff;
    margin-bottom: 0;
    font-weight: 600;
}

.navy-paragraph .navy-desc p {
    font-size: 20px;
    color: #ffffff;
    line-height: 32px;
    font-weight: 300;
    text-align: justify;
    font-family: 'Montserrat';
}

.solution-container {
    margin-top: 100px;
    padding: 100px 125px;
}

.solution-container .solution-top {
    display: flex;
}

.solution-container .solution-top h5 {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    color: #D7153A;
    text-transform: uppercase;
}

.solution-container .solution-top .hidden {
    opacity: 0;
}

.solution-container .solution-top .top-left-column h3 {
    margin-top: 24px;
    font-weight: 600;
    font-size: 32px;
    line-height: 42px;
    color: #002664;
    width: 50%;
}

.solution-container .solution-top .top-left-column h3 i{
    color: #d7153a;
}
.solution-container .solution-top .top-left-column h3 i:hover{
    cursor: pointer;
}

/*.solution-container .solution-top .top-right-column {
margin-left: 125px;
}*/

.solution-container .solution-top .top-right-column p {
    font-family: 'Avenir Next';
    padding: 20px 0;
    margin-top: 4px;
    border-top: 4px solid #D7153A;
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    color: #000E24;
    text-align: justify;
}

.solution-container .solution-top .top-right-column .explore-platform-btn{
    padding: 14px 40px;
    color: #fff;
    background: #D7153A;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-size: 16px;
}

.solution-container .solution-bottom {
    margin-top: 40px;
}

.solution-container .solution-bottom h4 {
    margin-bottom: 30px;
    color: #002664;
    font-size: 32px;
    font-weight: 600;
    line-height: 38px;
}

.solution-container .solution-bottom .bottom-goals {
    margin-top: 25px;
    display: flex;
    justify-content: space-between;
}

.solution-container .solution-bottom .bottom-goals .goals {
    width: 48%;
    background-color: #002664;
    padding: 24px 32px;
    border-radius: 6px;
}

.solution-container .solution-bottom .bottom-goals .goals .goal-number{
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #EEF2F7;
    color: #002664;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Montserrat';
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 20px;
}

.solution-container .solution-bottom .bottom-goals .goals p {
    color: #ffffff;
    font-size: 20px;
    line-height: 28px;
    font-weight: 300;
}

.customer-container {
    background-color: #EDF6FE;
    padding: 100px 125px;
}

.customer-container h2 {
    font-weight: 600;
    font-size: 40px;
    line-height: 44px;
    color: #000E24;
    text-align: center;
}

.customer-container .customer-box {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
}

.customer-container .customer-box .box {
    width: 48%;
    background-color: #FFFFFF;
    padding: 40px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 6px;
    border: 1px solid #D5DAE1;
}

.customer-container .customer-box .box img {
    width: 105px;
    height: 108px;
}

.customer-container .customer-box .box h4 {
    margin: 46px 0 16px 0;
    font-weight: 600;
    font-size: 28px;
    line-height: 38px;
    color: #000E24;
    text-align: center;
}

.customer-container .customer-box .box p {
    font-weight: 300;
    font-size: 20px;
    line-height: 28px;
    text-align: center;
    color: #000E24;
    margin-bottom: 40px;
}

.customer-container .customer-box .box a {
    padding: 14px 48px;
    background-color: #002664;
    text-align: center;
    border-radius: 4px;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    color: #ffffff;
}

.customer-container .customer-box .box a:hover {
    text-decoration: none;
}

.steps-container {
    padding: 100px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #ffffff;
}

.steps-container h5 {
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    color: #D7153A;
    text-align: center;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin: 0 0 16px 0;
}

.steps-container h2 {
    margin: 0 0 40px 0;
    font-weight: 600;
    font-size: 40px;
    line-height: 44px;
    text-align: center;
    color: #000E24;
}

.steps-container p {
    font-weight: 300;
    font-size: 24px;
    line-height: 32px;
    text-align: center;
    color: #000E24;
    margin-bottom: 45px;
}

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

.circles .step {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.circles .step:first-child .step-info h4 {
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    color: #D7153A;
    text-align: left;

}

.circles .step .step-info h4 {
    font-weight: 300;
    font-size: 24px;
    line-height: 32px;
    color: #000E24;
    margin-bottom: 4px;
}

.circles .step .step-info p {
    font-family: 'Avenir Next';
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: #747981;
    text-align: left;
}

.circles .step .step-info {
    margin-left: 25px;
}

.circles .step h4 {
    margin: 0;
}

.circles .step p {
    margin: 0;
}

.circles .step .circle {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background-color: #DDE9F3;
    margin: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1000;
}

.circles .step:first-child .circle {
    background-color: #F5D2D9;
}

.circles .step:first-child .circle span {
    background-color: #ffffff;
    color: #D7153A;
}

.circles .step:not(:last-child) .circle::after {
    z-index: -1;
    content: "";
    position: absolute;
    top: 147%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0px;
    height: 71px;
    border-left: 12px solid #DDE9F3;
}

.circles .step:not(:last-child) .circle::before {
    z-index: 1;
    content: "";
    position: absolute;
    top: 125%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0px;
    height: 80px;
    border-left: 1px dashed rgba(26, 79, 123, 0.5);
    -webkit-transform: scale(1.5); 
    transform: scale(1.5);
}

.circles .step .circle span {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-color: #002664;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Avenir Next';
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    text-align: center;
    color: #FFFFFF;
}

/* How can we use */

.how-can-we{
    padding: 100px 125px;
    width: 100%;
    background-color: #EDF6FE;
}

.how-can-we .main-heading h4{
    color: #002664;
    font-size: 32px;
    font-weight: 600;
    line-height: 38px;
    margin-top: 0;
    margin-bottom: 42px;
    text-align: center;
}

.how-can-we .heading-container{
    padding: 0 30px 0;
}

.how-can-we h5 {
    margin: 0 0 25px 0;
}

.how-can-we .definition {
    width: 65%;
}

.how-can-we .definition p {
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    color: #000E24;
    text-align: justify;
}

.how-can-we .definition h5,
.how-can-we h5 {
    font-size: 18px;
    color: #D7153A;
    font-weight: 500;
    line-height: 22px;
}

.how-can-we .hidden {
    opacity: 0;
}

.how-can-we .benefit {
    padding: 40px;
    border: 1px solid #D5DAE1;
    background: #fff;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    /*justify-content: space-between;*/
    height: 600px;
}

.how-can-we .challenge-heading{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.how-can-we .benefit h4 {
    font-family: 'Avenir Next';
    font-weight: 600;
    font-size: 24px;
    line-height: 38px;
    color: #000E24;
    margin-bottom: 25px;
    margin-top: 25px;
    text-align: center;
}

.how-can-we .benefit p,
.how-can-we .benefit ul {
    font-family: 'Montserrat';
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    color: #000E24;
    text-align: left;
    margin-bottom: 0;
}
.how-can-we .benefit ul{
    margin-bottom: 20px;
    margin-top: 20px;
}

.how-can-we .benefit ul li{
    font-family: 'Montserrat';
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #000E24;
    text-align: left;
}

.how-can-we .benefit ul{
    padding-left: 20px;
}

.how-can-we .benefit2 {
    position: relative;
}

/*.how-can-we .benefit2 h4 {
margin-left: 15px;
}*/

.how-can-we .benefit1 img {
    width: 100px;
    height: 100px;
    display: inline-block;
    vertical-align: middle;
    stroke: 2px;
}

.how-can-we .benefit2 img {
    width: 100px;
    height: 100px;
    display: inline-block;
    vertical-align: middle;
    stroke: 2px;
}

.how-can-we .benefit .get-started-btn{
    padding: 14px 40px;
    color: #fff;
    background: #002664;
    border: none;
    border-radius: 4px;
    width: 50%;
    text-decoration: none;
    font-size: 16px;
    text-align: center;
}

@media (max-width: 1470px){
    .how-can-we .benefit{
        height: 700px;
    }
}
@media (max-width: 1078px){
    .how-can-we .benefit{
        height: 750px;
    }
    .how-can-we .benefit .get-started-btn{
        width: 100%;
    }
}


@media (max-width: 1195px){
    .ce-challenges .definition{
        width: 100%;
    }
    .ce-desc p{
        width: 100%;
    }
    .learn-more{
        padding: 100px;
    }
    .ce-challenges{
        padding: 100px;
    }
    .ce-importance, .navy-paragraph, .solution-container, .customer-container{
        padding: 100px;
    }
    .how-can-we{
        padding: 100px;
    }
    .ce-challenges .main-heading,
    .ce-challenges .definition{
        width: 100%;
    }
    .ce-challenges .definition p{
        margin: 0;
    }
    .solution-container{
        margin: 0;
    }
    .solution-container .solution-top .top-left-column,
    .solution-container .solution-top .top-right-column{
        width: 100%;
    }
    .solution-container .solution-top .top-left-column h3{
        width: 100%;
    }
    .navy-paragraph .navy-image img{
        height: 550px;
    }
}

@media (min-width: 991px) and (max-width:1195px){
    .ce-importance {
        flex-direction: column;
    }
    .navy-paragraph {
        width: 100%;
    }
    .navy-paragraph .navy-desc {
        margin-left: 0;
        margin-top: 645px;
    }
    .solution-container .solution-top {
        flex-direction: column;
    }
    .solution-container .solution-top .top-right-column {
        margin-left: 0px;
    }
    .solution-container .solution-top .top-right-column br {
        display: none;
    }
}

@media (max-width: 991px){
    .learn-more{
        padding: 50px 70px;
    }
    .learn-more .ce-desc p,.ce-challenges .definition p{
        margin-top: 20px;
        margin-left: 0;
    }
    .ce-challenges .main-heading h4{
        margin-bottom: 0;
    }
    .ce-challenges{
        padding: 50px 70px;
    }
    .ce-importance, .navy-paragraph, .solution-container, .customer-container{
        padding: 50px 70px;
    }
    .how-can-we{
        padding: 50px 70px;
    }
    .overlay-container h1{
        font-size: 48px;
    }
    .ce-challenges .benefit{
        padding: 20px;
    }
    .solution-container{
        margin: 0;
    }
    .how-can-we .benefit{
        margin-bottom: 20px;
    }
    .how-can-we .benefit{
        height: 100%;
    }
}

@media (max-width: 768px){
    .learn-more{
        padding: 30px 30px;
    }
    .ce-challenges{
        padding: 30px 30px;
    }
    .ce-importance, .navy-paragraph, .solution-container, .customer-container{
        padding: 30px 30px;
    }
    .how-can-we{
        padding: 30px 30px;
    }
    .ce-challenges{
        margin-top: 40px;
    }
    .overlay-container h1{
        font-size: 48px;
    }
}

@media (min-width: 768px) and (max-width: 991px){
    .ce-importance {
        flex-direction: column;
    }
    .navy-paragraph {
        width: 100%;
    }
    .navy-paragraph .navy-desc {
        margin-left: 0;
        margin-top: 645px;
    }
    .solution-container .solution-top {
        flex-direction: column;
    }
    .solution-container .solution-top .top-right-column {
        margin-left: 0px;
    }
    .solution-container .solution-top .top-right-column br {
        display: none;
    }

}

@media (min-width: 576px) and (max-width: 767px){
    .ce-importance {
        flex-direction: column;
    }
    .navy-paragraph {
        width: 100%;
    }
    .navy-paragraph .navy-desc {
        margin-left: 0;
        margin-top: 645px;
    }
    .solution-container .solution-top {
        flex-direction: column;
    }
    .solution-container .solution-top .top-right-column {
        margin-left: 0px;
    }
    .solution-container .solution-top .top-right-column br {
        display: none;
    }
    .solution-container .solution-bottom .bottom-goals {
        flex-direction: column;
    }

    .solution-container .solution-bottom .bottom-goals .goals {
        width: 100%;
    }
    .solution-container .solution-bottom .bottom-goals .goals:first-child {
        margin-bottom: 25px;
    }

    .customer-container .customer-box {
        flex-direction: column;
    }

    .customer-container .customer-box .box {
        width: 100%;
    }
    .customer-container .customer-box .box:first-child {
        margin-bottom: 25px;
    }
}
@media (min-width: 150px) and (max-width: 575px){
    .ce-importance {
        flex-direction: column;
    }
    .navy-paragraph {
        width: 100%;
    }
    .navy-paragraph .navy-desc {
        margin-left: 0;
        margin-top: 645px;
    }
    .solution-container .solution-top {
        flex-direction: column;
    }
    .solution-container .solution-top .top-right-column {
        margin-left: 0px;
    }
    .solution-container .solution-top .top-right-column br {
        display: none;
    }
    .solution-container .solution-bottom .bottom-goals {
        flex-direction: column;
    }

    .solution-container .solution-bottom .bottom-goals .goals {
        width: 100%;
    }
    .solution-container .solution-bottom .bottom-goals .goals:first-child {
        margin-bottom: 25px;
    }

    .customer-container .customer-box {
        flex-direction: column;
    }

    .customer-container .customer-box .box {
        width: 100%;
    }
    .customer-container .customer-box .box:first-child {
        margin-bottom: 25px;
    }
    .ce-importance .definition {
        margin-right: 0;
    }
    .tab-bar .tab {
        font-size: 15px;
    }
    .navy-paragraph .navy-image img {
        width: 370px;
        height: 493px;
    }
    .ce-importance .benefit h4 {
        font-size: 25px;
    }
    .ce-desc h4 {
        font-size: 27px;
    }
    .ce-importance .definition h3 {
        font-size: 30px;
    }
    .ce-importance .benefit p{
        font-size: 22px;
    }
    .ce-desc p {
        font-size: 20px;
        line-height: 30px;
    }
    .circles .step .step-info br {
        display: none;
    }

    .circles .step .step-info {
        width: 60%;
    }
    .circles .step:first-child .step-info h4,
    .circles .step .step-info h4 {
        font-size: 22px;
    }
    .circles .step:not(:last-child) .circle::after {
        top: 189%;
        height: 133px;
    }
    .overlay-container h5 {
        margin-top: 30%;
    }
    .steps-container {
        padding: 100px 0 50px;
    }
    .solution-container {
        margin-top: 0;
    }
}

/*
============================
PORTAL HEADER
============================
*/

.ods-responsive-menu-collapsible, .ods-responsive-menu-collapsible__container, .ods-responsive-menu-collapsible__content {
    height: 100%;
    width: 100%;
}

.ods-responsive-menu-collapsible__toggle {
    display: none;
    text-align: right;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    margin-bottom: 20px;
}

.ods-responsive-menu-collapsible__toggle-button {
    font-size: 1.33rem;
    color: #263891;
    background-color: transparent;
    border: none;
}

.branding-header {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ods-front-header__portal-brand {
    top: 10px;
    height: 150px;
    display: flex;
    align-items: center;
    position: relative;
}

.ods-front-header__portal-brand .ods-front-header__logo {
    padding-left: 45px;
    /* width: 74px; */
    width: 180px;
    height: 65px;
    vertical-align: middle;
    line-height: 40px;
    vertical-align: bottom;
}

.ods-front-header__portal-brand__text {
    color: #263891;
    margin-left: 7px;
    line-height: 24px;
    margin-left: 32px;
    font-weight: 600;
    font-size: 23px;
    text-decoration: none;
    font-family: 'Montserrat';
}

.ods-front-header__menu {
    background-color: #ebebeb;
    margin: 0px;
    padding: 0;
    justify-content: center;
    list-style-type: none;
    display: flex;
    justify-content: center;
    vertical-align: top;
}

.ods-front-header__menu-item {
    display: inline-block;
}

.ods-front-header__menu .ods-front-header__menu-item-link {
    color: #22272b;
    font-weight: 600;
    font-size: 16px;
    padding: 0 45px;
    opacity: 1;
    text-align: center;
    font-family: 'Montserrat';
}

.ods-front-header__menu-item-link {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 400;
    display: inline-block;
    padding: 0 25px;
    line-height: 55px;
    color: #263891;
    opacity: .5;
}

.ods-front-header__management-menu {
    position: absolute;
    top: 0;
    right: 20px;
    margin: 0;
    padding: 0;
    list-style-type: none;
    line-height: 55px;
}

.ods-front-header__management-menu-item--backoffice {
    background-color: #002664;
    padding: .33rem .67rem;
    border-radius: 3px;
    font-size: 14px;
}

.ods-front-header__management-menu-item {
    display: inline-block;
    margin: 0 10px;
    line-height: normal;
}

.ods-front-header__management-menu .ods-front-header__management-menu-item .ods-front-header__management-menu-item-link {
    color: #002664;
    text-decoration: none;
}

.ods-front-header__management-menu-item--backoffice .ods-front-header__management-menu-item-link {
    color: #ffffff !important;
}

.ods-front-header__management-menu-item-link {
    padding-bottom: .33rem;
    color: #263891;
}

.ods-front-header__management-menu-item {
    display: inline-block;
    margin: 0 10px;
    line-height: normal;
}

.UCO47WGQVJnvQnwWmnTq{
    align-items: center;
    display: flex;
    flex-direction: row;
    gap: 6px;
}

.DMiwiAGsRM1iRNtAExCB {
    font-size: 1rem;
    line-height: 1.3;
}

.rods-user-avatar {
    align-items: center;
    display: inline-flex;
    font-size: 14px;
    color: #002664;
}

.rods-user-avatar__icon-container {
    height: 28px;
    margin-right: .5rem;
    position: relative;
    width: 28px;
}

.rods-avatar--color-0 {
    background-color: #e2cbf5;
    color: #592485;
}

.rods-avatar--100 {
    font-size: 12px;
    height: 28px;
    width: 28px;
}
.rods-avatar {
    align-items: center;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    line-height: 20px;
    text-transform: uppercase;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.rods-tooltip-wrapper__btn {
    display: inline-block;
}

.ods-front-header__management-menu-item a.rods-button-icon {
    background: #002664 !important;
}
.rods-button-icon.rods-button-icon--variant-tertiary {
    background-color: transparent;
    border: 1px solid transparent;
    color: var(--front-office__domain-style__button__tertiary__default__text, #142e7b);
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.rods-button-icon.rods-button-icon--size-100 {
    border: 1px solid transparent;
    border-radius: var(--front-office__domain-style__button__borderRadius--100, 14px);
    border-radius: var(--front-office__domain-style__button__borderRadius--icon, 50%);
    font-size: .8571428571rem;
    height: 28px;
    line-height: 1.4;
    line-height: 26px;
    padding: 0;
    width: 28px;
}
.ybl7ANO1XeIyJ5nmBDM3 {
    border: 1px solid transparent;
    border-radius: var(--front-office__domain-style__button__borderRadius--100, 14px);
    border-radius: 50%;
    font-size: .8571428571rem;
    height: 28px;
    line-height: 1.4;
    line-height: 26px;
    min-width: 28px;
    padding: 0;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    width: 28px;
}

.rods-button-icon {
    align-items: center;
    display: inline-flex;
    justify-content: center;
    vertical-align: -.125em;
    height: 1em;
     width: 1em;
}
.rods-button {
    background-color: transparent;
    border: none;
    color: inherit;
    cursor: default;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    white-space: nowrap;
}

.ods-front-header__management-menu-item a.rods-button-icon .rods-icon svg{
    fill: #fff !important;
    height: 16px;
    vertical-align: sub;
}

.ods-front-header__menu .ods-front-header__menu-item-link:hover{
    background: #0085b333;
    text-decoration: none;
}

.ods-front-header__menu-item-link--active{
    background: #0085b333;
}

/*
============================
PORTAL FOOTER
============================
*/

.ods-front-footer{
    height: 150px;
    width: 100%;
    background-color: #22272b;
    text-align: left;
    padding: 16px 0 24px;
    clear: both;
}

.ods-front-footer p {
    color: #ffffff;
    margin: 15px 0 30px 160px;
    font-size: 12px;
    font-family: 'Montserrat';
}

.ods-front-footer p {
    color: #ffffff;
    margin: 15px 0 30px 160px;
    font-size: 12px;
    font-family: 'Montserrat';
}
