/* Slider */
.slick-slider {
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}

.slick-track:before,
.slick-track:after {
    display: table;

    content: '';
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}

[dir='rtl'] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

/* Arrows */
.slick-prev,
.slick-next {
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    color: transparent;
    outline: none;
    background: transparent;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
    opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
    opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
    font-family: "slick";
    font-size: 20px;
    line-height: 1;

    opacity: 0.75;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
    left: -25px;
}

[dir="rtl"] .slick-prev {
    right: -25px;
    left: auto;
}

.slick-prev:before {
    content: "←";
}

[dir="rtl"] .slick-prev:before {
    content: "→";
}

.slick-next {
    right: -25px;
}

[dir="rtl"] .slick-next {
    right: auto;
    left: -25px;
}

.slick-next:before {
    content: "→";
}

[dir="rtl"] .slick-next:before {
    content: "←";
}

.hero,
.hero img {
    width: 100%;
    max-width: 100vw;
    z-index: 0;
    overflow: hidden;
}

.hero {
    position: relative;
}

.hero .text_block {
    font-family: "PlayfairDisplay-R";
    position: absolute;
    top: 38%;
    right: 13vw;
    color: #fff;
    text-align: right;
}

.hero .h1 {
    font-size: 5.5vw;
}

.hero .h3 {
    margin: -0.75vw 0 1.5vw;
    font-size: 3.4vw;
}

.hero .description {
    font-size: 1.47vw;
}

.practise_area {
    padding: 5vw 8vw;
    font-family: "PlayfairDisplay-R";
    display: flex;
    transition: 0.4s;
    justify-content: space-between;
}

.control_part {
    width: 24%;
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    text-align: right;
    color: #93556a;
    font-size: 2.7vw;
    line-height: 1.1;
}

.publications .control_part .title,
.practise_area .control_part .title {
    cursor: pointer;
    width: fit-content;
    transition: 0.4s;
}

.publications .control_part .title:hover,
.practise_area .control_part .title:hover {
    color: #000;
}

.control_part .controls {
    margin-top: 2vw;
    position: relative;
    width: 5vw;
    float: right;
}

.slider_part {
    width: 69%;
    display: flex;
    position: relative;
}

/*
.slider_part::before,
.slider_part::after {
    z-index: 1;
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    width: 2vw;
}

.slider_part::before {
    left: 0;
    background: linear-gradient(to right, #fff, hsla(0, 0%, 100%, 0));
    background: -moz-linear-gradient(to right,
            #fff,
            hsla(0, 0%, 100%, 0));
    background: -webkit-linear-gradient(to right,
            #fff,
            hsla(0, 0%, 100%, 0));
    background: -o-linear-gradient(to right,
            #fff,
            hsla(0, 0%, 100%, 0));
    -webkit-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.slider_part::after {
    right: 0;
    background: linear-gradient(to left, #fff, hsla(0, 0%, 100%, 0));
    background: -moz-linear-gradient(to left,
            #fff,
            hsla(0, 0%, 100%, 0));
    background: -webkit-linear-gradient(to left,
            #fff,
            hsla(0, 0%, 100%, 0));
    background: -o-linear-gradient(to left,
            #fff,
            hsla(0, 0%, 100%, 0));
    -webkit-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

*/
.slider_part .slick-slide {
    margin: 0 2vw;
    transition: 0.2s;
    outline: none;
    cursor: pointer;
}

.controls button.slick-next,
.controls button.slick-prev {
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    position: absolute;
    width: 15px;
    height: 20px;
    background-size: 19px;
    display: block;
    cursor: pointer;
    -webkit-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    padding: 5px;
    opacity: 0.6;
    z-index: 1;
}

.controls button.slick-next::before,
.controls button.slick-prev::before {
    content: none;
}

.controls button.slick-next:hover,
.controls button.slick-prev:hover {
    opacity: 1;
}

.controls button.slick-prev {
    right: unset;
    left: 2vw;
    background-image: url(../images/prev_arrow.png);
    background-position-x: right;
}

.controls button.slick-next {
    left: unset;
    background-image: url(../images/next_arrow.png);
    right: 0;
    background-position-x: left;
}


.card_slider {
    width: 26%;
    margin: 0 3.5%;
    text-align: left;
}

