*,
*::after,
*:before{
    box-sizing: border-box;
}
html {
    -moz-text-size-adjust: none;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
}

html,
body{
    height:100%;
    margin:0;
    padding:0;
    background: #fff;
    min-height: 100vh;
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    font-size:16px;
    font-variation-settings: "wdth" 100;
    line-height: 1.5;
    color:#343537;
}
p{
    margin:0 0 20px;
}
a{
    color:#343537;
}
.no-select{
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}
input:focus::placeholder,
input:focus::-moz-placeholder,
input:focus::-webkit-input-placeholder,
input:focus::-webkit-input-placeholder,
input::placeholder,
input::-moz-placeholder,
input::-webkit-input-placeholder,
input::-webkit-input-placeholder{
    color: rgba(0,0,0,0.5);
    font-size:15px;
}
article, aside, footer, header, nav, section {
    display: block;
}
img {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    max-width: 100%;
    height: auto;
    border-style: none;
    display: block;
}
.align-left{
    text-align: left;
}
.align-right{
    text-align: right;
}
.aling-center{
    text-align: center;
}

.row.display-flex {
    display: flex;
    flex-wrap: wrap;
}
.row.display-flex > [class*='col-'] {
    display: flex;
    flex-direction: column;
}
.row.display-flex > .col-flex {
    flex:1;
    padding-left:15px;
    padding-right:15px;
}
.row.flex-stretch{
    align-items: stretch;
}

.mb0{
    margin-bottom: 0 !important;
}
.mb10{
    margin-bottom: 10px !important;
}
.mb15{
    margin-bottom: 15px !important;
}
.mb20{
    margin-bottom: 20px !important;
}
.mb30{
    margin-bottom: 30px  !important;
}
.mb40{
    margin-bottom: 40px  !important;
}
.mb80{
    margin-bottom: 80px !important;
}
.mb100{
    margin-bottom: 100px !important;
}
section{
    padding:80px 0;
}
section.sm{
    padding:40px 0 0;
}
h1.page-title{
    margin:0;
    font-weight: 600;
    font-size:20px;
    line-height: 1;
    display: flex;
    align-items: center;
}
h2.section-title{
    color:#274f7d;
    text-transform: uppercase;
    font-weight: 600;
    font-size:18px;
    display: flex;
    align-items: center;
    height:22px;
    padding-left:32px;
    background: url("../images/icons/arr-section.png") left center no-repeat;
    margin:0 0 30px;
}
h2.section-title a{
    color:#343537;
    text-transform: lowercase;
    font-weight: 300;
    font-size:14px;
    margin-left:40px;
    white-space: nowrap;
}
h2.section-title a::after{
    content:'';
    position: relative;
    display: inline-block;
    width: 13px;
    height: 5px;
    background: url("../images/icons/arr-sm-r.png") center no-repeat;
    margin-left:10px;
    top:-2px;
}

header{
    background: #04356c;
    color:#fff;
    font-size:16px;
}
header a{
    color:#fff;
    text-decoration: none;
}
header a:hover{
    text-decoration: underline;
}
header .logo{
    fill:#fff;
}
header .row.display-flex{
    align-items: center;
    height: 110px;
}
header .top-content{
    display: flex;
    align-items: center;
}
header .top-content .align-right{
    display: flex;
}
header .top-menu-wrapper{
    flex:1;
}
header .top-menu-wrapper ul{
    display: flex;
    justify-content: space-between;
    margin:0 auto;
    padding: 0;
    list-style: none;
    gap: 20px 35px;
    white-space: nowrap;
}
header .lang-switcher{
    display: flex;
    align-items: center;
}
header .lang-switcher label{
    margin-right: 15px;
}
header .lang-switcher ul{
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    font-size:14px;
    align-items: center;
}
header .lang-switcher ul li{
    height:20px;
    min-width: 43px;
    border-radius:4px;
    text-align: center;
}
header .lang-switcher ul li.active{
    background: #b3c2d2;
}
header .lang-switcher ul li.active a{
    color:#343537;
}
header a.btn{
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    color:#343537;
    width: 155px;
    height: 40px;
    border-radius: 8px;
    text-decoration: none;
    margin-right: 40px;
}
header .burger {
    width: 30px;
    height: 20px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    margin: auto 0 auto 30px;
}
header .burger span {
    display: block;
    width: 100%;
    height: 3px;
    background: #fff;
    border-radius: 3px;
}


