#loader-bg {
    position: fixed;
    z-index: 9999999;
    background: #fff;
    width: 100%;
    height: 100%;
    top: 0;
}
.firm-body__main-title p{
 margin-bottom: 15px;
}
#loader-item {

    width: 300px;
    height: 300px;
    position: absolute;
    top: calc(50vh - 150px);
    left: calc(50vw - 150px);
    background-image: url("/wp-content/uploads/2023/05/loading-page.png");
    background-size: 300px;
    background-repeat: no-repeat;
    animation-name: prelaoder;
    animation-duration: 2s;
}

@keyframes preloader {
    0% {
        background-size: 300px;
    }

    25% {
        background-size: 350px;
    }

    50% {
        background-size: 400px;
    }

    75% {
        background-size: 450px;
    }

    100% {
        background-size: 500px;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: inherit;
}

body {
    font-family: 'Raleway', sans-serif;
}

/*
@font-face {
    font-family: "Raleway";
    src: url("../fonts/Raleway/Raleway-VariableFont_wght.ttf");
}

@font-face {
    font-family: "Poppins Light";
    src: url("../fonts/Poppins/Poppins-Light.ttf");
}

@font-face {
    font-family: "MyanmarMN";
    src: url("../fonts/Myanmar/myanmar-mn.ttf");
}

@font-face {
    font-family: "Libre Franklin";
    src: url("../fonts/LibreFranklin/LibreFranklin-VariableFont_wght.ttf");
}

@font-face {
    font-family: "Libre Franklin Light";
    src: url("../fonts/LibreFranklin/static/LibreFranklin-Light.ttf");
}

@font-face {
    font-family: "Outfit";
    src: url("../fonts/Outift/Outfit-VariableFont_wght.ttf");
}

@font-face {
    font-family: "Outfit Light";
    src: url("../fonts/Outift/static/Outfit-Light.ttf");
}
*/

.container {
    max-width: 1220px;
    margin: 0 auto;
    position: relative;
    z-index: 21;
}



@media (max-width: 1400px) {
    .container {
        max-width: none !important;
        overflow: hidden;
    }
}

@media (max-width: 767.98px) {
    .container {
        max-width: none;
        overflow: hidden;
    }
}

.header {
    display: grid;
    grid-template-columns: 2fr 1fr;
    height: 100px;
    font-size: 18px;
    padding: 0 10px 0 10px;
}

@media (max-width: 1400px) {
    .header {padding: 0 40px; }
}

.header__item-1 {
    display: grid;
    grid-template-columns: 1fr 4fr;
    align-items: center;
}

.header__logo {
    width: 150px;
    height: 50px;
}

.header__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
}

.header__nav>ul {
    display: flex;
    flex-direction: row;
    gap: 45px;
    list-style-type: none;
}

.header__nav>ul>li>a {
    color: #000000;
    text-decoration: none;
}

.header__nav>ul>li>a:hover {
    border-bottom: 1px solid orange;
}

.header__item-2 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header__nav-2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
}

.header__nav-2>a {
    text-decoration: none;
    color: #000000;
    font-feature-settings: 'pnum' on, 'lnum' on;
}

.header__link_active {
    border-bottom: 2px solid #ef7a0dff;
}

.contactUs-body {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    transition: all 2.8s ease 0s;
    perspective: 500px;
}

.contactUs-body__item-1 {
    height: 100%;
    width: 500px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
        margin-top: 30px;
}

.contactUs-body__item-1>h2 {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    font-size: 52px;
}

.contactUs-body__item-1>p {
    font-family: 'Raleway', sans-serif;
    font-weight: 100;
    font-size: 20px;
    line-height: 30px;
    width: 450px;
}

.contactUs-btn {
    background-color: #ef7a0dff;
    color: #FFFFFF;
    width: 200px;
    height: 50px;
    border: none;
    font-size: 20px;
    font-family: 'Raleway', sans-serif;
}
.contacts-btn__wrapper {
    margin-top: 40px;
}
.contacts-btn {
    background-color: #ef7a0dff;
    color: #FFFFFF;
    width: 200px;
    height: 50px;
    border: none;
    font-size: 20px;
    font-family: 'Raleway', sans-serif;
}

.contacts-btn.contacts-btn--mail {
  display: flex;
  text-decoration: none;
  align-items: center;
  justify-content: center;
}

.contactUs-btn:hover, .contacts-btn:hover {
    cursor: pointer;
    transition: 0.3s background-color, 0.3s color;
    color: #ef7a0dff;
    background-color: #FFFFFF;
    border: 1px solid #ef7a0dff;
}

/*
 * Popup
 * */
.wpcf7-spinner {
  display: none;
}

.popup-fade {
    display: none;
    position: relative;
    z-index: 9999;
}
.popup-fade:before {
    content: '';
    background: #000;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    z-index: 9999;
}
.popup {
    position: fixed;
    top: 20%;
    left: 50%;
    transform: translate(-50%,-20%);
    background: #fff;
    z-index: 99999;
    opacity: 1;

}
.popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
}
input {
  box-sizing: border-box;
}
input[type="text"] {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  margin: 0;
}

