/* -------------------------------------- Layout ------------------------------------------------ */
body {
    background-color: #f2f7ff;
    font-family: 'Roboto Condensed', sans-serif;
}

.navbar {
    background-color: #f2f7ff;
    box-shadow: 1px 1px 1px #eeeeee;
}

.navbar-brand {
    width: 15%;
}


.navbar-brand img {
    /*display: none;*/
    height: 50px;
    display: block;

}

.nav-item {
    position: relative;
}

.nav-link {
    font-family: 'Roboto Condensed', sans-serif;
    color: #29292b;
    margin-left: 50px;
    margin-right: 50px;
}

.nav-link:hover {
    /*background-color: #a9bde1;*/
    color: #29292b;
}

.nav-link:before {
    content: '';
    position: absolute;
    /*top: 22;*/
    left: 0;
    width: 0;
    height: 20px;
    background: rgba(169, 189, 225, 0.9);
    border-radius: 5px;
    transition: all 2s ease;
    z-index: -2;
}

.nav-link:hover:before {
    width: 100%;
}


.nav-link::after {
    color: #607fb5;
}

.nav-item .dropdown-menu {
    border-left: 2px solid #4c6fab;
    border-right: none;
    border-top: none;
    border-bottom: none;
    background-color: #ffffff;
    border-radius: unset;
    padding: 0px;
    box-shadow: 3px 3px 3px #bbbbbb;
}

.nav-item .dropdown-menu .dropdown-item:hover {
    background-color: #a9bde1;
}


.navbar-toggler {
    background-image: url(../img/navbar.png);
    background-size: 85%;
    background-repeat: no-repeat;
    background-position-y: center;
    background-position-x: 10px;
}


ul.lang {
    position: fixed;
    top: 15px;
    right: 15px;
    margin: 0;
    padding: 0;
    display: flex;
    box-sizing: border-box;
    z-index: 1031;
}

ul.lang li {
    padding: 0 5px;
    list-style: none;
}

ul.lang li button {
    display: block;
    width: 30px;
    height: 30px;
    border: 0;
    background: transparent;
    border: 2px solid #fff;
}

ul.lang li button.ru_flag {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 35px;
    color: #4c6fab;
}

ul.lang li button.uk_flag {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 35px;
    color: #4c6fab;
}

ul.lang li button.active {
    border: 2px solid #4c6fab;
}

@media screen and (max-width: 768px) {
    ul.lang {
        left: 50%;
        width: 80px;
        transform: translateX(-50%);
    }
}

.footer {
    background-color: #4c6fab;
    height: 120px;
    color: #ffffff;
    border-top: 1px solid #a5b8d8;
}

.footer_contactrow {
    margin-top: 5px;
}

.footer_title {
    margin: 20px 0;
}

/* --------------------------------------- Index ------------------------------------------------ */
#idx_head {
    padding-bottom: 50px;
}

#idx_head_title {
    color: #4c6fab;
    font-size: 22pt;
    text-transform: uppercase;
}

#idx_head_text {
    margin-top: 20px;
}

#idx_head_invite {
    width: 50%;
}

#idx_head_img img {
    width: 100%;
}

#idx_head_invite:hover {
    /* background-color: #a9bde1;*/

}

.mybutton {
    position: relative;
    background-color: #4c6fab;
    color: #ffffff;
    border-radius: 15px;
    margin-top: 50px;
    display: block;
    text-align: center;
    line-height: 45px;
    height: 45px;
    text-transform: uppercase;
}

.mybutton:hover {
    text-decoration: none;
    color: #ffffff;
}

.mybutton:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 45px;

    background: rgba(169, 189, 225, 0.3);
    border-radius: 15px;
    transition: all 2s ease;
}

.mybutton:hover:before {
    width: 100%;
}

/* ---- Index Programs ---- */
#idx_programs {
    margin-top: 50px;
    padding-bottom: 100px;
}

