@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik+Bubbles&display=swap');

body{
    direction: ltr;
    font-family: 'Cormorant Garamond', sans-serif !important;
    font-size: 18px;
    margin: 0;
    padding: 0px;
}

a {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: 0;
}

ul {
    padding-left: 0;
    margin-top: 0;
    margin-bottom: 0;
    padding-inline-start: 0;
}

img {
    display: block;
}

.no-scroll {
    overflow-y: hidden;
}

.link {
    text-decoration: none;
}

.link:hover,
.link:focus {
    color: inherit;
    cursor: pointer;
}

.title {
    color: var(--text-color);
    font-size:  22px;
    font-weight: 800;
    letter-spacing: 2px;
}

@media screen and (min-width: 576px) and (max-width: 991px) {
    .title {
        font-size: 25px;
    }
}

@media screen and (min-width: 768px) {
    .title {
        font-size: 28px;
    }
}

.sub-title {
    margin: 11px auto 0;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.7;
    color: var(--text-color);
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .sub-title {
        font-size: 18px;
        font-weight: 700;
        line-height: 2;
    }
}

@media screen and (min-width: 992px) {
    .sub-title {
        margin: 19px auto 0;
    }
}

.main-btn-ml01 {
    font-weight: 800;
    text-transform: inherit;
    font-size: 18px;
    line-height: 23px;
    letter-spacing: 2px;
    color: #fff;
    background-color: var(--brand-color);
    box-shadow: 0px 11px 36px 0px rgba(var(--brand-color-rgb),0.7);
    padding: 19px 26px;
    text-align: center;
    transition: all 200ms;
    cursor: pointer;
}

