:root{
    --primary-color: #4f6878;
    --secondary-color: #1f3347;
    --theme-color-one: #66717d;
    --theme-color-two: #1f3347;
    --titillium: 'Titillium Web', 'PingFang SC', 'Microsoft YaHei', 'Noto Sans CJK SC', sans-serif;
    --manrope: 'Manrope', 'PingFang SC', 'Microsoft YaHei', 'Noto Sans CJK SC', sans-serif;
    /** Align top nav with SAFEHOMO section frames (e.g. Academe hero / 1320px shells) **/
    --safe-content-max-width: 1320px;
    --safe-content-padding-x: 12px;
    --safe-scrollbar-size: 7px;
    --safe-scrollbar-thumb: rgba(47, 67, 88, .24);
    --safe-scrollbar-thumb-hover: rgba(47, 67, 88, .38);
    --safe-scrollbar-track: transparent;
    --safe-tone-page: #f7f7f8;
    --safe-tone-page-soft: #fbfbfc;
    --safe-tone-panel: #ffffff;
    --safe-tone-panel-muted: #f2f3f5;
    --safe-tone-line: rgba(47, 67, 88, .1);
    --safe-tone-line-strong: rgba(47, 67, 88, .17);
    --safe-tone-text: #253545;
    --safe-tone-muted: #627486;
    --safe-tone-faint: #8795a2;
    --safe-tone-accent: #48657f;
    --safe-tone-accent-soft: rgba(47, 67, 88, .07);
    --safe-tone-brand: #c72525;
    --safe-focus-ring: #c72525;
    --safe-focus-contrast: #ffffff;
    --safe-radius-panel: 8px;
    --safe-shadow-panel: 0 14px 34px rgba(47, 67, 88, .045);
    --safe-shadow-floating: 0 18px 44px rgba(47, 67, 88, .075);
}
* {
    margin:0px;
    padding:0px;
    border:none;
}  
html,
* {
    scrollbar-width: thin;
    scrollbar-color: var(--safe-scrollbar-thumb) var(--safe-scrollbar-track);
}
::-webkit-scrollbar {
    width: var(--safe-scrollbar-size);
    height: var(--safe-scrollbar-size);
}
::-webkit-scrollbar-track {
    background: var(--safe-scrollbar-track);
}
::-webkit-scrollbar-thumb {
    border: 2px solid transparent;
    border-radius: 999px;
    background-color: var(--safe-scrollbar-thumb);
    background-clip: content-box;
}
::-webkit-scrollbar-thumb:hover {
    background-color: var(--safe-scrollbar-thumb-hover);
}
::-webkit-scrollbar-corner {
    background: transparent;
}
body {
    font-size:16px;    
    line-height:26px;
    font-weight:400;
    background-size:cover;
    font-family: var(--manrope);
    background-repeat:no-repeat;
    background-position:center top;
    -webkit-font-smoothing: antialiased;
}
.boxed_wrapper {
    position: relative;
    overflow-x: hidden;
    margin: 0 auto;
    width: 100%;
    min-width: 300px;
}
.container{
    max-width: 1450px;
    width: 100%;
}
.fluid-container{
    max-width: 1920px;
    width: 100%;
    margin: 0 auto;
}
.container, 
.container-fluid, 
.container-xxl, 
.container-xl, 
.container-lg, 
.container-md, 
.container-sm{
    padding-right: var(--bs-gutter-x, 1rem);
    padding-left: var(--bs-gutter-x, 1rem);
}
a{
    text-decoration:none;
    transition:all 500ms ease;
    -moz-transition:all 500ms ease;
    -webkit-transition:all 500ms ease;
    -ms-transition:all 500ms ease;
    -o-transition:all 500ms ease;
}  
a:hover{
    text-decoration:none;
}  
input,button,select,textarea{
    font-weight: 400;
    font-size: 14px;
    background: transparent;
}  
::-webkit-input-placeholder {
    color: inherit;
}  
::-moz-input-placeholder {
    color: inherit;
}  
::-ms-input-placeholder {
    color: inherit;
}
ul,li{
    list-style:none;
    padding:0px;
    margin:0px; 
}
:focus-visible{
    outline: 3px solid var(--safe-focus-ring) !important;
    outline-offset: 3px !important;
    box-shadow: 0 0 0 2px var(--safe-focus-contrast) !important;
}
.safe-skip-link{
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 100001;
    padding: 10px 14px;
    color: #fff;
    background: var(--safe-tone-brand);
    font-family: var(--manrope);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    text-decoration: none;
    transform: translateY(calc(-100% - 24px));
    transition: transform 160ms ease;
}
.safe-skip-link:focus-visible{
    color: #fff;
    transform: translateY(0);
}
@media (prefers-reduced-motion: reduce){
    html{
        scroll-behavior: auto !important;
    }
    *,
    *::before,
    *::after{
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        transition-delay: 0ms !important;
    }
}
p{  
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 29px;
    margin: 0;
    font-family: var(--manrope);
}  
h1,h2,h3,h4,h5,h6{
    margin: 0;
    font-family: var(--titillium);
}
h1{
    font-size: 90px;
    line-height: 100px;
}
h2{
    font-size: 42px;
    line-height: 52px;
}
h3{
    font-size: 32px;
    line-height: 42px;
}
h4{
    font-size: 24px;
    line-height: 34px;
}
h5{
    font-size: 20px;
    line-height: 30px;
}
h6{
    font-size: 16px;
    line-height: 28px;
}
.centred{
    text-align: center;
}  
.pull-left{
    float: left;
}  
.pull-right{
    float: right;
}
figure{
    margin: 0px;
}
img {
    display: inline-block;
    max-width: 100%;
    height: auto;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .7s;
    transition-property: all;
}
.mb_20{
    margin-bottom: 20px;
}
.mb_25{
    margin-bottom: 25px;
}
.mb_30{
    margin-bottom: 30px;
}
.mb_40{
    margin-bottom: 40px;
}
.mb_50{
    margin-bottom: 50px;
}
.mb_60{
    margin-bottom: 60px;
}
.mb_70{
    margin-bottom: 60px;
}
/** Defult Form **/

