.block-accordion .wp-block-details summary::after {
    content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12" fill="none"><path d="M10.3216 3.01226C10.0356 3.01232 9.76124 3.1175 9.55899 3.30468L6.00684 6.59106L2.45469 3.30468C2.35518 3.20936 2.23615 3.13333 2.10455 3.08102C1.97294 3.02872 1.8314 3.00119 1.68817 3.00004C1.54494 2.99889 1.4029 3.02414 1.27033 3.07432C1.13776 3.1245 1.01732 3.1986 0.916041 3.29231C0.814759 3.38601 0.734662 3.49744 0.680424 3.62009C0.626186 3.74274 0.598894 3.87415 0.600138 4.00666C0.601383 4.13918 0.63114 4.27013 0.687674 4.39189C0.744207 4.51365 0.826385 4.62377 0.929411 4.71584L5.2442 8.7078C5.44649 8.8949 5.72081 9 6.00684 9C6.29287 9 6.56719 8.8949 6.76948 8.7078L11.0843 4.71584C11.2351 4.57626 11.3378 4.39846 11.3794 4.2049C11.421 4.01133 11.3996 3.8107 11.318 3.62837C11.2364 3.44604 11.0981 3.29019 10.9208 3.18052C10.7435 3.07086 10.5349 3.01231 10.3216 3.01226Z" fill="%23111928"/></svg>');
    position: absolute;
    right: 0;
    top: 1px;
}

.block-accordion .wp-block-details[open] summary::after {
    transform: rotate(180deg);
}

