*, ::after, ::before {
    box-sizing: border-box;
}
:root {
    --bg-color: #0B2C30;
    --accent-color: #F35A02;
    --white-color: #F1F1F1;
    --gray-color: #8E8E8E;
    --black-color: #0B2C30;
}
img {
    max-width: 100%;
    display: block;
}
input, textarea, button {
    font-family: 'Open Sans', sans-serif;
}
input:focus, textarea:focus, button:focus {
    outline: none;
}
a {
    text-decoration: none;
    color: currentColor;
}
ul.no-disc, .sub-menu {
    padding: 0;
    margin: 0;
    list-style-type: none;
}
b, strong {
    font-weight: 600;
}
.justify-content-center {
    justify-content: center;
}
.justify-content-between {
    justify-content: space-between;
}    
.d-flex {
    display: flex;
}
.align-items-center {
    align-items: center;
}
.container {
    width: 100%;
    padding: 0 60px;
    max-width: 1920px;
    margin: 0 auto;
}
.color-white, .color-white a {
    color: var(--white-color);
}
.bg-green {
    background-color: var(--bg-color);
}
.btn {
    padding: 15px 50px;
    border: 1px solid var(--accent-color);
    border-radius: 32px;
    cursor: pointer;
    height: 59px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all .3s;
    color: var(--accent-color);
    white-space: nowrap;
}
.btn:hover, .btn.active {
    color: var(--white-color);
    background-color: var(--accent-color);
}

body {
    font-family: 'Open Sans', sans-serif;
    font-weight: normal;
	font-style: normal;
    font-size: 24px;
    line-height: 120%;
    color: var(--black-color);
    margin: 0;
    padding: 0;
    background-color: #f1f1f1;
}
@media(min-width: 770px) {
    body {
        padding-top: 186px;
    }
}

/* HEADER */
.header {
    padding: 64px 0;
    transition: all .1s;
    font-weight: 600;
    z-index: 9;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
}

.header.sticky {
    padding: 18px 0;
    transition: all .3s;
}
.header__menu ul, .header__right, .header__ls {
    gap: 70px;
}
.header__search-btn svg {
    cursor: pointer;
    display: block; 
}
.header__search-btn:hover svg path {
    fill: var(--white-color);
    transition: all .2s;
}
.header__menu a {
    position: relative;
}
.header__menu .children > a {
    padding-right: 11px;
}
.header__menu a::before {
    content: '';
    background-color: var(--accent-color);
    width: 0;
    height: 2px;
    position: absolute;
    bottom: 0;
    transition: width .3s;
    z-index: 1;
}
.header__menu .children > a:hover::before {
    width: calc(100% - 11px);
}
.header__menu .children > a::after {
    content: '';
    background: url('../img/header/cor.svg') no-repeat center / contain;
    position: absolute;
    top: 14px;
    right: 0;
    width: 8px;
    height: 7px;
}
.header__menu a:hover::before, .header__menu li.current::before {
    width: 100%;
}
.header__menu .sub-menu {
    position: absolute;
    background-color: var(--bg-color);
    padding: 36px 60px 26px;
    width: 100%;
    left: 0;
    top: 109px;
    display: grid;
    flex-wrap: wrap;
    grid-template-columns: 220px 220px 220px;
    gap: 24px 80px;
    font-size: 18px;
    opacity: 0;
    height: 0;
    visibility: hidden;
    overflow: hidden;
    font-weight: normal;
    z-index: 1;
}

