@charset "utf-8";
@import "callback-btn.css";
@import "callback-modal.css";
@import "typography.css";
@import "style.css";
@import "index.css";
@import "about.css";
@import "career.css";
@import "contact.css";
@import "employers.css";
@import "practice.css";

/* header */

.h2,
h2 {
    font-family: 'Docdec';
    font-size: 40px;
    color: #F1D18B;
    margin: 0;
}

.header-cnt {
    height: 230px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ADBEC8;
}

.logo {
    width: 500px;
    height: 100%;
    background: url(/templates/template/images/logoBG.jpg) no-repeat center center;
    background-size: contain;
    display: flex;
    align-items: center;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo a {
    width: 100%;
    height: 100%;
}

.menu>ul {
    display: flex;
    gap: 30px;
}

.menu ul li a {
    font-size: 30px;
    color: #434242;
    transition: 0.3s;
}

.menu ul li a:hover {
    color: #827B71;
    font-family: 'TildaM';
}

.menu ul li.active a {
    color: #827B71;
    font-family: 'TildaM';
    text-decoration: none;
}

.menu ul li.active a:visited {
    text-decoration: none;
}

.menu>ul>li.parent>ul {
    display: none;
}

.cnt {
    /* padding: 0 78px 0 120px; */
    padding: 0 165px 0 120px;
}

.txt a {
    text-decoration: none;
}

.slick-arrow {
    position: absolute;
    z-index: 10;
    cursor: pointer;
}

.prevArrow.slick-arrow {
    transform: rotate(180deg);
}

.slick-disabled {
    display: none !important;
}

.slick-arrow img {
    width: 100%;
    height: auto;
}

.burger {
    width: 30px;
    height: 20px;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 25;
}

.burgerSpan {
    width: 100%;
    height: 3px;
    background: #727271;
    position: absolute;
    transition: 0.4s;
}

.burgerSpan::before {
    content: " ";
    width: 100%;
    height: 3px;
    position: absolute;
    bottom: -7px;
    background: #727271;
    transition: 0.4s;
}

.burgerSpan::after {
    content: " ";
    width: 100%;
    height: 3px;
    position: absolute;
    bottom: -14px;
    background: #727271;
    transition: 0.4s;
}

.burgerSpan.active::before {
    width: 0;
}

.burgerSpan.active {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.burgerSpan.active::after {
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
    bottom: -1px;
}

.burger {
    display: none;
}

.burgerMenu {
    max-height: 800px;
    height: 100vh;
    width: 100%;
    position: absolute;
    z-index: 20;
    top: -800px;
    right: 0;
    left: 0;
    display: none;
    justify-content: center;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
    transition: 0.5s;
}

.burgerMenu::after {
    content: "";
    opacity: 0.9;
    width: 100%;
    height: 100%;
    display: block;
    background: #ADBEC8;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.burgerMenu.active {
    top: 0;
}

.burgerMenu .menu {
    width: 84%;
    margin: 0 auto;
    /* padding-bottom: 120px; */
    padding-top: 90px;
}

.burgerMenu .menu ul {
    flex-direction: column;
    max-width: 245px;
}

.burgerMenu .menu ul li {
    text-align: end;
    position: relative;
}

.burgerMenu .menu ul li::after {
    content: "";
    background: url("/templates/template/images/practiceArrow.png") no-repeat center center;
    opacity: 0;
    width: 50px;
    height: 42px;
    display: block;
    background-size: contain;
    position: absolute;
    top: 0;
    right: -60px;
    transition: 0.5s;
}

.burgerMenu .menu>ul>li:hover::after,
.burgerMenu .menu>ul>li.active::after {
    opacity: 1;
    margin-right: 20px;
}

.burgerMenu li.parent>ul {
    display: block;
}

.burgerMenu .menu>ul>li.parent>ul li a {
    font-family: 'TildaL';
    font-size: 16px;
}

.burgerMenu .menu>ul>li.parent>ul li:hover a {
    font-family: 'TildaL';
}

.burgerMenu .menu>ul>li.parent>ul li a:hover {
    font-family: 'TildaM';
}

.burgerMenu .menu ul li a {
    font-size: 30px;
    font-family: 'Docdec';
    transition: 0.5s;
}

.burgerMenu .menu ul li a:focus {
    text-decoration: none;
}

.burgerMenu .menu>ul>li:hover>a,
.burgerMenu .menu>ul>li.active>a,
.burgerMenu .menu>ul>li.active>ul>li,
.burgerMenu .menu>ul>li.hover>ul>li {
    color: #827B71;
    font-family: 'Docdec';
    margin-right: 36px;
}

.goldLineMenu {
    width: 100vw;
    position: absolute;
    left: 50%;
    top: 655px;
    transform: translateX(-50%);
    max-height: 35px;
    object-fit: cover;
}

.arrowMenu {
    position: absolute;
    rotate: 180deg;
    width: 160px;
    top: 735px;
    left: 30px;
    z-index: 20;
    cursor: pointer;
}

.arrowMenu img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


/* --- Media styles --- */

@media screen and (min-width:1600px) {
    .wrapper .container {
        width: 1550px;
    }
}

@media screen and (max-width:1900px) {
    .aboutSlideImgCntImg {
        height: 62% !important;
    }
}


/* @media screen and (max-width:1700px) {
    .emplSlideText {
        width: 547px;
    }
    .emplSlideImgCnt {
        width: 31vw;
    }
} */

@media screen and (max-width:1600px) {
    .prevArrow.slick-arrow {
        bottom: 156px;
    }
}

@media screen and (max-width:1550px) {
    .h2,
    h2 {
        font-size: 30px;
    }
    .header-cnt {
        height: 150px;
    }
    .menu ul {
        gap: 20px;
    }
    .menu ul li a {
        font-size: 24px;
    }
    .logo {
        width: 280px;
    }
}

@media screen and (max-width:1400px) {
    .logo {
        width: 290px;
    }
    .header-cnt {
        height: 145px;
    }
    .header-cnt.cnt {
        padding: 0 138px 0 90px;
    }
    .menu ul li a {
        font-size: 22px;
    }
}

@media screen and (max-width:1300px) {
    .h2,
    h2 {
        font-size: 26px;
    }
    .header-cnt {
        height: 130px;
    }
    .cnt {
        padding: 0 116px 0 83px;
    }
    .menu ul li a {
        font-size: 20px;
    }
    .logo {
        width: 267px;
    }
}

@media screen and (max-width:1199px) {
    .aboutSlider {
        min-height: calc(100vh - 145px);
    }
    .header-cnt.cnt {
        padding-right: 30px;
    }
}

@media screen and (max-width: 1100px) {
    .aboutSlide.reverse:last-child .cnt {
        padding-left: 155px;
        gap: 20px;
    }
}


/* mobile */

@media screen and (max-width: 999px) {
    .burger {
        display: block;
    }
    .burgerMenu {
        display: flex;
    }
    .header-cnt>.menu {
        display: none;
    }
    .header-cnt.cnt {
        padding: 0 70px 0 13vw;
        height: 90px;
        align-items: unset;
    }
    .logo {
        width: 220px;
        height: 115px;
        z-index: 22;
    }
    .menu ul {
        gap: 27px;
    }
    .mod-menu__sub li {
        margin-top: 10px;
    }
    .burgerMenu .menu ul li a {
        font-size: 24px;
    }
    .h2,
    h2 {
        font-size: 19px;
    }
    /* .burgerMenu .menu {
        padding-top: 150px;
    } */
    /*  */
    .burgerMenu .menu ul {
        width: 240px;
    }
    .burgerMenu .menu>ul {
        margin-right: 86px;
    }
    .burgerMenu .menu {
        padding-bottom: 100px;
        display: flex;
        padding-top: 133px;
        justify-content: center;
    }
}

@media screen and (max-width:767px) {
    .h2,
    h2 {
        font-size: 17px;
    }
    /* .burgerMenu .menu ul {
        margin-left: 19%;
    } */
    .header-cnt.cnt {
        height: 50px;
        padding: 0 25px 0 17vw;
    }
    .logo {
        width: 125px;
        height: 65px;
    }
    .burger {
        width: 20px;
        height: 13px;
    }
    .burgerSpan {
        height: 1px;
    }
    .burgerSpan::before {
        bottom: -5px;
        height: 1px;
    }
    .burgerSpan::after {
        bottom: -10px;
        height: 1px;
    }
    .burgerMenu .menu {
        padding-top: 111px;
    }
}

@media screen and (max-height:770px) {
    .menu ul {
        gap: 12px;
    }
    .mod-menu__sub li {
        margin-top: 5px;
    }
    .goldLineMenu {
        bottom: 135px;
        top: auto;
    }
    .arrowMenu {
        width: 140px;
        bottom: 90px;
        top: auto;
    }
}

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

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

@media screen and (max-width:600px) {
    .burgerMenu .menu ul {
        margin: 0;
    }
}

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

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

@media screen and (max-width:400px) {
    .goldLineMenu {
        bottom: 135px;
        top: auto;
    }
    .arrowMenu {
        width: 140px;
        bottom: 90px;
        top: auto;
    }
}

@media screen and (max-width:370px) {
    /* .header-cnt.cnt {
        padding: 0 25px 0 13vw;
    } */
    .logo {
        width: 110px;
        height: 58px;
    }
    .h2,
    h2 {
        font-size: 18px;
    }
    /* .burgerMenu .menu {
        padding-top: 90px;
    } */
    .burgerMenu .menu ul {
        max-width: 200px;
    }
    .burgerMenu .menu ul li a {
        font-size: 19px;
    }
    .burgerMenu .menu>ul>li.parent>ul li a {
        font-size: 14px;
    }
    .burgerMenu .menu ul li::after {
        height: 24px;
    }
}

@media screen and (max-height:750px) and (max-width:999px) {
    /* .menu ul {
        gap: 12px;
    }
    .mod-menu__sub li {
        margin-top: 5px;
    } */
}

@media screen and (max-height:650px) and (max-width:999px) {
    .menu ul {
        gap: 15px;
    }
    .burgerMenu .menu ul li a {
        font-size: 20px;
    }
    .arrowMenu {
        bottom: 45px;
    }
    .goldLineMenu {
        /* bottom: 75px; */
        /* top: auto; */
        top: 517px;
    }
    .arrowMenu {
        /* bottom: 30px; */
        top: 565px;
        bottom: auto;
    }
    .burgerMenu .menu {
        padding-bottom: 100px;
        display: flex;
        padding-top: 106px;
    }
    .burgerMenu .menu>ul {
        margin: 0 auto;
    }
    .burgerMenu .menu ul {
        width: 215px;
    }
}

@media screen and (max-height:650px) and (max-width:767px) {
    .burgerMenu .menu {
        padding-top: 87px;
    }
}

@media screen and (max-height:650px) and (max-width:370px) {
    .burgerMenu .menu {
        padding-top: 100px;
    }
}

@media screen and (max-height:650px) and (max-width:420px) {
    .burgerMenu .menu>ul {
        margin-right: 86px;
    }
}


/* mobile end */


/* inside */


/* .insidepage .com-content-article__body {
    width: 1270px;
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
} */