.block-accordion .wp-block-details{
    border-radius: 12px;
    background: var(--UI-Light-Grey-BG, #F6F9FC);
    border: 2px solid #F6F9FC;
    padding: 15px 22px;
    padding-bottom: 0px;
    margin-top: 12px;
}

.block-accordion .wp-block-details[open] {
    background-color: #fff;
    border: 2px solid var(--Brand-Blue, #0956B1);
}
/**/

[data-carousel-item] {
    position: absolute;
    top: 0;
    left: 100%; /* Start offscreen to the right */
    width: 100%;
    /* height: 100%; */
    transition: transform 0.5s ease-in-out, visibility 0s 0.5s; /* Smooth slide transition with visibility delay */
    visibility: hidden; /* Hide items initially */
}

[data-carousel-item].active {
    left: 0; /* Move into view */
    transform: translateX(0);
    visibility: visible;
    z-index: 1;
    transition: transform 0.5s ease-in-out, visibility 0s 0s; /* No delay on visibility for the active slide */
}

[data-carousel-item].prev {
    left: 0;
    transform: translateX(-100%);
    z-index: 0;
    visibility: hidden;
}

[data-carousel-item].next {
    left: 0;
    transform: translateX(100%);
    z-index: 0;
    visibility: hidden;
}



@media (max-width: 767px) {
  .empty-placeholder {
    display: none;
  }
}

.mobilebox__close{
    display:none;
}


.no-arrow:after,
.no-arrow svg{
    display: none;
}

.single #content {
    overflow: visible;
}

figure.wp-block-image {
    overflow: hidden;
}

.align-features-btn{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.align-features-btn > div:last-child{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
}

.align-features-btn.centered > div:last-child{
    align-items: center;
}

.align-features-btn a{
    margin-top: auto;
}

.align-features-btn .outlinedBtn.no-arrow{
    border-bottom: solid 1px !important;
}

.simple-feature-list-block {
    gap: 0 10px;
}

.simple-feature-list-block li span{
    font-size: inherit !important;
    line-height: 150%;
}

.simple-feature-list-block li{
    align-items: flex-start;
    gap: 16px;
    margin-top: 8px !important;
}

.simple-feature-list-block li div{
    margin-top: 3px;
    width: 20px !important;
    height: 20px !important;
    border: none !important;
    background: rgba(243, 107, 49, 0.3) !important;
}

.simple-feature-list-block li div svg{
    width: 14px !important;
    height: 14px !important;
    fill: #F36B31;
}

.simple-feature-list-block.white-list li div{
    background: rgba(255, 255, 255, 0.3) !important;
}

.simple-feature-list-block.white-list li div svg{
    fill: #fff;
}

.simple-feature-list-block.text-sm li div{
    margin-top: 0px;
    width: 20px !important;
    height: 20px !important;
}

.simple-feature-list-block.text-sm li div svg{
    width: 14px !important;
    height: 14px !important;
}

.number-list {
    counter-reset: list-counter;
}

.number-list li {
    counter-increment: list-counter;
}

.number-list.number-list li .has-primary-background-color svg {
    display: none;
}

.number-list .has-primary-background-color::before {
    content: counter(list-counter);
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.rounded img{
    border-radius: 4px;
}


.align-features-btn > .flex-1{
    width: 100%;
}

hr.wp-block-separator{
    min-height: 1px;
}

header{
    z-index: 14 !important;
}


.img-logo{
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.90);
    backdrop-filter: blur(15px);
    display: flex;
    width: 360px;
    height: 255px;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto !important;
}

.img-logo img{
    width: auto !important;
    height: auto !important;
    max-width: 210px;
}

.top-bar-links li{
    border-left: solid 1px rgba(255, 255, 255, 0.20);
}

.top-bar-links a{
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    padding-left: 12px;
    line-height: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

h1 mark,
h2 mark,
h3 mark,
h4 mark,
h5 mark{
    border-radius: 12px;
    display: inline-block;
    padding: 0 11px;
    background: linear-gradient(90deg, #FF8D23 0%, #F36B31 100%) !important;
}

.primaryBtn:after,
.frm_style_formidable-style.with_frm_style .frm_submit button:after,
.wp-block-button__link.wp-element-button:after{
    height: 20px;
    content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none"><path d="M11.25 3.75L17.5 10M17.5 10L11.25 16.25M17.5 10H2.5" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}


.wp-block-button.is-style-outline .wp-block-button__link::after {
    content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none"><path d="M11.25 3.75L17.5 10M17.5 10L11.25 16.25M17.5 10H2.5" stroke="%23FF8D23" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}

.advanced-feature-list-block .services a:after{
    height: 20px;
    content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none"><path d="M11.25 3.75L17.5 10M17.5 10L11.25 16.25M17.5 10H2.5" stroke="%230956B1" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}

.video-btn{
    position: relative;
}

.video-btn:before{
    content: url(../../images/btn-play.svg);
    position: absolute;
    left:0;
    right:0;
    top:0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
    -moz-transform: scale(1.0);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}

.video-btn:hover:before{
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
}

.services div.object-cover img{
    aspect-ratio: inherit;
    width: inherit;
}

.services a svg{
    display: none;
}

.img-decoration,
.img-decoration-2,
.img-decoration-3{
    position: relative;
    overflow: hidden;
}

.img-decoration:after,
.img-decoration-2:after,
.img-decoration-3:after{
    content: '';
    background-image: url('data:image/svg+xml,<svg width="414" height="97" viewBox="0 0 414 97" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M435 54.1789C315.749 62.9032 140.428 -18.2022 -1 30.9012V68H435V54.1789Z" fill="%23F6F9FC"/><path d="M-11 71.7047C108.251 87.672 283.572 -60.7662 425 29.1022V97H-11V71.7047Z" fill="url(%23paint0_linear_2518_10755)"/><defs><linearGradient id="paint0_linear_2518_10755" x1="372" y1="48.5" x2="207" y2="48.5" gradientUnits="userSpaceOnUse"><stop stop-color="%23F6F9FC"/><stop offset="1" stop-color="%23F6F9FC" stop-opacity="0"/></linearGradient></defs></svg>');
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    bottom: -42px;
    height: 100px;
    background-repeat: no-repeat;
    background-size: 100%;
}

.img-decoration-2:after{
    background-image: url('data:image/svg+xml,<svg width="414" height="97" viewBox="0 0 414 97" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M435 54.1789C315.749 62.9032 140.428 -18.2022 -1 30.9012V68H435V54.1789Z" fill="white"/><path d="M-11 71.7047C108.251 87.672 283.572 -60.7662 425 29.1022V97H-11V71.7047Z" fill="url(%23paint0_linear_2518_10755)"/><defs><linearGradient id="paint0_linear_2518_10755" x1="372" y1="48.5" x2="207" y2="48.5" gradientUnits="userSpaceOnUse"><stop stop-color="white"/><stop offset="1" stop-color="white" stop-opacity="0"/></linearGradient></defs></svg>');
}

.img-decoration-3:after{
    background-image: url('data:image/svg+xml,<svg width="414" height="97" viewBox="0 0 414 97" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M435 54.1789C315.749 62.9032 140.428 -18.2022 -1 30.9012V68H435V54.1789Z" fill="%23FCFCF8"/><path d="M-11 71.7047C108.251 87.672 283.572 -60.7662 425 29.1022V97H-11V71.7047Z" fill="url(%23paint0_linear_2518_10755)"/><defs><linearGradient id="paint0_linear_2518_10755" x1="372" y1="48.5" x2="207" y2="48.5" gradientUnits="userSpaceOnUse"><stop stop-color="%23FCFCF8"/><stop offset="1" stop-color="%23FCFCF8" stop-opacity="0"/></linearGradient></defs></svg>');
}

.four-cols-services .img-decoration:after{
    height: 80px;
}

.hero-decoration{
    position: relative;
}

.hero-decoration:before{
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: -12px;
    z-index: 1;
    pointer-events: none;
    width: 90%;        
    height: 800px;     
    background-image: url(../../images/hero-decoration-1.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom left;
}


.hero-decoration:after{
    content: url(../../images/hero-decoration-2.png);
    display: block;
    position: absolute;
    right: 0;
    bottom: -12px;
    z-index: 1;
    pointer-events: none;
}

.hero-decoration .wp-block-cover .wp-block-cover__inner-container{
    z-index: 2;
}

.decoration-blue-bg .decoration-top:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: -120px;
    width: 100%;
    height: 120px;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="1440" height="120" viewBox="0 0 1440 120" fill="none"><path d="M1440 88.7069C1046.14 108.46 467.102 -75.1747 0 36.0027V120H1440V88.7069Z" fill="%230956B1"/></svg>');
    background-size: 100%;
    background-repeat: no-repeat;
    pointer-events: none;
    background-position: top left;
    pointer-events: none;
}

.decoration-blue-bg .decoration-top:after {
    content: '';
    display: block;
    position: absolute;
    right: 0;
    top: -120px;
    width: 100%;
    height: 120px;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="1440" height="120" viewBox="0 0 1440 120" fill="none"><path d="M0 88.7069C393.858 108.46 972.898 -75.1747 1440 36.0027V120H0V88.7069Z" fill="url(%23paint0_linear_2103_1087)"/><defs><linearGradient id="paint0_linear_2103_1087" x1="1310" y1="60" x2="830.5" y2="60" gradientUnits="userSpaceOnUse"><stop stop-color="%23094E97"/><stop offset="1" stop-color="%23094E97" stop-opacity="0"/></linearGradient></defs></svg>');
    background-size: 100%;
    background-repeat: no-repeat;
    pointer-events: none;
    background-position: top right;
    z-index: -1;
    pointer-events: none;
}

.decoration-blue-bg .decoration-bottom:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: -120px;
    width: 100%;
    height: 120px;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="1440" height="120" viewBox="0 0 1440 120" fill="none"><path d="M1440 31.2931C1046.14 11.5398 467.102 195.175 0 83.9973V0H1440V31.2931Z" fill="url(%23paint0_linear_2103_1120)"/><defs><linearGradient id="paint0_linear_2103_1120" x1="130" y1="60" x2="609.5" y2="60" gradientUnits="userSpaceOnUse"><stop stop-color="%230957A8"/><stop offset="1" stop-color="%230957A8" stop-opacity="0"/></linearGradient></defs></svg>');
    background-size: 100%;
    background-repeat: no-repeat;
    pointer-events: none;
    background-position: bottom left;
    pointer-events: none;
    z-index: -1;

}

.decoration-blue-bg .decoration-bottom:after {
    content: '';
    display: block;
    position: absolute;
    right: 0;
    bottom: -120px;
    width: 100%;
    height: 120px;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="1440" height="120" viewBox="0 0 1440 120" fill="none"><path d="M0 31.2931C393.858 11.5398 972.898 195.175 1440 83.9973V0H0V31.2931Z" fill="%230956B1"/></svg>');
    background-size: 100%;
    background-repeat: no-repeat;
    pointer-events: none;
    background-position: bottom right;
    pointer-events: none;
}

.decoration-blue-bg:before{
    content: url(../../images/blue-sec-decoration.png);
    position: absolute;
    left: -90px;
    right: 0;
    top: -150px;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 3;
}

.decoration-blue-bg.decoration-v2:before{
    left:225px;
    top: auto;
}

.decoration-blue-bg {
    position: relative;
    z-index: 2;
}

.cta-decoration:before{
    content: url(../../images/footer-cta-decoration.png);
    position: absolute;
    right: 0;
    top: 0px;
    pointer-events: none;
    z-index: 1;
}

.popup:has(.popup-video) > .relative > .relative > .flex{
    padding: 0;
}

.popup:has(.popup-video) h3{
    display: none;
}

.popup:has(.popup-video) button{
    position: absolute;
    right: 20px;
    top: 20px;
    background-image: linear-gradient(90deg, #ff8d23 0, #f36b31 100%);
    border-radius: 5px 0 5px 5px;
    z-index: 1;
    color: #fff;
}

.popup:has(.popup-video) video{
    margin: 0;
}

.top-bar p{
    color: var(--Text-White-Secondary, rgba(255, 255, 255, 0.60));
    font-family: "Google Sans Flex";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px; /* 150% */
    display: flex;
    gap: 8px;
    align-items: center;
}

.top-bar p a{
    color: #FCFCF8;
    display: inline-block;
    margin-left: 8px;
    margin-right: 24px;
}

.top-bar p a:last-child{
    margin-right: 0px;
}

.top-bar p:before{
    height: 20px;
    content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M1.5 4.5C1.5 10.0227 5.97733 14.5 11.5 14.5H13C13.3978 14.5 13.7794 14.342 14.0607 14.0607C14.342 13.7794 14.5 13.3978 14.5 13V12.0853C14.5 11.7413 14.266 11.4413 13.932 11.358L10.9833 10.6207C10.69 10.5473 10.382 10.6573 10.2013 10.8987L9.55467 11.7607C9.36667 12.0113 9.042 12.122 8.748 12.014C7.65659 11.6128 6.66544 10.9791 5.84319 10.1568C5.02094 9.33456 4.38725 8.34341 3.986 7.252C3.878 6.958 3.98867 6.63333 4.23933 6.44533L5.10133 5.79867C5.34333 5.618 5.45267 5.30933 5.37933 5.01667L4.642 2.068C4.60143 1.9058 4.50781 1.7618 4.37604 1.65889C4.24426 1.55598 4.08187 1.50006 3.91467 1.5H3C2.60218 1.5 2.22064 1.65804 1.93934 1.93934C1.65804 2.22064 1.5 2.60218 1.5 3V4.5Z" fill="white" fill-opacity="0.6"/></svg>');
}


footer{
    padding-top: 120px;
    margin-top: -120px;
}

.frm_style_formidable-style.with_frm_style .form-field{
    margin-bottom: 0;
}

.frm-show-form .frm_fields_container{
    row-gap: 18px;
}


figure.ml-auto img{
    margin-left:auto;
}


.blog-terms a{
    border-radius: var(--rounded-md, 6px);
    background: var(--UI-Outline, rgba(11, 53, 95, 0.13));
    color: var(--Brand-Blue, #0956B1);
    text-align: center;
    font-family: "Google Sans Flex";
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 18px */
    padding:2px 10px;
    display: inline-block;
    pointer-events: none;
}

.wp-block-post-template-is-layout-grid li,
.related-post-li{
    overflow: hidden;
    position: relative;
}

.wp-block-post-template-is-layout-grid .wp-block-post-excerpt__more-link,
.wp-block-post-template-is-layout-grid .wp-block-post-excerpt__more-link:hover,
.related-read-more{
   color: var(--Brand-Blue, #0956B1);
    font-family: "Google Sans Flex";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px; /* 112.5% */
    display: flex;
    gap: 5px;
    margin-top: 24px;
    align-items: center;
    position: absolute;
    left:24px;
    bottom: 27px;
    border-bottom: none !important;
}

html body.single .related-post-li .related-read-more{
    margin-left: 40px !important;
    border-bottom: solid 1px !important;
    font-weight: 600 !important;
    text-transform: capitalize;
}

.wp-block-post-template-is-layout-grid .wp-block-post-excerpt__more-link strong{
    font-weight: 700 !important;
}

.wp-block-post-template-is-layout-grid .wp-block-post-excerpt__more-link:after,
html body.single .related-post-li .related-read-more:after{
    content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none"><path d="M11.25 3.75L17.5 10M17.5 10L11.25 16.25M17.5 10H2.5" stroke="%230956B1" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    height: 19px;
}


.wp-block-post-template-is-layout-grid h2{
    padding: 24px 0px 0;
    margin-bottom: 12px;
    margin-top: 0;
    margin-left: 0 !important;
}

.wp-block-post-template-is-layout-grid .wp-block-post-excerpt{
    padding: 0 0px 32px;
    margin-top: 0;
}



.footer-menu-2 li a{
    color: #fff;
}

.frm_style_formidable-style.with_frm_style .frm_submit button{
    border-radius: 100px;
    border-radius: 1000px;
    background: var(--Brand-Orange-Gradient, linear-gradient(90deg, #FF8D23 0%, #F36B31 100%));
    box-shadow: 0 26px 39px 0 rgba(0, 0, 0, 0.05);
    color: var(--Base-100, #FFF);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px; /* 24px */
    padding: 19px 28px;
    border: none !important;
    box-shadow: none !important;
    display: flex;
    align-items: center;
    gap: 10px;
    width: auto !important;
}

.frm_style_formidable-style.with_frm_style .frm_submit button:hover,
.frm_style_formidable-style.with_frm_style .frm_submit button:focus,
.frm_style_formidable-style.with_frm_style .frm_submit button:active{
    background: var(--Brand-Orange-Gradient, linear-gradient(90deg, #FF8D23 0%, #F36B31 100%));
}

.frm-show-form .frm_submit.frm_flex{
    justify-content: flex-end;
}

.cta-offset,
.single .single-location{
    margin-bottom: -140px;
    z-index: 2;
}

body{
    overflow-x: hidden;
}

body #content > article{
    overflow: clip;
}

.frm-show-form .frm_form_field>.frm_primary_label{
    color: var(--Text-Black-Primary, #152C44);
    font-family: "Google Sans Flex";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 24px */
    margin-bottom: 4px;
    padding: 0;
}

.frm-show-form input[type="text"]::placeholder,
.frm-show-form input[type="email"]::placeholder,
.frm-show-form input[type="tel"]::placeholder,
.frm-show-form input[type="url"]::placeholder,
.frm-show-form input[type="number"]::placeholder,
.frm-show-form textarea::placeholder {
    font-size: 16px;
}


.frm-show-form input[type="text"], .frm-show-form input[type="email"], .frm-show-form input[type="tel"], .frm-show-form input[type="url"], .frm-show-form input[type="number"], .frm-show-form select, .frm-show-form textarea{
    border-radius: 12px;
    border: 1px solid rgba(11, 53, 95, 0.13);
    background-color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
    padding: 12px 20px;
    height: 48px;
}

 .frm-show-form textarea{
    border-radius: 12px;
    height: 134px;
}

 .block-accordion .wp-block-details summary{
    display: block;
 }

 .active .menu-toggle-open rect{
    fill:#fff;
}

.active .menu-toggle-open rect:first-child{
    fill: transparent;
}

.map-iframe iframe{
    border-radius: 20px;
    overflow: hidden;
    max-width: 100%;
}

.contact-info p{
    font-size: 18px;
}

.contact-info p:has(span){
    line-height: 200%;
    color: #525B66;
}

.contact-info p span{
    width: 50%;
    display: inline-block;
    color: #111928;
}

.form-terms p {
    font-size: 11px;
    margin: 0 0 10px;
}




.single #content > .container > .flex.justify-between{
    display: none;
}

/*
.single .wp-block-list li{
    padding-left: 5px;
}*/

.single .wp-block-list li::marker{
    font-size: 16px;
}
/*
.single #content .wp-block-list{
    margin-left: 10px;
}*/

.single aside .container > h2{
    text-align: center;
}

.single #content > section {
    background-color: #fff !important;
}

.single #content > article{
	padding-top:0px !important;
}

.footer-menu>li>a{
    font-size: 18px;
    font-weight: 700;
}

.top-bar{
    transition: all 0.3s ease;
}

.active .top-bar{
    height: 0;
    overflow: hidden;
    padding: 0;
}

.hero-decoration-v2:after{
    content: '';
    background-image: url('data:image/svg+xml,<svg width="1440" height="120" viewBox="0 0 1440 120" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 88.7069C393.858 108.46 972.898 -75.1747 1440 36.0027V120H0V88.7069Z" fill="url(%23paint0_linear_2214_2166)"/><path d="M1440 88.7069C1046.14 108.46 467.102 -75.1747 0 36.0027V120H1440V88.7069Z" fill="white"/><defs><linearGradient id="paint0_linear_2214_2166" x1="1310" y1="60" x2="830.5" y2="60" gradientUnits="userSpaceOnUse"><stop stop-color="white"/><stop offset="1" stop-color="white" stop-opacity="0"/></linearGradient></defs></svg>');
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 240px;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: bottom center;
    z-index: 1;
}

.map-iframe iframe{
    height: 490px;
    width: 100%;
}

ul.wp-block-list,
ul.wp-block-list li{
    list-style: disc;
}

.wp-block-list li{
    padding-left: 0;
    margin-left: 20px;
}

.single .entry-content .wp-block-list li{
    margin-bottom: 0;
}

ol.wp-block-list{
    list-style-type: auto;
}

.wp-block-list.space-0 li{
    margin-bottom: 0 !important;
}

.wp-block-post-author__content{
    display: flex;
    white-space: nowrap;
    justify-content: flex-start;
    gap: 5px;
    display: none;
}

.wp-block-post-author__content p{
    width: auto !important;
}

.wp-block-post-author__content p:first-child{
    text-transform: none !important;
}


#content a[type="tel"]{
    border: none !important;
    padding: 0 !important;
}

.single article.format .wp-block-column>*+.wp-block-heading{
    margin-top: 80px;
}

.error404 footer{
    margin-top: 0 !important;
}

.popup .wp-block-video video{
    margin: 0 !important;
}

.popup .border-b.p-4{
    padding: 0;
    border-bottom: none;
}

.popup h3{
    display: none !important;
}

.popup button{
    color: #fff !important;
    width: 30px;
    height: 30px;
    position: absolute;
    right: -12px;
    background: #F36B31 !important;
    border-radius: 25px;
    top: -12px;
}

.popup > .relative:after{
    content: '';
    display: block;
    height: 20px; 
}
.header__menu{
    display: none;
}

.header__menu.header__menu--active{
    display: block;
}

@media (min-width:1024px) and (max-width:1200px){
    .decoration-blue-bg .decoration-top:before,
    .decoration-blue-bg .decoration-top:after{
        top: -80px;
    }

    .decoration-blue-bg .decoration-bottom:before,
    .decoration-blue-bg .decoration-bottom:after{
        bottom: -80px;
    }
}


@media (min-width:768px) and (max-width:1023px){
    .decoration-blue-bg .decoration-top:before,
    .decoration-blue-bg .decoration-top:after{
        top: -50px;
    }

    .decoration-blue-bg .decoration-bottom:before,
    .decoration-blue-bg .decoration-bottom:after{
        bottom: -50px;
    }
}

@media (max-width:1024px){
    header.fixed {
        background-color: rgb(9 86 177) !important;
    }
}


@media (max-width:1023px){
    .primaryBtn{
        display: none !important;
    }
    header:has(.bg-mobileMenuBg.flex) .top-bar{
        display: none;
    }

    
}



@media (max-width:767px){

    .w-full > .wp-block-button{
        width: 100%;
    }

    .es-load-more-button{
        width: 100% !important;
    }


    .imgs-full-width .w-full img{
        width: 100%;
    }

    .frm-show-form .frm_submit .frm_button_submit{
        width: 100% !important;
    }

    .footer-menu>li>a{
        margin-bottom: 0;
    }

    .footer-bottom{
        flex-direction: column;
    }

    .footer-menu-2 {
        flex-wrap: wrap;
        line-height: 100%;
        margin-top: 30px;
    }

    .footer-menu-2 li a{
        font-size: 12px;
    }

    .map-iframe iframe{
        height: 250px;
    }

    body:has(.bg-mobileMenuBg.flex) .pre-header{
        display: none;
    }

    .wp-block-gallery.has-nested-images figure.wp-block-image:not(#individual-image){
        width: 100%;
    }

    .decoration-blue-bg .decoration-top:before,
    .decoration-blue-bg .decoration-top:after{
        top: -35px;
        height: 50px;
    }

    .decoration-blue-bg .decoration-bottom:before,
    .decoration-blue-bg .decoration-bottom:after{
        bottom: -35px;
        height: 50px;
    }

    .decoration-blue-bg:before,
    .cta-decoration:before{
        display: none;
    }

    .popup:has(.popup-video) button{
        right: 16px;
        top: 17px;
    }

    
    .top-bar p{
        font-size: 10px;
        gap: 4px;
    }

    .top-bar p:before{
        height: 17px;
        transform: scale(0.9);
        -webkit-transform: scale(0.9);
        -moz-transform: scale(0.9);
    }

    .img-logo{
        width: 200px;
        height: 135px;
        padding: 40px 37px;
    }

    .img-logo img{
        width: 100% !important;
    }

}

@media (max-width:424px){
    .top-bar p:before{
        display: none;
    }

    .img-decoration:after, .img-decoration-2:after, .img-decoration-3:after{
        bottom: -50px;
    }

    .decoration-blue-bg .decoration-top:before, .decoration-blue-bg .decoration-top:after{
        top: -30px;
    }

    .decoration-blue-bg .decoration-bottom:before, .decoration-blue-bg .decoration-bottom:after{
        bottom: -30px;
    }
}