.sec_padding_70{
    padding: 70px 0px;
}
.sec_padding_110{
    padding: 110px 0px;
}
.sec_padding_120{
    padding: 120px 0px;
}
.sec_padding_140{
    padding: 140px 0px;
}
.sec_padding_150{
    padding: 150px 0px;
}
.section_title_one h5{
    letter-spacing: 5px;
    font-weight: 600;
    color: var(--primary-color);
}
.section_title_one h2{
    position: relative;
    font-weight: 700;
    padding-bottom: 25px;
    color: var(--theme-color-two);
}
.section_title_one h2:before{
    position: absolute;
    bottom: 0;
    left: calc(50% - 50px);
    width: 100px;
    height: 3px;
    content: '';
    border-radius: 3px;
    background-color: var(--theme-color-two);
}
.section_title_two h5{
    letter-spacing: 5px;
    font-weight: 600;
    color: var(--primary-color);
}
.section_title_two h2{
    position: relative;
    font-weight: 700;
    padding-bottom: 25px;
    color: var(--theme-color-two);
}
.section_title_two h2:before{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 3px;
    content: '';
    border-radius: 3px;
    background-color: var(--theme-color-two);
}

/** Defult Form **/
.form-group{
    position: relative;
    display: block;
    margin-bottom: 30px;
}  
.form-group input,
.form-group textarea{
    position: relative;
    display: block;
    width: 100%;
    height: 70px;
    font-size: 16px;
    border-radius: 5px;
    padding: 10px 30px;
    text-transform: capitalize;
    transition:all 500ms ease;
    -moz-transition:all 500ms ease;
    -webkit-transition:all 500ms ease;
    -ms-transition:all 500ms ease;
    -o-transition:all 500ms ease;
}  
.form-group textarea{
    height: 170px;
    resize: none;
}  
.form-group input:focus,
.form-group textarea:focus{
    border-color: var(--primary-color);
}
/** End Defult Form **/

/** Social Links Style One **/
.social_links_style_one ul{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-items: center;
    gap: 20px;
    margin-left: 30px;
}
.social_links_style_one ul li a{
    color: var(--bs-white);
    display: inline-block;
    transition: .5s;
}
.social_links_style_one ul li i{
    font-size: 18px;
}
.social_links_style_one ul li a:hover{
    color: var(--theme-color-one);
}
/** End Social Links Style One **/

/** Social Links Style Two **/
.social_links_style_two ul{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-items: center;
    gap: 20px;
}
.social_links_style_two ul li a{
    color: var(--bs-white);
    display: inline-block;
    transition: .5s;
}
.social_links_style_two ul li a:hover{
    color: var(--secondary-color);
}
/** End Social Links Style Two **/

