Berkarar/themes/berkarar/assets/css/main.css

5023 lines
98 KiB
CSS
Raw Normal View History

2022-08-28 19:50:26 +00:00
@charset "UTF-8";
*,
*::before,
*::after {
margin: 0px;
padding: 0px;
border: none;
outline: none;
scroll-behavior: smooth;
}
button {
outline: none;
}
button:focus {
outline: none;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
/***
====================================================================
Global Settings
====================================================================
***/
body {
font-family: "Montserrat", sans-serif;
font-size: 14px;
color: #000;
line-height: 1.7em;
font-weight: 400;
background: #fff;
position: relative;
box-sizing: border-box;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-font-smoothing: antialiased;
-moz-font-smoothing: antialiased;
2023-08-11 10:31:54 +00:00
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
min-height: 100vh;
2022-08-28 19:50:26 +00:00
}
body.active {
overflow: hidden;
}
body.active {
overflow: hidden;
}
a {
text-decoration: none;
color: #000;
}
h1,
h2,
h3,
h4,
h5,
h6 {
position: relative;
font-weight: normal;
margin: 0px;
background: none;
line-height: 1.6em;
}
/* Typography */
h1 {
font-size: 4em;
}
h2 {
font-size: 40px;
}
h3 {
font-size: 34px;
}
h4 {
font-size: 22px;
}
h5 {
font-size: 20px;
}
h6 {
font-size: 18px;
}
p {
position: relative;
line-height: 1.8em;
}
.auto_container {
position: relative;
max-width: 1600px;
padding: 0px 60px;
margin: 0 auto;
}
ul,
li {
list-style: none;
padding: 0px;
margin: 0px;
}
/* width */
::-webkit-scrollbar {
width: 8px;
}
/* Track */
::-webkit-scrollbar-track {
background: #fff;
border: 1px solid #DFDFDF;
border-radius: 10px;
}
/* Handle */
::-webkit-scrollbar-thumb {
background: #DFDFDF;
border-radius: 10px;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: #DFDFDF;
}
input[type=date]::-webkit-calendar-picker-indicator {
cursor: pointer;
}
.header {
2023-07-26 11:44:12 +00:00
padding: 30px 0;
2022-08-28 19:50:26 +00:00
background: #292929;
display: block;
position: relative;
-webkit-transition: all 0.2s ease-in-out 0s;
transition: all 0.2s ease-in-out 0s;
-moz-transition: all 0.2s ease-in-out 0s;
position: relative;
top: 0;
}
2023-08-11 10:31:54 +00:00
.header.fixed {
2022-08-28 19:50:26 +00:00
position: fixed;
top: 0;
left: 0;
width: 100%;
2022-09-22 10:35:44 +00:00
z-index: 101;
2022-08-28 19:50:26 +00:00
-webkit-animation: header 0.3s linear;
animation: header 0.3s linear;
}
.header_row {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
}
.header_item {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.header_item-link {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
padding: 15px 25px;
border: 1px solid #fff;
border-radius: 10px;
cursor: pointer;
font-weight: 700;
font-size: 14px;
2022-09-22 10:35:44 +00:00
line-height: 1.2;
2022-08-28 19:50:26 +00:00
color: #FFFFFF;
-webkit-transition: all 0.2s ease-in-out 0s;
transition: all 0.2s ease-in-out 0s;
-moz-transition: all 0.2s ease-in-out 0s;
}
.header_item-link:hover {
background: #FFB100;
color: #171717;
border-color: #FFB100;
}
.header_item-link:hover span path {
fill: #171717;
}
.header_item-link span {
display: block;
width: 20px;
height: 20px;
margin-right: 10px;
}
.header_item-link span svg {
width: 100%;
height: 100%;
object-fit: contain;
-o-object-fit: contain;
}
.header_item-link span svg path {
-webkit-transition: all 0.2s ease-in-out 0s;
transition: all 0.2s ease-in-out 0s;
-moz-transition: all 0.2s ease-in-out 0s;
}
.header .burger {
2023-07-26 11:44:12 +00:00
height: 40px;
2023-07-29 05:46:55 +00:00
padding: 5px 10px;
border-radius: 10px;
2022-08-28 19:50:26 +00:00
background: #fff;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
cursor: pointer;
-webkit-transition: all 0.2s ease-in-out 0s;
transition: all 0.2s ease-in-out 0s;
-moz-transition: all 0.2s ease-in-out 0s;
}
.header .burger:hover {
background: #FFB100;
}
.header .burger:hover span {
background: #fff;
}
.header .burger:hover span::before, .header .burger:hover span::after {
background: #fff;
}
2023-07-29 05:46:55 +00:00
.header .burger:hover p {
color: #FFF;
}
2022-09-22 10:35:44 +00:00
.header .burger.active span {
2022-09-26 04:58:01 +00:00
background: none;
2022-09-22 10:35:44 +00:00
}
.header .burger.active span::before {
2022-09-26 04:58:01 +00:00
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
top: 0;
2022-09-22 10:35:44 +00:00
}
.header .burger.active span::after {
2022-09-26 04:58:01 +00:00
-webkit-transform: rotate(-45deg);
transform: rotate(-45deg);
bottom: 0;
2022-09-22 10:35:44 +00:00
}
2023-07-29 05:46:55 +00:00
.header .burger.active p {
color: #171717;
}
.header .burger.active:hover p {
color: #fff;
}
2022-08-28 19:50:26 +00:00
.header .burger span {
display: block;
position: relative;
width: 23px;
height: 2px;
background: #171717;
-webkit-transition: all 0.2s ease-in-out 0s;
transition: all 0.2s ease-in-out 0s;
-moz-transition: all 0.2s ease-in-out 0s;
2023-07-29 05:46:55 +00:00
margin-right: 10px;
2022-08-28 19:50:26 +00:00
}
.header .burger span::before {
content: "";
position: absolute;
top: -5px;
left: 0;
width: 23px;
height: 2px;
background: #171717;
-webkit-transition: all 0.2s ease-in-out 0s;
transition: all 0.2s ease-in-out 0s;
-moz-transition: all 0.2s ease-in-out 0s;
}
.header .burger span::after {
content: "";
position: absolute;
bottom: -5px;
left: 0;
width: 23px;
height: 2px;
background: #171717;
-webkit-transition: all 0.2s ease-in-out 0s;
transition: all 0.2s ease-in-out 0s;
-moz-transition: all 0.2s ease-in-out 0s;
}
2023-07-29 05:46:55 +00:00
.header .burger p {
font-size: 12px;
font-weight: 700;
line-height: 1.3;
-webkit-transition: all 0.2s ease-in-out 0s;
transition: all 0.2s ease-in-out 0s;
-moz-transition: all 0.2s ease-in-out 0s;
}
2022-08-28 19:50:26 +00:00
.header .logo {
display: block;
position: relative;
width: 390px;
height: 50px;
cursor: pointer;
}
.header .logo img {
width: 100%;
height: 100%;
object-fit: contain;
-o-object-fit: contain;
}
.header .lang {
display: block;
position: relative;
}
.header .lang_current {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
cursor: pointer;
2023-08-11 10:31:54 +00:00
padding: 15px 12px;
2022-08-28 19:50:26 +00:00
background: #fff;
border-radius: 10px;
font-weight: 700;
2023-07-26 11:44:12 +00:00
font-size: 13px;
2022-09-22 10:35:44 +00:00
line-height: 1.2;
2022-08-28 19:50:26 +00:00
color: #171717;
}
.header .lang_flag {
2023-07-26 11:44:12 +00:00
width: 16px;
height: 16px;
2022-08-28 19:50:26 +00:00
margin-right: 10px;
}
.header .lang_flag img {
width: 100%;
height: 100%;
object-fit: contain;
-o-object-fit: contain;
}
.header .lang_arrow {
2023-07-26 11:44:12 +00:00
width: 12px;
height: 12px;
2022-08-28 19:50:26 +00:00
margin-left: 10px;
}
.header .lang_arrow svg {
width: 100%;
height: 100%;
object-fit: contain;
-o-object-fit: contain;
}
.header .lang_box {
display: none;
width: 100%;
border-radius: 10px;
overflow: hidden;
2022-09-22 10:35:44 +00:00
z-index: 101;
2022-08-28 19:50:26 +00:00
position: absolute;
top: calc(100% + 20px);
left: 0;
z-index: 10;
}
.header .lang_box.active {
display: block;
}
.header .lang_box a {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
background: #292929;
padding: 12px 10px;
-webkit-transition: all 0.2s ease-in-out 0s;
transition: all 0.2s ease-in-out 0s;
-moz-transition: all 0.2s ease-in-out 0s;
font-weight: 700;
2023-07-26 11:44:12 +00:00
font-size: 13px;
2022-09-22 10:35:44 +00:00
line-height: 1.2;
2022-08-28 19:50:26 +00:00
color: #fff;
}
.header .lang_box a span {
display: block;
2023-07-26 11:44:12 +00:00
width: 16px;
height: 16px;
2022-08-28 19:50:26 +00:00
margin-right: 10px;
}
.header .lang_box a span img {
width: 100%;
height: 100%;
object-fit: contain;
-o-object-fit: contain;
}
.header .lang_box a:hover {
background: #fff;
color: #292929;
}
2022-09-22 10:35:44 +00:00
.header .user {
position: relative;
display: block;
}
.header .user_title {
cursor: pointer;
border: 1px solid #fff;
border-radius: 10px;
padding: 15px 25px 15px;
font-weight: 700;
font-size: 14px;
line-height: 1.2;
color: #fff;
-webkit-transition: all 0.2s ease-in-out 0s;
transition: all 0.2s ease-in-out 0s;
-moz-transition: all 0.2s ease-in-out 0s;
width: 50px;
text-overflow: ellipsis;
overflow: hidden;
}
.header .user_title span {
position: absolute;
top: 50%;
right: 10px;
transform: translateY(-50%);
-moz-ransform: translateY(-50%);
-o-transform: translateY(-50%);
-ms-transform: translateY(-50%);
-webkit-transform: translateY(-50%);
display: block;
width: 12px;
}
.header .user_title span svg {
width: 100%;
height: 100%;
object-fit: contain;
-o-object-fit: contain;
}
.header .user_title span svg path {
-webkit-transition: all 0.2s ease-in-out 0s;
transition: all 0.2s ease-in-out 0s;
-moz-transition: all 0.2s ease-in-out 0s;
}
.header .user_title:hover {
border-color: #FFB100;
color: #292929;
background: #FFB100;
}
.header .user_title:hover span path {
fill: #292929;
}
.header .user_group {
position: absolute;
top: calc(100% + 10px);
left: 0;
width: 100%;
display: none;
}
.header .user_group.active {
display: block;
}
.header .user_group a {
background: #171717;
color: #fff;
display: block;
padding: 8px 10px;
text-align: center;
border-radius: 4px;
font-weight: 700;
font-size: 14px;
line-height: 1.2;
-webkit-transition: all 0.2s ease-in-out 0s;
transition: all 0.2s ease-in-out 0s;
-moz-transition: all 0.2s ease-in-out 0s;
}
.header .user_group a:hover {
background: #FFB100;
}
2022-08-28 19:50:26 +00:00
.m-rl {
margin: 0 40px;
}
.nav {
2023-07-26 11:44:12 +00:00
padding: 20px 0;
2022-08-28 19:50:26 +00:00
background: #171717;
}
2023-08-11 10:31:54 +00:00
.nav.fixed {
2022-08-28 19:50:26 +00:00
position: fixed;
2023-07-26 11:44:12 +00:00
top: 110px;
2022-08-28 19:50:26 +00:00
left: 0;
width: 100%;
z-index: 100;
-webkit-animation: header 0.3s linear;
animation: header 0.3s linear;
}
.nav_row {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
}
.nav_list {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.nav_list li {
display: block;
margin-right: 40px;
}
2023-08-11 10:31:54 +00:00
.nav_list li a,
.nav_list li h6 {
2022-08-28 19:50:26 +00:00
font-weight: 700;
font-size: 12px;
line-height: 15px;
text-transform: uppercase;
color: #FFFFFF;
cursor: pointer;
2023-07-26 11:44:12 +00:00
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-transition: all 0.2s ease-in-out 0s;
transition: all 0.2s ease-in-out 0s;
-moz-transition: all 0.2s ease-in-out 0s;
}
2023-08-11 10:31:54 +00:00
.nav_list li a span,
.nav_list li h6 span {
2022-08-28 19:50:26 +00:00
display: block;
2023-07-26 11:44:12 +00:00
width: 20px;
height: 20px;
margin-right: 10px;
}
2023-08-11 10:31:54 +00:00
.nav_list li a span svg,
.nav_list li h6 span svg {
2023-07-26 11:44:12 +00:00
width: 100%;
height: 100%;
object-fit: contain;
-o-object-fit: contain;
}
2023-08-11 10:31:54 +00:00
.nav_list li a span svg path,
.nav_list li h6 span svg path {
2022-08-28 19:50:26 +00:00
-webkit-transition: all 0.2s ease-in-out 0s;
transition: all 0.2s ease-in-out 0s;
-moz-transition: all 0.2s ease-in-out 0s;
}
2023-08-11 10:31:54 +00:00
.nav_list li a:hover,
.nav_list li h6:hover {
2022-08-28 19:50:26 +00:00
color: #FFB100;
}
2023-08-11 10:31:54 +00:00
.nav_list li a:hover path,
.nav_list li h6:hover path {
2023-07-26 11:44:12 +00:00
fill: #FFB100;
}
2022-08-28 19:50:26 +00:00
.nav_list li .more {
font-weight: 700;
font-size: 12px;
line-height: 15px;
text-transform: uppercase;
color: #FFFFFF;
cursor: pointer;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-transition: all 0.2s ease-in-out 0s;
transition: all 0.2s ease-in-out 0s;
-moz-transition: all 0.2s ease-in-out 0s;
}
.nav_list li .more:hover {
color: #FFB100;
}
.nav_list li .more:hover span svg circle {
fill: #FFB100;
}
.nav_list li .more span {
margin-left: 10px;
width: 18px;
height: 10px;
display: block;
position: relative;
}
.nav_list li .more span svg {
width: 100%;
height: 100%;
object-fit: contain;
-o-object-fit: contain;
}
.nav_list li .more span svg circle {
-webkit-transition: all 0.2s ease-in-out 0s;
transition: all 0.2s ease-in-out 0s;
-moz-transition: all 0.2s ease-in-out 0s;
}
.nav .search {
width: 22px;
height: 22px;
cursor: pointer;
display: block;
position: relative;
}
.nav .search:hover svg path {
fill: #FFB100;
}
.nav .search svg {
width: 100%;
height: 100%;
object-fit: contain;
-o-object-fit: contain;
}
.nav .search svg path {
-webkit-transition: all 0.2s ease-in-out 0s;
transition: all 0.2s ease-in-out 0s;
-moz-transition: all 0.2s ease-in-out 0s;
}
@keyframes header {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-webkit-keyframes header {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
.menu {
position: fixed;
top: -150%;
left: 0;
width: 100%;
2023-07-26 11:44:12 +00:00
height: calc(100% - 168px);
2022-08-28 19:50:26 +00:00
background: url("../images/menu-bg.png") no-repeat center;
background-size: cover;
z-index: 100;
overflow-y: auto;
2023-07-26 11:44:12 +00:00
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
2022-08-28 19:50:26 +00:00
}
.menu.active {
2023-07-26 11:44:12 +00:00
top: 169px;
2022-08-28 19:50:26 +00:00
-webkit-animation: header 0.3s linear;
animation: header 0.3s linear;
}
2023-07-26 11:44:12 +00:00
.menu_wrap {
margin-bottom: 20px;
}
2022-08-28 19:50:26 +00:00
.menu::-webkit-scrollbar {
display: none;
}
.menu_search {
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
padding-top: 65px;
margin-bottom: 50px;
}
.menu_search-title {
font-weight: 700;
2023-07-26 11:44:12 +00:00
font-size: 26px;
2022-08-28 19:50:26 +00:00
line-height: 1.6;
color: #fff;
width: 100%;
margin-bottom: 25px;
}
.menu_search-title span {
color: #FFB100;
}
.menu_search-input {
2023-07-26 11:44:12 +00:00
width: calc(100% - 176px);
2022-08-28 19:50:26 +00:00
margin-right: 30px;
}
.menu_search-input input {
background: #fff;
font-weight: 700;
2023-07-26 11:44:12 +00:00
font-size: 16px;
2022-08-28 19:50:26 +00:00
line-height: 22px;
color: #292929;
2023-07-26 11:44:12 +00:00
padding: 15px 25px;
2022-08-28 19:50:26 +00:00
width: calc(100% - 50px);
border-radius: 5px;
}
.menu_search-input input::-webkit-input-placeholder {
color: rgba(23, 23, 23, 0.5);
}
.menu_search-input input::-moz-placeholder {
color: rgba(23, 23, 23, 0.5);
}
.menu_search-input input:-ms-input-placeholder {
color: rgba(23, 23, 23, 0.5);
}
.menu_search-input input::-ms-input-placeholder {
color: rgba(23, 23, 23, 0.5);
}
.menu_search-input input::placeholder {
color: rgba(23, 23, 23, 0.5);
}
.menu_search-btn {
display: inline-block;
2023-07-26 11:44:12 +00:00
padding: 15px 45px;
2022-08-28 19:50:26 +00:00
background: #FFB100;
color: #292929;
font-weight: 700;
2023-07-26 11:44:12 +00:00
font-size: 16px;
2022-08-28 19:50:26 +00:00
line-height: 22px;
color: #000000;
border-radius: 5px;
cursor: pointer;
-webkit-transition: all 0.2s ease-in-out 0s;
transition: all 0.2s ease-in-out 0s;
-moz-transition: all 0.2s ease-in-out 0s;
}
.menu_search-btn:hover {
background: #171717;
color: #FFB100;
}
.menu_box {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
}
.menu_col {
2023-08-11 10:31:54 +00:00
width: calc(20% - 64px);
2022-08-28 19:50:26 +00:00
margin-right: 80px;
position: relative;
display: block;
}
.menu_col::after {
content: "";
position: absolute;
top: 0;
right: -40px;
height: 100%;
width: 1px;
2023-08-11 10:31:54 +00:00
background: #8E8E8E;
2022-08-28 19:50:26 +00:00
}
.menu_col:last-child {
margin-right: 0;
}
.menu_col:last-child::after {
display: none;
}
.menu_col-group {
margin-bottom: 40px;
}
.menu_col-group:last-child {
margin-bottom: 0;
}
.menu_col-title {
font-weight: 700;
2023-08-11 10:31:54 +00:00
font-size: 16px;
2022-08-28 19:50:26 +00:00
line-height: 1.2;
color: #FFB100;
margin-bottom: 25px;
}
.menu_col-link {
display: block;
margin-bottom: 20px;
font-weight: 700;
2023-08-11 10:31:54 +00:00
font-size: 16px;
2022-08-28 19:50:26 +00:00
line-height: 1.2;
color: #FFFFFF;
-webkit-transition: all 0.2s ease-in-out 0s;
transition: all 0.2s ease-in-out 0s;
-moz-transition: all 0.2s ease-in-out 0s;
}
.menu_col-link:hover {
color: #FFB100;
}
2023-07-26 11:44:12 +00:00
.menu .footer_navs {
padding-bottom: 40px;
2022-08-28 19:50:26 +00:00
}
.menu_row {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
}
.menu_txt {
font-weight: 400;
font-size: 14px;
line-height: 17px;
color: #FFFFFF;
}
.menu_info {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.menu_info-item {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
font-weight: 400;
font-size: 14px;
line-height: 17px;
color: #FFFFFF;
margin-right: 50px;
}
.menu_info-item:last-child {
margin-right: 0;
}
.menu_info-item:hover {
color: #FFB100;
}
.menu_info-item:hover span path {
fill: #FFB100;
}
.menu_info-item span {
width: 24px;
height: 24px;
display: block;
margin-right: 10px;
}
.menu_info-item span svg {
width: 100%;
height: 100%;
object-fit: contain;
-o-object-fit: contain;
}
.menu_info-item span svg path {
-webkit-transition: all 0.2s ease-in-out 0s;
transition: all 0.2s ease-in-out 0s;
-moz-transition: all 0.2s ease-in-out 0s;
}
.crumb {
2023-07-26 11:44:12 +00:00
padding: 40px 0 0;
2022-08-28 19:50:26 +00:00
}
.crumb_row {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
position: relative;
}
.crumb_title {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
position: relative;
font-weight: 400;
font-size: 14px;
line-height: 17px;
margin-right: 35px;
-webkit-transition: all 0.2s ease-in-out 0s;
transition: all 0.2s ease-in-out 0s;
-moz-transition: all 0.2s ease-in-out 0s;
}
.crumb_title:last-child {
margin-right: 0;
}
.crumb_title:last-child::after {
display: none;
}
.crumb_title::after {
content: "";
position: absolute;
top: 50%;
right: -25px;
transform: translateY(-50%);
-moz-ransform: translateY(-50%);
-o-transform: translateY(-50%);
-ms-transform: translateY(-50%);
-webkit-transform: translateY(-50%);
width: 20px;
height: 16px;
background: url("../images/svg/crumb-arrow.svg") no-repeat center;
}
.crumb_title:hover {
color: #FFB100;
}
.crumb_title:hover span path {
fill: #FFB100;
stroke: #FFB100;
}
.crumb_title:hover:last-child {
color: initial;
}
.crumb_title span {
width: 20px;
height: 20px;
display: block;
margin-right: 10px;
}
.crumb_title span svg {
width: 100%;
height: 100%;
object-fit: contain;
-o-object-fit: contain;
}
.crumb_title span svg path {
-webkit-transition: all 0.2s ease-in-out 0s;
transition: all 0.2s ease-in-out 0s;
-moz-transition: all 0.2s ease-in-out 0s;
}
.modal {
position: fixed;
top: 0;
left: 0;
2022-09-22 10:35:44 +00:00
z-index: 110;
2022-08-28 19:50:26 +00:00
background: rgba(0, 0, 0, 0.5);
display: none;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
width: 100%;
height: 100%;
}
.modal .inner {
position: relative;
max-width: 700px;
width: calc(100% - 50px);
height: calc(100% - 100px);
overflow: auto;
background: #292929;
}
.modal.active {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
}
.modal_close {
position: absolute;
top: 16px;
right: 16px;
width: 40px;
height: 40px;
z-index: 4;
cursor: pointer;
}
.modal_close:hover svg ellipse {
fill: red;
}
.modal_close:hover svg path {
fill: #fff;
}
.modal_close svg {
width: 100%;
height: 100%;
object-fit: contain;
-o-object-fit: contain;
pointer-events: none;
}
.modal_close svg ellipse,
.modal_close svg path {
-webkit-transition: all 0.2s ease-in-out 0s;
transition: all 0.2s ease-in-out 0s;
-moz-transition: all 0.2s ease-in-out 0s;
}
.modal .movie_desc-photo {
width: 100%;
height: 400px;
margin-bottom: 15px;
}
.modal .movie_desc-photo img {
width: 100%;
height: 100%;
object-fit: cover;
-o-object-fit: cover;
}
.modal .movie_desc-info {
padding: 30px 25px;
}
.modal .movie_desc-title {
font-weight: 700;
font-size: 20px;
line-height: 1.3;
color: #FFFFFF;
margin-bottom: 15px;
}
.modal .movie_desc-row {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
margin-bottom: 25px;
}
.modal .movie_desc-row b {
font-weight: 400;
font-size: 18px;
line-height: 1.5;
color: #FFFFFF;
margin-right: 10px;
}
.modal .movie_desc-txt {
font-weight: 400;
font-size: 18px;
line-height: 1.5;
color: #FFFFFF;
margin-right: 30px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.modal .movie_desc-txt:last-child {
margin-right: 0;
}
.modal .movie_desc-txt span {
display: block;
margin-right: 10px;
width: 25px;
height: 25px;
}
.modal .movie_desc-txt span svg {
width: 100%;
height: 100%;
object-fit: contain;
-o-object-fit: contain;
}
.modal .movie_desc-text {
font-weight: 400;
font-size: 18px;
line-height: 1.4;
color: #FFFFFF;
margin-bottom: 30px;
}
.modal.login .inner {
height: auto;
}
.modal .login_form {
padding: 65px;
background: #292929;
}
.modal .login_title {
font-weight: 700;
font-size: 24px;
line-height: 1.5;
color: #FFFFFF;
margin-bottom: 50px;
}
.modal .login_input {
width: 100%;
margin-bottom: 25px;
}
.modal .login_input label {
font-weight: 700;
font-size: 18px;
line-height: 1.3;
color: #FFFFFF;
margin-bottom: 10px;
display: block;
}
.modal .login_input input {
font-weight: 700;
font-size: 18px;
line-height: 1.5;
color: #FFFFFF;
width: calc(100% - 52px);
padding: 15px 25px;
border: 1px solid #fff;
border-radius: 10px;
background: transparent;
}
.modal .login_btn {
width: 100%;
padding: 15px 10px;
border-radius: 10px;
background: #FFB100;
color: #171717;
cursor: pointer;
margin-top: 25px;
font-weight: 700;
font-size: 18px;
line-height: 1.5;
color: #292929;
-webkit-transition: all 0.2s ease-in-out 0s;
transition: all 0.2s ease-in-out 0s;
-moz-transition: all 0.2s ease-in-out 0s;
border: 1px solid transparent;
}
.modal .login_btn:hover {
background: transparent;
border-color: #FFB100;
color: #FFB100;
}
.footer {
padding: 80px 0;
2023-08-11 10:31:54 +00:00
margin: auto 0 0 0;
2022-08-28 19:50:26 +00:00
background: #292929;
}
.footer_box {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
}
.footer_col {
width: calc(20% - 64px);
margin-right: 80px;
position: relative;
display: block;
}
.footer_col::after {
content: "";
position: absolute;
top: 0;
right: -40px;
height: 100%;
width: 1px;
2023-08-11 10:31:54 +00:00
background: #8E8E8E;
2022-08-28 19:50:26 +00:00
}
.footer_col:last-child {
margin-right: 0;
}
.footer_col:last-child::after {
display: none;
}
.footer_col-group {
margin-bottom: 40px;
}
.footer_col-group:last-child {
margin-bottom: 0;
}
.footer_col-title {
font-weight: 700;
font-size: 14px;
line-height: 1.2;
color: #FFB100;
margin-bottom: 25px;
2022-09-26 04:58:01 +00:00
display: block;
2022-08-28 19:50:26 +00:00
}
.footer_col-link {
display: block;
margin-bottom: 20px;
font-weight: 700;
font-size: 14px;
line-height: 1.2;
color: #FFFFFF;
-webkit-transition: all 0.2s ease-in-out 0s;
transition: all 0.2s ease-in-out 0s;
-moz-transition: all 0.2s ease-in-out 0s;
}
.footer_col-link:hover {
color: #FFB100;
}
2023-07-26 11:44:12 +00:00
.footer_navs {
2022-08-28 19:50:26 +00:00
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
2023-08-11 10:31:54 +00:00
border-top: 1px solid #8E8E8E;
2023-07-26 11:44:12 +00:00
margin-top: 50px;
padding-top: 50px;
2022-08-28 19:50:26 +00:00
}
2023-07-26 11:44:12 +00:00
.footer_navs-col {
width: calc(25% - 50px);
max-width: 245px;
color: #fff;
2022-08-28 19:50:26 +00:00
}
2023-07-26 11:44:12 +00:00
.footer_navs-link {
2022-08-28 19:50:26 +00:00
display: -webkit-box;
display: -ms-flexbox;
display: flex;
2023-07-26 11:44:12 +00:00
margin-bottom: 24px;
}
.footer_navs-link:last-child {
margin-bottom: 0;
}
.footer_navs-link p {
2023-08-11 10:31:54 +00:00
font-size: 16px;
2023-07-26 11:44:12 +00:00
font-weight: 400;
line-height: 1.3;
color: #fff;
width: calc(100% - 26px);
}
.footer_navs-link:hover p {
color: #FFB100;
}
.footer_navs-link:hover path {
fill: #FFB100;
}
.footer_navs-link span {
display: block;
2023-08-11 10:31:54 +00:00
width: 20px;
height: 20px;
2023-07-26 11:44:12 +00:00
margin-right: 10px;
}
.footer_navs-link span svg {
display: block;
width: 100%;
height: 100%;
object-fit: contain;
-o-object-fit: contain;
}
.footer_navs-txt {
font-size: 12px;
font-weight: 400;
line-height: 1.3;
2022-08-28 19:50:26 +00:00
}
2023-07-26 11:44:12 +00:00
.footer_navs .copyright {
2023-08-11 10:31:54 +00:00
font-size: 16px;
2023-07-26 11:44:12 +00:00
font-weight: 700;
line-height: 1.3;
margin-bottom: 24px;
}
.footer_navs ul li {
margin-bottom: 24px;
}
.footer_navs ul li:last-child {
margin-bottom: 0;
}
.footer_navs ul a {
2023-08-11 10:31:54 +00:00
font-size: 16px;
2023-07-26 11:44:12 +00:00
font-weight: 400;
line-height: 1.3;
color: #fff;
2022-08-28 19:50:26 +00:00
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
2023-07-26 11:44:12 +00:00
-webkit-transition: all 0.2s ease-in-out 0s;
transition: all 0.2s ease-in-out 0s;
-moz-transition: all 0.2s ease-in-out 0s;
2022-08-28 19:50:26 +00:00
}
2023-07-26 11:44:12 +00:00
.footer_navs ul a:hover {
2022-08-28 19:50:26 +00:00
color: #FFB100;
}
2023-07-26 11:44:12 +00:00
.footer_navs ul a:hover path {
2022-08-28 19:50:26 +00:00
fill: #FFB100;
}
2023-07-26 11:44:12 +00:00
.footer_navs ul a span {
2022-08-28 19:50:26 +00:00
display: block;
2023-08-11 10:31:54 +00:00
width: 20px;
height: 20px;
2022-08-28 19:50:26 +00:00
margin-right: 10px;
}
2023-07-26 11:44:12 +00:00
.footer_navs ul a span svg {
display: block;
2022-08-28 19:50:26 +00:00
width: 100%;
height: 100%;
object-fit: contain;
-o-object-fit: contain;
}
.hero_slider {
position: relative;
}
.hero_item {
2023-07-26 11:44:12 +00:00
height: calc(100vh - 160px);
2022-08-28 19:50:26 +00:00
width: 100%;
position: relative;
}
2022-09-22 10:35:44 +00:00
.hero_item.slick-active .hero_item-link {
opacity: 1;
}
2022-08-28 19:50:26 +00:00
.hero_item-photo {
2023-07-26 11:44:12 +00:00
height: calc(100vh - 160px);
2022-08-28 19:50:26 +00:00
width: 100%;
}
.hero_item-photo img {
width: 100%;
height: 100%;
object-fit: cover;
-o-object-fit: cover;
}
.hero_item-link {
position: absolute;
right: 80px;
bottom: 60px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
padding: 15px 25px;
background: rgba(0, 0, 0, 0.6);
border-radius: 10px;
font-weight: 700;
font-size: 14px;
line-height: 17px;
color: #FFFFFF;
letter-spacing: 0.8px;
-webkit-transition: all 0.2s ease-in-out 0s;
transition: all 0.2s ease-in-out 0s;
-moz-transition: all 0.2s ease-in-out 0s;
2022-09-22 10:35:44 +00:00
opacity: 0;
2022-08-28 19:50:26 +00:00
}
.hero_item-link:hover {
color: #000;
background: #FFB100;
}
.hero_item-link:hover span path {
fill: #000;
}
.hero_item-link span {
display: block;
position: relative;
margin-left: 10px;
width: 25px;
height: 15px;
}
.hero_item-link span svg {
width: 100%;
height: 100%;
object-fit: contain;
-o-object-fit: contain;
}
.hero_item-link span svg path {
-webkit-transition: all 0.2s ease-in-out 0s;
transition: all 0.2s ease-in-out 0s;
-moz-transition: all 0.2s ease-in-out 0s;
}
.hero .slider__counter {
position: absolute;
left: 80px;
bottom: 60px;
padding: 10px 0;
width: 215px;
background: rgba(0, 0, 0, 0.6);
border-radius: 10px;
color: #fff;
font-weight: 700;
font-size: 20px;
line-height: 24px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
}
.shops {
padding: 80px 0;
}
.shops_tab {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
margin-bottom: 50px;
}
.shops_tab-link {
padding: 10px 25px;
margin-right: 10px;
font-weight: 700;
font-size: 18px;
line-height: 22px;
text-transform: uppercase;
color: rgba(23, 23, 23, 0.5);
display: block;
position: relative;
cursor: pointer;
border-radius: 10px;
-webkit-transition: all 0.2s ease-in-out 0s;
transition: all 0.2s ease-in-out 0s;
-moz-transition: all 0.2s ease-in-out 0s;
}
.shops_tab-link:last-child {
margin-right: 0;
}
.shops_tab-link.active {
background: #171717;
color: #fff;
}
.shops_tab-link.active:hover {
background: #171717;
color: #fff;
}
.shops_tab-link:hover {
background: #FFB100;
color: #171717;
}
.shops_block {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
margin: -5px auto;
max-width: 1440px;
}
.shops_block.active {
display: -webkit-box !important;
display: -ms-flexbox !important;
display: flex !important;
}
.shops_block.active .shops_item {
2022-09-22 10:35:44 +00:00
-webkit-animation: fadeInUp 0.5s linear;
animation: fadeInUp 0.5s linear;
2022-08-28 19:50:26 +00:00
}
.shops_block.active .shops_item:nth-child(2) {
-webkit-animation-delay: 0.1s;
animation-delay: 0.1s;
}
.shops_block.active .shops_item:nth-child(3) {
-webkit-animation-delay: 0.15s;
animation-delay: 0.15s;
}
.shops_block.active .shops_item:nth-child(4) {
-webkit-animation-delay: 0.2s;
animation-delay: 0.2s;
}
.shops_block.active .shops_item:nth-child(5) {
-webkit-animation-delay: 0.25s;
animation-delay: 0.25s;
}
.shops_block.active .shops_item:nth-child(6) {
-webkit-animation-delay: 0.3s;
animation-delay: 0.3s;
}
.shops_block.active .shops_item:nth-child(7) {
-webkit-animation-delay: 0.35s;
animation-delay: 0.35s;
}
.shops_block.active .shops_item:nth-child(8) {
-webkit-animation-delay: 0.4s;
animation-delay: 0.4s;
}
.shops_block.active .shops_item:nth-child(9) {
-webkit-animation-delay: 0.45s;
animation-delay: 0.45s;
}
.shops_item {
width: calc(33.33% - 10px);
max-width: 480px;
height: 480px;
margin: 5px;
position: relative;
display: block;
}
.shops_item:hover .shops_item-info {
max-height: 100%;
opacity: 1;
}
.shops_item-photo {
width: 100%;
height: 100%;
position: relative;
z-index: -1;
}
.shops_item-photo::after {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
}
.shops_item-photo img {
width: 100%;
height: 100%;
object-fit: cover;
-o-object-fit: cover;
}
.shops_item-label {
font-weight: 700;
font-size: 14px;
line-height: 17px;
text-transform: uppercase;
color: #171717;
padding: 10px 20px;
background: #FFB100;
border-radius: 10px;
position: absolute;
top: 30px;
left: 30px;
}
.shops_item-info {
position: absolute;
top: 30px;
right: 30px;
-webkit-transform-origin: right;
transform-origin: right;
-webkit-transition: all 0.2s ease-in-out 0s;
transition: all 0.2s ease-in-out 0s;
-moz-transition: all 0.2s ease-in-out 0s;
2022-09-26 04:58:01 +00:00
max-width: 130px;
2022-08-28 19:50:26 +00:00
max-height: 0;
overflow: hidden;
opacity: 0;
2022-09-26 04:58:01 +00:00
text-align: center;
2022-08-28 19:50:26 +00:00
}
.shops_item-name {
font-weight: 700;
2022-09-26 04:58:01 +00:00
font-size: 18px;
line-height: 1.3;
2022-08-28 19:50:26 +00:00
text-transform: lowercase;
color: #171717;
background: #fff;
padding: 25px 20px;
border-radius: 10px 10px 0 0;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
}
.shops_item-floor {
font-weight: 700;
font-size: 40px;
line-height: 1.4;
text-align: center;
text-transform: lowercase;
color: #171717;
background: #FFB100;
padding: 15px 35px;
border-radius: 0 0 10px 10px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
}
.shops_item-floor span {
display: inline-block;
font-weight: 700;
font-size: 18px;
line-height: 1.4;
text-align: center;
text-transform: lowercase;
color: #171717;
-webkit-writing-mode: vertical-rl;
-ms-writing-mode: tb-rl;
writing-mode: vertical-rl;
-webkit-transform: rotate(180deg);
transform: rotate(180deg);
margin-left: 5px;
}
.shops_item-content {
position: absolute;
bottom: 30px;
left: 30px;
width: calc(100% - 60px);
}
.shops_item-content p {
font-weight: 400;
font-size: 14px;
line-height: 17px;
color: rgba(255, 255, 255, 0.7);
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
margin-bottom: 10px;
}
.shops_item-content p span {
display: inline-block;
margin-right: 10px;
width: 15px;
height: 15px;
}
.shops_item-content p span img {
width: 100%;
height: 100%;
object-fit: contain;
-o-object-fit: contain;
}
.shops_item-content-txt {
font-style: normal;
font-weight: 700;
font-size: 24px;
line-height: 1.4;
color: #fff;
2023-07-26 11:44:12 +00:00
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
2022-08-28 19:50:26 +00:00
}
2022-09-22 10:35:44 +00:00
@-webkit-keyframes fadeInUp {
2022-08-28 19:50:26 +00:00
0% {
2022-09-22 10:35:44 +00:00
opacity: 0;
-webkit-transform: translateY(20px);
transform: translateY(20px);
2022-08-28 19:50:26 +00:00
}
100% {
opacity: 1;
2022-09-22 10:35:44 +00:00
-webkit-transform: translateY(0);
transform: translateY(0);
2022-08-28 19:50:26 +00:00
}
}
2022-09-22 10:35:44 +00:00
@keyframes fadeInUp {
2022-08-28 19:50:26 +00:00
0% {
2022-09-22 10:35:44 +00:00
opacity: 0;
-webkit-transform: translateY(20px);
transform: translateY(20px);
2022-08-28 19:50:26 +00:00
}
100% {
opacity: 1;
2022-09-22 10:35:44 +00:00
-webkit-transform: translateY(0);
transform: translateY(0);
2022-08-28 19:50:26 +00:00
}
}
.movie {
padding: 80px 0;
background: url("../images/movie-bg.png") no-repeat center;
background-size: cover;
-webkit-animation: movie-bg 40s infinite ease-in-out;
animation: movie-bg 40s infinite ease-in-out;
}
.movie_wrap {
overflow: hidden;
}
.movie_row {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
margin-bottom: 30px;
}
.movie .slick-track {
display: -webkit-box !important;
display: -ms-flexbox !important;
display: flex !important;
}
.movie .slick-slide {
height: unset !important;
}
.movie_logo {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
font-weight: 700;
font-size: 24px;
line-height: 29px;
color: #FFFFFF;
}
.movie_logo span {
width: 75px;
height: 75px;
margin-right: 30px;
display: block;
}
.movie_logo span img {
width: 100%;
height: 100%;
object-fit: contain;
-o-object-fit: contain;
}
.movie_link {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
font-weight: 700;
font-size: 18px;
line-height: 22px;
2023-07-14 08:02:08 +00:00
text-decoration-line: underline;
2022-08-28 19:50:26 +00:00
color: #FFB100;
}
.movie_link span {
display: block;
width: 20px;
height: 20px;
margin-right: 15px;
}
.movie_link span svg {
width: 100%;
height: 100%;
object-fit: contain;
-o-object-fit: contain;
}
.movie_slider {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
margin: 0 -10px;
}
.movie_item {
display: -webkit-box !important;
display: -ms-flexbox !important;
display: flex !important;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
position: relative;
width: calc(16.66% - 20px);
margin: 0 10px;
}
.movie_item-photo {
height: 360px;
width: 100%;
}
.movie_item-photo img {
width: 100%;
height: 100%;
2023-07-26 11:44:12 +00:00
object-fit: contain;
-o-object-fit: contain;
2022-08-28 19:50:26 +00:00
}
.movie_item-title {
margin: 15px 0 8px;
font-weight: 700;
font-size: 20px;
line-height: 1.4;
color: #FFB100;
}
.movie_item-genre {
font-weight: 400;
font-size: 16px;
line-height: 1.3;
color: #FFFFFF;
}
.movie_item-link {
margin-top: 30px;
background: #FFB100;
color: #171717;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
padding: 15px 10px;
width: calc(100% - 20px);
border-radius: 10px;
font-weight: 700;
font-size: 12px;
line-height: 15px;
cursor: pointer;
-webkit-transition: all 0.2s ease-in-out 0s;
transition: all 0.2s ease-in-out 0s;
-moz-transition: all 0.2s ease-in-out 0s;
}
.movie_item-link:hover {
background: #171717;
color: #FFB100;
}
.movie_item-link:hover span path {
fill: #FFB100;
}
.movie_item-link span {
width: 15px;
height: 15px;
margin-left: 15px;
}
.movie_item-link span svg {
width: 100%;
height: 100%;
object-fit: contain;
-o-object-fit: contain;
}
.movie_all {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
}
.movie_all a {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
background: #FFB100;
color: #171717;
padding: 15px 25px;
cursor: pointer;
font-weight: 700;
font-size: 12px;
line-height: 15px;
border-radius: 10px;
margin-top: 140px;
}
.movie_all a span {
width: 15px;
height: 15px;
display: block;
margin-left: 10px;
}
.movie_all a span svg {
width: 100%;
height: 100%;
object-fit: contain;
-o-object-fit: contain;
}
.movie_all a span svg path {
-webkit-transition: all 0.2s ease-in-out 0s;
transition: all 0.2s ease-in-out 0s;
-moz-transition: all 0.2s ease-in-out 0s;
}
@keyframes movie-bg {
0% {
background-position: 0 0;
}
50% {
background-position: 100% 100%;
}
100% {
background-position: 0 0;
}
}
@-webkit-keyframes movie-bg {
0% {
background-position: 0 0;
}
50% {
background-position: 100% 100%;
}
100% {
background-position: 0 0;
}
}
.rest {
padding: 80px 0;
background: url("../images/restaurant-bg.png") no-repeat center;
background-size: cover;
}
.rest.page {
background: #fff;
}
2022-09-22 10:35:44 +00:00
.rest.page .rest_block {
max-width: unset;
}
2022-08-28 19:50:26 +00:00
.rest.page .rest_item {
width: calc(25% - 28px);
margin: 15px 12px;
}
.rest_tabs {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
margin-bottom: 50px;
}
.rest_tabs-link {
display: block;
position: relative;
padding: 12px 25px;
border-radius: 10px;
-webkit-transition: all 0.2s ease-in-out 0s;
transition: all 0.2s ease-in-out 0s;
-moz-transition: all 0.2s ease-in-out 0s;
cursor: pointer;
margin-right: 10px;
color: rgba(23, 23, 23, 0.5);
font-weight: 700;
font-size: 18px;
line-height: 1.3;
text-transform: uppercase;
}
.rest_tabs-link:last-child {
margin-right: 0;
}
.rest_tabs-link.active {
background: #171717;
color: #fff;
}
.rest_tabs-link.active:hover {
background: #171717;
color: #fff;
}
.rest_tabs-link:hover {
background: #FFB100;
color: #171717;
}
.rest_block {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
2022-09-22 10:35:44 +00:00
max-width: 1350px;
margin: 0 auto;
2023-08-14 08:25:34 +00:00
position: relative;
2022-08-28 19:50:26 +00:00
}
.rest_block.active {
display: -webkit-box !important;
display: -ms-flexbox !important;
display: flex !important;
2023-08-14 08:25:34 +00:00
-webkit-animation: tabActive 0.3s linear;
animation: tabActive 0.3s linear;
2022-08-28 19:50:26 +00:00
}
.rest_item {
width: calc(33.33% - 54px);
margin: 25px;
border: 2px solid rgba(41, 41, 41, 0.5);
border-radius: 5px 5px 0px 0px;
background: #fff;
2023-08-14 08:25:34 +00:00
display: block;
position: relative;
2022-08-28 19:50:26 +00:00
-webkit-transition: all 0.2s ease-in-out 0s;
transition: all 0.2s ease-in-out 0s;
-moz-transition: all 0.2s ease-in-out 0s;
}
.rest_item-photo {
2023-07-26 11:44:12 +00:00
width: 100%;
height: 290px;
2023-08-14 08:25:34 +00:00
display: block;
2022-08-28 19:50:26 +00:00
}
.rest_item-photo img {
width: 100%;
height: 100%;
2023-07-26 11:44:12 +00:00
object-fit: cover;
-o-object-fit: cover;
2023-08-14 08:25:34 +00:00
display: block;
2022-08-28 19:50:26 +00:00
}
.rest_item-info {
background: #171717;
padding: 25px 20px;
}
.rest_item-title {
font-weight: 700;
font-size: 18px;
line-height: 1.3;
text-transform: uppercase;
color: #FFFFFF;
2023-08-11 10:31:54 +00:00
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 1;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
2022-08-28 19:50:26 +00:00
}
.rest_item-txt {
font-weight: 400;
font-size: 14px;
line-height: 1.2;
color: #FFFFFF;
margin: 10px 0 25px;
2023-08-11 10:31:54 +00:00
min-height: 34px;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
2022-08-28 19:50:26 +00:00
}
.rest_item-row {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
}
.rest_item-floor {
padding: 10px 15px;
background: #FFB100;
color: #171717;
2022-09-22 10:35:44 +00:00
font-size: 15px;
2022-08-28 19:50:26 +00:00
font-weight: 700;
line-height: 1.2;
border-radius: 5px;
text-transform: uppercase;
}
.rest_item-link {
font-weight: 700;
2022-09-22 10:35:44 +00:00
font-size: 15px;
line-height: 1.2;
color: #292929;
background: #FFB100;
padding: 10px;
border-radius: 4px;
2022-08-28 19:50:26 +00:00
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
2022-09-22 10:35:44 +00:00
-webkit-transition: all 0.2s ease-in-out 0s;
transition: all 0.2s ease-in-out 0s;
-moz-transition: all 0.2s ease-in-out 0s;
border: 1px solid transparent;
}
.rest_item-link:hover {
background: transparent;
border-color: #FFB100;
color: #FFB100;
}
.rest_item-link:hover path,
.rest_item-link:hover rect {
stroke: #FFB100;
2022-08-28 19:50:26 +00:00
}
.rest_item-link span {
display: block;
2022-09-22 10:35:44 +00:00
margin-left: 7px;
width: 16px;
height: 16px;
2022-08-28 19:50:26 +00:00
}
.rest_item-link span svg {
width: 100%;
height: 100%;
object-fit: contain;
-o-object-fit: contain;
}
2022-09-22 10:35:44 +00:00
.rest_item-link span svg path,
.rest_item-link span svg rect {
-webkit-transition: all 0.2s ease-in-out 0s;
transition: all 0.2s ease-in-out 0s;
-moz-transition: all 0.2s ease-in-out 0s;
stroke: #292929;
}
.pag {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
margin-top: 50px;
}
.pag_group {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.pag_group input {
font-weight: 700;
font-size: 18px;
line-height: 25px;
text-align: center;
color: #1C1717;
width: 90px;
margin: 0 7px;
}
.pag_btn {
display: block;
width: 45px;
height: 45px;
}
.pag_btn svg {
width: 100%;
height: 100%;
object-fit: contain;
-o-object-fit: contain;
}
.pag_txt {
font-weight: 400;
font-size: 18px;
line-height: 25px;
color: #7D7D7D;
}
2022-08-28 19:50:26 +00:00
2023-08-14 08:25:34 +00:00
@-webkit-keyframes tabActive {
0% {
top: 40px;
opacity: 0.3;
}
100% {
top: 0;
opacity: 1;
}
}
@keyframes tabActive {
0% {
top: 40px;
opacity: 0.3;
}
100% {
top: 0;
opacity: 1;
}
}
2022-08-28 19:50:26 +00:00
.tabItem {
display: none;
}
.tabItem.active {
display: block;
}
2022-09-22 10:35:44 +00:00
.tabInfo {
display: none;
}
.tabInfo.active {
display: block;
}
.heroItem {
display: none;
}
.heroItem.active {
display: block;
}
2022-08-28 19:50:26 +00:00
.bill {
2023-08-11 11:34:25 +00:00
padding: 40px 0 80px;
2022-08-28 19:50:26 +00:00
}
.bill_box {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
}
.bill_aside {
background: #171717;
padding: 32px;
border-radius: 5px;
width: 390px;
margin-right: 40px;
}
.bill_aside-title {
cursor: pointer;
font-weight: 700;
font-size: 24px;
line-height: 29px;
color: #FFFFFF;
2023-08-11 11:34:25 +00:00
margin-bottom: 50px;
2022-08-28 19:50:26 +00:00
position: relative;
display: block;
-webkit-transition: all 0.2s ease-in-out 0s;
transition: all 0.2s ease-in-out 0s;
-moz-transition: all 0.2s ease-in-out 0s;
}
2023-08-11 11:34:25 +00:00
.bill_aside-title:last-child {
margin-bottom: 0;
}
2022-08-28 19:50:26 +00:00
.bill_aside-title:hover {
color: #FFB100;
}
.bill_aside-title.active {
color: #FFB100;
}
.bill_aside-title.active::after {
content: "";
position: absolute;
2023-08-11 11:34:25 +00:00
bottom: -25px;
2022-08-28 19:50:26 +00:00
left: 0;
width: 100%;
height: 1px;
background: #FFB100;
}
.bill_info {
width: calc(100% - 430px);
max-width: 870px;
}
.bill_item {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
border-top: 1px solid rgba(23, 23, 23, 0.5);
border-radius: 5px;
background: rgba(23, 23, 23, 0.05);
padding: 15px;
-webkit-transition: all 0.2s ease-in-out 0s;
transition: all 0.2s ease-in-out 0s;
-moz-transition: all 0.2s ease-in-out 0s;
}
.bill_item:hover {
-webkit-box-shadow: 3px 3px 5px 5px rgba(90, 90, 90, 0.1), -3px -3px 5px 5px rgba(90, 90, 90, 0.1);
box-shadow: 3px 3px 5px 5px rgba(90, 90, 90, 0.1), -3px -3px 5px 5px rgba(90, 90, 90, 0.1);
background: #FFB100;
}
.bill_item.downloaded {
background: #fff;
}
.bill_item > div {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
max-width: calc(100% - 220px);
}
.bill_item > div p {
font-weight: 700;
font-size: 18px;
line-height: 22px;
color: #171717;
margin-right: 24px;
}
.bill_item > div p:last-child {
margin-right: 0;
}
.bill_item-link {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
font-weight: 400;
font-size: 18px;
line-height: 22px;
color: #171717;
text-decoration: underline;
-webkit-transition: all 0.2s ease-in-out 0s;
transition: all 0.2s ease-in-out 0s;
-moz-transition: all 0.2s ease-in-out 0s;
}
.bill_item-link:hover {
color: RoyalBlue;
}
.bill_item-link:hover span path {
fill: RoyalBlue;
}
.bill_item-link span {
width: 24px;
height: 24px;
margin-right: 10px;
display: block;
}
.bill_item-link span svg {
width: 100%;
height: 100%;
object-fit: contain;
-o-object-fit: contain;
}
.bill_item-link span svg path {
-webkit-transition: all 0.2s ease-in-out 0s;
transition: all 0.2s ease-in-out 0s;
-moz-transition: all 0.2s ease-in-out 0s;
}
.bill_form {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin: -15px -20px;
}
.bill_input {
width: calc(50% - 40px);
margin: 15px 20px;
display: block;
position: relative;
}
.bill_input label {
display: block;
font-weight: 700;
font-size: 18px;
line-height: 22px;
margin-bottom: 10px;
}
.bill_input input {
font-weight: 400;
font-size: 18px;
line-height: 22px;
border: 1px solid rgba(23, 23, 23, 0.5);
border-radius: 5px;
padding: 14px 16px;
width: calc(100% - 34px);
}
.bill_input input::-webkit-input-placeholder {
color: rgba(23, 23, 23, 0.5);
}
.bill_input input::-moz-placeholder {
color: rgba(23, 23, 23, 0.5);
}
.bill_input input:-ms-input-placeholder {
color: rgba(23, 23, 23, 0.5);
}
.bill_input input::-ms-input-placeholder {
color: rgba(23, 23, 23, 0.5);
}
.bill_input input::placeholder {
color: rgba(23, 23, 23, 0.5);
}
.bill_btn {
width: 100%;
margin: 15px 20px;
}
.bill_btn button {
display: inline-block;
padding: 15px 10px;
font-weight: 700;
font-size: 18px;
line-height: 22px;
color: #171717;
background: #FFB100;
max-width: 240px;
width: calc(100% - 20px);
border-radius: 5px;
cursor: pointer;
-webkit-transition: all 0.2s ease-in-out 0s;
transition: all 0.2s ease-in-out 0s;
-moz-transition: all 0.2s ease-in-out 0s;
}
.bill_btn button:hover {
background: #292929;
color: #FFB100;
}
.intro {
position: relative;
display: block;
padding: 40px 0;
background: -webkit-gradient(linear, left top, right top, from(#000000), color-stop(0.01%, rgba(0, 0, 0, 0.9)), color-stop(80%, rgba(0, 0, 0, 0.4))), url("../images/bg.png") no-repeat center;
background: linear-gradient(90deg, #000000 0%, rgba(0, 0, 0, 0.9) 0.01%, rgba(0, 0, 0, 0.4) 80%), url("../images/bg.png") no-repeat center;
background-size: cover;
min-height: 800px;
}
.intro_wrap {
position: relative;
}
.intro .breadcrumb {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.intro .breadcrumb_title {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
position: relative;
font-weight: 400;
font-size: 14px;
line-height: 17px;
margin-right: 35px;
color: #fff;
-webkit-transition: all 0.2s ease-in-out 0s;
transition: all 0.2s ease-in-out 0s;
-moz-transition: all 0.2s ease-in-out 0s;
}
.intro .breadcrumb_title:last-child {
margin-right: 0;
}
.intro .breadcrumb_title:last-child::after {
display: none;
}
.intro .breadcrumb_title::after {
content: "";
position: absolute;
top: 50%;
right: -25px;
transform: translateY(-50%);
-moz-ransform: translateY(-50%);
-o-transform: translateY(-50%);
-ms-transform: translateY(-50%);
-webkit-transform: translateY(-50%);
width: 20px;
height: 16px;
background: url("../images/svg/crumb-white-arrow.svg") no-repeat center;
}
.intro .breadcrumb_title:hover {
color: #FFB100;
}
.intro .breadcrumb_title:hover span path {
fill: #FFB100;
stroke: #FFB100;
}
.intro .breadcrumb_title:hover:last-child {
color: #fff;
}
.intro .breadcrumb_title span {
width: 20px;
height: 20px;
display: block;
margin-right: 10px;
}
.intro .breadcrumb_title span svg {
width: 100%;
height: 100%;
object-fit: contain;
-o-object-fit: contain;
}
.intro .breadcrumb_title span svg path {
-webkit-transition: all 0.2s ease-in-out 0s;
transition: all 0.2s ease-in-out 0s;
-moz-transition: all 0.2s ease-in-out 0s;
stroke: #fff;
}
.intro_info {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
min-height: 800px;
max-width: 700px;
}
.intro_info.intro_contact {
max-width: 1275px;
margin: 0 auto;
}
.intro_info-title {
font-weight: 700;
font-size: 48px;
line-height: 59px;
color: #FFFFFF;
margin-bottom: 30px;
}
.intro_info-txt {
font-weight: 400;
font-size: 24px;
line-height: 35px;
color: #FFFFFF;
margin-bottom: 24px;
}
.intro_info-link {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start;
margin-top: 50px;
}
.intro_info-link a {
background: #FFB100;
color: #292929;
padding: 10px 25px;
font-weight: 700;
font-size: 16px;
line-height: 20px;
border-radius: 5px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-transition: all 0.2s ease-in-out 0s;
transition: all 0.2s ease-in-out 0s;
-moz-transition: all 0.2s ease-in-out 0s;
}
.intro_info-link a:hover {
color: #FFB100;
background: #292929;
}
.intro_info-link a:hover span path {
fill: #FFB100;
}
.intro_info-link a span {
width: 20px;
height: 20px;
display: block;
margin-left: 15px;
}
.intro_info-link a span svg {
width: 100%;
height: 100%;
object-fit: contain;
-o-object-fit: contain;
}
.intro_info-link a span svg path {
-webkit-transition: all 0.2s ease-in-out 0s;
transition: all 0.2s ease-in-out 0s;
-moz-transition: all 0.2s ease-in-out 0s;
}
.about {
padding: 80px 0;
}
.about_item {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
margin-bottom: 80px;
}
.about_item:last-child {
margin-bottom: 0;
}
.about_item:nth-of-type(even) {
-webkit-box-orient: horizontal;
-webkit-box-direction: reverse;
-ms-flex-direction: row-reverse;
flex-direction: row-reverse;
}
.about_item-photo {
width: calc(50% - 80px);
height: 600px;
}
.about_item-photo img {
width: 100%;
height: 100%;
object-fit: contain;
-o-object-fit: contain;
}
.about_item-info {
width: calc(50% - 80px);
}
.about_item-title {
font-weight: 700;
font-size: 48px;
line-height: 59px;
color: #292929;
margin-bottom: 30px;
}
.about_item-txt {
font-weight: 400;
font-size: 24px;
line-height: 35px;
color: #292929;
margin-bottom: 15px;
}
.about_item-txt:last-child {
margin-bottom: 0;
}
.contact {
position: relative;
margin-top: -200px;
padding-bottom: 80px;
}
.contact_form {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
border-radius: 5px;
overflow: hidden;
max-width: 1275px;
margin: 0 auto 80px auto;
background: #FFFFFF;
-webkit-box-shadow: 0px 4px 48px rgba(0, 0, 0, 0.24);
box-shadow: 0px 4px 48px rgba(0, 0, 0, 0.24);
}
.contact_box {
padding: 50px 45px;
width: calc(60% - 90px);
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
.contact_box-row {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
margin-bottom: 80px;
width: 100%;
}
.contact_box-row span {
display: block;
width: 35px;
height: 35px;
}
.contact_box-row span svg {
width: 100%;
height: 100%;
object-fit: contain;
-o-object-fit: contain;
}
.contact_box-title {
font-weight: 700;
font-size: 32px;
line-height: 39px;
color: #292929;
}
.contact_input {
width: calc(50% - 50px);
margin: 30px 25px;
}
.contact_input input {
font-weight: 700;
font-size: 18px;
line-height: 22px;
color: #292929;
border-bottom: 2px solid rgba(23, 23, 23, 0.5);
padding: 10px;
width: calc(100% - 20px);
font-family: "Montserrat", sans-serif;
}
.contact_input input::-webkit-input-placeholder {
color: rgba(23, 23, 23, 0.5);
}
.contact_input input::-moz-placeholder {
color: rgba(23, 23, 23, 0.5);
}
.contact_input input:-ms-input-placeholder {
color: rgba(23, 23, 23, 0.5);
}
.contact_input input::-ms-input-placeholder {
color: rgba(23, 23, 23, 0.5);
}
.contact_input input::placeholder {
color: rgba(23, 23, 23, 0.5);
}
.contact_input input:focus {
background: #FFB100;
border-radius: 5px 5px 0 0;
}
.contact_message {
width: 100%;
margin: 30px 25px;
}
.contact_message textarea {
font-weight: 700;
font-size: 18px;
line-height: 22px;
color: #292929;
border-bottom: 2px solid rgba(23, 23, 23, 0.5);
padding: 10px;
width: calc(100% - 20px);
font-family: "Montserrat", sans-serif;
resize: none;
min-height: 100px;
}
.contact_message textarea::-webkit-input-placeholder {
color: rgba(23, 23, 23, 0.5);
}
.contact_message textarea::-moz-placeholder {
color: rgba(23, 23, 23, 0.5);
}
.contact_message textarea:-ms-input-placeholder {
color: rgba(23, 23, 23, 0.5);
}
.contact_message textarea::-ms-input-placeholder {
color: rgba(23, 23, 23, 0.5);
}
.contact_message textarea::placeholder {
color: rgba(23, 23, 23, 0.5);
}
.contact_message textarea:focus {
background: #FFB100;
border-radius: 5px 5px 0 0;
}
.contact_btn {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
width: 100%;
}
.contact_btn button {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
background: #FFB100;
border-radius: 10px;
padding: 10px 25px;
font-weight: 700;
font-size: 20px;
line-height: 24px;
color: #292929;
cursor: pointer;
-webkit-transition: all 0.2s ease-in-out 0s;
transition: all 0.2s ease-in-out 0s;
-moz-transition: all 0.2s ease-in-out 0s;
}
.contact_btn button:hover {
color: #FFB100;
background: #292929;
}
.contact_btn button:hover span path {
fill: #FFB100;
}
.contact_btn button span {
display: block;
width: 20px;
height: 20px;
margin-left: 10px;
}
.contact_btn button span svg {
width: 100%;
height: 100%;
object-fit: contain;
-o-object-fit: contain;
}
.contact_btn button span svg path {
-webkit-transition: all 0.2s ease-in-out 0s;
transition: all 0.2s ease-in-out 0s;
-moz-transition: all 0.2s ease-in-out 0s;
}
.contact_info {
width: calc(40% - 90px);
padding: 50px 45px;
background: #292929;
position: relative;
}
.contact_info-title {
font-weight: 700;
font-size: 24px;
line-height: 29px;
color: #FFFFFF;
margin-bottom: 50px;
position: relative;
}
.contact_info-txt {
font-weight: 700;
font-size: 14px;
line-height: 1.1;
color: #FFFFFF;
margin-bottom: 40px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
position: relative;
}
.contact_info-txt span {
width: 24px;
height: 24px;
display: block;
margin-right: 10px;
}
.contact_info-txt span svg {
width: 100%;
height: 100%;
object-fit: contain;
-o-object-fit: contain;
}
.contact_info-media {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
position: relative;
}
.contact_info-media a {
display: block;
margin-right: 25px;
width: 30px;
height: 30px;
}
.contact_info-media a:hover path {
fill: #FFB100;
}
.contact_info-media a svg {
width: 100%;
height: 100%;
object-fit: contain;
-o-object-fit: contain;
}
.contact_info-media a svg path {
-webkit-transition: all 0.2s ease-in-out 0s;
transition: all 0.2s ease-in-out 0s;
-moz-transition: all 0.2s ease-in-out 0s;
}
.contact_info-media a:last-child {
margin-right: 0;
}
.contact_info .wave {
position: absolute;
bottom: 0;
right: 0;
width: 450px;
height: 300px;
}
.contact_info .wave svg {
width: 100%;
height: 100%;
object-fit: cover;
-o-object-fit: cover;
}
.contact_map {
max-width: 1275px;
height: 670px;
margin: 0 auto;
border-radius: 10px;
overflow: hidden;
}
.contact_map iframe {
width: 100%;
height: 100%;
object-fit: cover;
-o-object-fit: cover;
}
.post {
padding: 60px 0 80px;
}
.post_box {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.post_info {
width: calc(100% - 560px);
}
.post_info-title {
font-weight: 700;
font-size: 40px;
line-height: 1.5;
color: #292929;
border-bottom: 1px solid #292929;
padding-bottom: 25px;
margin-bottom: 30px;
}
.post_info-row {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start;
}
.post_info-cnt {
padding: 10px 20px;
background: #FFB100;
border-radius: 5px;
font-weight: 700;
font-size: 14px;
line-height: 1.3;
text-transform: uppercase;
color: #292929;
margin-right: 30px;
2023-08-14 08:25:34 +00:00
margin: 15px 20px 15px 0;
min-height: 20px;
2022-08-28 19:50:26 +00:00
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-transition: all 0.2s ease-in-out 0s;
transition: all 0.2s ease-in-out 0s;
-moz-transition: all 0.2s ease-in-out 0s;
}
.post_info-cnt span {
display: block;
width: 20px;
height: 20px;
margin-right: 10px;
}
.post_info-cnt span svg {
width: 100%;
height: 100%;
object-fit: contain;
-o-object-fit: contain;
}
.post_info-cnt span svg path {
-webkit-transition: all 0.2s ease-in-out 0s;
transition: all 0.2s ease-in-out 0s;
-moz-transition: all 0.2s ease-in-out 0s;
}
2023-08-14 08:25:34 +00:00
.post_info-cnt.hov:hover {
2022-08-28 19:50:26 +00:00
color: #FFB100;
background: #292929;
}
2023-08-14 08:25:34 +00:00
.post_info-cnt.hov:hover span path {
2022-08-28 19:50:26 +00:00
fill: #FFB100;
}
2023-08-14 08:25:34 +00:00
.post_info-cnt.hov:hover span rect {
2022-08-28 19:50:26 +00:00
stroke: #FFB100;
}
.post_info-cnt:last-child {
margin-right: 0;
}
.post_info-txt {
font-weight: 400;
font-size: 24px;
line-height: 1.5;
color: #292929;
margin-top: 30px;
}
.post_photo {
width: 500px;
margin-left: 60px;
2023-08-14 08:25:34 +00:00
display: block;
2022-08-28 19:50:26 +00:00
}
.post_photo img {
width: 100%;
height: 100%;
object-fit: contain;
-o-object-fit: contain;
}
.post_slider {
max-width: 1300px;
margin: 0 auto;
}
.post_slider-title {
font-weight: 700;
2023-07-14 08:02:08 +00:00
font-size: 38px;
2022-08-28 19:50:26 +00:00
line-height: 1.4;
color: #171717;
text-align: center;
margin: 50px 0;
}
2023-07-29 05:46:55 +00:00
.post_slider .rest_item {
display: block;
}
2022-08-28 19:50:26 +00:00
.post_link {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
margin-top: 100px;
}
.post_link a {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
padding: 10px 25px;
background: #FFB100;
color: #292929;
-webkit-transition: all 0.2s ease-in-out 0s;
transition: all 0.2s ease-in-out 0s;
-moz-transition: all 0.2s ease-in-out 0s;
border-radius: 5px;
font-weight: 700;
font-size: 16px;
line-height: 20px;
}
.post_link a:hover {
color: #FFB100;
background: #292929;
}
.post_link a:hover span path {
fill: #FFB100;
}
.post_link a span {
display: block;
margin-left: 10px;
width: 20px;
height: 20px;
}
.post_link a span svg {
width: 100%;
height: 100%;
object-fit: contain;
-o-object-fit: contain;
}
.post_link a span svg path {
-webkit-transition: all 0.2s ease-in-out 0s;
transition: all 0.2s ease-in-out 0s;
-moz-transition: all 0.2s ease-in-out 0s;
}
.result {
2023-07-29 05:46:55 +00:00
padding: 30px 0 80px;
2022-08-28 19:50:26 +00:00
}
.result .menu_search {
padding-top: 0;
}
.result .menu_search-title {
color: #292929;
}
.result .menu_search-txt {
font-weight: 400;
font-size: 18px;
line-height: 22px;
margin-bottom: 25px;
color: #292929;
}
.result .menu_search-input input {
border: 1px solid #292929;
border-radius: 5px;
}
.result.page {
background: #fff;
}
.result.page .rest_item {
width: calc(25% - 28px);
margin: 15px 12px;
}
2022-09-22 10:35:44 +00:00
.result.page .rest_box {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
margin: -15px -12px;
}
2022-08-28 19:50:26 +00:00
2023-08-11 10:31:54 +00:00
.error {
padding: 80px 0 100px;
}
.error_box {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
max-width: 1200px;
margin: 0 auto;
}
.error_icon {
width: calc(50% - 80px);
}
.error_icon img {
width: 100%;
height: 100%;
object-fit: contain;
-o-object-fit: contain;
}
.error_info {
width: calc(50% - 80px);
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
}
.error_sup-title {
font-size: 100px;
font-weight: 700;
line-height: 1.3;
}
.error_title {
font-size: 28px;
font-weight: 700;
line-height: 1.3;
color: #FFB100;
margin: 40px 0 25px;
}
.error_txt {
font-size: 18px;
font-weight: 500;
line-height: 1.3;
color: #292929;
max-width: 400px;
}
.error_link {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
font-size: 14px;
font-weight: 700;
line-height: 1.3;
padding: 16px 25px;
margin-top: 40px;
background: #FFB100;
border-radius: 5px;
cursor: pointer;
}
.error_link span {
display: block;
margin-left: 10px;
width: 20px;
height: 20px;
}
.error_link span svg {
width: 100%;
height: 100%;
object-fit: contain;
-o-object-fit: contain;
display: block;
}
2022-08-28 19:50:26 +00:00
/* Slider */
.slick-slider {
position: relative;
display: block;
-webkit-box-sizing: border-box;
box-sizing: border-box;
-webkit-touch-callout: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-ms-touch-action: pan-y;
touch-action: pan-y;
-webkit-tap-highlight-color: transparent;
}
.slick-list {
position: relative;
overflow: hidden;
display: block;
margin: 0;
padding: 0;
}
.slick-list:focus {
outline: none;
}
.slick-list.dragging {
cursor: pointer;
cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
.slick-track {
position: relative;
left: 0;
top: 0;
display: block;
margin-left: auto;
margin-right: auto;
}
.slick-track:before, .slick-track:after {
content: "";
display: table;
}
.slick-track:after {
clear: both;
}
.slick-loading .slick-track {
visibility: hidden;
}
.slick-slide {
float: left;
height: 100%;
min-height: 1px;
display: none;
}
[dir=rtl] .slick-slide {
float: right;
}
.slick-slide img {
display: block;
}
.slick-slide.slick-loading img {
display: none;
}
.slick-slide.dragging img {
pointer-events: none;
}
.slick-initialized .slick-slide {
display: block;
}
.slick-loading .slick-slide {
visibility: hidden;
}
.slick-vertical .slick-slide {
display: block;
height: auto;
border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
display: none;
}
/* Arrows */
.slick-prev,
.slick-next {
position: absolute;
display: block;
height: 20px;
width: 20px;
line-height: 0px;
font-size: 0px;
cursor: pointer;
background: transparent;
color: transparent;
top: 50%;
-webkit-transform: translate(0, -50%);
transform: translate(0, -50%);
padding: 0;
border: none;
outline: none;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
font-family: "slick";
font-size: 20px;
line-height: 1;
color: #fff;
opacity: 0.75;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.slick-prev {
position: absolute;
bottom: -75px;
left: 10px;
top: unset !important;
right: unset !important;
width: 25px;
height: 20px;
background: url("../images/svg/slider-arrow.svg") no-repeat center;
background-size: contain;
z-index: 4;
opacity: 1 !important;
-webkit-transform: rotate(180deg);
transform: rotate(180deg);
}
[dir=rtl] .slick-prev {
left: auto;
right: -25px;
}
.slick-prev:before {
content: "";
}
.slick-next {
position: absolute;
bottom: -75px;
left: unset;
right: 10px !important;
top: unset !important;
width: 25px;
height: 20px;
background: url("../images/svg/slider-arrow.svg") no-repeat center;
background-size: contain;
z-index: 4;
opacity: 1 !important;
}
.hero_slider .slick-prev {
position: absolute;
bottom: 69px;
left: 100px;
top: unset !important;
right: unset !important;
width: 54px;
height: 24px;
background: url("../images/svg/big-arrow.svg") no-repeat center;
background-size: contain;
-webkit-transform: rotate(0);
transform: rotate(0);
z-index: 4;
opacity: 1 !important;
}
.hero_slider .slick-next {
position: absolute;
transform: rotate(180deg);
-ms-transform: rotate(180deg);
-moz-transform: rotate(180deg);
-o-transform: rotate(180deg);
-webkit-transform: rotate(180deg);
top: unset !important;
right: unset !important;
left: 220px;
bottom: 70px;
width: 54px;
height: 24px;
background: url("../images/svg/big-arrow.svg") no-repeat center;
background-size: contain;
z-index: 4;
opacity: 1 !important;
}
.hero_slider .slick-dots {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
}
.hero_slider .slick-dots li {
display: block;
}
.hero_slider .slick-dots li button {
display: block;
width: 12px;
height: 12px;
border: 2px solid #fff;
opacity: 0.3;
border-radius: 50%;
}
.hero_slider .slick-dots li.slick-active {
width: 30px;
height: 30px;
}
.hero_slider .slick-dots li.slick-active button {
background: url("../images/svg/dot.svg") no-repeat center !important;
background-size: contain;
width: 30px;
height: 30px;
border: none;
}
.project_box .slick-track {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.project_box .slick-prev {
position: absolute;
top: 50%;
transform: translateY(-50%);
-ms-transform: translateY(-50%);
-moz-transform: translateY(-50%);
-o-transform: translateY(-50%);
-webkit-transform: translateY(-50%);
left: 100px;
width: 36px;
height: 24px;
background: url("../images/svg/arrow_left.svg") no-repeat center;
background-size: contain;
z-index: 4;
}
.project_box .slick-next {
position: absolute;
top: 50%;
transform: translateY(-50%);
-ms-transform: translateY(-50%);
-moz-transform: translateY(-50%);
-o-transform: translateY(-50%);
-webkit-transform: translateY(-50%);
right: 100px;
width: 36px;
height: 24px;
background: url("../images/svg/arrow_right.svg") no-repeat center;
background-size: contain;
z-index: 4;
}
.project_box .slick-dots {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
bottom: -50px;
}
.project_box .slick-dots li {
display: block;
}
.project_box .slick-dots li button {
display: block;
width: 10px;
height: 10px;
border: 2.5px solid #fff;
opacity: 0.8;
border-radius: 50%;
}
.project_box .slick-dots li.slick-active {
width: 15px;
height: 15px;
}
.project_box .slick-dots li.slick-active button {
background: #CBC72C;
background-size: contain;
width: 15px;
height: 15px;
border-radius: 50%;
}
.post_slider .slick-dots {
position: absolute;
bottom: -55px;
list-style: none;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
text-align: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
padding: 0;
margin: 0;
width: 100%;
}
.post_slider .slick-dots li {
position: relative;
cursor: pointer;
margin: 0 8px;
}
.post_slider .slick-dots li button {
border: 0;
display: block;
height: 10px;
width: 40px;
outline: none;
color: transparent;
border-radius: 27px;
background: #292929;
cursor: pointer;
-webkit-transition: all 0.2s ease-in-out 0s;
transition: all 0.2s ease-in-out 0s;
-moz-transition: all 0.2s ease-in-out 0s;
}
.post_slider .slick-dots li button:focus {
outline: none;
background: #FFB100;
}
.post_slider .slick-dots li.slick-active button {
background: #FFB100;
width: 40px;
border-radius: 27px;
}
2023-07-26 11:44:12 +00:00
.shop_slider .slick-next {
2023-08-02 07:28:55 +00:00
background: url("../images/svg/post-slider-arrow.svg") no-repeat;
bottom: -55px;
2023-07-26 11:44:12 +00:00
}
.shop_slider .slick-prev {
2023-08-02 07:28:55 +00:00
background: url("../images/svg/post-slider-arrow.svg") no-repeat;
bottom: -43px;
2023-07-26 11:44:12 +00:00
}
.shop_slider .slick-dots {
bottom: -40px;
}
.shop_slider .slick-dots li button {
background-color: #171717;
}
2022-08-28 19:50:26 +00:00
.slick-next {
right: -25px;
}
[dir=rtl] .slick-next {
left: -25px;
right: auto;
}
.slick-next:before {
content: "";
}
[dir=rtl] .slick-next:before {
content: "←";
}
/* Dots */
.slick-dots {
position: absolute;
bottom: -75px;
list-style: none;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
text-align: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
padding: 0;
margin: 0;
width: 100%;
}
.slick-dots li {
position: relative;
cursor: pointer;
margin: 0 8px;
}
2022-09-22 10:35:44 +00:00
.slick-dots li:nth-of-type(1n+8) {
display: none;
}
2022-08-28 19:50:26 +00:00
.slick-dots li button {
border: 0;
display: block;
height: 10px;
width: 40px;
outline: none;
color: transparent;
border-radius: 27px;
background: #fff;
cursor: pointer;
-webkit-transition: all 0.2s ease-in-out 0s;
transition: all 0.2s ease-in-out 0s;
-moz-transition: all 0.2s ease-in-out 0s;
}
.slick-dots li button:focus {
outline: none;
background: #FFB100;
}
.slick-dots li.slick-active button {
background: #FFB100;
width: 40px;
border-radius: 27px;
}
@media (max-width: 1500px) {
.auto_container {
padding: 0 30px;
}
.m-rl {
margin: 0 25px;
}
.header_item-link {
padding: 15px;
}
.header .lang_current {
padding: 15px;
}
}
@media (max-width: 1400px) {
2023-07-14 08:02:08 +00:00
.header {
padding: 25px 0;
}
.header .logo {
width: 310px;
height: 40px;
}
.header .lang_current {
padding: 10px;
}
2022-08-28 19:50:26 +00:00
.header_item-link {
display: none;
}
2022-09-22 10:35:44 +00:00
.header .user {
display: none;
}
2023-07-26 11:44:12 +00:00
.nav.active {
2023-08-14 08:25:34 +00:00
top: 100px;
}
.nav.fixed {
top: 100px;
2022-08-28 19:50:26 +00:00
}
.menu.active {
2023-07-26 11:44:12 +00:00
top: 149px;
height: calc(100% - 148px);
2022-09-22 10:35:44 +00:00
}
2023-07-26 11:44:12 +00:00
.menu .footer_navs {
border-top: 1px solid #fff;
margin-top: 50px;
padding-top: 50px;
2022-08-28 19:50:26 +00:00
}
2023-07-26 11:44:12 +00:00
.hero_item {
height: calc(100vh - 110px);
2022-08-28 19:50:26 +00:00
}
2022-09-22 10:35:44 +00:00
.hero_item-photo {
2023-07-26 11:44:12 +00:00
height: calc(100vh - 110px);
2022-09-22 10:35:44 +00:00
}
2023-07-14 08:02:08 +00:00
.hero .slider__counter {
font-size: 18px;
line-height: 22px;
width: 205px;
}
.hero_slider .slick-next {
width: 44px;
}
.hero_slider .slick-prev {
width: 44px;
left: 105px;
}
.shops {
padding: 40px 0;
}
2022-09-22 10:35:44 +00:00
.shops .auto_container {
padding: 0 15px;
2022-08-28 19:50:26 +00:00
}
.shops_item {
2023-07-14 08:02:08 +00:00
height: 300px;
}
.shops_item-label {
font-size: 12px;
line-height: 12px;
padding: 10px 15px;
}
.shops_item-content-txt {
font-size: 18px;
}
.shops_item-name {
font-size: 14px;
padding: 15px 10px;
}
.shops_item-floor {
padding: 10px 15px;
font-size: 24px;
}
.shops_item-floor span {
font-size: 14px;
}
.shops_tab-link {
font-size: 16px;
line-height: 20px;
padding: 10px 20px;
}
.movie {
padding: 40px 0;
}
.movie_logo {
font-size: 18px;
line-height: 1.3;
}
.movie_logo span {
width: 60px;
height: 60px;
}
.movie_link {
font-size: 18px;
}
.movie_item-title, .movie_item-genre {
2023-07-26 11:44:12 +00:00
font-size: 16px;
2023-07-14 08:02:08 +00:00
}
.movie_item-link {
padding: 12px 10px;
}
2023-07-26 11:44:12 +00:00
.movie_item-photo {
height: 320px;
}
2023-07-14 08:02:08 +00:00
.movie .slick-dots li button {
height: 6px;
width: 20px;
}
.rest {
padding: 40px 0;
}
.rest_tabs {
margin-bottom: 20px;
}
.rest_tabs-link {
font-size: 16px;
line-height: 20px;
padding: 10px 20px;
}
.rest_item {
width: calc(33.33% - 28px);
margin: 12px;
}
.rest_item-floor {
font-size: 12px;
}
.rest_item-link {
font-size: 12px;
2022-08-28 19:50:26 +00:00
}
2023-07-26 11:44:12 +00:00
.footer {
padding: 40px 0;
2022-08-28 19:50:26 +00:00
}
2023-07-26 11:44:12 +00:00
.footer_box {
2022-08-28 19:50:26 +00:00
display: none;
}
2023-07-26 11:44:12 +00:00
.footer_navs {
margin-top: 0;
padding-top: 0;
border-top: none;
}
2023-07-14 08:02:08 +00:00
.intro {
min-height: 550px;
}
.intro_info {
min-height: 550px;
margin-top: 15px;
}
2022-08-28 19:50:26 +00:00
.intro_info-title {
2023-07-14 08:02:08 +00:00
font-size: 32px;
2022-08-28 19:50:26 +00:00
line-height: 1.5;
}
.intro_info-txt {
2023-07-14 08:02:08 +00:00
font-size: 18px;
2022-08-28 19:50:26 +00:00
line-height: 1.5;
}
2023-07-14 08:02:08 +00:00
.contact {
margin-top: -120px;
}
.contact_box-title {
font-size: 24px;
}
.contact_box-row {
margin-bottom: 40px;
}
.contact_box-row span {
width: 30px;
height: 30px;
}
.contact_input input {
font-size: 16px;
}
.contact_btn button {
font-size: 15px;
}
.contact_info-title {
font-size: 24px;
}
.contact_info-txt {
margin-bottom: 25px;
}
.contact_map {
height: 500px;
}
2022-08-28 19:50:26 +00:00
.about_item-photo {
width: calc(50% - 25px);
2023-07-14 08:02:08 +00:00
height: 500px;
2022-08-28 19:50:26 +00:00
}
.about_item-info {
width: calc(50% - 25px);
}
.about_item-title {
2023-07-14 08:02:08 +00:00
font-size: 32px;
line-height: 1.3;
margin-bottom: 20px;
2022-08-28 19:50:26 +00:00
}
.about_item-txt {
2023-07-14 08:02:08 +00:00
font-size: 18px;
line-height: 1.3;
2022-08-28 19:50:26 +00:00
}
.bill_aside {
padding: 25px;
margin-right: 25px;
}
2023-07-14 08:02:08 +00:00
.post {
padding: 40px 0 60px;
}
2022-08-28 19:50:26 +00:00
.post_photo {
2023-07-14 08:02:08 +00:00
width: 300px;
margin-left: 30px;
2022-08-28 19:50:26 +00:00
}
.post_info {
2023-07-14 08:02:08 +00:00
width: calc(100% - 330px);
2022-08-28 19:50:26 +00:00
}
.post_info-title {
2023-07-14 08:02:08 +00:00
font-size: 30px;
padding-bottom: 10px;
margin-bottom: 14px;
2022-08-28 19:50:26 +00:00
}
.post_info-txt {
2023-07-14 08:02:08 +00:00
font-size: 16px;
margin-top: 15px;
2022-08-28 19:50:26 +00:00
}
.post_info-cnt {
margin-right: 20px;
2023-07-14 08:02:08 +00:00
font-size: 13px;
2022-08-28 19:50:26 +00:00
}
.post_info-row {
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
.post_slider-title {
2023-07-14 08:02:08 +00:00
font-size: 30px;
}
.post_slider .slick-dots li button {
height: 6px;
width: 20px;
}
.post_slider .slick-dots li.slick-active button {
width: 20px;
}
.result .menu_search-input {
width: calc(100% - 146px);
}
.result .menu_search-input input {
font-size: 16px;
padding: 15px 20px;
}
.result .menu_search-btn {
font-size: 16px;
padding: 15px 30px;
2022-08-28 19:50:26 +00:00
}
}
@media (max-width: 1200px) {
2023-07-14 08:02:08 +00:00
.auto_container {
padding: 0 20px;
}
2023-08-11 10:31:54 +00:00
.menu_box {
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
.menu_col {
width: calc(33.33% - 80px);
}
.menu_col:nth-child(3)::after {
display: none;
}
2022-08-28 19:50:26 +00:00
.rest.page {
padding: 40px 0;
}
.rest.page .rest_item {
width: calc(33.33% - 28px);
}
.rest_block {
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
}
.rest_item {
width: calc(50% - 54px);
}
.rest_item-photo {
height: 190px;
}
2022-09-22 10:35:44 +00:00
.shops_item {
height: 350px;
}
2022-08-28 19:50:26 +00:00
.copy_row {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: unset;
-ms-flex-align: unset;
align-items: unset;
}
.copy_txt {
margin-bottom: 20px;
}
.copy_info {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: unset;
-ms-flex-align: unset;
align-items: unset;
}
.copy_info-item {
margin-bottom: 20px;
}
.copy_info-item:last-child {
margin-bottom: 0;
}
.bill_box {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
}
.bill_aside {
padding: 30px;
margin-right: 0;
}
.bill_info {
margin-top: 50px;
max-width: 100%;
width: 100%;
}
.contact_form {
-webkit-box-orient: vertical;
-webkit-box-direction: reverse;
-ms-flex-direction: column-reverse;
flex-direction: column-reverse;
}
.contact_box {
width: calc(100% - 90px);
}
.contact_info {
width: calc(100% - 90px);
}
.contact_map {
height: 550px;
}
.post .rest_item {
margin: 15px;
}
.result {
2023-07-14 08:02:08 +00:00
padding: 20px 0 40px 0;
2022-08-28 19:50:26 +00:00
}
.result.page .rest_box {
-webkit-box-pack: unset;
-ms-flex-pack: unset;
justify-content: unset;
}
.result.page .rest_item {
width: calc(33.33% - 28px);
}
}
2023-07-26 11:44:12 +00:00
@media (max-width: 1024px) {
.nav {
display: none;
}
.menu.active {
top: 90px;
2023-08-11 10:31:54 +00:00
height: calc(100% - 89px);
2023-07-26 11:44:12 +00:00
}
.menu .mobile_user-link {
width: calc(100% - 40px);
text-align: center;
margin-top: 20px;
padding: 30px 20px;
background: #171717;
display: block;
position: relative;
}
.menu .mobile_user-link.active span::after {
-webkit-transform: rotate(180deg);
transform: rotate(180deg);
top: 20%;
}
.menu .mobile_user-link span {
font-weight: 700;
font-size: 20px;
line-height: 1.4;
color: #fff;
display: inline-block;
cursor: pointer;
position: relative;
}
.menu .mobile_user-link span::after {
content: "";
background: url("../images/svg/mouse-arrow.svg") no-repeat center;
background-size: contain;
width: 15px;
height: 15px;
position: absolute;
top: 50%;
right: -40px;
transform: translateY(-50%);
-moz-ransform: translateY(-50%);
-o-transform: translateY(-50%);
-ms-transform: translateY(-50%);
-webkit-transform: translateY(-50%);
-webkit-transition: all 0.2s ease-in-out 0s;
transition: all 0.2s ease-in-out 0s;
-moz-transition: all 0.2s ease-in-out 0s;
}
.menu .mobile_user-link a {
font-weight: 700;
font-size: 20px;
line-height: 1.4;
color: #fff;
display: block;
margin: 40px 0 0 0;
display: none;
}
.menu .mobile_user-link a.active {
display: block;
}
.menu_box {
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
.menu_col {
width: calc(33.33% - 50px);
margin: 0 50px 30px 0;
}
.menu_col::after {
right: -10px;
}
.menu_col:nth-child(3) {
margin-right: 0;
}
.menu_col:nth-child(3)::after {
display: none;
}
2022-08-28 19:50:26 +00:00
.shops_item {
width: calc(50% - 16px);
margin: 10px 8px;
}
.intro_info {
max-width: 100%;
}
.about_item {
-webkit-box-orient: vertical;
-webkit-box-direction: reverse;
-ms-flex-direction: column-reverse;
flex-direction: column-reverse;
}
.about_item:nth-of-type(even) {
-webkit-box-orient: vertical;
-webkit-box-direction: reverse;
-ms-flex-direction: column-reverse;
flex-direction: column-reverse;
}
.about_item-photo {
width: 100%;
height: 500px;
}
.about_item-info {
width: 100%;
margin-bottom: 40px;
}
2023-07-26 11:44:12 +00:00
.footer_navs {
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
.footer_navs-col {
width: calc(50% - 20px);
max-width: unset;
margin-bottom: 30px;
}
.footer_navs-col:nth-child(3) {
-webkit-box-ordinal-group: 2;
-ms-flex-order: 1;
order: 1;
}
2023-08-11 10:31:54 +00:00
.error {
padding: 50px 0;
2022-09-22 10:35:44 +00:00
}
2023-08-11 10:31:54 +00:00
.error_icon {
display: none;
2022-09-22 10:35:44 +00:00
}
2023-08-11 10:31:54 +00:00
.error_info {
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
text-align: center;
width: 100%;
}
}
@media (max-width: 900px) {
2022-08-28 19:50:26 +00:00
.menu_search {
padding-top: 30px;
}
.menu_search-title {
font-size: 32px;
}
2022-09-26 04:58:01 +00:00
.menu_search-input {
width: calc(100% - 166px);
}
2022-08-28 19:50:26 +00:00
.menu_search-input input {
padding: 15px 20px;
}
.menu_search-btn {
padding: 15px 40px;
font-size: 16px;
}
.menu_row {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: unset;
-ms-flex-align: unset;
align-items: unset;
}
.menu_info {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: unset;
-ms-flex-align: unset;
align-items: unset;
margin-top: 15px;
}
.menu_info a {
margin-bottom: 15px;
}
.menu_col {
width: calc(50% - 20px);
margin: 0 40px 30px 0;
}
.menu_col::after {
right: -10px;
}
.menu_col:nth-child(3) {
margin-right: 40px;
}
.menu_col:nth-child(3)::after {
display: block;
}
.menu_col:nth-child(2), .menu_col:nth-child(4) {
margin-right: 0;
}
.menu_col:nth-child(2)::after, .menu_col:nth-child(4)::after {
display: none;
}
2023-07-26 11:44:12 +00:00
.hero_item {
height: calc(100vh - 90px);
}
2022-08-28 19:50:26 +00:00
.hero_item-photo {
2023-07-26 11:44:12 +00:00
height: calc(100vh - 90px);
2022-08-28 19:50:26 +00:00
}
.hero_item-link {
right: unset;
left: 50%;
transform: translateX(-50%);
-moz-ransform: translateX(-50%);
-o-transform: translateX(-50%);
-ms-transform: translateX(-50%);
-webkit-transform: translateX(-50%);
}
.hero_slider .slick-prev, .hero_slider .slick-next {
display: none !important;
}
.hero .slider__counter {
display: none;
}
.shops_item {
width: calc(50% - 16px);
margin: 10px 8px;
height: 370px;
}
.shops_item-name {
2022-09-26 04:58:01 +00:00
font-size: 15px;
2022-08-28 19:50:26 +00:00
padding: 15px 10px;
}
.shops_item-floor {
font-size: 24px;
padding: 12px 25px;
}
2023-07-14 08:02:08 +00:00
.shops_item-info {
top: 20px;
right: 20px;
}
.shops_item-label {
top: 20px;
left: 20px;
}
.shops_item-content {
bottom: 20px;
left: 20px;
}
2022-08-28 19:50:26 +00:00
.shops_item-content-txt {
2023-07-14 08:02:08 +00:00
font-size: 16px;
2022-08-28 19:50:26 +00:00
}
.rest.page .rest_item {
width: calc(50% - 28px);
}
.footer_box {
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
.footer_col {
width: calc(50% - 20px);
margin-right: 40px;
}
.footer_col:nth-child(3) {
margin-right: 40px;
}
.footer_col:nth-child(2), .footer_col:nth-child(4) {
margin-right: 0;
}
.footer_col::after {
display: none;
}
.post {
padding: 40px 0;
}
.post_box {
-webkit-box-orient: vertical;
-webkit-box-direction: reverse;
-ms-flex-direction: column-reverse;
flex-direction: column-reverse;
}
.post_photo {
width: 100%;
margin-left: 0;
margin-bottom: 40px;
}
2023-07-26 11:44:12 +00:00
.post .shop_slider-item {
height: 300px;
}
2022-08-28 19:50:26 +00:00
.post_info {
width: 100%;
}
.result.page .rest_item {
width: calc(50% - 28px);
}
2023-07-26 11:44:12 +00:00
.slick-list {
height: unset !important;
}
2022-08-28 19:50:26 +00:00
}
@media (max-width: 720px) {
.header .logo {
width: calc(100% - 210px);
height: 35px;
}
2023-08-11 10:31:54 +00:00
.header .burger {
height: 32px;
border-radius: 50%;
2022-09-22 10:35:44 +00:00
}
2023-08-11 10:31:54 +00:00
.header .burger span {
margin-right: 0;
}
.header .burger p {
display: none;
}
.menu_col {
margin: 0;
width: 100%;
}
.menu_col:last-child {
margin-bottom: 0;
}
.menu_col:nth-child(3) {
margin-right: 0;
}
.menu_col:nth-child(3)::after {
content: none;
}
.menu_col::after {
content: none;
}
.menu_col-group {
margin-bottom: 15px;
}
.menu_col-group:last-child {
margin-bottom: 15px;
}
.menu_col-title {
font-size: 18px;
}
.menu_col-box {
overflow: hidden;
max-height: 0;
-webkit-transition: all 0.2s ease-in-out 0s;
transition: all 0.2s ease-in-out 0s;
-moz-transition: all 0.2s ease-in-out 0s;
}
.menu_col-box::-webkit-scrollbar {
display: none;
}
.menu_col-link {
position: relative;
padding-left: 50px;
}
.menu_col-link::before {
content: "";
position: absolute;
top: 50%;
left: 20px;
transform: translateY(-50%);
-moz-ransform: translateY(-50%);
-o-transform: translateY(-50%);
-ms-transform: translateY(-50%);
-webkit-transform: translateY(-50%);
width: 10px;
height: 10px;
background: url("../images/svg/nav_link-arrow.png") no-repeat center;
2022-09-22 10:35:44 +00:00
}
2023-07-26 11:44:12 +00:00
.menu .footer_navs {
margin-top: 30px;
padding-top: 30px;
2023-08-11 10:31:54 +00:00
padding-bottom: 20px;
2023-07-26 11:44:12 +00:00
}
2022-08-28 19:50:26 +00:00
.shops_tab {
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
}
.shops_tab-link {
width: calc(50% - 60px);
max-width: 160px;
margin: 10px 5px;
text-align: center;
}
.shops_item {
width: 100%;
margin: 10px 0;
}
.movie_row {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
}
.movie_link {
font-size: 24px;
margin: 40px 0;
}
.movie_item-info {
margin: 0 auto;
}
.movie_item-link {
max-width: 350px;
margin: 60px auto 0;
}
.movie_item-photo {
height: 520px;
}
.movie_item-photo img {
width: 100%;
height: 100%;
object-fit: contain;
-o-object-fit: contain;
}
.movie_all {
display: none;
}
.modal .login_form {
padding: 75px 40px 65px;
}
.modal .login_title {
font-size: 20px;
margin-bottom: 30px;
}
.modal .login_input label {
font-size: 16px;
}
.modal .login_input input {
font-size: 14px;
}
.rest.page .rest_item-info {
text-align: center;
}
.rest.page .rest_item-row {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: unset;
-ms-flex-align: unset;
align-items: unset;
}
.rest.page .rest_item-floor {
margin-bottom: 15px;
text-align: center;
}
.rest.page .rest_item-link {
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
}
.rest_tabs {
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
}
.rest_tabs-link {
width: calc(50% - 60px);
max-width: 160px;
margin: 10px 5px;
text-align: center;
}
.rest_item {
width: 100%;
2022-09-22 10:35:44 +00:00
max-width: 450px;
2022-08-28 19:50:26 +00:00
margin: 15px 0;
}
2022-09-22 10:35:44 +00:00
.rest_item-floor {
font-size: 16px;
}
.rest_item-link {
font-size: 16px;
}
.rest_item-link span {
width: 20px;
height: 20px;
}
2023-07-14 08:02:08 +00:00
.intro {
min-height: 400px;
}
.intro_info {
min-height: 400px;
}
.intro_info-title {
font-size: 26px;
line-height: 1.3;
}
.intro_info-txt {
font-size: 16px;
line-height: 1.3;
}
.intro_info-link {
margin-top: 25px;
}
.intro_info-link a {
font-size: 14px;
}
.intro_info-link span {
width: 15px;
height: 15px;
}
.about {
padding: 40px 0;
}
2022-08-28 19:50:26 +00:00
.about_item-photo {
2023-07-14 08:02:08 +00:00
height: 340px;
}
.about_item-title {
font-size: 24px;
}
.about_item-txt {
font-size: 16px;
2022-08-28 19:50:26 +00:00
}
.about_item-info-title {
font-size: 34px;
margin-bottom: 15px;
}
.about_item-info-txt {
font-size: 20px;
margin-bottom: 10px;
}
.bill_aside {
width: calc(100% - 60px);
}
.bill_aside-title {
font-size: 20px;
2023-08-11 11:34:25 +00:00
margin-bottom: 30px;
2022-08-28 19:50:26 +00:00
}
.bill_aside-title.active::after {
2023-08-11 11:34:25 +00:00
bottom: -15px;
2022-08-28 19:50:26 +00:00
}
.bill_item {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: unset;
-ms-flex-align: unset;
align-items: unset;
}
.bill_item > div {
max-width: 100%;
}
.bill_item-link {
margin-top: 20px;
}
2023-07-14 08:02:08 +00:00
.bill_form {
margin: 0;
}
.bill_input {
width: 100%;
margin: 10px 0;
}
.bill_input input {
font-size: 15px;
line-height: 1.3;
}
.bill_btn {
margin: 10px 0 0 0;
}
.bill_btn button {
font-size: 15px;
line-height: 1.3;
padding: 12px 10px;
max-width: 160px;
}
2022-08-28 19:50:26 +00:00
.contact_info {
background: #fff;
padding: 30px 20px;
width: calc(100% - 40px);
}
.contact_info-title {
color: #292929;
line-height: 1.4;
2023-07-14 08:02:08 +00:00
margin-bottom: 20px;
2022-08-28 19:50:26 +00:00
}
.contact_info-txt {
color: #292929;
}
.contact_info-txt span svg path {
fill: #FFB100;
}
.contact_info-media a {
padding: 10px;
border-radius: 5px;
background: #292929;
2023-07-14 08:02:08 +00:00
width: 20px;
height: 20px;
2022-08-28 19:50:26 +00:00
}
.contact_info-media a svg path {
fill: #FFB100;
}
.contact_info .wave {
display: none;
}
.contact_box {
padding: 30px 20px;
width: calc(100% - 40px);
}
.contact_box-title {
font-size: 24px;
line-height: 1.4;
}
.contact_box-row span {
width: 30px;
height: 30px;
}
.contact_input {
width: 100%;
margin: 20px 0;
}
.contact_message {
width: 100%;
margin: 20px 0;
}
2023-07-14 08:02:08 +00:00
.contact_map {
height: 350px;
}
.post_info-title {
font-size: 24px;
padding-bottom: 5px;
margin-bottom: 5px;
}
.post_info-cnt {
margin: 20px 20px 0 0;
}
.post_slider-title {
font-size: 24px;
margin: 30px 0 20px;
}
2022-08-28 19:50:26 +00:00
.post .rest_item {
max-width: unset;
}
2023-07-14 08:02:08 +00:00
.post .rest_item-photo {
height: 170px;
}
2022-08-28 19:50:26 +00:00
.post .rest_item-row {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: unset;
-ms-flex-align: unset;
align-items: unset;
text-align: center;
}
.post .rest_item-floor {
margin-bottom: 15px;
2023-07-14 08:02:08 +00:00
font-size: 14px;
2022-08-28 19:50:26 +00:00
}
.post .rest_item-link {
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
2023-07-14 08:02:08 +00:00
font-size: 14px;
padding: 7px;
2022-08-28 19:50:26 +00:00
}
.result.page .rest_item {
width: calc(50% - 28px);
}
.result.page .rest_item-info {
text-align: center;
}
.result.page .rest_item-row {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: unset;
-ms-flex-align: unset;
align-items: unset;
}
.result.page .rest_item-floor {
margin-bottom: 15px;
text-align: center;
}
.result.page .rest_item-link {
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
}
.result .menu_search {
margin-bottom: 35px;
}
.result .menu_search-title {
2023-07-14 08:02:08 +00:00
font-size: 20px;
2022-08-28 19:50:26 +00:00
}
2022-09-22 10:35:44 +00:00
.result .menu_search-txt {
font-size: 16px;
}
2022-08-28 19:50:26 +00:00
.result .menu_search-input {
2022-09-22 10:35:44 +00:00
width: 100%;
2022-08-28 19:50:26 +00:00
}
.result .menu_search-input input {
font-size: 16px;
padding: 12px 15px;
2022-09-22 10:35:44 +00:00
width: calc(100% - 0px);
2022-08-28 19:50:26 +00:00
line-height: 1.4;
}
2022-09-22 10:35:44 +00:00
.result .menu_search-btn {
width: 100%;
margin-top: 15px;
}
2023-08-11 10:31:54 +00:00
.error_sup-title {
font-size: 60px;
}
.error_title {
font-size: 22px;
}
.error_txt {
font-size: 14px;
}
.error_link {
font-size: 14px;
}
2022-08-28 19:50:26 +00:00
}
@media (max-width: 520px) {
.auto_container {
padding: 0 15px;
}
.header {
padding: 25px 0;
}
2023-08-11 10:31:54 +00:00
.header .burger {
height: 28px;
}
.header .burger span {
width: 20px;
}
.header .burger span::before, .header .burger span::after {
width: 20px;
}
2022-08-28 19:50:26 +00:00
.header .lang_current {
padding: 8px;
}
.header .lang_arrow {
display: none;
}
.header .lang_flag {
width: 15px;
height: 15px;
}
.header .logo {
width: calc(100% - 160px);
}
.menu.active {
top: 85px;
height: calc(100% - 85px);
}
2023-08-11 10:31:54 +00:00
.menu_col-title {
font-size: 16px;
2022-09-22 10:35:44 +00:00
}
2022-09-26 04:58:01 +00:00
.menu .mobile_user-link {
padding: 15px 20px;
margin-top: 5px;
}
.menu .mobile_user-link span {
font-size: 18px;
}
.menu .mobile_user-link a {
font-size: 18px;
}
2023-08-11 10:31:54 +00:00
.menu_search {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
}
2022-08-28 19:50:26 +00:00
.menu_search-title {
font-size: 28px;
}
.menu_search-btn {
2023-08-11 10:31:54 +00:00
padding: 12px 20px;
margin-top: 15px;
2022-08-28 19:50:26 +00:00
font-size: 14px;
2023-08-11 10:31:54 +00:00
width: 100%;
2022-08-28 19:50:26 +00:00
}
.menu_search-input {
2023-08-11 10:31:54 +00:00
width: 100%;
2022-08-28 19:50:26 +00:00
margin-right: 0;
}
.menu_search-input input {
font-size: 14px;
2023-08-11 10:31:54 +00:00
padding: 12px 15px;
width: calc(100% - 30px);
2022-08-28 19:50:26 +00:00
}
2023-07-26 11:44:12 +00:00
.hero_item {
height: 500px;
}
2022-08-28 19:50:26 +00:00
.hero_item-photo {
height: 500px;
}
.hero_item-link {
font-size: 13px;
}
.shops {
2023-07-14 08:02:08 +00:00
padding: 20px 0 40px;
}
.shops_tab {
margin-bottom: 25px;
2022-08-28 19:50:26 +00:00
}
.shops_tab-link {
font-size: 15px;
line-height: 1.3;
}
.shops_item {
height: 320px;
}
.movie_link {
font-size: 19px;
margin-bottom: 25px;
}
.movie_item-photo {
height: 380px;
}
.modal .inner {
width: calc(100% - 20px);
}
.modal .movie_desc-info {
padding: 15px 20px;
}
.modal .movie_desc-photo {
height: 280px;
}
.modal .login_form {
padding: 75px 30px 65px;
}
.modal .login_title {
font-size: 16px;
margin-bottom: 30px;
}
.modal .login_btn {
font-size: 16px;
}
.rest.page .rest_box {
margin: 0;
}
.rest.page .rest_item {
width: 100%;
2023-07-14 08:02:08 +00:00
max-width: 350px;
2022-08-28 19:50:26 +00:00
margin: 15px 0;
}
.rest_tabs-link {
font-size: 15px;
line-height: 1.3;
}
.rest_item-photo {
height: 180px;
2023-07-26 11:44:12 +00:00
width: 100%;
2022-08-28 19:50:26 +00:00
}
2022-09-22 10:35:44 +00:00
.pag {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
}
.pag_txt {
font-size: 16px;
margin-top: 15px;
}
2022-08-28 19:50:26 +00:00
.footer_col {
width: calc(50% - 15px);
margin-right: 15px;
}
.footer_col:nth-child(3) {
margin-right: 20px;
}
2023-07-26 11:44:12 +00:00
.footer_navs-col {
width: 100%;
margin-right: 0;
}
2022-08-28 19:50:26 +00:00
.intro {
2023-07-14 08:02:08 +00:00
min-height: 300px;
2022-08-28 19:50:26 +00:00
}
.intro_info {
2023-07-14 08:02:08 +00:00
min-height: 300px;
2022-08-28 19:50:26 +00:00
margin-top: 30px;
}
.about {
padding: 40px 0;
}
.about_item-title {
margin-bottom: 20px;
}
.about_item-photo {
height: 320px;
}
.contact {
2023-07-14 08:02:08 +00:00
margin-top: -70px;
2022-08-28 19:50:26 +00:00
}
.contact_box-title {
font-size: 20px;
}
.contact_box-row {
margin-bottom: 20px;
}
2023-07-14 08:02:08 +00:00
.contact_box-row span {
display: none;
}
2022-08-28 19:50:26 +00:00
.contact_info-title {
font-size: 20px;
}
.contact_info-media a {
margin-right: 15px;
}
2023-07-14 08:02:08 +00:00
.post {
padding: 15px 0 60px;
2022-08-28 19:50:26 +00:00
}
.post .rest_item-info {
text-align: center;
}
.post_info-title {
2023-07-14 08:02:08 +00:00
font-size: 20px;
2022-08-28 19:50:26 +00:00
}
.post_info-cnt {
margin: 10px 20px 10px 0;
padding: 10px 12px;
font-size: 12px;
}
.post_slider-title {
2023-07-14 08:02:08 +00:00
font-size: 20px;
2022-08-28 19:50:26 +00:00
}
.post_slider .slick-dots {
bottom: -25px;
}
.post_link {
margin-top: 65px;
}
.result.page .rest_box {
margin: 0;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
}
.result.page .rest_item {
width: 100%;
2023-07-14 08:02:08 +00:00
max-width: 350px;
2022-08-28 19:50:26 +00:00
margin: 15px 0;
}
.result .menu_search {
margin-bottom: 35px;
}
.result .menu_search-input {
2022-09-22 10:35:44 +00:00
margin-right: 0px;
2022-08-28 19:50:26 +00:00
}
.result .menu_search-input input {
2023-07-14 08:02:08 +00:00
font-size: 14px;
padding: 10px 15px;
2022-08-28 19:50:26 +00:00
width: calc(100% - 30px);
line-height: 1.4;
}
.result .menu_search-btn {
font-size: 14px;
2023-07-14 08:02:08 +00:00
padding: 10px 25px;
}
.bill {
overflow: hidden;
}
.bill_aside {
padding: 20px 15px;
width: calc(100% - 30px);
}
.bill_aside-title {
font-size: 16px;
}
.bill_item > div p {
font-size: 15px;
}
.bill_item-link {
font-size: 15px;
}
.bill_input label {
font-size: 15px;
}
.bill_input input {
padding: 12px;
width: calc(100% - 26px);
2022-08-28 19:50:26 +00:00
}
}
@media (max-width: 350px) {
.footer_col-link {
font-size: 12px;
}
.intro_info {
margin-top: 55px;
}
.intro_info-title {
font-size: 30px;
}
.intro_info-txt {
font-size: 16px;
}
.about_item-title {
font-size: 26px;
}
.about_item-txt {
font-size: 16px;
line-height: 1.8;
}
.about_item-photo {
height: 320px;
}
.bill_item > div p {
font-size: 16px;
}
}