.useful-info {
    background: #f7f7f7;
}
.useful-info .useful-info-item{
    position: relative;
}
.useful-info .useful-info-item .pic-wrapper{
    position: relative;
}
.useful-info .useful-info-item .pic-wrapper::before{
    content: '';
    position: absolute;
    display: block;
    left:0;
    top:0;
    width: 100%;
    height: 100%;
    border-radius:15px;
    background: linear-gradient(to bottom, rgba(0,0,8,0.85) 0%,rgba(4,53,108,0.35) 100%);
}
.useful-info .useful-info-item .pic-wrapper img{
    width: 100%;
    height: 390px;
    object-fit: cover;
    border-radius:15px;
    box-shadow: 0 3px 7px rgba(0,0,0,0.35);
}
.useful-info .useful-info-item .text-wrapper{
    position: absolute;
    left:0;
    top:0;
    height: 100%;
    width: 100%;
    padding:35px 40px;
    color:#fff;
}
.useful-info .useful-info-item .text-wrapper .title{
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom:25px;
}
.useful-info .useful-info-item .text-wrapper .btn{
    position: absolute;
    left:40px;
    bottom:35px;
    font-size:14px;
    text-transform: lowercase;
    background: rgba(255,255,255,0.8);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 40px;
    line-height: 1;
    color:#343537;
    text-decoration: none;
}
.useful-info .useful-info-item .text-wrapper .btn::after{
    content:'';
    position: relative;
    display: inline-block;
    width: 13px;
    height: 5px;
    background: url("../images/icons/arr-sm-r.png") center no-repeat;
    margin-left:10px;
    margin-top:2px;
}

.cat-list{
    margin:0 0 60px;
    padding:0;
    list-style: none;
    --auto-grid-min-size: 20rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(var(--auto-grid-min-size), 1fr));
    grid-gap: 30px;
}
.cat-list li{
    background: rgba(104, 154, 211, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    border-radius: 7px;
    transition: all 0.3s ease-in-out;
}
.cat-list li:hover{
    background: rgba(104, 154, 211, 0.75);
}
.cat-list li a{
    display: flex;
    color:#343537;
    text-decoration: none;
    flex:1;
    height: 100%;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
}
.cat-list li a img{
    max-height:24px;
    width:auto;
    display: block;
    margin-right:8px;
    transition: all 0.3s ease-in-out;
}
.cat-list li:hover a{
    color:#fff;
}
.cat-list li:hover a img{
    filter: invert(1)
}
.cat-list-item{
    display: flex;
    margin:0 0 40px;
}
.cat-list-item .icon{
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width:190px;
    justify-content: center;
    opacity:0.3;
    font-size:15px;
    font-weight: 500;
}
.cat-list-item .content{
    flex:1;
}
.cat-list-item .content .title{
    font-weight: bold;
    margin-bottom:20px;
    color:#000;
}
.cat-list-item .content .text{
    margin-bottom:25px;
}
.cat-list-item .content .link{
    color:#000;
    text-decoration: none;
    font-size:14px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
}
.cat-list-item .content .link::after{
    content:'';
    position: relative;
    display: inline-block;
    width: 13px;
    height: 5px;
    background: url("../images/icons/arr-sm-r.png") center no-repeat;
    margin-left:10px;
    margin-top:2px;
}

section.news{
    background: #f7f7f7;
}
.news-grid{
    --auto-grid-min-size: 22rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(var(--auto-grid-min-size), 1fr));
    grid-gap: 50px 30px;
}
.news-item .pic-wrapper{
    position: relative;
    display: block;
    margin-bottom:20px;
}
.news-item .pic-wrapper img{
    display: block;
    width: 100%;
    height:250px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 3px 7px rgba(0,0,0,0.3);
}
.news-item a.title{
    color:#343537;
    text-decoration: none;
    font-weight: bold;
    margin-bottom:10px;
    line-height: 18px;
    display: block;
}
.news-item .date{
    padding-left:25px;
    font-weight: 300;
    font-size:12px;
    color:#737579;
    margin-bottom:10px;
    background: url("../images/icons/calendar.png") left center no-repeat;
}

.blue-form-section{
    background: #04356c;
    padding:60px 0;
}
.blue-form-section .blue-form-wrapper{
    background: #fff;
    padding:60px 50px;
}
.blue-form-section .blue-form-wrapper .form-title{
    font-size:34px;
    line-height:1.2;
    font-weight: bold;
    margin-bottom:40px;
}
.blue-form-section .blue-form-wrapper .form-text{
    font-size:18px;
    line-height: 1.4;
}

