

/* Start:/bitrix/templates/psiz/components/bitrix/menu/mob-menu/style.css?17167234254492*/
.navBurger {
    display: none;
    position: fixed;
    top: 0.8rem;
    right: 15px;
    z-index: 9999;
    cursor: pointer;
    background: #000;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background-clip: content-box;
    width: 30px;
    height: 24px;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}
.navBurger:before, .navBurger:after {
    content: "";
    position: absolute;
    background: #000;
    height: 2px;
    width: 100%;
    right: 0;
    will-change: rotate;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.navBurger:before {
    top: -10px;
}
.navBurger:after {
    bottom: -10px;
    width: 90%;
}
.navBurger.active {
    background: transparent;
    background-clip: content-box;
}
.navBurger.active:before {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    top: 0;
    background: #000;
    width: 110%;
}
.navBurger.active:after {
    bottom: 0;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
    background: #000;
    width: 110%;
}

.overlay {
    position: fixed;
    background: #ecf4fa;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    -webkit-transform-origin: right top;
    transform-origin: right top;
    -webkit-transform: scale(0);
    transform: scale(0);
    visibility: hidden;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    overflow: hidden;
}
.overlay.open {
    opacity: 1;
    z-index: 9998;
    visibility: visible;
    -webkit-transform: scale(1);
    transform: scale(1);
}
.overlay.open li {
    display: block;
    -webkit-animation: fadeInRight 0.4s cubic-bezier(0.42, 0.83, 0.7, 1.5) forwards;
    animation: fadeInRight 0.4s cubic-bezier(0.42, 0.83, 0.7, 1.5) forwards;
    -webkit-animation-delay: .4s;
    animation-delay: .4s;
    -webkit-transform: rotate(-7deg);
    transform: rotate(-7deg);
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
}
.overlay.open li:nth-of-type(2) {
    -webkit-animation-delay: .5s;
    animation-delay: .5s;
}
.overlay.open li:nth-of-type(3) {
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
}
.overlay.open li:nth-of-type(4) {
    -webkit-animation-delay: .7s;
    animation-delay: .7s;
}
.overlay.open li:nth-of-type(5) {
    -webkit-animation-delay: .8s;
    animation-delay: .8s;
}

.overlayMenu {
    position: absolute;
    text-align: left;
    left: 10vw;
    top: 10vh;
    background-color: transparent;
}
.overlayMenu ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: block;
    position: relative;
    height: 100%;
}
.overlayMenu ul li {
    display: block;
    position: relative;
    opacity: 0;
    width: 100%;
}
.overlayMenu > ul > li > a{
    display: inline-block;
    color: #373737;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    margin: 5px 0;
    -webkit-transition: .2s;
    transition: .2s;
    letter-spacing: .03rem;
}
.overlayMenu > ul > li > a:hover,
.overlayMenu > ul > li > a:active,
.overlayMenu > ul > li > a:focus {
    text-decoration: none;
}
.overlayMenu > ul > li > ul{
    margin-bottom: 1rem;
}
.overlayMenu > ul > li > ul > li > a{
    display: inline-block;
    color: #373737;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 5px 70px 5px 20px;
    line-height: 110%;
    margin: 0;
    -webkit-transition: .2s;
    transition: .2s;
    letter-spacing: .03rem;
}