/** Button Style One **/
.button-style-one{
    position: relative;
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 29px;
    color: var(--bs-white);
    z-index: 1;
    display: inline-block;
    padding: 26px 88px;
    padding-right: 110px;
    font-family: var(--manrope);
    background-color: var(--secondary-color);
}
.button-style-one:hover{
    color: var(--bs-white);
}
.button-style-one:after{
    position: absolute;
    top: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    content: '';
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    background-color: var(--primary-color);
    transition:all 500ms ease;
    -moz-transition:all 500ms ease;
    -webkit-transition:all 500ms ease;
    -ms-transition:all 500ms ease;
    -o-transition:all 500ms ease;
}
.button-style-one:hover:after{
    transform: scaleX(1.0);
}
.button-style-one i{
    position: absolute;
    right: 75px;
    top: 27px;
    font-size: 16px;
}
/** End Button Style One **/

/** Button Style Two **/
.button-style-two{
    position: relative;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 29px;
    color: var(--bs-white);
    z-index: 1;
    display: flex;
    align-items: center;    
    gap: 10px;
    padding: 12px 29px;
    font-family: var(--manrope);
    background-color: var(--theme-color-two);
}
.button-style-two:hover{
    color: var(--bs-white);
}
.button-style-two:after{
    position: absolute;
    top: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    content: '';
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    background-color: var(--secondary-color);
    transition:all 500ms ease;
    -moz-transition:all 500ms ease;
    -webkit-transition:all 500ms ease;
    -ms-transition:all 500ms ease;
    -o-transition:all 500ms ease;
}
.button-style-two:hover:after{
    transform: scaleX(1.0);
}
.button-style-two i{
    margin-top: 5px;
    font-size: 16px;
}
/** End Button Style Two **/

/** Button Style Three **/
.button-style-three{
    position: relative;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 29px;
    color: var(--bs-white);
    z-index: 1;   
    gap: 10px;
    display: inline-block;
    padding: 20px 55px;
    padding-right: 80px;
    font-family: var(--manrope);    
    background-color: var(--primary-color);
}
.button-style-three:hover{
    color: var(--bs-white);
}
.button-style-three:after{
    position: absolute;
    top: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    content: '';
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    background-color: var(--theme-color-two);
    transition:all 500ms ease;
    -moz-transition:all 500ms ease;
    -webkit-transition:all 500ms ease;
    -ms-transition:all 500ms ease;
    -o-transition:all 500ms ease;
}
.button-style-three:hover:after{
    transform: scaleX(1.0);
}
.button-style-three i {
    position: absolute;
    top: 21px;
    right: 50px;
}
/** End Button Style Three **/

/** Button Style Four **/
.button-style-four{
    position: relative;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 29px;
    color: var(--bs-white);
    z-index: 1;
    display: flex;
    align-items: center;    
    gap: 10px;
    padding: 12px 29px;
    font-family: var(--manrope);
    background-color: var(--secondary-color);
}
.button-style-four:hover{
    color: var(--bs-white);
}
.button-style-four:after{
    position: absolute;
    top: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    content: '';
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    background-color: var(--theme-color-two);
    transition:all 500ms ease;
    -moz-transition:all 500ms ease;
    -webkit-transition:all 500ms ease;
    -ms-transition:all 500ms ease;
    -o-transition:all 500ms ease;
}
.button-style-four:hover:after{
    transform: scaleX(1.0);
}
.button-style-four i{
    margin-top: 2px;
    font-size: 16px;
}
/** End Button Style Two **/