.card_slider .title {
    font-size: 1.4vw;
    margin: 1vw 0;
    transition: 0.4s;
    color: #000;
    font-family: "PlayfairDisplay-B";
}

.card_slider .description {
    font-size: 1.05vw;
    transition: 0.4s;
    color: #000;
}

.about_me {
    padding: 9vw 8vw 6vw 13vw;
    background: url('../images/bookshelf.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.about_me .img_holder {
    width: 25%;
}

.about_me .img_holder img {
    width: 109%;
}

.about_me .text_part {
    font-family: "PlayfairDisplay-R";
    padding-left: 4.5vw;
    color: #fff;
}

.about_me .h1 {
    font-size: 2.7vw;
    margin: 0.7vw 0 0.5vw;
    line-height: 1.25;
}

.about_me .h4 {
    font-size: 1.2vw;
    line-height: 1.8;
    max-width: 40vw;
}

.about_me .h3 {
    font-size: 1.35vw;
}

.publications {
    padding: 8vw 0vw 7vw;
    font-family: "PlayfairDisplay-R";
    display: flex;
    transition: 0.4s;
    justify-content: space-between;
    align-items: center;
}

.publications .control_part {
    width: 28%;
}

.publications .controls {
    margin-top: 5vw;
}

.publications .slider_part {
    width: 66%;
}

.publications .slider_part .slick-slide {
    width: 45%;
    position: relative;
    margin: 0 1vw;
    transition: 0.2s;
    outline: none;
    cursor: pointer;
}

.publications .card_slider img {
    width: 100%;
}

.publications .slick-slide .hidden_part {
    position: absolute;
    bottom: 0;
    padding: 5vw 1vw 1.3vw 3vw;
    color: #fff;
    font-size: 1.4vw;
    font-family: "Raleway-L";
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, #A7556B, hsla(0, 0%, 100%, 0));
    background: -moz-linear-gradient(to top,
            #A7556B,
            hsla(0, 0%, 100%, 0));
    /* FF3.6+ */
    background: -webkit-linear-gradient(to top,
            #A7556B,
            hsla(0, 0%, 100%, 0));
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(to top,
            #A7556B,
            hsla(0, 0%, 100%, 0));
    /* Opera 11.10+ */
}

.publications .slick-slide:hover .hidden_part {
    opacity: 1;
    visibility: visible;
}

.media {
    padding: 4vw 4vw;
    display: flex;
    justify-content: center;
    background: url('../images/back4.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    align-items: center;
}

.media .video_block {
    width: 45%;
}

#placeholderMedia iframe {
    height: 100%;
}

#placeholderMedia {
    position: relative;
    padding: 0.4vw;
    background: #6d3c4f;
    height: 29vw;
}

#playBtn {
    position: absolute;
    opacity: 0.9;
    top: 50%;
    left: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translate(-50%, -50%);
    width: 6vw;
    border-radius: 0.4vw;
    height: 5vw;
    padding: 0;
    background: #6d3c4f;
    overflow: hidden;
}

#playBtn svg {
    width: 47%;
    margin-left: 0.5vw;
    height: auto;
}

#playBtn svg:last-child,
#playBtn:hover svg:first-child {
    display: none;
}

#playBtn:hover {
    background: #fff;
    opacity: 1;
}

#playBtn:hover svg:last-child {
    display: block;
    margin-left: 0.3vw;
}

#playBtn:hover path {
    fill: #6d3c4f;
}

.media .video_block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media .content {
    margin-top: -0.7vw;
    width: 55%;
    color: rgba(255, 255, 255, 0.89);
    font-family: "OpenSans-R";
    padding-left: 5%;
}

.media .h1 {
    font-family: "PlayfairDisplay-R";
    font-size: 2.8vw;
    color: #fff
}

.media .h2 {
    font-size: 1.35vw;
    margin: 0.9vw 0 2.5vw;
    max-width: 93%;
}

.media .h3 {
    text-transform: uppercase;
    font-size: 1.4vw;
}

.row_images {
    display: flex;
    align-items: center;
    width: 85%;
    margin: 1.5vw 0 3vw;
    justify-content: space-between;
}