.header__menu .children .sub-menu.open {
    visibility: visible;
    opacity: 1;
    height: auto;
    transition: all .6s;
}
.header__logo {
    position: relative;
    z-index: 2;
}
.header__logo img {
    max-width: 309px;
}
.header .container {
    gap: 30px;
}
.header.sticky .header__logo img {
    max-width: 179px;
}
.header.sticky .header__menu .sub-menu {
    top: 50px;
}
.mob-lang {
    display: none;
}
.header__btn {
    width: 30px;
    height: 23px;
    position: relative;
    display: none;
}
.header__btn span {
    height: 3px;
    width: 100%;
    border-radius: 10px;
    position: absolute;
    top: 10px;
    left: 0;
    background-color: var(--white-color);
}
.header__btn::before, .header__btn::after {
    content: '';
    height: 3px;
    width: 100%;
    border-radius: 10px;
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--white-color);
    transition: all .3s;
}
.header__btn::after {
    top: auto;
    bottom: 0;
}
.header__btn.open span {
    opacity: 0;
}
.header__btn.open::before, .header__btn.open::after {
    transform: rotate(45deg);
    top: 45%;
}
.header__btn.open::after {
    transform: rotate(-45deg);
}
.header__search-form, .header__search.open {
    display: flex;
    gap: 16px;
    align-items: center;
}
.header__search-form {
    display: none;
}
.header__search.open .header__search-btn path {
    fill: var(--white-color);
}
.header__search-form input {
    background: none;
    padding: 2px 0;
    border: none;
    border-bottom: 2px solid var(--accent-color);
    color: var(--white-color);
    font-size: 24px;
}
.header__search-form input::placeholder {
    color: var(--white-color);
}
.header__search-form button {
    display: none;
}
.searchopen .header__menu, .searchopen .header__lang {
    display: none;
}
.header__search.open .header__search-form input {
    width: 1120px;
}
.formClear svg {
    display: block;
}
.header__lang {
    position: relative;
    cursor: pointer;
}
ul.header__lang-other {
    position: absolute;
    z-index: 1;
    display: none;
    width: max-content;
    margin-top: 10px;
    gap: 7px;
}
.header__lang-other li img {
    border-radius: 50%;
    border: 1px solid transparent;
    padding: 1px;
    transition: all .3s;
}
.header__lang-other li:hover img {
    border: 1px solid var(--accent-color);
    cursor: pointer;
}
.header__lang.open ul.header__lang-other {
    display: flex!important;
}

@media(max-width:1755px) {
    .header__menu ul, .header__right, .header__ls {
        gap: 30px;
    }
    .header {
        font-size: 22px;
    }
    .header__menu .children > a::after {
        top: 13px;
    }
    .header__menu .sub-menu {
        gap: 15px 30px;
        font-size: 15px;
        grid-template-columns: 180px 180px 180px;
    }
    .header__search.open .header__search-form input {
        width: 650px;
    }
}
@media(max-width:1400px) {
    .header {
        font-size: 18px;
    }
    .header__menu .children > a::after {
        top: 10px;
    }
}
@media(max-width:1280px) {
    .header__menu {
        display: none;
        position: fixed;
        top: 180px;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--bg-color);
        padding: 0 0 100px;
        overflow: auto;
    }
    .header.sticky .header__menu {
        top: 65px;
    }
    .container {
        padding: 0 24px;
    }
    .header__menu ul {
        flex-direction: column;
        gap: 0
    }
    .header__menu ul li a {
        padding: 25px 24px;
        font-size: 24px;
        display: block;
        width: 100%;
        border-bottom: 1px solid #233f44;
    }
    .header__menu a::before {
        display: none;
    }
    .header__menu .children > a::after {
        background: url(../img/header/cor2.svg) no-repeat center / contain;
        width: 32px;
        height: 32px;
        top: 23px;
        right: 24px;
    }
    .mob-lang {
        display: block;
    }
    .header__menu .children .sub-menu {
        grid-template-columns: 1fr;
        position: relative;
        top: 0;
        padding: 0;
        font-size: 24px;
        gap: 0;
    }
    .header__menu .children.open, .header__menu .children .sub-menu.open {
        background-color: #244045;
    }
    .header__menu .children.open>a::after {
        transform: rotate(180deg);
    }
    .header {
        font-size: 24px;
    }
    .header__ls {
        gap: 48px;
    }
    .header__search-btn svg path {
        fill: var(--white-color);
    }
    .header__lang {
        order: 2;
    }
    .header__search {
        order: 1;
    }
    .header__btn {
        order: 3;
        display: block;
    }
    .header.sticky {
        padding: 16px 0;
    }
    .header__search.open .header__search-form input {
        width: 330px;
    }
}
@media(max-width:991px) {
    .searchopen .header__logo {
        display: none;
    }
    .header__search.open .header__search-form input, .searchopen .header__right, .searchopen .header__ls, .header__search.open, .searchopen .header__search-form {
        width: 100%;
    }
    .formClear svg {
        width: 18px;
        height: 18px;
    }
    .header__search-form {
        gap: 8px;
    }
    .header__search-form input {
        font-size: 16px;
    }
}
@media(max-width:769px) {
    .header {
        padding: 16px 0;
        font-size: 18px;
        height: 56px;
        position: sticky;
        top: 0;
    }
    .header__logo img {
        max-width: 128px;
    }
    .header__search-btn svg {
        width: 19px;
        height: 19px;
    }
    .header__ls {
        gap: 24px;
    }
    .header__btn {
        width: 22px;
        height: 16px;
    }
    .header__btn::before, .header__btn::after {
        height: 2px;
    }
    .header__btn span {
        height: 2px;
        top: 7px;
    }
    .header__menu {
        top: 56px;
    }
    .header__menu ul li a {
        padding: 19px 12px;
        font-size: 18px;
    }
    .header__menu .children .sub-menu a {
        font-size: 16px;
        padding: 18px 16px;
    }
    .header__menu .children > a::after {
        width: 24px;
        height: 24px;
        top: 21px;
        right: 16px;
    }
    .container {
        padding: 0 12px;
    }
    ul.header__lang-other {
        flex-direction: column;
    }
}
/* END HEADER */

