@import url('https://fonts.googleapis.com/css2?family=David+Libre:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    box-sizing: border-box;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    padding: 0;
    margin: 0;
}

p {
    line-height: 1.8;
}

a {
    text-decoration: none !important;
    transition: 0.3s;
}

input,
textarea,
button,
.slick-slide {
    outline: none !important;
    border: none;
}

body {
    color: #101A24;
    font-size: 16px;
    font-family: "Inter", serif;

}

section {
    padding: 120px 0;
    overflow: hidden;
}

ul,
li {
    margin: 0;
    padding: 0;
}

.loader {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 2000;
    background: rgb(251, 250, 243);
}

.loader-block {
    display: flex;
    align-items: center;
}

.loader-block-item {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #E5AC0D;
}

.loader-block-item+.loader-block-item {
    margin-left: 10px;
}

.loader-block-item:nth-child(1n) {
    animation: loaderBottom 1s infinite;
}

@keyframes loaderTop {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }

    0% {
        transform: translateY(0);
    }
}

.loader-block-item:nth-child(2n) {
    animation: loaderTop 1s infinite;
}

@keyframes loaderBottom {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }

    0% {
        transform: translateY(0);
    }
}

@keyframes show {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.up-btn {
    width: 40px;
    height: 40px;
    cursor: pointer;
    border-radius: 50%;
    background: #EA6D27;
    border: 1px solid #fff;
    position: fixed;
    right: 20px;
    bottom: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: 0.3s;
}

.up-btn:hover {
    background: transparent;
    border-color: #E58411;
}

.up-btn img {
    max-width: 80%;
    max-height: 80%;
    transition: 0.3s;
    animation: up 1s infinite;
}

@keyframes up {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }

    0% {
        transform: translateY(0);
    }
}

.container {
    max-width: 1180px;
}



/*default style*/

.header {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 5;
    width: 100%;
    padding: 30px 0;
    transition: 0.3s;
    border-bottom: 1px solid transparent;
}

.header.active {
    background: #F3F3F4;
    padding: 10px 0;
    border-color: #fff;
}

.header.menu-open {
    background: #F3F3F4;
    border-color: #fff;
}

.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-title {
    font-size: 20px;
    font-weight: 700;
    margin-left: 12px;
    padding-top: 10px;
    color: #101A24;
    transition: 0.3s;
}

.logo-icon {
    transition: 0.3s;
}

.logo:hover .logo-title {
    color: #EA6D27;
}

.logo:hover .logo-icon {
    transform: rotate(30deg);
}

.menu {
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-item {
    display: block;
}

.menu-link {
    display: block;
    color: #101A24;
    font-size: 18px;
    padding: 5px 20px;
    position: relative;
    overflow: hidden;
}

.menu-link:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    background: #EA6D27;
    width: 100%;
    height: 1px;
    transform: translateX(-110%);
    transition: 0.3s;
}

.menu-link:hover {
    color: #EA6D27;
}

.menu-link:hover:after {
    transform: translateX(0%);
}

.header-bars {
    margin-left: auto;
    background: #EA6D27;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;

}

.header-bars img {
    width: 70%;
    height: 70%;
}

.header-bars img:last-child {
    display: none;
}

.header-bars.active img:first-child {
    display: none;
}

.header-bars.active img:last-child {
    display: block;
}



.h-btn {
    box-shadow: 0px 15px 30px 0px #00000026;
    display: inline-block;
    padding: 12px 35px;
    border-radius: 20px 4px 20px 4px;
    color: #FFFFFF;

}

.h-btn:hover {
    border-radius: 4px;
    transform: scale(1.1);
}

.orange-btn {
    background: #EA6D27;
}

.black-btn {
    background: #101A24;
}


.mob-menu {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    min-height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    animation: show 0.3s;
}

.header.menu-open .mob-menu-content {
    transform: translateX(0);
}

.mob-menu-content {
    width: 270px;
    background: #F3F3F4;
    height: 100vh;
    padding: 20px 0;
    transform: translateX(-100%);
    transition: 1s;
    z-index: 1;
}

.mob-menu .menu {
    display: block;
}

.mob-menu .menu-link {
    padding: 10px 20px;
}