#idx_programs_title {
    text-align: center;
    font-size: 25px;
    text-transform: uppercase;
    color: #4c6fab;
    padding-bottom: 20px;
}

.idx_prog_container {
    padding-bottom: 40px;
    padding-left: 50px;
    padding-right: 50px;
}

.idx_prog_container:hover .idx_prog_title {
    /*background-color: #a9bde1;*/
    text-decoration: none;
}

.idx_prog_container:hover .idx_prog_title:before {
    width: 100%;
}

.idx_prog_container:hover {
    text-decoration: none;
}


.idx_prog_img {
    width: 100%;
}

.idx_prog_title {
    background-color: #4c6fab;
    color: #ffffff;
    padding-left: 15px;
    line-height: 45px;
    height: 45px;
    text-transform: uppercase;
    position: relative;
}

.idx_prog_title:hover {
    text-decoration: none;
}

.idx_prog_title:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 45px;
    background: rgba(169, 189, 225, 0.3);
    transition: all 2s ease;
}

.idx_prog_title:hover:before {
    width: 100%;
}


/* ---- Index tasks ---- */
#idx_tasks {
    padding-bottom: 50px;
}

#idx_tasks_title {
    text-align: center;
    font-size: 25px;
    text-transform: uppercase;
    color: #4c6fab;
    padding-bottom: 20px;
}

#idx_tasks_grid {

}

#idx_tasks_grid ul {
    list-style: none;
}

#idx_tasks_grid ul li {
    margin-bottom: 50px;
}

#idx_tasks_grid ul li img {
    width: 80%;
    display: block;
    margin-top: 0px;
}


/* --------------------------------------------- About ----------------------------------------------------------- */
/* ---- ---- */

#about_section #about_title {
    color: #4c6fab;
    font-size: 22pt;
    text-transform: uppercase;
    margin-bottom: 30px;
}

#idx_head .idx_head_pic {
    text-align: center;

}

#idx_head .idx_head_pic img {
    width: 100%;
}

#about_section ul.text_list {
    margin: 0;
    padding: 0;
}

#about_section ul.text_list li {
    position: relative;
    list-style: none;
    margin-bottom: 30px;
    padding-left: 70px;
}

#about_section ul.text_list li:before {
    position: absolute;
    top: 5px;
    left: 0px;
    content: '';
    width: 35px;
    height: 35px;
    background: url("/img/list_icon_about.png") center no-repeat;
    background-size: contain;
}

@media screen and (max-width: 768px) {
    #idx_head .idx_head_pic img {
        width: 50%;
    }

    #about_section #about_title {
        font-size: 18pt;
    }

    #about_section ul.text_list li {
        padding-left: 30px;
    }

    #about_section ul.text_list li:before {
        width: 20px;
        height: 20px;
    }
}


/* --------------------------------------------- Members ----------------------------------------------------------- */
/* ---- ---- */
.specialist_head_title {
    font-size: 14pt;
    color: #4c6fab;
    margin-bottom: 30px;

}

ul.specialist_list_text {
    margin: 0;
    padding: 0;
}

ul.specialist_list_text li {
    position: relative;
    list-style: none;
    margin-bottom: 30px;
    padding-left: 70px;
}

ul.specialist_list_text li:before {
    position: absolute;
    top: 5px;
    left: 0px;
    content: '';
    width: 35px;
    height: 35px;
    background: url("/img/spec_item_icon.png") center no-repeat;
    background-size: contain;
}

#specialist_section {
    margin-bottom: 70px;
}

#specialist_section #specialist_title {
    color: #4c6fab;
    font-size: 22pt;
    text-transform: none;
    margin-bottom: 30px;
    font-weight: bold;

}

#specialist_section .sort {
    padding: 15px;
}

#specialist_section .sort a {
    color: #4c6fab;
    margin-right: 15px;
    text-decoration: none;
}

#specialist_section .sort a.active {
    color: #1a1a1a;
    text-decoration: underline;
}

