/*
Theme Name: Beaver Builder Child Theme
Theme URI: http://www.wpbeaverbuilder.com
Version: 1.0
Description: An example child theme that can be used as a starting point for custom development.
Author: The Beaver Builder Team
Author URI: http://www.fastlinemedia.com
template: bb-theme
*/

/* Add your custom styles here... */ 



/********************/
/* Global Variables */
/********************/

@font-face {
    font-family: Sofia Pro;
    src: url(../fonts/sofiapro-regular.otf);
    font-weight: 400;
}

@font-face {
    font-family: Sofia Pro;
    src: url(../fonts/sofiapro-semibold.otf);
    font-weight: 600;
}

@font-face {
    font-family: Sofia Pro;
    src: url(../fonts/sofiapro-bold.otf);
    font-weight: 700;
}

:root {

    /* COLORS */
    --gray-dark: #727271;
    --gray-light: #C1BFBB;
    --gray-lighter: #F5F5F5;
    --blue-light: #428bca;
    --pink: #FD85D1;
    
    --navy: #060246;
    --blue: #2C409B;
    --gray: #F7F7F7;
    --orange: #F8971D;
    --baby-blue: #86C2FF;
    --black: #000000;
    --white: #FFFFFF;

    /* FONTS */
    --sofia-pro: 'Sofia Pro', sans-serif; 
    /* ICONS */
    --arrow-white: url(/wp-content/uploads/Button-Arrow_White.svg);
    --arrow-navy: url(/wp-content/uploads/arrow-navy.svg);
    --arrow-black: url(/wp-content/uploads/Button-Arrow_Black.svg);
    --arrow-orange: url(/wp-content/uploads/Link-Arrow-Orange.svg);

}



/**********************/
/* Framework Settings */
/**********************/
html, body { 
    overflow-x: hidden;
    font-size: 20px !important;
    color: var(--black);
}

.fl-row:not(.nopadding) .fl-row-content-wrap >.fl-row-content {
    padding-left: 70px;
    padding-right: 70px;
}

body:not(.fl-builder-edit) .fl-row:not(.nopadding) {
    overflow: hidden;
}

.fl-builder-edit .fl-row {z-index:0}
.fl-builder-edit .fl-row:first-child {margin-top:32px;}



/**************/
/* Typography */
/**************/
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    margin-top: 0px;
    margin-bottom: 0px;
}

h1, .h1, .h1 p, .h1 .fl-heading {
    font-family: var(--sofia-pro);
    font-weight: 600;
    font-size: 60px;
    font-size: 3rem;
    line-height: 60px;
    line-height: 3rem;
}

h2, .h2, .h2 p, .h2 .fl-heading {
    font-family: var(--sofia-pro);
    font-weight: 600;
    font-size: 50px;
    font-size: 2.5rem;
    line-height: 55px;
    line-height: 2.75rem;
}

h3, .h3, .h3 p, .h3 .fl-heading {
    font-family: var(--sofia-pro);
    font-weight: 600;
    font-size: 34px;
    font-size: 1.7rem;
    line-height: 34px;
    line-height: 1.7rem;
}

h4, .h4, .h4 p, .h4 .fl-heading {
    font-family: var(--sofia-pro);
    font-weight: 600;
    font-size: 26px;
    font-size: 1.3rem;
    line-height: 30px;
    line-height: 1.5rem;
}

h5, .h5, .h5 p, .h5 .fl-heading {
    font-family: var(--sofia-pro);
    font-weight: 600;
    font-size: 22px;
    font-size: 1.1rem;
    line-height: 28px;
    line-height: 1.4rem;
    letter-spacing: 0.05em;
}

p, .p, ul, ol {
    font-family: var(--sofia-pro);
    font-weight: 400;
    font-size: 20px;
    font-size: 1rem;
    line-height: 30px;
    line-height: 1.5rem;
}

.small, p.small, p .small, .small p,
.small ol, ol.small, .small ul, ul.small {
    font-size: 17px;
    font-size: 0.85rem;
    line-height: 25px;
    line-height: 1.25rem;
}

p a:not(.arrowlink, .btn-round, .btn-square) {
    color: inherit;
    position: relative;
    text-decoration: none;
    background-image: linear-gradient(var(--orange), var(--orange));
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: 100% 1px;
    transition: background-size 250ms ease-in-out;
    display:inline;
}
.fl-accordion-content p a:not(.arrowlink, .btn-round, .btn-square){
    background-image: linear-gradient(var(--orange), var(--orange));
}

p a.white:not(.arrowlink, .btn-round, .btn-square) {
    background-image: linear-gradient(var(--white), var(--white));
}

/* .bluebgpar p, p.bluebgpar {background:var(--blue)} */

ul, ol {
    padding-inline-start: 21px;
}

main .fl-rich-text ul {
  list-style: none;
}

main .fl-rich-text ul li::before {
  content: "\2022";
  color: var(--orange);
  font-weight: bold;
  display: inline-block; 
  width: 1em;
  margin-left: -1em;
}

main .fl-rich-text ul li:not(:last-of-type),
main .fl-rich-text ol li:not(:last-of-type) {
    margin-bottom: 17px;
}

/* .fl-rich-text a, */
a.arrowlink,
.fl-module-button.arrowlink a.fl-button {
  text-decoration: none;
  background-image: linear-gradient(var(--orange), var(--orange));
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 100% 2px;
  transition: background-size 250ms ease-in-out;
  display:inline;
  border-radius: 0!important;
}



p a:not(.arrowlink, .btn-round, .btn-square):hover {
    animation: 0.25s underline1;
}



@keyframes underline {
    from {background-size: 0% 2px;}
    to {background-size: 100% 2px;}
}

@keyframes underline1 {
    from {background-size: 0% 1px;}
    to {background-size: 100% 1px;}
}

.arrow_bounce {
    animation: arrow_bounce 3s ease infinite;
}
@keyframes arrow_bounce {
    0% {transform: translateY(20px);}
    30% {transform: translateY(20px);}
    40% {transform: translateY(0px);}
    50% {transform: translateY(20px);}
    60% {transform: translateY(0px);}
    70% {transform: translateY(20px);}
    100% {transform: translateY(20px);}
  }







/*******************************/
/* Custom stylesfor BB Modules */
/*******************************/

    /* deactivate accordion outines */
    .fl-accordion .fl-accordion-button-label {
        outline: none;
    }

    .fl-accordion .fl-accordion-button-icon {
        outline: none;
    }

    .fl-accordion-item {
        overflow: initial;
    }







/*
    ========================
             ASSETS
    ========================
*/



/* Accessibility: External link new window */
a.acc_external_link, .acc_external_link a {position:relative;}
a.acc_external_link .acc_external, .acc_external_link a .acc_external, a .acc_external, .acc_external {
    position: fixed;
    background: var(--white);
    color: var(--blue) !important;
    padding: 11px 20px 13px;
    font-size: 9px;
    font-size: 0.45rem;
    font-weight: bold;
    line-height: 1;
    font-family: var(--font-base);
    transform: scale(1.07) translate(60px,10px);
    visibility: hidden;
    /* text-transform: uppercase; */
    opacity: 0;
    left: -99999px;
    z-index: 999;
    margin: 6px;
    border-radius: 34px;
    text-align: center;
    font-style: normal;
}

a.acc_external_link:hover .acc_external, 
.acc_external_link a:hover .acc_external,
a:hover .acc_external
{
    visibility: visible;
    opacity: 1;
    
}

a.acc_external_link:focus .acc_external, 
.acc_external_link a:focus .acc_external
{
    top:10px !important;
    left:0 !important;
    position:absolute;
    visibility: visible;
    opacity: 1;
    padding:0 !important;
    
}

a .acc_external_icon
{
    position: relative;
    top: 1px;
    margin-left: 5px;
}


.fa-solid.fa-arrow-up-long:before {
    content: "\f176";
    font-family: "Font Awesome 5 Pro";
    font-style: initial;
    display: inline-block;
    transform: rotate(45deg) translate(2px, -6px);
    background: var(--white);
    border-radius: 100px;
    width: 15px;
    height: 15px;
    font-size: 10px;
    font-size: 0.5rem;
    color: var(--blue);
    line-height: 0;
    padding: 7px 1px 3px 5px;
}

.fa-solid.fa-arrow-up-long.background_blue:before {background:var(--blue)}
.fa-solid.fa-arrow-up-long.color_white:before {color:var(--white)}




/*============
    BUTTONS
=============*/

/*
    Classes are added to the button modules:
        .btn-round
        .blue           .orange
        .arrowlink      .noarrow
*/

/* GLOBAL STYLES */
.fl-builder-content .fl-module-button a.fl-button,
.fl-builder-content .fl-module-button-group a.fl-button,
.fl-builder-content div.wpforms-container-full button.wpforms-submit,
.fl-builder-content a.arrowlink {
    font-family: var(--sofia-pro) !important;
    font-weight: 900;
    font-size: 22px;
    font-size: 1.1rem;
    line-height: 30px;
    line-height: 1.5rem;
}

.fl-module-button:not(.noarrow) a.fl-button::after,
.fl-module-button-group.arrowlink a.fl-button::after,
a.arrowlink::after,
div.wpforms-container-full button.wpforms-submit:not(.noarrow)::after {
    position: absolute;
    width: 16.46px;
    padding-left: 12px;
    transition: all .25s ease;
    transform: translate(0px, -2px);
}

.fl-module-button:not(.noarrow) a.fl-button:hover::after,
.fl-module-button-group.arrowlink a.fl-button:hover::after,
a.arrowlink:hover::after,
div.wpforms-container-full button.wpforms-submit:not(.noarrow):hover::after {
    transform: translate(10px, -2px);
}

.fl-module-button a.fl-button::after,
.fl-module-button a.fl-button,
.fl-module-button a.fl-button span,
a.arrowlink,
div.wpforms-container-full button.wpforms-submit {
    transition: all .25s ease;
}


/* BORDERED BUTTONS */
.fl-module-button:not(.arrowlink) a.fl-button,
div.wpforms-container-full .wpforms-form button.wpforms-submit,
footer div.wpforms-container-full .wpforms-form button.wpforms-submit {
    padding: 27px 60px 27px 35px;
    border-radius: 100px;
}

.fl-module-button:not(.arrowlink) a.fl-button:hover,
div.wpforms-container-full button.wpforms-submit:hover {
    transform: scale(1.05);
}

/* bordered button colors */
.fl-module-button.blue a.fl-button span,
.fl-module-button-group.blue a.fl-button span {
    color: var(--white);
}

.fl-module-button.orange a.fl-button span,
.fl-module-button.blue a.fl-button:hover span,
.fl-module-button.orange a.fl-button:hover span,
.fl-module-button-group.orange a.fl-button span,
.fl-module-button-group.blue a.fl-button:hover span,
.fl-module-button-group.orange a.fl-button:hover span,
div.wpforms-container-full button.wpforms-submit,
footer div.wpforms-container-full .wpforms-form button[type=submit] {
    color: var(--black);
}

.fl-module-button.orange a.fl-button,
.fl-module-button-group.orange a.fl-button,
body div.wpforms-container-full .wpforms-form button[type=submit],
footer div.wpforms-container-full .wpforms-form button[type=submit] {
    background-color: var(--orange);
    border: 2px solid var(--orange);
}



.fl-module-button.blue a.fl-button,
.fl-module-button-group.blue a.fl-button {
    background-color: var(--blue);
    border: 2px solid var(--blue);
}

.fl-module-button-group.blue a.fl-button:hover,
.fl-module-button.blue a.fl-button:hover {
    background-color: white;
    border: 2px solid var(--blue);
}

.fl-module-button-group.arrowlink.white a.fl-button::after,
.fl-module-button-group.arrowlink.white a.fl-button:hover::after {
    content: var(--arrow-orange);
}

a.arrowlink::after,
.arrowlink a::after,
.fl-module-button.orange a.fl-button::after,
.fl-module-button.blue a.fl-button:hover::after,
.fl-module-button.orange a.fl-button:hover::after,
.fl-module-button-group.orange a.fl-button::after,
.fl-module-button-group.blue a.fl-button:hover::after,
.fl-module-button-group.orange a.fl-button:hover::after,
body div.wpforms-container-full .wpforms-form button[type=submit]::after {
    content: var(--arrow-black);
}

