/* Webfont: UniSansHeavyCAPS */
@font-face {
    font-family: 'UniSansHeavyCAPS';
    src: url('../fonts/UniSansHeavyCAPS.eot');
    src: url('../fonts/UniSansHeavyCAPS.eot?#iefix') format('embedded-opentype'), url('../fonts/UniSansHeavyCAPS.woff') format('woff'), url('../fonts/UniSansHeavyCAPS.ttf') format('truetype');
    font-style: normal;
    font-weight: 900;
    text-rendering: optimizeLegibility;
}   

/* Webfont: UniSansHeavy */
@font-face {
    font-family: 'UniSans';
    src: url('../fonts/UniSansHeavy.eot');
    src: url('../fonts/UniSansHeavy.eot?#iefix') format('embedded-opentype'), url('../fonts/UniSansHeavy.woff') format('woff'), url('../fonts/UniSansHeavy.ttf') format('truetype');
    font-style: normal;
    font-weight: 900;
    text-rendering: optimizeLegibility;
}

/* Webfont: UniSansThin */
@font-face {
    font-family: 'UniSans';
    src: url('../fonts/UniSansThin.eot');
    src: url('../fonts/UniSansThin.eot?#iefix') format('embedded-opentype'), url('../fonts/UniSansThin.woff') format('woff'), url('../fonts/UniSansThin.ttf') format('truetype');
    font-style: normal;
    font-weight: 100;
    text-rendering: optimizeLegibility;
}

/* Webfont: UniSansThin */
@font-face {
    font-family: 'UniSans';
    src: url('../fonts/UniSansLight.eot');
    src: url('../fonts/UniSansLight.eot?#iefix') format('embedded-opentype'), url('../fonts/UniSansLight.woff') format('woff'), url('../fonts/UniSansLight.ttf') format('truetype');
    font-style: normal;
    font-weight: 300;
    text-rendering: optimizeLegibility;
}

/* Webfont: UniSansBook */
@font-face {
    font-family: 'UniSansBook';
    src: url('../fonts/UniSansBook.eot');
    src: url('../fonts/UniSansBook.eot?#iefix') format('embedded-opentype'), url('../fonts/UniSansBook.woff') format('woff'), url('../fonts/UniSansBook.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    text-rendering: optimizeLegibility;
}

/* Webfont: LatoRegular */
@font-face {
    font-family: 'Lato';
    src: url('../fonts/LatoRegular.eot');
    src: url('../fonts/LatoRegular.eot?#iefix') format('embedded-opentype'), url('../fonts/LatoRegular.woff') format('woff'), url('../fonts/LatoRegular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    text-rendering: optimizeLegibility;
}

/* Webfont: Avenir-Black  
@font-face {
    font-family: 'Avenir';
    src: url('../fonts/Avenir-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    text-rendering: optimizeLegibility;
}
*/


* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.24;
    font-family: 'UniSans', sans-serif;
}

body.loading {
    position: relative;
    background-color: #000;
    overflow: hidden;
}

body.loading:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    z-index: 100;
    background-color: #000;
    position: absolute;
}

body.loading .loader-circle {
    position: fixed;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    border-radius: 50%;
    z-index: 1000;
}