.mob-menu-btn {
    text-align: center;
    padding: 20px;
}

.mob-menu-btn a {
    width: 100%;
}

.mob-menu-btn a+a {
    margin-top: 20px;
}


.head {
    padding: 200px 0 100px 0;
    position: relative;
}

.head-object {
    position: absolute;
    left: 0;
    top: 0;
}

.head-object img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

h1.title {
    font-size: 69px;
    margin-bottom: 70px;
}

.title {
    font-size: 60px;
    font-weight: 700;

    margin-bottom: 30px;
    font-family: "David Libre", serif;
}

.slogan {
    max-width: 376px;
    color: #5C6574;
}

.head-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.head-row-item {
    width: 44%;
}

.default-btn-row {
    display: flex;
    align-items: center;
}

.default-btn-row .h-btn+.h-btn {
    margin-left: 25px;
}

.head .default-btn-row {
    margin: 40px 0 60px 0;
}

.default-soc {
    display: flex;
    align-items: center;
    width: 100%;
}

.default-soc-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 1px solid #101A24;
    border-radius: 50%;
}
.default-soc-item img{
    width: 30px;
    height: 30px;
}

.default-soc-item:hover {
    opacity: 0.5;
}

.default-soc-item+.default-soc-item {
    margin-left: 20px;
}

.head-block {
    position: relative;
}

.head-block-img {
    width: 100%;
    transition: 0.3s;
}
.head-block-img:hover{
    transform: scale(1.05);
}

.head-block-img img {
    width: 100%;
    border-radius: 80px 20px 80px 20px;
}

.head-block-object {
    position: absolute;
    z-index: -1;
}

.head-block-object:nth-child(2) {
    left: -25%;
    bottom: 13px;
    z-index: 1;
}

.head-block-object:nth-child(3) {
    left: -25%;
    top: -79px;

}

.head-block-object:nth-child(4) {
    right: -25%;
    top: -79px;
}

.head-block-object:nth-child(5) {
    right: -25%;
    bottom: 23px;
}


.special {
    background: #F3F3F4;
    padding: 90px 0;
    position: relative;
}

.special-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    text-align: center;
}

.special-bg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.special-content {
    position: relative;
    z-index: 1;
}

.special .title {
    text-align: center;
}

.special .slogan {
    margin: 0 auto;
    text-align: center;
}

.special-row {
    display: flex;
    flex-wrap: wrap;
    gap: 4%;
    margin-top: 150px;
}

.special-row-item {
    width: 22%;
}

.special-inner {
    border-radius: 25px 4px 25px 4px;
    border: 2px solid #fff;
    padding: 0 20px 30px 20px;
    text-align: center;
    display: block;

}

.special-inner:hover {
    background: #fff;
    transform: translateY(10px);
}

.special-inner-img {
    position: relative;
    margin-top: -100px;
    transition: 0.3s;
}

.special-inner-img img {
    max-width: 100%;
}

.special-inner-img-object {
    background: #101A24;
    color: #fff;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
}

.special-inner-title {
    font-size: 20px;
    font-family: "David Libre", serif;
    margin: 20px 0;
    font-weight: 700;
    color: #101A24;
}

.special-inner-slogan {
    font-size: 15px;
    color: #5C6574;
}


.our {
    background: #F3F3F4;
    padding: 90px 0;
    position: relative;
}

.our-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;

    text-align: right;
}

.our-bg img {
    width: 39%;
    height: 100%;
    object-fit: contain;

}

.our-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.our-row-img {
    width: 55%;
    transition: 0.3s;
}
.our-row-img:hover{
    transform: scale(1.05);
}

.our-row-img img {
    width: 100%;
}

.our-row-inner {
    width: 40%;
}

.our-row-inner .slogan {
    margin-bottom: 30px;
}

.team {
    padding: 120px 0;
    position: relative;
}

.team-object {
    position: absolute;
    left: 0;
    top: 0;
}

.team-object img {
    max-width: 100%;
    object-fit: contain;
}

.team-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.team-inner {
    width: 45%;
}

.team-inner-list {
    display: flex;
    justify-content: space-between;
    margin: 40px 0;
    flex-wrap: wrap;
}