.locked {
    overflow: hidden;
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        left: 50px;
    }
    100% {
        opacity: 1;
        left: 0;
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        left: 50px;
    }
    100% {
        opacity: 1;
        left: 0;
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@media (max-width: 768px) {
    .navBurger{
        display: block;
    }
}
/* End */


/* Start:/bitrix/templates/psiz/components/bitrix/menu/top-menu/style.css?17167234252372*/
.menu-box nav{
    width: auto;
}
.menu-box nav ul{
    list-style: none;
    margin: 0;
    padding: 0;
}
.menu-box nav .topmenu > li{
    display: inline-block;
    margin-right: 2.4rem;
    position: relative;
    font-weight: 500;
    font-size: 17px;
}
.menu-box nav .topmenu > li::after{
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: rgb(0,83,146); /* Old browsers */
    background: -moz-linear-gradient(left,  rgba(0,83,146,1) 0%, rgba(70,175,224,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left,  rgba(0,83,146,1) 0%,rgba(70,175,224,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right,  rgba(0,83,146,1) 0%,rgba(70,175,224,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#005392', endColorstr='#46afe0',GradientType=1 ); /* IE6-9 */
    transition: width .3s;
}
.menu-box nav .topmenu > li:hover::after{
    width: 100%;
    transition: width .3s;
}
.menu-box nav .topmenu > li:hover{

}
.menu-box nav .topmenu > li:last-child {
    margin-right: 0;
}
.menu-box nav .topmenu > li > a{
    font-weight: 500;
    font-size: 17px;
    color: #373737;
    text-decoration: none;
}
.menu-box nav .topmenu > li > a.root-item-selected{
    color: rgb(0,83,146);;
}

.menu-box nav .submenu {
    position: absolute;
    top: 100%;
    left: -1.8rem;
    width: auto;
    z-index: 10;
    padding: 0.8rem;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

.menu-box nav ul {

}
.menu-box nav ul a,
.menu-box nav ul a:hover{
    text-decoration: none;
}
.menu-box nav .submenu {
    visibility: hidden;
    opacity: 0;
    background-color: #ecf4fa;
}
.menu-box nav .submenu-box > a{
    display: block;
    background-image: url("/bitrix/templates/psiz/components/bitrix/menu/top-menu/images/arrow.svg");
    background-position: right center;
    background-repeat: no-repeat;
    padding-right: 1.2rem;
}

.menu-box nav ul li:hover .submenu {
    visibility: visible;
    opacity: 1;
}
.menu-box nav .submenu li{
    padding: 0.6rem 1rem;
}
.menu-box nav .submenu li a {
    font-weight: 500;
    font-size: 15px;
    white-space: nowrap;
    color: #373737;
    text-decoration: none;
}
.menu-box nav .submenu li a:hover{
    color: #005392;
}
/* End */


/* Start:/bitrix/components/nrj/psiz.slider.index/templates/.default/style.css?17167234154508*/
.index-carousel .col-12{
    padding: 0 !important;
}
.index-carousel .carousel-cell {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    counter-increment: gallery-cell;
}
.index-carousel .flickity-viewport {
    height: 0 !important;
    padding-bottom: 48%;
}
.index-carousel .carousel-cell:before {
    display: none;
}
.index-carousel .flickity-page-dots{
    bottom: 1rem;
}
.index-carousel .flickity-prev-next-button{
    background-color: transparent;
    width: 80px;
    height: 80px;
    left: 50%;
}
.index-carousel .flickity-prev-next-button.previous{
    margin-left: -660px;
}
.index-carousel .flickity-prev-next-button.next{
    margin-left: 580px;
}
.index-carousel .flickity-prev-next-button path{
    fill: #fff;
    transition: all 0.3s ease;
}
.index-carousel .flickity-prev-next-button:hover path{
    fill: #005392;
    transition: all 0.3s ease;
}
.index-carousel .flickity-page-dots .dot{
    width: 12px;
    height: 12px;
    background-color: #a7bed4;
    border-radius: 0%;
    margin: 0 6px;
}
.index-carousel .flickity-page-dots .dot.is-selected{
    background-color: #fff;
}






/* content */
.index-carousel .top-banner-background{
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}
.index-carousel .top-banner-text{
    height: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.index-carousel .top-banner-text .center{
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    height: 100%;
}
.index-carousel .top-banner-text .center .text{
    text-align: center;
}
.index-carousel .top-banner-text .text{
    text-shadow: 2px 2px 9px rgba(0, 0, 0, 0.3);
    font-weight: 500;
    color: #fff;
    font-size: 2.3rem;
    max-width: 100%;
    line-height: 120%;
}
.index-carousel .top-banner-text .left .text span{
    display: block;
    padding-left: 2rem;
    border-left: 3px solid #cdcdcd;
    text-shadow: 2px 2px 9px rgba(0, 0, 0, 0.3);
    font-weight: 300;
    color: #fff;
    font-size: 2rem;
    max-width: 100%;
    line-height: 120%;
}
.index-carousel .top-banner-text .text.mw-40{max-width: 40rem;}
.index-carousel .top-banner-text .text.mw-60{max-width: 60rem;}




@media screen and (max-width: 992px){
    .index-carousel .top-banner-text .h{
        font-size: 5vw;
    }
    .index-carousel .top-banner-text .sh{
        font-size: 3vw;
    }
    .index-carousel .top-banner-text .l{
        margin-top: 1rem;
    }
    .index-carousel .top-banner-text .l a{
        font-size: 2vw;
        padding: 0.6rem 1.2rem;
        border: 1px solid #fff;
    }
    .index-carousel .top-banner-text .t{
        font-size: 2.5vw;
        padding-left: 0.8rem;
        border-left-width: 2px;
    }
    .index-carousel .flickity-prev-next-button{
        width: 30px;
        height: 30px;
    }
    .index-carousel .flickity-prev-next-button.previous{
        margin-left: 0;
        left: 0px;
    }
    .index-carousel .flickity-prev-next-button.next{
        margin-left: 0;
        right: 0px;
        left: auto;
    }
    /*
    .index-carousel .flickity-prev-next-button{
        display: none;
    }
    */
}
@media screen and (max-width: 768px){
    .index-carousel .flickity-page-dots{
        display: none;
    }
    .index-carousel .top-banner-text .text{
        font-size: 1.2rem;
    }
    .index-carousel .top-banner-text .text.mw-40,
    .index-carousel .top-banner-text .text.mw-60{
        max-width: 80%;
    }
}
@media screen and (max-width: 576px){
    .index-carousel .flickity-viewport {
        padding-bottom: 66%;
    }
}



@media screen and (min-width: 576px){
    .index-carousel .top-banner-text{
        max-width: 540px;
    }
}
@media screen and (min-width: 768px){
    .index-carousel .top-banner-text{
        max-width: 720px;
    }
}
@media screen and (min-width: 992px){
    .index-carousel .top-banner-text{
        max-width: 960px;
    }
}
@media screen and (min-width: 1200px) {
    .index-carousel .top-banner-text{
        max-width: 1140px;
    }
}



@media screen and (min-width: 1300px) {
    .index-carousel .flickity-viewport {
        padding-bottom: 40%;
    }
}
@media screen and (min-width: 1680px) {
    .index-carousel .flickity-viewport {
        padding-bottom: 34%;
    }
}
@media screen and (min-width: 1920px) {
    .index-carousel .flickity-viewport {
        padding-bottom: 28%;
    }
}
/* End */


/* Start:/bitrix/templates/psiz/components/bitrix/menu/bot-menu/style.css?1716723425285*/
footer ul.botmenu{
    list-style: none;
    margin: 0;
    padding: 0;
}
footer ul.botmenu > li{
    margin-bottom: 0.5rem;
    font-weight: 600;
}
footer ul.botmenu ul{
    list-style: none;
    margin: 0 0 0 1.5rem;
    padding: 0;
}
footer ul.botmenu ul li{
    font-weight: 400;
}
/* End */


/* Start:/bitrix/templates/psiz/styles.css?17211484961284*/
*{
    color: #373737;
    font-family: 'Montserrat', Arial, Tahoma;
    font-weight: 300;
}
input, textarea{
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: transparent;
}
:focus{
    outline: 0 none;
}
a{
    color: #005392;

}
strong, b{
    font-weight: 700;
}
h1, .h1, h1 *, .h1 *{
    font-weight: 500;
    font-size: 3rem;
    margin-bottom: 0;
}


h2, .h2, h2 *, .h2 *{
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 0;
}
h3, .h3, h3 *, .h3 *{
    font-weight: 700;
    font-size: 1.9rem;
    margin-bottom: 0;
}

.h5, .h5 *{
    font-weight: 300;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    font-size: 1.2rem;
}
.h6, .h6 *{
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0;
}
.h6 a{
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0;
    color: #0A71B7;
}
.h7, .h7 *{
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 0;
}
.h8, .h8 *{
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0;
    line-height: 120%;
}
.tel,
.tel:hover,
.tel:focus,
.tel:active{
    text-decoration: none;
}
header .tel,
header .tel:hover,
header .tel:focus,
header .tel:active,
main .tel,
main .tel:hover,
main .tel:focus,
main .tel:active{
    color: #373737 !important;
}



/* End */


/* Start:/bitrix/templates/psiz/template_styles.css?172114849619050*/
html {
    position: relative;
    min-height: 100%;
}
body{
    margin-bottom: 24.8rem;
}
header,
nav,
main{
    background-color: #ffffff;
}
header,
header *,
footer,
footer *{
    transition: all 0.3s ease;
}
header{
    padding: 1rem 0;
    -webkit-box-shadow: 0px 5px 8px 0px rgba(50, 50, 50, 0.2);
    -moz-box-shadow:    0px 5px 8px 0px rgba(50, 50, 50, 0.2);
    box-shadow:         0px 5px 8px 0px rgba(50, 50, 50, 0.2);
    position: relative;
    z-index: 999;
}
header.fixed-top{
    padding: 0.4rem 0;
}
header .header-box{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    align-content: stretch;
}
header.fixed-top .header-box .logo-box img{
    width: 6rem;
    height: auto;
}
header.fixed-top .header-box .right-box .top-box{
    display: none;
}
header .header-box .logo-box img{
    width: 9rem;
    height: auto;
}
header .header-box .right-box .top-box{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: end;
    align-content: end;
    padding-bottom: 1.2rem;
}
header .header-box .right-box .top-box div{
    font-size: 0.9rem;
    line-height: 100%;
}
header .header-box .right-box .top-box div a{
    color: #373737;
    font-weight: 500;
}
header .header-box .right-box .top-box div a:hover{
    color: #005392;
    text-decoration: none;
}
header .header-box .right-box .top-box div img{
    height: 0.9rem;
    width: auto;
    margin-right: 0.5rem;
    margin-left: 2.5rem;
}
header .header-box .right-box .bottom-box{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
    align-content: center;
}
header .header-box .right-box .bottom-box .search-box{
    margin-left: 2.4rem;
}
header .header-box .right-box .bottom-box .search-box a{
    display: block;
    width: 20px;
    height: 20px;
    background-image: url("/bitrix/templates/psiz/images/top-search.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px;
    transition: all 0.3s ease;
}
header .header-box .right-box .bottom-box .search-box a:hover{
    background-size: 20px;
    transition: all 0.3s ease;
}


footer{
    background-color: #373737;
    position: absolute;
    bottom: 0;
    width: 100%;
    font-size: 0.8rem;
}
footer *{
    color: #fff;
}
footer a{
    color: #fff;
    text-decoration: none;
}
footer a:hover{
    color: #46AFE0;
    text-decoration: none;
}
footer a.tel:hover{
    color: #fff;
}

footer .container{
    padding-top: 2.5rem;
    padding-bottom: 2rem;
    color: #fff;
}
footer .footer-box-1 img{
    width: 100%;
    max-width: 150px;
    height: auto;
}
footer .footer-box-1{
    line-height: 130%;
}
footer .footer-box-1 .row img{
    width: 100%;
    max-width: 15px;
    height: auto;
}
footer .footer-box-2{
    margin-top: 2rem;
}
footer .nrj a > div{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
}
footer .nrj a{
    font-size: 0.8rem;
    color: #fff;
    float: left;
}
footer .nrj a *{
    transition: none;
}
footer .nrj a svg {
    fill: #ffffff;
    width: auto;
    height: 16px;
}
footer .nrj a:hover div{
    color: #46AFE0;
}
footer .nrj a:hover svg {
    fill: #46AFE0;
}



.nrj-pb-1{padding-bottom: 1rem;}
.nrj-pb-2{padding-bottom: 2rem;}
.nrj-pb-3{padding-bottom: 3rem;}
.nrj-pb-4{padding-bottom: 4rem;}
.nrj-pb-5{padding-bottom: 5rem;}

.nrj-pt-1{padding-top: 1rem;}
.nrj-pt-2{padding-top: 2rem;}
.nrj-pt-3{padding-top: 3rem;}
.nrj-pt-4{padding-top: 4rem;}
.nrj-pt-5{padding-top: 5rem;}

.nrj-mb-1{margin-bottom: 1rem;}
.nrj-mb-2{margin-bottom: 2rem;}
.nrj-mb-3{margin-bottom: 3rem;}
.nrj-mb-4{margin-bottom: 4rem;}
.nrj-mb-5{margin-bottom: 5rem;}

.nrj-mt-1{margin-top: 1rem;}
.nrj-mt-2{margin-top: 2rem;}
.nrj-mt-3{margin-top: 3rem;}
.nrj-mt-4{margin-top: 4rem;}
.nrj-mt-5{margin-top: 5rem;}


.background-color-1{background-color: #f6fafd;}
.background-color-2{background-color: #ecf4fa;}


.line-box{
    padding: 1.3rem 0;
    overflow: hidden;
}
.line-box span{
    background-color: #005392;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#005392+0,46afe0+100 */
    background: rgb(0,83,146); /* Old browsers */
    background: -moz-linear-gradient(left,  rgba(0,83,146,1) 0%, rgba(70,175,224,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left,  rgba(0,83,146,1) 0%,rgba(70,175,224,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right,  rgba(0,83,146,1) 0%,rgba(70,175,224,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#005392', endColorstr='#46afe0',GradientType=1 ); /* IE6-9 */
    width: 60px;
    height: 4px;
    display: block;
}
.text-center .line-box span,
.line-box.center span{
    margin: 0 auto;
}


main{
    font-size: 1rem;
}
main ul.circle {
    list-style: none;
    margin: 0;
    margin-bottom: 1rem;
    padding: 0;
}
main ul.circle li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 0.5rem;
}
main ul.circle li:before {
    border: 3px solid #005392;
    border-radius: 50%;
    content: "";
    height: 10px;
    width: 10px;
    left: 10px;
    position: absolute;
    top: 7px;
}
main .title-box{
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 3rem;
}
main .title-box .line-box{
    padding-bottom: 0;
    margin-bottom: 0;
}
main .title-box .line-box span{
    margin: 0 auto;
}

main .link{
    margin: 3rem 0 1rem 0;
    float: left;

}
main .link a{
    color: #fff;
    padding: 1rem 3rem;
    font-size: 1.3rem;
    font-weight: 500;
    background: rgb(0,83,146); /* Old browsers */
    background: -moz-linear-gradient(left,  rgba(0,83,146,1) 0%, rgba(70,175,224,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left,  rgba(0,83,146,1) 0%,rgba(70,175,224,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right,  rgba(0,83,146,1) 0%,rgba(70,175,224,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#005392', endColorstr='#46afe0',GradientType=1 ); /* IE6-9 */
    -webkit-border-radius: 6rem;
    -moz-border-radius: 6rem;
    border-radius: 6rem;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}
main .link a:hover,
main .link a:focus,
main .link a:active{
    text-decoration: none;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#005392+0,005392+70,46afe0+100 */
    background: rgb(0,83,146); /* Old browsers */
    background: -moz-linear-gradient(left,  rgba(0,83,146,1) 0%, rgba(0,83,146,1) 100%, rgba(70,175,224,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left,  rgba(0,83,146,1) 0%,rgba(0,83,146,1) 100%,rgba(70,175,224,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right,  rgba(0,83,146,1) 0%,rgba(0,83,146,1) 100%,rgba(70,175,224,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#005392', endColorstr='#46afe0',GradientType=1 ); /* IE6-9 */
}

main .link-s{
    margin: 0.2rem auto;
}
main .link-s a{
    color: #fff;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    background: rgb(0,83,146); /* Old browsers */
    background: -moz-linear-gradient(left,  rgba(0,83,146,1) 0%, rgba(70,175,224,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left,  rgba(0,83,146,1) 0%,rgba(70,175,224,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right,  rgba(0,83,146,1) 0%,rgba(70,175,224,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#005392', endColorstr='#46afe0',GradientType=1 ); /* IE6-9 */
    -webkit-border-radius: 6rem;
    -moz-border-radius: 6rem;
    border-radius: 6rem;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}
main .link-s a:hover,
main .link-s a:focus,
main .link-s a:active{
    text-decoration: none;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#005392+0,005392+70,46afe0+100 */
    background: rgb(0,83,146); /* Old browsers */
    background: -moz-linear-gradient(left,  rgba(0,83,146,1) 0%, rgba(0,83,146,1) 100%, rgba(70,175,224,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left,  rgba(0,83,146,1) 0%,rgba(0,83,146,1) 100%,rgba(70,175,224,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right,  rgba(0,83,146,1) 0%,rgba(0,83,146,1) 100%,rgba(70,175,224,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#005392', endColorstr='#46afe0',GradientType=1 ); /* IE6-9 */
}
/*************************************contacts*************************************/
.contacts-img-1{
    width: 100%;
    height: auto;
}
/*************************************index*************************************/
.img-style-2{
    height: 90px;
    width: auto;
}
main .about-box-1{
    margin-top: 4rem;
    margin-bottom: 3rem;
}


.index-box-2 .index-box-2-text-1{
    text-align: center;
    padding-bottom: 2rem;
}
.index-box-2 .index-box-2-text-1 .text{
    font-size: 20px;
    margin-top: 1rem;
}







.index-box-2 .index-box-2-text-2 .col-md-4{
    margin-bottom: 2rem;
}
.index-box-2 .index-box-2-text-2 .col-md-4 div.img{
    background-position: top center;
    background-repeat: no-repeat;
    background-size: auto 100%;
    width: 100%;
    height: 200px;
    transition: all 0.3s ease;
}
.index-box-2 .index-box-2-text-2 .col-md-4:hover div.img{
    background-size: auto 105%;
    transition: all 0.3s ease;
}
.index-box-2 .index-box-2-text-2 .col-md-4 div.img div.background{
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 200px;
    transition: all 0.3s ease;
}
.index-box-2 .index-box-2-text-2 .col-md-4:hover div.img div.background{
    background: rgba(0, 0, 0, 0);
    transition: all 0.3s ease;
}
.index-box-2 .index-box-2-text-2 .col-md-4 div.img.img-1{background-image: url("/bitrix/templates/psiz/images/index-box2/index-box2-01.jpg");}
.index-box-2 .index-box-2-text-2 .col-md-4 div.img.img-2{background-image: url("/bitrix/templates/psiz/images/index-box2/index-box2-02.jpg");}
.index-box-2 .index-box-2-text-2 .col-md-4 div.img.img-3{background-image: url("/bitrix/templates/psiz/images/index-box2/index-box2-03.jpg");}
.index-box-2 .index-box-2-text-2 .col-md-4 div.img.img-4{background-image: url("/bitrix/templates/psiz/images/index-box2/index-box2-04.jpg");}
.index-box-2 .index-box-2-text-2 .col-md-4 div.img.img-5{background-image: url("/bitrix/templates/psiz/images/index-box2/index-box2-05.jpg");}
.index-box-2 .index-box-2-text-2 .col-md-4 div.img.img-6{background-image: url("/bitrix/templates/psiz/images/index-box2/index-box2-06.jpg");}
.index-box-2 .index-box-2-text-2 .col-md-4 div.img.img-7{background-image: url("/bitrix/templates/psiz/images/index-box2/index-box2-07.jpg");}
.index-box-2 .index-box-2-text-2 .col-md-4 div.img.img-8{background-image: url("/bitrix/templates/psiz/images/index-box2/index-box2-08.jpg");}
.index-box-2 .index-box-2-text-2 .col-md-4 div.img.img-9{background-image: url("/bitrix/templates/psiz/images/index-box2/index-box2-09.jpg");}
.index-box-2 .index-box-2-text-2 .col-md-4 div.img.img-10{background-image: url("/bitrix/templates/psiz/images/index-box2/index-box2-10.jpg");}
.index-box-2 .index-box-2-text-2 .col-md-4 div.img.img-11{background-image: url("/bitrix/templates/psiz/images/index-box2/index-box2-11.jpg");}
.index-box-2 .index-box-2-text-2 .col-md-4 div.img.img-12{background-image: url("/bitrix/templates/psiz/images/index-box2/index-box2-12.jpg");}
.index-box-2 .index-box-2-text-2 .col-md-4 div.text,
.index-box-2 .index-box-2-text-2 .col-md-4 div.text-big{
    background-color: rgba(255,255,255,0.9);
    margin-left: 2rem;
    margin-right: 2rem;
    margin-top: -2.5rem;
    text-align: center;
    min-height: 5rem;
    padding-left: 2rem;
    padding-right: 2rem;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: stretch;
    align-content: stretch;
}
.index-box-2 .index-box-2-text-2 .col-md-4 div.text{

}
.index-box-2 .index-box-2-text-2 .col-md-4 div.text-big.gradient{
    border: 4px solid transparent;
    border-image: linear-gradient(to right, #015493 , #45aedf);
    -moz-border-image: -moz-linear-gradient(to right, #015493 , #45aedf);
    -webkit-border-image: -webkit-linear-gradient(to right, #015493 , #45aedf);
    border-image-slice: 1;
}
.index-box-2 .index-box-2-text-2 .col-md-4 div.text.gradient{
    border: 3px solid transparent;
    border-image: linear-gradient(to right, #015493 , #45aedf);
    -moz-border-image: -moz-linear-gradient(to right, #015493 , #45aedf);
    -webkit-border-image: -webkit-linear-gradient(to right, #015493 , #45aedf);
    border-image-slice: 1;
}
.index-box-2 .index-box-2-text-2 .col-md-4 div.text-big .h8{
    font-size: 1.2rem;
}


.privilege-box .h8{
    font-size: 0.9rem;
}






.custom-checkbox {
    position: absolute;
    z-index: -1;
    opacity: 0;
}
.custom-checkbox+label {
    display: inline-flex;
    align-items: center;
    user-select: none;
    font-weight: 300;
    line-height: 100%;
}
.custom-checkbox+label::before {
    border: 1px solid #0a71b7;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    content: '';
    display: inline-block;
    width: 1.3rem;
    height: 1.3rem;
    flex-shrink: 0;
    flex-grow: 0;
    margin-right: 0.5em;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 60% 60%;
}
.custom-checkbox:not(:disabled):not(:checked)+label:hover::before {}
.custom-checkbox:not(:disabled):active+label::before {}
.custom-checkbox:focus+label::before {}
.custom-checkbox:focus:not(:checked)+label::before {}
.custom-checkbox:checked+label::before {
    background-color: #0a71b7;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}
.custom-checkbox:disabled+label::before {
    background-color: #0a71b7;
}



.index-form .container input[type='submit']{
    border: 0;
    color: #fff;
    padding: 1rem 3rem;
    font-size: 1.3rem;
    font-weight: 500;
    background: rgb(0,83,146); /* Old browsers */
    background: -moz-linear-gradient(left,  rgba(0,83,146,1) 0%, rgba(70,175,224,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left,  rgba(0,83,146,1) 0%,rgba(70,175,224,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right,  rgba(0,83,146,1) 0%,rgba(70,175,224,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#005392', endColorstr='#46afe0',GradientType=1 ); /* IE6-9 */
    -webkit-border-radius: 6rem;
    -moz-border-radius: 6rem;
    border-radius: 6rem;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    line-height: 100%;
}
.index-form .container input[type='submit']:hover,
.index-form .container input[type='submit']:focus,
.index-form .container input[type='submit']:active{
    background: rgb(0,83,146); /* Old browsers */
    background: -moz-linear-gradient(left,  rgba(0,83,146,1) 0%, rgba(0,83,146,1) 100%, rgba(70,175,224,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left,  rgba(0,83,146,1) 0%,rgba(0,83,146,1) 100%,rgba(70,175,224,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right,  rgba(0,83,146,1) 0%,rgba(0,83,146,1) 100%,rgba(70,175,224,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#005392', endColorstr='#46afe0',GradientType=1 ); /* IE6-9 */
}

.err404-img-1{
    width: 100%;
    height: auto;
}

/***********************************SEARCH MODAL************************************/
.navbar-search{
    position: relative;
}
.modal-search {
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    visibility: hidden;
    width: 100%;
    height: 100vh;
    background-color: rgba(34,34,34,0.97);
    opacity: 0;
    transition: all 0.3s ease 0s;
}
.modal-search.open {
    visibility: visible;
    opacity: 1;
    z-index: 9999;
}
.search-close {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    font-size: 18px;
    border: none;
    opacity: 1 !important;
    z-index: 9999;
    transition: all 0.3s;
    background: rgb(0,83,146); /* Old browsers */
    background: -moz-linear-gradient(left,  rgba(0,83,146,1) 0%, rgba(70,175,224,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left,  rgba(0,83,146,1) 0%,rgba(70,175,224,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right,  rgba(0,83,146,1) 0%,rgba(70,175,224,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#005392', endColorstr='#46afe0',GradientType=1 ); /* IE6-9 */
}

.wrap-fixed-menu  .fullmenu-close {
    position: relative;
    margin-bottom: 0px !important;
    top: 0;
    right: 0;
    width: 60px;
    display: block;
    border-radius: 100px;
    height: 60px;
    margin: 0 auto;
    font-size: 18px;
    border: none;
    background: none !important;
}

.wrap-fixed-menu  .fullmenu-close  i{
    color: #fff;
}


.search-open {
    float: right;
    height: 40px;
    padding-top: 7px;
    padding-left: 22px;
    font-size: 14px;
    color: #fff;
    background-color: #fff;
}
.modal-search.open {
    visibility: visible;
    opacity: 1;
}
.search-global {
    position: absolute;
    top: 50vh;
    margin-top: -120px;
    width: 100%;
}
.search-global__input {
    width: 100%;
    padding-right: 50px;
    line-height: 1.4;
    padding-bottom: 0;
    font-size: 72px;
    color: #fff;
    border: none;
    background-color: transparent;
    opacity: 1;
    border-bottom: 1px solid #fff;
    font-weight: 400;
}


.search-global__input::-moz-placeholder {
    color: #fff;
}
.search-global__input:-ms-input-placeholder {
    color: #fff;
}
.search-global__input::-webkit-input-placeholder {
    color: #fff;
}


.search-global__input:focus {
    outline-style: none;
}
.search-global__btn {
    position: absolute;
    top: 34px;
    right: 0;
    font-size: 30px;
    color: #fff;
    border: none;
    background-color: transparent;
    transition: all 0.3s;
}
.search-global__note {
    margin-top: 10px;
    font-weight: 300;
    font-size: 14px;
    color: #fff;
}
.btn_header_search {
    font-size: 16px!important;
    padding: 0 38px !important;
}

.btn_header_search .icon {
    font-size: 16px;
}

.modal-search .fa{
    color: #ffffff;
}
.modal-search .fa.fa-search{
    font-size: 3rem;
    color: #fff;
}
/* End */
/* /bitrix/templates/psiz/components/bitrix/menu/mob-menu/style.css?17167234254492 */
/* /bitrix/templates/psiz/components/bitrix/menu/top-menu/style.css?17167234252372 */
/* /bitrix/components/nrj/psiz.slider.index/templates/.default/style.css?17167234154508 */
/* /bitrix/templates/psiz/components/bitrix/menu/bot-menu/style.css?1716723425285 */
/* /bitrix/templates/psiz/styles.css?17211484961284 */
/* /bitrix/templates/psiz/template_styles.css?172114849619050 */