.modal {
  max-width: 500px;
  width: 100%;
}
.modal__header {
  border-bottom: 1px solid #dcdcdc;
  padding-top: 24px;
  padding-bottom: 24px;
}
.modal__title {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  text-transform: uppercase;
  color: #2e2e2e;
  text-align: center;
}
.btn-close {
  width: 25px;
  height: 25px;
  border: none;
  background-color: transparent;
  cursor: pointer;
}
.btn-close::after {
  display: block;
  content: '';
  width: 25px;
  height: 2px;
  background-color: #2e2e2e;
  transform: rotate(45deg);
  transform-origin: center;
  position: relative;
  top: -1px;
}
.btn-close::before {
  display: block;
  content: '';
  width: 25px;
  height: 2px;
  background-color: #2e2e2e;
  transform: rotate(-45deg);
  transform-origin: center;
  position: relative;
  top: 1px;
}
.modal-content {
  padding: 24px 32px 48px;
}

.modal-content .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.modal-form .contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.contact .label {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: #2e2e2e;
  margin-bottom: 8px;
}
.contact-input {
  box-sizing: border-box;
  width: 100%;
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #727272;
  padding: 12px 14px;
}

.contact-input::placeholder {
  font-family: 'Raleway', sans-serif;
  color: #727272;
  opacity: 0.4;
}

.contact-input:focus {
  color: #212529;
  border-color: #ef7a0dff;
  outline: 0;
}

.form-btn__wrapper {
    margin-top: 32px;
    text-align:center;
}

.form-btn {

    width: 170px;
    height: 60px;
  border: none;
  cursor: pointer;
  color: #fff;
  font-size: 24px;
  border: 1px solid transparent;
  background-color: #ef7a0dff;
  padding: 5px 36px 8px 36px;
  transition: all 0.3s ease;
}

.form-btn:hover {
  border: 1px solid #ef7a0dff;
  color: #ef7a0dff;
  background-color: #fff;
  transition: all 0.3s ease;
}

@media (max-width: 767.98px) {
    .popup {
      width: 90%;
    }
    .modal {
      max-width: 100%;
    }
}

/*
 * End Popup
 * */

.benefits-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
    position: relative;
}


.benefits-body__item-1 {
    display: flex;
    flex-direction: column;
    font-family: 'Raleway', sans-serif;
}

.benefits-body__item-1>h4 {
    font-size: 48px;
    font-weight: 100;
    width: 400px;
    line-height: 58px;
    margin-bottom: 40px;
    border-left: 14px solid #ef7a0dff;
    padding-left: 10px;
    margin-left: 10px;
}

.benefits-body__item-1>ul {
    display: flex;
    flex-direction: column;
    font-size: 28px;
    gap: 30px;
}



.benefits-body__item-1>ul>li {
    list-style-type: none;
    display: flex;
    justify-content: left;
}

.benefits__link:hover {
    cursor: pointer;
    transition: background-color 1s;
    background-color: #F7F7F7;
}

.benefits__link-container_active {
    background-color: #F7F7F7;
    position: relative;
    padding: 20px;
}



.benefits__link_inactive {
    margin-left: 20px;
}

.benefits__link_active {
    position: relative;
    color: #ef7a0dff;
    font-size: 40px;
}

.benefits__link_active::after {
    content: "";
    height: 1px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    color: black;
    background-color: #ef7a0dff;
}

.benefits__link-section {
    display: none;
    flex-direction: column;
    gap: 30px;
}

.benefits__link-section_active {
    display: flex;
}

.benefits__link-section_inactive {
    display: none;
}

.benefits__link-section>h4 {
    font-size: 48px;
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
}

.benefits__link-section>p {
    font-size: 20px;
    line-height: 30px;
    font-family: 'Raleway', sans-serif;
}

.trns-btn {
    background-color: transparent;
    border: 1px solid #ef7a0dff;
    color: #ef7a0dff;
    height: 60px;
    width: 170px;
    font-size: 20px;
    font-family: 'Raleway', sans-serif;
    font-weight: 100;
}

.trns-btn:hover {
    cursor: pointer;
    transition: background-color 1s, color 1s;
    background-color: #e56904;
    border-color: #e56904;
    color: #FFFFFF;
}

.benefits-body__item-2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 20px;
}

.ourTeam-body {
    display: flex;
    flex-direction: column;
    margin-top: 40px;
}

.ourTeam-body>h4 {
    font-size: 48px;
    margin: 40px 0;
    border-left: 14px solid #ef7a0dff;
    padding-left: 20px;
    font-weight: 100;
}

.inactive-image {
    width: 200px;
    filter: sepia(68%) saturate(0%) contrast(60%);
    -webkit-filter: sepia(68%) saturate(0%) contrast(60%);
    -moz-filter: sepia(68%) saturate(0%) contrast(60%);
}

.active-image {
    width: 300px;
    height: 300px;
    filter: sepia(1%);
    -webkit-filter: sepia(1%);
    -moz-filter: sepia(1%);
}