.team-inner-list-item {
    width: 48%;
    display: flex;

}

.team-inner-list-item:nth-child(n+3) {
    margin-top: 20px;
}

.team-inner-list-item-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    border-radius: 50%;
    background: #EA6D27;
    margin-right: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    top: 5px;
}

.team-img {
    width: 45%;
    transition: 0.3s;
}
.team-img:hover{
    transform: scale(1.05);
}

.team-img img {
    width: 100%;
}

.reviews {
    background: #F3F4F4;
    padding: 120px 0;
    position: relative;
    text-align: center;
}

.reviews-object {
    position: absolute;
    top: 94px;
    left: 0;
}

.reviews-content {
    position: relative;
    z-index: 1;
}

.reviews .slogan {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
}

.reviews-slider {
    max-width: 640px;
    margin: 0 auto;
}

.reviews-slider-item {
    padding: 50px 10px 10px 10px;
}

.reviews-inner {
    background: #ffffff;
    border-radius: 40px 10px 40px 10px;
    padding: 60px;
    position: relative;
    border: 1px solid transparent;
    transition: 0.3s;
}
.reviews-inner:hover{
    border-color: #EA6D27;
    .reviews-inner-icon{
        border-color: #EA6D27;
    }
}
.reviews-inner-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -50px;
    border: 4px solid transparent;
    transition: 0.3s;
}

.reviews-inner-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviews-inner-text {
    color: #5C6574;
    margin: 38px 0 20px 0;
}

.reviews-inner-title {
    font-weight: 600;
}

.reviews-inner-slogan {
    font-size: 15px;
    color: #5C6574;
}

.reviews-inner-star {
    display: flex;
    align-items: center;
    justify-content: center;
}

.slick-dots li {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    opacity: 1;
}

.slick-dots li button {
    opacity: 0;
}

.slick-dots li.slick-active {
    background: #EA6D27;
}

.promo {}

.promo-block {
    position: relative;
    border-radius: 50px 20px 50px 20px;
    overflow: hidden;
    padding: 50px;
}

.promo-block-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.promo-block-bg:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    left: 0;
    top: 0;
}

.promo-block-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-block-inner {
    position: relative;
    z-index: 1;
}

.promo-block-inner .title {
    text-align: center;
    color: #fff;
    font-size: 40px;
    max-width: 600px;
    margin: 0 auto;
}

.promo-form {
    position: relative;
    max-width: 600px;
    margin: 50px auto 0 auto;
}

.promo-form-inner {
    position: relative;
}

.promo-form-inner-input input {
    width: 100%;
    height: 60px;
    padding-left: 20px;
    border-radius: 20px;
    background: #fff;
    color: #101A24;
    font-size: 18px;
}

.promo-form-inner-sub {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.promo-form-inner-sub input {
    color: #fff;
    background: #EA6D27;
    width: 150px;
    height: 40px;
    border-radius: 10px;
    transition: 0.3s;
    border: 1px solid #EA6D27;
}

.promo-form-inner-sub input:hover {
    color: #EA6D27;
    background: #fff;
}

.promo-form-accept {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 20px;
    border: 1px solid #EA6D27;
    color: #EA6D27;
    font-size: 18px;
    font-weight: 700;
    display: none;
}

.promo-form-accept-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.footer {
    background: #F3F4F4;
    padding: 40px 0;
}

.footer-row {
    display: flex;
    justify-content: space-between;
}

.foote-title {
    color: #101A24;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 50px;
    position: relative;
    top: 20px;
}

.footer-text {
    color: #5C6574;
    max-width: 408px;
}

.footer-inner {
    display: flex;
}

.footer-inner-item+.footer-inner-item {
    margin-left: 30px;
}

.footer .logo {
    margin-bottom: 20px;
}
.h-modal {
    text-align: center;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10;
    padding: 40px 15px;
    display: none;
}

.h-modal-content {
    box-shadow: 0px 2px 2px 0px #00000040;
    background: #fff;
    border-radius: 5px;
    margin: auto;
    position: relative;
    max-width: calc(100% - 30px);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-height: 100%;
    overflow-y: scroll;
    max-width: 800px;

}


/* Стилізація повзунка */
.h-modal-content::-webkit-scrollbar {
    width: 4px; /* Ширина повзунка */
}

.h-modal-content::-webkit-scrollbar-thumb {
    background-color: #EA6D27; /* Колір повзунка */
    border-radius: 2px; /* Округлення */
}

.h-modal-content::-webkit-scrollbar-track {
    background: white; /* Фон повзунка */
}

/* Для Firefox */
.h-modal-content {
    scrollbar-width: thin; /* Робить тонкий повзунок */
    scrollbar-color: #EA6D27 white; /* Колір повзунка та його фону */
}



.h-modal-content-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #EA6D27;
    border: 1px solid #E58411;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    right: 8px;
    top: 20px;
    cursor: pointer;
    transition: 0.3s;
    z-index: 2;
}