/* slider Navigation */
.owl-dots-none .owl-dots,
.owl-nav-none .owl-nav{
  display: none !important;
}
.nav-style-one .owl-nav{
  position: absolute;
  top: 50%;
  width: 100%;
  right: 0px;
  transform: translateY(-35px);
}
.nav-style-one .owl-nav .owl-prev{
  position: absolute;
  display: inline-block;
  width: 70px;
  height: 70px;
  left: 70px;
  line-height: 70px;
  font-size: 15px;
  text-align: center;
  font-weight: 600;
  border-radius: 3px;
  z-index: 1;
  color: var(--white-color);
  background-color: transparent;
  border: 1px solid var(--white-color);
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  cursor: pointer;
}
.nav-style-one .owl-nav .owl-prev:before{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    border-radius: 3px;
    z-index: -1;
    transform: scaleY(0);
    transition: .5s;
    background-color: var(--primary-color);
}
.nav-style-one .owl-nav .owl-prev:hover{
    border-color: var(--primary-color);
}
.nav-style-one .owl-nav .owl-prev:hover:before{
    transform: scale(1);
}
.nav-style-one .owl-nav .owl-next{
    position: absolute;
    display: inline-block;
    width: 70px;
    height: 70px;
    right: 70px;
    line-height: 70px;
    color: var(--white-color);
    font-size: 15px;
    text-align: center;
    font-weight: 600;
    border-radius: 3px;
    z-index: 1;
    background-color: transparent;
    border: 1px solid var(--white-color);
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    cursor: pointer;
}
.nav-style-one .owl-nav .owl-next:before{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    z-index: -1;
    transform: scaleY(0);
    transition: .5s;
    border-radius: 3px;
    background-color: var(--primary-color);
}
.nav-style-one .owl-nav .owl-next:hover{
    border-color: var(--primary-color);
}
.nav-style-one .owl-nav .owl-next:hover:before{
    transform: scale(1);
}
.owl-dots-one .owl-dots{
    position: absolute;
    left: calc(0% + 360px);
    bottom: 30px;
}