.ourTeam-body__inner {
    position: relative;
    display: flex;
    place-items: center;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.ourTeam-body__vector-left {
    position: absolute;
    left: 0;
    top: 50%;
}

.ourTeam-body__vector-right {
    position: absolute;
    right: 0;
    top: 50%;
}

.ourTeam-body__vector-left:hover, .ourTeam-body__vector-right:hover {
    cursor: pointer;
}

.backToTeam {
    display: flex;
    flex-direction: column;
    font-family: "Raleway", sans-serif;;
    font-size: 16px;
    color: #2E2E2E;
}

.backToTeam > p {
    display: flex;
    justify-content: flex-end;
    width: 155px;
}

.backToTeam:hover {
    cursor: pointer;
}

.backToTeam>img {
    width: 160px;
}


.ourTeam-body__gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

@media (max-width: 1400px) {
    .ourTeam-body {
        padding: 0 20px;
    }
}

.ourTeam-body__item {
    display: grid;
    place-items: center;
}

.ourTeam-body__img {
    width: 300px;
}


/* .ourTeam-body__img:hover {
    cursor: pointer;
    transition: width 2s, height 2s;
    width: 300px;
} */

@media (max-width: 1100px) {
    .ourTeam-body__gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .ourTeam-body__img {
        width:250px;
        height: 250px;
    }

    .ourTeam-body__img:hover {
        cursor: pointer;
        transition: width 2s, height 2s;
        width: 300px;
        height: 300px
    }

    .active-image {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 600px) {
    .ourTeam-body__img {
        width: 200px;
        height: 200px;
    }

    .ourTeam-body__img:hover {
        cursor: pointer;
        transition: width 2s, height 2s;
        width: 225px;
        height: 225px;
    }

    .active-image {
        width: 225px;
        height: 225px;
    }
}

@media (max-width: 510px) {
    .ourTeam-body__img {
        width: 150px;
        height: 150px;
    }

    .ourTeam-body__img:hover {
        cursor: pointer;
        transition: width 2s;
        width: 150px;
    }

    .active-image {
        width: 175px;
        height: 175px;
    }

    .ourTeam-body__member-title {
        justify-content: center !important;
        gap: 20px;
    }
}

@media (max-width: 420px) {


    .ourTeam-body__img {
        width: 125px;
        height: 125px;
    }

    .ourTeam-body__img:hover {
        cursor: pointer;
        transition: width 2s;
        width: 125px;
        height: 125px;
    }

    .active-image {
        width: 150px !important;
        height: 150px !important;
    }
}

.ourTeam-body__member {
    display: flex !important;
    flex-direction: column !important;
    gap: 40px !important;
    margin-top: 40px;
    position: relative !important;
    height: 200px !important;
}

@media (max-width: 600px) {
    .ourTeam-body__member {
        height: auto !important;
    }
}

.ourTeam-body__member-title {
    display: flex;
    width: 380px;
    font-family: 'Raleway', sans-serif;
    align-items: center;
    flex-direction: column;
}



.inactive-member {
    display: none;
}

.active-member {
    display: flex;
    width: 60%;
    justify-content: flex-start;
    margin-left: 125px;
}


@media (max-width: 1000px) {
    .active-member {
        margin-left: 0 !important;
    }
}

@media (max-width: 400px) {
    .active-member {
        width: 100%;
    }
}

@media (max-width: 280px) {
    .active-member {
        margin: 0 !important;
    }
}
@media (max-width: 400px) {
    .ourTeam-body__inner {
        place-items: start
    }
}

.ourTeam-body__member-title>h6 {
    font-size: 32px;
    text-align: center;
}

.ourTeam-body__member-title>p {
    font-size: 18px;
}

.ourTeam-body__member-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    left: 270px;
    gap: 30px;
    font-family: "Raleway", sans-serif;
    line-height: 30px;
}

@media (max-width: 1100px) {
    .ourTeam-body__member-inner {
        left: 200px;
    }
}

@media (max-width: 1000px) {
    .ourTeam-body__member-inner {
        position: relative !important;
        left: 0px !important;
    }
}

@media (max-width: 450px) {
    .ourTeam-body__member-inner {
        text-align: center;
    }
}

.ourTeam-body__member-btn {
    background-color: #ef7a0dff;
    width: 180px;
    height: 60px;
    color: #FFFFFF;
    font-size: 20px;
    border: none;
    font-family: 'Raleway', sans-serif;
}

.ourTeam-body__member-btn:hover {
    cursor: pointer;
    transition: background-color 1s, color 1s;
    background-color: #FFFFFF;
    color: #ef7a0dff;
    border: 1px solid #ef7a0dff;
}

.contacts-mainBody {
    display: grid;
    grid-template-columns: 1fr 2fr;
    margin-top: 60px;
}

@media (max-width: 1400px) {
    .contacts-mainBody {
        grid-template-columns: 1fr 6fr;
    }
}

.contacts-mainBody__item-1 {
    padding-bottom: 30px;
    margin: 100px auto;
}

.contacts-mainBody__item-1>h4 {
    font-size: 48px;
    font-weight: 100;
    border-left: 14px solid #ef7a0dff;
    padding-left: 20px;
    font-family: 'Raleway', sans-serif;
}

.contacts-mainBody__sub-item-1 {
    display: flex;
    flex-direction: column;
    font-family: 'Raleway', sans-serif;
    gap: 10px;
    margin-top: 30px;
}

.contacts-mainBody__sub-item-1:first-of-type {
    font-family: "Raleway", sans-serif;
}

.contacts-mainBody__sub-item-1>h6 {
    font-size: 24px;
}

.contacts-mainBody__sub-item-1 > p {
    font-family: 'Raleway', sans-serif;
}

.contacts-mainBody__item-2 {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.map {
    width: 800px;
    height: 800px;
    background-color: #333;
}

@media (max-width: 1400px) {
    .map {
        position: absolute;
        right: -10px;
    }
}

[class*="copyrights-pane"] {
    display: none !important;
}

.footer {
    background-color: #2E2E2E;
    display: grid;
    grid-template-columns: 1fr 1fr;
    font-family: 'Raleway', sans-serif;
    padding: 60px 0;
    margin-top: 100px;
}

.footer__item-1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    width: 80%;
    margin: 0 auto;
}

.footer__item-1>img {
    width: 200px;
}

.footer__item-1>p {
    color: #FFFFFF;
}

.footer__item-2 {
    display: flex;
    flex-direction: column;
    gap: 31px;
    align-items: center;
}
.tosl {   text-align: right;
    width: 100%;
    padding-right: 285px;  }
.tosl a{
font-size: 16px;
text-decoration: none;  
line-height: 20px;
font-feature-settings: 'pnum' on, 'lnum' on;
color: #FFFFFF;
}
.footer__item-2-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 240px;
}

