@import url(bootstrap.css);
@import url(font-awesome.css);
@import url(jquery.fancybox3.css);
@import url(settings.css);
/*
    font-family: 'Open Sans', sans-serif;
    font-family: 'Montserrat', sans-serif;
    color: #002F89;
*/
@font-face {
    font-family: 'Material Icons';
    src: url('../fonts/MaterialIcons-Regular.woff2') format('woff2'), 
         url('../fonts/MaterialIcons-Regular.woff') format('woff'), 
         url('../fonts/MaterialIcons-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}
body{
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #031B4B;
    overflow-x: hidden;
    background: #E8ECEE;
}
.main-wrapper{
    width: 1920px;
    max-width: 100%;
    margin: auto;
    position: relative;
}
blockquote{
    margin: 30px 0;
    font-size: 18px;
    font-style: italic;
    font-weight: 600;
}
.content p{
    line-height: 1.9;
}
.content ul,
.content ol{
    margin: 30px 0;
    line-height: 1.9;
}
.content ul > li,
.content ol > li{
    margin-bottom: 14px;
    position: relative;
}
.content ul > li{
    padding-left: 30px;
}
.content ul > li:after{
    content: "";
    display: block;
    position: absolute;
    width: 8px;
    height: 8px;
    top: 12px;
    left: 10px;
    background: #1F52B2;
    border-radius: 50%;
}
.content ul ul,
.content ol ul,
.content ol ol,
.content ul ol{
    padding-top: 10px;
    padding-left: 10px;
}
.content ul ul li,
.content ol ul li{
    padding-left: 15px;
    position: relative;
    margin-bottom: 10px;
}
.content ul ul li:after,
.content ol ul li:after{
    content: "";
    display: block;
    position: absolute;
    width: 4px;
    height: 4px;
    top: 9px;
    left: 0;
    border: 1px solid #999999;
    border-radius: 50%;
}
.content ul ol li,
.content ol ol li{
    list-style: decimal; 
    padding-left: 3px;
    margin-left: 12px;
    margin-bottom: 10px;
}
.content ol{ 
    counter-reset: item; 
}
.content ol li{
    display: block; 
}
.content ol li:before{ 
    content: counters(item, ".") ". "; 
    counter-increment: item;
    padding: 0 5px 0 10px;
    color: #999999;
}
.content ul ul ol li:after,
.content ol ul ol li:after{
    display: none;
}
.content table{
    width: 100%;
    margin-bottom: 30px;
}
.content table th{
    background: #000;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    padding: 20px;
    vertical-align: middle;
    border: 1px solid #000;
    border-right-color: #333333;
}
.content table td{
    border: 1px solid #E5E5E5;
    padding: 20px;
    vertical-align: middle;
    font-weight: 100;
    font-size: 15px;
}
.content table .separate td{
    background: #F7F7F7;
    font-size: 17px;
    font-weight: normal;
}
.clear-hr,
.cleaner-hr{
    height: 0;
    opacity: 0;
    margin: 0;
    padding: 0;
    border: none;
}
h1,
.title-h1{
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 55px;
    line-height: 1;
    margin-bottom: 40px;
    letter-spacing: 3px;
    text-transform: uppercase;
}
h2,
.title-h2{
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 50px;
    line-height: 1;
    margin-bottom: 30px;
    letter-spacing: 1px;
}
h3,
.title-h3{
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 40px;
    line-height: 1;
    margin-bottom: 30px;
    letter-spacing: 1px;
}
h4,
.title-h4{
    font-size: 30px;
    line-height: 1;
    margin-bottom: 20px;
}
@media (max-width: 1229px) {
    h1,
    .title-h1{
        font-size: 50px;
    }
    h2,
    .title-h2{
        font-size: 45px;
    }
    h3,
    .title-h3{
        font-size: 35px;
    }
}
@media (max-width: 991px) {
    h1,
    .title-h1{
        font-size: 45px;
    }
    h2,
    .title-h2{
        font-size: 40px;
    }
    h3,
    .title-h3{
        font-size: 30px;
    }
}
@media (max-width: 767px) {
    h1,
    .title-h1{
        font-size: 26px;
        letter-spacing: 0;
        line-height: 1.3;
    }
    h2,
    .title-h2{
        font-size: 24px;
    }
    h3,
    .title-h3{
        font-size: 22px;
    }
}
.light{
    font-weight: 100;
}
.red{
    color: #FF4632;
}
.white{
    color: #fff;
}
.black{
    color: #000;
}
.gray{
    color: #676767;
}
p{
    margin-bottom: 20px;
}
a{
    color: #002F89;
    text-decoration: none;
    -webkit-transition: all 200ms ease-out;
	-moz-transition: all 200ms ease-out;
	-o-transition: all 200ms ease-out;
	transition: all 200ms ease-out;
}
a:hover{
    color: #000;
}
a:focus{
    outline: none;
}
.btn{
    display: inline-block;
    text-decoration: none;
    color: #fff;
    background: #21252a;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 12px 35px;
    margin-bottom: 15px;
    position: relative;
    text-align: center;
    cursor: pointer;
    -webkit-transition: all 200ms ease-out;
	-moz-transition: all 200ms ease-out;
	-o-transition: all 200ms ease-out;
	transition: all 200ms ease-out;
    border: 2px solid #002F89;
    border-radius: 4px;
}
.btn:hover{
    background: transparent;
    color: #002F89;
    border-color: #002F89;
}
.btn.btn-transparent,
.btn.transparent-btn,
.btn.invert{
    background: transparent;
    color: #002F89;
}
.btn.btn-transparent:hover,
.btn.transparent-btn:hover,
.btn.invert:hover{
    color: #fff;
    background: #002F89;
}
.btn.btn-white{
    background: #fff;
    border-color: #fff;
    color: #002F89;
}
.btn.btn-white:hover{
    background: transparent;
    border-color: #002F89;
}
.btn.block{
    display: block;
    width: 100%;
}
.btn.big{
    padding: 18px 55px;
}
.form-group{
    position: relative;
}
.modal {
    display: none;
    width: 560px;
    max-width: 100%;
    background: #fff;
    padding: 35px 25px 25px;
}
#responseMessage .modal-content.error{
    color: #FF4632;
}
/**************************************/

/* ======= AGREEMENT ======= */
.agreement{
    position: relative;
    margin-bottom: 20px;
    color: #7C7F8C;
}
.agreement input{
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
}
.agreement input + label{
    padding-left: 30px;
    position: relative;
    font-size: 13px;
    display: inline-block;
}
.agreement i{
    position: absolute;
    top: -1px;
    left: 0;
}
.agreement input + label .checked{
    display: none;
}
.agreement input:checked + label .checked{
    display: inline-block;
    color: green;
}
.agreement input:checked + label .no-checked{
    display: none;
}
.agreement input.error + label{
    color: red;
}
/* ======= /. AGREEMENT ======= */


/* PAGINATION */
.pagination{
    margin: 30px 0;
    text-align: center;
}
.pagination li{
    display: inline-block;
    text-align: center;
}
.pagination a,
.pagination li > span{
    font-size: 16px;
    font-weight: bold;
    color: #2867B8;
    display: block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-decoration: none;
}
.pagination a:hover{
    color: #132D88;
}
.pagination .active a{
    background: #002F89;
    color: #fff;
}
/* /. PAGINATION */


/* mob-menu-btn begin */
.menu-button{
    position: fixed;
    right: 12px;
    top: 28px;
    width: 30px;
    height: 20px;
    cursor: pointer;
    -webkit-transition: all 200ms ease-out;
    -moz-transition: all 200ms ease-out;
    -o-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
    z-index: 1010;
}
.icon-menu-burger {
    height: 2px;
    width: 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -1px 0 0 -15px;
    -webkit-transition: transform 0.2s ease 0s;
    -moz-transition: transform 0.2s ease 0s;
    -o-transition: transform 0.2s ease 0s;
    -ms-transition: transform 0.2s ease 0s;
    transition: transform 0.2s ease 0s;
    -webkit-transition: -webkit-transform 0.2s ease 0s;
}
.icon-menu-burger__line {
    background: #000;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: transform 0.2s linear 0.2s;
    -moz-transition: transform 0.2s linear 0.2s;
    -o-transition: transform 0.2s linear 0.2s;
    -ms-transition: transform 0.2s linear 0.2s;
    transition: transform 0.2s linear 0.2s;
    -webkit-transition: -webkit-transform 0.2s linear 0.2s;
}
.icon-menu-burger:before, 
.icon-menu-burger:after {
    background: #000;
    content: '';
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
}

.menu-button.active .icon-menu-burger__line,
.menu-button.active .icon-menu-burger:before, 
.menu-button.active .icon-menu-burger:after {
    background: #FF2C3E !important;
}
.icon-menu-burger:before {
    top: -9px;
    -webkit-transition: top 0.2s linear 0.4s;
    -moz-transition: top 0.2s linear 0.4s;
    -o-transition: top 0.2s linear 0.4s;
    -ms-transition: top 0.2s linear 0.4s;
    transition: top 0.2s linear 0.4s;
}
.icon-menu-burger:after {
    bottom: -9px;
    -webkit-transition: bottom 0.2s linear 0.4s;
    -moz-transition: bottom 0.2s linear 0.4s;
    -o-transition: bottom 0.2s linear 0.4s;
    -ms-transition: bottom 0.2s linear 0.4s;
    transition: bottom 0.2s linear 0.4s;
}
.menu-button.active .icon-menu-burger{
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: transform 0.2s linear 0.4s;
    -moz-transition: transform 0.2s linear 0.4s;
    -o-transition: transform 0.2s linear 0.4s;
    -ms-transition: transform 0.2s linear 0.4s;
    transition: transform 0.2s linear 0.4s;
    -webkit-transition: -webkit-transform 0.2s linear 0.4s;
}
.menu-button.active .icon-menu-burger__line{
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}
.menu-button.active .icon-menu-burger:before {
    -webkit-transition: top 0.2s linear;
    -moz-transition: top 0.2s linear;
    -o-transition: top 0.2s linear;
    -ms-transition: top 0.2s linear;
    transition: top 0.2s linear;
    top: 0;
}
.menu-button.active .icon-menu-burger:after {
    -webkit-transition: bottom 0.2s linear;
    -moz-transition: bottom 0.2s linear;
    -o-transition: bottom 0.2s linear;
    -ms-transition: bottom 0.2s linear;
    transition: bottom 0.2s linear;
    bottom: 0;
}
/* mob-menu-btn end */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -570px;
    background: #fff;
    height: 100%;
    width: 370px;
    max-width: 100%;
    z-index: 1000;
    -webkit-transition: all 200ms ease-out;
    -moz-transition: all 200ms ease-out;
    -o-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
}
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: -100;
    opacity: 0;
    -webkit-transition: opacity 200ms ease-out;
    -moz-transition: opacity 200ms ease-out;
    -o-transition: opacity 200ms ease-out;
    transition: opacity 200ms ease-out;
}
.logo-xs{
    height: 74px;
    padding-left: 10px;
}
.mobile-menu li{
    position: relative;
}
.mobile-menu > div > ul > li.down > a {
    padding-right: 60px;
}
.mobile-menu .dropdown-button{
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    height: 45px;
    width: 48px;
    z-index: 10;
}
.mobile-menu .dropdown-button:before {
    content: "";
    display: block;
    position: absolute;
    width: 12px;
    height: 12px;
    top: 13px;
    left: 16px;
    border-bottom: 1px solid #000;
    border-right: 1px solid #000;
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 300ms ease-out;
    -moz-transition: all 300ms ease-out;
    -o-transition: all 300ms ease-out;
    transition: all 300ms ease-out;
}
.mobile-menu .active .dropdown-button:before{
    border-color: #fff;
}
.mobile-menu .dropdown-button.active:before{
    -moz-transform: rotate(225deg);
    -webkit-transform: rotate(225deg);
    -o-transform: rotate(225deg);
    -ms-transform: rotate(225deg);
    transform: rotate(225deg);
    top: 19px;
}
.mobile-menu > div > ul > li > ul {
    position: static;
    width: 100%;
    display: none;
}
.mobile-menu > div > ul  > li > a {
    display: block;
    text-decoration: none;
    color: #132D88;
    padding: 13px 20px 10px;
    font-size: 16px;
    letter-spacing: 1px;
}
.mobile-menu > div > ul  > li.active > a{
    color: #ffffff;
    background: #002f89;
}
.mobile-menu > div > ul > li > ul > li.active > a,
.mobile-menu > div ul ul ul .active a{
    background: #6885BC;
    color: #fff;
}
.mobile-menu > div > ul > li > ul > li.active > a:before,
.mobile-menu > div ul ul ul .active a:before{
    background-color: #fff;
}
.mobile-menu > div > ul > li > ul > li > a,
.mobile-menu > div ul ul ul a{
    display: block;
    font-size: 15px;
    line-height: 18px;
    text-decoration: none;
    -webkit-transition: all 200ms ease-out;
    -moz-transition: all 200ms ease-out;
    -o-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
    padding: 10px 10px 10px 30px;
    
    position: relative;
}
.mobile-menu > div > ul > li > ul > li > a:before,
.mobile-menu > div ul ul ul a:before {
    content: "";
    display: block;
    position: absolute;
    top: 19px;
    left: 20px;
    width: 4px;
    height: 2px;
    background: #002f89;
}
.mobile-menu > div ul ul ul a{
    padding: 6px 10px 6px 45px;
    font-size: 13px;
}
.mobile-menu > div ul ul ul a:before{
    left: 34px;
    top: 12px;
}
.mobile-menu .dropdown-button + ul {
    position: static;
    width: 100%;
    display: none;
    margin-bottom: 10px;
}
.mobile-menu ul ul .dropdown-button:before{
    width: 6px;
    height: 6px;
    content: "+";
    border: none;
    color: #fff;
    -moz-transform: rotate(0) !important;
    -webkit-transform: rotate(0) !important;
    -o-transform: rotate(0) !important;
    -ms-transform: rotate(0) !important;
    transform: rotate(0) !important;
    top: 8px !important;
    left: 17px;
    font-size: 16px;
}
.mobile-menu .menu-button{
    display: none;
}
@media (max-width: 1229px) {
    .mobile-menu.open {
        left: 0;
    }
    .mobile-menu.open + .overlay {
        z-index: 500;
        opacity: 1;
    }
    .mobile-menu {
        overflow-y: scroll;
    }
}