#specialist_section .specialist-search {
    padding: 0 15px 15px;
}

#specialist_section .specialist-search label {
    display: block;
    margin-bottom: 8px;
    color: #4c6fab;
    font-weight: bold;
}

#specialist_section .specialist-search input[type="search"] {
    width: calc(100% - 120px);
    max-width: 400px;
    padding: 8px 12px;
    border: 1px solid #4c6fab;
    border-radius: 4px;
}

#specialist_section .specialist-search button {
    padding: 8px 16px;
    margin-left: 8px;
    background: #4c6fab;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.specialist_items {
    display: flex;
    flex-wrap: wrap;
}

.specialist_items .specialist_item {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 31.33%;
    margin: 1%;
    border: 3px solid #4c6fab;
    border-radius: 12px;
    padding: 15px;
    background: #fff;
    padding-bottom: 80px;
    overflow: hidden;
}

.pager {
    display: flex;
    justify-content: center;
    width: 100%;
    text-align: center;
    margin-top: 30px;
}

.pagination {
    margin: 0 auto;
    display: flex;
    padding-left: 0;
    list-style: none;
    border-radius: 0.25rem;
    margin: 2px 0;
    white-space: nowrap;
    justify-content: flex-end;
}

.pagination li a {
    position: relative;
    display: block;
    padding: 0.5rem 0.75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #4c6fab;
    background-color: #fff;
    border: 1px solid #dee2e6;
    z-index: 3;
}

.pagination .prev.disabled,
.pagination .next.disabled {
    position: relative;
    display: block;
    padding: 0.5rem 0.75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #b0b0b0;
    background-color: #fff;
    border: 1px solid #dee2e6;
    z-index: 3;
}

.pagination .active > a {
    background: #4c6fab;
    color: #fff;
}

@media screen and (max-width: 1200px) {
    .specialist_items .specialist_item {
        width: 48%;
    }
}

@media screen and (max-width: 768px) {
    .specialist_items .specialist_item {
        width: 100%;
    }

}

.specialist_items .specialist_item .item_header {
    display: flex;
    margin-bottom: 15px;
}

.specialist_items .specialist_item .avatar {
    display: block;
    border-radius: 100px;
    min-width: 100px;
    min-height: 100px;
    width: 100px;
    height: 100px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid #fff;

}

.specialist_items .specialist_item .info {
    padding-left: 30px;
}

.specialist_items .specialist_item .title {
    color: #4c6fab;
    font-size: 17pt;
    line-height: 1.2;
    text-transform: none;
    margin-bottom: 15px;
    font-weight: bold;
    height: 60px;
}

div.anchor {
    display: block;
    position: relative;
    top: -100px;
    visibility: hidden;
}

@media screen and (max-width: 768px) {

    .specialist_items .specialist_item .title {
        height: 40px;
    }
}


.specialist_items .specialist_item .rate {
    color: #8c8d8d;
    font-size: 12pt;
}

.specialist_items .specialist_item .rate .rating-result {
    position: relative;
    display: inline;
    width: 265px;
    margin: 0 auto;
    top: -1px;
}

.specialist_items .specialist_item .rate .rating-result span {
    padding: 0;
    font-size: 15px;
    margin: 0;
    line-height: 1;
    color: lightgrey;
    text-shadow: 1px 1px #bbb;
}

.specialist_items .specialist_item .rate .rating-result > span:before {
    content: '★';
}

.specialist_items .specialist_item .rate .rating-result > span.active {
    color: gold;
    text-shadow: 1px 1px #c60;
}

.specialist_items .specialist_item .read_link {
    color: #4c6fab;
    font-size: 12pt;
}

.specialist_items .specialist_item .read_link a {
    color: #4c6fab;
    font-size: 12pt;
}

.specialist_items .specialist_item .data_line {
    padding: 5px 0;
    border-bottom: 2px solid #d3ddef;
}