.blue-form-section textarea,
.blue-form-section input[type=text]{
    width: 100%;
    height: 36px;
    border: 0;
    border-bottom: 1px solid #e5e5e5;
    border-radius: 0;
    font-size: 16px;
    color: #606062;
    padding: 0;
    margin: 0 0 40px;
    display: flex;
    align-items: flex-start;
    line-height: normal;
    box-sizing: border-box;
}
.blue-form-section textarea{
    padding-top: 9px;
    resize:vertical;
    min-height:36px;
}
.blue-form-section textarea:focus,
.blue-form-section input[type=text]:focus{
    border-color: #66afe9;
    outline: 0;
    box-shadow: 0 8px 8px -8px rgba(102, 175, 233, 0.6);;
}

.btn-blue-solid{
    background: #04356c;
    color:#fff;
}
a.btn-blue-solid,
input.btn-blue-solid,
button.btn-blue-solid{
    border:0;
    height:46px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding:0 15px;
    font-size:14px;
    font-weight: bold;
    border-radius:4px;
    text-decoration:none;
}
.btn.wide{
    width:100%;
    max-width: 300px;
    margin:0 auto;
}

.agreement-block{
    display: flex;
    align-items: flex-start;
}
.agreement-block .agreement-text{
    flex:1;
    font-size:13px;
    color:#96989A;
    line-height: 1.3;
}

.custom-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
}
.custom-checkbox input {
    display: none;
}
.custom-checkbox span {
    width: 16px;
    height: 15px;
    background: url('../images/icons/ch-def.png') no-repeat center/cover;
    display: inline-block;
    margin-right: 7px;
    transition: all 0.3s;
}
.custom-checkbox input:checked + span {
    background: url('../images/icons/ch-active.png') no-repeat center/cover;
}

.form-block {
    border: 1px solid #ebebeb;
    border-radius: 15px;
    padding: 25px 20px;
    background: #fff;
    position: relative;
}
footer{
    font-size:14px;
    font-weight: 300;
    color:#fff;
    text-align: center;
    padding:80px 0;
    background: #2c3136;
}


#modileMenu{
    position: fixed;
    display:none;
    flex-direction: column;
    left:0;
    top:0;
    z-index:99999999;
    height: 100vh;
    width:100%;
    overflow: hidden;
}
#modileMenu .content{
    position: relative;
    display: flex;
    flex-direction: column;
    flex:1;
    background: #fff;
    width: 100%;
    max-width:350px;
    height:100vh;
    overflow: auto;
    margin-left:-100%;
    z-index: 10;
    padding: 0;
    box-shadow: 5px 0 10px rgba(0,0,0,0.6);;
}
#modileMenu .content .inner{
    padding: 30px;
}
#modileMenu .overlay{
    position:absolute;
    background: rgba(0,0,0,0.4);
    width: 100%;
    top:0;
    height:100%;
    left:-100%;
    z-index: 1;
}
#mobileMenuClose {
    cursor:pointer;
    position: absolute;
    top: 15px;
    right:15px;
    width: 24px;
    height: 24px;
    z-index: 20;
    border: 1px solid rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    background: url("../images/close-btn.png") center no-repeat #fff;
    background-size: cover;
}
body.mobile-menu-show {
    overflow: hidden;
}
body.mobile-menu-show #modileMenu {
    display: flex;
}
#modileMenu .logo-block{
    padding:34px;
    background: #04356c;
}
#modileMenu .top-menu-wrapper{
    margin-bottom:30px;
}
#modileMenu .top-menu-wrapper ul{
    list-style: none;
    margin:0;
    padding:0;
}
#modileMenu .top-menu-wrapper ul li {
    margin-bottom:15px;
}
#modileMenu .top-menu-wrapper ul li a{
    display: flex;
    color:#343537;
}
#modileMenu .btn{
    height:46px;
    display: flex;
    justify-items: center;
    align-items: center;
    padding:0 15px;
    color:#fff;
    border: 1px solid #04356c;
    font-size:15px;
    font-weight: bold;
    text-decoration: none;
}