@media (max-width: 500px) {
    .mobile-menu{
        width: 100%;
    }
    .mobile-menu-close {
        top: 26px;
        right: 10px;
    }
    .mobile-menu .menu-button{
        display: block;
        position: absolute;
    }
}
/************* /. mobile-menu **************/


/* ======= HEADER ======= */

.header-wrapper{
    width: 100%;
    position: fixed;
    z-index: 600;
    background: #fff;
    top: 0;
    left: 0;
    box-shadow: 0 2px 2px rgba(0,0,0,0.2);
}
.header-wrapper-push{
    height: 74px;
}
.header{
    height: 74px;
    padding-left: 334px;
}
.logo{
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.messangers-box .item a{
    display: flex;
    align-items: center;
    justify-content: center;
}
.messangers-box .item a img, .messangers-box .item a svg{
    width: 40px;
    height: 40px;
    fill:#fff;
}
.messangers-box .item.whatsapp a{
    background: #27A737;
}
.messangers-box .item.telegram a{
    background: #039BE5;
}
.messangers-box .item.viber a{
    background: #665CAC;
}
.messangers-box .item.instagram a{
    background: #DF1C88;
}
.messangers-box{
    left: 260px;
    top: 0;
    height: 100%;
    width: 74px;
    position: absolute;
    padding-top: 74px;
}
.messangers-box > div{
    display: none;
    width: 100%;
}
.messangers-box a{
    display: block;
    font-size: 15px;
    height: 74px;
    width: 100%;
    color: #fff;
    background: #233A8B;
}
.messangers-box > div.active{
    display: block;
    position: absolute;
    left: 0;
    top: 0;
}
.messangers-box > div.active:after{
    content:"";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 20;
}
.messangers-box .active a{
    background: #002F89;
}
.messangers-box a:first-letter{
    text-transform: uppercase;
}
.messangers-box:hover > div{
    display: block;
}

.messangers-box .item:hover{
    filter: brightness(1.2);
}
.messangers-box a .table-cell > span{
    position: relative;
    padding-right: 22px;
}
.messangers-box a .table-cell > span:after{
    content:"";
    display: none;
    position: absolute;
    width: 9px;
    height: 9px;
    top: 50%;
    right: 0;
    margin-top: -7px;
    border-bottom: 1px solid #fff;
    border-right: 1px solid #fff;
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.messangers-box .active a .table-cell > span:after{
    display: block;
}
.messangers-box a:hover{
    background: #000;
}
/* ======= TOP MENU ======= */
.top-menu{
    height: 100%;
}
.top-menu > ul{
    height: 100%;
}
.top-menu > ul > li{
    float: left;
    height: 100%;
    position: relative;
}
.top-menu > ul > li > a{
    height: 100%;
    line-height: 74px;
    color: #000000;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 800;
    display: block;
    padding: 0 37px;
    border-right: 1px solid #E3E4E4;
    letter-spacing: 1px;
}
.top-menu > ul > li.active > a,
.top-menu > ul > li > a:hover{
    color: #002F89;
}
.top-menu > ul > li:last-of-type > a{
    border-right: none;
}
.top-menu > ul > li > a:hover{
    background: #F5F6F6;
}
.top-menu > ul > li.active > a{
    background: #c3daff;
    border-right-color: #c3daff;
}




.top-menu > ul > li > ul{
    position: absolute;
    top: 74px;
    left: 0;
    width: 280px;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 200ms ease-out;
    -moz-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
}
.top-menu > ul > li:hover > ul{
    visibility: visible;
    opacity: 1;
}
.top-menu > ul > li > ul > div{
    box-shadow: 2px 3px 3px rgba(0,0,0,0.3);
}
.top-menu > ul > li > ul > div > li{
    background: #fff;
}
.top-menu > ul > li > ul > div > li > a{
    display: block;
    padding: 8px 20px;
    color: #000000;
    font-size: 15px;
}
.top-menu > ul > li > ul > div > li > a:hover{
    background-color: #6885BC;
    color: #fff;
}
.top-menu > ul > li > ul > div > li.active > a{
    background-color: #132D88;
    color: #fff;
}

.top-menu > ul > li > ul > div > li:first-of-type{
    padding-top: 20px;
}
.top-menu > ul > li > ul > div > li:last-of-type{
    padding-bottom: 20px;
}
.top-menu > ul > li.down a {
    position: relative;
}
.top-menu > ul > li.down > a:after {
    content: "";
    display: block;
    position: absolute;
    width: 8px;
    height: 8px;
    transform: rotate(45deg);
    border-bottom: 1px solid #000;
    border-right: 1px solid #000;
    right: 20px;
    top: 50%;
    margin-top: -7px;
    -webkit-transition: all 200ms ease-out;
    -moz-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
}
.top-menu > ul > li.down:hover > a:after,
.top-menu > ul > li.down.active > a:after{
    border-color: #132D88;
}
@media(max-width: 1229px){
    .top-menu > ul > li.down > a{
        padding-right: 40px;
    }
    .top-menu > ul > li.down > a:after{
        right: 15px;
    }
}
/* ======= /. TOP MENU ======= */



/* ======= TOP SLIDER ======= */
.top-slider .item{
    height: 895px;
    background: #3698cd;
    position: relative;
}
.top-slider .item > .element-img{
    position: absolute;
    left: 50%;
    right: 0;
    top: 0;
    bottom: 0;
    background-repeat: no-repeat;
    margin-left: -325px;
    background-size: cover;
}
.top-slider .item-content{
    height: 100%;
    padding-bottom: 230px;
    position: relative;
    z-index: 50;
}
.top-slider .item-content .title{
    font-family: 'Montserrat', sans-serif; font-weight: 900;
    color: #fff;
    font-weight: 900;
    font-size: 100px;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 8px;
    margin-bottom: 30px;
}
.top-slider .item .btn{
    border: 1px solid #1F52B2;
    padding: 18px 40px;
    border-radius: 4px;
}
.top-slider .item .btn:hover{
    background: #fff;
    border-color: #fff;
}
.top-slider .slick-dots {
    width: auto;
    text-align: left;
    margin-top: 0;
    display: inline-block !important;
    position: absolute;
    left: 50%;
    margin-left: -595px;
    bottom: 330px;
}
.top-slider .slick-dots li{
    background: #031B4B;
}
.top-slider .slick-dots li.slick-active{
    background: #fff;
    box-shadow: 0 0 0 2px #fff;
}
/* ======= /. TOP SLIDER ======= */

/* ======= /. HEADER ======= */
.about-wrapper{
    margin-top: -230px;
    position: relative;
    z-index: 50;
}
.about-wrapper:before{
    content:"";
    display: block;
    position: absolute;
    width: 50%;
    height: 100%;
    top: 0;
    left: 0;
    background: #E8ECEE;
}
.about-wrapper .inner{
    background: #fff;
}
.about-block{
    background: url(../images/about_bg.jpg) 0 0 no-repeat;
    background-size: cover;
    height: 690px;
    position: relative;
}
.about-block .block-content{
    width: 325px;
    max-width: 80%;
    padding: 50px 30px 90px;
    background: #3670a2;
    color: #fff;
    position: absolute;
    right: 0;
    top: 0;
    min-height: 460px;
    font-size: 15px;
}
.about-block .block-content .title{
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
}
.more{
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
    display: inline-block;
    padding: 5px 50px 5px 15px;
    border-radius: 4px;
    position: relative;
}
.more:after{
    content:"";
    display: block;
    position: absolute;
    width: 20px;
    height: 1px;
    top: 50%;
    right: 15px;
    background: #fff;
    -webkit-transition: all 200ms ease-out;
	-moz-transition: all 200ms ease-out;
	transition: all 200ms ease-out;
}
.more:before{
    content:"";
    display: block;
    position: absolute;
    width: 7px;
    height: 7px;
    top: 50%;
    right: 15px;
    margin-top: -3px;
    border-bottom: 1px solid #fff;
    border-right: 1px solid #fff;    
    -moz-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: all 200ms ease-out;
	-moz-transition: all 200ms ease-out;
	transition: all 200ms ease-out;
}
.more:hover{
    background: #fff;
    color: #002F89;
}
.more:hover:after{
    background: #002F89;
}
.more:hover:before{
    border-color: #002F89;
}
.about-block .block-content .more{
    position: absolute;
    bottom: 50px;
    left: 30px;
}
.feauters .element{
    padding: 30px;
    height: 230px;
    border-bottom: 1px solid #E8ECEE;
    font-weight: bold;
}
.feauters .element.last{
    border-bottom: none;
}
.feauters .element .element-icon{
    margin-bottom: 30px;
}
.feauters .contacts-block{
    position: absolute;
    top: 229px;
    right: 0;
    bottom: 0;
    width: 50%;
    background: #21252A;
    color: #fff;
    padding: 55px 30px 30px;
}
.feauters .contacts-block a{
    color: #fff;
}
.feauters .contacts-block a:hover{
    color: #284BB1;
}
.feauters .contacts-block .title{
    font-size: 20px;
    margin-bottom: 40px;
}
.feauters .contacts-block .phone a{
    font-weight: bold;
    font-size: 25px;
    display: inline-block;
    margin-bottom: 10px;
}
.feauters .contacts-block .email a{
    font-size: 18px;
}
.feauters .contacts-block .more{
    border: none;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
    background: transparent !important;
}
.feauters .contacts-block .more:hover{
    color: #284BB1;
}
.feauters .contacts-block .more:hover:after{
    background: #284BB1;
}
.feauters .contacts-block .more:hover:before{
    border-color: #284BB1;
}


@media (max-width: 1229px) {
    .top-menu > ul > li > a{
        padding: 0 30px;
    }
    .top-slider .item > .element-img{
        left: 275px;
        margin-left: 0;
    }
    .top-slider .slick-dots {
        left: 5px;
        margin-left: 0;
        bottom: 40px;
    }
    .top-slider .item-content .title{
        font-size: 80px;
    }
    .top-slider .item{
        height: 60vw;
    }
    .top-slider .item-content{
        padding-bottom: 0;
    }
    .about-wrapper{
        margin-top: 0;
    }
    .about-wrapper .container{
        padding: 0;
    }
    .about-block .block-content {
        width: 275px;
        max-width: 100%;
        padding: 45px 30px 120px;
        min-height: inherit;
        font-size: 15px;
        right: auto;
        left: 0;
    }
    .about-block .block-content .title {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .about-block .block-content .more {
        bottom: 30px;
    }
    .feauters .element .element-icon{
        margin-bottom: 10px;
    }
    .feauters .contacts-block .title{
        font-size: 18px;
        margin-bottom: 20px;
    }
    .feauters .contacts-block .phone a{
        font-size: 21px;
    }
    .feauters .contacts-block .more{
        font-size: 15px;
    }
}
@media (max-width: 991px) {
    .feauters{
        background: #fff;
    }
    .about-block{
        height: auto;
        background: #fff;
    }
    .about-block .block-content{
        position: relative;
        padding: 50px 30px 120px;
        width: 100%;
    }
    .about-block .block-content .more{
        bottom: 40px;
    }
    .top-slider .item-content .title {
        font-size: 8vw;
    }
    .top-slider .item{
        height: 70vw;
    }
}
@media (max-width: 767px) {
    .top-slider .item .btn {
        padding: 10px 30px;
        font-size: 2.4vw;
    }
    .top-slider .item > .element-img{
        position: static;
        height: 60vw;
    }
    .top-slider .item{
        height: auto;
    }
    .top-slider .item-content .title {
        font-size: 7vw;
        letter-spacing: 2px;
    }
    .top-slider .item-content{
        padding: 40px 20px 35px;
    }
    .feauters .contacts-block {
        position: static;
        width: 100%;
        padding: 35px 30px;
    }
    .logo img{
        width: 160px;
    }
    .header,
    .header-wrapper-push,
    .messangers-box a{
        height: 64px;
    }
    .header{
        padding-left: 0;
    }
    .messangers-box {
        left: auto;
        right: 45px;
        width: 64px;
        padding-top: 64px;
    }
    .menu-button {
        top: 23px;
    }
    .about-block .block-content {
        padding: 40px 30px 120px;
    }
    .feauters .element{
        height: auto;
    }
    .logo-xs{
        height: 64px;
    }
}
.svgmap-wrapper{
	padding: 70px 0 90px;
}
.svgmap-wrapper svg,
.svgmap-wrapper object{
	max-width: 100%;
}
.svgmap-wrapper .title{
	font-family: 'Montserrat', sans-serif; font-weight: 900;
	font-size: 32px;
	margin-bottom: 30px;
	text-transform: uppercase;
	letter-spacing:2px;
}
.partners-carousel .item{
    padding: 0 15px;
}
.partners-carousel .item img{
    -webkit-transition: all 200ms ease-out;
    -moz-transition: all 200ms ease-out;
    -o-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
    filter: gray;
    opacity: 0.3;
}
.partners-carousel .item:hover img{
    -webkit-filter: none;
    -moz-filter: none;
    -ms-filter: none;
    -o-filter: none;
    filter: none;
    opacity: 1;
}


/* FOOTER */
.footer-wrapper{
    background: url(../images/footer_bg.jpg) 0 0 no-repeat #212529;
}
.footer-top{
    min-height: 778px;
    padding-bottom: 65px;
}
.contacts-form{
    display: none;
}
.contacts-template .contacts-form{
    display: block;
}
.contacts-template .footer-wrapper #map{
    display: none;
}
.socials-wrapper{
    grid-gap: 10px;
    display: flex;
}
.socials-wrapper .item a svg{
    width: 30px;
    height: 30px;
    fill:#fff;
}
.socials-wrapper .item{
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 200ms ease-out;
    border-radius: 100%;
}
.socials-wrapper .item:hover{
    filter: brightness(1.2);
    transition: all 200ms ease-out;
}
.socials-wrapper .item a{
    display: flex;
    align-items: center;
    justify-content: center;
}
.socials-wrapper .item.whatsapp{
    background: #27A737;
}
.socials-wrapper .item.telegram{
    background: #039BE5;
}
.socials-wrapper .item.viber{
    background: #665CAC;
}
.socials-wrapper .item.instagram{
    background: #DF1C88;
}
.socials-wrapper .item.vk{
    background: #07F;
}
.socials-wrapper .item.odn{
    background: #F70;
}
.socials-wrapper .item.odn svg{
    width: 30px;
    height: 30px;
}
.socials-wrapper .item.dzen{
    background: #000;
}
.footer-menu-wrapper .socials-wrapper{
    grid-gap: 5px;
    width: 190px;
    position: absolute;
    right: 0;
    top: 22px;
    color: #fff;
}
.footer-middle .socials-wrapper .item{
    width: 40px;
    height: 40px;
}
.footer-middle .socials-wrapper .item a svg{
    width: 20px;
    height: 20px;
}
.footer-middle .socials-wrapper .item.odn svg{
    width: 25px;
    height: 25px;
}
.feedback-block{
    background: #fff;
    padding: 60px 100px 80px;
    border-top: 6px solid #2969E4;
    margin-top: -40px;
}
.feedback-block .title{
    font-family: 'Montserrat', sans-serif; 
    font-weight: 900;
    font-size: 32px;
    margin-bottom: 30px;
}
.feedback-titles{
    padding-top: 90px;
    position: relative;
    padding-bottom: 30px;
}
.feedback-titles .title{
    font-family: 'Montserrat', sans-serif; 
    font-weight: 900;
    font-size: 65px;
    margin-bottom: 30px;
    color: #fff;
    letter-spacing: 4px;
    line-height: 1.1;
    text-transform: uppercase;
}
.feedback-titles .sup-title{
    font-family: 'Montserrat', sans-serif; 
    font-weight: 700;
    font-size: 45px;
    margin-bottom: 30px;
    color: #2969E4;
    line-height: 1.1;
}
.footer-middle{
    padding-right: 225px;
    display: flex;
    align-items: center;
}
.footer-logo{

}

.footer-tel{
    font-weight: bold;
    padding: 5px 0;
}
.footer-menu{
    padding: 5px 42px 0 0;
    border-left: 1px solid rgba(255,255,255,0.2);
    border-right: 1px solid rgba(255,255,255,0.2);
}
.footer-menu ul{
    overflow: hidden;
}
.footer-menu li{
    padding-left: 52px;
    float: left;
    width: 50%;
    margin-bottom: 5px;
}
.footer-menu a{
    color: #fff;
    font-weight: 400;
}
.footer-menu a:hover{
    color: #2969E4;
}
.footer-bottom{
    padding: 30px 0;
    font-size: 14px;
    color: #A9AAAB;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-bottom a{
    color: #A9AAAB;
    text-decoration: underline;
}
.footer-bottom a:hover{
    text-decoration: none;
}
@media (max-width: 1229px) {
}
@media (max-width: 991px) {
    .feedback-titles{
        padding: 70px 0;
    }
    .feedback-titles:after{
        display: none;
    }
    .footer-middle{
        padding: 0;
    }
    .footer-logo{
        position: static;
        margin-bottom: 40px;
    }
    .footer-menu-wrapper{
        position: relative;
        padding-right: 200px;
    }
    .footer-menu {
        padding: 5px 0 0;
        border-left: none;
        border-right: none;
    }
    .footer-menu li {
        padding-left: 0;
        padding-right: 20px;
    }
    .footer-top{
        padding-bottom: 35px;
    }
    .footer-wrapper .contacts-info{
        margin-bottom: 0;
    }
    .contacts-template .footer-wrapper .contacts-info{
        margin-bottom: 40px;
    }
    .contacts-wrapper .item{
        display: grid;
        align-items: center !important;
    }
}
@media (max-width: 767px) {
    .footer-wrapper .feedback-titles{
        padding: 30px 0 0;
    }
     .map-yandex iframe{
        height: auto !important;
        aspect-ratio:1/1;
    }
}
@media (max-width: 600px) {
    .footer-menu-wrapper{
        padding-right: 0;
        
    }
    .footer-menu-wrapper .socials-wrapper{
        position: static;
    }
    .footer-menu{
        margin-bottom: 30px;
    }
    .footer-menu li{
        width: 100%;
        padding-right: 0;
    }
    .footer-contacts{
        width: 100%;
        position: static;
    }
    .footer-top{
        padding-bottom: 35px;
    }
    .feedback-block {
        padding: 50px 30px 40px;
    }
    .feedback-titles .title {
        font-size: 40px;
        letter-spacing: 2px;
    }
    .feedback-titles .sup-title {
        font-size: 30px;
    }
    .feedback-block .title {
        font-size: 22px;
    }
    .footer-middle{
        align-items: flex-start;
        flex-direction: column;
    }
}
@media (max-width: 450px) {
   .footer-wrapper .contacts-info .element{
       font-size: 14px;
   }
}
/* /. FOOTER */


.aside .contacts-block{
    background: #21252A;
    color: #fff;
    padding: 55px 30px 30px;
}
.aside .contacts-block a{
    color: #fff;
}
.aside .contacts-block a:hover{
    color: #284BB1;
}
.aside .contacts-block .title{
    font-size: 20px;
    margin-bottom: 40px;
}
.aside .contacts-block .phone a{
    font-weight: bold;
    font-size: 25px;
    display: inline-block;
    margin-bottom: 10px;
}
.aside .contacts-block .email a{
    font-size: 18px;
}
.aside .contacts-block .more{
    border: none;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
    background: transparent !important;
}
.aside .contacts-block .more:hover{
    color: #284BB1;
}
.aside .contacts-block .more:hover:after{
    background: #284BB1;
}
.aside .contacts-block .more:hover:before{
    border-color: #284BB1;
}

@media (max-width: 767px) {
    .aside .contacts-block {
        padding: 35px 30px;
    }
}


.info-blocks > .row{
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
}
.info-blocks > .row > div{
    margin-bottom: 20px;
}
.info-blocks .element{
    background: #3973E1;
    color: #fff;
    padding: 60px 50px;
    height: 100%;
    font-size: 18px;
    line-height: 1.8;
}
.info-blocks .element.dark{
    background: #1F52B2;
}
.info-blocks .element .title{
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 32px;
    line-height: 1.4;
    padding-bottom: 40px;
    margin-bottom: 50px;
    border-bottom: 2px solid #fff;
}
@media (max-width: 991px) {
    .info-blocks > .row{
        display: block;
    }
    .info-blocks > .row > div{
        margin-bottom: 0;
    }
    .info-blocks .element{
        margin-bottom: 20px;
    }
}

.feauters-wrapper{
    display: grid;
    grid-template-columns:1fr 1fr 1fr;
}

.feauters-wrapper .element{
    padding: 50px;
    height: 100%;
    background: #fff;
    text-align: center;
    border-bottom: 1px solid #E4E8EA;
}
.feauters-wrapper .element .img-wrapper{
    margin-bottom: 40px;
}
.feauters-wrapper .element.last{
    background: url(../images/about-feauters-img.jpg) 0 0 no-repeat;
    background-size: cover;
}
@media (max-width: 991px) {
    .feauters-wrapper{
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 767px) {
    .feauters-wrapper{
        display: grid;
        grid-template-columns: 1fr;
    }
    .feauters-wrapper > .row{
        display: block;
    }
    .feauters-wrapper .element.last{
        display: none;
    }
}

.jobs-section{
    background: #184DB2;
    color: #fff;
}
.jobs-section a,
.jobs-section blockquote{
    color: #fff;
}
.jobs-section a:hover{
    text-decoration: underline;
}
.jobs-section .inner{
    background: url(../images/jobs-img.png) right 50% no-repeat;
    padding: 140px 480px 170px 0;
}
@media (max-width: 991px) {
    .jobs-section .inner{
        background: transparent;
        padding: 80px 0 60px;
    }
}

#map{
    height: 630px;
}
.contacts-template .feedback-block{
    margin-top: 0;
}
.contacts-template .footer-wrapper{
    padding-top: 120px;
    background: #3597cd;
}
.contacts-template .footer-bottom{
    background: #212529;
}
.contacts-template .footer-top{
    position: relative;
}
.contacts-template .footer-top:before{
    content: "";
    height: 260px;
    background: #212529;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}
.contacts-info{
    color: #fff;
    padding: 20px 0;
}
.contacts-info a{
    color: #fff;
}
.contacts-info a:hover{
    text-decoration: underline;
}
.contacts-info .title{
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.6);
    letter-spacing: 1px;
}
.contacts-info .element{
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 400;
}
.contacts-template .contacts-info .element{
    margin-bottom: 10px;
}
.contacts-template .contacts-info .element-wrapper{
    display: flex;
    grid-gap: 0px 50px;
    flex-wrap: wrap;
}
.contacts-template h1{
    margin-bottom: 20px;
}
.contacts-info .element b{
    font-size: 15px;
    color: #a7d5eb;
}
.requisite .element{
    margin: 0;
}
.footer-wrapper #map{
    height: 510px;
}
.contacts-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    grid-gap:20px;
}
@media (max-width: 991px) {
    #map{
        height: 360px;
    }
    .contacts-template .footer-wrapper{
        padding-top: 50px;
        background: #212529;
    }
    .contacts-info{
        margin-bottom: 40px;
    }
    .contacts-template .feedback-block{
        margin-bottom: 40px;
    }
    .contacts-template .footer-top:before{
        display: none;
    }
}