.footer__item-2-inner>img {
    width: 175px;
    margin-left: auto;
}

.footer__item-2-inner>ul {
    display: flex;
    gap: 20px;
}

.footer__item-2-inner>ul>li {
    list-style-type: none;
}

.footer__item-2-inner>ul>li>a {
    text-decoration: none;
    color: #FFFFFF;
    font-size: 20px;
}

@media (max-width: 1000px) {
    .footer {
        display: flex;
        flex-direction: column;
        gap: 60px;
    }
}

.ourTeam {
    margin-bottom: 50px;
}

@media (max-width: 1400px) {
    .ourTeam {
        padding: 0 40px;
    }
}

.ourTeam-nav {
    display: flex;
    gap: 10px;
    margin-left: 10px;
}

@media (max-width: 1400px) {
    .ourTeam-nav {
        padding: 0 40px;
        margin-left: 0;
    }
}

@media (max-width: 1200px) {
    .ourTeam-nav {
        padding: 0px;
        margin-left: 10px;
    }
}

.ourTeam-nav>a {
    text-decoration: none;
    color: #000000;
}

.ourTeam-nav>a:last-of-type {
    color: #ACACAC !important;
}

.ourTeam-types {
    margin-top: 40px;
    display: block;
    margin-left: 10px;
    font-family: 'Raleway', sans-serif;
}
.ourTeam-types>h2 {
    font-size: 52px;
    border-left: 12px solid #ef7a0dff;
    padding-left: 10px;
    font-weight: 500;
}

.ourTeam-types>ul {
    display: flex;
    gap: 20px;
}




.ourTeam-types>ul>li {
    list-style-type: none;
}

.ourTeam-types>ul>li>a {
    text-decoration: none;
    color: #000000;
    font-size: 24px;
}

@media (max-width: 400px) {
    .ourTeam-types>ul {
        display: flex;
        gap: 15px;
    }
}
@media (max-width: 370px) {
    .ourTeam-types>ul {
        display: flex;
        gap: 10px;
    }
    .ourTeam-types>ul>li>a {
        font-size: 18px;
    }
}

@media (max-width: 1200px) {
    .ourTeam-types {
        align-items: center;
    }
}

.ourTeam-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
}

@media (max-width: 1200px) {
    .ourTeam-list {
        display: flex;
        flex-direction: column;
        gap: 50px;
    }

    .ourTeam-list>img {
        width: 50%;
        margin: 0 auto;
    }
}


@media (max-width: 700px) {
    .ourTeam-list>img {
        width: 60%;
    }
}

.ourTeam-list>ul {
    display: flex;
    flex-direction: column;
    margin-top: 40px;
}

.ourTeam-list>ul>li {
    display: flex;
    gap: 20px;
    height: 60px;
    align-items: center;
    line-height: 40px;
}

.ourTeam-list>ul>li>a {
    font-size: 28px;
    text-decoration: none;
    color: #000000;
}

.ourTeam-list>ul>li>p {
    font-size: 16px;
}

.ourTeam-partners {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 0;
    gap: 40px;
    margin-left: -4px;
}

.ourTeam-partners__item {
    width: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    font-family: "Raleway", sans-serif;
    margin: 20px 0;
}

@media (max-width: 600px) {
    .ourTeam-partners__item {
        align-items: center;
        text-align: center;
    }
}

.ourTeam-partners__item:hover {
    cursor: pointer;
}

.ourTeam-partners__item>h4 {
    font-size: 32px;
    font-family: 'Raleway', sans-serif;
    color: #000;
    text-align: center;
}

.ourTeam-partners__item > h4 > a {
    color: #000;
    font-size: 32px;
    font-family: 'Raleway', sans-serif;
    text-decoration: none;
}

.ourTeam-partners__item p {
    font-size: 20px;
    font-weight: 400;
    color: #000;
}

/* .ourTeam-partners__item>p {
    font-size: 16px;
} */


.ourTeamPartners__img {
 	width: 300px;

    height: 450px;
}

@media (max-width: 1200px) {
    .ourTeamPartners__img {
        height: auto;
            width: 100%;
    }
}


.ourTeam-partners__item_footer > a {
    text-decoration: none;
    color: #000000;
    border-bottom: 1px orange solid;
}

.mb-header {
    display: none;
    align-items: center;
    gap: 40px;
    position: relative;
    height: 60px;
    margin: 20px;
}

.mb-header__icon {
    position: absolute;
    right: 0;
    top: 0;
    width: 40px;
}