body.loading .loader-circle div {
    color: #ffffff;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 4px solid #ee4622;
    width: 0%;
    height: 0%;
    opacity: .9;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-animation: wave-stroke 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    animation: wave-stroke 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

body.loading .loader-circle div:nth-child(2) {
    -webkit-animation-delay: -0.5s;
    animation-delay: -0.5s;
}

@-webkit-keyframes wave-stroke {
    100% {
        width: 200%;
        height: 200%;
        border-color: transparent;
        opacity: 0;
    }
}

@keyframes wave-stroke {
    100% {
        width: 200%;
        height: 200%;
        border-color: transparent;
        opacity: 0;
    }
}

.none {
    display: none;
}

.fp-enabled {
    background-color: #000;
}

.header {
    position: fixed;
    top: 60px;
    left: 50px;
    z-index: 3;
}

.header-logo {
    width: 267px;
    transition: all .2s ease-out;
}

.menu-btn {
    position: fixed;
    top: 60px;
    right: 50px;
    z-index: 6;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.menu-btn span {
    display: block;
    width: 26px;
    height: 5px;
    background-color: #b3b3b3;
    margin-bottom: 4px;
    -webkit-transition: background-color 0.15s linear;
    -o-transition: background-color 0.15s linear;
    transition: background-color 0.15s linear;
}

.menu-btn:hover span {
    background-color: #ee4622;
    -webkit-transition: background-color 0.15s linear;
    -o-transition: background-color 0.15s linear;
    transition: background-color 0.15s linear;
}

.menu {
    z-index: 8 !important; 
    width: 745px;
    height: 100%;
    overflow-x: hidden;
    background-color: #000;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 5;
    padding-top: 60px;
    padding-bottom: 40px;
    padding-left: 70px;
    padding-right: 40px;
    opacity: 0;
    -webkit-transform: translate(100%, 0);
    -ms-transform: translate(100%, 0);
    transform: translate(100%, 0);
    -webkit-transition: opacity .15s linear, -webkit-transform .25s linear;
    transition: opacity .15s linear, -webkit-transform .25s linear;
    -o-transition: transform .25s linear, opacity .15s linear;
    transition: transform .25s linear, opacity .15s linear;
    transition: transform .25s linear, opacity .15s linear, -webkit-transform .25s linear;
}

.menu-language {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 20px;
    line-height: 1;
    font-weight: normal;
    font-family: 'UniSansBook';
}

.menu-language a {
    color: #ffffff;
}

.menu-language a.is-active {
    color: #ee4622;
}

.menu-language a:hover {
    text-decoration: underline;
}

.menu-language span {
    font-weight: bold;
    margin: 0 10px;
    color: #fff;
}

.menu ul {
    padding-top: 6.51041667vw;
}

.menu ul li {
    display: table;
    padding-bottom: 10px;
    margin-bottom: 30px;
    position: relative;
}

.menu ul li a {
    color: #fff;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 4.8px;
    line-height: 1.24;
    font-family: 'UniSansHeavyCAPS';
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.menu ul li .line {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 91px;
    height: 3px;
    overflow: hidden;
}

.menu ul li .line:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ee4622;
    opacity: 0;
    -webkit-transform: translate(-100%, 0);
    -ms-transform: translate(-100%, 0);
    transform: translate(-100%, 0);
    -webkit-transition: opacity .15s linear, -webkit-transform .25s linear;
    transition: opacity .15s linear, -webkit-transform .25s linear;
    -o-transition: transform .25s linear, opacity .15s linear;
    transition: transform .25s linear, opacity .15s linear;
    transition: transform .25s linear, opacity .15s linear, -webkit-transform .25s linear;
}

.menu ul li.is-active .line:before,
.menu ul li:hover .line:before {
    opacity: 1;
    -webkit-transform: translate(0%, 0);
    -ms-transform: translate(0%, 0);
    transform: translate(0%, 0);
    -webkit-transition: opacity .15s linear, -webkit-transform .25s linear;
    transition: opacity .15s linear, -webkit-transform .25s linear;
    -o-transition: transform .25s linear, opacity .15s linear;
    transition: transform .25s linear, opacity .15s linear;
    transition: transform .25s linear, opacity .15s linear, -webkit-transform .25s linear;
}

.main .section {
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.main .section canvas {
    display: block;
    position: absolute;
}

.main .slide-item__image {
    display: none;
}

.dark {
    background-color: #000;
    color: #fff;
}

.white {
    background-color: #fff;
}

.section-bx {
    position: absolute;
    bottom: 0;
    left: 0;
    padding-left: 27.34375vw;
    width: 100%;
    z-index: 2;
}

.section-tx {
    text-transform: uppercase;
}

.section-tx h2 {
    font-size: 72px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 24px;
    font-family: 'UniSansHeavyCAPS';
    margin-bottom: 24px;
}

.section-tx h3 {
    font-size: 18px;
    font-weight: 900;
    line-height: 1.6;
    letter-spacing: 9px;
    font-family: 'UniSansHeavyCAPS';
    margin-bottom: 30px;
}

.section-tx .t1 {
    color: #b3b3b3;
    font-size: 18px;
    font-weight: 100;
    line-height: 1.24;
    letter-spacing: 4.5px;
    font-family: 'UniSansBook';
    margin-bottom: 5px;
}

.section-tx .t2 {
    color: #b3b3b3;
    font-size: 10px;
    font-weight: 100;
    line-height: 2;
    letter-spacing: 2.5px;
    font-family: 'UniSansBook';
}

.section-tx .line {
    width: 230px;
    height: 3px;
    position: relative;
    margin-top: 30px;
    margin-bottom: 45px;
    overflow: hidden;
}

.scroll-downs {
    position: relative;
    width: 20px;
    height: 30px;
    margin-bottom: 20px;
}

.scroll-downs .mousey {
    width: 20px;
    padding: 4px 0 0 7px;
    height: 30px;
    border: 2px solid #fff;
    border-radius: 20px;
    opacity: 0.75;
}

.scroll-downs .scroller {
    width: 2px;
    height: 6px;
    border-radius: 25%;
    background-color: #fff;
    -webkit-animation-name: scroll;
    animation-name: scroll;
    -webkit-animation-duration: 2.2s;
    animation-duration: 2.2s;
    -webkit-animation-timing-function: cubic-bezier(0.15, 0.41, 0.69, 0.94);
    animation-timing-function: cubic-bezier(0.15, 0.41, 0.69, 0.94);
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.scroll-reverse {
    position: absolute;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    left: 36px;
    width: 170px;
    bottom: 62px;
}

.scroll-reverse-text {
    color: #737373;
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 28px;
    text-transform: uppercase;
}

.scroll-reverse-line {
    width: 170px;
    height: 3px;
    background-color: #737373;
}

@-webkit-keyframes scroll {
    0% {
        opacity: 0;
    }

    10% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateY(15px);
        transform: translateY(15px);
        opacity: 0;
    }
}

@keyframes scroll {
    0% {
        opacity: 0;
    }

    10% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateY(15px);
        transform: translateY(15px);
        opacity: 0;
    }
}

.section-scroll {
    padding-left: 90px;
    padding-bottom: 170px;
    position: relative;
}

.section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.section-bg img {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.section-anim {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: 0px 0px;
    -webkit-animation: animatedBackground 30s linear infinite;
    animation: animatedBackground 30s linear infinite;
}

.section__s1 .section-anim{
    -webkit-animation: animatedBackgroundLion 30s linear infinite;
    animation: animatedBackgroundLion 30s linear infinite;
}

@-webkit-keyframes animatedBackground {
    from {
        background-position: 0 0;
    }

    to {
        background-position: -100% 0;
    }
}

@keyframes animatedBackground {
    from {
        background-position: 0 0;
    }

    to {
        background-position: -100% 0;
    }
}

@-webkit-keyframes animatedBackgroundLion {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 100% 0;
    }
}

@keyframes animatedBackgroundLion {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 100% 0;
    }
}

.tline {
    display: block;
    height: 3px;
    overflow: hidden;
    position: relative;
}

.tline:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ee4622;
    opacity: 0;
    -webkit-transform: translate(-100%, 0);
    -ms-transform: translate(-100%, 0);
    transform: translate(-100%, 0);
}

.social {
    position: fixed;
    top: 0;
    right: 56px;
    width: 18px;
    z-index: 3;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.social ul {
    margin: auto 0;
}

.social ul li {
    width: 18px;
    padding: 20px 0;
}

.social ul li path {
    -webkit-transition: fill .15s linear;
    -o-transition: fill .15s linear;
    transition: fill .15s linear;
}

.social ul li a:hover path {
    fill: #ee4622;
    -webkit-transition: fill .15s linear;
    -o-transition: fill .15s linear;
    transition: fill .15s linear;
}

body.menu-open {
    overflow: hidden;
}

body.menu-open:before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    background-color: rgba(255, 66, 0, 0.36);
}

body.menu-open #full-page {
    pointer-events: none;
}