/** Page Title **/
.page-title{
    position: relative;
    width: 100%;
    overflow: hidden;
    z-index: 1;
    background-color: #F8F8F8;
}
.page-title .bg_layer{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.page-title.style_two:before{
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    z-index: -1;
    background-color: rgba(0, 0, 0, 0.4);
}
.page-title .bread-crumb{
    margin-top: 40px;
    margin-left: 100px;
}
.page-title .content-box .title{   
    padding: 100px 0px 170px;
}  
.page-title .content-box .title h2{  
    font-style: normal;
    font-weight: 700;
    font-size: 42px;
    line-height: 52px;
    color: var(--theme-color-two);
}  
.page-title.style_two .content-box .title h2{  
    margin-bottom: 10px;
}  
.page-title.style_two .content-box .title.white_color h2{  
    color: var(--bs-white);
}  
.page-title .content-box .title p{
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    text-align: center;
    color: var(--bs-white);
    font-family: var(--manrope);
}  
.page-title .bread-crumb li{
    position: relative;
    display: inline-block;
    padding: 5px 10px;
    margin-right: 10px;
    font-weight: 700;
    font-size: 16px;
    line-height: 29px;
    font-family: var(--manrope);
    color: var(--primary-color);
}  
.page-title .bread-crumb li a{
    font-weight: 400;
    color: var(--theme-color-two);
}  
.page-title .bread-crumb li a:hover,
.page-title .bread-crumb li.current{
    color: var(--primary-color);
}  
.page-title .bread-crumb li:before{
    position: absolute;
    content: "\2f";
    font-family: 'Font Awesome 5 Pro';
    top: 5px;
    right: -15px;
    font-size: 20px;
}
.page-title .bread-crumb li:last-child{
    margin-right: 0;
}
.page-title .bread-crumb li:last-child:before{
    display: none;
}
.page-title.style_two .content-box .title {
    padding: 70px 0px 130px;
}
.page-title.style_two .bread-crumb li{
    color: var(--bs-white);
}
.page-title.style_two .bread-crumb li a{
    color: var(--bs-white);
}
.page-title.style_two .bread-crumb li a:hover,
.page-title.style_two .bread-crumb li.current{
    color: var(--bs-white);
}  
/** End Page Title **/

/** Pagination **/
.pagination{
    display: flex;
    align-items: center;
    justify-content: center;
}
.pagination li{
    position: relative;
    font-style: normal;
    display: flex;
    align-items: center;
    margin: 0px 7px;
    cursor: pointer;
    transition: .5s;
    color: var(--theme-color-two);
    font-family: var(--manrope);
}
.pagination li a{
    display: inline-block;
    font-size: 16px;
    line-height: 29px;
    text-align: center;
    padding: 6px 15px;
    height: 40px;
    color: var(--paragraph-color);
    border: 1px solid var(--primary-color);
    transition: all 500ms ease;
}
.pagination li a i{
    transition: all 500ms;
    color: var(--primary-color);
}
.pagination li a:hover,
.pagination li a.current{
    color: var(--bs-white);
    background-color: var(--primary-color);
}
.pagination li a:hover i{
    color: var(--bs-white);
}
.pagination li:first-child a{
    transform: rotate(180deg);
}
.pagination li:first-child a,
.pagination li:last-child a{
    padding: 6px 20px;
}
/** End Pagination **/

/** SAFEHOMO utility classes **/
.safe-site-logo{
    max-height: 52px;
    width: auto;
    height: auto;
}
.safe-nav-brand .safe-site-logo{
    height: var(--safe-nav-align-height, 37px);
    max-height: var(--safe-nav-align-height, 37px);
    width: auto;
    object-fit: contain;
    object-position: left center;
}

/** Safe nav bar: logo + primary links (replaces separate main_header strip) **/
.safe-nav-bar{
    --safe-nav-align-height: 37px;
    padding: 34px 0 24px;
    background: #fff;
    border-bottom: 1px solid rgba(47,67,88,.08);
}
/** Same horizontal frame as .safe-academe-hero-inner (nav + main column .safe-content-container) **/
.safe-nav-bar .container,
.container.safe-content-container{
    max-width: var(--safe-content-max-width);
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--safe-content-padding-x);
    padding-right: var(--safe-content-padding-x);
    box-sizing: border-box;
}
.safe-nav-row{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px 14px;
    flex-wrap: wrap;
}
.safe-nav-brand{
    flex: 0 0 auto;
    align-self: flex-start;
    display: flex;
    align-items: flex-start;
    line-height: 0;
}
.safe-nav{
    flex: 1 1 220px;
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    align-items: flex-end;
    align-self: flex-end;
    min-height: var(--safe-nav-align-height, 37px);
    margin: 0;
    padding: 0;
    list-style: none;
    justify-content: flex-end;
    min-width: 0;
}
.safe-nav > li{
    display: flex;
    align-items: flex-end;
}
.safe-nav a{
    font-weight: 600;
    color: #4d5660;
}
.safe-nav a.active{
    font-weight: 700;
    color: #1f3347;
}
@media (max-width: 767px){
    .safe-nav-row{
        justify-content: center;
    }
    .safe-nav{
        flex-basis: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
}
.safe-page-hero{
    padding: 38px 0 30px;
    background: #f2f3f5;
}
.safe-page-hero > .container{
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 28px;
    text-align: center;
}
.safe-page-panel{
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    background: #fff;
    padding: 40px 28px;
}
.safe-page-title{
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 12px;
    color: #1f3347;
}
.safe-page-lead{
    font-size: 19px;
    line-height: 1.7;
    color: #1f3347;
    margin-bottom: 0;
}
.safe-page-content{
    padding: 30px 0 80px;
    background: #fbfbfc;
}
.safe-page-container{
    max-width: 1100px;
}
.safe-card-mb-16{
    margin-bottom: 16px;
}
.safe-card-mt-16{
    margin-top: 16px;
}
.safe-card-center{
    text-align: center;
}
.safe-footer-pad{
    padding-top: 70px;
}
.safe-title-30{
    font-size: 30px;
}
.safe-title-28{
    font-size: 28px;
}
.safe-m0{
    margin: 0;
}
.safe-mb-12{
    margin-bottom: 12px;
}
.safe-mb-14{
    margin-bottom: 14px;
}
.safe-mt-8{
    margin-top: 8px;
}
.safe-mt-10{
    margin-top: 10px;
}
.safe-mt-12{
    margin-top: 12px;
}
.safe-mr-10{
    margin-right: 10px;
}
.safe-text-note{
    margin-top: 12px;
    color: #4d5660;
    font-size: 14px;
}

.safe-member-lock{
    display: grid;
    gap: 12px;
    padding: 16px;
    border: 1px solid rgba(47,67,88,.14);
    border-radius: 8px;
    background: #fff;
    color: #253545;
}
.safe-member-lock strong{
    color: #1f3347;
    font-size: 16px;
    line-height: 1.35;
}
.safe-member-lock p{
    margin: 0;
    color: #627486;
    font-size: 14px;
    line-height: 1.6;
}
.safe-member-lock-actions{
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.safe-member-lock-actions a{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 12px;
    border: 1px solid rgba(47,67,88,.16);
    border-radius: 8px;
    color: #1f3347;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    background: #fff;
}
.safe-member-lock-actions a:first-child{
    border-color: #1f3347;
    color: #fff;
    background: #1f3347;
}
.safe-member-lock-inline{
    margin-top: 12px;
}

.main_footer.safe-home-footer{
    padding: 40px 0 !important;
    background: #081118 !important;
    background-image: none !important;
    color: #aebfc9;
}
.safe-home-footer .container{
    max-width: 1360px;
}
.safe-home-footer-row,
.safe-home-footer .safe-home-footer-row{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.safe-home-footer-brand,
.safe-home-footer .safe-home-footer-brand{
    display: grid;
    gap: 10px;
    max-width: 740px;
    min-width: 0;
}
.safe-home-footer p{
    margin: 0;
    color: #aebfc9;
    font-size: 14px;
}
.safe-home-footer .safe-home-footer-brand p{
    line-height: 1.7;
}
.safe-home-footer-contact,
.safe-home-footer .safe-home-footer-contact{
    display: grid;
    gap: 4px;
    margin: 0;
    color: rgba(174,191,201,.74);
    font-size: 13px;
    font-style: normal;
    line-height: 1.65;
}
.safe-home-footer-contact strong,
.safe-home-footer .safe-home-footer-contact strong{
    color: rgba(217,227,234,.9);
    font-weight: 600;
}
.safe-home-footer-contact a,
.safe-home-footer .safe-home-footer-contact a{
    color: rgba(217,227,234,.74);
    text-decoration: none;
}
.safe-home-footer-contact a:hover,
.safe-home-footer-contact a:focus-visible,
.safe-home-footer .safe-home-footer-contact a:hover,
.safe-home-footer .safe-home-footer-contact a:focus-visible{
    color: #fff;
}
.safe-home-footer-links,
.safe-home-footer .safe-home-footer-links{
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.safe-home-footer-links a,
.safe-home-footer .safe-home-footer-links a{
    color: #d9e3ea;
    font-size: 14px;
}
.safe-home-footer-links a:hover,
.safe-home-footer-links a:focus-visible,
.safe-home-footer .safe-home-footer-links a:hover,
.safe-home-footer .safe-home-footer-links a:focus-visible{
    color: #fff;
}
.safe-home-footer .footer_bottom_home_one{
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.12);
}
.safe-home-footer .copyright_text_home_one{
    color: rgba(143,169,189,.66);
    font-size: 13px;
    line-height: 1.7;
    letter-spacing: .02em;
}
.safe-home-footer .copyright_text_home_one a{
    color: rgba(217,227,234,.68);
    text-decoration: none;
}
.safe-home-footer .copyright_text_home_one a:hover,
.safe-home-footer .copyright_text_home_one a:focus-visible{
    color: #d9e3ea;
}
.safe-home-traffic{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 14px;
    margin-top: 10px;
    color: rgba(143,169,189,.58);
    font-size: 12px;
    line-height: 1.7;
    letter-spacing: .04em;
}
.safe-home-traffic strong{
    color: rgba(217,227,234,.7);
    font-weight: 600;
}
@media (max-width: 767px){
    .main_footer.safe-home-footer{
        padding: 34px 0 !important;
    }
    .safe-home-footer .safe-home-footer-row,
    .safe-home-footer-row{
        align-items: flex-start;
    }
    .safe-home-footer-links,
    .safe-home-footer .safe-home-footer-links{
        gap: 10px 14px;
    }
    .safe-home-footer-brand,
    .safe-home-footer .safe-home-footer-brand{
        max-width: 100%;
    }
}

/* Spotlight rows: match aside height to primary column + scroll body (initSafeSpotlightRows in main.js) */
[data-safe-spotlight-primary] {
    min-width: 0;
}
[data-safe-spotlight] > [data-safe-spotlight-primary],
[data-safe-spotlight] > [data-safe-spotlight-aside] {
    min-height: 0;
}
[data-safe-spotlight-aside] {
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow: hidden;
}
[data-safe-spotlight-aside] .safe-spotlight-aside-scroll {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    overflow-x: clip;
    box-sizing: border-box;
    overflow-wrap: anywhere;
    word-break: break-word;
    -webkit-overflow-scrolling: touch;
}
/* Avoid wide links/text reintroducing a horizontal scrollbar inside the scroll body */
[data-safe-spotlight-aside] .safe-spotlight-aside-scroll a,
[data-safe-spotlight-aside] .safe-spotlight-aside-scroll p {
    max-width: 100%;
}
@media (max-width: 1199px) {
    [data-safe-spotlight-aside] {
        height: auto !important;
        max-height: none !important;
    }
}