.mb-header__list {
    display: none;
    flex-direction: column;
    gap: 30px;
    list-style-type: none;
    overflow: hidden;
    height: 100%;
    width: 100%;
    position: fixed;
    background-color: rgba(0, 0, 0, 0.9);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    align-items: center;
    justify-content: center;
    z-index: 100;
}

.mb-header__icon:hover {
    cursor: pointer;
}

.mb-header__list>li>a {
    text-decoration: none;
    color: #FFFFFF;
    font-size: 28px;
}


.swiper {
    width: 300px;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 40px 0;
}

.swiper-slide {
    margin-bottom: 50px;
}

.mb-header__close-btn {
    filter: brightness(0) invert(1);
    width: 40px;
    position: absolute;
    right: 20px;
    top: 50px;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-pagination-bullet {
    width: 30px !important;
    height: 30px !important;
    color: #000000;
    background-color: #f99c1c !important;
    font-size: 20px;
    padding: 3px;
    border-radius: 0 !important;
}


.line-back {
    display: flex;
    flex-direction: column;
    font-family: "Raleway", sans-serif;
    margin: 30px 0;
    justify-content: center;
    text-align: center;
    width: 170px;
}

.line-back>a {
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    color: #000000;
}

.line-back>img {
    width: 170px;
    margin-right: 40px;
}

.active-link {
    color: #ef7a0dff !important;
    position: relative;
}

.active-link::before {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #ef7a0dff;
    bottom: 0;
    float: left;
    top: 30px;
    position: absolute;
}

.ourTeam-active>a {
    color: #ef7a0dff !important;
    border-bottom: 1px solid #ef7a0dff;
}

.ourTeam-active>p {
    color: #ef7a0dff !important;
}

.profile-body {
    display: grid;
    grid-template-columns: 1fr 4fr;
}

@media (max-width: 1400px) {
    .profile-body {
        padding: 40px;
    }
}

@media (max-width: 1050px) {
    .profile-body {
        grid-template-columns: 1fr;
/*         gap: 75px; */
    }

    .profile-body__item-1 > img {
        margin: 0 auto;
    }

    .profile-body__nav {
        gap: 20px !important;
    }

    .profile-body__desc-item {
        width: auto !important;
    }

    .profile-body__info {
        text-align: center;
    }

    .profile-body__info::before {
        display: none;
    }

    .profile-body__item-1 > img {
        max-width: 350px;
    }
}

.profile-body__item-1 {
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin-top: 30px;
}

.profile-body__info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-left: 40px;
    position: relative;
}

@media (max-width: 1000px) {
    .profile-body__info {
        margin-left: 0;
    }
}

@media (max-width: 500px) {
    .profile-body__nav {
        justify-content: center;
    }

    .profile-body__info details {
        padding: 0 40px;
    }

    .profile-body__desc-item {
        padding: 0 40px;
    }

    .profile-body__desc-item > p  {
        width: auto !important;
    }



    .profile-body__item-1 > img{
        padding: 0 !important;
        max-width: 300px !important;
    }

}

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

@media (max-width: 400px) {
    .profile-body__info > h4 {
        font-size: 40px !important;
    }

    .profile-body__info-item>p {
        font-size: 18px !important;
    }
    .ourTeam-nav {
        gap: 4px !important;
        font-size: 14px !important;
    }
}

@media (max-width: 320px) {
    .ourTeam-nav {
        font-size: 12px !important;
        gap: 4px !important;
    }

    .profile-body__info-item>p {
        font-size: 16px !important;
    }

    .profile-body__info>h4 {
        font-size: 34px !important;
    }
}

@media (max-width: 320px) {
    .ourTeam {
        padding: 0;
    }
}

.profile-body__info::before {
    content: "";
    width: 20px;
    height: 105%;
    background-color: #ef7a0dff;
    position: absolute;
    float: left;
    margin-left: -40px;
}

.profile-body__info>h4 {
    font-size: 48px;
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
}

.profile-body__info>h6 {
    font-size: 20px;
    font-family: 'Raleway', sans-serif;
}

.profile-body__info-item {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 20px;
    height: 100%;
}

.profile-body__info-item>p {
    font-family: 'Raleway', sans-serif;
    font-size: 20px;
}

.profile-body__item-2 {
    display: flex;
    justify-content: center;
}

.profile-body__desc-item {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 500px;
    font-family: "Raleway", sans-serif;
    font-size: 18px;
/*     justify-content: space-between; */
    margin-top: 100px;
}

.profile-body__desc-item > p {
    width: 500px;
    line-height: 28px;
}

.profile-body__nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 60px;
}

@media (max-width: 500px) {
    .line-forward__profile, .line-back__profile {
    display: flex;
    flex-direction: column;
    height: 60px;
    text-align: center;
    justify-content: space-between;
    }

    .line-forward__profile>a, .line-back__profile>a {
        align-items: center;
    }
}

.line-back__profile>a {
    color: #000000;
    text-decoration: none;
    display: flex;
    height: 100%;
    justify-content: center;
}

.line-forward__profile>a {
    color: #ef7a0dff;
    text-decoration: none;
    display: flex;
    height: 100%;
    justify-content: center;
}

.line-back__profile > img, .line-forward__profile > img {
    width: 100%;
}

.services-body {
    display: grid;
    grid-template-columns: 1fr 2fr;
    margin-bottom: 100px;
    gap: 40px;
}