.fl-module-button.blue a.fl-button::after,
.fl-module-button-group.blue a.fl-button::after,
footer div.wpforms-container-full .wpforms-form button[type=submit]:hover::after {
    content: var(--arrow-white);
}

a.arrowlink::after,
.arrowlink a::after,
.fl-module-button.arrowlink a.fl-button::after,
.fl-module-button.arrowlink a.fl-button:hover::after,
.fl-module-button-group.arrowlink a.fl-button::after,
.fl-module-button-group.arrowlink a.fl-button:hover::after {
    content: var(--arrow-navy);
}


/* UNDERLINED BUTTONS */
.fl-module-button.arrowlink a.fl-button span,
.arrowlink {
    color: var(--navy);
}


.fl-module-button.arrowlink.white a.fl-button span,
.arrowlink.white {
    color: var(--white);
}
.fl-module-button.arrowlink.white a.fl-button::after {
    content:var(--arrow-white)
}

.fl-module-button.arrowlink a.fl-button,
.fl-module-button-group.arrowlink a.fl-button,
a.arrowlink {
    padding: 0 36px 3px 0;
    background-color: transparent;
    border: none;
}

.fl-module-button-group.arrowlink .fl-button-group:not(.fl-button-group-layout-vertical) .fl-button-group-button:not(:first-of-type) {
    transform: translateX(-18.46px);
}

a.arrowlink {
    margin-left: -18.46px;
}

.fl-module-button.arrowlink a.fl-button::after,
.fl-module-button-group.arrowlink a.fl-button::after,
a.arrowlink::after {
    position: absolute;
}

.fl-module-button-group.arrowlink .fl-button-group-buttons {
    justify-content: space-between;
}

.fl-builder-content .arrowlink .fl-button-group:not(.fl-button-group-layout-vertical) .fl-button-group-buttons .fl-button-group-button {
    padding: 0px;
}

/* button underline decoration */
.fl-module-button-group.arrowlink a,
.fl-module-button.arrowlink a,
a.arrowlink {
    position: relative;
    text-decoration: none;
}

/*============
    IMAGES
=============*/
.fl-post .mediumheight img {
    max-height: 460px;
    height: 30vw;
    object-fit: cover;
    object-position: center bottom;
}





/********************/
/* ROWS AND MODULES */
/********************/


/**************/
/* HERO AREAS */
/**************/

.newmask_wrapper .fl-row-content-wrap  {
        background-position: 100% calc(100% - 260px);
    background-attachment: scroll;
    background-size: 51%;
}
.newmask_wrapper .fl-row-content-wrap >.fl-row-content {
    position:relative;
    z-index: 2;
}

.hero_wave.home .fl-row-content-wrap {background-size:0 !important}
.hero_wave.generic .fl-row-content-wrap {background-size:0 !important}
.poop1 {
    content: "";
    width: 50%;
    height: calc(100% - 260px);
    position: absolute;
    top: 0;
    right: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 100%;
    z-index: 1;
}

.poop2 {
    content: "";
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right center;
    z-index: 1;
}

.newmask_wrapper .mask_img{
 content: "";
    background-image: url(/wp-content/uploads/newmask6.svg);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0;
    z-index: 1;
    background-position: 50%;
    background-repeat: no-repeat;
}



/* body.fl-builder-edit .hero_wave .mask_img {    opacity: 0.5;} */
body:not(.fl-builder-edit) .hero_wave {overflow:hidden;    }
.hero_wave {
    position: relative;
    background-position: 100% 0;
}
.hero_wave >.fl-row-content-wrap {position:relative}
.hero_wave >.fl-row-content-wrap >.fl-row-content {position:relative;z-index:1}
.hero_wave .mask_img {
    position: absolute;
    top: -135px;
    top: -134px;
    left: calc(calc(100vw / 2) - 2500px);
    z-index: 1;
    max-width: initial;
}


.hero_wave.bgsize10 >.fl-row-content-wrap {background-size: 10%;}
.hero_wave.bgsize15 >.fl-row-content-wrap {background-size: 15%;}
.hero_wave.bgsize20 >.fl-row-content-wrap {background-size: 20%;}
.hero_wave.bgsize25 >.fl-row-content-wrap {background-size: 25%;}
.hero_wave.bgsize30 >.fl-row-content-wrap {background-size: 30%;}
.hero_wave.bgsize35 >.fl-row-content-wrap {background-size: 35%;}
.hero_wave.bgsize40 >.fl-row-content-wrap {background-size: 40%;}
.hero_wave.bgsize45 >.fl-row-content-wrap {background-size: 45%;}
.hero_wave.bgsize50 >.fl-row-content-wrap {background-size: 50%;}
.hero_wave.bgsize55 >.fl-row-content-wrap {background-size: 55%;}
.hero_wave.bgsize60 >.fl-row-content-wrap {background-size: 60%;}
.hero_wave.bgsize65 >.fl-row-content-wrap {background-size: 65%;}
.hero_wave.bgsize70 >.fl-row-content-wrap {background-size: 70%;}
.hero_wave.bgsize75 >.fl-row-content-wrap {background-size: 75%;}
.hero_wave.bgsize80 >.fl-row-content-wrap {background-size: 80%;}
.hero_wave.bgsize85 >.fl-row-content-wrap {background-size: 85%;}
.hero_wave.bgsize90 >.fl-row-content-wrap {background-size: 90%;}
.hero_wave.bgsize95 >.fl-row-content-wrap {background-size: 95%;}
.hero_wave.bgsize100 >.fl-row-content-wrap {background-size: 100%;}

.hero_map_bigdesktop img {max-width:calc(1920px / 2) !important;}


.uabb-hspot-sonar g:nth-child(2) {display:none}
.uabb-hspot-sonar g:nth-child(3) {display:none}
.uabb-hspot-sonar g:nth-child(4) {display:none}
.uabb-hotspot-item:nth-child(1) .uabb-hspot-sonar g {animation-delay:0}
.uabb-hotspot-item:nth-child(2) .uabb-hspot-sonar g {animation-delay:1s}
.uabb-hotspot-item:nth-child(3) .uabb-hspot-sonar g {animation-delay:2s}
.uabb-hotspot-item:nth-child(4) .uabb-hspot-sonar g {animation-delay:3s}
.uabb-hotspot-item:nth-child(5) .uabb-hspot-sonar g {animation-delay:4s}
.uabb-hotspot-item:nth-child(6) .uabb-hspot-sonar g {animation-delay:5s}
.uabb-hotspot-item:nth-child(7) .uabb-hspot-sonar g {animation-delay:6s}
.uabb-hotspot-item:nth-child(8) .uabb-hspot-sonar g {animation-delay:7s}
.uabb-hotspot-item:nth-child(9) .uabb-hspot-sonar g {animation-delay:8s}
.uabb-hotspot-item:nth-child(10) .uabb-hspot-sonar g {animation-delay:9s}
.uabb-hotspot-item:nth-child(11) .uabb-hspot-sonar g {animation-delay:10s}

.uabb-hspot-sonar g {
    -webkit-animation-name: hotspot-sonar2 !important;
    animation-name: hotspot-sonar2 !important;
    animation-duration: 2s !important;
}
@-webkit-keyframes hotspot-sonar2 {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 0;
        -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
        -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    }

    100% {
        -webkit-transform: scale(2);
        transform: scale(2);
        opacity: 0;
        -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    }
}

@keyframes hotspot-sonar2 {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 0;
        -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
        -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    }

    100% {
        -webkit-transform: scale(2);
        transform: scale(2);
        opacity: 0;
        -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    }
}




/***********/
/* COUNTER */
/***********/
.counter-row .fl-col-group:last-of-type {
    display: flex;
    justify-content: space-between;
}

.counter-row .fl-col-group:last-of-type::before,
.counter-row .fl-col-group:last-of-type::after {
    display: none;
}

.counter-row .fl-number .fl-number-text .fl-number-string,
.counter-row .fl-number .fl-number-text .fl-number-string span {
    font-family: var(--sofia-pro);
    font-weight: 700;
    font-size: 60px;
    font-size: 3rem;
    line-height: 60px;
    line-height: 3rem;
    color: var(--navy);
}




/*
    ========================
              TEAM
    ========================
*/
.foldable ul.team-list {
    display: grid;
    flex-wrap: initial;
    grid-template-columns: minmax(0, 3fr) minmax(0, 3fr) minmax(0, 3fr);
    gap: 66px 52px;
    width: 100%;
}

.foldable li.team-list_item{
    padding:0;
    background-color: transparent;
}

.foldable li.team-list_item div.item--logo {
    justify-content: flex-start;
}

.foldable li.team-list_item div.item--details .h4,
.foldable li.team-list_item div.item--details p,
.foldable .item--details{
    text-align:left;
}

.foldable .moreDetails{
    display: none;
}
.foldable li.team-list_item div.item--details > div{
    justify-content:flex-start;
}