.content .row_images img {
    height: 6vw;
    width: auto;
}

.other_practise {
    padding: 5vw 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../images/back2.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.other_practise .control_part {
    width: 22%;
}

.other_practise .bullets_columns {
    width: 66%;
    padding: 0 7%;
    display: flex;
    justify-content: flex-start;
    font-family: "PlayfairDisplay-R";
}

.bullets_columns .column {
    display: flex;
    width: 36%;
    margin-right: 16%;
    flex-direction: column;
}

.bullets_columns .column:last-child {
    margin-right: 0;
}

.other_practise .bullet {
    margin: 0.7vw 0 1vw;
    font-size: 1.3vw;
    width: 100%;
    padding-bottom: 1.8vw;
    border-bottom: 0.15vw dashed #93556a;
}

.contact {
    color: #fff;
    text-align: center;
    padding: 5vw 0 4vw;
    background: url('../images/back3.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.contact .h2 {
    font-family: "Raleway-L";
    font-size: 1.6vw;
    color: rgba(255, 255, 255, 0.89);
}

.contact .h1 {
    font-family: "PlayfairDisplay-R";
    margin: 2.1vw 0 1.4vw;
    color: rgba(255, 255, 255, 0.89);
    font-size: 1.6vw;
    line-height: 1.6;
}

.contact .button_row {
    display: flex;
    width: 100%;
    font-size: 1.7vw;
    align-items: center;
    justify-content: center;
}

.contact .btn {
    padding-right: 2.6vw;
    padding-left: 2.3vw;
}

.contact .btn svg {
    margin-right: 1vw;
}

.contact .button_row span {
    font-family: "Raleway-E";
    margin: 0 0.9vw;
}

.contact .button_row div {
    font-family: "Raleway-L";
}

.testimonials {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6vw 0;
}

.testimonials .img_part {
    width: 30%;
}

.testimonials .img_part img {
    width: 100%;
}

.testimonials .content {
    width: 36%;
    padding-left: 4%;
}

.testimonials .h1 {
    font-family: "PlayfairDisplay-R";
    color: #93556a;
    font-size: 2.4vw;
    line-height: 1;
}

.testimonials .description {
    font-family: "OpenSans-R";
    margin: 1.2vw 0;
    font-size: 1.1vw;
}

.testimonials .author {
    font-size: 1.1vw;
    font-family: "Raleway-E";
}


body.inactive .practise_area,
body.inactive .hero,
body.inactive .publications {
    background: #5c3242;
}

/*
body.inactive .slider_part::before {
    background: linear-gradient(to right, #5c3242, hsla(0, 0%, 100%, 0));
    background: -moz-linear-gradient(to right,
            #5c3242,
            hsla(0, 0%, 100%, 0));
    background: -webkit-linear-gradient(to right,
            #5c3242,
            hsla(0, 0%, 100%, 0));
    background: -o-linear-gradient(to right,
            #5c3242,
            hsla(0, 0%, 100%, 0));
}

body.inactive .slider_part::after {
    background: linear-gradient(to left, #5c3242, hsla(0, 0%, 100%, 0));
    background: -moz-linear-gradient(to left,
            #5c3242,
            hsla(0, 0%, 100%, 0));
    background: -webkit-linear-gradient(to left,
            #5c3242,
            hsla(0, 0%, 100%, 0));
    background: -o-linear-gradient(to left,
            #5c3242,
            hsla(0, 0%, 100%, 0));
}*/


body.inactive .card_slider .title,
body.inactive .control_part .title,
body.inactive .card_slider .description {
    color: #fff;
}

body.inactive .control_part .title:hover {
    opacity: 0.7;
    color: #fff;
}

body.inactive .controls button.slick-prev {
    right: unset;
    left: 2vw;
    background-image: url(../images/prev_arrow_wh.png);
    background-position-x: right;
}

body.inactive .controls button.slick-next {
    left: unset;
    background-image: url(../images/next_arrow_wh.png);
    right: 0;
    background-position-x: left;
}


@media(min-width:2000px) {

    .hero .text_block {
        transform: translateX(50%);
        right: 30%;
    }

    .hero .h1 {
        font-size: 110px;
    }

    .hero .h3 {
        margin: -15px 0 30px;
        font-size: 68px;
    }

    .hero .description {
        font-size: 29.4px;
    }

    .practise_area {
        padding: 100px 0;
        justify-content: center;
    }

    .control_part {
        width: 480px;
        font-size: 54px;
    }

    .control_part .controls {
        margin-top: 40px;
        width: 100px;
    }

    .slider_part {
        width: 1200px;
        margin-left: 100px;
    }

    .slider_part .slick-slide {
        margin: 0 40px;
    }

    .controls button.slick-prev {
        left: 40px;
    }

    .card_slider .title {
        font-size: 28px;
        margin: 20px 0;
    }

    .card_slider .description {
        font-size: 21px;
    }

    .about_me {
        padding: 180px 160px 120px 260px;
    }

    .about_me .img_holder {
        width: 500px;
    }

    .about_me .text_part {
        padding-left: 90px;
    }

    .about_me .h1 {
        font-size: 54px;
        margin: 14px 0 10px;
    }

    .about_me .h4 {
        font-size: 24px;
        max-width: 800px;
    }

    .about_me .h3 {
        font-size: 27px;
    }

    .publications {
        padding: 160px 0vw 140px;
        justify-content: center;
    }

    .publications .control_part {
        width: 324px;
    }

    .publications .controls {
        margin-top: 100px;
    }

    .publications .slider_part {
        width: 1220px;
        margin-left: 100px;
    }

    .publications .slider_part .slick-slide {
        width: 30%;
        margin: 0 20px;
    }

    .publications .slick-slide .hidden_part {
        padding: 100px 20px 26px 90px;
        font-size: 34px;
    }

    .media {
        padding: 80px 80px;
    }

    .media .video_block {
        width: 900px;
    }

    #placeholderMedia {
        padding: 8px;
        height: 580px;
    }

    #playBtn {
        width: 120px;
        border-radius: 8px;
        height: 100px;
    }

    #playBtn svg {
        margin-left: 10px;
    }

    #playBtn:hover svg:last-child {
        margin-left: 6px;
    }

    .media .content {
        margin-top: -14px;
        width: 1100px;
        padding-left: 100px;
    }

    .media .h1 {
        font-size: 56px;
    }

    .media .h2 {
        font-size: 27px;
        margin: 18px 0 50px;
        max-width: 93%;
    }

    .media .h3 {
        font-size: 28px;
    }

    .row_images {
        margin: 30px 0 60px;
    }

    .content .row_images img {
        height: 120px;
    }

    .other_practise {
        padding: 100px 0;
    }

    .other_practise .control_part {
        width: 440px;
    }

    .other_practise .bullets_columns {
        width: 1320px;
        padding: 0 140px;
    }

    .other_practise .bullet {
        margin: 14px 0 20px;
        font-size: 26px;
        padding-bottom: 36px;
        border-bottom: 3px dashed #93556a;
    }

    .contact {
        padding: 100px 0 80px;
    }

    .contact .h2 {
        font-size: 32px;
    }

    .contact .h1 {
        margin: 42px 0 28px;
        font-size: 32px;
    }

    .contact .button_row {
        font-size: 1.7vw;
    }

    .contact .btn {
        padding-right: 52px;
        padding-left: 56px;
    }

    .contact .btn svg {
        margin-right: 20px;
    }

    .contact .button_row span {
        margin: 0 18px;
    }

    .testimonials {
        padding: 120px 0;
    }

    .testimonials .img_part {
        width: 600px;
    }

    .testimonials .content {
        width: 720px;
        padding-left: 80px;
    }

    .testimonials .h1 {
        font-size: 48px;
    }

    .testimonials .description {
        margin: 24px 0;
        font-size: 22px;
    }

    .testimonials .author {
        font-size: 22px;
    }

    body.inactive .controls button.slick-prev {
        left: 40px;
    }
}