@media (max-width: 767px) {
    .contacts-wrapper{
        grid-template-columns: 1fr;
    }   
}
.catalog{
    margin: 0 -5px;
}
.catalog .row{
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
}
.catalog .row > div{
    margin-bottom: 30px;
    padding: 0 15px;
}
.catalog .element{
    background: #fff;
    padding: 0 20px 25px;
    height: 100%;
    -webkit-transition: all 200ms ease-out;
    -moz-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
}
.catalog .element:hover{
    box-shadow: 0 0 5px rgba(0,0,0,0.4);
}
.catalog .element .img-wrapper{
    height: 230px;
    line-height: 230px;
    overflow: hidden;
}
.catalog .element .img-wrapper img{
    vertical-align: middle;
    max-height: 100%;
}
.catalog .element .title{
    font-weight: 600;
    font-size: 17px;
    line-height: 1.2;
    background: #184DB2;
    padding: 10px 12px;
    color: #fff;
    -webkit-transition: all 200ms ease-out;
    -moz-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
}
.catalog .element:hover .title{
    color: #fff;
    background: #002F89;
}

@media(max-width: 991px){
    .catalog .element .img-wrapper{
        height: 20vw;
        line-height: 20vw;
    }
    .catalog .element .title{
        font-size: 15px;
    }
    .catalog{
        margin: 0;
    }
    .catalog .row > div{
        margin-bottom: 20px;
        padding: 0 10px;
    }
}
@media(max-width: 767px){
    .catalog .element .img-wrapper{
        height: 25vw;
        line-height: 25vw;
    }
    .catalog .row > div{
        margin-bottom: 10px;
        padding: 0 5px;
    }
}
@media(max-width: 500px){
    .catalog .element {
        padding: 10px;
    }
    .catalog .element .title{
        font-size: 3.5vw;
        color: #002F89 !important;
        background: transparent !important; 
    }
}