body #callbackPopup,
body #messagePopup {
    display: none;
}
body.callbackOpen,
body.messageOpen {
    overflow: hidden;
}
body.callbackOpen #callbackPopup,
body.messageOpen #messagePopup {
    display: flex;
}
.modal-block {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow-x: hidden;
    overflow-y: scroll;
    background: rgba(0, 0, 0, 0.75);
    z-index: 10000000000;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.modal-block .inner-container {
    position: relative;
    width: 100%;
    max-width: 350px;
    flex: 0 1 auto;
    padding: 20px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}
.modal-block .inner-container {
    max-width: 450px;
}
.modal-block textarea,
.modal-block input[type="text"] {
    margin-bottom: 12px;
    font-size:14px;
    border:1px solid #c7cdd3;
}
.modal-block .btn {
    width: 100%;
    font-size:14px;
}
.modal-block .popup-header {
    position: relative;
    z-index: 10;
    padding: 12px 0;
    margin: 0;
}
.modal-close-btn {
    position: absolute;
    top: 9px;
    right: 10px;
    width: 20px;
    height: 20px;
    background: url("../images/close-btn-b.png") center center no-repeat;
    z-index: 100;
}

.form-block{
    border:1px solid #ebebeb;
    border-radius:15px;
    padding: 25px 20px;
    background: #fff;
    position: relative;
}
.form-block input[type="text"]{
    display: flex;
    height: 44px;
    align-items: center;
}
.form-block textarea{
    height: 80px;
    resize: none;
}
.form-block input[type="text"],
.form-block textarea{
    padding:5px 10px;
}
.form-block input[type="text"]:focus,
.select2-container--focus,
.form-block textarea:focus{
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
.form-block input[type="text"],
.form-block textarea,
.form-block select{
    display: block;
    width: 100%;
    font-family: 'Commissioner', sans-serif;
    font-size:15px;
    border:1px solid #ebebeb;
    border-radius: 4px;
}
.form-block .form-title{
    font-family: "Gilroy", sans-serif;
    font-weight: bold;
    font-size:16px;
    line-height: 1;
    margin-bottom:30px;
}
.form-block .select2-results__option {
    font-size: 12px
}
.form-block .empty-option {
    font-weight: 300;
    font-size: 12px;
    color: #b94a48
}
.form-block .row-ext {
    padding-left:7px;
    padding-right:7px;
}
.form-block .row-ext [class*="col-"] {
    padding-left:8px;
    padding-right:8px;
}
.form-block .row-ext-sm {
    padding-left:12px;
    padding-right:12px;
}
.form-block .row-ext-sm [class*="col-"] {
    padding-left:3px;
    padding-right:3px;
}
.form-block.form-sm{
    margin-top:40px;
    margin-bottom:40px;
}

.bread-crumbs-wrapper{
    margin: 0 0 45px;
}
.bread-crumbs-wrapper.mCS_no_scrollbar{
    margin: 0 0 40px;
}
.bread-crumbs{
    list-style: none;
    padding: 0;
    margin:0;
    display: flex;
    gap: 35px;
    font-size:14px;
    height:20px;
}
.bread-crumbs li{
    position:relative;
    line-height: 1;
    white-space: nowrap;
}
.bread-crumbs li::after{
    content:'→';
    position:absolute;
    display: block;
    width:16px;
    height: 16px;
    top:-1px;
    right:-26px;
    color:#848688;
}
.bread-crumbs li a{
    position: relative;
    color:#848688;
    text-decoration: none;
}
.bread-crumbs li:last-child a{
    color:#848688;
}
.bread-crumbs li:last-child::after{
    display: none;
}
.bread-crumbs li a:hover{
    text-decoration-line: underline;
    text-decoration-style: dashed;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
}
.bread-crumbs-wrapper .mCustomScrollBox + .mCSB_scrollTools + .mCSB_scrollTools.mCSB_scrollTools_horizontal,
.bread-crumbs-wrapper .mCustomScrollBox + .mCSB_scrollTools.mCSB_scrollTools_horizontal{
    bottom: -17px;
}

.page-pic-wrapper{
    float:left;
    margin:0 30px 30px 0;
}
.page-pic-wrapper img{
    max-width:400px;
    border-radius:10px;
    box-shadow: 0 3px 7px rgba(0,0,0,0.3);
}
.page-title .cat-image{
    display: inline-block;
    max-height: 28px;
    width: auto;
    margin-right:12px;
}

.empty-block{
    display: flex;
    align-items: center;
    height:80px;
    margin: 20px 0;
    padding: 20px;
    border-left: 1px solid #e5e5e5;
}

.sectioninfo-block{
    margin: 20px 0;
    padding: 20px 0 0;
    border-top: 1px solid #e5e5e5;
}
h2.sectioninfo-title{
    margin: 0 0 20px;
    font-size:18px;
    font-weight: bold;
}

.backcat-link{
    display: flex;
    align-items: center;
    min-height: 16px;
    font-size:14px;
    font-weight: bold;
    padding-left:28px;
    background: url("../images/icons/back.png") left center no-repeat;
    background-size: 16px auto;
    margin-top: 30px;
}

.pagination__list{
    padding:0;
    margin:0;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap:10px;
}
.pagination__list li{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    width: 34px;
    height: 34px;
    line-height: 1;
    color: #343537;
    border: 1px solid #e4e4e4;
    border-radius:5px;
    background: #fff;
}
.pagination__list li.empty{
    border:0;
    background: transparent;
    align-items: flex-end;
    margin-top:auto;
}

.pagination__list li a{
    display:flex;
    justify-content: center;
    align-items: center;
    width:100%;
    height:100%;
    color: inherit;
    text-decoration: none;
}
.pagination__list li.arrow{
    background: transparent;
    border:0;
}
.pagination__list li a[id]{
    text-indent:-10000px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 16px;
}
.pagination__list li a#PrevLink{
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="%23131516" viewBox="0 0 24 24"><path d="M17.17,24a1,1,0,0,1-.71-.29L8.29,15.54a5,5,0,0,1,0-7.08L16.46.29a1,1,0,1,1,1.42,1.42L9.71,9.88a3,3,0,0,0,0,4.24l8.17,8.17a1,1,0,0,1,0,1.42A1,1,0,0,1,17.17,24Z"></path></svg>');
}
.pagination__list li a#NextLink{
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="%23131516" viewBox="0 0 24 24"><path d="M7,24a1,1,0,0,1-.71-.29,1,1,0,0,1,0-1.42l8.17-8.17a3,3,0,0,0,0-4.24L6.29,1.71A1,1,0,0,1,7.71.29l8.17,8.17a5,5,0,0,1,0,7.08L7.71,23.71A1,1,0,0,1,7,24Z"></path></svg>');
}