/* HOME */
.firstHome {
    height: 900px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding: 50px 0;
    position: relative;
}
.firstHome::before {
    content: '';
    background-color: var(--bg-color);
    height: 100px;
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    z-index: -1;
}
.firstHome .container {
    position: relative;
}
.firstHome__wr {
    gap: 50px;
}
.h1 {
    margin: 0 0 20px;
    font-weight: 400;
    font-size: 96px;
    line-height: 90%;
    letter-spacing: -0.03em;
}
.firstHome__cont p {
    font-weight: 400;
    font-size: 48px;
    line-height: 110%;
    margin: 0;
}
.firstHome__contact {
    font-size: 18px;
    line-height: 120%;
    text-align: right;
    color: #C3CACB;
    text-decoration-line: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
    transition: .2s;
}
.firstHome__contact:hover {
    color: var(--bg-color);
}
.firstHome__wr {
    align-items: end;
}
.firstHome__cont {
    max-width: 1157px;
}
.firstHome__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.firstHome__bg::before {
    content: '';
    background: linear-gradient(0deg, rgba(0, 34, 35, 0.5), rgba(0, 34, 35, 0.5));
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.firstHome__bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.aboutHome {
    padding: 150px 0 200px;
}
.sectionName {
    font-weight: 600;
    font-size: 14px;
    color: var(--gray-color);
    margin: 0 0 20px;
}
.sectionTitle, .txtBlock h2 {
    font-weight: 400;
    font-size: 48px;
    margin: 0 0 20px;
    line-height: 110%;
}
.aboutHome .sectionTitle {
    margin-bottom: 0;
}
.aboutHome .firstHome__contact {
    color: var(--gray-color);
}
.aboutHome .firstHome__contact a:hover {
    color: var(--bg-color);
    transition: all .3s;
}
.servicesHome__blocks {
    flex-wrap: wrap;
}
.servicesHome__block {
    width: calc(100% / 4);
    height: 289px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-right: 1px solid #244045;
    border-bottom: 1px solid #244045;
    text-align: center;
    padding: 18px;
    transition: all .2s;
}

.servicesHome__block:nth-child(4n) {
    border: none;
    border-bottom: 1px solid #244045;
}
.servicesHome__block:nth-last-child(-n+4) {
    border: none;
    border-right: 1px solid #244045;
}
.servicesHome__block:last-child {
    border-right: 1px solid transparent;
}
.servicesHome__block:hover {
    background-color: #103034;
}
.servicesHome__block-img img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 10px;
}
.servicesHome__block-title {
    font-weight: 600;
}

.protectHome__wr {
    padding: 200px 0    ;
    background: linear-gradient(180deg, rgba(11, 44, 48, 0) 0%, #0B2C30 80.29%, #0B2C30 100%);
}
.protectHome__cont {
    max-width: 1450px;
    display: flex;
    flex-direction: column;
    gap: 200px;
}
.protectHome__cont .sectionTitle {
    max-width: 1024px;
}
.protectHome__tags {
    gap: 20px;
    flex-wrap: wrap;
}
.protectHome__tag {
    padding: 15px 30px 15px 25px;
    gap: 2px;
}
.protectHome__tag span {
    color: var(--accent-color);
}
.protectHome__tag:hover span {
    color: var(--white-color);
}
.teamHome {
    padding: 100px 0 50px;
}
.teamHome__blocks {
    margin: 50px 0;
    gap: 57px;
    flex-wrap: wrap;
}
.teamHome__block {
    max-width: 314px;
    transition: all .3s;
    width: calc(100% / 5 - 46px);
}
.teamHome__block-img {
    background-color: #c3cacc;
    display: flex;
    flex-direction: column;
    justify-content: end;
    max-height: 460px;
    height: auto;
    aspect-ratio: 2 / 3;
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 20px;
}
.teamHome__block-img img {
    height: 95%;
    width: 100%;
    object-fit: contain;
    object-position: left bottom;
    filter: saturate(0);
    transition: all .3s;
}
.teamHome__block-post {
    color: var(--gray-color);
    font-size: 12px;
    letter-spacing: 0.2em;
    margin-top: 2px;
}
.teamHome__block:hover .teamHome__block-img img {
    filter: saturate(1);
}
.teamHome__block:hover, .teamHome__block:hover .teamHome__block-post {
    color: var(--accent-color);
    transition: all .3s;
}
.teamHome__btn {
    text-align: center;
}
.teamHome__block-title {
    font-weight: 600;
}
.newsHome {
    padding: 100px 0;
}
.newsHome .sectionTitle {
    max-width: 1024px;
}
.newsHome__blocks {
    gap: 60px;
    flex-wrap: wrap;
    margin: 50px 0;
}
.newsHome__block {
    max-width: 405px;
    width: calc(100% / 4 - 45px);
    transition: all .3s;
}
.newsHome__block-img {
    height: 528px;
    margin-bottom: 20px;
    border-radius: 4px;
    overflow: hidden;
}
.newsHome__block-img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    filter: saturate(0);
    transition: all .3s;
}
.newsHome__block-title {
    font-size: 18px;
    margin-bottom: 20px;
}
.newsHome__block-date {
    font-size: 14px;
    color: var(--gray-color)
}
.newsHome__block:hover .newsHome__block-img img {
    filter: saturate(1);
}

