/*
font-family: "Inter", sans-serif;
*/

:root {
    --font-main: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --font-secondary: area-normal-light;
    
    --color-main: #1F1F1F;
    --color-secondary: #133D55;
    --color-primary: #365791;
    --color-light-blue: #4B82A2;
    --color-dark-blue: #002D55;
    --color-white: #ffffff;
    --color-highlight: #56824D;


   
    --fs-80: clamp(40px, 4.167vw, 80px);
    --fs-72: clamp(35px, 3.75vw, 72px);
    --fs-70: clamp(34px, 3.646vw, 70px);
    --fs-68: clamp(33px, 3.542vw, 68px);
    --fs-58: clamp(32.5px, 3.021vw, 58px);
    --fs-51: clamp(28px, 2.656vw, 51px);
    --fs-50: clamp(31.5px, 2.604vw, 50px);
    --fs-48: clamp(31.5px, 2.5vw, 48px);
    --fs-45: clamp(31px, 2.344vw, 45px);
    --fs-42: clamp(30px, 2.188vw, 42px);
    --fs-40: clamp(29px, 2.083vw, 40px);
    --fs-39: clamp(27px, 2.031vw, 39px);
    --fs-36: clamp(25px, 1.875vw, 36px);
    --fs-35: clamp(24.5px, 1.823vw, 35px);
    --fs-32: clamp(24px, 1.667vw, 32px);
    --fs-30: clamp(23.5px, 1.563vw, 30px);
    --fs-29: clamp(23px, 1.51vw, 29px);
    --fs-28: clamp(22.5px, 1.458vw, 28px);
    --fs-27: clamp(22px, 1.406vw, 27px);
    --fs-26: clamp(19px, 1.354vw, 26px);
    --fs-24: clamp(17px, 1.25vw, 24px);
    --fs-22: clamp(17px, 1.146vw, 22px);
    --fs-20: clamp(16px, 1.042vw, 20px);
    --fs-19: clamp(16px, 0.99vw, 19px);
    --fs-18: clamp(16px, 0.938vw, 18px);
    --fs-16: clamp(12px, 0.833vw, 16px);
}
html, body {
    position: relative;
    width: 100%;
    min-height: 100%;
}
.scroll-container {
  scroll-behavior: smooth;
}
body {
    font-family: var(--font-main);
    font-size: var(--fs-18);
    color: var(--color-main);
}
#bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;  
}

a { color: var(--color-highlight); text-decoration: none; }
a:focus, a:hover{ /*outline:none;*/ color:inherit; text-decoration: none;}
a, a:before, a:after, a img, input[type="submit"], button, a *{
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
}
img {
    max-width:100%;
    width: 100%;
    height: auto;
}
.border-radius-none {
    border-radius: 0;
}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6  {
    margin: 0;
    font-family: var(--font-main);
    color: var(--color-secondary);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 24px;
}
.text-white h1,  .text-white h2,  .text-white h3,  .text-white h4,  .text-white h5,  .text-white h6, .text-white p, .text-white ul, .text-white a:not(.color-highlight)  {
    color: var(--color-white);
}
.text-main h1,  .text-main h2,  .text-main h3,  .text-main h4,  .text-main h5,  .text-main h6, .text-main p, .text-main a, .text-main a.eyebrow, .text-main ul, .text-main {
    color: var(--color-main);
}
h1, .h1  {
    margin-bottom: 30px;
    font-size: var(--fs-70);
}
.h2, h2 {
    font-size: var(--fs-48);
    line-height: 1.19;
    margin-bottom: 32px;
}
h3, .h3 { font-size: var(--fs-40); }
h4, .h4 { font-size:var(--fs-27); margin-bottom: 24px;}
.fw-semibold { font-weight: 600; }

p, ul {
    margin-bottom: 32px;
    color: var(--color-main);
    font-size: var(--fs-18);
    line-height: 1.67;
}
.fs-16 { font-size: var(--fs-16)!important; }
.fs-18 { font-size: var(--fs-18); }
.fs-20 { font-size: var(--fs-20); }
.fs-24 { font-size: var(--fs-24); }
.fs-35 { font-size: var(--fs-35); }
.font-main { font-family: var(--font-main); }
.font-secondary { font-family: var(--font-secondary); }