.specialist_items .specialist_item .data-line-key {
    display: inline;
    color: #343434;
    font-size: 12pt;
    padding-right: 10px;
}

.specialist_items .specialist_item .data-line-value {
    display: inline;
    color: #727272;
    font-size: 12pt;
}


.specialist_items .specialist_item a.button {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    min-width: 250px;
    margin-top: 30px;
    padding: 10px 0;
    text-align: center;
    background: #4c6fab;
    color: #fff;
    border-radius: 15px;
    text-decoration: none;
    transition: all .3s ease;

}

.specialist_items .specialist_item a.button:hover {
    background: #355ea4;
    cursor: pointer;
    transition: all .3s ease;

}

.certificates {
    display: flex;
    justify-content: center;
}

.cert_image {
    display: block;
    width: 23%;
    min-height: 100px;
    height: 25vh;
    margin: 1%;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: contain !important;
    border: 3px solid #4c6fab;
    border-radius: 12px;
    padding: 5px;
    background: #fff;
}

@media screen and (max-width: 768px) {
    .cert_image {
        width: 31.333%;
    }
}

#specialist_certs h2 {
    color: #4c6fab;
    font-size: 18pt;
    text-transform: none;
    text-align: center;
    margin: 70px auto 30px auto;
}


/* --------------------------------------------- Programs ----------------------------------------------------------- */

.avatar {
    text-align: center;
    width: 250px;
    height: 250px;
    border-radius: 250px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0 0 0 auto;
}


.info .name {
    color: #4c6fab;
    font-size: 22pt;
    text-transform: none;
    font-weight: bold;
}

.info .data_line {
    padding: 5px 0;

}

.info .data-line-key {
    display: inline;
    color: #4c6fab;
    font-size: 12pt;
    padding-right: 10px;
}

.info .data-line-value {
    display: inline;
    color: #727272;
    font-size: 12pt;
}

.info .social {
    display: flex;
    justify-content: left;
    max-width: 300px;
}

.info .social a {
    margin: 10px;
}

.social_icon {
    display: block;
    width: 50px;
    height: 50px;
    background-size: 200px;
    background-position: 0 0;
    background-repeat: no-repeat;
    background-image: url("/img/social/social.png");
}

.monitor {
    display: flex;
    align-items: center;
}

.help-block{
    color: darkred;
}

.social_icon:hover{
    background-position-y: -50px;
}

.vk {
    background-position-x: -50px;
}

.fb {
    background-position-x: 0;
}

.youtube {
    background-position-x: -100px;
}

.instagram {
    background-position-x: -150px;
}

@media screen and (max-width: 768px) {
    .avatar {
        margin: 0 auto 15px auto;
    }

    .info {
        text-align: center;
    }

    .info .social {
        margin: 30px auto 30px auto;
    }
}

.slider {
    width: 70%;
    margin: 50px auto;
}

.slick-slide {
    margin: 0px 20px;
}

.slick-slide img {
    width: 100%;

}

.slick-prev:before,
.slick-next:before {
    color: black;
}


.slick-slide {
    transition: all ease-in-out .3s;
    opacity: .2;
}

.slick-active {
    opacity: .5;
}

.slick-current {
    opacity: 1;
}


.slick-prev, .slick-next {
    height: 70px;
    width: 35px;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    padding: 0;
    border: none;
    outline: none;
}

.slick-prev {
    left: -50px;
}

.slick-next {
    right: -50px;
}

.slick-prev:before {
    content: ' ' !important;
    display: block;
    width: 30px;
    height: 80px;
    background: url("/img/left_arr.png") center no-repeat;
    background-size: contain;
}

.slick-next:before {
    content: ' ' !important;
    display: block;
    width: 30px;
    height: 80px;
    background: url("/img/right_arr.png") center no-repeat;
    background-size: contain;
}