@media(max-width: 1500px) {
    .firstHome__wr {
        flex-direction: column;
        align-items: start;
    }
    .teamHome__blocks {
        gap: 63px 24px;
    }
     .teamHome__block {
        max-width: 100%;
        width: calc(100% / 5 - 20px);
    }
    .newsHome__blocks {
        gap: 24px;
    }
    .newsHome__block {
        max-width: 100%;
        width: calc(100% / 3 - 16px);
    }
    .newsHome__block:nth-child(4) {
        display: none;
    }
}
@media(max-width: 1024px) {
    .servicesHome__block {
        height: 318px;
    }
    .teamHome__block {
        width: calc(100% / 3 - 16px);
    }
    .newsHome__block-img {
        height: 402px;
    }
}
@media(max-width: 767px) {
    .h1 {
        font-size: 48px;
        line-height: 100%;
        letter-spacing: -0.03em;
        margin-bottom: 10px;
    }
    .firstHome__cont p {
        font-size: 24px;
        line-height: 120%;
    }
    .firstHome__contact {
        font-size: 16px;
    }
    .firstHome {
        height: 662px;
    }
    .aboutHome {
        padding: 75px 0 100px;
    }
    .sectionName {
        font-size: 12px;
        margin: 0 0 10px;
    }
    .sectionTitle {
        font-size: 24px;
    }
    .servicesHome__block-title {
        font-size: 18px;
    }
    .servicesHome__block, .servicesHome__block:nth-last-child(-n+4), .servicesHome__block:nth-child(4n) {
        border: none;
    }
    .servicesHome__block {
        height: auto;
        padding: 0;
        width: calc(100% / 4 - 10px);
    }
    .servicesHome__blocks {
        gap: 50px 12px;
        align-items: baseline;
    }
    .servicesHome {
        padding: 50px 0;
    }
    .protectHome__wr {
        padding: 100px 0;
    }
    .protectHome__cont {
        gap: 80px;
    }
    .btn {
        font-size: 16px;
        padding: 10px 14px;
        height: 39px;
    }
    .protectHome__tags {
        gap: 10px;
    }
    .teamHome__block {
        width: calc(100% / 2 - 6px);
    }
    .teamHome__blocks {
        gap: 63px 12px;
    }
    body {
        font-size: 18px;
    }
    .teamHome__block-post {
        margin-top: 0;
    }
    .newsHome {
        padding: 50px 0;
    }
    .newsHome__block {
        width: calc(100% / 2 - 12px);
    }
    .newsHome__block:nth-child(4) {
        display: block;
    }
}
@media(max-width: 575px) {
    .servicesHome__block {
        width: calc(100% / 2 - 6px);
    }
    .teamHome__block-img {
        margin-bottom: 10px;
    }
    .teamHome__blocks {
        margin: 25px 0;
        gap: 25px 12px;
    }
    .teamHome {
        padding: 50px 0 25px;
    }
    .teamHome__btn .btn {
        width: 100%;
    }
    .newsHome {
        padding: 50px 0;
    }
    .newsHome__block {
        width: 100%;
    }
    .newsHome__block-img {
        height: 296px;
        margin-bottom: 10px;
    }
    .newsHome__block-title {
        font-size: 16px;
        margin-bottom: 10px;
    }
    .newsHome__blocks {
        gap: 25px;
        margin: 25px 0;
    }
    .protectHome__tag {
        font-size: 15px;
    }
    .teamHome__block-post {
        font-size: 10px;
    }
    .newsHome__block-img img {
        object-position: 0 20%;
    }
    .newsHome__block-img {
        height: 220px;
        border-radius: 0
    }
}
@media(max-width: 390px) {
    .newsHome__block-img {
        height: 184px;
    }
}