.bg-light-blue {
    background-color: var(--color-light-blue);
}
.bg-dark-blue {
    background-color: var(--color-dark-blue);
}
.bg-secondary {
    background: var(--color-secondary)!important;
}
.bg-highlight {
    background: var(--color-highlight)!important;
}
.color-highlight {
    background: var(--color-highlight);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    transition: .3s ease-out;
}
.color--secondary {
    color: var(--color-secondary)!important;
}
a:hover .color-highlight, a.color-highlight:hover {
    opacity: .8;
}
.bg-linear-blue {
    background: linear-gradient(360deg, #56824D 0%, #133D55 100%);
}
.color-linear-blue {
    background: var(--color-linear-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    transition: .3s ease-out;
}
.bg-linear-blue * {
    color: inherit;
}
hr {
    margin: 33px 0;
}
section {
    padding: clamp(80px, 12.593vh, 136px) 0;
}
.linear-bg {
    position: relative;
}
.linear-bg:after {
    content: '';
    position: absolute; 
	inset: 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #E6F4F1 100%);
    min-height: 667px;
    z-index: -1;
}
.padding-y {
    padding: clamp(80px, 11.852vh, 128px) 12.5px;
}
.container, .small.container, .big.container {
    width: 98%;
    max-width: 100%;
}
.d-flex.container, .d-flex.container-fluid{
    justify-content: space-between;
}
@media only screen and (min-width: 1200px) {
    .container {
        max-width: 1472px;
        width: 76.66667%;
    }
    .small.container {
        max-width: 1457px;
        width: 75.885417%;
    }
    .big.container {
        max-width: 1800px;
        width: 93.75%;
    }
}
@media only screen and (max-width: 1921px) {
    .container-fluid {
        max-width: 1920px;
        margin: 0 auto!important;
    }
}
.button {
    font-size: var(--fs-18);
    text-transform: uppercase;
    font-weight: 800;
    color: var(--color-white)!important;
    background: var(--color-highlight);
    border-radius: 100px;
    border: none ;;
    line-height: 1.2;
    display: inline-block;
    padding: 20px clamp(20px, 2.083vw, 40px);
    transition: .3s ease-out;
    letter-spacing: 10%;
    border-radius: 36px;
    position: relative;
    overflow: hidden;
}
.button.btn--dark {
    background: var(--color-dark-blue);
}
.button:after,
.button.btn--dark:after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, #56824D 0%, #133D55 54.19%);
    opacity: 0;
    z-index: 2;
    transition: .3s ease-out;
}
.button.btn--dark:after {
    background: linear-gradient(270deg, #56824D 27.76%, #002D55 84.37%);
} 
.button span {
    position: relative;
    z-index: 3;
}
.button:hover::after { 
    opacity: 1;
}

.pagination {
    column-gap: 28px;
}
.pagination a {
    color: var(--color-highlight);
}
.page-numbers:not(.prev.page-numbers, .next.page-numbers) {
    display: none;
}
.pagination .next, .pagination .prev {
    background: transparent;
    width: clamp(30px, 2.292vw, 44px);
    height: clamp(30px, 2.292vw, 44px);
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    color: #02559A;
    background: #E1E6EA;
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;

}
.pagination .next:hover, .pagination .prev:hover {
    color: var(--color-secondary); 
}
.object-fit-cover {
    object-fit: cover;
    object-position: center center;
}
.object-fit-contain {
    object-fit: contain;
    object-position: center center;
}

.eyebrow {
    font-weight: 500;
    font-size: var(--fs-20);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-highlight);
    margin-bottom: 35px;
}

.border-line { border: solid 1px var(--color-highlight); }
.border-line-left { border-left: solid 1px var(--color-highlight); }
.border-line-right { border-right: solid 1px var(--color-highlight); }
.border-line-bottom { border-bottom: solid 1px var(--color-highlight); }
.border-line-top { border-top: solid 1px var(--color-highlight); }
.bottom-line-linear {
    width: 100%;
    height: 1px;
    background: var(--color-linear-blue);
}

.position-relative { 
    position: relative;
    z-index:2; 
}
.slick-dots {
    list-style-type: none;
    padding-left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 5px;
    margin: 0;
}
.slick-dots li button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-light-blue);
    border: none;
    padding: 0;
    text-indent: -9999px; 
    overflow: hidden;
}
.slick-dots li.slick-active button {
    background: var(--color-highlight);
}
.slick-arrow {
    background: transparent;
    border: none;
    /*width: clamp(30px, 2.813vw, 54px);
    height: clamp(30px, 2.813vw, 54px);*/
    height: 54px;
    width: 54px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slick-prev {
    transform: scaleX(-1);
}
.custom-dots {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-top: 20px;
}
.custom-dots li button {
    height: 5px;
    width: 5px;
    background-color: #D3D4D6;
    /*border: none;
    padding: 0;*/
    cursor: pointer;
    transition: background 0.3s ease;
    border-radius: 100%;
    margin: 0 3px ;
}
.custom-dots li.slick-active button {
    background-color: #3F495F;
    padding: 1.5px 0 1.5px;
}
@media only screen and (min-width: 769px) {  
    .slick-dots {
        padding-right: clamp(30px, 9.635vw, 185px);
        justify-content: flex-end;
    }
    .custom-dots li { 
        flex-grow: 1; 
    }
    .custom-dots li button {
        height: 1px;
        width: 100%;
        background-color: #D3D4D6;
        border: none;
        padding: 0;
        cursor: pointer;
        transition: background 0.3s ease;
        border-radius: 0;
    }
}
/*END GENERAL*/

/*HEADER*/
.header {
    left: 0;
    right: 0;
    top: 0;
    z-index: 101;
    padding: 0;
}
.header .logo {
    width: 100%;
    max-width: clamp(150px, 13.958vw, 268px);
    flex: 0 0 auto;
    padding: 14px 0;
}
.header .logo svg {
    width: 100%;
    height: auto;
}
.logo:hover {
    opacity: .8;
}
.navigation {
    align-self: center;
}
.navigation ul {
    margin-bottom: 0;
    padding-left: 0;
}
.navigation ul#menu-main-menu {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: inline-flex;
    align-items: center;
}
.navigation ul li {
    display: inline-block;
    margin-right: 15px;
}
.navigation ul li:last-child {
    margin-right: 0;
}
.navigation ul li a, .footer-nav ul li a {
    color: var(--color-white);
    font-size: var(--fs-16);  
    position: relative;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    text-decoration: none;
    line-height: 1;
}
.navigation ul li a {
    color: var(--color-light-blue);
}
.navigation ul li a:before {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    width: 0;
    border-top: solid 1px var(--color-highlight);
    margin: 0 auto; 
}
.menu-item-has-children:after {
/*    content: "\f0d7";*/
    font-family: var(--fa-font-solid); 
    font-weight: 700;
    color: var(--color-main);
    display: inline-block;
    transform: scaleY(1);
    transition: transform 0.3s ease;
}
.menu-item-has-children:hover:after {
    color: var(--color-highlight);
    transform: scaleY(-1);
}
.menu-item-has-children {
    position: relative;
}
.navigation ul li a:hover {
    color: var(--color-highlight);
}
.navigation ul li.current-menu-item a:before,
.navigation ul li:hover > a:before {
/*    width: 100%;*/
    z-index: 2;
}
.navigation ul li ul.sub-menu {
    position: absolute;
    transition: .15s linear;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    z-index: 1;
    padding-top: 10px;
    z-index: 999;
    border-radius: clamp(25px, 1.875vw, 36px);
    overflow: hidden;
    left: clamp(-40px, -2.083vw, -30px);
    text-align: center;
}
.navigation ul li:hover > ul.sub-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0px);
}
.navigation ul li ul.sub-menu li {
    display: block;
    margin: 0;
	margin-bottom: .5px;
}
.navigation ul li ul.sub-menu li a {
    display: block;
    border-bottom: none;
    text-transform: capitalize;
    transition: .3s linear;
    background: var(--color-light-blue);
    color: var(--color-white);
    letter-spacing: unset;
    font-size: var(--fs-16);
    line-height: 1;
    padding: clamp(15px, 1.944vh, 21px) clamp(20px, 2.344vw, 45px);
    letter-spacing: .1;
    position: relative;
    border-radius: 0;
    width: clamp(180px, 11.042vw, 212px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: unset;
}
.navigation ul li ul.sub-menu li:first-child a {
    border-top-left-radius: clamp(25px, 1.875vw, 36px);;
    border-top-right-radius: clamp(25px, 1.875vw, 36px);;
}
.navigation ul li ul.sub-menu li a:hover {
    background: var(--color-highlight);
    color: var(--color-white);
}
header.header .header-phone {
    padding: 13px clamp(15px, 1.979vw, 38px);
    align-items: center;
    column-gap: clamp(10px, 0.833vw, 16px);
    line-height: 1.2;
    font-size: var(--fs-32);
    color: var(--color-white);
    background: var(--color-secondary);
    display: flex;
}
@media only screen and (min-width: 1400px) {
    .navigation ul li {
        margin-right: clamp(10px, 2.656vw, 51px);
    }
}
@media only screen and (max-width: 991px) {
    .header .container-fluid {
        padding-right: 0;
    }
    .header .bg-secondary {
        min-width: clamp(100px, 42.727vw, 188px);
    }
}
/*END HEADER*/

/*FOOTER*/
.footer-nav {
    background: var(--color-light-blue);
}
.footer-nav ul {
    padding: 30px 0 clamp(30px, 3.148vh, 34px);
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(32px, 3.125vw, 60px);
}
.footer-nav ul li {
    line-height: 1;
}
.footer-nav ul li a {
    text-transform: uppercase;
    line-height: 1;
}
.footer-nav ul li a:hover {
	opacity: .8;
}
footer.footer {
    font-size: var(--fs-18);
}
footer.footer a {
    color: inherit;
}
footer.footer .ftop { 
    padding-block: clamp(80px, 13.611vh, 147px);
}
footer.footer .eyebrow {
    color: var(--color-highlight);
    margin-bottom: 19px;
}
footer.footer .logo {
    max-width: 312px;
    width: 100%;
    margin-bottom: 29px;
}
footer.footer .logo svg {
    width: 100%;
}
footer.footer .web-info, footer.footer .web-info a, footer.footer .web-info p {
    font-size: var(--fs-18);
    line-height: 1.8;
}
footer .social {
    display: flex;
    align-items: center;
    column-gap: clamp(10px, 1.25vw, 24px);
    justify-content: center;
    margin-bottom: 40px;
}
footer .social a {
    font-size: var(--fs-24)!important;
}
footer .social a:hover {
	color: var(--color-highlight);
}
footer a:hover {
    opacity: .8;
}
.footer-bottom__menu ul {
    display: flex;
    padding-left: 0;
    justify-content: center;
    margin-bottom: 0;
}
.footer-text,
.footer-bottom {
    font-weight: 300;
}
.footer-bottom__menu ul li:after {
    content: '|';
    padding: 0 6px;
}
.footer-bottom__menu ul li:last-child::after {
    display: none;
}
@media only screen and (min-width: 992px) {
    footer.footer .logo {
        max-width: clamp(250px, 16.25vw, 312px);
    }
}
@media only screen and (max-width: 1300px) {
    .container--footer-bottom {
        width: 100%;
    }
}
@media only screen and (max-width: 991px) {
    .footer-nav ul {
        flex-direction: column;
    }
    .footer-bottom .row {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .lfs {
        justify-content: center;
    }
    .footer-bottom__menu ul {
        justify-content: center;
    }
    footer .social {
        justify-content: center;
    }
    footer.footer .logo svg {
        width: 100%;
        margin: 0 auto;
    }
}
@media only screen and (max-width: 768px) {
    footer.footer .logo {
        margin-inline: auto;
    }
}
@media only screen and (max-width: 400px) {
    .lfs {
        flex-direction: column;
    }   
}



/*HOMEPAGE*/
#home-banner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
	padding-block: 123px;
}
#home-banner:after {
    content: '';
    background: linear-gradient(0deg, rgba(22, 65, 90, 0.2), rgba(22, 65, 90, 0.2));
}
#home-video-bg,
#home-banner:after {
    position: absolute;
    top: 0; left: 0; bottom: 0; right: 0;
}
#home-video-bg,
#home-video-bg video {
    object-fit: cover;
    object-position: center;
    z-index: -1;
    width: 100%;
    height: 100%;
}
#home-banner p {
    font-size: var(--fs-24);
    line-height: 1.28;
    margin-bottom: clamp(30px, 3.704vh, 40px);
}
#home-banner .eyebrow {
    font-size: var(--fs-24);
    color: var(--color-highlight);
    max-width: unset;
    margin-bottom: clamp(30px, 3.704vh, 40px);
    letter-spacing: .56em;
}
.banner {
    position: relative;
    z-index: 2;
    overflow: ovelay;
}
#page-banner {
    text-align: center;
    padding-block: clamp(80px, 13.796vh, 149px);
    overflow: hidden;
    background: transparent none no-repeat center center / cover scroll;
    min-height: clamp(350px, 38.704vh, 418px);
}
#page-banner:after,
#page-banner:before {
    content:'';
    position: absolute;
    left: 0; top: 0; right: 0; bottom: 0;
    background: linear-gradient(0deg, rgba(22, 65, 90, 0.2), rgba(22, 65, 90, 0.2));
    z-index: 1;
}
#page-banner.banner--contact:after,
#page-banner.banner--contact:before {
    display: none;
}
#page-banner.banner--contact .eyebrow {
    color: var(--color-highlight)!important;
}
#page-banner:before {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
}
#page-banner * {
    color: var(--color-white);
}
#page-banner .h1, #page-banner h1 {
    margin-inline: auto;
    max-width: 20ch;
}
.btns {
    display: flex;
    justify-content: center;
    gap: clamp(23px, 1.51vw, 29px);
}
.banner__ft-img {
    position: absolute;
    right: clamp(15px, 1.563vw, 30px);
	right: 30px;
    bottom: 0;
/*     max-width: clamp(400px, 31.51vw, 605px); */
	max-width: clamp(400px, 28.51vw, 605px);
    width: 100%;
}
.banner__ft-img img {
    width: 100%;
    object-fit: cover;
    object-position: center top;
    max-height: clamp(400px, 50.185vh, 542px);
}
@media only screen and (min-width: 991px) {
    #home-banner {
        height: 87.778vh;
		padding-block: 0;
    }
    .container--banner-contact {
        width: 90%;
    }
}
@media only screen and (max-width: 1250px) {
    .site-info {
        flex-wrap: wrap;
    }
    .item__contact {
        width: 100%;
    }
}
@media only screen and (max-width: 1250px) {
    #page-banner .item {
        width: 100%;
    }
}
@media only screen and (max-width: 540px) {
    .btns {
        flex-direction: column;
    }
    .banner__ft-img {
        display: none;
    }
}