.services-body__item-1 {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

@media (max-width: 1400px) {
    .services-body__item-2 {
        padding: 0 20px;
    }
}

.page-title {
    margin: 80px 0;
    margin-left: 15px;
}

@media (max-width: 1400px) {
    .page-title {
        padding: 0 30px;
    }
}

.page-title>h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 52px;
    font-weight: 400;
    height: 50px;
    padding-left: 20px;
}

.page-title>h2::before {
    content: "";
    width: 13px;
    height: 60px;
    background-color: #ef7a0dff;
    float: left;
    position: relative;
    margin-left: -25px;
}


.services-body__links {
    display: flex;
    flex-direction: column;
    font-family: 'Raleway', sans-serif;
    font-size: 32px;
    gap: 30px;
}

.services-body__links>li {
    list-style-type: none;
}

.services-body__link:hover {
    cursor: pointer;
}

.services-body__link-container {
    padding: 20px;
}

.services-body__link-container_active {
    background-color: #F7F7F7;
}

.services-body__active-link {
    color: #ef7a0dff;
    font-size: 40px;
    position: relative;
}

.services-body__active-link::after {
    content: "";
    height: 2px;
    width: 100%;
    background-color: #ef7a0dff;
    position: absolute;
    left: 0;
    bottom: 10px;
}

.services-body__link:hover {
    cursor: pointer;
}

.services-body__ls {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.services-body__ls_inactive {
    display: none;
}

.services-body__ls_active {
    display: flex;
}

.services-body__ls-title {
    font-size: 32px;
    font-family: 'Raleway', sans-serif;
}

.services-body__lsb {
    display: flex;
    flex-direction: column;
    gap: 40px;
    font-family: "Raleway", sans-serif;
}

.services-body__lsb-title {
    font-size: 18px;
}

.services-body__lsb>p {
    font-size: 16px;
    font-family: "Raleway", sans-serif;
}

.services-body__lsb>ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-family: "Raleway", sans-serif;
    font-size: 16px;
    margin-left: 40px;
}

.services-body__questions {
    background-color: #F7F7F7;
    font-family: "Raleway", sans-serif;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 40px;
}

.services-body__questions>h4 {
    font-family: 'Raleway', sans-serif;
    font-size: 32px;
}

.services-body__questions-item {
    border-left: 10px solid #ef7a0dff;
    height: 140%;
    padding-left: 15px;
}

.services-body__questions-item>h6 {
    font-size: 18px;
    font-weight: 600;
    font-style: italic;
}

.services-body__questions-item>p {
    font-size: 16px;
    font-weight: 400;
    margin-top: 15px;
}

.orange-word {
    color: #ef7a0dff;
    text-decoration: none;
    position: relative;
}

.orange-word::before {
    content: "";
    background-color: #ef7a0dff;
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: 1px;
}

.firm-body {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 100px;
    margin: 40px 0;
}

@media (max-width: 1400px) {
    .firm-body {
        padding: 0 40px;
    }
}