.about_specialist {
    position: relative;
    display: flex;
    flex-direction: column;
    border: 3px solid #4c6fab;
    border-radius: 12px;
    padding: 15px;
    background: #fff;
    overflow: hidden;
    width: 100%;
    color: #526382;
    min-width: 300px;
    max-width: 750px;
    margin: 30px auto 0 auto;
}

.about_specialist h2 {
    color: #4c6fab;
    font-size: 18pt;
    text-transform: none;
    margin-bottom: 30px;
}

/* --------------------------------------------- Reviews ----------------------------------------------------------- */
#rev_disklaimer{
    text-align: center;
    font-size: 20pt;
    margin-top: 50px;
    margin-bottom: 50px;
    color: #4c6fab;
    font-weight: bold;
}
.review_form {
    position: relative;
    display: flex;
    flex-direction: column;
    border: 3px solid #4c6fab;
    border-radius: 12px;
    padding: 15px;
    background: #fff;

    width: 100%;
    color: #526382;
    min-width: 300px;
    max-width: 750px;
    margin: 70px auto;
    padding-top: 70px;
    padding-bottom: 30px;
}

.review_header, .review_header_success {
    position: absolute;
    top: 0;
    left: 0;
    height: 50px;
    width: 100%;
    background: #4c6fab;
    text-align: center;
    color: #fff;
    padding: 10px;
}

.review_header_success, .body_success {
    display: none;
}

.body_success {
    text-align: center;
    padding-top: 15px;
}

.review_header h3 {
    font-size: 16pt;
    text-transform: uppercase;
}


.reviews {
    width: 100%;
    max-width: 750px;
    margin: 70px auto 0 auto;
}

.review {
    position: relative;
    display: block;
    color: #526382;
    margin-bottom: 30px;
    width: 100%;
    padding-left: 50px;
}

.review:before {
    position: absolute;
    top: -10px;
    left: 0px;
    content: '';
    width: 35px;
    height: 35px;
    background: url("/img/quotes.png") center no-repeat;
    background-size: contain;
}

.review h3 {
    color: #4c6fab;
    font-size: 16pt;
    text-transform: none;
}

.review .body {
    font-style: italic;
}

.stars {
    width: 330px;
    margin: 0 auto;
}

.review_btn {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    background: #4c6fab;
    color: #fff;
    padding: 15px 10%;
    border-radius: 20px;
    min-width: 300px;
}

.review_btn:hover {
    color: #fff;
    background: #2c59a8;
}



.rating-area {
    position: relative;
    display: inline;
    overflow: hidden;
    width: 265px;
    margin: 0 auto;
    text-align: center;
    top: -5px;
}

.rating-area:not(:checked) > input {
    display: none;
}

.rating-area:not(:checked) > label {
    float: right;
    width: 30px;
    padding: 0;
    cursor: pointer;
    font-size: 20px;
    line-height: 32px;
    color: lightgrey;
    text-shadow: 1px 1px #bbb;
}

.rating-area:not(:checked) > label:before {
    content: '★';
}

.rating-area > input:checked ~ label {
    color: gold;
    text-shadow: 1px 1px #c60;
}

.rating-area:not(:checked) > label:hover,
.rating-area:not(:checked) > label:hover ~ label {
    color: gold;
}

.rating-area > input:checked + label:hover,
.rating-area > input:checked + label:hover ~ label,
.rating-area > input:checked ~ label:hover,
.rating-area > input:checked ~ label:hover ~ label,
.rating-area > label:hover ~ input:checked ~ label {
    color: gold;
    text-shadow: 1px 1px goldenrod;
}

.rate-area > label:active {
    position: relative;
}

/* --------------------------------------------- Programs ----------------------------------------------------------- */
/* ---- Top Psi Programs ---- */
#prog_psi_section {

}

.prog_information_block_first {

    float: left;
    border-radius: 10px;
    padding: 0px 0px 0px 0px;
    width: 100%;

}

.prog_information_block_first p {
    font-size: 20px;
    padding: 10px 10px 5px 20px;
}