.float-section {
    overflow: visible;
    padding-top: 400px;
    padding-bottom: clamp(80px, 11.389vh, 123px);
}
.float-section--cta {
	padding-top: clamp(80px, 11.389vh, 123px)!important;
}
.float-box {
    position: absolute;
    top: 0;
    transform: translateY(-68%);
    margin: 0 auto;
    left: 0; right: 0;
}
.float-box .bg-white {
    border: solid 1px var(--color-highlight) ;
}
.testimonial__content {
    padding: 12.037vh clamp(30px, 4.948vw, 95px) 7.315vh clamp(30px, 7.656vw, 164px);
}
.testimonial__content p {
    font-size: var(--fs-32);
    font-weight: 700;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 32px;
    display: -webkit-box;
    display: box;
    -webkit-box-orient: vertical;
    box-orient: vertical;

    -webkit-line-clamp: 5;
    line-clamp: 5;

    overflow: hidden;
    text-overflow: ellipsis;
}
.testimonial-ft-img {
    width: 100%;
    max-height: clamp(549px,  60.833vh, 657px);
    overflow: hidden;
}
.testimonial-ft-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.author:before {
    content: '';
    width: 88px;
    height: 1px;
    background: var(--color-highlight);
    margin-bottom: 29px;
    display: block;
}
.text-center .author:before {
    margin-inline: auto;
}
.testimonial-item__content {
    font-weight: 700;
    font-style: italic;
    margin-top: 34px;
}
.testimonial-item__wrapper {
    padding: 60px 38px;
    border-radius: 16px;
    background: linear-gradient(180deg, #FFFFFF 0%, #E6F4F1 100%);
}

@media only screen and (min-width: 992px) {
    .float-section {
        padding-top: 581px;
    }
    .float-box {
        transform: translateY(-17%);
    }
    .testimonial__content {
        padding: 12.037vh clamp(30px, 4.948vw, 95px) 7.315vh clamp(30px, 7.656vw, 164px);
        max-width: clamp(400px, 63.594vw, 1221px);
    }
    .testimonial-ft-img.col-lg-auto {
        max-width: clamp(300px, 28.594vw, 549px);
        width: 100%;
    }
}
.bg-img-with-float-box__wrapper {
    padding: clamp(30px, 5vh, 54px) clamp(30px, 2.76vw, 53px);
}
.bg-img-with-float-box {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: transparent none no-repeat right top / cover scroll;
}

.float-box--linear {
    background: radial-gradient(101.69% 336.35% at 0% 3.35%, #133D55 0%, rgba(19, 61, 85, 0.55) 100%);
    backdrop-filter: blur(21px);
    max-width: clamp(320px, 26.667vw, 512px);
    width: 100%;
    padding: 80px clamp(20px, 2.188vw, 42px);
}
.float-box--linear p {
    line-height: 1.8;
}
section.about--float {}
.about--float .float-box {
    transform: translateY(-41.2%);
}
.about__content {
    padding: clamp(20px, 3.385vw, 65px);
    padding-left: 0;
}
.about__featured-info {
    padding: clamp(40px, 6.296vh, 68px) clamp(20px, 2.188vw, 42px) clamp(40px, 6.296vh, 68px) clamp(20px, 3.125vw, 60px);
}
.about-col__wrapper {
    display: flex;
    align-items: flex-end;
}
.about-col__wrapper {
    width: 100%;
}
.about-col__wrapper img {
    min-height: clamp(590px, 62.037vh, 670px);
    object-fit: cover;
}
.about__featured-info h3 {
    font-size: var(--fs-36);
}
.about__featured-info p:last-of-type {
    margin-bottom: 0;
}
.site-icon {
    margin-bottom: 38px;
}
.badges {
    padding-top: clamp(62px, 8.611vh, 93px);
    padding-bottom: 62px;
}
.badge-list.badge-list__news {
    flex-wrap: wrap;
    gap: 32px;
}
.badge-list__news .news__item {
    width: 100%;
    max-width: clamp(280px, 21.51vw, 413px);
}
.news__item, .news__item h4 {
    line-height: 1.8;
    text-align: center;
}
.news__item p {
    margin-bottom: 0;
    color: var(--color-secondary);
}
.news__item .badge-item {
    min-height: 189px;
    max-height: 189px;
    margin-bottom: 24px;
    width: 100%;
    height: 100%;
}
.news__item .badge-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
@media only screen and (min-width: 992px) {
    .about-col__wrapper {
        max-width: clamp(320px, 28.698vw, 551px);
    }
    section.about--float {
/*        padding-bottom: 479px;*/
    }
}
@media only screen and (max-width: 991px) {
    .bg-img-with-float-box__wrapper {
        padding-top: 486px;
    }
    .bg-img-with-float-box {
        bottom: unset;
        min-height: 600px;
        background-position: 77% 50%;
    }
    .float-box--linear {
        max-width: 100%;
    }
    section.about--float {
        padding-block: 0 ;
        padding-bottom: 700px;
    }
    .about--float .float-box {
        max-width: 100%;
        width: 100%;
        padding-inline: 0;
        transform: unset;
        position: relative;
    }
}
@media only screen and (max-width: 600px) {
    .bg-img-with-float-box__wrapper {
        padding-inline: 15px;
    }
}
@media only screen and (max-width: 500px) {
    .badges {
        flex-wrap: wrap;
        justify-content: center;
    }
    .badge-img {
        width: 45%;
    }
}

section.statement-section {
    padding-top: 97px;
}
.container--statement {
    max-width: 900px;
}
.container--statement h2 {
    line-height: 1.36;
    margin-bottom: 49px;
}
@media only screen and (min-width: 992px) {
    section.statement-section {
        padding-bottom:  28rem; /* 448px */
    }
}

section.page-about-template {
    position: relative;
    padding-top: clamp(80px, 12.222vh, 132px);
    padding-left: clamp(30px, 12.448vw, 239px);
}
.bio-info-wrapper {
    padding-bottom: clamp(32px, 6.204vh, 67px);
}
.bio-info {
    font-size: var(--fs-18);
    padding-top: clamp(30px, 4.167vh, 45px);
}
.about__mission-section h2 {
    background: linear-gradient(360deg, #56824D 0%, #133D55 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}
@media only screen and (min-width: 991px) {
    .bio-content {
        padding-right: clamp(50px, 12.552vw, 241px);
    }
    .firm__content {
        padding-inline: clamp(30px, 6.771vw, 130px);
    }
    .firm__text {
        padding-inline: clamp(15px, 2.344vw, 45px);
    }
}
@media only screen and (max-width: 991px) {
    .page-about-template {
        background: transparent url('assets/images/bg-about-mobile.webp') no-repeat 65% 50% / cover scroll!important;
    }
    section.page-about-template {
        padding-left: 0;
    }
}

.small-border--top:before,
.small-border--bottom:after {
    content: '';
    display: block;
    width: 272px;
    height: 1px;
    background: var(--color-highlight);
    margin-bottom: 41px;
}
.small-border--bottom:after {
    margin-top: 41px;
}
.text-center .small-border--top:before,
.text-center .small-border--bottom:after {
    margin-inline: auto;
}
.small-border--bottom:before {
    margin-bottom: 0;
    margin-top: 41px;
}
.badge-list {
    gap: 16px;
    margin-block: 8.519vh;
    justify-content: center;
    flex-wrap: wrap;
}
.badge-item {
    border-radius: 16px;
    border: solid 1px var(--color-highlight);
    padding: clamp(15px, 2.037vh, 22px) clamp(15px, 1.667vw, 32px);
    display: flex;
    align-items: center;
    justify-content: center;
}
.news__main-content p:last-of-type {
    margin-bottom: 0;
}
@media only screen and (min-width: 991px) {
    .small-border--top p,
    .small-border--bottom p,
    .news__main-content p {
        max-width: 84ch;
        margin-inline: auto;
    }
    .badge-list {
        flex-wrap: nowrap;
    }
}
.team-list {
    justify-content: center;
    gap: 32px;
    display: flex;
    text-align: center;
	flex-wrap: wrap;
}
.team-item {
    overflow: hidden;
	width: 100%;
}
.team-item__img {
    max-height: clamp(450px, 51.574vh, 557px);
    overflow: hidden;
    margin-bottom: 40px;
}
.team-item img {
    width: 100%;
    height: 100%;
}
.team-item:hover img {
    transform: scale(1.01);
}
@media only screen and (min-width: 769px) {
    .team-item {
        max-width: clamp(300px, 23.854vw, 458px);
        width: 100%;
    }
	.team-list {
		flex-wrap: nowrap;
	}
}

.practice-list_wrapper {
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
}
.col-practice {
    max-width: clamp(360px, 23.854vw, 458px);
    text-align: center;
    margin-bottom: 5.926vh;
}
.col-practice:hover img {
/*    transform: scale(1.1);*/
}
span.practice-icon {
	max-height: 409px;
	min-height: 409px;
    overflow: hidden;
}
span.practice-icon img {
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.col__img-pa {
    width: 100%;
}
.cta-bg {
    pointer-events: none;
}
.pa-template--nursing .small-border--bottom:after {
    margin-top: 7.5vh;
}
.signs-list {
    margin-top: 6.667vh;
}
.signs-list h2 {
    max-width: 28ch;
    margin-inline: auto;
}
.signs-list img {
    margin-bottom: 32px;
    width: 100%
}
.signs-list ul {
    list-style-type: none;
    padding-left: 0;
}
@media only screen and (min-width: 991px) {
    .col__img-pa {
        max-width: clamp(500px, 40.781vw, 783px);
    }
    .has-post-thumbnail .pa__text-content {
        padding-left: clamp(30px, 11.667vw, 224px);
        padding-right: clamp(30px, 8.802vw, 169px);
    }
    .cta-content {
        max-width: 42%;
    }
}
.resources__text-content {
	margin-bottom: 40px;
}
.resources-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
    justify-content: center;
/*     gap: clamp(30px, 5.313vw, 102px); */
	gap: clamp(30px, 3.6458vw, 70px);
}
.resources-box {
    border-radius: 16px;
    padding: clamp(50px, 7.315vh, 79px) clamp(15px, 3.125vw, 60px);
    overflow: hidden;
}
.resources-box ul {
    padding-left: 13px;
}
.resources-box ul li {
    line-height: 1.8;
    margin-bottom: 20px;
}
.contact-us-section p {
    font-size: var(--fs-24);
    max-width: 61ch;
    margin-inline: auto;
}
.bottom-content {
	margin-top: 70px;
}
@media only screen and (max-width: 769px) {
	.resources-list {
		flex-wrap: wrap;
		grid-template-columns: 1fr;
	}
	.resources-box {
		width: 100%;
	}
}