body.menu-open .menu {
    opacity: 1;
    -webkit-transform: translate(0%, 0);
    -ms-transform: translate(0%, 0);
    transform: translate(0%, 0);
    -webkit-transition: opacity .15s linear, -webkit-transform .25s linear;
    transition: opacity .15s linear, -webkit-transform .25s linear;
    -o-transition: transform .25s linear, opacity .15s linear;
    transition: transform .25s linear, opacity .15s linear;
    transition: transform .25s linear, opacity .15s linear, -webkit-transform .25s linear;
}

body.menu-open .menu-btn span {
    background-color: #ee4622;
}

body.menu-open .section-anim {
    -webkit-animation-name: none;
    animation-name: none;
}


.dots ul {
    margin: auto 0;
}

.dots ul li {
    margin-bottom: 25px;
}

.dots ul li span {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #737373;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: block;
}

.dots ul li:after {
    content: '';
    width: 3px;
    height: 0;
    background-color: #fff;
    display: block;
    margin: 25px auto;
    -webkit-transition: .25s linear;
    -o-transition: .25s linear;
    transition: .25s linear;
}

.dots ul li.is-active span {
    background-color: #fff;
}

.dots ul li.is-active:after {
    height: 100px;
    -webkit-transition: .25s linear;
    -o-transition: .25s linear;
    transition: .25s linear;
}

.dots ul li:last-child {
    margin-bottom: 0;
}

.dots ul li:last-child:after {
    display: none;
    -webkit-transition: 0s linear;
    -o-transition: 0s linear;
    transition: 0s linear;
}

.dots ul li:last-child:before {
    content: '';
    width: 3px;
    height: 0;
    background-color: #fff;
    display: block;
    margin: 25px auto;
    -webkit-transition: .25s linear;
    -o-transition: .25s linear;
    transition: .25s linear;
}

.dots ul li.is-active:last-child:before {
    height: 100px;
    -webkit-transition: .25s linear;
    -o-transition: .25s linear;
    transition: .25s linear;
}

.section__s1.fp-completely .section-anim {
    background-image: url(../img/conf.png);
}

.section__s2.fp-completely .section-anim {
    background-size: cover;
    background-image: url(../img/cloud.png);
}

.fp-viewing-3.is_main .header-logo,
.fp-viewing-4.is_main .header-logo {
    transform: translate3d(-80%, -300%, 0);
    transform-style: preserve-3d;
}

.team .ct {
    max-width: 1100px;
    margin: auto;
    position: relative;
}

.team .tl {
    /* position: absolute;
    top: -5px;
    left: 0; */
    padding-top: 40px;
    margin-left: -65px;
}

.team .tl h2 {
    color: #fff;
    font-size: 42px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 7px;
    
    margin-bottom: 25px;
}

.team .tl .tline {
    width: 140px;
}

.team-cont {
    width: 753px;
    margin: 45px auto;
    height: calc(100vh - 120px);
    height: -o-calc(100vh - 120px);
}

.team-cont ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: auto;
    padding-bottom: 30px;
}

.team-cont ul li {
    width: 201px;
    margin: 0 25px 25px 25px;
}

.team-cont figure {
    display: block;
    width: 201px;
    height: 218px;
    position: relative;
}

.team-cont figure img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-position: center;
    object-position: center;
    -o-object-fit: cover;
    object-fit: cover;
}

.team-cont a {
    color: #fff;
}

.team-cont .tx p {
    padding-top: 8px;
    font-size: 10px;
    font-weight: 900;
    line-height: 1.24;
    letter-spacing: 2px;
    font-family: 'UniSansHeavyCAPS';
}

.team-cont .mCSB_outside + .mCSB_scrollTools {
    right: -10px;
}

.not_main .dots ul li:before,
.not_main .dots ul li:after {
    background-color: #737373;
}

.not_main .dots ul li.is-active span {
    background-color: #000;
}

.exp .ct {
    height: 100vh;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    max-width: 1100px;
    margin: auto;
}

.exp .mid {
    margin: auto 0;
}

.exp .tl {
    margin-bottom: 5.20833333vw;
}

.exp .tl h2 {
    color: #333333;
    font-size: 42px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 4px;
    font-family: 'UniSansHeavyCAPS';
    margin-bottom: 4px;
}

.exp .tl .tline {
    width: 400px;
}

