@import url(reset.css);

@font-face {
  font-family: "Roboto-Regular";
  src: url("/css/fonts/Roboto/Roboto-Regular/Roboto-Regular.eot");
  src:
    url("/css/fonts/Roboto/Roboto-Regular/Roboto-Regular.eot?#iefix") format("embedded-opentype"),
    url("/css/fonts/Roboto/Roboto-Regular/Roboto-Regular.svg#Roboto-Regular") format("svg"),
    url("/css/fonts/Roboto/Roboto-Regular/Roboto-Regular.ttf") format("truetype"),
    url("/css/fonts/Roboto/Roboto-Regular/Roboto-Regular.woff") format("woff"),
    url("/css/fonts/Roboto/Roboto-Regular/Roboto-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Roboto-Italic";
  src: url("/css/fonts/Roboto/Roboto-Italic/Roboto-Italic.eot");
  src:
    url("/css/fonts/Roboto/Roboto-Italic/Roboto-Italic.eot?#iefix") format("embedded-opentype"),
    url("/css/fonts/Roboto/Roboto-Italic/Roboto-Italic.svg#Roboto-Italic") format("svg"),
    url("/css/fonts/Roboto/Roboto-Italic/Roboto-Italic.ttf") format("truetype"),
    url("/css/fonts/Roboto/Roboto-Italic/Roboto-Italic.woff") format("woff"),
    url("/css/fonts/Roboto/Roboto-Italic/Roboto-Italic.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Museo-Sans";
  src: url("/css/fonts/MuseoSans/MuseoSansCyrl-500.eot");
  src:
    local("MuseoSansCyrl-500"),
    url("/css/fonts/MuseoSans/MuseoSansCyrl-500.eot?#iefix") format("embedded-opentype"),
    url("/css/fonts/MuseoSans/MuseoSansCyrl-500.woff") format("woff"),
    url("/css/fonts/MuseoSans/MuseoSansCyrl-500.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Museo-Sans-700";
  src: url("/css/fonts/MuseoSans/MuseoSansCyrl-700.eot");
  src:
    local("MuseoSansCyrl-500"),
    url("/css/fonts/MuseoSans/MuseoSansCyrl-700.eot?#iefix") format("embedded-opentype"),
    url("/css/fonts/MuseoSans/MuseoSansCyrl-700.woff") format("woff"),
    url("/css/fonts/MuseoSans/MuseoSansCyrl-700.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

* {
  font-family: "Roboto-Regular";
  box-sizing: border-box;
  line-height: 1.5;
  letter-spacing: 0.5px;
}

html {
  font-size: 16px;
  color: #343434;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Museo-Sans";
  text-transform: uppercase;
}

.roboto-regular {
  font-family: "Roboto-Regular";
  font-size: inherit;
}

h2 {
  font-size: 20px;
}

h3 {
  font-size: 17px;
}

.page-title h1 {
  font-size: 24px;
  margin: 10px 0;
  text-transform: uppercase;
  line-height: 1.5;
  letter-spacing: 1px;
  width: 100%;
}

h6 {
  font-size: 0.875rem;
}

/* span{
    font-size: 0.7rem;
} */
p,
li {
  font-size: 16px;
  color: #343434;
  line-height: 160%;
}

a {
  text-decoration: none;
  color: #2559bf;
  font-size: 1rem;
}

a:hover {
  color: #2559bf;
}

body {
  background-color: #f8f8f8;
}

ul li,
ul ol {
  list-style: none;
}

ol {
  counter-reset: my-awesome-counter;
}

ol li {
  counter-increment: my-awesome-counter;
  padding: 5px 5px 5px 8%;
  text-align: left;
}

ol li::before {
  content: counter(my-awesome-counter) ". ";
  font-family: "Roboto-Regular";
  color: #343434;
  position: absolute;
  width: 1px;
  text-align: right;
  display: flex;
  justify-content: flex-end;
  left: 15px;
}

header,
section,
main,
footer {
  /* width: 100%;
    display: flex;
    justify-content: center; */
  position: relative;
}

main {
  flex-direction: column;
  padding: 75px 0;
}

.header {
  background: #fff;
  z-index: 2222;
  width: 320px;
  left: -320px;
  -webkit-transition: left 0.4s ease-in-out;
  -moz-transition: left 0.4s ease-in-out;
  -ms-transition: left 0.4s ease-in-out;
  -o-transition: left 0.4s ease-in-out;
  transition: left 0.4s ease-in-out;
  position: fixed;
  max-height: 100%;
  min-height: 100%;
  top: 0;
}

.container {
  width: 100% !important;
  max-width: 1580px;
  height: 100%;
  padding: 0 60px;
  position: relative;
  text-align: center;
  box-sizing: border-box;
  margin: 0 auto;
}

.right-container {
  padding: 0;
  max-width: 1180px;
  width: 100%;
  text-align: left;
}

.page-with-left-menu {
  display: flex;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.flex-column-align-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.flex-column-justify-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.flex-column-align-center-justify-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.flex-align-center {
  display: flex;
  align-items: center;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.flex-between-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.flex-between-align-end {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.flex-around {
  display: flex;
  justify-content: space-around;
}

.flex-around-wrap {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.header .container {
  padding: 0;
  overflow-y: auto;
  max-height: 100%;
  height: 100%;
  position: absolute;
}

.flex-center {
  display: flex;
  justify-content: center;
}

.flex-end {
  display: flex;
  justify-content: flex-end;
}

.font-white-18 {
  font-size: 18px;
  color: #fff;
}

.link-blue {
  color: #2353b0;
}

.link-blue-255 {
  color: #2559bf;
}

.hide {
  display: none;
}

.white-text {
  color: #fff;
}

.menu {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  background: #fff;
  height: 100%;
}

.header.open {
  left: 0;
}

.header.open .mobile-menu-background {
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.input {
  border: none;
  padding: 10px;
  color: #343434;
  font-size: 14px;
  border-bottom: 1px solid #343434;
  background: none;
}

.input::placeholder {
  font-family: "Roboto-Italic";
  color: #343434;
}

.input:-moz-placeholder {
  font-family: "Roboto-Italic";
  color: #343434;
}

.input:-ms-input-placeholder {
  font-family: "Roboto-Italic";
  color: #343434;
}

.input:-webkit-input-placeholder {
  font-family: "Roboto-Italic";
  color: #343434;
}

.white-input {
  color: #fff;
  border-bottom: 1px solid #fff;
}

.white-input::placeholder {
  font-family: "Roboto-Italic";
  color: #fff;
}

.white-input:-moz-placeholder {
  font-family: "Roboto-Italic";
  color: #fff;
}

.white-input:-ms-input-placeholder {
  font-family: "Roboto-Italic";
  color: #fff;
}

.white-input:-webkit-input-placeholder {
  font-family: "Roboto-Italic";
  color: #fff;
}

.textarea {
  background: none;
  color: #343434;
  border: 1px solid #343434;
  font-size: 14px;
  padding: 10px;
  border-radius: 5px;
  resize: none;
}

.textarea::placeholder {
  font-family: "Roboto-Italic";
  color: #343434;
}

.textarea:-moz-placeholder {
  font-family: "Roboto-Italic";
  color: #343434;
}

.textarea:-ms-input-placeholder {
  font-family: "Roboto-Italic";
  color: #343434;
}

.textarea:-webkit-input-placeholder {
  font-family: "Roboto-Italic";
  color: #343434;
}

.white-textarea {
  color: #fff;
  border: 1px solid #fff;
}

.white-textarea::placeholder {
  font-family: "Roboto-Italic";
  color: #fff;
}

.white-textarea:-moz-placeholder {
  font-family: "Roboto-Italic";
  color: #fff;
}

.white-textarea:-ms-input-placeholder {
  font-family: "Roboto-Italic";
  color: #fff;
}

.white-textarea:-webkit-input-placeholder {
  font-family: "Roboto-Italic";
  color: #fff;
}

.button {
  width: 100%;
  max-width: 185px;
  border-radius: 7px;
  font-size: 16px;
  border: none;
  height: 45px;
  cursor: pointer;
}

.white-button {
  background: #fff;
  color: #2559bf;
}

.blue-button {
  width: 100%;
  min-width: 160px;
  max-width: max-content;
  padding: 0 10px;
  background: #2559bf;
  border: 1px solid #2559bf;
  box-sizing: border-box;
  border-radius: 7px;
  color: #fff;
  font-size: 1rem;
  height: 45px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blue-button:hover {
  /* background: #fff;
    color: #2353B0; */
  background: #3b70d9;
  box-shadow: 0px 0px 15px rgba(96, 149, 255, 0.5);
}

.blue-button:active {
  filter: drop-shadow(0px 0px 15px rgba(96, 149, 255, 0.5));
}

.blue-button:disabled {
  background: #b0bcd3;
  border: none;
  cursor: auto;
  box-shadow: none;
}

.menu-list {
  padding: 63px 30px 0 40px;
}

.menu-list li a {
  text-decoration: none;
  color: #343434;
  line-height: 19px;
  padding: 15px 0;
  font-size: 16px;
  text-transform: uppercase;
  text-decoration: none;
  display: block;
  border-bottom: 1px solid #eaebf0;
  text-align: left;
  font-weight: 600;
}

.submenu {
  display: none;
  flex-direction: column;
}

.submenu div .menu-list li a {
  font-size: 14px;
  color: #2559bf;
  padding: 5px 35px;
}

.submenu div h6 {
  font-size: 16px;
  color: #343434;
  margin: 0;
  padding: 10px 0 10px 0;
  position: relative;
  /* border-bottom: 1px solid #eaebf0; */
  text-align: left;
  margin-left: 20px;
}

.submenu div h6.menu-item:after {
  top: 26px;
}

.submenu-big .menu-list {
  display: none;
  flex-direction: column;
  padding: 0;
}

.login-link {
  font-size: 16px;
  color: #2353b0;
  font-weight: 600;
  text-transform: uppercase;
}

.free_consultation {
  border-radius: 5px;
  font-size: 16px;
  color: #ffffff;
  cursor: pointer;
  z-index: 2;
  position: relative;
  display: block;
  text-align: center;
  width: 240px;
  background: none;
  font-weight: 600;
  text-transform: uppercase;
  text-align: left;
  margin: 0;
  padding: 0;
}

.main-screen-mobile-consultation .free_consultation {
  font-weight: 100;
  text-transform: initial;
  text-align: center;
  padding: 12px 20px;
  background: #f7f9ff;
  border: 1px solid rgba(37, 89, 191, 0.3);
  box-sizing: border-box;
  border-radius: 5px;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  text-align: center;
  color: #2353b0;
  width: 200px;
  font-weight: 600;
}

.mobile-header {
  width: 100%;
  position: fixed;
  top: 0;
  height: 63px;
  background: #fff;
  left: 0;
  z-index: 3333;
  box-shadow: 0px 4px 4px rgb(0 0 0 / 10%);
  display: flex;
}

.mobile-header .link-blue {
  position: absolute;
  right: 40px;
  top: 20px;
  text-transform: capitalize;
  transition: background-color 0.8s ease-out;
  background-color: rgba(0, 0, 0, 0);
}

.mobile-header.scroll {
  background-color: rgba(128, 128, 128, 0.4);
}

.mobile-header-margin {
  width: 28vw;
  max-width: 140px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.mobile-header-mail {
  margin-right: 25%;
  display: flex;
}

.company-name {
  color: #2353b0;
  text-align: left;
  line-height: 1px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.company-name p {
  color: #2353b0;
  font-size: 11px;
  line-height: normal;
  margin: 0;
  text-align: left;
  font-weight: bold;
}

.company-name span {
  font-size: 10px;
  text-align: left;
  line-height: normal;
}

.navBurger {
  position: fixed;
  left: 40px;
  top: 20px;
  cursor: pointer;
  /* background: #6C88AC; */
  background: #2559bf;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-background-clip: content-box;
  background-clip: content-box;
  width: 30px;
  height: 24px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.navBurger:before {
  content: "";
  position: absolute;
  /* background:#6C88AC; */
  background: #2559bf;
  height: 2px;
  width: 100%;
  right: 0;
  will-change: rotate;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  top: -10px;
}

.navBurger:after {
  content: "";
  position: absolute;
  /* background: #6C88AC; */
  background: #2559bf;
  height: 2px;
  width: 100%;
  right: 0;
  will-change: rotate;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  bottom: -10px;
  width: 100%;
}

.navBurger.active {
  background: transparent;
  -webkit-background-clip: content-box;
  background-clip: content-box;
  /* left: 340px; */
  z-index: 3;
}

.navBurger.active:before {
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
  top: 0;
  background: #6c88ac;
  /* background: #fff; */
  width: 110%;
}

.navBurger.active:after {
  bottom: 0;
  -webkit-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
  background: #6c88ac;
  /* background: #fff; */
  width: 110%;
}

.header-buttons ul {
  padding: 20px 30px 20px 40px;
}

.mobile-header-logo {
  margin-left: auto;
  padding-right: 10px;
}

.mobile-logo {
  max-width: 60px;
  margin-left: 10px;
}

.header-buttons ul li {
  position: relative;
  padding: 10px 0;
  text-align: left;
}

.desktop-lang-switcher {
  display: none;
}

.mobile-lang-switcher {
  padding-bottom: 15px;
}

.mobile-lang-switcher ul {
  display: flex;
  justify-content: space-between;
  max-width: 240px;
}

.current_language {
  cursor: pointer;
  position: relative;
  font-size: 13px;
  color: #343434;
  font-weight: bold;
  text-transform: uppercase;
}

.lang-link {
  font-size: 13px;
  color: #343434;
  text-transform: uppercase;
}

.lang-switcher ul li a {
  font-size: 1rem;
  color: #343434;
  text-transform: uppercase;
}

.lang-switcher ul li a:hover {
  color: #2559bf;
}

.empty-btn {
  border: 1px solid #ffffff;
  border-radius: 5px;
  color: #fff;
  font-size: 14px;
  background: none;
  padding: 10px 20px;
  cursor: pointer;
  width: 100%;
  max-width: 250px;
}
.empty-btn:hover {
  background: #3b70d9;
  border: 1px solid #3b70d9;
  box-shadow: 0px 0px 15px rgba(96, 149, 255, 0.5);
}

.main-screen {
  max-height: 1080px;
  height: 100vh;
  /* height: calc(var(--vh, 1vh) * 100); */
}

.main-screen-video {
  background-image: url("/assets/img/background_mobile_new.avif");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  /* filter: blur(20px) brightness(0.7); */
  /* transition: filter 0.1s ease-in-out; */
  position: relative;
}

.main-screen-content {
  background: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.main-screen-video-bg {
  display: none;
}

.main-screen-description {
  height: 100%;
}

.logo {
  position: absolute;
  top: 3%;
  right: 2%;
  width: 153px;
}

.main-logo {
  max-width: 85px;
  /* padding-right: 40px; */
  z-index: 2;
  position: relative;
  display: none;
}

.mobile-main-link {
  display: block;
  font-size: inherit;
}

.section-main-page {
  padding: 25px 0;
}

.footer-menu {
  background-color: #fff;
  padding: 60px 0;
}

.footer-menu-list {
  width: 100%;
  max-width: 750px;
  display: none;
}

.footer-menu-social {
  width: 100%;
  margin: 0 auto;
  max-width: 300px;
}

.footer-contacts-list-item p {
  line-height: 181.5%;
}

.footer-contacts-list-item p a {
  font-size: inherit;
}

.footer-conacts-link {
  padding: 0;
  display: flex;
  align-items: center;
}

.footer-conacts-link h6 {
  text-transform: uppercase;
  margin: 0;
}

.footer-contacts-list {
  flex-wrap: wrap;
}

.footer-conacts-link img {
  width: 25px;
  margin-left: 10px;
  border-radius: 5px;
}

.footer-contacts-list-item-azerbaijan img {
  height: 16px;
}

.footer-contacts {
  display: none;
}

.footer-copyright {
  padding: 15px 0 0 38px;
}

.footer-copyright > div {
  width: 100%;
}

.copyright p {
  font-size: 12px;
  text-transform: uppercase;
  text-align: left;
}

.section-title,
.page-title,
.page-content,
.section-description {
  text-align: left;
}

.section-title h3 {
  font-size: 17px;
  font-weight: 600;
  text-transform: uppercase;
}

.page-content a {
  font-size: inherit;
}

.right-container .page-title {
  max-width: 100%;
  padding-top: 0;
}

.right-container .page-title h1 {
  margin-top: 0;
  margin-bottom: 0;
}

.list-item {
  padding: 5px 0 5px 20%;
  position: relative;
  display: block;
  width: 100%;
  text-align: left;
}

.list-item:before {
  position: absolute;
  content: "";
  width: 10vw;
  max-width: 48px;
  height: 0;
  border-top: 3px solid #2559bf;
  top: 14px;
  left: 0;
}

.useful-links-table {
  padding-bottom: 60px;
}

.info-table {
  width: 100%;
}

.info-table th {
  border-bottom: 3px solid #2353b0;
  text-align: center;
  /* font-family: 'Axiforma'; */
  font-family: "Museo-Sans";
  font-size: 1rem;
  color: #2353b0;
  font-weight: 100;
  padding: 15px;
  vertical-align: middle;
}

.info-table tr td {
  border-bottom: 1px solid #989898;
  padding: 15px 3px;
  font-size: 0.825rem;
  color: #343434;
  vertical-align: middle;
}

.info-table tr td:not(:last-child) {
  border-right: 1px solid #989898;
}

.two-columns-table tr td:nth-child(2) {
  padding-left: 40px;
}

.left-side-table tr td:first-child {
  width: 65%;
}

.right-side-table tr td:nth-child(2) {
  width: 85%;
  text-align: left;
}

.td-text-align {
  text-align: center;
}

.tr-border {
  border-bottom: 3px solid #989898;
}

.patent-office-table tr td:first-child,
.patent-office-table tr td:nth-child(2) {
  text-align: center;
}

.info-table-description {
  font-size: 1.15rem;
  color: #343434;
  display: block;
  padding-top: 10px;
}

.desktop-legislation {
  display: none;
}

.mobile-legislation-item > a {
  display: block;
  box-sizing: border-box;
  padding: 20px 0;
  border-bottom: 2px solid #b8b8b8;
  text-align: left;
}

.mobile-legislation-item > a h4 {
  margin: 0;
}

.mobile-legislation-table {
  width: 100%;
  text-align: left;
}

.mobile-legislation-table tr:first-child td {
  padding-top: 15px;
}

.mobile-legislation-table tr:last-child td {
  padding-bottom: 15px;
}

.mobile-legislation-table tr td:first-child {
  width: 35%;
  padding-right: 10px;
}

.mobile-legislation-table tr td {
  font-size: 14px;
  color: #848484;
  line-height: 140%;
  padding: 5px 0;
}

.mobile-legislation-table tr:first-child td:first-child {
  font-weight: bold;
}

.mobile-legislation-table tr:first-child td:last-child {
  color: #343434;
}

.mobile-legislation-item .mobile-legislation-table:not(:last-child) {
  border-bottom: 0.7px solid #b8b8b8;
}

.mobile-legislation .mobile-hidden-content h4:after {
  right: 10px;
}

.form-row-between {
  display: flex;
  justify-content: space-between;
}

.form-input-container {
  position: relative;
  padding-bottom: 20px;
}

.form-input {
  width: 100%;
  border: none;
  border-bottom: 1px solid #a6afce;
  padding: 10px 2px;
  font-size: 16px;
  position: relative;
  z-index: 2;
  color: #343434;
  background: none;
}

.form-input:-webkit-autofill {
  -webkit-box-shadow: inset 0 0 0 50px #fff !important;
  /* Цвет фона */
  box-shadow: inset 0 0 0 1000px #fff;
  -webkit-text-fill-color: #343434 !important;
  /* цвет текста */
  color: #343434 !important;
  /* цвет текста */
}

.form-input::-webkit-inner-spin-button {
  display: none;
}

.form-input::-webkit-outer-spin-button,
.form-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.login-form .form-input {
  max-width: 300px;
}

.form-placeholder {
  position: absolute;
  left: 0;
  top: 10px;
  transition: 0.5s;
  z-index: 1;
  font-size: 14px;
  color: #848484;
}

.form-input:focus ~ .form-placeholder,
.form-input:not(:focus):valid ~ .form-placeholder,
.form-input:disabled ~ .form-placeholder {
  font-size: 12px;
  top: -10px;
  z-index: 5;
}

.form-select {
  margin-right: 5%;
  border: none;
  border-bottom: 1px solid #a6afce;
  font-size: 14px;
  height: 100%;
  color: #848484;
  width: auto;
}

.input-errors {
  position: absolute;
  bottom: 10px;
  font-size: 11px;
  color: red;
  left: 0;
  width: 100%;
  text-align: right;
}

/*Contact us */
.contact-us-container {
  display: flex;
}

.contact-us-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
  padding-top: 100px;
}

.contact-us {
  max-width: 1085px;
  background: #fff;
  border: 1px solid #e2e2e2;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px 40px 40px;
  border-radius: 3px;
  position: relative;
}

.modal-consultation .contact-us {
  margin: 0 15px;
}

.section-main-page .contact-us {
  padding: 50px 40px;
}

.section-main-page .contact-us-map {
  display: none;
}

.section-main-page .contact-us,
.section-main-page .contact-us-map {
  border-top: 7px solid #2559bf;
}

.contact-us-head {
  width: 100%;
  text-align: left;
}

.section-main-page .contact-us-head {
  text-align: left;
}

.section-main-page .contact-us-head h4 {
  font-weight: 600;
}

.contact-us-inputs {
  width: 100%;
}

.contact-us-button {
  width: 100%;
  text-align: center;
  padding-top: 20px;
}

.section-main-page .contact-us-button {
  text-align: right;
}

.contact-us-button button {
  max-width: 100%;
}

.contact-us-textarea-wrapper {
  padding: 18px 0px 3px 1px;
}

.contact-us-textarea {
  height: 100%;
  width: 100%;
  resize: none;
  border: 1px solid #a6afce;
  box-sizing: border-box;
  border-radius: 5px;
  padding: 15px 50px 50px 15px;
}

.contact-us-textarea::-webkit-input-placeholder {
  color: #848484;
  font-size: 14px;
}

.error.contact-us-textarea::-webkit-input-placeholder {
  color: red;
}

.contact-us-map {
  width: 100%;
  max-width: 613px;
}

#map_wrapper {
  width: 100%;
  display: flex;
  height: 100%;
}

#map_canvas {
  position: relative;
  overflow: hidden;
  height: 100%;
  width: 100%;
}

/*END Contact us */
.footer-social {
  width: 100%;
}

.social-list {
  width: 100%;
}

.social-list ul {
  flex-direction: row;
  width: 100%;
  max-width: 192px;
  padding-top: 20px;
  align-items: center;
}

.social-logo {
  display: block;
}

.social-logo.social-instagram {
  width: 22px;
  height: 22px;
  background: url("/assets/img/icons/instagram.svg");
}

.social-logo.social-instagram:hover {
  background: url("/assets/img/icons/instagram-hover.svg");
}

.social-logo.social-fb {
  width: 21px;
  height: 21px;
  background: url("/assets/img/icons/fb.svg");
}

.social-logo.social-fb:hover {
  background: url("/assets/img/icons/fb-hover.svg");
}

.social-logo.social-linkedin {
  width: 22px;
  height: 22px;
  background: url("/assets/img/icons/linkedin.svg");
}

.social-logo.social-linkedin:hover {
  background: url("/assets/img/icons/linkedin-hover.svg");
}

.social-logo.social-vk {
  width: 26px;
  height: 16px;
  background: url("/assets/img/icons/vk.svg");
}

.social-logo.social-vk:hover {
  background: url("/assets/img/icons/vk-hover.svg");
}

.social-logo.social-youtube {
  width: 26px;
  height: 17px;
  background: url("/assets/img/icons/youtube.svg");
}

.social-logo.social-youtube:hover {
  background: url("/assets/img/icons/youtube-hover.svg");
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: #0c0c0c63;
  z-index: 20000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease-out;
}

.consultation {
  background: #fff;
  width: 100%;
  max-width: 538px;
  padding: 35px 35px 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.consultation-inputs,
.consulatation-btn {
  width: 100%;
}

.consulatation-btn {
  text-align: center;
}

.consultation-msg {
  padding-top: 20px;
  padding-bottom: 40px;
}

.input-errors {
  position: absolute;
  bottom: 0;
  font-size: 11px;
  color: red;
  left: 0;
  width: 100%;
  text-align: right;
}

.thank-msg {
  border: 1px solid white;
  max-width: 560px;
  -webkit-box-shadow: 0px 7px 27px -2px rgba(0, 0, 0, 0.52);
  box-shadow: 0px 7px 27px -2px rgba(0, 0, 0, 0.52);
  left: -1px;
  display: flex;
  border-radius: 5px;
  height: 117%;
  padding: 6px;
  background: #fff;
}

.thank-msg img {
  width: 33%;
  margin: 10px 15px 10px 25px;
}

.thank-msg div {
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  /* padding-right: 74px; */
  color: #666;
  font-family: ROBOTO;
  font-size: 15px;
}

.thank-msg span {
  font-weight: bold;
  color: black;
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.5;
}

.thank-msg p {
  font-size: 12px;
  line-height: 1.5;
}

.current-link-menu {
  font-weight: bold !important;
}

.current-link-menu:hover {
  color: inherit !important;
}

#toTop {
  display: none;
  text-decoration: none;
  position: fixed;
  top: 90px;
  right: 10px;
  overflow: hidden;
  width: 51px;
  height: 51px;
  border: none;
  text-indent: 100%;
  background: url(/assets/img/additionalImg/arrowUp.svg) no-repeat left top;
  opacity: 0.7;
  border: 1px solid #2353b0;
  border-radius: 50%;
  background-position: center;
}

#toTop:hover {
  background-image: url(/assets/img/additionalImg/arrowUp-white.svg);
  background-color: #2353b0;
}

#toTopHover {
  width: 51px;
  height: 51px;
  display: block;
}

.footer-social-text {
  text-align: left;
  font-size: 13px;
  color: #343434;
  line-height: 140.5%;
  margin: 27px 0 10px;
  width: 100%;
}

.dash-list li {
  position: relative;
  padding: 7px 0 7px 40px;
  text-align: left;
}

.dash-list li:before {
  position: absolute;
  content: "";
  width: 25px;
  height: 0;
  border-top: 2px solid #2559bf;
  top: 20px;
  left: 0;
}

.float-dash-list.dash-list li:before {
  display: none;
}

.float-dash-list.dash-list li {
  display: flex;
  align-items: center;
  padding: 7px 0;
}

.float-dash-list.dash-list span {
  max-width: calc(100% - 35px);
}

.float-dash-list.dash-list .dash {
  width: 25px;
  height: 0;
  border-top: 2px solid #2559bf;
  display: block;
  margin-right: 10px;
}

.open-dash-list li {
  color: #2353b0;
  font-family: "Museo-Sans";
  cursor: pointer;
}

.open-dash-list-item {
  display: none;
  cursor: default;
  color: initial;
  padding-top: 7px;
}

.open-dash-list-item.open {
  display: block;
}

.background-text {
  background: #ffffff;
  border-radius: 3px 3px 0 0;
  padding: 35px 30px;
  box-shadow: 0px 0px 10px rgba(35, 49, 84, 0.1);
  border-left: 3px solid #2559bf;
}

.background-link {
  background: rgba(255, 255, 255, 0.705);
  border: 2px solid rgba(37, 89, 191, 0.4);
  box-sizing: border-box;
  border-radius: 5px;
  padding: 20px 30px;
  display: block;
  width: 100%;
  position: relative;
  font-weight: bold;
}

.background-link:after {
  content: "";
  background-image: url("/assets/img/arrow-right-blue.svg");
  position: absolute;
  width: 10px;
  height: 15px;
  background-repeat: no-repeat;
  background-size: cover;
  top: 24px;
  right: 30px;
}

.background-link:hover {
  color: #477eec;
}

.background-link:hover:after {
  filter: brightness(1.155);
}

.select2-container {
  z-index: 999999;
}

.translation_list {
  width: 100%;
}

.arrow-down {
  width: 20px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.arrow-down.rotate180deg {
  transform: rotate(180deg);
}

.test .jurisdictions_services {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.test .jurisdictions_services .services_link {
  width: 100%;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 5px;
  padding: 20px 30px;
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.test .jurisdictions_services .services_link div {
  background: rgba(255, 255, 255, 0.7);
  border: 2px solid rgba(37, 89, 191, 0.4);
  border-radius: 5px;
  position: absolute;
  width: 100%;
  height: 100%;
  transition: all 0.4s ease;
  left: 0;
  top: 0;
}

.test .jurisdictions_services .services_link span {
  color: #808080;
  z-index: 1;
}

.test .services_link:hover div {
  transform: perspective(550px) translateZ(12px);
  background: #ecf3fa;
}

.test .services_link a {
  z-index: 1;
}

.test .services_link:hover a {
  color: #477eec;
}

.custom-list {
  display: flex;
}

.custom-list > div {
  display: flex;
  align-items: center;
}

.custom-list ul li a {
  color: #1e64ce;
}

.page-head-img {
  width: 100%;
  margin-bottom: 25px;
}

.page-content .jurisdictions-national-office img {
  max-width: 89px;
  display: none;
  height: auto;
}

.page-content .jurisdictions-ip-legislation img {
  max-width: 90px;
  display: none;
  height: auto;
}

.contact-us-slider {
  width: 442px;
  margin: 0 !important;
  border-top: 7px solid #2559bf;
  background: rgba(245, 250, 255, 0.7);
  border-left: 1px solid #dbdbdb;
  border-bottom: 1px solid #dbdbdb;
  border-radius: 0 0 0 3px;
  display: none;
}

.contact-us-slider .slick-arrow {
  display: none !important;
}

.contact-us-slider .slick-slide {
  width: 442px;
}

.contact-us-slider .slick-dots {
  position: relative;
  bottom: auto;
}

.contact-us-with-adress {
  align-items: normal;
}

.contact-us-with-adress .contact-us {
  max-width: 728px;
  border-top: 7px solid #2559bf;
  border-left: none;
  border-radius: 0 0 3px 0;
}

.contact-us-with-adress .contact-us h4 {
  text-align: left;
}

.contact-us-with-adress .contact-us-inputs {
  width: 100%;
}

.contact-us-slider .adress {
  width: 100%;
  padding-top: 40px;
  padding-left: 100px;
}

.contact-us-slider .adress a {
  font-size: inherit;
}

.contact-us-slider .adress .place p {
  margin-top: 10px;
}

.contact-us-slider .adress .mail p {
  margin: 5px 0;
}

.contact-us-with-adress h4 {
  font-weight: 100;
  margin: 0;
}

.contact-us-with-adress span {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  font-family: "Museo-Sans";
  color: #343434;
}

.contact-us-with-adress .contact-us-button {
  text-align: right;
}

.contact-us-name-row {
  display: flex;
  justify-content: space-between;
}

.contact-us-name-row > div {
  width: 45%;
}

.test .our-services-item {
  width: 100%;
  max-width: 1380px;
}

.test .our-services-item h2 {
  text-align: left;
  font-size: 24px;
}

.test .our-services-item > div {
  display: flex;
  justify-content: space-between;
}

.test .our-services-item-img {
  display: none;
}

.test .our-services-item-img img {
  width: 100%;
  max-height: 490px;
}

.test .our-services-item-text {
  text-align: left;
}

.test .our-services-item-text p:first-child {
  margin-top: 0;
}

.test .our-services-item-text h4 {
  margin-bottom: 10px;
}

.test .our-services-item-text a {
  text-transform: none;
}

.test .list-item {
  padding: 5px 0 5px 45px;
}

.test .list-item:before {
  max-width: 29px;
}

.main-btn {
  background: #2559bf;
  width: 100%;
  /* max-width: 270px; */
  max-width: 350px;
  border: 1px solid #2559bf;
  padding: 12px;
  font-size: 16px;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
  margin: 5px 0;
}

.main-btn:hover {
  background: #fff;
  color: #2559bf;
}

.main-btn-reverse {
  background: #fff;
  color: #2559bf;
}

.main-btn-reverse:hover {
  background: #2559bf;
  color: #fff;
}

/*---------------------custom checbox --------------------*/
.custom-checkbox {
  position: relative;
  width: 38px;
  height: 20px;
  cursor: pointer;
  display: flex;
}

.custom-checkbox input {
  appearance: none;
}

.custom-checkbox span {
  position: absolute;
  /*абсолютное позиционирование*/
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 40px;
  /*закругление углов*/
  background: #c3d7ff;
  /*цвет чекбокса*/
  transition: 0.2s;
  /*тень*/
}

.custom-checkbox input:checked ~ span {
  background: #2153b4;
}

.custom-checkbox span i {
  position: absolute;
  top: 1px;
  left: 1px;
  width: 18px;
  height: 18px;
  background: #fff;
  /*цвет круга*/
  border-radius: 50%;
  transition: 0.2s;
  background: #ffffff;
  box-shadow:
    0px 1px 3px rgba(0, 0, 0, 0.1),
    0px 1px 2px rgba(0, 0, 0, 0.06);
}

.custom-checkbox input:checked ~ span i {
  left: 20px;
  /*сдвиг круга*/
}

/*--------------------- end custom checbox --------------------*/

/*prompt*/
.prompt {
  cursor: help;
  position: relative;
  margin-left: 3px;
}

.prompt-logo {
  background: #d1d1d1;
  width: 14px;
  height: 14px;
  border-radius: 3px;
  color: #fff;
  font-size: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: help;
  font-weight: bold;
  position: relative;
  padding-left: 1px;
}

.prompt-text {
  position: absolute;
  display: none;
  content: attr(data-title);
  padding: 15px 20px;
  background: rgba(39, 53, 82, 0.9);
  position: absolute;
  z-index: 1;
  width: max-content;
  max-width: 200px;
  top: 170%;
  left: -655%;
  font-size: 12px;
  line-height: 150%;
  border-radius: 2px;
  color: #fff;
}

.prompt:hover .prompt-text {
  display: block;
}

.prompt-text:after {
  content: "";
  border: 10px solid transparent;
  border-bottom: 10px solid rgba(39, 53, 82, 0.9);
  position: absolute;
  z-index: 1;
  bottom: 100%;
  left: calc(50% - 10px);
  display: none;
}

.prompt:hover .prompt-text:after {
  display: block;
}

/*end prompt*/

/*information block*/
.information-block {
  border: 1px solid #2559bf;
  background: #fff;
  border-radius: 5px;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
}

.information-block-header {
  display: block;
  font-family: "Museo-Sans-700";
  font-size: 20px;
  color: #2559bf;
}

.information-block-btn {
  min-width: 300px;
}
.information-block-btn:hover {
  color: #fff;
}
/*end information block*/

.flat-filter {
  display: flex;
  /* padding-bottom: 20px; */
  /* flex-wrap: wrap; */
}
.flat-filter-btn {
  width: 100%;
  border: none;
  border: 1px solid #d3d3d3;
  border-left: none;
  padding: 10px 15px;
  cursor: pointer;
  background: #fff;
  white-space: nowrap;
  font-size: 16px;
  color: #475569;
}
.flat-filter-btn:first-child {
  border-radius: 15px 0 0 15px;
  border-left: 1px solid #cbd5e1;
}
.flat-filter-btn:last-child {
  border-radius: 0 15px 15px 0;
}
.flat-filter-btn-active {
  box-sizing: border-box;
  background: #eff4fb;
  border: 1px solid #3068d9;
  border-left: 1px solid #3068d9 !important;
  color: #2153b4;
}

@media screen and (max-width: 400px) {
  .mobile-header-margin {
    width: 31vw;
  }
}

@media screen and (max-width: 438px) {
  .navBurger {
    left: 15px;
  }
  h3 {
    font-size: 17px;
  }

  .page-title h2 {
    font-size: 20px;
  }

  p,
  li {
    font-size: 16px;
    line-height: 160%;
  }

  .page-content a {
    font-size: 14px;
  }
  .mobile-header-mail {
    margin-right: 18%;
  }
}

@media screen and (max-width: 767px) {
  .mobile-hidden-content h4 {
    position: relative;
    color: #2353b0;
    font-weight: normal;
  }

  .mobile-hidden-content h4:after {
    position: absolute;
    content: "";
    border: 5px solid transparent;
    /* Прозрачные границы */
    content: url(/assets/img/arrow-right-blue.svg);
    right: 0;
    top: 12%;
  }

  .mobile-hidden-content .mobile-opening-content {
    display: none;
  }

  .mobile-hidden-content.open h4:after {
    transform: rotate(180deg);
    top: 5px;
  }

  .mobile-hidden-content.open .mobile-opening-content {
    display: inherit;
  }
  .flat-filter {
    flex-wrap: wrap;
  }
  .flat-filter-btn {
    border-left: 1px solid #d3d3d3;
  }
  .flat-filter-btn,
  .flat-filter-btn:last-child,
  .flat-filter-btn:first-child {
    border-radius: 15px;
  }
}

@media screen and (max-width: 991px) {
  html,
  body {
    position: relative;
    height: 100%;
  }

  .container {
    padding: 0 24px;
  }
  .main-screen-mobile-consultation .free_consultation {
    display: none;
  }

  .footer-services .container {
    flex-direction: column;
  }

  .footer-services-list {
    flex-direction: column;
    width: 100%;
  }

  .footer-services .footer-services-list-item > h6 {
    padding: 20px 0;
    margin: 0;
    text-align: left;
    position: relative;
  }

  .footer-services .footer-services-list-item > h6:after {
    content: "";
    position: absolute;
    left: 95%;
    top: 50%;
    border: 5px solid transparent;
    border-top: 5px solid #343434;
  }

  .footer-services .footer-services-list-item.open-footer-menu > h6:after {
    transform: rotate(180deg);
  }

  .footer-services-list-item {
    border-bottom: 1px solid #b3b3b3;
  }

  .footer-services-list-item ul {
    max-height: 0;
    transition: all 0.15s ease-out;
    border-bottom: solid 1px rgba(0, 0, 0, 0);
    overflow: hidden;
  }

  .footer-services-list-item ul li {
    text-align: left;
    padding-bottom: 5px;
    /* border-bottom: 0.3px solid #B3B3B3; */
  }

  .footer-services-list-item ul li:last-child {
    border: none;
  }

  .open-footer-menu {
    border: none;
  }

  .footer-services-list-item.open-footer-menu ul {
    max-height: 100%;
    border-bottom: none;
  }

  .about-us-toggle-text {
    display: none;
  }

  .mobile-legislation-table a {
    font-size: 14px;
  }

  .footer-social-contacts {
    align-items: flex-start;
    padding: 10px 0 0;
    text-align: left;
  }
}

@media screen and (min-width: 480px) {
  ol li {
    padding: 5px 5px 5px 5%;
  }

  .page-title h1 {
    font-size: 24px;
    width: 100%;
  }

  h3 {
    font-size: 22px;
  }

  span {
    font-size: 0.9rem;
  }

  .list-item {
    padding: 5px 0 5px 15%;
  }

  .contact-us {
    padding: 20px 90px 40px;
  }

  .contact-us-button button {
    max-width: 190px;
    margin: 0 auto;
  }

  .consultation-name,
  .consultation-email {
    width: 45%;
  }

  .contact-us-textarea {
    min-height: 107px;
  }

  .translation_list {
    width: 50%;
  }

  .custom-list ul li {
    padding-left: 20px;
  }

  .page-content .jurisdictions-national-office img,
  .page-content .jurisdictions-ip-legislation img {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .slick-dots li button:before {
    content: "";
    width: 10px;
    height: 10px;
    background-color: #c5cfe1;
    border-radius: 50%;
    opacity: 1;
  }

  .slick-dots li.slick-active button:before {
    color: #2353b0;
    background-color: #2353b0 !important;
    opacity: 1;
  }

  .footer-copyright {
    padding: 25px 0;
  }

  .footer-copyright > div {
    width: auto;
  }

  .copyright p {
    text-align: center;
  }

  .contact-us-head {
    text-align: center;
  }

  .desktop-legislation {
    display: block;
  }

  .mobile-legislation {
    display: none;
  }

  .footer-social-text {
    display: none;
  }

  .scale-hover,
  .scale-img-hover img {
    transform: scale(1);
    transition: transform 0.4s ease;
  }

  .scale-hover:hover,
  .scale-img-hover:hover img {
    transform: scale(1.1);
  }

  .translation_list {
    width: 25%;
  }

  .thank-msg div {
    padding-right: 74px;
  }

  .thank-msg span {
    font-size: 18px;
  }

  .thank-msg p {
    font-size: 14px;
    line-height: 24px;
  }

  .test .jurisdictions_services .services_link {
    width: 45%;
  }

  .footer-mobile-services-offices.open-footer-menu ul {
    display: flex;
    flex-wrap: wrap;
  }

  .footer-mobile-services-offices ul li {
    width: 50%;
  }

  .footer-mobile-services-offices ul li:nth-last-child(2) {
    border-bottom: none;
  }
}

@media screen and (min-width: 991px) {
  h2 {
    font-size: 26px;
  }

  h3 {
    font-size: 22px;
  }

  h4 {
    font-size: 18px;
    text-transform: uppercase;
  }

  .section-title h3 {
    font-size: 22px;
    font-weight: 600;
  }

  ol li {
    padding: 5px 5px 5px 3%;
    position: relative;
  }

  .ds-col-10 {
    max-width: calc(100% / 12 * 10);
  }

  .ds-col-12 {
    max-width: 100%;
  }

  main {
    padding: 0 0 75px;
  }

  .mobile-header {
    display: none;
  }

  /* .header{
        max-height: 100vh;
        min-height: 100vh;
    } */
  .header {
    height: 90px;
    position: absolute;
    width: 100%;
    left: 0;
    max-height: inherit;
    min-height: inherit;
    transition: inherit;
    position: fixed;
    filter: drop-shadow(0px 4px 20px rgba(30, 57, 109, 0.08));
  }

  .header-buttons {
    width: 35%;
    max-width: 500px;
  }

  .header-buttons ul {
    padding: 0;
    height: 100%;
  }

  .header-buttons ul li {
    padding: 0;
    text-align: center;
  }

  .main-logo {
    display: block;
  }

  .mobile-main-link {
    display: none;
  }

  .lang-switcher {
    position: absolute;
    background: #fff;
    padding: 10px 10px 10px;
    left: -30%;
    top: 100%;
    border-top: 2px solid #2353b0;
  }

  .lang-switcher ul {
    flex-direction: column;
  }

  .lang-link {
    font-size: 16px;
    color: #2559bf;
  }

  .current_language {
    cursor: pointer;
    position: relative;
    margin-right: 25px;
    font-size: 16px;
    color: #343434;
    font-weight: bold;
  }

  .current_language::after {
    content: "";
    position: absolute;
    /* Абсолютное позиционирование */
    left: 120%;
    /* Положение треугольника */
    top: 8px;
    border: 5px solid transparent;
    /* Прозрачные границы */
    border-top: 5px solid #343434;
    /* Добавляем треугольник */
    /* transform: rotate(90deg); */
  }

  .open .current_language::after {
    transform: rotate(180deg);
    top: 3px;
  }

  .login-link {
    color: #343434;
    font-size: 16px;
    font-weight: 100;
    text-transform: initial;
  }

  .section-title,
  .page-title,
  .page-content,
  .section-description {
    text-align: inherit;
  }

  .section-title h2 {
    margin: 20px 0 60px;
  }

  .page-title {
    padding: 5px 0;
    max-width: 70%;
  }

  .page-title h1 {
    font-size: 32px;
    text-transform: uppercase;
  }

  p,
  li,
  span {
    font-size: 16px;
    /* line-height: 18px; */
  }

  .container {
    text-align: left;
  }

  .header .container {
    padding: 0 60px;
    display: flex;
    align-items: center;
    overflow: inherit;
    max-height: 100vh;
    height: 100%;
    position: relative;
  }

  .header nav {
    display: flex;
    align-items: center;
    width: 63%;
    max-width: 775px;
  }

  .header-en nav {
    max-width: 975px;
  }

  .desktop-flex-row {
    display: flex;
    flex-direction: row;
  }

  .menu {
    flex-direction: row;
    width: 100%;
    position: relative;
    left: auto;
    height: 100%;
  }

  .menu ul {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
  }

  .menu nav > ul {
    height: 100%;
  }

  .menu-list {
    display: flex;
    margin: 0;
    padding: 0;
  }

  .menu nav > .menu-list > li {
    height: 100%;
    display: flex;
    align-items: center;
  }

  .menu-list li a {
    padding: 0 10px;
    text-transform: none;
    border-bottom: none;
    font-size: 16px;
    height: 100%;
    display: flex;
    align-items: center;
    font-weight: 100;
  }

  .menu-list li a:hover {
    color: #2559bf;
  }

  .menu-list li a:first-child {
    padding-left: 0;
  }

  .menu-list li .submenu {
    display: flex;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    width: 100%;
    max-width: max-content;
    background: #fff;
    box-sizing: border-box;
    flex-direction: row;
    top: 100%;
    min-width: 198px;
    border-top: 2px solid #2353b0;
    transition: max-height 0.2s linear;
    max-height: 0;
    /* overflow: hidden; */
    filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.15));
  }

  .menu-list li .submenu.submenu-small {
    max-width: 350px;
    flex-direction: column;
  }

  .menu-list li .submenu.submenu-contacts {
    max-width: 250px;
  }

  /* .submenu-small div h6{
        display: none;
    } */
  .menu-list li .submenu > li {
    padding: 0 25px;
    width: 100%;
  }

  .menu-list li .submenu > li h6 {
    width: 100%;
    padding: 10px 10px 10px !important;
    margin: 0;
    font-weight: normal;
    font-size: 16px;
    color: #2353b0;
    cursor: pointer;
    border-bottom: 1px solid #ebeaea;
    text-transform: none;
    text-align: left;
  }

  .menu-list li .submenu > li h6.menu-item:after {
    top: 17px;
  }

  .menu-list li .submenu li .menu-list {
    flex-direction: column;
    align-items: baseline;
  }

  .submenu li .menu-list li:not(:last-child)::before {
    content: "";
    position: absolute;
    border-bottom: 1px solid #e4e4e4;
    width: 100%;
    max-width: 163px;
    top: 100%;
    left: 20px;
    right: 30px;
  }

  .submenu li .menu-list li {
    width: 100%;
    position: relative;
    padding: 0;
  }

  .submenu li .menu-list li a {
    width: 100%;
    display: block;
    padding: 10px 20px;
    font-size: 16px;
  }

  .submenu-small .small-menu-dropdown h6 {
    display: block;
    position: relative;
  }

  .submenu-small .small-menu-dropdown h6::after {
    content: "";
    position: absolute;
    top: 25px;
    right: 5px;
    border-left: 4px solid transparent;
    border-top: 4px solid rgb(23, 71, 158);
    border-right: 4px solid transparent;
    z-index: 999;
  }

  .submenu .small-menu-dropdown:hover h6::after {
    border-top: none;
    border-bottom: 4px solid rgb(23, 71, 158);
  }

  .submenu .small-menu-dropdown .menu-list {
    position: absolute;
    left: 100%;
    top: -2px;
    background: #2559bf;
    box-shadow: 0px 0px 4px rgb(0 0 0 / 10%);
    color: #fff;
    height: calc(100% + 2px);
    padding: 6px 30px;
    display: none;
  }

  .submenu .small-menu-dropdown:hover .menu-list {
    display: flex;
    justify-content: flex-start;
  }

  .submenu .small-menu-dropdown .menu-list li a {
    color: #fff;
  }

  .submenu .small-menu-dropdown .menu-list li a:hover {
    background: #2559bf;
    color: #dbd5d5;
  }

  .free_consultation {
    font-size: 16px;
    max-width: 190px;
    font-weight: 100;
    text-transform: initial;
    text-align: center;
    padding: 10px 15px;
    margin: 10px auto;
    background: #2559bf;
  }

  .free_consultation:hover {
    background: #3b70d9;
    box-shadow: 0px 0px 15px rgba(96, 149, 255, 0.5);
    color: #fff;
  }

  .main-screen-video {
    /* background-image: url('/../assets/img/background.svg'); */
    background: #797f8f;
  }

  .main-screen-mobile-consultation {
    display: none;
  }

  .desktop-lang-switcher {
    display: flex;
    height: 100%;
  }

  .mobile-lang-switcher {
    display: none;
  }

  .open-lang-switcher {
    font-size: 16px;
    height: 100%;
    display: flex;
    align-items: center;
  }

  .menu-list li .submenu-big {
    left: 0;
    max-width: 100%;
    padding: 25px 20px 20px;
  }

  .menu-list li .submenu div {
    flex: 1 1 20%;
    padding: 0 25px;
  }

  .menu-list li .submenu div.special-menu-item {
    flex: 1 1 23%;
  }

  .menu-list li:hover > .submenu {
    visibility: visible;
    opacity: 1;
    max-height: 100vh;
  }

  .menu-list li .submenu.sublist {
    width: auto;
    left: 0;
    padding: 0;
  }

  .submenu {
    display: block;
  }

  .submenu div h6 {
    margin: 10px 10px 15px;
    font-size: 20px;
    text-transform: uppercase;
    padding: 0;
    border-bottom: none;
  }

  .submenu div .small-menu-item {
    width: 100%;
    text-transform: uppercase;
    padding: 15px 15px 15px;
    margin: 0;
    font-weight: normal;
    font-size: 16px;
    color: #2353b0;
    cursor: pointer;
    border-bottom: 1px solid #ebeaea;
    text-transform: none;
  }

  .submenu-contacts .small-menu-item {
    padding: 10px 10px 10px !important;
  }

  /* .submenu div .small-menu-item:hover {
    background: #ecf3fa;
  } */

  .submenu .menu-item:hover::before,
  .submenu .small-menu-item:hover::before {
    content: "";
    position: absolute;
    top: 0;
    left: -25px;
    width: calc(100% + 50px);
    height: 54px;
    background-color: #ecf3fa;
    z-index: -1;
  }
  .submenu .menu-item:not(:has(.submenu))::before,
  .submenu .small-menu-item:not(:has(.submenu))::before {
    width: calc(100% + 60px);
  }

  .submenu.submenu-contacts .menu-item-contacts:hover::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-48%);
    width: calc(100% + 60px);
    height: 42px;
    background-color: #ecf3fa;
    z-index: -1;
  }

  .submenu div .menu-list {
    display: flex;
    flex-direction: column;
    align-items: baseline;
  }

  .submenu-big div .menu-list {
    margin: 0 10px;
  }

  .submenu div .menu-list li {
    position: relative;
    padding: 0;
    width: 100%;
  }

  .submenu-big div .menu-list li {
    padding: 10px 0;
  }

  .submenu div .menu-list li:not(:last-child)::before {
    content: "";
    position: absolute;
    border-bottom: 1px solid #e4e4e4;
    width: 100%;
    max-width: 163px;
    top: 100%;
    left: 20px;
    right: 30px;
  }

  .submenu .small-menu-dropdown .menu-list li:not(:last-child)::before {
    left: 0 !important;
    right: 0 !important;
    max-width: 100% !important;
    border-bottom: 1px solid #fff !important;
    content: "";
    position: absolute;
    width: 100%;
    top: 100%;
    z-index: 1;
    transform: scaleY(0.3);
  }

  .submenu-big div .menu-list li:not(:last-child)::before {
    left: 0;
  }

  .submenu div .menu-list li a {
    width: 100%;
    display: block;
    padding: 15px 15px 15px 0;
  }

  .submenu-big div .menu-list li a {
    padding: 0 35px 0 0;
  }

  .submenu div .menu-list li a:hover {
    color: #477eec;
    background: #ecf3fa;
  }

  .submenu-big div .menu-list li a:hover {
    background: none;
    color: #477eec;
  }

  .free_consultation {
    border: #2559bf;
  }

  .navBurger {
    display: none;
  }

  .main-screen {
    height: 100vh;
    overflow: hidden;
  }

  .main-screen-video-bg {
    position: absolute;
    width: 100%;
    display: flex;
  }

  .main-screen-description {
    width: 100%;
    height: 100%;
  }

  .logo {
    top: 15%;
    right: 2%;
  }

  .contact-us-inputs {
    width: 45%;
  }

  .section-main-page .contact-us-map {
    display: block;
  }

  .section-main-page .contact-us {
    padding: 50px 90px;
    margin: 0;
  }

  .footer-menu-list {
    display: block;
  }

  .footer-menu-social {
    width: 25%;
    margin: 0;
  }

  .footer-contacts {
    display: flex;
    background: #fff;
    padding: 40px 0;
  }

  .footer-contacts-list-item {
    padding: 0;
    border: none;
    width: 18%;
  }

  .footer-contacts-list-item p {
    font-size: 14px;
    line-height: 160%;
  }

  .footer-conacts-link {
    padding: 40px 0 10px;
  }

  .footer-copyright {
    padding: 40px 0;
  }

  .list-item:before {
    top: 14px;
  }

  .footer-services-list {
    width: 100%;
    max-width: 1315px;
    display: flex;
  }

  .footer-services-list-item {
    /* width: calc(100% / 6); */
    width: 20%;
  }

  .footer-services-list-item:last-child li {
    height: 25%;
  }

  .footer-services-list-item h6 {
    margin-bottom: 20px;
    margin-top: 33px;
    font-weight: bold;
  }

  .footer-services-list-item ul {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
  }

  .footer-services-list-item-jurisdictions ul {
    width: 140%;
  }

  .footer-services-list-item a {
    font-size: 13px;
    display: block;
    padding: 10px 0;
  }

  .footer-social-contacts {
    margin: 30px 0;
  }

  .footer-social {
    padding-top: 2.33rem;
    width: auto;
    padding-left: 20px;
    max-width: 260px;
    min-width: 200px;
  }

  .footer-email,
  .footer-phone {
    display: block;
    font-size: 14px;
    color: #343434;
    font-family: "Museo-Sans";
    text-transform: uppercase;
    text-align: right;
  }

  .footer-phone {
    font-weight: bold;
  }

  .footer-mobile-services-offices {
    display: none;
  }

  .free-consultation a {
    display: block;
    max-width: 228px;
    background: #f7f9ff;
    border: 1px solid rgba(37, 89, 191, 0.5);
    box-sizing: border-box;
    border-radius: 5px;
    padding: 10px;
    text-align: center;
  }

  .footer-social-contacts {
    margin: 30px 0;
  }

  .footer-social {
    padding-top: 2.33rem;
    width: auto;
    padding-left: 20px;
    max-width: 260px;
    min-width: 200px;
  }

  .footer-email,
  .footer-phone {
    display: block;
    font-size: 14px;
    color: #343434;
    font-family: "Museo-Sans";
    text-transform: lowercase;
    text-align: right;
  }

  .footer-phone {
    font-weight: bold;
  }

  .footer-mobile-services-offices {
    display: none;
  }

  .free-consultation a {
    display: block;
    max-width: 228px;
    background: #f7f9ff;
    border: 1px solid rgba(37, 89, 191, 0.5);
    box-sizing: border-box;
    border-radius: 5px;
    padding: 10px;
    text-align: center;
  }

  .social-description span {
    font-size: 13px;
  }

  .social-list {
    height: 100%;
    width: auto;
  }

  .social-list ul {
    /* flex-direction: column; */
    /* height: 100%; */
    padding-top: 0;
    padding-bottom: 18px;
    max-width: 100%;
    padding-left: 15px;
  }

  .info-table tr th {
    font-size: 1.25rem;
  }

  .info-table tr th:nth-child(2) {
    width: 30%;
  }

  .info-table tr td {
    font-size: 16px;
  }

  #toTop {
    top: 105px;
  }

  .about-us-read-more,
  .about-us-less {
    display: none;
  }

  .contact-us-slider {
    display: block;
  }

  .test .our-services-item h2 {
    font-size: 30px;
  }

  .test .our-services-item-img {
    display: block;
  }

  .test .our-services-item-text {
    margin-left: 30px;
    max-width: 620px;
  }
}

@media screen and (min-width: 1110px) {
  .footer-contacts-list-item p {
    font-size: 14px;
  }
  .right-container {
    padding: 0 0 0 90px;
  }
}

@media screen and (min-width: 1280px) {
  .menu-list li a {
    font-size: 1rem;
  }

  .free_consultation {
    font-size: 1rem;
    max-width: 240px;
  }

  .open-lang-switcher {
    font-size: 1rem;
  }
}

@media screen and (min-width: 1440px) {
  .main-screen-head-text {
    padding-bottom: 50px;
  }

  .main-screen-head-text h1 {
    font-size: 50px;
  }

  .page-title h1 {
    font-size: 32px;
  }

  p,
  li {
    font-size: 1rem;
  }
}

@media screen and (max-width: 991px) {
  .header .container {
    z-index: 1;
    background: #fff;
  }

  .show {
    display: flex !important;
  }

  .menu-list .menu-item {
    position: relative;
  }

  .menu-list .menu-item::after {
    content: "";
    position: absolute;
    top: 25px;
    right: 5px;
    border-left: 4px solid transparent;
    border-top: 4px solid rgb(23, 71, 158);
    border-right: 4px solid transparent;
    z-index: 999;
  }

  .submenu div h6 {
    font-size: 14px;
    font-weight: 100;
    padding: 10px 0 6px 0;
  }

  .submenu .menu-list {
    margin-left: 20px;
  }

  .submenu .menu-item ul li {
    padding: 0;
  }

  .submenu div .menu-list li a {
    font-size: 12px;
    font-weight: 100;
    padding: 5px 0 3px;
    border: none;
    text-transform: none;
  }

  .submenu-small ul {
    padding: 20px 0 0;
    flex-direction: column;
  }

  .close-modal {
    background: transparent;
    -webkit-background-clip: content-box;
    background-clip: content-box;
    position: absolute;
    right: 10px;
    width: 22px;
  }

  .close-modal:before {
    content: "";
    position: absolute;
    height: 2px;
    right: 0;
    will-change: rotate;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
    top: 0;
    background: #6c88ac;
    width: 110%;
  }

  .close-modal:after {
    content: "";
    position: absolute;
    height: 2px;
    right: 0;
    will-change: rotate;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    top: 0;
    -webkit-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg);
    background: #6c88ac;
    width: 110%;
  }

  .footer-email {
    display: block;
    text-align: left;
  }

  .submenu-small .menu-list {
    display: none;
  }
  .submenu-contacts.show .menu-list {
    display: flex !important;
  }
}