:root {
    --brand-color: #5B69E7;
    --brand-color-rgb: 0;
    --text-color: #1D2D50;
    --text-03-color: #ffffff;
    --deg-grad: 90deg;
    --anim: 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
           
header .container-ml01,
section .container-ml01,
footer .container-ml01 {
    padding-left: 12px;
    padding-right: 12px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px !important;
}

@media screen and (min-width: 576px) and (max-width: 991px) {
    section .container-ml01 {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media screen and (min-width: 992px) {
    section .container-ml01 {
        padding-left: 19px;
        padding-right: 19px;
        }
}




.header-ml01 {
    padding: 19px 0;
    background: transparent;
    position: absolute;
    width: 100%;
}

@media screen and (min-width: 575px) {
    .header-ml01 {
        padding: 28px 0;
    }
}

@media screen and (min-width: 991px) {
    .header-ml01 {
        padding: 48px 0;
    }
}

.nav-inner-ml01 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.logo-link-ml01 {
    display: flex;
    gap: 19px;
    color: var(--text-color);
    font-size: 23px;
}

@media screen and (min-width: 575px) {
    .logo-link-ml01 {
        font-size: 36px;
    }
}

@media screen and (min-width: 991px) {
    .logo-link-ml01 {
        font-size: 36px;
    }
}

.navigation {
    right: 15px;
    left: unset;
}

.nav-wraper {
    position: relative;
    left: 0;
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-end;
    gap: 26px;
    overflow-x: hidden;
}

.nav-wraper.left-position-ltr {
    flex-direction: row;
}


.menu-btn-ml01 {
    border: none;
    background: transparent;
    z-index: 100;
}

.icon-menu {
    stroke: var(--text-color);
    width: 23px;
    height: 23px;
}

@media screen and (min-width: 575px) {
    .icon-menu {
        width: 26px;
        height: 26px;
    }
}

@media screen and (min-width: 991px) {
    .icon-menu {
        width: 26px;
        height: 26px;
    }
}

.nav-bar-ml01 {
    position: fixed;
}

.nav-bar-ml01__list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    transform: translate(450%);
    top: 100px;
    transition: transform var(--anim);
    gap: 11px;
    align-items: center;
}

@media screen and (min-width: 678px) {
    .nav-bar-ml01__list {
        top: 40px;
        gap: 20px;
    }
}

@media screen and (min-width: 1200px) {
    .nav-bar-ml01__list {
        flex-wrap: nowrap;
        top: 0;
        gap: 26px;
    }
}

.nav-bar-ml01__list.left-position,
.nav-bar-ml01__list.left-position-ltr {
    transform: translate(-450%);
}

.menu-btn-ml01.is-active + nav > .nav-bar-ml01__list {
    transform: translate(2%);
}

@media screen and (min-width: 575px) {
    .menu-btn-ml01.is-active + nav > .nav-bar-ml01__list {
        transform: translate(-15%);
    }
}

@media screen and (min-width: 991px) {
    .menu-btn-ml01.is-active + nav > .nav-bar-ml01__list {
        transform: translate(-20%);
    }
}

@media screen and (min-width: 575px) {
    .menu-btn-ml01.is-active + nav > .nav-bar-ml01__list.left-position {
        transform: translate(15%);
    }
}

@media screen and (min-width: 991px) {
    .menu-btn-ml01.is-active + nav > .nav-bar-ml01__list.left-position {
        transform: translate(20%);
    }
}

@media screen and (min-width: 575px) {
    .menu-btn-ml01.is-active + nav > .nav-bar-ml01__list.left-position-ltr {
        transform: translate(15%);
    }
}

@media screen and (min-width: 991px) {
    .menu-btn-ml01.is-active + nav > .nav-bar-ml01__list.left-position-ltr {
        transform: translate(20%);
    }
}

.nav-bar-ml01__link {
    color: var(--text-color);
    font-size: 18px;
    text-transform: inherit;
    font-weight: 800;
    display: inline-block;
}

.tab {
    position: relative;
}

.nav-bar-ml01-submenu {
    list-style: none;
    position: absolute;
    left: 30px;
    display: none;
    background: transparent;
    width: 200px;
    font-weight: 700;
    padding: 19px;
    background-color: #f7f5f5db;
}

.tab.active .nav-bar-ml01-submenu,
.tab.active .nav-bar-ml01-submenu {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.nav-bar-ml01-submenu-item a {
    text-transform: none;
}

.dropbtn {
    border: none;
    background: transparent;
    padding: 0;
}

.dropdown {
    position: relative;
    display: inline-block;
    color: #16213E;
}

.dropdown:hover .nav-bar-ml01-submenu {
    display: flex;
    flex-direction: column;
    gap: 19px;
  }


.hero-ml01 {
    background-image: linear-gradient(to right, rgba(47, 48, 58, 0.4), rgba(225 226 232 / 72%)), url("photo/scene_header_688f530c855a71.00284903.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding-top: 150px;
    padding-bottom: 36px;
}

@media screen and (min-width: 575px) {
    .hero-ml01 {
        padding-top: 260px;
        padding-bottom: 60px;
    }
}

@media screen and (min-width: 991px) {
    .hero-ml01 {
        padding-top: 330px;
        padding-bottom: 100px;
    }
}

.hero-inner-ml01 {
    margin-left: auto;
    margin-right: 0;
    text-align: right;
}

.welcome-title-ml01 {
    text-align: right;
    color: var(--text-color);
    font-size: 18px;
    margin: 23px 0;
    line-height: 1.8em;
    font-weight: 700;
    margin-bottom: 26px;
    margin-left: auto;
}

@media screen and (min-width: 575px) {
    .welcome-title-ml01 {
        width: 60%;
        font-size: 18px;
    }
}

@media screen and (min-width: 991px) {
    .welcome-title-ml01 {
        width: 50%;
        font-size: 18px;
    }
}

.welcome-btn-ml01 {
    display: inline-block;
    vertical-align: middle;
    transform: translateZ(0);
    box-shadow: 0 0 2px rgba(0, 0, 0, 0);
    backface-visibility: hidden;
    position: relative;
    transition-property: color;
    transition-duration: 0.5s;
    background: rgba(200, 190, 181, 0);
    color: var(--text-color);
    font-size: 18px;
    font-weight: 700;
    padding: 8px 23px;
    border: 2px solid var(--text-color);
}

@media screen and (min-width: 575px) {
    .welcome-btn-ml01 {
        padding: 8px 2.5em;
        font-size: 18px;
    }
}

@media screen and (min-width: 991px) {
    .welcome-btn-ml01 {
        padding: 12px 4.2em;
        font-size: 18px;
    }
}

.welcome-btn-ml01:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    color: #fff;
    background: var(--text-color);
    transform: scaleX(0);
    transform-origin: 0 50%;
    transition-property: transform;
    transition-duration: 0.5s;
    transition-timing-function: ease-out;
}

.welcome-btn-ml01:hover,
.welcome-btn-ml01:focus {
    color: #ffffff;
}

.welcome-btn-ml01:hover:before, 
.welcome-btn-ml01:focus:before, 
.welcome-btn-ml01:active:before {
    transform: scaleX(1);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}


.reasons-ml01 {
    padding: 6em 0px;
}

.reasons-ml01-title-container {
    text-align: center;
    margin-bottom: 65px;
}

.reasons-ml01-title-container svg {
    margin-bottom: 12px;
}

.reasons-ml01-it:first-child {
    text-align: left;
}

.reasons-ml01-it:nth-child(2) {
    text-align: center;
}

.reasons-ml01-it:last-child {
    text-align: right;
}

.reasons-ml01-it {
    display: flex;
    flex-direction: column;
}

.reasons-ml01-it span {
    background: var(--text-color);
    height: 5px;
    width: 25%;
    margin-top: 2.4%;
}

.reasons-ml01-item__text {
    color: var(--text-color);
    font-size: 18px;
    font-weight: 700;
    line-height: 23px;
}

.reasons-ml01-item__text::before {
    content: "";
    width: 25px;
    height: 25px;
    background-size: contain;
    display: none;
    margin-left: 19px;
    background-image: url("https://cdn-icons-png.flaticon.com/512/599/599516.png")
  }


.main-ml01 {
    padding: 6em 0px;
    background: #efefef;
}

.main-ml01-wraper {
    display: flex;
    flex-direction: column;
    gap: 44px;
}

.main-ml01-img-wraper {
    width: 70%;
    box-shadow: var(--brand-color) 0px 0px 0px 3px;
    margin-left: auto;
    margin-right: auto;
}

.main-ml01-img {
    width: 100%;
    object-fit: cover;
    height: 533px;
}

.main-ml01-text {
    color: #333333;
    font-size: 18px;
    font-weight: 700;
    margin-top: 7%;
    line-height: 1.8em;
}

.main-ml01-text h5 {
    text-align: center;
}

.main-ml01-text ul {
    margin-bottom: 19px;
    padding-left: 26px;
    list-style: square;
    padding-inline-start: 35px;
}

.main-ml01-price {
    font-weight: 800;
    font-size: 32px;
    line-height: 1.2em;
}

.price-wrap {
    text-align: right;
}



.services-ml01 {
    padding: 6em 0px;
}

.services-ml01-title-container {
    text-align: center;
    margin-bottom: 55px;
}

.services-ml01-list {
    display: flex;
    flex-direction: column;
    gap: 55px;
}

.services-ml01-it {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 26px;
}

@media screen and (min-width: 575px) {
    .services-ml01-it {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 0;
        }
}

.service-ml01-pic__wr,
.service-ml01-thumb {
    flex: 50%;
}

.service-ml01-pic__wr img {
    width: 100%;
    height: 270px;
    object-fit: contain;
}

.service-ml01-thumb {
    text-align: center;
}

@media screen and (min-width: 575px) {
    .service-ml01-thumb {
        padding: 0 15px;
        text-align: center;
    }
    }

@media screen and (min-width: 991px) {
    .service-ml01-thumb {
        padding: 0 44px;
        text-align: center;
    }
}

.service-ml01-it-title h3{
    color: #222222;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 2px;
}

@media screen and (min-width: 575px) {
    .service-ml01-it-title h3{
        font-size: 22px;
    }
}

.services-ml01-item__text {
    color: #333333;
    font-size: 13px;
    font-weight: 700;
    margin-top: 19px;
    line-height: 1.3em;
}

@media screen and (min-width: 576px) {
    .services-ml01-item__text {
        font-size: 15px;
        margin-top: 19px;
        line-height: 1.5em;
    }
}

@media screen and (min-width: 991px) {
    .services-ml01-item__text {
        font-size: 18px;
        margin-top: 23px;
        line-height: 1.8em;
        padding: 0 9%;
    }
}

.read-more {
    font-size: 13px;
    font-weight: 800;
    color: #555555;
    letter-spacing: 2px;
    text-align: right;
    border-top: solid 2px black;
    padding-top: 11px;
}

@media screen and (max-width: 575px) {
    .services-ml01-it span {
        background: var(--brand-color);
        height: 7px;
        width: 26%;
        float: right;
        margin-top: 2.4%;
    }
}

.service-ml01-thumb a:hover,
.service-ml01-thumb a:focus,
.service-ml01-thumb a:hover > h3,
.service-ml01-thumb a:focus > h3 {
    color: var(--brand-color);
    margin-left: 11px;
    transition: 0.5s all ease;
    -webkit-transition: 0.5s all ease;
}


.blog-ml01 {
    padding: 85px 0;
}

.blog-ml01-list {
    display: flex;
    gap: 5px;
    flex-direction: column;
    flex-wrap: wrap;
}

@media screen and (min-width: 576px) {
    .blog-ml01-list {
        gap: unset;
        flex-direction:  row;
    }
}

.blog-ml01-item {
    position: relative;
    overflow-x: hidden;
}

@media screen and (max-width: 1200px) {
    .blog-ml01 .container-ml01 {
        padding-left: unset;
        padding-right: unset;
    }
}

@media screen and (min-width: 576px) {
    .blog-ml01-item {
        flex-basis: calc(100% / 2);
    }
}

.blog-ml01-img-wrap {
    width: 100%;
    height: 100%;
}

.blog-ml01-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-overlay {
    background: rgba(33, 33, 33, 0.7);
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

@media screen and (min-width: 576px) {
    .blog-overlay {
        left: -100%;
    }
    }

.blog-ml01-article {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 95%;
}

@media screen and (min-width: 576px) {
    .blog-ml01-article {
        width: 85%;
    }
}
@media screen and (min-width: 991px) {
    .blog-ml01-article {
        width: 70%;
    }
}

.blog-ml01-it-title h3 {
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 2px;
}

@media screen and (min-width: 576px) {
    .blog-ml01-it-title h3 {
        font-size: 22px;
        }
}

@media screen and (min-width: 991px) {
    .blog-ml01-it-title h3 {
        font-size: 22px;
    }
}

.blog-ml01-text {
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    margin-top: 11px;
    margin-bottom: 11px;
    line-height: 1.3em;
}

@media screen and (min-width: 576px) {
    .blog-ml01-text {
        font-size: 15px;
        line-height: 1.5em;
        font-weight: 700;
        margin-top: 23px;
        margin-bottom:26px;
    }
}

@media screen and (min-width: 991px) {
    .blog-ml01-text {
        font-size: 18px;
        line-height: 1.8em;
    }
}

.blog-ml01-article .read-more {
    color: #ffffff;
    border-top: solid 2px var(--brand-color);
    padding-top: 5px;
    font-size: 13px;
}

@media screen and (min-width: 576px) {
    .blog-ml01-article .read-more {
        padding-top: 11px;
        font-size: 13px;
    }
}

.blog-overlay span {
    width: 20%;
    height: 7px;
    background: var(--brand-color);
    position: absolute;
    top: 0;
    left: 39%;
}

.blog-ml01-item:hover .blog-overlay,
.blog-ml01-item:focus .blog-overlay {
    left: 0;
}

.blog-ml01-article a:hover,
.blog-ml01-article a:focus,
.blog-ml01-article a:hover > h3,
.blog-ml01-article a:focus > h3 {
    color: var(--brand-color);
    margin-left: 11px;
    transition: 0.5s all ease;
    -webkit-transition: 0.5s all ease;
}


.number-st {
    padding: 85px 0;
    background-image: linear-gradient(rgba(68, 68, 68, 0.8), rgba(68, 68, 68, 0.8)), url(photo/view_header_688f530c85c526.40628465.jpg);
    --bs-grayscale: grayscale(100%);
    filter: var(--bs-grayscale);
    color: #ffffff;
}

.number-st-title,
.number-st-text {
    color: #ffffff;
    text-align: center;
}

.number-st-list {
    list-style: none;
    margin: 1.25em auto 0;
  	width: 100%;
  	background: rgba(238, 238, 238, 0.45);
  	padding: 1.25em 0px;
    display: flex;
    flex-wrap: wrap;
    gap: 26px;
}

@media screen and (min-width: 576px) {
    .number-st-list {
        margin: 4em auto 0;
        width: 77%;
        padding: 4em 0px;
    }
}

@media screen and (min-width: 991px) {
    .number-st-list {
        margin: 4em auto 0;
        width: 77%;
        padding: 4em 0px;
    }
}


.number-st-item {
    flex-basis: calc(100% / 2 - 15px);
    margin: 0 auto;
    text-align: center;
}

.number-st-number {
    color: #eeeeee;
  	font-size: 20px;
  	font-weight: 700;
  	margin: 0 auto;
  	letter-spacing: 2px;
  	border-bottom: 5px solid #4d4c4b;
  	padding-bottom: 13px;
  	width: 55%;
}

@media screen and (min-width: 576px) {
    .number-st-number {
          font-size: 1.8em;
          width: 30%;
    }
}

@media screen and (min-width: 991px) {
    .number-st-number {
          width: 19%;
    }
}

.number-st-name {
    margin-top: 13px;
    margin-bottom: unset;
}


.comanda-area {
    padding: 85px 0;
}

@media screen and (min-width: 576px) {
    .comanda-area {
        padding: 100px 0;
    }
}

@media screen and (min-width: 991px) {
    .comanda-area {
        padding: 120px 0;
    }
}

.comanda-area-title {
    text-align: center;
}

.comanda-area-list {
    display: flex;
    flex-wrap: wrap;
    gap: 23px;
    margin-top: 26px;
}

@media screen and (min-width: 576px) {
    .comanda-area-list {
        flex-wrap: nowrap;
        gap: 26px;
        margin-top: 55px;
    }
}

.comanda-area-item {
    flex-basis: calc(100% / 2 - 20px);
    display: flex;
    gap: 11px;
}

@media screen and (min-width: 576px) {
    .comanda-area-item {
        flex-basis: calc(100% / 4);
        display: flex;
        gap: 23px;
    }
}

.member-ml01-photo-frame {
    position: relative;
}

.member-ml01-photo-frame img{
    width: 100%;
    border-radius: 50;
}

.member-ml01-photo-frame span {
    width: 20%;
  	height: 7px;
  	background: var(--brand-color);
  	position: absolute;
  	top: -7px;
  	left: 39%;
  	display:none;
}

.comanda-area-item:hover .member-ml01-photo-frame span {
    display: block;
}

.members-ml01-info {
    text-align: center;
}

.member-ml01-name {
    color: #222222;
  	font-size: 22px;
  	font-weight: 800;
    margin-bottom: 5px;
}

@media screen and (min-width: 576px) {
    .member-ml01-name {
        font-size: 22px;
    }
}

.mamber-ml01-position {
    color:#222222;
	font-size:15px;
	font-weight: 700;
}

@media screen and (min-width: 576px) {
    .mamber-ml01-position {
        font-size:15px;
        }
}


.partners-ml01 {
    padding:5em 0px;
	background:#c4c2c2;
}

.partners-ml01-list {
    display: flex;
    gap: 26px;
    justify-content: space-between;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    direction: initial;
}

.partners-ml01-item {
    flex: 1;
}

.partners-ml01-link {
    padding: 5px;
}

.partners-ml01-link img{
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
}

.slick-track {
    display: flex;
    align-items: center;
}

.slick-prev {
    left: 0;
}

.slick-next {
    right: 6px;
}

.slick-prev:before,
.slick-next:before {
    color: var(--text-color);
    font-size: 25px;
}


.footer-ml01 {
    padding: 5em 0px 3em 0;
    background: var(--text-color);
}

.ftop-ml01-flex {
    display: flex;
    flex-direction: column;
    gap: 26px;
    padding-bottom: 26px;
    text-align: center;
}

@media screen and (min-width: 576px) {
    .ftop-ml01-flex {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 44px;
        padding-bottom: 36px;
        align-items: flex-start;
    }
}

@media screen and (min-width: 1200px) {
    .ftop-ml01-flex {
        flex-wrap: nowrap;
        text-align: left;
    }
}


.footer-ml01-item {
    flex: 1;
}

.footer-ml01-item.with-form {
    flex: 1;
}

@media screen and (min-width: 576px) {
    .footer-ml01-item.with-form {
        flex: 100%;
    }
}

@media screen and (min-width: 1200px) {
    .footer-ml01-item.with-form {
        flex: 25%;
    }
}

.footer-ml01-item .logo-link-ml01 {
    color: #ffffff;
    height: 30px;
    font-size: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.8em;
}

@media screen and (min-width: 1200px) {
    .footer-ml01-item .logo-link-ml01 {
        justify-content: flex-start;
    }
}

.footer-ml01__text {
    color: #999999;
  	font-size: 15px;
  	font-weight: 700;
  	line-height: 1.6em;
  	margin-top: 1.8em;
    text-transform: none;
    padding: 0;
}

.footer-ml01-title {
    color: #dddddd;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    margin-bottom: 1.2em;
}

@media screen and (min-width: 576px) {
    .footer-ml01-title {
        margin-bottom: 23px;
    }
}

.footer-ml01__text,
.footer-submenu__item {
    margin: 3px 0px;
    color: #999999;
    font-size: 15px;
    font-weight: 700;
}

.footer-ml01__text a,
.footer-submenu__item a {
    color: #999999;
    font-size: 15px;
}

.footer-ml01__text:hover a,
.footer-ml01__text:focus a,
.nav-bar-ml01-submenu-item:hover a,
.nav-bar-ml01-submenu-item:focus a {
    color: var(--brand-color);
    margin-left: 10px;
    transition: 0.5s all ease;
    -webkit-transition: 0.5s all ease;
}

.footer-submenu {
    margin-top: 55px;
}

.footer-submenu__item {
    margin-bottom: 8px;
}

.footer-submenu__item:hover,
.footer-submenu__item:focus {
    margin-left: 10px;
}

.footer-submenu__item:hover a,
.footer-submenu__item:focus a {
    color: var(--brand-color);
}


.footer-ml01-contacts__item {
    display: flex;
    gap: 19px;
    justify-content: center;
}

@media screen and (min-width: 576px) {
    .footer-ml01-contacts__item {
        display: flex;
        gap: 19px;
    }
        }

@media screen and (min-width: 1200px) {
    .footer-ml01-contacts__item {
        justify-content: flex-start;
    }
}

.footer-ml01-contacts__item i {
    color: var(--brand-color);
}

.footer-submenu {
    background-color: unset;
    position: static;
    padding: 0 0 0 19px;
}

.fbot-ml01-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    border-top: 2px solid rgba(153, 153, 153, 0.28);
    padding-top: 23px;
}

@media screen and (min-width: 576px) {
    .fbot-ml01-flex {
        flex-direction: row;
    }
}

@media screen and (min-width: 991px) {
    .fbot-ml01-flex {
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-top: 2px solid rgba(153, 153, 153, 0.28);
        padding-top: 23px;
    }
}

.fbot-ml01-flex h3 {
    color: #aaaaaa;
    font-size: 18px;
    font-weight: 700;
}

.fbot-ml01-flex a {
    color: #aaaaaa;
    font-size: 15px;
    font-weight: 700;
    text-transform: inherit;
}

.fbot-ml01-politics {
    display: flex;
    gap: 5px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 23px;
}

@media screen and (min-width: 425px) {
    .fbot-ml01-politics {
        gap: 19px;
        flex-direction: row;
        text-align: center;
    }
}


@media screen and (min-width: 576px) {
    .fbot-ml01-politics {
        flex-direction: row;
        margin-top: unset;
    }
}

@media screen and (min-width: 991px) {
    .fbot-ml01-politics {
        gap: 26px;
    }
}

.fbot-ml01-politics a {
    transition: 0.5s all;;
    -webkit-transition: 0.5s all;
    font-size: 13px;
}

@media screen and (min-width: 576px) {
    .fbot-ml01-politics a {
        font-size: 13px;
    }
}

@media screen and (min-width: 991px) {
    .fbot-ml01-politics a {
        font-size: 15px;
    }
}

.fbot-ml01-politics a:hover,
.fbot-ml01-politics a:focus {
    color: var(--brand-color);
}

.back-to-top {
    display: none;
}

.back-to-top svg {
    fill: var(--brand-color);
    rotate: -90deg;
    position: fixed;
    bottom: 11px;
    right: 11px;
    overflow: hidden;
    border: none;
    text-indent: 100%;
}

.back-to-top.active {
    display: block;
}


.page-ml01 {
    padding: 6em 0px;
}

.page-ml01 .main-ml01-text-wraper {
    margin-top: 23px;
    margin-bottom: 23px;
}

.page-ml01 .main-ml01-text {
    margin-top: 1em;
}


.other-ml01 {
    padding: 5em 0px;
    background: #efefef;
}

.other-ml01-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 26px;
    align-items: flex-start;
}

@media screen and (min-width: 576px) {
    .other-ml01-list {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

@media screen and (min-width: 576px) {
    .other-ml01-list {
        flex-wrap: nowrap;
    }
}

.other-ml01-it {
    border-left: 5px solid #222222;
    padding: 5px 19px 5px 23px;
    flex: 1;
}

@media screen and (min-width: 576px) {
    .other-ml01-it {
        flex: unset;
        flex-basis: calc(100% / 2 - 30px);
    }
}

@media screen and (min-width: 991px) {
    .other-ml01-it {
        flex: 1;
    }
}

body.rtl .other-ml01-it {
    border-left: unset;
    border-right: 5px solid #222222;
}

.other-ml01-it a {
    display: flex;
    flex-direction: column;
    gap: 19px;
}

.other-ml01-ic__wr img {
    width: 100%;
    box-shadow: rgb(230 74 25 / 15%) 0px 2px 5px 0px, rgb(230 74 25 / 15%) 0px 2px 2px 0px;
    height: 243px;
    object-fit: cover;
}

@media screen and (min-width: 385px) {
    .other-ml01-ic__wr img {
        width: 70%;
    }
}

@media screen and (min-width: 576px) {
    .other-ml01-ic__wr img {
        width: 100%;
    }
}

@media screen and (min-width: 991px) {
    .other-ml01-ic__wr img {
        width: 70%;
    }
}

.other-ml01-item__text {
    color: #222222;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: unset;
}

@media screen and (min-width: 576px) {
    .other-ml01-item__text {
        font-size: 1.17em;
    }
}

.contacts-ml01 {
    list-style: none;
    flex-wrap: wrap;
}

.other-ml01-it.lication {
    flex: 100%;
} 

.other-ml01-ic__wr.cont-icon {
    width: 26px;
    height: 26px;
}

.form-location {
    padding: 23px 0;
    background-color: #484747;
    background-image: url(assets/img/transparent-1920x10800.png);
}

.location-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 23px;
}

@media screen and (min-width: 576px) {
    .location-flex {
        flex-direction: row;
    }
                }

.location-flex div {
    flex: 1;
}

.main-form-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media screen and (min-width: 576px) {
    .main-form-container {
        width: 70%;
    }
}


.form-ml01 {
    margin-top: 23px;
}

@media screen and (min-width: 576px) {
    .form-ml01 {
        padding-right: 26px;
        }
}

.form-ml01__title {
    color: var(--text-03-color);
}

.input-ml01,
.textarea-ml01,
.form-btn,
.input-input_container__item,
.textarea-input_container__item {
    width: 100%;
    color: #999999;
    outline: none;
    background: none;
    border: none;
    font-size: 15px;
    padding: 6px 0px;
    border-bottom: 2px solid rgba(153, 153, 153, 0.28);
    -webkit-appearance: none;
}

@media screen and (min-width: 991px) {
    .input-ml01,
    .textarea-ml01,
    .form-btn {
        width: 100%;
            }
}

.input-ml01,
.textarea-ml01,
.form-btn {
    margin: 19px 0;
}


.input-ml01::placeholder,
.textarea-ml01::placeholder,
.form-ml01 label {
    color: #999999;
    font-size: 15px;
    padding: 6px 0px;
    text-transform: inherit;
}

.textarea-ml01,
.textarea-input_container__item {
resize: none;
    width: 100%;
    padding: 0px 0px;
    height: 40px;
}

.form-ml01-check {
    text-align: right;
    text-transform: none;
    display: flex;
    gap: 19px;
}

.form-ml01-check a {
    color: var(--brand-color);
}

.form-ml01-check label {
    text-transform: none;
}

.form-btn {
    width: 100%;
    text-align: left;
    text-transform: inherit;
    border-bottom: none;
}

body.rtl .form-btn {
    text-align: right;
}

.form-btn i {
    font-size: 15px;
}

.form-btn:hover,
.form-btn:focus {
    color: var(--brand-color);

}


@media (max-width: 1399px){
    .first-screen-title {
        font-size: 55px;
        max-width: 460px;
    }
}

@media (max-width: 1199px){
    .first-screen-img {
        max-width: 230px;
    }
    .first-screen-title {
        font-size: 46px;
        max-width: 355px;
    }
    .first-screen-img {
        max-width: 200px;
    }
    .contact-header{
        display: none;
    }
    .header-inner-content{
        flex-basis: 78%;
    }
    .nav-menu {
        flex-basis: 100%;
    }
    .nav-menu ul{
        width: 100%;
    }
    .contact-block-inner{
        flex-direction: column !important;
    }
    .contact-block-title{
        text-align: center;
        margin-bottom: 36px;
    }
    .contact-info-wrapper{
        margin-bottom: 36px;
    }
}



@media (max-width: 991px){
    .first-screen-inner{
        flex-direction: column !important;
    }
    .first-screen-title {
        max-width: 100%;
        text-align: center;
        margin-bottom: 36px;
    }
    .feature-text{
        font-size: 18px;
    }
    .nav-menu{
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: rgba(0,0,0, .7);
        align-items: flex-start;
        padding-top: 44px;
        z-index: 9;
        transform: translate(-100%);
        transition: all .3s ease-in-out;
    }
    .nav-menu-active{
        transform: translate(0);
        transition: all .3s ease-in-out;
    }
    .hidden{
        overflow: hidden;
    }
    .nav-menu ul{
        flex-direction: column;
    }
    .nav-menu li{
        border-bottom: 2px solid #fff;
        width: 100%;
       
    }
    .nav-menu .nav-menu-link{
        display: block;
        padding-left: 26px;
        color: #fff;
        font-size: 18px;
    }
    .header-inner-content {
        flex-basis: auto;
    }
    .burger{
        display: flex;
    }
    .close{
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        width: 26px;
        height: 26px;
        background-image: url(../img/close.png);
        background-size: cover;
    }
    .feature-wrapper.flex-column .feature-img{
        width: auto;
        height: 220px
    }
    .about-us-inner{
        flex-direction: column !important;
    }
    .about-us-images-wrapper{
        width: 100%;
        margin-right: 0;
    }
}
@media(max-width: 767px){
    .feature-wrapper.flex-row .feature{
        justify-content: flex-start;
    }
    .feature-content{
        padding: 23px 0px;
    }
    .feature-wrapper.flex-column .feature-img {
        width: auto;
        height: 155px;
    }
}
@media(max-width: 576px){
    .first-screen-title {
        font-size: 35px;
    }
    .feature{
        flex-direction: column !important;
    }
    .feature:nth-child(even){
        flex-direction: column-reverse !important;
    }
    .contact-info-item {
        flex-basis: 100%;
    }
    .contact-block-form form{
        width: 100%;
    }
    .text-field_floating .text-field__label{
        font-size: 13px;
    }
    .feature-wrapper.flex-row .feature {
        flex-basis: 100%;
    }
    .about-us-img{
        border-radius: 11px;
    }
}


.overFlowHidden{
    overflow: hidden;
    padding: 23px 23px
}

iframe{
    border: 0;
}

@media (max-width: 420px){

    .service-ml01-pic__wr img, .main-ml01-img  {
        height: auto;
    }
  
  }

  .paddTopArea{
    padding: 23px 0;
  }

  

  @media (max-width: 575px) {
    .blog-ml01-item {
      height: 100vw;
    }
}