.exp .df {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.exp .pic {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    position: relative;
    margin-right: 100px;
    /*
        &:before {
            content: '';
            display: block;
            width: 100px;
            height: 3px;
            background-color: @or;
            position: absolute;
            top: 50%;
            margin-top: -2px;
            right: -40px;
        }
        */
}

.exp .pic img {
    display: block;
    height: 20.72916667vw;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.exp .tx {
    height: 20.72916667vw;
}

.exp .tx p {
    color: #999999;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: .7px;
    font-family: 'Lato';
}

.exp .tx .mCS-dark-thick.mCSB_scrollTools .mCSB_draggerRail,
.exp .tx .mCS-light-thick.mCSB_scrollTools .mCSB_draggerRail {
    background-color: rgba(0, 0, 0, 0.1);
}

.exp .tx .mCS-dark-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.exp .tx .mCS-light-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: rgba(50, 50, 50, 0.75);
}

/*

@media (max-width: 1640px) {
    .team {
        .ct {
            margin: 0;
        }
    }
    .exp {
        .ct {
            .vw(1100px; width);
            max-width: none;
            margin: 0;
        }
    }
}
*/
@media (max-width: 1400px) {
    .header {
        top: 45px;
    }

    .menu-btn {
        top: 45px;
    }

    .menu {
        padding-top: 45px;
    }
}

.dots {
    display: none;
}

@media (min-width: 1101px) {
    .opacity {
        opacity: 0;
        -webkit-transition: opacity .15s linear;
        -o-transition: opacity .15s linear;
        transition: opacity .15s linear;
    }

    .fp-completely .opacity {
        opacity: 1;
        -webkit-transition: opacity .15s linear;
        -o-transition: opacity .15s linear;
        transition: opacity .15s linear;
    }

    .fp-completely .tline:before {
        opacity: 1;
        -webkit-transform: translate(0%, 0);
        -ms-transform: translate(0%, 0);
        transform: translate(0%, 0);
        -webkit-transition: opacity .15s linear, -webkit-transform .45s linear;
        transition: opacity .15s linear, -webkit-transform .45s linear;
        -o-transition: transform .45s linear, opacity .15s linear;
        transition: transform .45s linear, opacity .15s linear;
        transition: transform .45s linear, opacity .15s linear, -webkit-transform .45s linear;
    }
    .dots {
        position: fixed;
        z-index: 3;
        top: 0;
        left: 65px;
        height: 100%;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }

}

@media screen and (min-width: 1101px) and (max-height: 750px) {
    .menu {
        padding-top: 7vw;
    }

    .section-bx {
        padding-left: 17vw;
        padding-bottom: 25px;
    }

    .section-tx .line {
        margin-bottom: 25px;
    }

    .section-scroll {
        padding-bottom: 0;
        padding-left: 95px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .scroll-downs {
        margin-bottom: 0;
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        margin-right: 25px;
    }

    .scroll-reverse {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
        position: static;
    }

    .scroll-reverse-text {
        margin-bottom: 0;
    }

    .scroll-reverse-line {
        display: none;
    }

    .dots {
        padding-top: 80px;
    }

    .dots ul li.is-active:after {
        height: 50px;
    }

    .dots ul li.is-active:last-child:before {
        height: 50px;
    }
}

.specialization {
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-image: url(../img/specialization.jpg);
}

.specialization .section-bx {
    padding-left: 25vw;
    padding-bottom: 3.125vw;
}

.specialization .tl {
    margin-bottom: 4.94791667vw;
}

.specialization h2 {
    color: #f7f7f7;
    font-size: 42px;
    line-height: 1.24;
    letter-spacing: 16.8px;
    font-weight: normal;
    font-family: 'UniSansHeavyCAPS';
    margin-bottom: 30px;
}

.specialization .tline {
    width: 400px;
}

@media (min-width: 1141px) {
    .specialization .accordion {
        width: 57.292vw;
    }
}

.specialization .t {
    color: #b3b3b3;
    font-size: 21px;
    line-height: 1.24;
    letter-spacing: 5.25px;
    font-weight: normal;
    font-family: 'UniSansHeavyCAPS';
    margin-bottom: 25px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.specialization .n {
    display: none;
    font-size: 14px;
    line-height: 1.24;
    letter-spacing: 3.5px;
    font-weight: normal;
    /* font-family: 'Avenir'; */
    text-transform: uppercase;
    padding-bottom: 25px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-family: 'UniSansHeavyCAPS';
}

.specialization .n a {
    color: #ee4622;
    line-height: 1.4;
    -webkit-transition: color .15s linear;
    -o-transition: color .15s linear;
    transition: color .15s linear;
    letter-spacing: 4px;
}

.specialization .n a:hover {
    color: #fff;
    -webkit-transition: color .15s linear;
    -o-transition: color .15s linear;
    transition: color .15s linear;
}

.specialization .tx {
    position: relative;
    display: inline-block;
}

.specialization .scroll-list {
    height: calc(100vh - 465px);
    height: -o-calc(100vh - 465px);
    min-height: 250px;
}

.contacts {
    background-size: cover;
    background-position: left top;
    background-repeat: no-repeat;
    background-image: url(../img/contacts.jpg);
}

.contacts .ct {
    max-width: 1180px;
    margin: auto;
    height: 100%;
    padding-top: 7.29166667vw;
}

.contacts .tl {
    margin-bottom: 9.375vw;
}

.contacts h2 {
    color: #f7f7f7;
    font-size: 42px;
    line-height: 1.24;
    letter-spacing: 16.8px;
    font-weight: normal;
    font-family: 'UniSansHeavyCAPS';
    margin-bottom: 30px;
}

.contacts .tline {
    width: 400px;
}

.contacts-list {
    padding-left: 40px;
}

.contacts-list li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contacts-list li figure {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    margin-right: 30px;
    margin-top: -2px;
}

.contacts-list li figure img {
    display: block;
    margin: auto;
}

.contacts-list li p {
    color: #b3b3b3;
    font-size: 16px;
    line-height: 1;
    letter-spacing: .8px;
    font-weight: normal;
    font-family: 'UniSansHeavyCAPS';
    margin-bottom: 10px;
}

.contacts-list li .t {
    color: #999999;
    font-size: 14px;
    line-height: 1.24;
    letter-spacing: .8px;
    font-weight: normal;
    font-family: 'UniSansBook';
    text-transform: uppercase;
}

.contacts .map {
    position: absolute;
    top: 0;
    right: 0;
    width: 56.25vw;
    height: 100%;
}

.contacts input,
.contacts textarea {
    background-color: #fff;
    border: 2px solid #ededed;
    margin: 0;
    padding: 0;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    color: #999999;
    font-size: 14px;
    line-height: 1.24;
    letter-spacing: .8px;
    font-weight: normal;
    font-family: 'UniSansBook';
    text-transform: uppercase;
}

.contacts ul li {
    margin-bottom: 30px;
}

.contacts ul li:last-child {
    margin-bottom: 0;
}

.contacts ul li.half {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.contacts ul li.half > div {
    width: 48%;
}

.contacts .form {
    background-color: #fff;
    width: 630px;
    height: 520px;
    position: absolute;
    bottom: 90px;
    z-index: 2;
    padding: 50px 70px 50px 70px;
    right: calc(56.25vw/2 - 315px);
    right: -o-calc(56.25vw/2 - 315px);
}

.contacts .form input {
    padding: 0 15px;
    height: 50px;
    line-height: 50px;
}

.contacts .form textarea {
    padding: 15px;
    height: 180px;
    resize: none;
}

.contacts .form .submit {
    width: 170px;
    height: 50px;
    background-color: #ee4622;
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 3px;
    font-family: 'UniSansHeavyCAPS';
    -webkit-transition: background-color 0.25s linear;
    -o-transition: background-color 0.25s linear;
    transition: background-color 0.25s linear;
    padding: 0;
    margin: 0;
    border: 0;
    outline: none;
}

.contacts .form .submit:hover {
    background-color: #393939;
    -webkit-transition: background-color 0.25s linear;
    -o-transition: background-color 0.25s linear;
    transition: background-color 0.25s linear;
}

@media (max-width: 1640px) {
    .contacts .ct {
        max-width: 1100px;
        padding-top: 150px;
    }

    .contacts .tl {
        margin-bottom: 50px;
    }

    .contacts .form {
        width: 580px;
        bottom: 40px;
        height: auto;
        padding: 30px 40px;
        right: calc(56.25vw/2 - 290px);
        right: -o-calc(56.25vw/2 - 290px);
    }

    .contacts .form textarea {
        height: 115px;
    }
}

/* main end */
/* lawyer start */
.lawyer {
    overflow: hidden;
}

.lawyer .ct {
    max-width: 1180px;
    min-height: 100vh;
    margin: auto;
    position: relative;
    padding-top: 170px;
    padding-bottom: 40px;
}

.lawyer .pic {
    width: 50%;
    height: 100%;
    position: absolute;
    bottom: 0;
    right: -14.32291667vw;
    z-index: -1;
}

.lawyer .pic img {
    padding: 20px 0;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.lawyer .bx {
    max-width: 50%;
}

.lawyer .tl {
    margin-bottom: 4.6875vw;
}

.lawyer h1 {
    color: #000000;
    font-size: 42px;
    line-height: 1.24;
    letter-spacing: 9.8px;
    font-weight: normal;
    font-family: 'UniSansHeavyCAPS';
    margin-bottom: 10px;
}

.lawyer .tline {
    width: 400px;
}

.lawyer h2 {
    color: #000000;
    font-size: 26px;
    line-height: 1.24;
    font-weight: 100;
    font-family: 'UniSans';
    margin-bottom: 25px;
    text-transform: uppercase;
}

.lawyer h3 {
    color: #333333;
    font-size: 16px;
    line-height: 1.4;
    font-weight: normal;
    font-family: 'UniSansBook';
    margin-bottom: 70px;
    text-transform: uppercase;
}

.lawyer p {
    color: #333333;
    font-size: 14px;
    line-height: 2.14;
    font-weight: 100;
    font-family: 'UniSansBook';
    /* font-family: 'UniSans'; */
    text-transform: uppercase;
    margin-bottom: 50px;
}

.lawyer .send {
    display: block;
    width: 170px;
    height: 50px;
    background-color: #393939;
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    line-height: 50px;
    letter-spacing: 6px;
    font-family: 'UniSansHeavyCAPS';
    -webkit-transition: background-color 0.25s linear;
    -o-transition: background-color 0.25s linear;
    transition: background-color 0.25s linear;
    padding: 0;
    margin: 0;
    border: 0;
    outline: none;
    text-align: center;
}

.lawyer .send:hover {
    background-color: #ee4622;
    -webkit-transition: background-color 0.25s linear;
    -o-transition: background-color 0.25s linear;
    transition: background-color 0.25s linear;
}

.header__lawyer {
    position: absolute;
}

.menu-btn__lawyer {
    position: absolute;
}

@media (max-width: 1640px) {
    .lawyer .ct {
        padding-top: 120px;
    }

    .lawyer .pic {
        right: -5.20833333vw;
    }
}
.section__s5 ul br {
    font-size: 10px;
}
.section__s5 ul li br {
   display: none; 
}
.section__s5 ul li::marker {
    color: inherit;
    font-size: inherit;
}
.section__s5 ol li br {
    display: none; 
 }
.section__s5 ul {
    list-style: disc !important;
    padding-left: 40px;
}
.section__s5 ul li {
    list-style: disc !important;
}
.section__s5 strong {
    font-weight: bold !important; 
}
.section-tx .t2 {
    font-weight: bold;
}


.lang_ar .section-tx .t2 {
    color: #b3b3b3;
    font-size: 17px;

}
.lang_ar .section-tx .t1 {
    color: #b3b3b3;
    font-size: 26px;
}
.lang_ar .section-tx h3 {
    font-size: 24px;
}

/* lawyer end */
/* modal start */
.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    outline: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: opacity .25s linear, -webkit-transform .25s linear;
    transition: opacity .25s linear, -webkit-transform .25s linear;
    -o-transition: transform .25s linear, opacity .25s linear;
    transition: transform .25s linear, opacity .25s linear;
    transition: transform .25s linear, opacity .25s linear, -webkit-transform .25s linear;
    opacity: 0;
}

.modal.in {
    opacity: 1;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-image: url(../img/login.jpg);
    display: block;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: opacity .25s linear, -webkit-transform .25s linear;
    transition: opacity .25s linear, -webkit-transform .25s linear;
    -o-transition: transform .25s linear, opacity .25s linear;
    transition: transform .25s linear, opacity .25s linear;
    transition: transform .25s linear, opacity .25s linear, -webkit-transform .25s linear;
}

.modal.in:before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    background-color: rgba(255, 66, 0, 0.36);
    z-index: -1;
}

.modal.in .modal-dialog {
    margin: auto;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
}

.modal-open .modal.in {
    overflow-x: hidden;
    overflow-y: auto;
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 10px;
}

.modal-content {
    margin: 15px;
    position: relative;
    background-color: #fff;
    background-clip: padding-box;
    outline: 0;
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
}

.modal-header {
    position: relative;
    height: 70px;
}

.modal .close {
    position: absolute;
    top: 15px;
    right: 20px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 2;
}

.modal .close:before,
.modal .close:after {
    content: '';
    width: 4px;
    height: 32px;
    position: absolute;
    background: #C4C4C4;
    border-radius: 2px;
    top: 0;
    left: 14px;
}

.modal .close:before {
    -webkit-transform: matrix(0.71, 0.7, -0.71, 0.71, 0, 0);
    -ms-transform: matrix(0.71, 0.7, -0.71, 0.71, 0, 0);
    transform: matrix(0.71, 0.7, -0.71, 0.71, 0, 0);
}

.modal .close:after {
    -webkit-transform: matrix(0.71, -0.7, 0.71, 0.71, 0, 0);
    -ms-transform: matrix(0.71, -0.7, 0.71, 0.71, 0, 0);
    transform: matrix(0.71, -0.7, 0.71, 0.71, 0, 0);
}

#login .close {
    background-color: transparent;
    border: 0;
    padding: 0;
    margin: 0;
    outline: none;
    color: #fff;
    -webkit-transition: -webkit-transform .25s linear;
    transition: -webkit-transform .25s linear;
    -o-transition: transform .25s linear;
    transition: transform .25s linear;
    transition: transform .25s linear, -webkit-transform .25s linear;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}

#login .close:hover {
    -webkit-transition: -webkit-transform .25s linear;
    transition: -webkit-transform .25s linear;
    -o-transition: transform .25s linear;
    transition: transform .25s linear;
    transition: transform .25s linear, -webkit-transform .25s linear;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

#login .modal-dialog {
    padding: 40px;
    height: 100%;
    z-index: 2;
}

#login .modal-header {
    padding-top: 50px;
    height: auto;
}