/* ANALITICS PAGE */

.analitic-block{
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    border: 1px solid rgba(231,234,238,.6);
    transition: box-shadow .3s;
    height: 460px;
    margin-bottom: 40px;
    background: #fff;
}
.analitic-block-title{
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(231,234,238,.6);
    padding: 25px 30px;
    background-color: #f1f3f5;
    line-height: 1.3;
    font-size: 20px;
    color: #000;
    font-weight: 900;
    text-align: left;
}
.analitic-block-body{
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 25px 30px;
}
.analitic-block-body-inner{
    width: 100%;
    height: 100%;
    position: relative;
}
.analitic-block-body-svg{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    z-index: 1;
    width: 100%;
    height: 100%;
    max-width: 611px;
    max-height: 278px;
}
.analitic-block-body-graphic-wrapper{
    position: relative;
    width: 100%;
    height: 92%;
    z-index: 2;
}
.analitic-block-body-graphic-vertical-values{
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    width: 100%;
    height: 100%;
}
.analitic-block-body-graphic-vertical-values .element{
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 10px;
}
.analitic-block-body-graphic-vertical-values .element > span{
    line-height: 1;
    font-size: 14px;
    color: #000;
    font-weight: 600;
    text-align: left;
    margin-right: 50px;
}
.analitic-block-body-graphic-vertical-values .element > div{
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: 1px;
    background-color: #f1f3f5;
}
.analitic-block-body-graphic-vertical-values > div:last-of-type{
    margin-bottom: 0;
}
.analitic-block-body-graphic-vertical-values > div:last-of-type > div{
    height: 3px;
}