.prog_information_block_first h1#prog_title {
    color: #4c6fab;
    font-size: 22pt;
    text-transform: uppercase;
    margin: 0px 0px 0px 0px;
    padding: 10px 0px;
}

/* ---- project_for_psychologists ---- */
#prog_project_for_psychologists {
    margin: 35px 0px;
}

.prog_psi_link {
    position: relative;
    margin-bottom: 20px;
}

.programs_img {
    width: 85%;
    margin-left: auto;
    margin-right: auto;
}

.prog_imac_frame_img {
    width: 90%;
    position: absolute;
    top: 0px;
    left: 14px;
    cursor: pointer;
}

#prog_project_for_psychologists .title_learn_proj {
    color: #4c6fab;
    margin: 100px 0px 25px 0px;
    height: 25px;
}

#prog_project_for_psychologists a {
    float: left;
    width: 100%;
    text-decoration: none;
    text-transform: uppercase;
}

#prog_project_for_psychologists a:hover .title_learn_proj {
    color: #a9bde1;
}

/* ---- For Woman Section ---- */
#prog_wm_swction {

}

#prog_wm_swction #prog_title {
    color: #4c6fab;
    font-size: 22pt;
    text-transform: uppercase;
}

.programs_wm_img {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.prog_wm_frame_img {
    width: 90%;
    position: absolute;
    top: -5px;
    left: 14px;
    cursor: pointer;
}

#prog_project_for_w {
    margin-top: 40px;
}

.prog_wm_link {
    color: #000000;
    text-transform: uppercase;
}

.prog_wm_link:hover {
    text-decoration: none;
    color: #a9bde1;
}

.prog_wm_link:hover .prog_title_wm {
    color: #a9bde1;
}

.prog_title_wm {
    color: #4c6fab;
    margin: 40px 0px 25px 0px;
    height: 25px;
}

#prog_project_for_psychologists a:hover .prog_title_wm {
    color: #9786bd;
}

.prog_web_block {


    padding: 10px 0px;
}

.prog_web_block .prog_title {
    font-size: 23px;
    color: #4c6fab;
    text-transform: uppercase;
    text-align: center;
    margin-top: 0px;
    margin-bottom: 0px;
}

#prog_project_webinar {
    margin-top: 40px;
}

.programs_web_img {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.prog_web_link {
    color: #4c6fab;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}

.prog_web_link:hover {
    text-decoration: none;
    color: #a9bde1;
}

.prog_web_link:hover .prog_title_web {
    color: #a9bde1;
}

.prog_title_web {
    margin-top: 10px;
    min-height: 50px;
}


.prog_information_block_second {

    float: left;
    border-radius: 10px;
    padding: 0px 0px 0px 0px;
    width: 100%;

}

.prog_information_block_second p {
    font-size: 20px;
    padding: 10px 10px 5px 20px;
}

.prog_information_block_second h1#prog_title {

    font-size: 27px;


    margin: 0px 0px 0px 0px;
    padding: 10px 0px;
}

.title_online_prog {
    margin-bottom: 30px;
}

#prog_consultant {
    margin: 30px 0px;
}

#prog_consultant .prog_inf_consult {
    margin: 20px 0px;
}

#prog_consultant .prog_soc_btn img {
    border-radius: 8px;
    overflow: hidden;
    margin: 5px 0px 5px 0px;
}