@media(max-width:1024px) {
    .hero {
        margin-top: ;
    }

    .hero img {
        margin-top: -60px;
    }

    .hero .text_block {
        transform: translateX(50%);
        right: 30%;
        top: 20%;
    }

    .hero .h1 {
        font-size: 7vw;
    }

    .hero .h3 {
        margin: -0.2vw 0 5px;
        font-size: 5vw;
    }

    .hero .description {
        font-size: 2.1vw;
        max-width: 500px;
    }

    .practise_area {
        padding: 7vw 0;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .practise_area .control_part {
        width: 100%;
        font-size: 7vw;
    }

    .practise_area .control_part .title {
        width: 100%;
        text-align: center;
    }

    .practise_area .control_part .title br {
        display: none;
    }

    .control_part .controls {
        margin-top: 10px;
        width: 20px;
    }

    .slider_part {
        width: 100%;
        margin-top: 3.5vw;
    }

    .slider_part .slick-slide {
        margin: 0 2vw;
    }

    .controls button.slick-prev {
        left: 4px;
    }

    .card_slider {
        display: flex !important;
        flex-direction: column;
        align-items: center;
    }

    .card_slider .title {
        font-size: 3vw;
        margin: 1.5vw 0 0.8vw;
        text-align: center;
    }


    .card_slider .description {
        font-size: 2vw;
        text-align: center;
    }

    .about_me {
        padding: 5vw 10vw;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .about_me .img_holder {
        width: 30vw;
    }

    .about_me .text_part {
        padding-left: 25px;
    }

    .about_me .h1 {
        font-size: 3.7vw;
        margin: 0.9vw 0 0.7vw;
    }

    .about_me .h4 {
        font-size: 1.8vw;
        max-width: 400px;
    }

    .about_me .h3 {
        font-size: 1.9vw;
    }

    .publications {
        padding: 8.5vw 0vw;
        justify-content: center;
        flex-direction: column;
        padding-bottom: 10vw;
    }

    .publications .control_part {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: center;
    }

    .publications .control_part .title {
        font-size: 6vw;
        margin-bottom: 3vw;
    }

    .publications .controls {
        display: none;
    }

    .publications .slider_part {
        margin-top: 4vw;
        width: 100%;
    }


    .publications .slider_part .slick-slide {
        width: 30%;
        margin: 0 ;
    }

    .publications .card_slider img {
        width: 80%;
    }

    .publications .slick-slide .hidden_part {
        padding: 25px 5px 6px 22px;
        font-size: 8px;

        display: none;
    }

    .media {
        padding: 8vw 10vw;

        flex-direction: column;
    }

    .media .video_block {
        width: 100%;

        margin-bottom: 5vw;
    }

    #placeholderMedia {
        padding: 8px;
        height: 50vw;
        display: flex;
        align-items: center;
    }

    #playBtn {
        width: 13vw;
        border-radius: 15%;
        height: 11vw;
    }

    #playBtn svg {
        margin-left: 2px;
    }

    #playBtn:hover svg:last-child {
        margin-left: 6px;
    }

    .media .content {
        margin-top: -14px;
        width: 100%;
        padding-left: 25px;

        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .media .h1 {
        font-size: 4vw;
    }

    .media .h2 {
        font-size: 2.7vw;
        margin: 4.5px 0 10px;
        max-width: 93%;
        text-align: center;
    }

    .media .h3 {
        font-size: 2.5vw;
    }

    .row_images {
        width: 50%;
        justify-content: center;
    }

    .content .row_images img {
        height: 60px;
        margin: 0 3vw;
    }

    .other_practise {
        padding: 5vw 0;
        display: flex;
        flex-direction: column;
    }

    .other_practise .control_part {
        width: 100%;
        display: flex;
        align-items: center;
    }
    .other_practise .control_part .title {
        font-size: 6vw;
    }

    .other_practise .control_part br {
        display: none;
    }

    .other_practise .bullets_columns {
        width: 330px;
        padding: 2.7vw 0 0;
        width: 80%;
    }

    .other_practise .bullets_columns .column {
        margin: 0 5vw 0;
    }

    .other_practise .bullet {
        margin: 3px 0 5px;
        font-size: 2.7vw;
        padding-bottom: 9px;
        border-bottom: 3px dashed #93556a;
    }

    .contact {
        padding: 5vw 0;
    }

    .contact .h2 {
        font-size: 4.2vw;
        padding: 0 3vw;
    }

    .contact .h1 {
        margin: 2vw 0 1.7vw;
        font-size: 2.7vw;
    }

    .contact .button_row {
        font-size: 3vw;
    }

    .contact .button_row span {
        margin: 0 1.5vw;
    }

    .testimonials {
        padding: 5vw 0;

        display: flex;
        flex-direction: column;
    }

    .testimonials .img_part {
        width: 70%;
        margin-bottom: 5vw;
    }

    .testimonials .content {
        width: 70%;
        padding-left: 0;
        text-align: center;
    }

    .testimonials .h1 {
        font-size: 5vw;
    }

    .testimonials .description {
        margin: 1.5vw 0;
        font-size: 2.7vw;
    }

    .testimonials .author {
        font-size: 3vw;
    }

    body.inactive .controls button.slick-prev {
        left: 10px;
    }
}