#login .modal-logo {
    display: block;
    margin: auto;
    max-width: 285px;
}

#login .modal-content {
    width: 690px;
    height: 100%;
    background-color: #000000;
    overflow-x: hidden;
    padding: 0;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;

}
#login .modal-body {
    margin-top: auto;
    margin-bottom: auto;

}

#login .modal-title {
    padding-top: 7vmin;
    padding-bottom: 7vmin;
}

#login .modal-title h2 {
    color: #f7f7f7;
    font-size: 36px;
    letter-spacing: 14px;
    text-align: center;
    padding-left: 14px;
    margin-bottom: 25px;
}

#login .modal-title .tline {
    margin: auto;
    width: 150px;
}

#login .modal-title .tline:before {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
}

#login .modal-form {
    width: 310px;
    margin: auto;
}

#login .modal-form .i {
    height: 38px;
    padding-top: 8px;
    background-repeat: no-repeat;
    background-position: left bottom 8px;
    margin-bottom: 15px;
    border-bottom: 1px solid #b3b3b3;
    -webkit-appearance: none;
    -moz-appearance: none;
}

#login .modal-form .i-email {
    background-image: url(../img/i-email.png);
}

#login .modal-form .i-password {
    background-image: url(../img/i-password.png);
}

#login .modal-form .it {
    display: block;
    background: transparent;
    margin: 0;
    outline: none;    
    -webkit-appearance: none;
    -moz-appearance: none;
    color: #b3b3b3;
    font-size: 15px;
    font-weight: normal;
    line-height: 27px;
    font-family: 'UniSansBook';
    border: 0;
    width: 100%;
    height: 27px;
    padding-left: 35px;
    box-shadow: none !important;
}