.pagination__list li.active{
    background: #04356c;
    color: #fff;
    border-color: #04356c;
}
.pagination__list li.active a{
    color:inherit;
}

.loading{
    position: absolute;
    left:0;
    top:0;
    right:0;
    bottom:0;
    background: url("../images/loading/48x48.gif") center center no-repeat rgba(255,255,255,0.8);
    z-index: 10;
    display: none;
}
.message{
    position: fixed;
    left:0;
    top:0;
    width: 100vw;
    height: 100vh;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,0.75);
    z-index: 10000000000000;
    display: none;
}
.message .inner{
    position: relative;
    padding:30px;
    background: #fff;
    border-radius: 5px;
    max-width: 470px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}
.message.error .inner{
    background: #fff3f3;
}
.message.success .inner{
    background: #f3fff3;
}
.message.success .inner a{
    color:#000;
}
.message-close{
    position: absolute;
    display: block;
    top:10px;
    right:10px;
    width:18px;
    height:18px;
    background: url("../images/close-btn-b.png") center center no-repeat;
}

input[name=chk]{
    display:none !important;
}

iframe[src*="youtube.com"],
iframe[src*="youtu.be"] {
    width: 640px;
    height: 527px;
}

svg#search{
    display: block;
    width:40px;
    height:40px;
    fill:#fff;
    cursor:pointer;
    margin: 0 20px;
}

#popup-search{
    position: fixed;
    left:0;
    top:0;
    width: 100%;
    height: 100vh;
    z-index:1000;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
}
.modal-search-form{
    width:100%;
    max-width: 450px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 4px rgba(0,0,0,.25);
    border:1px solid #04356c;
}
.modal-search-form button{
    display: block;
    height:50px;
    width: 50px;
    background-color: #04356c;
    border: none;
    outline: none;
    cursor: pointer;
    fill: #fff;
}
.modal-search-form input{
    padding: 0 50px 0 12px;
    flex:1;
    height: 50px;
    line-height: 50px;
    font-size: 24px;
    position: relative;
    color: #000;
    background-color: #fff;
    border:none;
    outline: none;
}
body.search-visible {
    overflow:hidden;
}
body.search-visible #popup-search{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}