.firm-body__item-2 {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.firm-body__main-title>h4 {
    font-family: 'Raleway', sans-serif;
    font-size: 32px;
    font-weight: 400;
  margin-bottom: 20px; 
}

.firm-body__main-title>p {
    font-family: "Raleway", sans-serif;
    font-size: 16px;
}

.firm-body__sub-section {
    font-family: "Raleway", sans-serif;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.firm-body__sub-section>h6 {
    font-size: 24px;
    font-weight: 600;
}

.firm-body__sub-section>h6:before {
    content: "";
    width: 10px;
    height: 30px;
    background: #ef7a0dff;
    float: left;
}

.firm-body__sub-section>h6:before {
    margin-left: -20px;
}

.contacts-mainBody {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    font-family: "Raleway", sans-serif;
    gap: 40px;
}

.contacts-mainBody__item-1 {
    display: flex;
    flex-direction: column;
    width: 75%;
    padding-bottom: 50px;
}

.contacts-mainBody__item-1>p {
    font-size: 16px;
}

.contacts-mainBody__sub-item-1 {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contacts-mainBody__sub-item-1>h6 {
    /*color: #ef7a0dff;*/
    color: #000000;
    font-size: 28px;
}

.contacts-mainBody__sub-item-1>p {
    font-size: 18px;
}

.contactUs-body__item-2 {
    perspective: 500px;
}

@media (max-width: 1400px) {
    .contactUs-body {
        margin: 100px 0;
        padding: 0 20px;
    }

    .contactUs-body__item-2>img {
        width: 700px;
        height: 800px;
        position: absolute;
        top: -80px;
        right: -80px;
    }

}

@media (max-width: 1230px) {
    .contactUs-body__item-2>img {
        width: 600px;
        height: 700px;
        position: absolute;
        top: 60px;
        right: -130px;
    }
}

@media (max-width: 1230px) {
    .contactUs-body__item-2>img {
        display: none;
    }

    .contactUs-body {
        grid-template-columns: 1fr;
        place-items: center;
        margin-top: 0;
    }

    .contacts-mainBody__item-1 {
        margin: 0 auto;
    }

    .benefits-body {
        grid-template-columns: 1fr;
    }

    .benefits-body__item-1>h4 {
        width: auto;
    }

    .benefits__link-section {
        align-items: center;
    }

    .ourTeam-body {
        overflow: hidden;
    }

    .header {
        grid-template-columns: 1fr;
        height: 250px;
    }

    .header__item-1 {
        grid-template-columns: 1fr;
    }

    /*.header__logo {*/
    /*    margin: 0 auto;*/
    /*}*/

    .contactUs-body__item-1 {
        width: auto;
        margin-top: 75px;
    }

    .contactUs-body__item-1>p {
        width: 100%;
    }

    .main-contacts {
        display: flex;
        flex-direction: column;
    }

    .footer {
        display: flex;
        flex-direction: column;
        height: auto;
        gap: 100px;
        -webkit-align-items: center;
        align-items: center;
        padding: 40px 0;
    }

    .footer__item-1 {
        -webkit-align-items: center;
        align-items: center;
    }

    .footer__item-1>img {
        margin: 0 auto;
    }
    .footer__item-2-inner {
        width: 100%;
    }

    .footer__item-2-inner>img {
        margin: 0 auto;
    }

    .contacts-mainBody {
        display: grid;
/*         grid-template-columns: 1fr; */
        place-items: center;
    }

    .contacts-mainBody__item-1 {
        padding: 0;
    }

    .map {
        width: 100%;
        height: 100%;
        margin-bottom: 50px;
        display: none;
    }


    .firm-body {
        display: flex;
        flex-direction: column;
    }

    .services-body {
        display: flex;
        flex-direction: column;
        gap: 45px;
    }

    .ourTeam-partners {
        grid-template-columns: 1fr;
        place-items: center;
    }

    .ourTeam-types {
        margin-top: 150px;
    }

    .ourTeam-list>ul {
        gap: 40px;
    }

    .ourTeam-list>ul>li {
        flex-direction: column;
    }

    .firm-body__item-1 {
        display: flex;
        justify-content: center;
    }

    .firm-body__item-1>img {
        margin: 0 auto;
        width: 350px;
    }
}

.hidden-member {
    display: none;
}

.swiperIndex {
    height: 600px;
}

.benefits-body, .ourTeam-body, .contacts-mainBody__main {
    opacity: 0;
    transform: translateX(100px);
    transition: opacity 0.7s ease-in-out, transform 0.7s ease-in-out;
}

.benefits-body.animation-class, .ourTeam-body.animation-class, .contacts-mainBody__main.animation-class {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.7s ease-in-out, transform 0.7s ease-in-out;
}


.contacts-body {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}

.contacts-body__item-1 {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding-bottom: 60px;
}

.contacts-body__item-1 > h4 {
    font-family: 'Raleway', sans-serif;
    font-size: 32px;
}

.contacts-body__item-1 > p {
    font-family: "Raleway", sans-serif;
    font-size: 16px;
    line-height: 24px;
}

.contacts-body__sub-item-1:first-of-type>h6 {
    font-family: "Raleway", sans-serif;
}

.contacts-body__sub-item-1 {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.contacts-body__sub-item-1 > h6 {
    font-family: 'Raleway', sans-serif;
    color: #ef7a0dff;
    color: #000;
    font-size: 28px;
}
.contacts-body__sub-item-1 > p {
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
}

@media (max-width: 1500px) {
    .contacts-body__item-1 {
        padding: 0 40px 60px 40px;
    }
}

@media (max-width: 1250px) {
    .contacts-body {
        grid-template-columns: 1fr;
    }

    .contacts-body__item-1 {
        width: 600px;
        padding: 0 40px 40px 40px;
    }

    .contacts-body__item-2 {
        display: none;
    }
}

@media (max-width: 600px) {
    .contacts-body__item-1 {
        width: 100% !important;
    }
}

.profile-body__item-1 > img {
    padding: 0px;
    max-width: 384px;
}

summary {
    font-family: 'Raleway', sans-serif;
    font-size: 20px;
}

details p {
    font-family: 'Raleway', sans-serif;
    font-size: 20px;
}

.profile-arrow {
    width: 100%;
}

details p {
    padding: 10px 0;
}

.slick-slide {
    align-items: center !important;
}

.slick-slide img {
/* 	width: 282px; */
    width: auto;
    height: 300px;
    padding: 0 35px;
}

.slick-current img {
/* 	width: 384px; */
    width: auto;
    height: 384px;
/* 	padding: 10px; */
/* 	padding: 0 70px !important; */
}

.slick-slide > img:hover {
    cursor: pointer;
}

.slick-list {
    padding: 0px !important;
}

.ourTeam-body__member-inner > p {
    max-width: 300px;
    text-align: center;
}

.slick-prev:before {
    content: "<" !important;
    font-size: 50px !important;
    color: #2E2E2E !important;
}
.slick-next:before {
    content: ">" !important;
    font-size: 50px !important;
    color: #2E2E2E !important;
}

.slick-prev {
    left: 0 !important;
    z-index: 1000;
}


.slick-next {
    right: 0 !important;
    z-index: 1000;
}

.admittance-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.admittance-section > h6 {
    font-size: 20px;
    font-weight: bold;
}

.transform-img img {
    transform: scaleX(1.25);
}
.home-contacts {
    width: 95%;
}
.profile-body__info-item a{
    color: #000;
    text-decoration: none;
}
@media (max-width: 1400px) {
    .home-contacts {
        width: 95%;
    }
}
.contacts-mainBody__item-1.new{
    margin-bottom: 0;
    }
@media (max-width:991px) {
.contacts-mainBody__item-1.new{
    margin-bottom: 30px !important;
        font-size: 36px;
            margin-left: 10px !important;
    }
.benefits-body__item-1>ul {
    gap: 20px;
}
.benefits__link-container_active {
    padding: 5px 0;
}
.footer__item-2 {
    margin-top: -225px;
    padding-bottom: 100px;
        gap: 0px;
}
.footer__item-1>p {
    margin-top: 100px;
}
 .tos{   padding: 0 20px;
}
.benefits__link-section>h4 {
    font-size: 32px;
    font-weight: 500;
}
}
@media (max-width: 600px) {
    .home-contacts {
        width: 90%;
    }
    .contact-list-item .name {
    font-size: 28px !important;
}
    .ourTeam {
    padding: 0 10px;
}
    .ourTeam-types>h2 {
    font-size: 36px;
}
    .contactUs-body__item-1>h2 {
    font-size: 36px;
}
.contacts-btn__wrapper {
    margin-top: 0;
}
.contactUs-body {
    margin: 50px 0;
}
.benefits-body__item-1>h4, .contacts-mainBody__item-1.new>h4 {
    font-size: 32px;
    }
    .benefits__link_active {
    font-size: 26px !important;
}
.benefits__link_inactive {
    font-size: 20px;
}
.benefits__link_active::after{
    display: none;
}
.contactUs-body__item-1 {
    margin-top: 0;
}
.page-title {
    margin: 40px 0;
    font-size: 36px;
}
.firm-body__main-title>h4 {
    margin-bottom: 15px;
}
.firm-body__main-title>p , .firm-body__sub-section p {
    line-height: 24px;
}

.ourTeam-types {
    margin-top: 20px;
}
.ourTeam-partners {
    display: block;
    }
    .ourTeam-partners__item {
    width: 50%;
    padding: 0 10px;
    float: left;
    }
    .ourTeam-partners__item > h4 > a {
    font-size: 20px;
    word-spacing: 30000px;
}
.ourTeam-partners__item p {
    text-align: center;
    min-height: 48px;
}

 .services-body__active-link {
    font-size: 26px;
}
.services-body__active-link::after{
    display: none;
}
.services-body__links {
    font-size: 20px;
        gap: 20px;
}
.services-body__link-container {
    padding: 5px 20px;
}
.page-title>h2 {
    font-size: 36px;
}
}
.contacts-body.new .contacts-body__item-2{
    font-weight: 500;
font-size: 20px;
line-height: 30px;
font-feature-settings: 'pnum' on, 'lnum' on;
}
.contacts-body.new{
    gap: 10px;
    padding-bottom: 40px;
}
.contacts-body.new .contacts-body__item-2 p{
margin-bottom: 20px;
}
.contacts-body.new .contacts-body__item-1 {
    width: 600px;
    padding: 0 20px 40px 20px;
}
.contacts-body.new .contacts-body__sub-item-1 {
    width: 50%;
    float: left;
        margin-bottom: 20px;
}
.contacts-body.new .contacts-body__sub-item-1 .name{
font-weight: 500;
font-size: 16px;
line-height: 20px;
color: #A0A0A0;
}
.contact-list{
    border-top: 1px solid #EDEDED;
    padding-top: 40px;
        overflow: hidden;
            margin-bottom: 35px;
}
.contact-list-item .name{
    font-weight: 500;
font-size: 40px;
line-height: 47px;
}

.contact-list-item .name::after {
    content: "";
    display: block;
    width: 60px;
    height: 12px;
    margin-top: 5px;
background: #ef7a0dff;
}
.contact-list .info, .contact-list .photo {
    width: 50%;
    float: left;
    font-weight: 500;
font-size: 20px;
line-height: 30px;
font-feature-settings: 'pnum' on, 'lnum' on;
}
.contact-list .info .small-name{
    margin-top: 30px;
font-weight: 500;
font-size: 16px;
line-height: 20px;
color: #A0A0A0;
}
.contact-list .sub-adress {
        width: 33.333%;
    float: left;
}
.contact-list .info a, .contacts-body__sub-item-1 a{
    color: #000;
    text-decoration:none;
}
.contacts-body__sub-item-1.line{
    width: 100% !important;   
}
.contact-list .info a:hover, .contacts-body__sub-item-1.line a:hover{
    color: #000;
    text-decoration: underline;
}
@media (max-width:1250px) {
.contacts-body.new .contacts-body__item-2 {
    display: block;
      padding: 0 20px;
       margin-bottom: 40px;
    }
    .contact-list .contact-list-item {
    padding: 0 20px;
}
.contacts-body.new img, .contact-list img{
    max-width: 100%;
    height: auto;
}
}
@media (max-width:991px) {
.profile-body__info-item>p {
    font-size: 16px;
}
.services-body {
    margin-bottom: 0;
}
.tosl {
    text-align: center;
    padding-right: 0;
}
.contacts-body.new .contacts-body__item-1 {
    padding-bottom: 0;
}
.contacts-body.new .contacts-body__item-2 {
    display: block;
    padding: 0 20px;
        font-size: 16px;
            margin-bottom: 20px;
}
.contact-list .info, .contact-list .photo, .contact-list .sub-adress {
    width: 100%;
}
.contact-list .photo{
    margin-top: 30px;
}

}
.contacts-mainBody.no{
    display: none !important;
}
.contacts-mainBody__item-1.new{
    margin-bottom: 0;
        margin-left: 10px;
    }
    .tos p{    margin-bottom: 10px;