.analitic-block-body-graphic-columns{
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    width: calc(100% - 150px);
    height: calc(100% - 17px);
    position: absolute;
    right: 50px;
    bottom: 7px;
}
.analitic-block-body-graphic-columns .column{
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    width: 100%;
    height: 100%;
    max-width: 80px;
}
.analitic-block-body-graphic-columns .column .column-element{
    background-color: #0e76bc;
    width: 100%;
    position: relative;
    cursor: pointer;
}
.analitic-block-body-graphic-columns .column .column-year{
    line-height: 1;
    font-size: 14px;
    color: #9ca4b2;
    font-weight: 500;
    text-align: left;
    position: absolute;
    bottom: -35px;
}
.column-element-content-wrapper{
    position: absolute;
    top: 20px;
    left: 0;
    opacity: 0;
}
.column:hover .column-element-content-wrapper,
.analitic-block2-element .element-bar:hover .column-element-content-wrapper,
.analitic-block2-element .element-title:hover +.element-bar .column-element-content-wrapper{
    opacity: 1;
}
.column-element-content-inner{
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    z-index: 99;
    cursor: pointer;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    pointer-events: none;
}
.column-element-content-inner-2depth{
    position: absolute;
    bottom: calc(100% + 15px);
    background-color: #fff;
    padding: 12px 16px;
    pointer-events: none;
    min-width: 250px;
    box-shadow: 3px 9px 25px rgba(193,208,217,.4);
    -webkit-transform: translateZ(0);
    left: 7px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
.column-element-content-inner-3depth{
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.column-element-content-inner-3depth:after{
    content: "";
    width: 0;
    height: 0;
    border: 10px solid transparent;
    position: absolute;
    bottom: -10px;
    left: 0;
    border-left: 10px solid #fff;
}
.column-element-content-inner-title{
    line-height: 18px;
    font-size: 14px;
    color: #a2a9b7;
    font-weight: 400;
    text-align: left;
}
.column-element-content-inner-summ{
    line-height: 1;
    font-size: 16px;
    color: #ea212d;
    font-weight: 600;
    text-align: left;
    margin-top: 10px;
}
.column-element-content-inner-currency{
    color: #a2a9b7;
}
@media (max-width: 991px){
    .analitic-block-body-graphic-columns .column{
        max-width: 60px;
    }
}
@media (max-width: 767px){
    .analitic-block-body-graphic-columns .column{
        max-width: 20px;
    }
    .analitic-block-body-graphic-columns{
        width: calc(100% - 70px);
        right: 20px;
    }
    .analitic-block-body-graphic-vertical-values .element > span{
        font-size: 12px;
        margin-right: 20px;
    }
    .analitic-block-title{
        padding: 12px 15px;
        font-size: 16px;
    }
    .analitic-block-body{
        padding: 12px 15px 25px 15px;
    }
}


.analitic-block.block2{
    height: auto;
}
.analitic-block.block2 .analitic-block-body{
    padding-bottom: 0;
}
.analitic-block-body-inner-title{
    line-height: 1;
    font-size: 16px;
    color: #000;
    font-weight: 600;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}
.analitic-block-body-inner-title span{
    color: #9ca4b2;
    margin-left: 3px;
}
.analitic-block.block2 .analitic-block-body-graphic-wrapper{
    position: relative;
    padding: 0 0 40px 40px;
}
.analitic-block2-element{
    padding: 7px 15px;
}
.analitic-block2-element .element-num{
    line-height: 1;
    font-size: 14px;
    color: #9ca4b2;
    font-weight: 400;
    text-align: center;
    position: absolute;
    left: -40px;
}
.analitic-block2-element .element-title{
    line-height: 1;
    color: #000;
    position: relative;
    z-index: 2;
    font-size: 14px;
    display: inline-block;
}
.analitic-block2-element .element-bar{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
}

.analitic-block.block2 .analitic-block-body-svg{
    max-width: 100%;
    max-height: 100%;
}

/* /. ANALITICS PAGE */

.product-template .content{
    background: #fff;
    padding: 40px;
}
@media(max-width: 767px){
    .product-img-wrapper .item img{
        width: 100%;
    }
}

/* PDO CRUMBS */
.breadcrumb{
    margin: -35px 0 35px;
    font-size: 13px;
}

.breadcrumb li {
    display: inline-block;
    margin-right: 15px;
    position: relative;
}
.breadcrumb li:after{
    content:"»";
    display: inline-block;
    padding-left: 15px;
}
.breadcrumb li:last-of-type:after{
    display: none;
}
@media(max-width:767px){
    .breadcrumb {
        font-size: 12px;
    }
    .breadcrumb li{
        margin-right: 20px;
    }
}
/* /. PDO CRUMBS */



/**********************text-block-section*********************/
.text-block-inner{
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    align-items: start;
    position: relative;
    grid-gap: 70px;
}
.text-block-section{
    position: relative;
    padding: 70px 0;
}
.text-block-section h2{
    text-align: left;
    margin-bottom: 15px;
    font-weight: 800;
    color: #031B4B;
}
.text-block-section .subtitle{
    font-size: 24px;
    line-height: normal;
}
.text-block-header{
    margin-bottom: 10px;
}
.text-block-body{
    position: relative;
    font-size: 18px;
    line-height: 1.2em;
}
.text-block-body .text {
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: .03em;
}
.text-block-section .content{
    order: 2;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.text-block-section .img-wrap{
    overflow: hidden;
    height: 100%;
    max-height: 600px;
}
.text-block-section .img-wrap img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

@media (max-width: 991px){
    .text-block-inner{
        grid-template-columns: 1fr;
        grid-gap: 40px;
    }
    .text-block-body{
        margin-bottom: 20px;
    }
    .text-block-header{
        margin-bottom: 20px;
    }
    .text-block-body .text{
        margin-bottom: 20px;
    }
    .text-block-section h1{
        font-size: 40px;
    }
    .text-block-section .content{
        padding-right: 0;
    }
    .text-block-section .subtitle{
        font-size: 24px;
    }
    .text-block-section .text{
        letter-spacing: 0;
        line-height: 1.4em;
    }
   .text-block-section{
       padding: 40px 0;
   }
}
@media (max-width: 767px) {
    .text-block-section .button{
        left: calc(50% - 67px);
    }
    .text-block-section .more{
        position: relative;
    }
    .text-block-section .more::after{
        margin-left: auto;
        margin-right: auto;
    }
    .text-block-section .content{
        padding-bottom: 0;
    }
}
@media (max-width: 467px) {
    .text-block-section h1{
        font-size: 24px;
        margin-bottom: 10px;
    }
    .text-block-section .subtitle{
        font-size: 20px;
    }
    .text-block-section .text{
        font-size: 13px;
    }
    .text-block-header{
        margin-bottom: 0;
    }
    .text-block-body{
        margin-bottom: 0;
    }
    .text-block-inner{
        grid-gap: 30px;
    }
}
/**********************text-block-section*********************./*/

/**********************news-section*************/


.news-inner{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 20px;
}
.news-inner .item{
    border: 1px solid #e8e8e8;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: #fff;
    border-bottom: 5px solid #132d88;
}
.news-inner .item.past img{
    filter: grayscale(1);
}
.news-inner .item:hover img{
    transform: scale(1.2);
	transition: all 200ms ease-out;
}
.news-inner .button{
    z-index: 10;
}
.news-bottom{
    width: calc(100% - 80px);
    position: absolute;
    bottom: 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 20px;
}
.news-inner .item:hover .link:before{
    right: -18px;
}
.news-date{
    color: #ffffff;
    font-size: 15px;
    margin-bottom: 10px;
    position: absolute;
    top: 0;
    z-index: 1;
    background: #002f89;
    padding: 10px;
}
.news-inner .item:hover .item-title{
    color: #132d88;
	transition: all 200ms ease-out;
}
.news-inner .link{
    color: #132d88;
    position: relative;
}
.news-inner .link:before{
    content: "";
    display: block;
    position: absolute;
    width: 8px;
    height: 8px;
    transform: rotate(315deg);
    border-bottom: 1px solid #132d88;
    border-right: 1px solid #132d88;
    right: -14px;
    top: 16px;
    margin-top: -7px;
    transition: all 200ms ease-out;
}
.news-inner .item-body{
    padding: 20px 20px 50px;
    position: relative;
}
.news-inner .item-img{
    overflow: hidden;
    height: 200px;
    position: relative;
}

.news-inner .item-img img{
    height: 100%;
    width: 100%;
    aspect-ratio: 2/1;
    object-fit: cover;
	transition: all 200ms ease-out;
}
.news-inner .item-title{
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #000;
    line-height: 1.3;
	transition: all 200ms ease-out;
}
.news-inner .news-time{
    color: #b4b4b4;    
}
@media (max-width: 991px){
    .news-inner .item{
        grid-template-columns: 1fr;
    }
    .news-inner{
        grid-template-columns: 1fr 1fr;
    }
    .news-bottom{
        justify-content: space-between;
        align-items: flex-start;
        flex-direction: column-reverse;
        grid-gap: 15px;
    }
    .news-inner .item-img{
        height: auto;
        aspect-ratio: 1.4/1;
    }
     .news-inner .item-body{
        padding-bottom: 60px;
    }
    .news-inner .item{
        display: flex;
        flex-direction: column;
    }
    .news-section .item:nth-child(3){
        display: none;
    }
    .news-inner .news-date{
        font-size: 17px;
    }
    .news-inner .item:nth-child(3){
      display: none;  
    }
}
@media (max-width: 767px) {
    .news-bottom{
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: row;
        width: calc(100% - 80px);
    }
    .news-header h2{
        text-align: center;
    }
    .news-section .subtitle{
        text-align: center;
    }
    .news-bottom{
        width: calc(100% - 40px);
    }
    .news-header{
        justify-content: center;
    }
    .news-inner .item-text{
        font-size: 17px;
    }
    .news-inner{
        grid-gap: 10px;
    }
    .news-inner .item-title{
        font-size: 14px;
    }
    .news-inner .news-time{
        font-size: 14px;
    }
    .news-inner .news-date{
        font-size: 13px;
    }
}
@media (max-width: 500px) {
     .news-inner{
        grid-template-columns: 1fr;
        grid-gap: 30px;
    }
    .news-inner .item:nth-child(3){
      display: block;  
    }
}
@media (max-width: 460px) {
    .news-inner .item-text{
        font-size: 15px;
    }
     .news-bottom{
        justify-content: space-between;
        align-items: flex-start;
        flex-direction: column-reverse;
    }
    .news-inner .item-body{
        padding: 20px 20px 50px;
    }
}
@media (max-width: 350px){

}
/**********************news-section************./*/

/******************gallery-section************/

.gallery-section{

}
.lg-backdrop.in{
    opacity: 0.7!important;
}
.gallery-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 20px;
    margin-bottom: 30px;
}
.gallery-wrapper .item{
    position: relative;
    overflow: hidden;
}
.gallery-wrapper .plus{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 47%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
	transition: all 200ms ease-out;
}
.gallery-wrapper .plus svg{
    width: 50px;
    height: 50px;
    fill: #fff;
	transition: all 200ms ease-out;
}

.gallery-wrapper .item:hover .plus{
    opacity: 1;
	transition: all 200ms ease-out;
}
.gallery-wrapper .item:hover  .plus svg{
    transform: scale(1.3);
	transition: all 200ms ease-out;
}
.gallery-wrapper .img-wrapper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.index-template .gallery-wrapper{
    grid-gap: 0;
    margin: 0;
}
@media (max-width: 1259px) {
    .gallery-wrapper {
        grid-gap: 10px;
    }
}
@media (max-width: 991px) {
    .gallery-wrapper{
        grid-template-columns: 1fr 1fr 1fr;
    }
}
@media (max-width: 767px) {
    .gallery-wrapper {
        grid-template-columns: 1fr 1fr;
        grid-gap: 20px;
    }
    .index-template .gallery-wrapper{
        grid-template-columns: 1fr 1fr 1fr ;
    }
    .gallery-section h2 {
        margin-bottom: 20px!important;
    }
}
@media (max-width: 520px) {
    .gallery-wrapper {
        grid-gap: 10px;
    }
}

@media (max-width: 450px) {
    .index-template .gallery-wrapper{
        grid-template-columns: 1fr 1fr;
    }
}
/******************gallery-section***********./*/


/*news-template*/
.news-template .img-wrap img{
    width: 100%;
    max-width: 100%;
}
.news-template .gallery-wrapper {
    grid-template-columns: 1fr 1fr 1fr;
}
.news-template .main-column {
    width: calc(100% - 400px);
    padding-right: 40px;
}
.news-template .wrapper-content{
    display: flex;
}
.news-template h1{
    font-size: 35px;
    margin-bottom: 10px;
}
.news-template .date-time{
    display: flex;
    grid-gap: 10px;
    margin-bottom: 30px;
}
.news-template .img-wrap{
    margin-bottom: 30px;
    
}
.news-template .aside{
    width: 400px;
    padding: 0 0 40px;
}
.news-template .aside-news{
    display: flex;
    flex-wrap: wrap;
    grid-gap: 20px;
}
.news-template .aside-news .element{
    display: grid;
    grid-template-columns: 120px auto;
    grid-gap: 15px;
    border-right: 5px solid #002f89;
    padding-right: 20px;
    background: #fff;
}
.news-template .aside-news .title{
    color:#000;
    margin-bottom: 0px;
    font-size: 12px;
}
.news-template .aside-news .date{
    font-size: 12px;
}
.news-template .aside-news .link{
    color: #002f89;
}
.news-template .aside-news .link:hover{
    text-decoration: underline;
}
.news-template .aside-news .img-wrapper{
    overflow: hidden;
}
.news-template .aside-news .element-content{
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    grid-gap:5px;
}
.news-template .aside-news img{
    transition: all 200ms ease-out;
    width: 100%;
    height: 100%;
    object-fit:cover;
}
.news-template .aside-news img:hover{
    transform:scale(1.2);
    transition: all 200ms ease-out;
}
@media (max-width: 991px) {
    .news-template h1{
        font-size: 30px;
    }
      .news-template .wrapper-content{
          flex-wrap: wrap;
      }
    .news-template .aside{
        width: 100%;
        padding-bottom: 0;
    }
    .news-template .aside-news{
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 20px 50px;
    }
    .news-template .main-column{
        width: 100%;
        padding: 0;
    }
     .news-template .content{
         padding-bottom: 20px;
     }
}
@media (max-width: 767px) {
    .news-template h1 {
        font-size: 25px;
    }
    .news-template .aside-news{
        grid-template-columns: 1fr;
    }
    .news-template .content{
        font-size: 13px;
    }
}
@media (max-width: 520px) {
     .news-template .gallery-wrapper{
        grid-template-columns: 1fr 1fr;
    }
    
}
@media (max-width: 375px) {
    .news-template .aside-news .element{
        grid-template-columns: 1fr;
        padding-right: 0;
        padding-bottom: 20px;
        border-right: none;
        border-bottom: 5px solid #002f89;
    }
    .news-template .aside-news .element-content{
        padding: 0 20px;
    }
    .news-template .aside-news .link{
        bottom: 20px;
    }
    .news-template .aside-news .link:hover{
        text-decoration: underline;
    }
}
/*news-template./*/
/*
    font-family: 'Montserrat', sans-serif;
    color: #002F89;
*/

/*marquee*/
.marquee {
    width: 100%;
    overflow: hidden;
}
.marquee-inner {
    position: relative;
    width: 100%;
    display: flex;
    color: transparent;
    font-weight:900;
    font-size: 5rem;
    -webkit-text-stroke: 0.1rem #132d88;
}
.marquee-inner > * {
    white-space: nowrap;
    padding: 0 4rem;
}
.marquee-img-wrapper{
    position: absolute;
    top: 0;
    width: 100%;
}

/*marquee./*/

/*price*/
.price{
    display: grid;
    grid-gap: 20px;
}
.price .item{
    
}
.price table{
    width: 100%;
}
.price tr{
}
.price th{
    border: 1px solid #e9e9e9;
    padding: 10px 20px;
    color: #fff;
    background: #132d88;
    font-size: 17px;
    font-weight: bold;
}
.price td{
    border: 1px solid #e9e9e9;;
    padding: 10px 20px;
    color: #5b5b5b;
    font-size: 14px;
    background: #fff;
}
.price td:nth-child(2), .price th:nth-child(2){
    width: 150px;
    text-align: center;
}
.price .btn{
    margin-top: 20px;
    background: #132d88;
}
.price .btn:hover{
    background: transparent;
}
@media (max-width: 420px) {
    .price th{
        font-size: 12px;
        padding: 10px 10px;
    }
    .price td{
        font-size: 12px;
        padding: 10px 10px;
    }
    .price td br{
        display: none;
    }
     .price td:nth-child(2), .price th:nth-child(2){
        width: 100px;
    }
}
/*./price*/

/*albums*/
.albums{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 20px;
}
.albums .item{
    position: relative;
}
.albums img{
    width: 100%;
    height: 100%;
    object-fit:cover;
    transition: all 200ms ease-out;
}
.albums .item-body{
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    padding: 20px;
    text-align: center;
    font-size: 23px;
    line-height: normal;
    background: linear-gradient(180deg, transparent 0%, rgb(0 0 0 / 67%) 100%);
}
.albums .item-body-inner{
     width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
}
.albums .item-body-inner:before{
    content:'';
    position: absolute;
    top: 0;
    left: 0;
    border: 1px solid #fff;
    width: 100%;
    height: 100%;
    transition: all 400ms ease-out;
}
.albums .item-body img{
    width: 60px;
    height: 60px;
    margin-top: 20px;
}
.albums .item-title {
    padding: 0 20px;
}
.albums .item-img{
    overflow: hidden;
}
.albums .item:hover .item-img img{
    transform: scale(1.2);
    transition: all 400ms ease-out;
}
.albums .item:hover  .item-body-inner:before{
    width: 0;
    height: 0;
    top: 50%;
    left: 50%;
    opacity: 0;
    transition: all 400ms ease-out;
}
@media (max-width: 1229px) {
    .albums .item-body{
        font-size: 1.5vw;   
    }
    .albums .item-body img{
       width: 4vw;
        height: 4vw;
    }
    .albums{
        grid-gap: 10px;
    }
}
@media (max-width: 767px) {
    .albums{
        grid-template-columns: 1fr 1fr;
    }
    .albums .item-body{
        font-size: 2.5vw;
    }
    .albums .item-body img{
        width: 6vw;
        height: 6vw;
    }
    .albums .item-body img{
        margin-top: 1.2vw;
    }
}
@media (max-width: 500px) {
    .albums .item-body{
        padding: 0;
    }
     .albums .item-body{
        font-size: 3.5vw;
    }
    .albums .item-body img{
       display: none;
    }
}
/*albums./*/

/*gallery-page*/
.gallery-page h1{
    font-size: 35px;
    margin-bottom: 40px;
    line-height: 1.3;
}
@media (max-width: 991px){
    .gallery-page h1 {
        font-size: 30px;
        margin-bottom: 20px;
    }
}
@media (max-width: 767px){
    .gallery-page h1 {
        font-size: 25px;
    }
}
@media (max-width: 450px){
    .gallery-page h1 {
        font-size: 20px;
    }
}
/*gallery page./*/

/* tabs */
.box{
    position: fixed;
    top: -999999999px;
    left: -999999999px;
    opacity: 0;
    width: 1270px;
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}
.box.visible{
    position: static;
    top: auto;
    left: auto;
    opacity: 1;
    padding-left: 0;
    padding-right: 0;
}
ul.tabs {
    width: 100%;
    grid-gap: 40px;
    margin-bottom: 20px;
}

ul.tabs li{
    display: table-cell;
    vertical-align: middle;
    cursor: pointer;
    text-align: center;
    border: 1px solid transparent;
    border-bottom: none;    
    text-transform: uppercase;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 600;
    color: #333333;
    transition: all 200ms ease-out;
    position: relative;
    padding: 0px;
    color: #132d88;
    border-bottom: 3px solid transparent;
}
ul.tabs li.current,
ul.tabs li.current:hover{
    color: #031B4B;
    border-bottom: 3px solid #031B4B;
}
ul.tabs li:hover{
    color: #031B4B;
    border-bottom: 3px solid #031B4B;
}

.mobile-tab-header{
    display: none;
}
.tabs-wrapper .pagetitle{
    font-size: 26px;
    line-height:1.2;
    font-weight:400;
    letter-spacing: 0;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
}
@media only screen and (max-width: 767px){
    .mobile-tab-header{
        padding: 14px 40px 14px 14px;
        color: #ffffff;
        background: #002f89;
        width: 100%;
        position: relative;
        display: block;
        font-weight: 600;
        font-size:26px;
        text-transform: uppercase;
    }
    ul.tabs {
        position: relative;
        display: none;
        border: none;
    }
    .mobile-tab-header:after{
        content: "";
        display: block;
        position: absolute;
        top: 50%;
        margin-top: -10px;
        right: 24px;
        width: 12px;
        height: 12px;
        border-bottom: 2px solid #fff;
        border-right: 2px solid #fff;
        transform: rotate(45deg);
        transition: all 200ms ease-out;
    }
    .mobile-tab-header.active:after {
        transform: rotate(225deg);
        margin-top: -4px;
    }
    ul.tabs li {
        padding: 15px;
        width: 100%;
        border: 1px solid #E9E9E9;
        border-top: none;
        display: block;
        height: auto;
        text-align: left;
        font-size: 15px;
    }
    ul.tabs li.current{
        display: none;
    } 
    .mobile-tab-header.active + ul.tabs{
        display: block;
        margin: 0 -1px 0;
        width: auto;
        box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }
}
@media only screen and (min-width: 768px){
    .tabs.mobile{
        display: flex !important;
    }
}
/* /. tabs */
/*video-wrapper*/
.video-wrapper{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 20px;
}
.video-wrapper .item iframe{
    width: 100%;
    height: auto;
    aspect-ratio:1.8/1;
}
@media (max-width: 1229px){
    .video-wrapper {
        grid-gap: 10px;
    }
}
@media (max-width: 767px){
    .video-wrapper {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 500px){
    .video-wrapper {
        grid-template-columns: 1fr;
    }
}
/*video-wrapper./*/
/**********************question-section********************/
.accordeon .item-body {
    display: none;
    font-weight: 300;
    padding-bottom: 30px;
    font-size: 16px;
    line-height: 1.55;
    color:#4a4a4a;
}
.accordeon .item-head{
    min-height: 80px;
    padding: 15px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}
.accordeon .item-icon{
    width: 40px;
    height: 40px;
    transform: rotate(0deg);
    border-radius: 100px;
    background: #c3daff;
    display: flex;
    align-items: center;
    justify-content: center;
	transition: all 200ms ease-out;
}
.accordeon .item-icon:before{
    content:'';
    width: 1px;
    height: 15px;
    background: #000;
    position: relative;
    left: 7.5px;
    transition: all 200ms ease-out;
}
.accordeon .item-icon:after{
    content:'';
    width: 15px;
    height: 1px;
    background: #000;
    transition: all 200ms ease-out;
}
.accordeon .item-head:hover .item-icon{
    background: #132d88;
	transition: all 200ms ease-out;
}
.accordeon .item-head:hover .item-icon:before, .accordeon .item-head:hover .item-icon:after{
    background: #fff;   
    transition: all 200ms ease-out;
}
.accordeon .item.active .item-icon{
    transform: rotate(45deg);
}

.question-section{
    margin-top: 70px;
}
.accordeon .item-img img{
    height: 100%;
    width: 100%;
    object-fit: cover;
	transition: all 200ms ease-out;
}
.accordeon .item-title{
    font-weight: 600;
    line-height: 1.3;
    width: calc(100% - 60px);
    font-size: 20px;
    color:#000;
	transition: all 200ms ease-out;
}

.accordeon .item{  
    border-top:1px solid #000;
}
.accordeon .item:last-child{
    border-bottom:1px solid #000;
}
.question-section h2{
    text-align: center;
    margin-bottom: 50px;
}
@media (max-width: 991px) {
    .accordeon .item-title{
        font-size: 18px;
    }
    .accordeon .item-body {
        font-size: 16px;
    }
    .question-section h2{
        margin-bottom: 40px;
    }
}

@media (max-width: 467px){
    .accordeon .item-title{
        font-size: 16px;
    }
    .accordeon .item-body{
        font-size: 13px;
    }
}
/**********************question-section*******************./*/

/**************************************************   MEDIA QUERIS   *****************************************************/

@media (max-width: 1229px) {
    
}
@media (max-width: 991px) {

}
@media (max-width: 767px) {

}



@media (min-width: 768px) {

}
@media (min-width: 992px){

}
@media (min-width: 1230px) {

}