#login .modal-form input:-webkit-autofill,
#login .modal-form input:-webkit-autofill:hover, 
#login .modal-form input:-webkit-autofill:focus {
  -webkit-text-fill-color: #b3b3b3;
  -webkit-box-shadow: 0 0 0px 1000px #000 inset;
  transition: background-color 5000s ease-in-out 0s;
}

#login .modal-form .it::-webkit-input-placeholder {
    color: #b3b3b3;
}

#login .modal-form .it::-moz-placeholder {
    color: #b3b3b3;
}

#login .modal-form .it:-ms-input-placeholder {
    color: #b3b3b3;
}

#login .modal-form .it::-moz-placeholder {
    color: #b3b3b3;
    opacity: 1;
}

#login .modal-form input[type="checkbox"] {
    display: none;
}

#login .modal-form label {
    position: relative;
    color: #b3b3b3;
    font-size: 15px;
    line-height: 22px;
    font-weight: normal;
    padding-left: 30px;
    display: table;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#login .modal-form label:before {
    content: '';
    width: 20px;
    height: 20px;
    border: 1px solid #b3b3b3;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
}

#login .modal-form input[type="checkbox"]:checked + label:after {
    content: '';
    width: 8px;
    height: 8px;
    position: absolute;
    border-radius: 50%;
    background-color: #b3b3b3;
    top: 7px;
    left: 7px;
}

#login .modal-form .rd {
    padding-bottom: 3vmin;
}
#login .modal-form .msg{
    color: red;
    font-weight: bold;
    padding-bottom: 3vmin;
}
#login .modal-form .submit {
    display: block;
    width: 200px;
    height: 50px;
    background-color: #393939;
    color: #fff;
    font-size: 16px;
    font-weight: 900;
    
    font-family: 'UniSansHeavyCAPS';
    -webkit-transition: background-color 0.25s linear;
    -o-transition: background-color 0.25s linear;
    transition: background-color 0.25s linear;
    padding: 0;
    margin: 0;
    border: 0;
    outline: none;
    margin: auto;
    -webkit-appearance: none;
    -moz-appearance: none;
    text-transform: uppercase;
    letter-spacing: 6px;
}

#login .modal-form .submit:hover {
    background-color: #ee4622;
    -webkit-transition: background-color 0.25s linear;
    -o-transition: background-color 0.25s linear;
    transition: background-color 0.25s linear;
}

#login .modal-form .st {
    padding-bottom: 5vmin;
    padding-bottom: 3vmin;
}

#login .modal-footer {
    text-align: center;
    padding-bottom: 20px;
}

#login .modal-footer ul li {
    display: inline-block;
    vertical-align: middle;
    color: #b3b3b3;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.24;
    font-weight: normal;
    margin: 0 5px;
}

#login .modal-footer ul li a {
    color: #b3b3b3;
    font-weight: 900;
}

#login .modal-footer ul li a:hover {
    text-decoration: underline;
}

.modal-open {
    overflow: hidden;
    position: fixed;
    top: 0;
    width: 100%;
}
section.section__s1 .t1 {
    max-width: 40vw;
    letter-spacing: 2px;
    font-weight: bold;
    line-height: 1.5;
}
section.section__s2 .t1 {
    max-width: 40vw;
    letter-spacing: 2px;
    font-weight: bold;
    line-height: 1.5;
}
section.section__s3 .t1 {
    max-width: 40vw;
    letter-spacing: 2px;
    font-weight: bold;
    line-height: 1.5;
}
section.section__s6 .section-bx {
    bottom: auto;
    top: 27.11vh;
}

/* modal end */


/* resp start */
@media (min-width: 767px) and (max-width: 1025px) {
    .lawyer .pic img {
        height: 45.7031vmax;
        object-fit: cover; 
        top: 10.33vmax;
        bottom: auto;
    }
}