/* END HOME */

/* FOOTER */
.footer {
    padding: 100px 0;
}
.footer__awards {
    flex-wrap: wrap;
    align-items: center;
    gap: 60px 70px;
}
.footer__award {
    width: 160px;
    font-size: 16px;
    line-height: 120%;
    color: #546B6E;
    display: flex;
    gap: 10px;
    align-items: center;
}
.footer__awards img {
    height: auto;
    max-width: 63px;
}
.footer__middle {
    padding: 100px 0;
    justify-content: space-between;
    gap: 80px;
    border-bottom: 1px solid #546B6E;
}
.footer__logo img {
    max-width: 309px;
}
.footer__menu-title {
    font-weight: 600;
    margin-bottom: 20px;
}
.footer__menu:not(.footer__menu-b) ul {
    display: flex;
    flex-direction: column;
    font-size: 18px;
    gap: 20px;
    flex-wrap: wrap;
}
.footer__menu-wr {
    display: flex;
    gap: 20px 80px;
}
.footer__menu-b ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-weight: 600;
}
.footer__menu a {
    position: relative;
}
.footer__menu a::before {
    content: '';
    background-color: var(--accent-color);
    width: 0;
    height: 2px;
    position: absolute;
    bottom: 0;
    transition: width .3s;
    z-index: 1;
}
.footer__menu a:hover::before {
    width: 100%;
}
.footer__bottom {
    padding-top: 100px;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: space-between;
}
.footer__bottom-left {
    gap: 20px 80px;
    justify-content: space-between;
    font-size: 16px;
}
.footer__bottom-txt {
    font-size: 16px;
}
.footer__bottom-right ul {
    font-size: 16px;
    display: flex;
    gap: 20px 80px;
}
.footer__bottom a:hover {
    color: var(--accent-color);
    transition: all .2s;
}
@media(max-width: 1700px) {
    .footer__awards {
        justify-content: start;
    }
    .footer__menu-wr {
        flex-direction: column;
    }
}
@media(max-width: 1240px) {
    .footer__middle {
        flex-wrap: wrap;
        gap: 100px;
        justify-content: start;
    }
    .footer__logo {
        width: 100%;
    }
    .footer__menu-b {
        width: 100%;
    }
    .footer__bottom-left {
        flex-wrap: wrap;
    }
}
@media(max-width: 1024px) {
    .footer__bottom-left {
        flex-direction: column;
        gap: 20px;
    }
    .footer__bottom {
        flex-direction: column;
        justify-content: start;
    }
    .footer__menu-b ul {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px 40px;
    }
    .footer__middle {
        flex-wrap: wrap;
        gap: 100px 40px;
    }
    .footer__menu, .footer__menu-b ul li {
        width: 432px;
    }
    .footer__menu-b {
        width: 100%;
    }
}
@media(max-width: 767px) {
    .footer, .footer__middle {
        padding: 50px 0;
    }
    .footer__bottom {
        padding-top: 50px;
    }
    .footer__logo img {
        max-width: 202px;
    }
    .footer__middle {
        gap: 50px;
    }
    .footer__menu, .footer__menu-b ul li {
        width: 100%;
    }
    .footer__menu-title {
        font-size: 18px;
    }
    .footer__menu ul li a {
        font-size: 16px;
    }
    .footer__bottom-right ul {
        flex-direction: column;
    }
}
@media(max-width: 575px) {
    .footer__awards {
        gap: 24px 12px;
    }  
    .footer__award {
        flex-direction: column;
        align-items: start;
        width: calc(50% - 6px);
    }
    .footer__awards img {
        height: 40px;
    }
    .footer__bottom-txt {
        font-size: 14px;
    }
}

/* END FOOTER */