ul.team-list {
    display: grid;
    grid-template-columns: calc(25% - 22.5px) calc(25% - 22.5px) calc(25% - 22.5px) calc(25% - 22.5px);
    grid-column-gap: 30px;
    grid-row-gap: 66px;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

li.team-list_item {
    /* background-color: var(--white); */
    /* text-align: center; */
    padding: 0 0 0 0;
    display: flex;
    flex-direction: column;
    /* border-radius: 6px; */
}

.team-list_item .item--details {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    color: var(--white);
    margin-top: 26px;
    padding-right: 0px;
}

li.team-list_item div.item--logo {
    width: 154px;
    display: flex;
    justify-content: center;
    border-radius: 100%;
}

li.team-list_item div.item--logo img {
    width: 100%;
    height: 154px;
    object-fit: cover;
    border-radius: 100%;
}

.team-container.foldable li.team-list_item div.item--details .team_title,
.team-container.card li.team-list_item div.item--details .team_role {
    color:var(--navy);
    font-family: var(--sofia-pro);
    font-weight: bold;
    font-size: 26px;
    font-size: 1.3rem;
    line-height: 30px;
    line-height: 1.5rem;
}
.team-container.card li.team-list_item div.item--details .team_role { color:var(--white)}


.team-container.foldable li.team-list_item div.item--details .team_role,
.team-container.card li.team-list_item div.item--details .moreDetails {
    font-family: var(--sofia-pro);
    font-weight: bold;
    font-size: 17px;
    font-size: 0.85rem;
    line-height: 25px;
    line-height: 1.25rem;
    color: var(--navy);
}
.team-container.card li.team-list_item div.item--details .moreDetails {color: var(--white);}


.team-container.foldable li.team-list_item div.item--logo img {
    width: 260px;
    height: 260px;
    max-width: initial;

}


.team-container.foldable .moreDetails p{
    font-size:17px;
    font-size:0.85rem;
    line-height:25px;
    line-height:1.25rem;
    color:var(--navy);
    margin:0;
    margin-bottom:10px;
}
.team-container.foldable .lessBtn:after {
    content: "\f078";
    position:relative;
    top:-2px;
    display: inline-block;
    font-family: "Font Awesome 5 Pro";
    transition: all .25s ease;
    padding-bottom: 0px;
    transform: rotate(180deg);
    color: var(--orange);
    margin-top: 1px;
    opacity: 1;
    font-weight: 700;
    font-size: 10px;
    font-size: 0.5rem;
    line-height: 18px;
    margin-left:10px;

}
.team-container.foldable .moreBtn:after {
        content: "\f078";
    display: inline-block;
    font-family: "Font Awesome 5 Pro";
    transition: all .25s ease;
    padding-bottom: 0px;
    margin-left:10px;
    transform: rotate(0deg);
    color: var(--orange);
    margin-top: 1px;
    opacity: 1;
    font-weight: 700;
    font-size: 10px;
    font-size: 0.5rem;
    line-height: 18px;
    position:relative;
    top:-2px;
}
.team-container.foldable .lessBtn,
.team-container.foldable .moreBtn {
    border:0;
    border-radius:0;
    background:transparent;
    color:var(--navy);
    font-weight: bold;
    font-size: 18px;
    font-size: 0.9rem;
    line-height: 37px;
    line-height: 1.85rem;
    padding:0;
}

li.team-list_item div.item--details > div {
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    justify-content: space-between;
}

li.team-list_item div.item--details .h4 {
    margin-bottom: 10px;
    color: var(--white);
}

li.team-list_item div.item--details a.morelink {
    font-family: var(--sofia-pro);
    font-weight: 400;
    font-size: 17px;
    font-size: 0.85rem;
    line-height: 25px;
    line-height: 1.25rem;
    color: black;
    text-decoration: underline;
}

li.team-list_item div.item--details a.morelink:hover {
    color: var(--blue);
    text-decoration: underline;
}

.morecontent span {
	display: none;
}








/*
    ========================
      IMG + ICON DESCRIPTOR
    ========================
*/

.icon-list .uabb-info-list-content-wrapper {display:flex}
.icon-list .uabb-info-list-content-wrapper.uabb-info-list-left .uabb-info-list-icon {
    margin-right:44px;
}

.icon-list {
    border-top: 1px solid var(--white);
    border-bottom: 1px solid var(--white);
    padding: 16px 0;
}

.icon-list li:not(:last-of-type) {
    border-bottom: 1px solid var(--white);
}

.icon-list li:not(:first-of-type) {
    padding-top: 16px;
}

.icon-list .uabb-info-list-content {
    display: flex !important;
    align-items: center;
    color: var(--white);
}

.icon-list .uabb-photo-img {
    background-color: transparent !important;
}




/*
    ========================
          HOTSPOT MAP
    ========================
*/
.hotspot_map_module .uabb-hotspot button.uabb-imgicon-wrap {
    background: transparent;
    border: 0;
    padding: 0;
}

.hotspot_map_module .uabb-hotspot .uabb-hotspot-container .uabb-hotspot-items .uabb-hotspot-item.uabb-hotspot-hover .uabb-hotspot-tooltip {
    transform:initial
}

.hotspot_map_module .uabb-hotspot .uabb-hotspot-tooltip-content {
    background-color: var(--blue);
    padding: 20px 30px;
    max-width: 350px;
    color: var(--white);
    border-radius: 6px;
    width: 1000px;
    text-align: left;
}

.hotspot_map_module .uabb-hotspot .uabb-hotspot-tooltip-content h4 { margin-bottom: 10px; }

.hotspot_map_module .uabb-tooltip-style-classic.uabb-tooltip-right .uabb-hotspot-tooltip-content::after {border-right-color: var(--blue) !important;}
.hotspot_map_module .uabb-tooltip-style-classic.uabb-tooltip-top .uabb-hotspot-tooltip-content::after   {border-top-color: var(--blue) !important;}
.hotspot_map_module .uabb-tooltip-style-classic.uabb-tooltip-bottom .uabb-hotspot-tooltip-content::after   {border-bottom-color: var(--blue) !important;}
.hotspot_map_module .uabb-tooltip-style-classic.uabb-tooltip-left .uabb-hotspot-tooltip-content::after   {border-left-color: var(--blue) !important;}

.drag_element.tips { cursor: pointer; }

img.pins_image.ihotspot_hastooltop {
    transform: scale(.8);
    transition: all .2s ease-in;
}

img.pins_image.ihotspot_hastooltop:hover {
    transform: scale(1);
}

.hotspot-icon {
    display: flex;
    /* margin-left: 60px; */
    color: var(--blue);
    font-style: italic;
    /* justify-content: flex-end; */
}

.hotspot-text-box {
    background: var(--navy);
    color: var(--white);
    padding: 36px;
    border-radius: 6px;
    margin-left: 60px;
    margin-top: 26px;
    min-height: 400px;
}

.hotspot-text-box h4 {
    color: var(--white);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
}

.uabb-hotspot-tooltip-content {
    display: none !important;
}

.hotspot-text-box img {
    height: 28px;
    margin-right: 13px;
}



/*
    ========================
              TABS
    ========================
*/

.fl-tabs .fl-tabs-label {
    font-family: var(--sora-thin);
    font-weight: 700;
    font-size: 25px;
    font-size: 1.25rem;
    line-height: 2.1875rem;
    color: var(--navy-fade);
    background:transparent;
    margin-right: 30px;
}
.fl-tabs .fl-tabs-label.fl-tab-active {
    text-decoration: underline;
    color: var(--white);
}

.fl-tabs .fl-tabs-panels {
    border:0;
    overflow: hidden;
    min-height: initial !important;
}

.fl-tabs .fl-tabs-panel-content {
    padding:0;
    background: var(--white);
    color: var(--navy);
}
.fl-tabs .fl-tabs-panel-content-wrapper {
    display: flex;
}

.fl-tabs .fl-tabs-panel-content-col2 {
    padding: 27px 67px 67px 67px;
    flex: 1 1 0;
}
.fl-tabs .fl-tabs-panel-content-col1 {flex: 1 1 0;}

.fl-tabs .fl-tabs-panel-content-col1.onlyimg {
	max-height:500px
}
.fl-tabs .fl-tabs-panel-content-col1 img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.fl-tabs .fl-tabs-panel-content-col2 h3 {
    color: var(--navy)
}

.fl-tabs .fl-tabs-panel-content-col2 p {
    margin-top:26px;
    font-family: var(--sora-thin);
    font-size: 20px;
    font-size: 1rem;
    line-height: 1.5rem;
    text-align: left;
}

.fl-tabs .tabs-content-icon {margin-bottom:10px;}

.fl-tabs .fl-tabs-panel-content {
    display: block;
    opacity: 0;
    height: 0;
    width: 0;
    visibility: hidden;
    transition: opacity .25s ease;
}

.fl-tabs .fl-tabs-panel-content.fl-tab-active {
    display: block;
    opacity: 1;
    visibility: visible;
    height: 100%;
    width: 100%;
}

/*
    ========================
        fixing in firefox
    ========================
*/
.bx-wrapper .bx-loading{
    display:none;
}
.fl-slide[aria-hidden=false], .fl-slide[aria-hidden=false] .fl-slide-foreground{
    visibility:visible;
}
.image_slider1 .bx-viewport, .image_slider1  .fl-content-slider-wrapper{
    height: 700px;
}
.image_slider3 .bx-viewport{
    height: 550px;
}

/*
    ========================
            SLIDER #1
    ========================
*/

.image_slider1 .fl-slide,
.image_slider2 .fl-slide,
.image_slider3 .fl-slide {
    border-left:10px solid transparent;
    border-right:10px solid transparent;
}
.image_slider1 .bx-wrapper,
.image_slider2 .bx-wrapper,
.image_slider3 .bx-wrapper
{max-width:90% !important}

.image_slider1 .fl-content-slider .fl-slide-bg-photo,
.image_slider2 .fl-content-slider .fl-slide-bg-photo,
.image_slider3 .fl-content-slider .fl-slide-bg-photo {
    height: 80%;
    margin: auto;
    border-radius: 6px;
}

.image_slider1 .fl-slide-foreground p,
.image_slider2 .fl-slide-foreground p,
.image_slider3 .fl-slide-foreground p {
    font-family: var(--sofia-pro);
    font-size: 20px;
    font-size: 1rem;
    line-height: 27px;
    line-height: 1.35rem;

}
.image_slider1 .fl-slide-foreground,
.image_slider2 .fl-slide-foreground,
.image_slider3 .fl-slide-foreground {
    position: absolute;
    height:100%;
    width:100%;
    max-width: initial;
    top: 0;
}
.image_slider1 .fl-slide-content-wrap {
    padding-left: 90px;
    top: calc(100% - 49px);
    position: relative;
    text-align: right;
}
.image_slider1 .fl-slide-content-wrap {
    position: absolute;
    right: 0;
    width: initial !important;
}
.image_slider1 .fl-slide-photo-wrap {
    height:100%;
    width:100% !important;
    display:block;
}
.image_slider1 .fl-slide-photo {
    height:90%;
    overflow: hidden;
    border-radius: 6px;
    display:flex;
}
.image_slider1 .slide-counter,
.image_slider2 .slide-counter,
.image_slider3 .slide-counter {
    font-family: var(--sofia-pro);
    font-weight: bold;
    font-size: 0.82rem;
    line-height: 1.36rem;
    color: var(--blue);
    position: absolute;
    bottom: 24px;
    left: 0;
    z-index: 9;
    transition: all 0.25s linear;
}

.image_slider3 .slide-counter { 
    bottom: -6px;
    left: 12px;
 }



.image_slider1 .fl-slide-photo img,
.image_slider2 .fl-slide-photo img {
    height: 100%;
    max-width: initial;
    border-radius: 6px;
    width: auto;
    margin: auto;
}

.image_slider1 .fl-content-slider-navigation .slider-prev, .image_slider1 .fl-content-slider-navigation .slider-next,
.image_slider2 .fl-content-slider-navigation .slider-prev, .image_slider2 .fl-content-slider-navigation .slider-next, 
.image_slider3 .fl-content-slider-navigation .slider-prev, .image_slider3 .fl-content-slider-navigation .slider-next 
{opacity:1}

.image_slider1 .fl-content-slider-navigation .slider-prev:before, .image_slider1 .fl-content-slider-navigation .slider-next:before,
.image_slider2 .fl-content-slider-navigation .slider-prev:before, .image_slider2 .fl-content-slider-navigation .slider-next:before,
.image_slider3 .fl-content-slider-navigation .slider-prev:before, .image_slider3 .fl-content-slider-navigation .slider-next:before {
    content:"";
    background:url(/wp-content/uploads/arrow-right-blue.svg) center center / cover no-repeat;
    width: 35px;
    height: 27px;
    display:block;
    margin:auto;
}
.image_slider1 .fl-content-slider-navigation .slider-prev:before,
.image_slider2 .fl-content-slider-navigation .slider-prev:before, 
.image_slider3 .fl-content-slider-navigation .slider-prev:before 
{transform:rotate(180deg);}

.image_slider1 .fl-content-slider-navigation .slider-prev:after, .image_slider1 .fl-content-slider-navigation .slider-next:after, 
.image_slider2 .fl-content-slider-navigation .slider-prev:after, .image_slider2 .fl-content-slider-navigation .slider-next:after,
.image_slider3 .fl-content-slider-navigation .slider-prev:after, .image_slider3 .fl-content-slider-navigation .slider-next:after {
    font-family: var(--sofia-pro);
    font-weight: bold;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    line-height: 37px;
    text-align: center;
    color: var(--blue);
}

.image_slider1 .fl-content-slider-navigation .slider-prev:after,
.image_slider2 .fl-content-slider-navigation .slider-prev:after,
.image_slider3 .fl-content-slider-navigation .slider-prev:after
{content:"Back";}

.image_slider1 .fl-content-slider-navigation .slider-next:after,
.image_slider2 .fl-content-slider-navigation .slider-next:after,
.image_slider3 .fl-content-slider-navigation .slider-next:after
{content:"Next";}
    
.image_slider1 .fl-content-slider-navigation .fl-content-slider-svg-container,
.image_slider2 .fl-content-slider-navigation .fl-content-slider-svg-container,
.image_slider3 .fl-content-slider-navigation .fl-content-slider-svg-container
{display:none}




/*
    ========================
            SLIDER #2
    ========================
*/

.image_slider2 .fl-slide-photo {
    overflow: hidden;
    height: 100%;
}
.image_slider2 .fl-slide-photo-wrap {
    width: 100% !important;
    display: block;
    position: absolute;
    bottom: 0;
        height: 100%;
}
.image_slider2 .bx-wrapper {
    max-width: 100% !important;
}
.image_slider2 .fl-content-slider-navigation {
    top:initial;
    bottom: 0;
    left: 0;
    display: flex;
    max-width:300px;
}
.image_slider2 .slider-prev,
.image_slider2 .slider-next {
    left: 0;
    right: 0;
}
.image_slider2 .fl-content-slider-navigation .slider-prev:before, 
.image_slider2 .fl-content-slider-navigation .slider-next:before {
    display: inline-block;
    background:url(/wp-content/uploads/Arrow-right-white.svg) center center / cover no-repeat;
    width:30px;
    height:23px;
    position: relative;
    top: 4px;
}
.image_slider2 .fl-content-slider-navigation .slider-prev:hover,
.image_slider2 .fl-content-slider-navigation .slider-next:hover {
    background: var(--black);
}


.image_slider2 .fl-content-slider-navigation .slider-prev:before {
    left:-10px;
}
.image_slider2 .fl-content-slider-navigation .slider-next:before {
    float: right;
    right:-10px;
    top: 7px;
}

.image_slider2 .fl-content-slider-navigation .slider-prev, 
.image_slider2 .fl-content-slider-navigation .slider-next {
    background: var(--blue);
    padding: 14px 32px;
}

.image_slider2 .fl-content-slider-navigation .slider-next {border-left: 1px solid rgba(255,255,255,0.25);}

.image_slider2 .fl-content-slider-navigation .slider-prev:after,
.image_slider2 .fl-content-slider-navigation .slider-next:after {
    font-size: 20px;
    color: var(--white);
}

.image_slider2 .fl-content-slider-navigation .slider-prev,
.image_slider2 .fl-content-slider-navigation .slider-next {
    background:var(--blue);
    padding: 14px 32px;
    position: relative;
}

.image_slider2 .fl-slide-photo img {
    height: 100%;
    border-radius: 0;
}

.image_slider2 .fl-content-slider .fl-slide-bg-photo {
    height: 100%;
    min-height:280px;
    border-radius: 0;
}

.image_slider2 .slide-counter {
    font-size: 0.91rem;
    bottom: 0;
    left: 320px;
    padding: 20px 0;
    height: 65px;
}

.image_slider2 .fl-slide-content-wrap {
    bottom: 0;
    right: initial;
    left: 0;
    width: 100%!important;
    background: var(--white);
    z-index: 9;
    padding-left: 383px;
    height: 65px;
    display: flex;
    align-items: center;
        position: absolute;
}
.image_slider2 .fl-slide {
    border-left: 0;
    border-right: 0;
}




/*
    ========================
            SLIDER #3
    ========================
*/

.bx-wrapper .bx-loading{
    display:none;
}
.image_slider3 .fl-slide[aria-hidden=false], .image_slider3 .fl-slide[aria-hidden=false] .fl-slide-foreground{
    visibility:visible;
}

.image_slider3 .fl-slide-content-wrap {
    padding-right:28px;
    padding-left: 12px;
}

.image_slider3 .fl-slide-photo-wrap,
.image_slider3 .fl-slide-photo {
    height: 100%;
    padding-right: 8px;
}
.image_slider3 .fl-content-slider .fl-slide-photo img {
    object-fit:cover;
    border-radius: 6px;
    height: 100%;
}

.image_slider3 .fl-slide {
    border-left: 0;
    border-right: 0;
}

.image_slider3 .bx-wrapper .bx-pager {
    text-align: left;
    bottom: 0;
    left: 100px;
}
.image_slider3 .bx-wrapper .bx-pager a {
    background: var(--blue);
    opacity:0.5;
    transform:scale(1);
    padding-right:10px;
}
.image_slider3 .bx-wrapper .bx-pager-item { margin-right:8px;}
.image_slider3 .bx-wrapper .bx-pager.bx-default-pager a.active {
    opacity:1;
    transform:scale(1.8);
    background: var(--blue);
}

.image_slider3 .fl-slide-content-wrap {height:100%}
.image_slider3 .fl-slide-content{
    height:90%;
    overflow-y:auto;
    padding-right: 40px;
}





/*
    ========================
      BEFORE AFTER SLIDER
    ========================
*/

.fl-row-content-wrap .uabb-before-after-slider {
    border-radius:6px;
    overflow: hidden;
}

.fl-row-content-wrap .uabb-before-after-slider .twentytwenty-handle {
    background: var(--blue);
    border: 0;
    padding: 34px 90px;
    margin-left: -90px;
    top: 80%;
}

.fl-row-content-wrap .uabb-before-after-slider .twentytwenty-handle {
    font-family: var(--sofia-pro);
    font-weight: bold;
    font-size: 18px;
    font-size: 0.9rem;
    line-height: 37px;
    line-height: 1.85rem;
    text-align: left;
    color: #fff;
}

.fl-row-content-wrap .uabb-before-after-slider .twentytwenty-left-arrow,
.fl-row-content-wrap .uabb-before-after-slider .twentytwenty-right-arrow {
    border:0;
}
.fl-row-content-wrap .uabb-before-after-slider .twentytwenty-left-arrow:after,
.fl-row-content-wrap .uabb-before-after-slider .twentytwenty-right-arrow:after {
    content:"";
    background:url(/wp-content/uploads/Arrow-right-white.svg) center center / cover no-repeat;
    width:16px;
    height:12px;
    display:inline-block;
    position: absolute;
    top: 29px;
    
}

.fl-row-content-wrap .uabb-before-after-slider .twentytwenty-left-arrow:after {
    transform:rotate(180deg);
    left: 31px;
}

.fl-row-content-wrap .uabb-before-after-slider .twentytwenty-right-arrow:after {    
    right: 29px;
}

.fl-row-content-wrap .uabb-before-after-slider .twentytwenty-handle:before {    
    width: 3px;
    margin-bottom: 34px;
}

.fl-row-content-wrap .uabb-before-after-slider .twentytwenty-handle:after {    
    width: 3px;
    margin-top: 34px;
}

.fl-row-content-wrap .uabb-before-after-slider .twentytwenty-before-label, 
.fl-row-content-wrap .uabb-before-after-slider .twentytwenty-after-label {
    padding: 10px;
}

.fl-row-content-wrap .uabb-before-after-slider .twentytwenty-before-label:before, 
.fl-row-content-wrap .uabb-before-after-slider .twentytwenty-after-label:before {
    padding: 5px 10px;
    border-radius: 3px;
}





/*
    ========================
              FAQ
    ========================
*/

.fl-builder-content .fl-accordion-button .fl-accordion-button-label {
    font-family: var(--sofia-pro);
    font-weight: 700;
    font-size: 26px;
    font-size: 1.3rem;
    line-height: 30px;
    line-height: 1.5rem;
    color: var(--white);
}

.fl-builder-content .fl-accordion-button .fl-accordion-button-icon {
    padding-right: 38px;
    opacity: 1;
}

.fl-builder-content .fl-accordion-button .fl-accordion-button-icon::before {
    content: "";
    width: 21px;
    height: 21px;
    background-size: cover;
    display: inline-block;
    top: 32px;
    position: absolute;
}

.fl-builder-content .fl-accordion-button .fl-accordion-button-icon.fa-plus::before {
    background: url(/wp-content/uploads/FAQ-Arrow.svg) center center / contain no-repeat;
}

.fl-builder-content .fl-accordion-button .fl-accordion-button-icon.fa-minus::before {
    background: url(/wp-content/uploads/Path-11437.svg) center center / contain no-repeat;
}

.fl-accordion-item {
    position: relative;
}




/*
    ========================
           MATERIALS
    ========================
*/

/*============
  CATEGORIES
=============*/
.materials-cats_btngroup {
    margin: -8px;
}

button.materials-cats_btn {
    padding: 10px;
    color: var(--blue);
    font-family: var(--sofia-pro);
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.6667rem;
    background-color: var(--white);
    border: 0;
    border-radius: 6px;
    transition: all .25s ease;
    margin: 8px;
    text-align: left;
}

button.materials-cats_btn:hover,
button.materials-cats_btn.active {
    background-color: var(--blue);
    color: var(--white);
}

button.materials-cats_btn.active {
    font-weight: 700;
}




/*============
     GRID
=============*/
.materials-list.cards {
    display: grid;
    grid-template-columns: calc(50% - 37px) calc(50% - 37px);
    grid-column-gap: 74px;
    grid-row-gap: 36px;
}

.materials-list.cards a {
    background-color: var(--white);
    border-radius: 6px;
    color: var(--black);
    transition: all .25s ease;
}

.materials-list.cards a:hover {
    text-decoration: none;
    color: var(--white);
    background-color: var(--blue);
}

.materials-list.cards .item--desc {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 36px;
}

.materials-list.cards .item--desc p.h4 {
    max-width: 350px;
    margin-bottom: 26px;
}

.materials-list.cards .item--desc p:not(.h4) {
    font-family: var(--sofia-pro);
    font-weight: 700;
    font-size: 1.1111rem;
    line-height: 2.0556rem;
    color: var(--blue);
    border-bottom: 1px solid var(--blue);
    transition: all .25s ease;
    width: fit-content;
}

.materials-list.cards .materials-list_item:hover .item--desc p:not(.h4) {
    color: var(--white);
    border-bottom: 1px solid var(--white);
}

.materials-list.cards .materials-list_item {
    height: 100%;
    position: relative;
}

.materials-list.cards span.item--tag {
    color: var(--white);
    background-color: var(--black);
    padding: 2px 7px;
    border-radius: 6px;
    font-family: var(--sofia-pro);
    font-weight: 400;
    font-size: 0.6667rem;
    line-height: 1.5rem;
    display: inline-block;
    position: absolute;
    margin: 8px;
    right: 0;
}




/*============
     LIST
=============*/
.materials-list.list {
    border-top: 1px solid var(--gray-light);
}

.materials-list.list a {
    display: block;
    color: var(--black);
    border-bottom: 1px solid var(--gray-light);
    padding: 8px 0px 8px 26px;
    transition: all .25s ease;
}

.materials-list.list a:hover {
    text-decoration: none;
}

.materials-list.list .item--desc {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.materials-list.list .item--desc p.h4 {
    margin-right: 26px;
    font-size: 1.2222rem;
    position: relative;
    max-width: 450px;
}

.materials-list.list .item--desc p:not(.h4) {
    font-family: var(--sofia-pro);
    font-weight: 700;
    font-size: 0.9444rem;
    line-height: 2.0556rem;
    color: var(--white);
    background-color: var(--blue);
    padding: 18px 39px;
    border-radius: 100px;
    transition: all .25s ease;
    width: fit-content;
    min-width: fit-content;
}

.materials-list.list .item--desc:hover p:not(.h4) {
    background-color: var(--black);
}

.materials-list.list span.item--tag {
    color: var(--white);
    background-color: var(--black);
    padding: 2px 7px;
    border-radius: 6px;
    font-family: var(--sofia-pro);
    font-weight: 400;
    font-size: 0.6667rem;
    line-height: 1.5rem;
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    transform: translateX(calc(100% + 16px));
}




/*
    ========================
              FORM
    ========================
*/

/* Section titles */
div.wpforms-container-full .wpforms-form .wpforms-field-label {
    font-family: var(--sofia-pro);
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 16px;
    color: var(--navy);
}

/* Remove asterisk from required fields */
div.wpforms-container-full .wpforms-form .wpforms-required-label {
    display: none;
}

div.wpforms-container-full .wpforms-form .wpforms-field,
div.wpforms-container-full .wpforms-form .wpforms-submit-container {
    padding: 0;
}

/* Text fields */
div.wpforms-container-full .wpforms-form input[type=text],
div.wpforms-container-full .wpforms-form input[type=email],
div.wpforms-container-full .wpforms-form textarea {
    border: none;
    border-radius: 10px;
    padding: 23px 30px;
    resize: none;
    font-family: var(--sofia-pro);
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: var(--black);
}

div.wpforms-container-full .wpforms-form input::placeholder,
div.wpforms-container-full .wpforms-form textarea::placeholder {
    font-family: var(--sofia-pro);
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: #A5A5A5;
}

/* Padding for each section */
main div.wpforms-container-full .wpforms-form .wpforms-field:not(:last-of-type) {
    margin-bottom: 26px;
}

/* Padding for last section */
div.wpforms-container-full .wpforms-form .wpforms-field:last-of-type {
    margin-bottom: 36px;
}

/* Error Message */
.fl-content .fl-module form div.wpforms-field-checkbox label.wpforms-error {
    position: absolute;
    font-family: var(--sofia-pro);
    margin-left: 56px;
    transform: translateY(-15px);
}

.fl-content .fl-module form div:not(.wpforms-field-checkbox) label.wpforms-error {
    position: absolute;
    font-family: var(--sofia-pro);
}

div.wpforms-container-full .wpforms-form input[type=submit]:hover, div.wpforms-container-full .wpforms-form input[type=submit]:focus, div.wpforms-container-full .wpforms-form input[type=submit]:active, div.wpforms-container-full .wpforms-form button[type=submit]:hover, div.wpforms-container-full .wpforms-form button[type=submit]:focus, div.wpforms-container-full .wpforms-form button[type=submit]:active, div.wpforms-container-full .wpforms-form .wpforms-page-button:hover, div.wpforms-container-full .wpforms-form .wpforms-page-button:active, div.wpforms-container-full .wpforms-form .wpforms-page-button:focus {
    background-color: var(--orange);
    border: 0;
    
}



/*==============
  Radio/Checkbox
===============*/

/* Labels */
div.wpforms-container-full .wpforms-form .wpforms-field-label-inline {
    font-family: var(--sofia-pro);
    font-weight: 400;
    font-size: 17px;
    line-height: 25px;
    color: var(--navy);
    padding-left: 56px;
    display: inline-block;
}

/* Padding between items */
.fl-post div.wpforms-container-full .wpforms-form ul li:not(:last-of-type),
.fl-post div.wpforms-container-full .wpforms-form div.last-of-type-exception ul li {
    margin-bottom: 12px !important;
}

div.wpforms-container-full .wpforms-form ul li {
    display: block;
    position: relative;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide default input */
div.wpforms-container-full .wpforms-form input[type=checkbox],
div.wpforms-container-full .wpforms-form input[type=radio] {
    position: absolute;
    cursor: pointer;
    height: 0;
    width: 0;
    border: 0px;
}

/* Hide error label for iOS */
div.wpforms-container-full .wpforms-form .wpforms-field-checkbox input.wpforms-error {
    border: 0px;
}

/* Custom input */
div.wpforms-container-full .wpforms-form input[type=checkbox]::after,
div.wpforms-container-full .wpforms-form input[type=radio]::after {
    position: absolute;
    content: "";
    top: 3px;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: var(--white);
    border: 1px solid var(--blue);
}

div.wpforms-container-full .wpforms-form input[type=checkbox]::after {
    border-radius: 6px;
}

div.wpforms-container-full .wpforms-form input[type=radio]::after {
    border-radius: 100px;
}

div.wpforms-container-full .wpforms-form input[type=checkbox]:checked::after {
    background-color: var(--orange);
    content: url(/wp-content/uploads/check-black.svg);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding-top: 4px; */
    border: 1px solid var(--orange);
}

div.wpforms-container-full .wpforms-form input[type=radio]:checked::before {
    position: absolute;
    content: "";
    top: 9px;
    left: 5.5px;
    height: 13px;
    width: 13px;
    background-color: var(--orange);
    border-radius: 100px;
    z-index: 1;
}

/*=============
    Success
==============*/

.fl-post .wpforms-confirmation-container-full p,
.fl-post  div[submit-success]>.wpforms-confirmation-container-full:not(.wpforms-redirection-message) p{
    background: green;
    border: none;
    border-radius: 6px;
    color: var(--white);
    max-width: 330px;
        padding: 20px;
}

.fl-post .wpforms-confirmation-container-full,
.fl-post  div[submit-success]>.wpforms-confirmation-container-full:not(.wpforms-redirection-message) {
background:initial;
border:none;
padding-top:150px;
}




/*
    =================================================
                      SHORTCODES
    =================================================
*/
.flexstart .fl-col-content {display: flex;flex-direction: column;align-items: flex-start !important;}
/* photo icon size */
.fl-post .icon92px img {height: 92px;max-width: fit-content;}
.fl-post .icon106px img {height:106px; max-width:fit-content;}
.topright0 {top:0; right:0;}
.topmarginauto {margin: auto 0 0;}
.flexend {display:flex; justify-content:flex-end;}
.rightmargin26 {margin-right: 16px;}
.bottommargin10 {margin-bottom: 10px;}
.maxwidth80percent {max-width: 80%;}

/*********fire fox*********/
@supports (-moz-transform: translate(0, 0)) {
    div.wpforms-container-full .wpforms-form input[type=checkbox], div.wpforms-container-full .wpforms-form input[type=radio] {
        position: unset;
        cursor: unset;
        height: unset;
        width: unset;
        border: unset;
    }
    div.wpforms-container-full .wpforms-form input[type=checkbox]:checked{
        background-color:var(--black);
    }
    div.wpforms-container-full .wpforms-form .wpforms-field-label-inline{
        padding-left:0!important;
    }
}
/*********Safari*********/
@media screen and (-webkit-min-device-pixel-ratio:0) {
    div.wpforms-container-full .wpforms-form input[type=checkbox], div.wpforms-container-full .wpforms-form input[type=radio] {
        height: 14px;
        border: 1000px;
    }
    div.wpforms-container-full .wpforms-form input[type=checkbox]::after {
        left:-2px;
    }
    div.wpforms-container-full .wpforms-form input[type=radio]{
        top:3px;
    }
    div.wpforms-container-full .wpforms-form input[type=radio]:after{
        top:-3px;
    }
}















.image_slider3 .fl-slide-content{
    position: absolute;
    background: var(--gray-lighter);
    height: calc(100% - 72px);
    top: 36px;
    padding: 44px;
    box-sizing: border-box;
    overflow-y: hidden;
    border-radius: 6px;
    width: calc(100% + 200px);
    left: -200px;
    z-index: 3;
    display: flex;
    flex-direction: column;
}
.image_slider3 .fl-slide-cta-button{
    margin-top: auto;
}
.image_slider3 .fl-slide-text{
    overflow: auto;
    overflow-y: auto;
    max-height: calc(100% - 180px);
    padding: 2px;
}
.image_slider3 .fl-slide-foreground{
    display:flex;
    flex-direction: row-reverse;
}
.image_slider3 .fl-slide-content-wrap{
    padding:0;
    flex:1;
    position: relative;
}
.image_slider3 .fl-slide-photo-wrap {
    padding:0;
    flex:2;
}
.image_slider3 .fl-content-slider .fl-slide-photo img{
    width:100%;
}
.image_slider3 .fl-content-slider-navigation {
    top: initial;
    bottom: -26px;
    left: 0;
    display: flex;
    max-width: 230px;
}
.image_slider3 .fl-content-slider-navigation .slider-prev:before, .image_slider3 .fl-content-slider-navigation .slider-next:before {
    display: inline-block;
    background: url(/wp-content/uploads/right_arrow.svg) center center / cover no-repeat;
    width: 70px;
    height: 70px;
    position: relative;
    top: 4px;
}
.image_slider3 .fl-content-slider-navigation .slider-prev:after, 
.image_slider3 .fl-content-slider-navigation .slider-next:after {
    display:none;
}
.image_slider1 .bx-wrapper, .image_slider2 .bx-wrapper, .image_slider3 .bx-wrapper {
    max-width: 100% !important;
}
.image_slider3 .bx-wrapper .bx-pager{
    display:none!important;
}
.image_slider3 .bx-viewport{
    overflow: inherit!important;
}
.image_slider3 .slide-counter {
    bottom: -76px;
    left: 96px;
    z-index: 99;
    position: absolute;
    color:var(--black);
}
.image_slider3.fl-module-content-slider .bx-wrapper {
    margin: 0 auto 100px;
}
.image_slider3 a.fl-button, .image_slider3 a.fl-button:hover, .image_slider3 a.fl-button:focus{
    border: none;
    background-color:transparent;
    padding:0 0 6px;
    color:var(--blue);
    text-decoration: none;
    background-image: linear-gradient(var(--blue), var(--blue));
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: 100% 1px;
    transition: background-size 500ms ease-in-out;
    display:inline;
    font-size:1.1rem;
    font-family: var(--sofia-pro);
    font-weight: 600;
}
.image_slider3 a.fl-button span{
    color:var(--blue);
}
.image_slider3 .fl-button:hover, .image_slider3 .fl-button:focus {
    animation: 0.5s underline2;
}
@keyframes underline2 {
    from {background-size: 0% 1px;}
    to {background-size: 100% 1px;}
}

.image_slider3 a.fl-button .a_arrow
{
    display: inline-block;
    padding-left:15px;
    transition:all .5s ease;
}
.image_slider3 a.fl-button .a_arrow img{
    display: block;
}
.image_slider3 a.fl-button:hover .a_arrow
{
    padding-left:25px;
}
.image_slider1 .fl-slide{
    width: calc(100% - 90px)!important;
    margin: 0px 45px;
}
.image_slider1 .fl-slide-photo img.horizontal{
    height: auto;
    width:100%;
}
/*****************/
/***Three Image***/
/*****************/
.threeImgRow .uabb-masonary-item.transformDown:nth-child(3){
transform: translateY(400px);
}
.threeImgRow .uabb-masonary-item.transformUp:nth-child(4){
transform: translateY(-400px);
}
.threeImgRow .uabb-masonary{
    position: relative;
    height:unset!important;
}
.threeImgRow .uabb-masonary-content{
    position: static!important;
    height: auto!important;
    display: block!important;
    width: 100%!important;
}
.threeImgRow .uabb-masonary-item:nth-child(3){
    position: absolute!important;
    left: 0px!important;
    top: 0px!important;
    height: 400px;
    width: auto;
    transform: translate(0, 0);
    transition: transform 0.05s ease-in-out!important;
}
.threeImgRow .uabb-masonary-content .uabb-gallery-img{
    display: block;
    border-radius: 6px;
}
.threeImgRow .uabb-masonary-item:nth-child(2){
    position: relative!important;
    left:unset!important;
    top:unset!important;
    margin: 0 auto;
    display: block;
    margin-top: 120px;
    height: 600px;
    margin-bottom: 120px;
}
.threeImgRow .uabb-masonary-item:nth-child(2) .uabb-photo-gallery-content,
.threeImgRow .uabb-masonary-item:nth-child(2) .uabb-gallery-img{
    height:600px;
    max-width: 900px;
    margin: auto;
    object-fit: cover;
    border-radius: 6px;
}
.threeImgRow .uabb-masonary-item:nth-child(4){
    position: absolute!important;
    left: unset!important;
    top: unset!important;
    right: 0px;
    bottom: 0;
    width: auto;
    height: 360px;
    border-radius:6px;
    transform: translate(0, 0);
    transition: transform 0.05s ease-in-out!important;
}
/*****video*****/
body .immersive-video > .fl-col-content:after{
    background-image: linear-gradient(180deg, transparent 0%, #060246 90%);
}
.immersive-video .uabb-modal-action{
    height: 640px;
    display: inline-flex;
}
.immersive-video .uabb-modal-action .uabb-modal-photo{
    width: 100px;
}

.uabb-video__play-icon {
    background-color: var(--orange);
    border-radius: 500px;
    width: 100px!important;
    height: 100px!important;
}
.uabb-video__play-icon:before {
    font-size: 26px!important;
    line-height: 100px!important;
}
.full-width .uabb-video .uabb-video__outer-wrap {
    padding-bottom: 700px;
    border-radius: 6px;
}
.conner .uabb-video__play-icon {
    left: 144px;
    bottom: 44px;
    top:unset!important;
}
.half-width .uabb-video .uabb-video__outer-wrap {
    padding-bottom: 480px;
    border-radius: 6px;
}
.fl-row.immersive-row .fl-row-content-wrap {
    padding-left: 0px;
    padding-right: 0px;
}
.immersive-text{
    padding-left:70px;
    padding-right:70px;
}
.immersive-text .fl-col-content{
    max-width: 1366px;
    margin-left: auto;
    margin-right: auto;
}
.immersive .uabb-video__outer-wrap {
    background:transparent;
}
.immersive {
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
    padding:0 18px;
}
.immersive-row .uabb-video__outer-wrap .uabb-video__play img{
    display:none!important;
}
.uabb-video__outer-wrap img{
    height: 100%!important;
    object-fit: cover;
}
.immersive-row .uabb-video__outer-wrap{
    padding-bottom:640px;
}
.fl-builder-content .fl-accordion-button .fl-accordion-button-label {
    /* color: var(--black); */
    /* padding: 0;
    background-color: transparent!important;
    border: none; */
}
.fl-builder-content .white .fl-accordion-button .fl-accordion-button-label{
    /* color: var(--white); */
}
body:not(.fl-builder-edit) .fl-accordion-button:focus{
    box-shadow:none!important;
}
/********photo********/
.image_caption p{
    color:var(--white);
    display: inline-block;
    padding: 10px;
    background-color: rgba(19,16,17,0.8);
    float:right;
    border-radius:6px;
    font-size: 0.66rem;
    line-height:1.2;
    margin-bottom:16px;
}
.sub-image{
    position:absolute;
    bottom:-120px;
}
.sub-image img{
    height:600px;
    width:auto;
    object-fit: cover;
    border-radius: 6px;
}

/*****FLEXIBLE POST GRID MIXED MEDIA*****/
.post-grid.fmm{
    display: flex;
    gap: unset;
    flex-direction: row;
}
.post-grid.fmm .post-row:not(.post0) img, .post-grid.fmm .post-row:not(.post0) .defaultImg{
    display:none!important;
}
.external_post .fl-module-button:not(.noarrow) a.fl-button::after{
    transform: rotate(-45deg) translate(0px, 10px);
}
.external_post .fl-module-button:not(.noarrow) a.fl-button:hover::after{
    transform: rotate(-45deg) translate(10px, 20px);
}
.post-grid.fmm .post-row{
    display:block;
}
.post-grid.fmm .post0 .tags{
    position:absolute;
    top:16px;
    left:16px;
}
.post-grid.fmm .imgBox{
    position:relative;
}
.post-grid.fmm .tags{
    display: inline-block;
    padding: 8px 18px;
    font-size: 0.6364rem;
    line-height: 1.2;
    border-radius: 4px;
    background-color: var(--white);
    color: var(--black);
    margin-right:5px;
}
.post-grid.fmm .post0.post-row .post-col.title-col {
    margin-right: 0;
    width: calc(100% - 100px);
    float: unset;
    position:relative;
    background-color: #F5F5F5;
    padding-top:36px;
    padding-right:90px;
    min-height:88px;
}
.post-grid.fmm .post0.post-row .post-col {
    width: 100%;
    float: unset;
}
.post-grid.fmm .post-row{
    height:unset;
}
.post-grid.fmm>div{
    float:left;
    width:50%;
}
.post-grid.fmm .firstCol{
    padding-right: 66px;
    border-right: 1px solid #C1BFBB;
    padding-bottom:36px;
}
.post-grid.fmm .secondCol .imgBox{
    margin-bottom:16px;
}
.post-grid.fmm .secondCol .post-row{
    margin-top:0px;
}
.post-grid.fmm .secondCol{
    padding-left: 66px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.post-grid.fmm .post0 .post-desc {
    margin-bottom: 26px;
    margin-top: 16px;
}
.post-grid.fmm .post0 img{
    margin-bottom:-88px;
    height:400px;
}
/*****post grid*****/
.post-grid{
    display:grid;
    grid-template-areas: 'post0 post0' 
    'post1 post2';
    gap:88px 54px;
}
.post0.post-row{
    grid-area: post0; 
}
.post1.post-row{
    grid-area: post1; 
    height: 100%;
    display: flex;
    flex-direction: column;
}
.post2.post-row{
    grid-area: post2; 
    height: 100%;
    display: flex;
    flex-direction: column;
}
.post2.post-row .desc-col, .post1.post-row .desc-col{
    margin-top: auto;
}
.post0.post-row .post-col{
    width:calc(50% - 54px);
    float:left;
}
.post0.post-row .post-col.title-col{
    margin-right:108px;
}
.post0 img{
    margin-bottom:44px;
    border-radius:6px;
    overflow:hidden;
    display:block;
    width:100%;
    height:548px;
    object-fit: cover;
}
.post0 .defaultImg{
    margin-bottom:44px;
    border-radius:6px;
    overflow:hidden;
    display:block;
    width:100%;
    height:548px;
    background-color:#727271;
}
.post-row .post-desc{
    margin-bottom:16px;
}
.post0 .post-desc{
    margin-bottom:26px;
    margin-top:8px;
}
.post2 img, .post1 img{
    margin-bottom:36px;
    border-radius:6px;
    overflow:hidden;
    display:block;
    width:100%;
    height: 260px;
    object-fit:cover;
}
.post2 .defaultImg, .post1 .defaultImg{
    margin-bottom:36px;
    border-radius:6px;
    overflow:hidden;
    display:block;
    width:100%;
    height:260px;
    background-color:#727271;
}

.post2 p, .post1 p{
    display:none;
}
.fmm .post2 p, .fmm .post1 p{
    display:block;
}
/******POST WEDGE******/
.post-wedge .post-col.img-col{
    border-radius: 6px;
    overflow: hidden;
}
.post-wedge .post-col.img-col img{
    height:100%;
    width: 100%;
    object-fit: cover;
}
.post-wedge .post .post-col.title-col h3{
    font-size: 1.3333rem;
    line-height: 2.0556rem;
}

/******POST WEDGE (FLEX LAYOUT)******/
.post-wedge.flex{
    display: grid;
    grid-template-areas:
        'top top'
        'left right';
    gap: 88px 54px;
}
.post-wedge.flex .post:first-child{
    grid-area: top;
}
.post-wedge.flex .post:nth-child(2){
    grid-area: left;
}
.post-wedge.flex .post:nth-child(3){
    grid-area: right;
}
.post-wedge.flex .post-col.img-col{
    height:260px;
    margin-bottom:36px;
}
.post-wedge.flex .post:first-child .post-col.img-col{
    height:540px;
}
.post-wedge.flex .post:first-child .post-col.title-col{
    margin-right:108px;
    width:calc(50% -54px);
}
.post-wedge.flex .post:first-child .post-col.desc-col{
    width:calc(50% -54px);
}
.post-wedge.flex .post:nth-child(2) .post-col.desc-col .post-desc, .post-wedge.flex .post:nth-child(3) .post-col.desc-col .post-desc{
    display:none;
}
.post-wedge.flex .post:nth-child(1) .post-col.title-col h3{
    font-size: 1.9444rem;
    line-height: 2.5rem;
}
.post-wedge.flex .tags{
    display:none;
}
/******POST WEDGE (MEDIA LAYOUT)******/
.post-wedge.media {
    display: grid;
    grid-template-areas:
        'left top'
        'left bottom';
    gap: 36px 0;
    align-items: stretch;
}
.post-wedge.media .post:first-child{
    grid-area: left;
    padding-right:44px;
    border-right: 1px solid #B9B7B3;
}
.post-wedge.media .post:nth-child(2){
    grid-area: top;
    padding-left:44px;
}
.post-wedge.media .post:nth-child(3){
    grid-area: bottom;
    padding-left:44px;
}
.post-wedge.media .post:first-child .post-col.img-col{
    margin-bottom: -88px;
    height: 400px;
}
.post-wedge.media .post .post-col.img-col{
    position: relative;
}
.post-wedge.media .post:nth-child(2) .post-col.img-col img,
.post-wedge.media .post:nth-child(3) .post-col.img-col img{
    display: none;
}
.post-wedge.media .post:nth-child(2) .tags,
.post-wedge.media .post:nth-child(3) .tags{
    position: static;
}
.post-wedge.media .tags {
    position: absolute;
    top: 16px;
    left: 16px;
    display: inline-block;
    padding: 8px 18px;
    font-size: 0.6364rem;
    line-height: 1.2;
    border-radius: 4px;
    background-color: var(--blue);
    color: var(--white);
    margin-right: 5px;
}
.post-wedge.media .post:nth-child(1) .post-col.title-col {
    margin-right: 0;
    width: calc(100% - 100px);
    float: unset;
    position: relative;
    background-color: #F5F5F5;
    padding-top: 36px;
    padding-right: 90px;
    min-height: 88px;
}
/******POST WEDGE (TWO COLUMN LAYOUT)******/
.post-wedge.two-column{
    display: flex;
    gap:66px;
}
.post-wedge.two-column .post{
    flex:1;
}
.post-wedge.two-column .post-col.img-col{
    height:400px;
    margin-bottom: -88px;
}
.post-wedge.two-column .tags {
    display: inline-block;
    padding: 8px 18px;
    font-size: 0.6364rem;
    line-height: 1.2;
    border-radius: 4px;
    background-color: var(--blue);
    color: var(--white);
    margin-right: 13px;
}
.post-wedge.two-column .post-col:not(.img-col){
    width: calc(100% - 100px);
    background-color: #F5F5F5;
    padding-right: 90px;
    padding-top: 0px;
    position:relative;
    z-index: 5;
}
.post-wedge.two-column .post-col.title-col, .post-wedge.media .post-col.title-col{
    padding-top: 36px;
    padding-bottom:26px;
}
/******POST GRID (GRID LAYOUT)******/

.postBottom{
    padding:0 15px;
    margin-top: auto;
}
.imgBox .defaultImg{
    height:280px;
    width:100%;
    background-color:#727271;
}
.posts{
    margin-top:66px;
}
.infoPost{
    font-size: 0.777rem;
    font-weight: 600;
    color:var(--navy);
    margin: 26px 0 0;
    display: none;
}
.post-wedget, .posts{
    display: grid;
    flex-wrap: initial;
    grid-template-columns: minmax(0, 3fr) minmax(0, 3fr) minmax(0, 3fr);
    gap: 57px;
    width: 100%;
}
.post-wedget .post .tags, .posts .post .tags, .post-carrousel .tags{
    display: inline-block;
    padding: 8px 18px;
    border-radius: 38px;
    background-color: var(--blue);
    color: var(--white);
    font-family: var(--sofia-pro);
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
}
.posts .post .tags, .post-carrousel:not(.list) .tags
{
    position: absolute;
    top: 13px;
    left: 13px;
}
.post {
    cursor:pointer;
}

/******POST CARROUSEL*****/
.post-carrousel.grid .post{
    padding:0 44px 0 0;
}
.post-carrousel.list .post{
    padding:0 26px 0 0;
}
.post-carrousel.list .post .postBox{
    padding:0 26px 0 0;
    border-right:1px solid #C1BFBB;
}
.post-carrousel.grid .postBox .imgBox {
    height:260px;
}
.post-carrousel .post .postBox{
    width:368px;
}
.post-carrousel .post .postBox a.arrowlink{
    margin-left:0;
}

.slick-initialized .slick-slide {
    display: flex!important;
    /* height: auto; */
    flex-direction: column;
}
.slick-initialized .slick-slide>div{
    height:100%;
}
.slick-initialized .post .postBox {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}
.post-carrousel .post{
    height:100%;
}
.slick-arrow, .slick-arrow:hover, .slick-arrow:focus{
    background-color:transparent!important;
    border:none!important;
    padding:0;
}
.slider-ctl{
    display:flex;
    gap:11px;
    justify-content:flex-end;
    margin-bottom:16px;
}
.slider-header{
    display: flex;
    justify-content: flex-end;
    gap: 22px;
}
.slick-dots{
    margin-bottom:0!important;
}
.slick-dots li.slick-active {
    display: block;
}
.slick-dots li {
    display: none;
    line-height: 1;
}
.slick-active button, .slick-active button:hover, .slick-active button:focus {
    background-color: transparent;
    color: var(--black);
    padding: 0;
    font-weight:bold;
    border: 1px solid transparent;
    pointer-events: none;
}
.slider-dot{
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}
.slick-slider .post .infoBox{
    padding:0;
}
.slick-slider .post .postBottom{
    padding: 0;
}
/******POST CARROUSEL (NEWS)******/
.carrousel-news .arrowlink{
    margin-left:0;
}
.carrousel-news .post{
    max-width: 360px;
    margin-right:30px;
}
.carrousel-news .tags{
    margin-bottom:16px;
}
/******POST CARROUSEL (GRID LAYOUT)******/
.post-carrousel.list .postBox .imgBox{
    position: relative;
    overflow: hidden;
    display: flex;
    border-radius: 6px;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
}
.post-carrousel.list .postBox .imgBox .date{
    font-size: 0.777rem;
    font-weight: 600;
    color: #727271;
    line-height: 1;
}

.carrousel-two-column.post-carrousel .post .postBox{
    width:calc(100% - 33px);
}
.carrousel-two-column.post-carrousel .post .infoBox, .carrousel-two-column.post-carrousel .post .postBottom{
    width: calc(100% - 100px);
    background-color: #F5F5F5;
    padding-right: 90px;
    padding-top: 10px;
}
.carrousel-two-column.post-carrousel .post .imgBox{
    height: 400px;
    margin-bottom: -88px;
}
.carrousel-two-column.post-carrousel .post .infoBox{
    position:relative;
}
.carrousel-two-column.post-carrousel .post .imgBox img{
    height: 400px;
}
.carrousel-two-column.post-carrousel .slick-active:not(.slick-current) .postBox{
    float:right;
}
/******POST CARROUSEL (LIST LAYOUT)******/
.post-carrousel.list .slick-slide img{
    display:none!important;
}
.post-carrousel:not(.list) .date{
    display:none;
}
/******POST CARROUSEL (CARD LAYOUT)******/
.post-carrousel.card .slick-track {
    display: flex;
}

.post-carrousel.card .post .tags{
    position:static;
    border-radius: 30px;
    border:1px solid var(--blue);
    background-color: var(--white);
    color:var(--blue);
}
.post-carrousel.card .post{
    padding:0 44px 0 0;
}
.post-carrousel.card .postBox{
    padding: 16px 16px 36px;
    background-color: var(--white);
    border-radius: 30px;
    transition: all 0.5s ease;
    width:368px;
}
.post-carrousel.card img{
    display:none!important;
}
.post-carrousel.card .infoBox h3 a, .post-carrousel.card .infoBox h3 a:hover{
    color:var(--blue);
}
.post-carrousel.card .postBox:hover{
    background-color: var(--blue);
}
.post-carrousel.card .postBox:hover .infoBox h3 a, .post-carrousel.card .postBox:hover .infoBox .post-desc, .post-carrousel.card .postBox:hover a.arrowlink{
    color:var(--white);
}
.post-carrousel.card .postBox:hover a.arrowlink{
    background-image: linear-gradient(var(--white), var(--white));
}
.post-carrousel.card .postBox:hover a.arrowlink::after{
    filter: brightness(10);
}

.posts .post h3 a, .post-wedget .post h3 a{
    text-decoration: none;
    font-weight: 700;
    color:var(--navy);
    text-decoration: none;
    background-image: linear-gradient(var(--orange), var(--orange));
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 0 1px;
    transition:all .5s;
}
.posts .post:hover h3 a, .post-row h3:hover a, .post-list:hover h3 a, .posts .post:focus h3 a, .post-wedget .post:hover h3 a, .post-wedget .post:focus h3 a{
    background-size: 100% 1px;
    color:var(--navy);
}
.posts .post .infopost{
    font-size:0.6364rem;
    line-height:1.5rem;
}
.postBox .imgBox{
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}
.post .postBox{
    display: flex;
    flex-direction: column;
    height: 100%;
}
.post img{
    width:100%;
    object-fit:cover;
    transition: all 1s ease;
    height:280px;
}
.post h4{
    margin:26px 0 16px;
}

.post .infoBox{
    padding:26px 12px 0px;
}

.infoBox h3{
    margin:6px 0 16px;
}
.post:hover img{
    transform: scale(1.05);
}
.noresult{
    text-align: center;
    margin-top:26px;
}
/******POST GRID (CARD LAYOUT)******/
.posts.card .post{
    padding: 16px 16px 36px;
    background-color: var(--white);
    border-radius: 30px;
    transition: all 0.5s ease;
}
.posts.card .tags {
    position:static;
    color: var(--blue);
    display: inline-block;
    border: 1px solid var(--blue);
    padding: 12px 14px;
    text-transform: capitalize;
    border-radius: 30px;
}
.posts.card .post:hover .infoBox .h4, .posts .post:hover .infoBox .excerpt{
    color:var(--white);
}
.posts.card .post:hover .tags {
    color: var(--white);
    background-color:var(--blue);
    border: 1px solid var(--white);
}
.posts.card .post:hover a.arrowlink{
    color:white;
    background-image:linear-gradient(var(--white), var(--white))
}
.posts.card .post:hover a.arrowlink::after{
    filter:grayscale(100%) brightness(100);
    transform: translateX(10px);
}
.posts.card .post:hover {
    transform: scale(1.05);
    background-color: var(--blue);
    position:relative;
}
.posts.card .infoBox h3{
    color:var(--blue);
}
.posts.card .infoBox{
    padding:0 0;
}
.posts.card .postBottom{
    padding:0 0;
}
.posts.card a.arrowlink{
    margin-left:0;
}
/******POST GRID (LIST LAYOUT)******/
.posts.list {
    display: block;
}
.posts.list .tags{
    position:static;
    display: inline-block;
    padding: 6px 6px;
    font-size: 0.6364rem;
    word-break: break-word;
    font-size: 0.6364rem;
    line-height: 1.2;
    border-radius: 4px;
    background-color: var(--blue);
    color: var(--white);
    margin-bottom:5px;
    margin-right:0;
}
.posts.list .postBox{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}
.posts.list .postTop{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    flex:7;
    order:2;
}
.posts.list .postBottom{
    margin-top:0;
    flex:1;
    order:1;
    padding:0;
}
.posts.list .postBox .imgBox{
    flex:1;
    order:2;
}
.posts.list .postBox .infoBox{
    flex: 2;
    order:1;
}
.posts.list .infoBox h3{
    margin-top:0;
}
.posts.list img {
    height: 240px;
    width: 100%;
}
.posts.list .post:hover .infoBox .excerpt{
    color:var(--black);
}
.posts.list .defaultImg{
    height:240px;
    background-color:#727271;
}
.posts.list .post{
    border-top: 1px solid #B9B7B3;
    padding:26px 0;
}
.posts.list .post:last-child{
    border-bottom: 1px solid #B9B7B3;
}

/*********post filter*********/


.archive-info, .archive-filter{
    background-color:#FEFAF8;
}
.fl-archive--filter-clear span {
    cursor: pointer;
    text-decoration: underline;
}

.fl-archive--header .fl-archive--header-img {
    width: 38.4%;
    float: right;
}

.fl-archive--header .fl-archive--header-title {
    width: 100%;
    margin-top: 73px;
    margin-bottom: 23px;
}

.fl-archive--header .fl-archive--header-title h1 {
    color: var(--black);
    margin: 0;
    text-align:center;
}

.fl-archive--header .fl-archive--header-description{
    text-align: center;
    max-width: 830px;
    margin: 0 auto 0px;
    padding-bottom: 63px;
}

.filter-form--content.hidden {
    max-height: 1px;
    opacity:0;
}

.filter-form--header {
    display:flex;
    align-items: center;
    justify-content: space-between;
}
.filter-form--content  {
    transition: all 0.25s linear;
    clear: both;
    display: flex;
    overflow: hidden;
    align-content: flex-start;
    opacity:0;
    max-height: 0px;
}
.filter-form--content.visible{
    padding-top: 30px;
    opacity:1;
    max-height: 1000px;
    overflow: inherit;
}

.fl-archive--filter.closed{
    background-color: var(--white);

}

.fl-archive--filter {
    background-color: var(--white);
    width: 100%;
    clear: both;
    border-radius: 6px;
    padding: 27px 42px;
}

.fl-archive--filter-refine svg {
    width: 17px;
    margin-right: 10px;
    margin-top: -4px;
}

.visiblefilters{
    margin-bottom:1px;
}
.hiddenfilters{
    margin-bottom: 7px;
    display: none;
}
.fl-archive--filter-refine svg#hiddenfilters {
    display: none;
}

.fl-archive--filter-refine {
    width: 50%;
    float: left;
    cursor: pointer;
}

.fl-archive--filter-refine span{
    font-family: var(--sofia-pro);
    color: var(--black);
}
.fl-archive--filter-clear span {
    font-family: var(--sofia-pro);
    color: var(--navy);
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.fl-archive--filter-clear span::before {
    content: "";
    width: 15px;
    height: 15px;
    background: url(/wp-content/uploads/Group-9732.svg) center center / cover no-repeat;
    margin-right: 15px;
}

.fl-archive--filter.closed .fl-archive--filter-clear {
    /* display:none!important; */
}
.fl-archive--filter-clear

.fl-archive--filter-items {
    float: left;
    width: 60%;
    vertical-align: text-top;
    display: flex;
    flex-wrap: wrap;
}

div.filter-item {
    list-style-type: none;
    margin: 0;
    /* padding: 0px 50px 14px 0; */
    border-radius: 30px;
    display: inline-block;
    position: relative;
    width: 50%;
}

div.filter-item.theme {
    padding: 14px 30px 14px 7px;
}

.fl-archive--filter-refine span{
    font-family: var(--sofia-pro);
    color: var(--navy);
}
.fl-archive--filter-clear {

    float: right;
    text-align: right;
}

.fl-archive--filter-items {
    float: left;
    width: 70%;
    vertical-align: text-top;
    display: flex;
    flex-wrap: wrap;
}

.fl-archive--filter-search label {
    color: var(--navy);
    font-family: var(--sofia-pro);
}

div.filter-item {
    list-style-type: none;
    margin: 0;
    padding: 0px 16px 0 0;
    border-radius: 30px;
    display: inline-block;
    position: relative;
    /* width: 45%; */
}

div.filter-item:first-of-type {
    width: 25%;
}

div.filter-item.theme {
    padding: 14px 30px 14px 7px;
}

div.filter-item .filter-item--label-title, div.fl-archive--filter-search .filter-item--label-title{
    margin: 0;
    color: var(--navy);
    font-size: 20px;
    line-height: 30px;
    font-family: var(--sofia-pro);
    position: relative;
    width: 100%;
    text-transform: capitalize;
}

.fl-module-button.white.arrowlink a.fl-button:hover{
    background-color:transparent;
}

div.filter-item .filter-item--label-title.visible {
    z-index: 15;
}

.filter-item--label-title img {
    float: right;
}
.fl-archive--filter-search > div{
    position:relative;
}
.fl-archive--filter-search > div:not(.category-filters--go):after{
    content: url(/wp-content/uploads/Search.svg);
    display:block;
    position:absolute;
    bottom: 2px;
    left:0;
}
.filter-item ul {
    list-style-type: none;
    margin: 0;
    padding: 7px 0 17px;
    z-index: 5;
}

.filter-item.country ul {
    /* display: grid; */
    /* grid-template-columns: 1fr 1fr; */
    column-count: 2;
}

.filter-item ul li {
    padding: 0px 0;
    font-size: 0.888rem;
    line-height: 1.55rem;
    cursor: pointer;
    font-family: var(--sofia-pro);
    color:var(--navy);
    /* display: inline-block; */
}
.filter-item ul li label{
    font-weight:400!important;
    display: block;
    position: relative;
    margin-bottom: 12px;
    cursor: pointer;
}
.filter-item ul li label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.filter-item ul li label .checkmark {
    position: absolute;
    top: 8px;
    left: 5px;
    height: 15px;
    width: 15px;
    background-color: #fff;
    border: solid 1px var(--blue);
    border-radius:2px;
  }
  .filter-item ul li label input:checked ~ .checkmark {
    background-color: var(--blue);
    border:solid 1px var(--blue);
  }
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  .filter-item ul li label input:checked ~ .checkmark:after {
    display: block;
  }
  .filter-item ul li label .checkmark:after {
    left: 4px;
    top: 2px;
    width: 5px;
    height: 7px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
.category-filters--go {
    display: inline-block;
    margin-top: 26px;
}

.category-filters--go button {
    border-radius: 50px !important;
    color: var(--white);
    border: 1px solid var(--blue);
    background-color: var(--blue);
    padding: 12px 30px;
    font-family: var(--sofia-pro);
    font-weight: 700;
    font-size: 20px;
    /* min-width: inherit!important; */
    transition:0.25s all ease;
    /* transform:scale(1); */
}
div.loadMore button, div.loadMore button:focus {
    margin:36px auto 0;
    display: block;
    background-color: transparent;
    border-radius: 50px!important;
    color: var(--blue);
    border: 1px solid var(--blue);
    background-color: var(--white);
    padding: 23px 37px 23px 37px;
    font-family: var(--sofia-pro);
    font-weight: 700;
    font-size: 0.7727rem;
    line-height: 1.0909rem;
    min-width: inherit!important;
    transition:0.2s all;
    transform:scale(1);
}
div.loadMore button.page_btn{
    margin:36px 0 0;
        padding: 15px 23px;
}
div.loadMore {
    display: flex;
    gap: 10px;
    justify-content: center;
}
.category-filters--go button:hover, div.loadMore button:hover {
    transform:scale(1.15);
}
.category-filters--go button .a_arrow{
    /* padding-left:39px; */
    display: none;
}
.category-filters--go button:hover,
.category-filters--go button:active,
.category-filters--go button:focus{
    /* border-radius:500px!important; */
}
div.loadMore button:hover {
    border-color: var(--blue);
    background-color: var(--blue);
    color: #fff;
}

.category-filters--go button:active,
.category-filters--go button:focus {
    outline: var(--blue) solid 2px;
}

.fl-archive--filter-search {
    width: 40%;
    float: left;
    padding: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
}
.fl-archive--filter-search input::placeholder{
    color:#727271;
    font-family:var(--sofia-pro);
}

.fl-archive--filter-search input {
    height: 32px;
    border: none;
    font-family: var(--sofia-pro);
    border-bottom: 1px solid var(--blue);
    border-radius: 0;
    background-color: transparent;
    color: var(--blue);
    padding-left: 30px;
    max-width: 320px;
    font-size: 0.888rem;
    line-height: 1.556rem;
    margin-top: 26px;
}

.fl-archive--filter-search input[type=text]:focus {
    background-color: transparent;
    border-bottom: 1px solid var(--navy);
    outline: #275dc5 solid 2px;
}


.fl-archive--filter-items ul li label {
    margin: 0;
    padding-left: 25px;
    position: relative;
    word-wrap: normal;
}

.fl-archive--filter-items ul li label input {
    margin-right: 10px;
    margin-bottom: 0;
    margin-top: 5px;
    position: absolute;
    height: 15px;
    width: 15px;
    left: -25px;
    top: -1px;
}
.container input:checked ~ .checkmark {
    background-color: var(--blue);
  }
.post-type-archive .fl-archive--content {
    margin: 72px -2.5% 95px;
    display: flex;
    flex-flow: wrap;
}
.fl-archive .fl-archive--content {
    margin-top:66px;
    margin-bottom:110px;
}
.fl-archive--content .posts{
    margin-bottom:0;
}
.fl-archive--content .post {
    display: none;
}

.fl-archive--content .post a {
    text-decoration: none;
}

.fl-archive--content .post a:hover,
.fl-archive--content .post a:focus {
    text-decoration: none;
}
.post-list{
    padding: 16px 32px;
    border-top: 1px solid #B9B7B3;
    display:none;
}
.active.post-list, .active.post{
    display:block;
}
.posts-list{
    padding: 66px 0;
    cursor:pointer;
}

/*****hotspot map*****/
.gm-style-iw-d{
    overflow: auto;
    max-height: unset;
    background-color: var(--red);
    max-width: unset;
    padding: 0;
    color: var(--white);
}
.dialog{
    background-color: var(--red);
    padding: 20px 30px;
    max-width: 350px;
    max-height:unset;
}
/******slider******/
.image_slider3 .fl-slide-foreground p {
    line-height: 1.6667rem;
}

.stories-carousel .slick-track {
    display: flex;
}

.action-carousel-slider .slick-slide {
    height: inherit !important;
}

/***background size***/
/*
.background-120vh .fl-row-content-wrap{
    height:120vh;
}

.background-75vh .fl-row-content-wrap{
    height:75vh;
}
*/
/*****form****/
body:not(.fl-builder-edit) div.wpforms-container-full .wpforms-form input[type=checkbox]:focus, body:not(.fl-builder-edit) div.wpforms-container-full .wpforms-form input[type=radio]:focus{
    box-shadow:none!important;
}
div.wpforms-container-full .wpforms-form input[type=radio]:checked::before{
    top: 3px;
    left: 6px;
}
/*************tab***********/

.fl-tabs .fl-tabs-label.fl-tab-active {
    text-decoration: underline;
    color: var(--blue);
}
.fl-tabs .fl-tabs-panel-content-col2 p, .fl-tabs .fl-tabs-label{
    font-size:var(--sofia-pro);
}














body:not(.fl-builder-edit) .photo-overlap {
    position: absolute;
}

blockquote p {
    font-size: 1.9444rem;
    line-height: 2.8889rem;
    font-weight: 600;
}

blockquote {
    padding: 0;
    margin: 0;
    border: 0;
}

.photo-overlap {
    bottom: -66px;
    width: calc(100% - 140px);
    max-width: 1366px;
}

.photo-overlap.top {
    top: -37px;
}

.margin0auto {margin: 0 auto;}

.stats .fl-number .fl-number-text .fl-number-string span {
    font-family: var(--sofia-pro);
    font-size: 5.5556rem;
    font-weight: 700;
    line-height: 2.7778rem;
}

.stats.small .fl-number .fl-number-text .fl-number-string span {
    font-size: 2.7778rem;
}

.stats .fl-number .fl-number-text .fl-number-string {
    font-size: 5.5556rem;
    white-space: initial;
    text-align: left;
}

.scaleonhover .fl-col-content {
    transition: all .25s ease;
}

.scaleonhover .fl-col-content:hover {
    transform: scale(1.05);
}

button:hover, input[type=button]:hover, input[type=submit]:hover {
    background-color: none;
    border: 0;
}

.floating-img {
    position: relative;
    transition: all .5s cubic-bezier(0.235, 0.615, 0.185, 0.995);
}

.floating-txt {
    position: absolute;
    /* top: calc(100% - 200px); */
    bottom: -120px;
    transition: all .75s cubic-bezier(0.235, 0.615, 0.185, 0.995);
}

.floating-txt .fl-col-content {
    position: relative;
}

.floating-img .fl-photo-content {
    overflow: hidden;
    border-radius: 6px;
}

.fl-post .floating-img img {
    height: 45vw;
    width: 44vw;
    object-fit: cover;
    object-position: 0 0%;
    transform: scale(1.5);
    transition: all .5s cubic-bezier(0.235, 0.615, 0.185, 0.995);
}

.fl-module-photo-gallery.partners .uabb-photo-gallery-content {
    height: 10vw;
    background-color: white;
    padding: 24px 18px;
    border-radius: 6px;
    position: relative;
}

.fl-module-photo-gallery.partners .uabb-photo-gallery-content a {
    height: 100%;
    display: flex;
}

.fl-module-photo-gallery.partners .uabb-photo-gallery-content a::after {
    content: url(https://loopsunrise.wpengine.com/wp-content/uploads/Icon-feather-external-link.svg);
    position: absolute;
    bottom: 0;
    left: 0;
    padding-right: 17px;
    width: 100%;
    text-align: right;
}

.fl-module-photo-gallery.partners .uabb-photo-gallery-content img {
    object-fit: contain;
    max-height: 100%;
}

.ticker-banner--wrapper {
    height: 140px;
    max-height: 140px;
    padding: 17px 0;
}

.ticker-banner--wrapper .slick-list,
.ticker-banner--wrapper .slick-track,
.ticker-banner--wrapper .slick-slide,
.ticker-banner--wrapper .slick-slide div,
.ticker-banner--wrapper img {
    height: 100%;
}

.ticker-banner--wrapper .ticker-icon--item,
.ticker-banner--wrapper .ticker-text--item {
    display: flex !important;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    align-items: center;
    padding-right: 88px;
}

.ticker-banner--wrapper .ticker-text--item {
    font-family: var(--sofia-pro);
    font-weight: 700;
    font-size: 3.3333rem;
/*     white-space: nowrap; */
}

/* accordion centered */
.fl-builder-content .centered .fl-accordion-button .fl-accordion-button-icon {
    padding-right: 90px;
}

.fl-builder-content .fl-module.centered .fl-accordion-content p {
    max-width: 850px;
}

.fl-module-accordion {
    width: 100%;
}




/* SINGLE POST PAGE */
.fl-module-fl-post-content {
    max-width: 900px;
    margin: 0 auto;
}

.fl-module-fl-post-content p,
.fl-module-fl-post-content li,
.fl-module-fl-post-content span,
.fl-module-fl-post-content div {
    margin-bottom: 0;
    color: var(--navy);
}

.fl-module-fl-post-content p:not(:first-child) {
    margin-top: 44px;
}

.fl-module-fl-post-content blockquote {
    margin-top: 44px;
    font-family: var(--sofia-pro);
    font-weight: 700;
    font-style: italic;
    font-size: 35px;
    line-height: 45px;
}

.fl-module-fl-post-content img {
    border-radius: 10px;
    width: inherit;
    object-fit: contain;
}

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

/*
ul.social_networks::before {
    content: "Share";
    color: var(--white);
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    margin-right: 16px;
}
*/

ul.social_networks li {margin-right: 10px; }
footer ul.social_networks li {
    margin-right: 0px; 
}

ul.social_networks span {
    color: var(--orange);
    font-size: 45px;
}

ul.social_networks img,
ul.social_networks li {
    height: 45px;
    width: 45px;
}

.single-story .fl-module-html:not(:first-of-type) {
    margin-top: auto;
}

.story-info {
    display: flex;
    color: var(--white);
}

.story-info .story-country {
    background: var(--navy);
    padding: 8px 25px;
    border-radius: 50px;
    margin-right: 9px;
    white-space: nowrap;
    font-size: 14px;
    font-size: 0.7rem;
}

.story-date {
    font-size: 17px;
    font-size: 0.85rem;
    white-space: nowrap;
    margin: 8px;
    color:var(--white);
}

.fullscreenbg_half_aligncenter >.fl-col-content{
    background-position-x: -25vw;   
}



.single-story .fl-row:not(.story_single_header) p img {    
    display: block;
    margin-left: auto;
    margin-right: auto;
}



/* STICKY */

body:not(.fl-builder-edit) .sticky * {height:100% !important;}
body:not(.fl-builder-edit) .sticky .fl-photo img {object-fit:cover;}
body:not(.fl-builder-edit) .sticky {
    width: 100%;
    height: 100vh;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 0;
}
body:not(.fl-builder-edit) .sticky_content {
    margin-top:100vh;
    margin-bottom:100vh;
}

.full-width-img-txt p {margin:0}
.full-width-img-txt {
    background: rgba(6, 2, 70, 0.8);
    position: relative;
    z-index: 2;
    max-width: 350px;
    border-radius: 10px;
    padding: 20px 15px;
}

article.fl-post {
    margin-bottom: 0px;
}



/* AJAX post filter */
p.loading {
    text-align:center;
    margin:26px;
}

.ajax_filter_noresults { margin: 44px;}
.ajax_filter_noresults p{
        text-align: center;
   
}

.fl-404 .fl-post-header h1,
.fl-404 .fl-post-header h2,
.fl-404 .fl-post-header h3,
.fl-404 .fl-post-header h4,
.fl-404 .fl-post-header h5,
.fl-404 .fl-post-header p,
.fl-404 .fl-post-header div,
.fl-404 .fl-post-header span,
.fl-404 .fl-post-header ul,
.fl-404 .fl-post-header ol,
.fl-404 .fl-post-header li {
    color:var(--white)
}