@media (min-width: 1639px) {
     .section__s1 .section-bx {
        padding-left: 32.344vw;
    } 
}
@media (max-width: 1300px) {
    
    .header {
        left: 35px;
    }
    
    .menu-language {
        font-size: 18px;
    }
    
    .menu {
        width: 450px;
        padding-left: 35px;
        padding-right: 10px;
        padding-bottom: 20px;
    }

    .menu ul li a {
        font-size: 16px;
    }

    .menu-btn {
        right: 40px;
    }
    .dots {
        left: 35px;
    }
    .dots ul li {
        margin-bottom: 20px;
    }

    .dots ul li span {
        width: 7px;
        height: 7px;
    }

    .dots ul li:after {
        width: 1px;
        margin: 15px auto;
    }

    .dots ul li.is-active:after {
        height: 50px;
    }

    .dots ul li.is-active:last-child:before {
        height: 50px;
        width: 1px;
        margin: 15px auto;
    }

    .social {
        right: 35px;
    }

    .social ul {
        margin-top: auto;
        margin-bottom: 80px;
    }

    .section-scroll {
        display: none;
    }

    .section-bx {
        position: relative;
        height: 100%;
        width: 100%;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        padding-top: 90px;
        padding-left: 15.5vw;
    }
    .header-logo {
        width: 140px;
    }

    .section-tx {
        margin: auto 0;
        width: 100%;
        max-width: 455px;
    }

    .section-tx h2 {
        font-size: 50px;
        letter-spacing: 1.5625rem; 
    }

    .section-tx h3 {
        font-size: 12px;
        letter-spacing: 4px;
    }
    
    .section-tx h3 br {
        display: none;
    }

    .section-tx .t1 {
        font-size: 12px;
        letter-spacing: 3px;
    }

    .section-tx .t2 {
        font-size: 7px;
        letter-spacing: 1.75px;
    }

    .section-tx .t2 br {
        display: none;
    }

    .section-tx .line {
        width: 200px;
        margin-bottom: 0;
    }

    .team .tl {
        position: relative;
        margin-left: 0;
    }

    .team .tl h2 {
        font-size: 27px;
        letter-spacing: 10.4px;
    }

    

    .team-cont {
        height: 440px;
    }

    .team-cont ul li {
        width: 160px;
        margin: 0 14px 20px 14px;
    }

    .team-cont figure {
        width: 160px;
        height: 176px;
    }

   

    .exp .tl h2 {
        font-size: 30px;
        letter-spacing: 4px;
    }
    .exp .tl .tline {
        width: 290px;
    }

    .exp .ct {
        padding-left: 0;
        max-width: none;
        max-width: 800px;
    }

    .exp .pic {
        margin-right: 60px;
    }

    .exp .pic img {
        width: 325px;
        height: 325px;
        display: block;
    }

    .exp .bx {
        padding-right: 0;
    }

    .exp .tx {
        height: 325px;
    }

    .exp .tx p {
        font-size: 10px;
        letter-spacing: .5px;
    }

    .exp .mCSB_outside + .mCSB_scrollTools {
        right: -15px;
    }

    .specialization .tline {
        width: 310px;
    }

    .specialization h2 {
        font-size: 28px;
        letter-spacing: 11px;
    }

    .specialization .ct {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        height: 100%;
    }

    .specialization .section-bx {
        display: block;
        margin: auto 0;
        padding-left: 25.5vw;
        padding-top: 90px;
        padding-bottom: 0;
        height: auto;
        max-width: 660px;
    }

    .specialization .t {
        font-size: 14px;
        letter-spacing: 1.5px;
    }

    .specialization .n {
        font-size: 11px;
    }

    .specialization .scroll-list {
        height: 325px;
    }

    .contacts h2 {
        font-size: 28px;
        letter-spacing: 11px;
    }

    .contacts .tline {
        width: 260px;
    }

    .contacts .tl {
        margin-bottom: 9vmin;
    }

    .contacts-bx {
        padding-left: 15.5vw;
        padding-top: 7.29166667vw;
    }

    .contacts .ct {
        max-width: none;
        padding-top: 90px;
    }

    .contacts .form {
        width: 46%;
        right: 2%;
    }

    .contacts .map {
        width: 50%;
    }

    .contacts-list {
        padding-left: 0;
    }

    .lawyer .bx {
        padding-right: 10px;
        max-width: 50%;
    }

    .lawyer h1 {
        font-size: 26px;
        letter-spacing: 10px;
    }

    .lawyer h2 {
        font-size: 26px;
    }

    .lawyer h3 {
        font-size: 10px;
    }

    .lawyer p {
        font-size: 10px;
        font-weight: 100;
    }

    .lawyer .tline {
        width: 250px;
    }

    .lawyer .ct {
        padding-left: 0;
        max-width: 750px;
    }

    .lawyer .pic {
        right: 0%;
    }
    #login .modal-title h2 {
        font-size: 31px;
        letter-spacing: 12px;
        margin-bottom: 15px;
    }
    
    #login .modal-logo {
        max-width: 248px;
    }
}
@media (max-width: 1199px) {
   

}
@media (max-width: 1100px) {
    .fp-viewing-3 .header-logo {
        display: block;
    }
    .header-logo.hidemb {
        transform: translate3d(-80%, -300%, 0);
        transform-style: preserve-3d;
    }
    .tline:before {
        opacity: 1;
        -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        transform: translate(0, 0);
        background-color: #ee4622;
    }

    .header {
        position: fixed;
        top: 33px;
        left: 20px;
    }

    .menu-btn {
        position: fixed;
        right: 20px;
    }

    .social {
        right: 24px;
    }

    .social ul {
        margin-bottom: 0;
    }

    .section {
        min-height: 100vh;
        padding: 0;
        margin: 0;
    }

    .section-bx {
        padding: 40px 15px 40px 15px;
        height: auto;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        padding-top: 0;
        padding-bottom: 0;
        max-width: 545px;
        margin: auto;
        min-height: 100vh;
    }

    .section-tx {
        max-width: none;
    }

    .section-tx h3 {
        font-size: 18px;
    }

    .section-tx h3 br {
        display: none;
    }

    .section-tx .t1 {
        font-size: 18px;
    }

    .section-tx .t1 br {
        display: none;
    }

    .section-tx .t2 {
        font-size: 10px;
    }

    .section-scroll {
        display: none;
    }

    .section-bg {
        display: none;
    }

    .section__s1 {
        padding-top: 90px;
        padding-bottom: 90px;
    }

    .team {
        padding: 40px 0;
    }

    .team .tl {
        padding-left: 15px;
    }

    
    .team-cont {
        height: auto;
        width: auto;
    }

    .team ul li {
        width: 153px;
    }

    .exp {
        padding: 40px 15px;
        width: 100%;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }

    .exp .ct {
        padding: 0;
        margin: auto;
        max-width: 515px;
        height: auto;
    }

    .exp .df {
        display: block;
    }

    .exp .pic {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 25px;
    }

    .exp .pic img {
        margin: auto;
    }

    .exp .bx {
        padding-right: 0;
    }

    .exp .bx p {
        font-size: 14px;
    }

    .exp .tx {
        height: auto;
    }

    .specialization {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }

    .specialization .ct {
        display: block;
        height: auto;
        margin: 0 auto;
    }

    .specialization .section-bx {
        padding: 40px 15px;
        max-width: 545px;
        min-height: 0;
    }

    .specialization .scroll-list {
        height: auto;
    }

    .contacts {
        padding: 0;
    }

    .contacts-bx {
        padding: 50px 15px;
        margin: auto;
        max-width: 545px;
        height: auto;
        min-height: 100vh;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }

    .contacts-frs {
        margin: auto;
    }

    .contacts .tl {
        text-align: center;
        margin-bottom: 45px;
    }

    .contacts .tline {
        margin: auto;
    }

    .contacts .ct {
        padding: 0;
        margin: 0;
        height: auto;
        min-height: 0;
        display: block;
    }

    .contacts-list {
        margin: auto;
        display: table;
    }

    .contacts .map {
        display: none;
    }

    .contacts .form-wrp {
        position: relative;
        padding: 200px 0 20px 0;
    }

    .contacts .form {
        max-width: 515px;
        width: 100%;
        position: relative;
        margin: auto;
        z-index: 2;
        right: auto;
        bottom: auto;
    }

    .contacts .form-map {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    #login .modal-content {
        width: auto;
        padding: 0 20px;
    }
    
    .not_main .exp .ct {
        padding-top: 50px;
    }
}
@media (max-width: 991px) {
    .header-logo {
        width: 120px;
    }
    .section-bx {
        max-width: 500px;
    }
}