/* TEAM PAGE */
.singlePage {
    padding: 50px 0 100px;
}
.breadcrump {
    margin-bottom: 20px;
}
.breadcrump ul {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    line-height: 120%;
    color: var(--gray-color);
    flex-wrap: wrap;
}
.teamPage__tabs {
    gap: 20px;
}
.teamPage__tabs .btn {
    padding: 15px 30px;
}
.teamPage .teamHome__blocks {
    margin-bottom: 0;
}
.teamPage__tabs-scroll {
    overflow: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
@media(max-width: 575px) {
    .singlePage {
        padding: 25px 0 50px;
    }
    .teamPage__title {
        margin-bottom: 10px;
    }
    .teamPage__tabs .btn {
        padding: 10px 16px;
    }
    .teamPage__tabs {
        gap: 10px;
    }
    .breadcrump {
        margin-bottom: 10px;
    }
    .breadcrump ul {
        font-size: 12px;
    }
}
/* END TEAM PAGE */

/* PERSON */
.persPage {
    overflow: hidden;
}
.persPage__wr {
    display: grid;
    grid-template-columns: 1fr 2.6fr;
    position: relative;
}
.persPage__right {
    max-width: 1226px;
    margin-left: 50px;
}
.persPage__img {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 474px;
    width: calc(100vw - 81%);
}
.persPage__img img {
    max-width: 474px;
    width: 100%;
}
.persPage__mail {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: var(--gray-color);
    gap: 20px;
}
.persPage__top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.persPage__top .sectionTitle {
    margin-bottom: 0;
}
.persPage__top .breadcrump {
    width: 100%;
    justify-content: space-between;
}
.persPage__top-txt {
    margin: 30px 0 50px;
}
.persPage__top-txt p {
    margin: 20px 0;
}
.persPage__practice-tag .protectHome__tag {
    color: currentColor;
}
.persPage__practice-tag .protectHome__tag:hover {
    color: var(--white-color);
}
.persPage__practice-tag .protectHome__tags span {
    color: var(--accent-color);
    font-weight: 600;
}
.protectHome__tags {
    margin-bottom: 50px;
}
.persPage__practice-items {
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 50px;
}
.persPage__practice-items span {
    font-weight: 600;
}
.persPage__practice-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    transition: all .2s
}
.persPage__practice-item:hover {
    color: var(--accent-color);
}
.whiteBlock {
    padding: 40px;
    background: #FFFFFF;
    border-radius: 30px;
}
.persPage__recom, .persPage__exp {
    margin-bottom: 50px;
}
.persPage__recom-img {
    gap:20px;
    flex-wrap: wrap;
}
.persPage__recom p i {
    font-size: 18px;
    line-height: 100%;
}
.persPage__educ {
    margin-bottom: 50px;
}
.persPage__educ-block, .persPage__educ-blocks {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.persPage__educ-blocks {
    gap: 20px;
}
.persPage__educ-y {
    font-weight: 600;
    font-size: 14px;
    line-height: 120%;
    color: var(--gray-color);
}
.persPage__educ-txt {
    font-weight: 600;
}
.persPage__list {
    background-color: var(--bg-color);
    margin-bottom: 50px;
}
.persPage__list ul {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.persPage__lang ul {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    margin-top: 30px;
}
.persPage__lang ul li {
    display: flex;
    align-items: center;
    gap:10px;
    font-weight: 600;
}
@media(max-width: 1200px) {
    .persPage__wr {
        grid-template-columns: 1fr;
    }
    .persPage__right {
        margin-left: 0;
    }
    .persPage__top .sectionTitle {
        width: 60%;
    }
    .persPage__mail {
        width: 40%;
        justify-content: end;
    }
    .persPage__img {
        position: relative;
        width: 311px;
        z-index: 1;
        overflow: hidden;
        margin-top: 50px;
        display: flex;
        align-items: end
    }
    .persPage__img img {
        height: 603px;
        object-fit: cover;
        object-position: top;
    }
    .persPage__top-txt {
        width: calc(100% - 311px - 40px);
        margin: 0 0 30px 40px;
        margin-top: 50px;
        position: relative;
        z-index: 1;
    }
    .persPage__top {
        position: relative;
        margin-bottom: 50px;
    }
    .persPage__top::after {
        content:'';
        position: absolute;
        width: calc(100% + 50px);
        height: 125px;
        left: -24px;
        bottom: 0px;
        background: linear-gradient(180deg, rgba(195, 202, 203, 0) 0%, #C3CACB 100%);
    }
    .whiteBlock {
        padding: 24px;
    }
}
@media(max-width: 991px) {
    .persPage__mail {
        width: 53%;
    }
    .persPage__top .sectionTitle {
        width: 46%;
    }
}
@media(max-width: 875px) {
    .persPage__img {
        width: calc(100% + 48px);
        max-width: initial;
        justify-content: center;
        margin-left: -24px;
        margin-right: -24px;
        padding: 0 40px;
    }
    .persPage__top-txt {
        width: 100%;
        margin: 30px 0 0;
    }
    .persPage__img::after {
        content:'';
        position: absolute;
        width: calc(100% + 50px);
        height: 125px;
        left: -24px;
        bottom: 0px;
        background: linear-gradient(180deg, rgba(195, 202, 203, 0) 0%, #C3CACB 100%);
    }
    .persPage__img img {
        position: relative;
        z-index: 1;
        height: 460px;
        max-width: 295px;
    }
    .persPage__top::after {
        display: none;
    }
    .persPage__top {
        align-items: center;
    }
    .persPage__top {
        margin-bottom: 30px;
    }
}
@media(max-width: 767px) {
    .persPage__top .breadcrump {
        order: 1;
    }
    .persPage__top .sectionTitle {
        order: 2;
        width: 100%;
    }
    .persPage__img {
        order: 3;
        margin-top: 25px;
    }
    .persPage__mail {
        order: 4;
        width: 100%;
        justify-content: start;
        flex-direction: row-reverse;
        gap: 10px;
        margin-top: 25px;
    }
    .persPage__mail img {
        width: 32px;
        height: 32px;
    }
    .persPage__top-txt {
        order: 5;
        margin: 10px 0 0;
    }
    .persPage__top-txt p {
        margin: 10px 0;
    }
    .protectHome__tags, .persPage__practice-items, .persPage__recom, .persPage__exp, .persPage__educ, .persPage__list {
        margin-bottom: 25px;
    }
    .persPage__practice-items {
        gap: 10px;
    }
    .persPage__recom p i {
        font-size: 16px;
    }
    .persPage__list ul {
        padding-left: 20px;
    }
    .sectionTitle {
        margin-bottom: 10px;
    }
    p {
        margin: 10px 0;
    }
    .persPage__list ul {
        gap: 10px;
    }
}
@media(max-width: 575px) {
    .persPage__img img {
        height: 398px;
        max-width: 255px;
    }
    .persPage__img {
        width: calc(100% + 32px);   
        margin-left: -16px;
        margin-right: -16px;
        padding: 0 40px;
    }
    .persPage__mail {
        font-size: 12px;
    }
    .persPage__top-txt, .persPage__exp-txt {
        font-size: 16px;
    }
    .whiteBlock {
        padding: 16px 12px;
    }
    .persPage__list ul {
        padding-left: 25px;
    }
    .persPage__lang ul {
        gap: 30px;
        flex-direction: column;
        align-items: start;
    }
    .persPage__recom-img img {
        width: calc(100% / 2 - 5px);
    }
    .persPage__recom-img {
        gap: 10px;
    }
}
/* END PERSON */

/* INDUSTRY */
.acc-color {
    color: var(--accent-color);
}
.sidebarPage__wr {
    display: grid;
    grid-template-columns: 390px 1fr;
    gap: 50px;
}
.sidebarPage__sidebar {
    padding-top: 50px;
}
.sidebarPage__menu ul {
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.sidebarPage__menu ul li a {
    font-weight: 600;
    transition: all .3s;
}
.sidebarPage__menu ul li a:hover, .sidebarPage__menu ul li.active a {
    color: var(--accent-color);
}
.sidebarPage__cont-txttop {
    margin-top: 60px;
}
.sidebarPage__blocks {
    flex-wrap: wrap;
    gap: 30px;
    margin: 50px 0;
}
.sidebarPage__block {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: calc(100% / 2 - 15px);
}
.sidebarPage__block-top {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.sidebarPage__block-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}
.sidebarPage__block .sectionTitle {
    margin-bottom: 0;
    line-height: 110%;
}
.sidebarPage__block.w100 {
    width: 100%;
}
.txtBlock h2 {
    margin: 60px 0 20px;
    line-height: 110%;
}
.sidebarPage__adv .txtBlock {
    margin-bottom: 60px;
}
.sidebarPage__exp .teamHome__blocks {
    margin: 60px 0 0;
    gap: 60px 40px;
}
.sidebarPage__exp .teamHome__block {
    max-width: 314px;
    transition: all .3s;
    width: calc(100% / 5 - 32px);
}
.sidebarPage__block-txt p:first-child {
    margin-top: 0;
}
.sidebarPage__block-txt p:last-child {
    margin-top: 0;
}
.sidebarPage__block-txt ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-left: 30px;
}
.sidebarPage__block-txt ul:not(:first-child) {
    margin-top: 20px;
}
.sidebarPage__block-txt ul:not(:last-child) {
    margin-bottom: 20px;
}

@media(max-width:1500px) {
    .sidebarPage__wr {
        grid-template-columns: 255px 1fr;
        gap: 30px;
    }
    .sidebarPage__exp .teamHome__block {
        width: calc(100% / 4 - 30px);
    }
}
@media(max-width:1500px) and (min-width:1250px) {
    .sidebarPage__block .sectionTitle {
        font-size: 38px;
    }
}
@media(max-width:1250px) {
    .sidebarPage__wr {
        display: block;
    }
    .sidebarPage__menu ul {
        flex-direction: row;
        gap: 20px;
        width: max-content;
    }
    .sidebarPage__menu nav {
        overflow: auto hidden;
        -ms-overflow-style: none;
        scrollbar-width: none;
        margin: 0 -24px;
        padding: 0 24px;
    }
    .sidebarPage__sidebar {
        padding-top: 0;
        margin-bottom: 60px;
        padding-bottom: 60px;
        border-bottom: 1px solid #C3CACB;
    }
    .sidebarPage__blocks {
        gap: 24px;
    }
    .sidebarPage__block {
        width: calc(100% / 2 - 12px);
    }
    .sidebarPage__exp .teamHome__blocks {
        gap: 63px 24px;
    }
    .sidebarPage__exp .teamHome__block {
        width: calc(100% / 4 - 18px);
    }
}
@media(max-width:991px) {
    .sidebarPage__block {
        width: 100%;
    }
    .sidebarPage__block-top {
        flex-direction: row;
        align-items: center;
    }
    .sidebarPage__exp .teamHome__block {
        width: calc(100% / 3 - 16px);
    }
}
@media(max-width:767px) {
    .sidebarPage__menu nav {
        margin: 0 -12px;
        padding: 0 12px;
    }
    .sidebarPage {
        padding-top: 25px;
    }
    .sidebarPage__sidebar {
        margin-bottom: 25px;
        padding-bottom: 25px;
    }
    .sidebarPage__cont-txttop {
        margin-top: 25px;
    }
    .sidebarPage__blocks {
        margin: 25px 0;
    }
    .sidebarPage__blocks {
        gap: 15px;
    }
    .sidebarPage__block-img {
        width: 40px;
        height: 40px;
    }
    .sidebarPage__block-top, .sidebarPage__block {
        gap: 10px;
    }
    .sidebarPage__block-txt {
        font-size: 16px;
    }
    .txtBlock {
        font-size: 16px;
    }
    .txtBlock h2 {
        font-weight: 400;
        font-size: 24px;
        margin: 25px 0 10px;
    }
    .sidebarPage__adv .txtBlock {
        margin-bottom: 25px;
    }
    .sidebarPage__exp .teamHome__blocks {
        margin: 25px 0 0;
        gap: 25px 12px;
    }
    .sidebarPage__exp .teamHome__block {
        width: calc(100% / 2 - 6px);
        max-width: 100%;
    }
    .sidebarPage__exp .teamHome__block-img {
        max-height: 460px;
        aspect-ratio: 5 / 6;
    }
}

/* END INDUSTRY */

/* POST */
.postPage {
    padding-top: 30px;
    padding-bottom: 80px;
}
.postPage .container {
    max-width: 1140px;
    margin: 0 auto;

}
.postPage__title {
    margin-bottom: 60px;
}
.postPage__img {
    width: 100%;
    height: 460px;
    margin-bottom: 60px;
}
.postPage__img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.txtBlock blockquote {
    margin: 60px 0;
    padding-left: 20px;
    border-left: 4px solid var(--accent-color);
    color: var(--accent-color);
}
.postPage__img {
    margin: 20px 0 60px;
}
.postCooments {
    margin-top: 60px;
}
.postCooments__blocks {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.postCooments__block {
    padding: 30px 40px;
}
.postCooments__block-author {
    display: flex;
    align-items: center;
    font-weight: 600;
    gap: 20px;
    margin-bottom: 10px;
}
.postCooments__block-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #C3CACB;
    display: flex;
    justify-content: center;
    align-items: end;
    overflow: hidden;
    position: relative;
}
.postCooments__block-img img {
    width: 44px;
    object-fit: contain;
    object-position: top;
    filter: saturate(0);
    position: absolute;
    left: auto;
    top: 5%;
}
.postCooments__block-txt {
    font-size: 18px;
}
@media (max-width: 1024px) {
    .postCooments__block {
        padding: 30px 24px;
    }
}
@media (max-width: 767px) {
    .postPage {
        padding-top: 25px;
        padding-bottom: 50px;
    }
    .postPage__title, .postPage__img {
        margin-bottom: 25px;
    }
    .txtBlock blockquote {
        margin: 25px 0;
        padding-left: 10px;
    }
    .postCooments, .postCooments__blocks {
        margin-top: 25px;
    }
    .postCooments__block {
        padding: 16px 12px;
    }
    .postCooments__block-txt {
        font-size: 16px;
    }
    .postCooments__blocks {
        gap: 15px;
    }
}
@media (max-width: 575px) {
    .postPage__img {
        height: 311px;
    }
}
/* END POST */