.h-modal-content-close:hover {
    transform: scale(1.1);
}

.h-modal-content-close img {
    width: 80%;
    height: 80%;
}
.h-menu {
    position: relative;
    padding: 40px 0;
    color: #fff;
}
.h-menu-bg{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.h-menu-bg:after{
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: rgba( 0,0,0,0.7 );
    position: absolute;
    left: 0;
    top: 0;
}
.h-menu-bg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.h-menu {
    margin: 0 auto;
}
.h-menu-content{
    position: relative;
    z-index: 1;
}

.h-menu-category {
    font-size: 24px;
    font-weight: bold;
    margin-top: 20px;
    border-bottom: 2px solid #ccc;
    padding-bottom: 5px;
}

.h-menu-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 10px;
    border-bottom: 1px dashed #ccc;
}

.h-menu-item:last-child {
    border-bottom: none;
}

.h-menu-name {
    font-weight: bold;
}
.h-modal-title{
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.05;
}

.book{
    padding: 40px;
    text-align: start;
    position: relative;

}
.book .title{
    text-align: center;
    line-height: 1.05;
}

.book-form{ 
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}   
.book-form-inner{
    display: block;
    padding: 0;
    margin: 0;
    width: 48%;
    margin: 1%;
}
.book-form-inner-title{
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
}
.book-form-inner-input input{
    width: 100%;
    height: 40px;
    border: 1px solid #101A24;
    border-radius: 15px 4px;
    padding-left: 20px;
    transition: 0.3s;
}
.book-form-inner-input input:focus{
    border-color: #EA6D27;
}
.book-form-sub{
    text-align: center;
    width: 100%;
    margin-top: 20px;
}
.book-form-sub input{
    transition: 0.3s;
}

.book-accept{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba( 255,255,255,0.95 );
    z-index: 1;
    align-items: center;
    justify-content: center;
    display: none;
    animation: show 0.3s;
}
.book-accept.active{
    display: flex;
}
.book-accept-title{
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 40px;
}
.book-accept-icon{
    width: 70px;
    height: 70px;
    margin: 0 auto;
}
.book-accept-icon img{
    width: 100%;
    height: 100%;
}
.contacts{
    position: relative;
    .title{
        text-align: center;
    }
    .slogan{
        margin: 0 auto 40px auto;
        text-align: center;
    }
}
.contacts-block{
    position: relative;
}
.contacts-block-map{
    border-radius: 20px 4px 20px 4px;
    border: 1px solid #EA6D27;
    overflow: hidden;
}
.contacts-block-map iframe{
    width: 100%;
    display: block;
}
.contacts-block-inner{
    border-radius: 20px 4px 20px 4px;
    border: 1px solid #EA6D27;
    position: absolute;
    right: 20px;
    top: 20px;
    background: #F3F4F4;
    padding: 20px;
    text-align: center;
}
.contacts-block-inner-title{
    font-size: 18px;
}
.contacts-block-inner-text{
    font-size: 12px;
}
.contacts-block-inner-link{
    color: #EA6D27 !important;
    font-size: 14px;
}
@media screen and (max-width: 1200px) {
    h1.title {
        font-size: 50px;
    }

    .title {
        font-size: 42px;
    }

    .menu-link {
        padding: 5px 10px;
    }

    .reviews-object {
        max-width: 20%;
    }

    .reviews-object img {
        width: 100%;
    }
}