@media (max-width: 750px) {
    .section {
        min-height: 60vh;
    }
    .section-bx {
        min-height: 60vh;
    }
    .header-logo.hidemb {
        transform: translate3d(0%, 0%, 0);
        transform-style: preserve-3d;
    }
    .lawyer .bx {
        padding-right: 0;
    }
    .header {
        top: 20px;
        position: fixed;
        z-index: 6;
    }
    .menu-btn {
        position: fixed;
        z-index: 5;
    }
    .menu-btn:before {
        content: '';
        position: absolute;
        left: -100vw;
        height: 68px;
        width: 150vw;
        background: #000;
        z-index: -1;
        top: -25px;
    }
    .header-logo {
        width: 200px;
    }

    .menu-btn {
        top: 25px;
    }

    .modal .close {
        right: 0;
    }

    #login .modal-dialog {
        padding: 0;
    }

    .section-tx h2 {
        font-size: 30px;
        letter-spacing: 4.5px;
    }

    .section-tx h3 {
        font-size: 12px;
        letter-spacing: 2px;
    }
    section .t1 {
        max-width: 100% !important;
        letter-spacing: 2px;
        font-weight: bold;
        line-height: 1.5;
    }

    .section__s1 {
        padding-bottom: 0px;
    }

    .team {
        padding-top: 90px;
    }

    .team .tl h2 {
        font-size: 30px;
        letter-spacing: 4px;
    }

    .team ul {
        padding: 0;
    }

    .team ul li {
        width: 50%;
        padding: 0 15px;
        margin: 0 0 25px 0;
    }

    .exp .tl h2 {
        font-size: 30px;
        letter-spacing: 4px;
    }

    .specialization .tline {
        width: 265px;
        margin-bottom: 45px;
    }

    .specialization h2 {
        font-size: 20px;
        letter-spacing: 8px;
    }

    .specialization .n a {
        line-height: 1.4;
    }

    .contacts h2 {
        font-size: 30px;
        letter-spacing: 10px;
    }

    .contacts .form-wrp {
        padding-bottom: 0;
    }

    .contacts .form {
        width: 100%;
        top: auto;
        right: auto;
        left: auto;
        bottom: auto;
    }

    .lawyer h1 {
        font-size: 30px;
        letter-spacing: 4px;
    }

    .lawyer h2 {
        font-size: 18px;
    }

    .lawyer h3 {
        color: #000000;
    }

    .lawyer p {
        font-family: 'UniSansBook';
        font-weight: normal;
    }

    .lawyer .ct {
        padding-left: 15px;
        padding-right: 15px;
    }

    .lawyer .pic {
        display: none;
    }

    .lawyer .bx {
        width: 100%;
        height: auto;
        max-width: none;
    }
    section.section__s6 .section-bx {
        bottom: auto;
        top: calc(50vh + 60px);
        transform: translateY(-50vh);
    }
}

@media (max-width: 480px) {
    .lawyer .bx {
        padding-right: 10px;
    }
    .menu {
        width: 100%;
        padding-left: 20px;
        padding-top: 27px;
    }

    .menu ul {
        padding-top: 50px;
    }

    .menu ul li {
        margin-bottom: 25px;
    }

    .menu ul li a {
        font-size: 16px;
        letter-spacing: 3.2px;
    }

    .contacts .form {
        padding: 20px;
    }

    .contacts .form .submit {
        width: 100%;
    }

    .contacts ul li.half {
        display: block;
    }

    .contacts ul li.half > div {
        width: 100%;
    }

    .contacts ul li.half > div:first-child {
        margin-bottom: 30px;
    }

    .lawyer .send {
        width: 100%;
    }

    #login .modal-header {
        padding-top: 70px;
    }

    #login .modal-form {
        width: 100%;
    }

    #login .modal-form .submit {
        width: 100%;
    }
}

@media (max-width: 400px) {
    .team ul {
        padding: 0;
    }

    .team figure {
        width: 130px;
        height: 140px;
    }

    .exp .tl .tline {
        width: 100%;
    }
}

.menu .t:hover, .menu a:hover{
    text-transform: none!important;
}