/* --------------------------------------------------- Reviews ------------------------------------------------------ */
#rev_section{

}
#review_introducing {
    display: block;
    margin: 0 auto 40px;
    font-size: 16px;
}
#rev_profile{

}
#rev_introducing{
    padding-bottom: 20px;
}
.rev_avatar{
    width: 100%;
}
.rev_profile{
    text-align: center;
    width: 100%;
    display: block;
    margin-top: 5px;
    background: linear-gradient(to bottom, #5c81a9, #24578f);
    color: #ffffff;
    border-radius: 5px;
    padding: 5px 0px;
    text-transform: uppercase;
}
.rev_profile:hover{
    color: #ffffff;
}
.rev_name2{
    font-weight: bold;
}
.rev_text {
    color: white;
    background-color: #4c6fab;
    border-radius: 6px;
    font-size: medium;
    margin-bottom: 30px;
    padding-bottom: 20px;
    min-height: 225px;
}
.rev_text p {
    padding: 10px 10px 5px 10px;
}


/* ------------------------------------------- Application ------------------------------------- */
#app_head{
    padding-top: 30px;
    font-size: 14pt;
    padding-bottom: 50px;
}
#app_text1{

}
#app_text2{
    margin-top: 30px;
    color: #4c6fab;
    margin-bottom: 60px;
}
#app_img1 img{
    width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.app_blue{
    color: #4c6fab;
    margin-top: 30px;
}

/* ------------------------------------------- President ------------------------------------- */

#president h1 {
    color: #4c6fab;
}
#president h2 {
    color: #4c6fab;
    text-transform: uppercase;
}
#president .text-block {
    margin-top: 50px;
    margin-bottom: 15px;
}
#president .text-block ol {
    list-style-type: none;
    counter-reset: item;
}
#president .text-block ol li:before {
    content: counter(item) ") ";
    counter-increment: item;
}
#president .text-block p {
    text-indent: 15px;
}


/* ------------------------------------------- Article ------------------------------------- */

.article_items {
    display: flex;
    flex-wrap: wrap;
}
.article_items .article_item {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 31.33%;
    margin: 1%;
    padding: 15px;
    /*background: #fff;*/
    word-wrap: break-word;
}
.article_items .article_item:hover {
    /*box-shadow: 0 3px 25px rgba(0, 0, 0, 0.08);*/
    cursor: pointer;
}
.article_items .article_item .image img {
    width: 100%;
}
.article_items .article_item a {
    color: #4c6fab;
}
.article_items .article_item a:hover {
    color: #4c6fab;
    text-decoration: underline;
}
.article_items .article_item .author {
    font-size: 13px;
    margin: 5px 0;
}
.article_items .article_item h2 {
    font-size: 24px;
    padding: 5px 0 0 0;
}

#article_section {
    padding: 60px 0;
}
#article_section .body img {
    /* padding: 15px !important;*/
    width: 100%;
}
#article_section .article-author {
    display: flex;
    width: 450px;
    margin: 15px auto 50px auto;
}
#article_section .article-author .avatar {
    text-align: center;
    width: 100px;
    min-width: 100px;
    height: 100px;
    border-radius: 100px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0 0 0 auto;
}
#article_section .article-author .info {
    padding: 0 15px;
}
#article_section .article-author .info .title {
    color: #4c6fab;
    font-size: 17pt;
    line-height: 1.2;
    text-transform: none;
    margin-bottom: 15px;
    font-weight: bold;
}
#article_section .article-author .info .link a.button {
    display: inline-block;
    min-width: 250px;
    padding: 10px 15px;
    text-align: center;
    background: #4c6fab;
    color: #fff;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}


/* ------------------------------------------- Structure ------------------------------------- */

#structure h2 {
    margin-top: 60px;
    text-align: center;
}
#structure .structure-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 30px auto 60px auto;
}
#structure .structure-items .structure-item {
    display: flex;
    width: 350px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}
#structure .structure-items .structure-item .avatar {
    width: 180px;
    min-width: 180px;
    height: 180px;
    border-radius: 150px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 30px auto;
}
#structure .structure-items .structure-item .info .title {
    color: #3d3d3d;
    font-size: 14pt;
    line-height: 1.2;
    text-transform: none;
    margin-bottom: 15px;
    font-weight: bold;
}
#structure .structure-items .structure-item .info .position {
    color: #4c6fab;
    font-size: 13pt;
    line-height: 1.2;
    text-transform: none;
    margin-bottom: 15px;
    font-weight: bold;
}