@media screen and (max-width: 992px) {
    .header-bars {
        display: flex;
    }

    .header-btn {
        display: none;
    }

    .head-block-object:nth-child(2) {
        width: 200px;
        height: 200px;
    }

    .head-block-object:nth-child(2) img {
        width: 100%;
        height: 100%;
    }

    .special-row-item {
        width: 48%;
    }

    .special-row-item:nth-child(n+3) {
        margin-top: 100px;
    }

    section {
        padding: 80px 0 !important;
    }

    .head {
        padding-top: 140px !important;
    }

    .header-menu {
        display: none;
    }

    .footer-row {
        display: block;
        text-align: center;
    }

    .footer-text {
        margin: 20px auto;
    }

    .footer .logo {
        justify-content: center;
        margin: 0;
    }

    .footer-inner {
        justify-content: center;
        text-align: start;
    }

    .footer .default-soc {
        justify-content: center;
        margin-top: 40px;
    }

    .head-object {
        display: none;
    }

    .head-row {
        display: block;
    }

    .head-row-item {
        width: 100%;
    }

    .slogan {
        max-width: 100%;
    }

    h1.title {
        margin-bottom: 20px;
    }

    .head .default-btn-row {
        margin: 20px 0;
    }

    .head-block-img {
        display: none;
    }

    .team-inner-list-item {
        width: 100%;
    }

    .team-inner-list-item+.team-inner-list-item {
        margin-top: 20px;
    }

    .head-block-object:nth-child(2) {
        display: none;
    }

}

@media screen and (max-width: 768px) {
    .header {
        padding: 30px 0;
    }

    .head-inner {
        text-align: center;
    }

    .our-row {
        flex-wrap: wrap;
    }

    .our-row-img {
        width: 300px;
        max-width: 100%;
        margin: 0 auto;

    }

    .our-row-inner {
        width: 100%;
        text-align: center;
        margin-top: 40px;
    }

    .default-btn-row,
    .default-soc {
        justify-content: center;
    }

    .team-row {
        flex-wrap: wrap;
    }

    .team-inner {
        width: 100%;
        text-align: center;
    }

    .team-inner-list-item {
        width: 49%;
        padding: 10px 0;
    }

    .team-inner-list-item+.team-inner-list-item {
        margin-top: 0;
    }

    .team-img {
        width: 300px;
        margin: 0px auto 40px auto;
        order: -1;
    }

    .team-inner-list-item {
        text-align: start;
    }
}

@media screen and (max-width: 574px) {
    .head-block-object:nth-child(5) {
        display: none;
    }

    .special-row-item {
        width: 100%;
    }

    .special-inner {
        width: 320px;
        margin: 0 auto;
    }

    .special-row-item:nth-child(n+2) {
        margin-top: 100px;
    }

    .our {
        padding-top: 0 !important;
    }

    .team-inner-list-item {
        width: 100%;
    }

    .reviews-inner {
        padding: 60px 20px 20px 20px;
    }

    .footer-inner {
        flex-wrap: wrap;
    }

    .footer-inner-item+.footer-inner-item {
        margin-left: 0;
    }

    .footer-inner-item {
        padding: 10px;
        text-align: center;
    }

    .promo-block {
        padding: 60px 15px;
    }

    .promo-block-inner .title {
        font-size: 30px;
    }

    .promo-form-inner-sub {
        top: 110%;
        left: 50%;
        transform: translateX(-50%);
        right: auto;
    }

    .h-btn {
        font-size: 10px;
        text-transform: uppercase;
        font-weight: 700;
    }
    .book{
        padding: 40px 20px;
    }
}

@media screen and (max-width: 474px) {
    .head-block-object:nth-child(4) {
        display: none;
    }

    h1.title {
        font-size: 40px;
    }

    .title {
        font-size: 33px;
    }
}


@media screen and (max-height: 540px){
    .mob-menu .menu-link{
        padding: 4px 20px;
    }
    .mob-menu-btn .h-btn{
        font-size: 12px;
        padding: 5px;
    }
    .mob-menu-btn a+a{
        margin-top: 5px;
    }
}