@media(max-width: 768px) {

    .hero img {
        margin-top: -60px;
    }

    .hero .text_block {
        transform: translateX(50%);
        right: 30%;
        top: 13%;
    }

    .hero .h1 {
        font-size: 7vw;
    }

    .hero .h3 {
        margin: -0.2vw 0 5px;
        font-size: 5vw;
    }

    .hero .description {
        font-size: 2.1vw;
        max-width: 500px;
    }

    .practise_area {
        padding: 7vw 0;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .practise_area .control_part {
        width: 100%;
        font-size: 7vw;
    }

    .practise_area .control_part .title {
        width: 100%;
        text-align: center;
    }

    .practise_area .control_part .title br {
        display: none;
    }

    .control_part .controls {
        margin-top: 10px;
        width: 20px;
    }

    .slider_part {
        width: 100%;
        margin-top: 3.5vw;
    }

    .slider_part .slick-slide {
        margin: 0 2vw;
    }

    .controls button.slick-prev {
        left: 4px;
    }

    .card_slider {
        display: flex !important;
        flex-direction: column;
        align-items: center;
    }

    .card_slider .title {
        font-size: 3vw;
        margin: 1.5vw 0 0.8vw;
        text-align: center;
    }


    .card_slider .description {
        font-size: 2.5vw;
        text-align: center;
    }

    .about_me {
        padding: 5vw 10vw;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .about_me .img_holder {
        width: 30vw;
    }

    .about_me .text_part {
        padding-left: 25px;
    }

    .about_me .h1 {
        font-size: 3.7vw;
        margin: 0.9vw 0 0.7vw;
    }

    .about_me .h4 {
        font-size: 2.1vw;
        max-width: 400px;
    }

    .about_me .h3 {
        font-size: 2.1vw;
    }

    .publications {
        padding: 8.5vw 0vw;
        justify-content: center;
        flex-direction: column;
        padding-bottom: 10vw;
    }

    .publications .control_part {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: center;
    }

    .publications .control_part .title {
        font-size: 6vw;
        margin-bottom: 3vw;
    }

    .publications .controls {
        display: none;
    }

    .publications .slider_part {
        margin-top: 4vw;
        width: 100%;
    }


    .publications .slider_part .slick-slide {
        width: 30%;
        margin: 0 ;
    }

    .publications .card_slider img {
        width: 80%;
    }

    .publications .slick-slide .hidden_part {
        padding: 25px 5px 6px 22px;
        font-size: 8px;

        display: none;
    }

    .media {
        padding: 8vw 10vw;

        flex-direction: column;
    }

    .media .video_block {
        width: 100%;

        margin-bottom: 5vw;
    }

    #placeholderMedia {
        padding: 8px;
        height: 50vw;
        display: flex;
        align-items: center;
    }

    #playBtn {
        width: 13vw;
        border-radius: 15%;
        height: 11vw;
    }

    #playBtn svg {
        margin-left: 2px;
    }

    #playBtn:hover svg:last-child {
        margin-left: 6px;
    }

    .media .content {
        margin-top: -14px;
        width: 100%;
        padding-left: 25px;

        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .media .h1 {
        font-size: 4vw;
    }

    .media .h2 {
        font-size: 2.7vw;
        margin: 4.5px 0 10px;
        max-width: 93%;
        text-align: center;
    }

    .media .h3 {
        font-size: 2.5vw;
    }

    .row_images {
        width: 50%;
        justify-content: center;
    }

    .content .row_images img {
        height: 60px;
        margin: 0 3vw;
    }

    .other_practise {
        padding: 5vw 0;
        display: flex;
        flex-direction: column;
    }

    .other_practise .control_part {
        width: 100%;
        display: flex;
        align-items: center;
    }
    .other_practise .control_part .title {
        font-size: 6vw;
    }

    .other_practise .control_part br {
        display: none;
    }

    .other_practise .bullets_columns {
        width: 330px;
        padding: 2.7vw 0 0;
        width: 80%;
    }

    .other_practise .bullets_columns .column {
        margin: 0 5vw 0;
    }

    .other_practise .bullet {
        margin: 3px 0 5px;
        font-size: 2.7vw;
        padding-bottom: 9px;
        border-bottom: 1px dashed #93556a;
    }

    .contact {
        padding: 5vw 0;
    }

    .contact .h2 {
        font-size: 4.2vw;
        padding: 0 3vw;
    }

    .contact .h1 {
        margin: 2vw 0 1.7vw;
        font-size: 2.7vw;
    }

    .contact .button_row {
        font-size: 3.2vw;
    }

    .contact .button_row span {
        margin: 0 1.5vw;
    }

    .testimonials {
        padding: 5vw 0;

        display: flex;
        flex-direction: column;
    }

    .testimonials .img_part {
        width: 70%;
        margin-bottom: 5vw;
    }

    .testimonials .content {
        width: 70%;
        padding-left: 0;
        text-align: center;
    }

    .testimonials .h1 {
        font-size: 5vw;
    }

    .testimonials .description {
        margin: 1.5vw 0;
        font-size: 2.7vw;
        text-align: justify;
    }

    .testimonials .author {
        font-size: 3vw;
    }

    body.inactive .controls button.slick-prev {
        left: 10px;
    }
}

@media screen and (max-width: 600px) {
    #header .links_part a {
        font-size: 4.5vw;
    }

    .hero {
        background-image: url('../images/hero-mob.jpg');
        /* background-size: cover; */
        background-size: 100% auto;
        background-repeat: no-repeat;
        /* padding: 6vw; */
        display: flex;
        justify-content: center;
        align-items: center;
        height: 134vw;
    }

    .hero .hero-desk-img {
        display: none;
    }

    .hero .text_block {
        position: relative;
        transform: none;
        right: 0;
        top: 22%;
        display: flex;
        flex-direction: column;
        align-items: center;
        z-index: 1000;
        background: rgba(92, 50, 66, 0.8);
        padding: 4vw;
        width: 85%;
    }


    .hero .h1 {
        font-size: 10vw;
        margin-bottom: -1vw;
    }

    .hero .h3 {
        margin-bottom: 2vw;
        margin-top: 2.5vw;
        font-size: 6vw;
        text-align: center;
    }

    .hero .description {
        font-size: 3.7vw;
        text-align: center;
        max-width: 80%;
    }

    .hero .description br {
        display: none;
    }

    .practise_area {
        padding: 7vw 0;
        padding-top: 6vw;
        justify-content: center;
        flex-direction: column;
        z-index: -10000;
        align-items: center;
    }

    .practise_area .control_part {
        width: 100%;
        font-size: 7vw;
    }

    .practise_area .control_part .title {
        width: 100%;
        text-align: center;
    }

    .practise_area .control_part .title br {
        display: none;
    }

    .publications .card_slider img {
        width: 55vw;
    }

    .control_part .controls {
        margin-top: 10px;
        width: 20px;
    }

    .slider_part {
        width: 100%;
        margin-top: 3.5vw;
    }

    .slider_part .slick-slide {
        margin: 0 3.5vw;
    }

    .controls button.slick-prev {
        left: 4px;
    }

    .card_slider {
        display: flex !important;
        flex-direction: column;
        align-items: center;
    }

    #slider1 .card_slider img {
        height: 12vw;
    }

    .card_slider .title {
        font-size: 5vw;
        margin: 2vw 0 0.8vw;
        text-align: center;
        line-height: 1.1;
    }


    .card_slider .description {
        margin-top: 1vw;
        font-size: 3.7vw;
        text-align: center;
    }

    .about_me {
        padding: 10vw 10vw;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .about_me .img_holder {
        width: 60vw;
    }

    .about_me .text_part {
        width: 85vw;
        margin-top: 3vw;
        padding-left: 0;
        display: flex;
        flex-direction: column;
        align-items: center;

        text-align: center;
    }

    .about_me .h1 {
        font-size: 7vw;
        margin: 1.5vw 0 1.3vw;

    }

    .about_me .h4 {
        font-size: 3.7vw;
        max-width: unset;
    }

    .about_me .h3 {
        font-size: 4vw;
    }

    .publications {
        padding: 14vw 0vw;
        justify-content: center;
        flex-direction: column;
    }

    .publications .control_part {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: center;

    }

    .publications .control_part .title {
        font-size: 7vw;
        margin-bottom: 1vw;
    }

    .publications .controls {
        display: none;
    }

    .publications .slider_part {
        margin-top: 6vw;
        width: 100%;
    }


    .publications .slider_part .slick-slide {
        width: 30%;
        margin: 0 2vw;
    }

    .publications .slick-slide .hidden_part {
        padding: 25px 5px 6px 22px;
        font-size: 8px;
    }

    .media {
        padding: 8vw 10vw;
        display: flex;
        flex-direction: column;
        padding-bottom: 12vw;
    }

    .media .video_block {
        width: 84vw;
        margin: 0 12vw;
    }

    #placeholderMedia {
        padding: 8px;
        height: 46vw;
        display: flex;
        align-items: center;
    }

    #playBtn {
        width: 15vw;
        border-radius: 15%;
        height: 12vw;
    }

    #playBtn svg {
        margin-left: 2px;
    }

    #playBtn:hover svg:last-child {
        margin-left: 6px;
    }

    .media .content {
        margin-top: 4vw;
        width: 85vw;
        padding-left: 0;

        display: flex;
        flex-direction: column;
        align-items: center;

        text-align: center;
    }

    .media .h1 {
        font-size: 7vw;
    }

    .media .h2 {
        font-size: 4vw;
        margin: 4.5px 0 10px;
        max-width: 93%;

    }

    .media .h3 {
        font-size: 3vw;
    }

    .row_images {
        margin: 3vw 0 5vw;
        width: 100%;
        justify-content: center;
    }

    .content .row_images img {
        height: 40px;
        margin: 0 3vw;
    }

    .other_practise {
        padding: 10vw 0;
        display: flex;
        flex-direction: column;
    }

    .other_practise .control_part {
        width: 100%;
        display: flex;
        align-items: center;

    }

    .other_practise .control_part .title {
        font-size: 7vw;
    }


    .other_practise .control_part br {
        display: none;
    }

    .other_practise .bullets_columns {
        width: 330px;
        padding: 2.7vw 0 0;
        width: 80%;

        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .other_practise .bullets_columns .column {
        margin: 0 5vw 0;
        width: 100%;
    }

    .other_practise .bullet {
        margin: 3px 0 5px;
        font-size: 4.5vw;
        padding-bottom: 9px;
        border-bottom: 3px dashed #93556a;
        text-align: center;
    }

    .contact {
        padding: 12vw 0;
    }

    .contact .h2 {
        font-size: 6vw;
        padding: 0 3vw;
    }

    .contact .h1 {
        margin: 2vw 0 1.7vw;
        font-size: 3.7vw;
    }

    .contact .button_row {
        font-size: 4.5vw;
    }

    .contact .button_row span {
        margin: 0 1.5vw;
    }

    .testimonials {
        padding: 12vw 0;
        flex-direction: column;
    }

    .testimonials .img_part {
        width: 60%;

    }

    .testimonials .content {
        width: 75%;
        padding-left: 0;

        display: flex;
        flex-direction: column;
        align-items: center;

        text-align: center;

        margin-top: 4vw;
    }

    .testimonials .h1 {
        font-size: 7vw;
    }

    .testimonials .h1 br {
        display: none;
    }

    .testimonials .description {
        margin: 1.5vw 0;
        font-size: 3.7vw;
        line-height: 1.2;
    }

    .testimonials .author {
        font-size: 3.8vw;
    }

    body.inactive .controls button.slick-prev {
        left: 10px;
    }

    .contact .btn {
        padding: 2vw 4vw;
    }
}   