html {
    height: auto;
    min-height: 100vh;
    max-width: 100%;
}

:focus {
    outline: 0 !important;
    text-decoration: blink !important;
}

a {
    color: #EAC93C;
    text-decoration: none;
}

a:hover {
    text-decoration: blink !important;
}

.fa {
    display: inline-block;
    font: normal normal normal;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100%);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
    --animate-duration: 3s;
    --animate-delay: 3s;
}

@-webkit-keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    100% {
        opacity: 1;
        transform: none;
    }
}

.zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
    --animate-duration: 2.6s;
    --animate-delay: 2.6s;
}


/*  */

.slick-dots,
.slick-next,
.slick-prev {
    position: absolute;
    display: block;
    padding: 0
}

.slick-next:before,
.slick-prev:before {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.slick-next,
.slick-prev {
    padding: 0;
    font-size: 0;
    line-height: 0;
    bottom: 0;
    top: 0;
    margin: auto 0;
    z-index: 9;
    cursor: pointer;
    border: none;
    outline: 0;
    transition: all 0.3s;
    opacity: 1;
}

.slick-next:focus,
.slick-next:hover,
.slick-prev:focus,
.slick-prev:hover {
    opacity: 0.8;
}

.slick-next.slick-disabled:before,
.slick-prev.slick-disabled:before {
    opacity: .8
}

.slick-prev {
    left: 0;
    width: 28px;
    height: 25px;
    position: absolute;
    background: url(../images/prev.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.slick-next {
    right: 0;
    width: 28px;
    height: 25px;
    position: absolute;
    background: url(../images/next.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.slick-list,
.slick-slider,
.slick-track {
    position: relative;
    display: block
}

.slick-loading .slick-slide,
.slick-loading .slick-track {
    visibility: hidden
}

.slick-slider {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent
}

.slick-list {
    overflow: hidden;
    margin: 0;
    height: 100%;
    padding: 0;
}

.slick-list:focus {
    outline: 0
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand
}

.slick-slider .slick-list,
.slick-slider .slick-track {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.slick-track {
    top: 0;
    left: 0;
    height: 100%;
}

.slick-track:after,
.slick-track:before {
    display: table;
    content: ''
}

.slick-track:after {
    clear: both
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px
}

[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-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent
}

.slick-arrow.slick-hidden {
    display: none
}

.slick-dots {
    width: max-content;
    height: auto;
    list-style: none;
    position: absolute;
    top: auto;
    bottom: -10px;
    left: 5%;
    right: auto;
    margin: 0;
}

.slick-dots li {
    width: 25px;
    height: auto;
    position: relative;
    float: left;
    margin: 0 10px 0 0;
    padding: 20px 0 10px;
    cursor: pointer;
    transition: all 0.5s;
}

.slick-dots li button {
    font-size: 0;
    width: 25px;
    height: 2px;
    border: 0;
    background: #D9D9D9;
}

.slick-dots li.slick-active button {
    background: linear-gradient(180deg, #EAC93C 0%, #B77403 100%);
}

.slick-dots li button:hover,
.slick-dots li button:focus {
    outline: 0;
    transition: all 0.5s;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
    opacity: 1;
    transition: all 0.5s;
}

.slick-dots li.slick-active button {
    opacity: 1;
}


/*  */

p {
    font-family: 'Barlow', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 24px;
    color: #FFFFFF;
}

strong {
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0 auto;
    position: relative;
    overflow-x: hidden;
    font-family: 'Barlow', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 24px;
    color: #FFFFFF;
    background: #191D1B;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}

#wrapper {
    overflow: hidden;
    position: relative;
    margin: 0 auto;
}

#wrapper::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -300px;
    z-index: -1;
    width: 300px;
    height: 600px;
    background: url(../images/bg_logo.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

#wrapper::after {
    content: '';
    position: absolute;
    right: 0;
    top: -400px;
    z-index: -1;
    width: 300px;
    height: 600px;
    background: url(../images/bg_logo.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.remove_margin {
    margin: 0 -15px;
}

.container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

header {
    width: 100%;
    margin: 0 auto;
    position: fixed;
    z-index: 999999;
    height: auto;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(25, 29, 27, 0);
    transition: all 0.3s;
}

header.header_fixed {
    background: rgba(25, 29, 27, 1);
    height: 80px;
}

.logo {
    position: absolute;
    left: 0px;
    top: 25px;
    transition: all 0.3s;
}

.logo img.logo_header {
    width: auto;
    height: 150px;
    opacity: 1;
    transition: all 0.5s;
}

.logo img.logo_fixed {
    display: none;
    opacity: 0;
    transition: all 0.5s;
    width: auto;
    height: 60px;
}

#header {
    position: relative;
    clear: both;
    margin: 0 auto;
    width: 1140px;
}

.menu_header {
    width: max-content;
    position: absolute;
    right: 100px;
    margin: 0;
    top: 40px;
    z-index: 99;
}

.menu_header .menu {
    width: 100%;
    clear: both;
}

.menu_header .menu ul {
    width: max-content;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.menu_header .menu ul li {
    width: max-content;
    position: relative;
    float: left;
    padding: 15px 40px;
}

.menu_header .menu ul li a {
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #FFFFFF;
    position: relative;
    cursor: pointer;
    transition: all 0.3s;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    position: relative;
}

.menu_header .menu ul li.active a,
.menu_header .menu ul li:hover a {
    background: linear-gradient(180deg, #EAC93C 0%, #B77403 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.menu_header .menu ul li a:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    right: 100%;
    bottom: -3px;
    background: linear-gradient(180deg, #EAC93C 0%, #B77403 100%);
    height: 1px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.menu_header .menu ul li:hover a:before,
.menu_header .menu ul li:focus a:before,
.menu_header .menu ul li:active a:before {
    right: 0;
}

.menu_header .menu ul li.active a::before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    right: 100%;
    bottom: -3px;
    width: 100%;
    background: linear-gradient(180deg, #EAC93C 0%, #B77403 100%);
    height: 1px;
}

#menu_burger {
    position: absolute;
    right: 0;
    top: 50px;
    z-index: 9999999;
    width: 40px;
    height: 30px;
}

.burger-wrap {
    top: 0;
    width: 30px;
    height: 20px;
    background: none;
    position: absolute;
    z-index: 99;
    transition: 0.3s 0.7s transform ease-in;
}

@keyframes fadeAppear {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.burger {
    position: relative;
    top: 10px;
    width: 30px;
    left: 10px;
    height: 20px;
    cursor: pointer;
    z-index: 30;
    transition: transform 1s ease-in;
}

.burger span {
    display: block;
    position: absolute;
    height: 2px;
    border-radius: 4px;
    right: 0;
    background: #FFFFFF;
    opacity: 1;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
}

.burger span:nth-child(1) {
    top: 0px;
    width: 100%;
}

.burger span:nth-child(2) {
    top: 8px;
    width: 100%;
}

.burger span:nth-child(3) {
    top: 16px;
    width: 100%;
}

.burger.active span:nth-child(1) {
    width: 100%;
    top: 8px;
    right: 0px;
    transform: rotate(135deg);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    top: 8px;
    right: 0;
    width: 100%;
    transform: rotate(-135deg);
}

#contact_header {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    background: rgba(25, 29, 27, 0.95);
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    overflow-y: auto;
    z-index: 999999;
}

.box_content_contact {
    width: 1140px;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    height: max-content;
    position: absolute;
    margin: auto;
}
.box_content_contact .title{
    padding-bottom: 20px;
}
.box_list_contact {
    width: 50%;
    float: left;
}

.box_list_contact .box_contact {
    width: 100%;
    position: relative;
    padding: 10px 0;
}

.box_list_contact .box_contact p {
    font-family: 'Barlow', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0.02em;
    color: #FFFFFF;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.box_list_contact .box_contact p a {
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    font-size: 30px;
    line-height: 36px;
    letter-spacing: 0.02em;
    background: linear-gradient(180deg, #EAC93C 0%, #B77403 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.box_list_contact .box_contact p strong {
    font-family: 'Barlow', sans-serif;
    font-weight: 500;
}

.box_form_contact {
    width: 50%;
    float: left;
    padding: 15px 0 0 50px;
}

.box_form_contact .title_contact {
    width: 100%;
    position: relative;
}

.box_form_contact .title_contact h2 {
    margin: 0;
    margin-bottom: 20px;
    font-family: 'Barlow', sans-serif;
    font-weight: 500;
    font-size: 26px;
    line-height: 32px;
    letter-spacing: 0.02em;
    color: #FFFFFF;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    text-transform: uppercase;
}

.box_form_contact form {
    width: 100%;
    position: relative;
}

.box_form_contact form .input_form {
    width: 100%;
    position: relative;
    padding-bottom: 15px;
}

.box_form_contact form .input_form input {
    width: 100%;
    height: 50px;
    position: relative;
    border: 0;
    border-bottom: 1px solid #FFFFFF;
    background: none;
    font-family: 'Barlow', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0.02em;
    color: #FFFFFF;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.box_form_contact form .textarea_form textarea::placeholder,
.box_form_contact form .input_form input::placeholder {
    color: #FFFFFF;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.box_form_contact form .input_form .show-error{
    padding-right: 15px;
    font-family: 'Barlow', sans-serif;
    font-weight: 300;
    position: relative;
    top: 5px;
    font-style: italic;
    font-size: 16px;
    line-height: 26px;
    background: linear-gradient(180deg, #EAC93C 0%, #B77403 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
text-fill-color: transparent;


}
.box_form_contact form .textarea_form {
    width: 100%;
    position: relative;
    padding: 20px 0;
}

.box_form_contact form .textarea_form textarea {
    width: 100%;
    height: 80px;
    position: relative;
    border: 1px solid #FFFFFF;
    background: none;
    padding: 10px 15px;
    font-family: 'Barlow', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0.02em;
    color: #FFFFFF;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.box_form_contact form .button_send_contact {
    position: relative;
    text-align: right;
}

.box_form_contact form .button_send_contact button {
    width: 70px;
    height: 36px;
    background: #FFFFFF;
    border: 0;
    font-family: 'Barlow', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0.02em;
    color: #191D1B;
}

#contact_header.open {
    display: block;
    opacity: 1;
    pointer-events: all;
}

header.header_fixed .logo {
    top: 0;
    padding: 10px 0;
}

header.header_fixed .logo img.logo_fixed {
    display: block;
    opacity: 1;
}

header.header_fixed .logo img.logo_header {
    display: none;
    opacity: 0;
}

header.header_fixed .menu_header {
    top: 10px;
}

header.header_fixed #menu_burger {
    top: 20px;
}


/*  */

.title {
    width: 100%;
    position: relative;
    clear: both;
}

.title.center {
    text-align: center;
}
.title strong,
.title h1 {
    margin: 0;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 70px;
    line-height: 80px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #FFFFFF;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}


/* section_home */

.section_home {
    margin: 250px 0 60px;
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
    clear: both;
    z-index: 1;
}

.slider_home_for {
    width: calc(100% - 330px);
    height: 100%;
    position: relative;
    z-index: 10;
}

.slider_home_for .slick-prev {
    display: none !important;
}

.slider_home_for .slick-next {
    right: -330px;
    width: 300px;
    height: 100%;
    background: url(../images/next.svg);
    background-position: 30px center;
    background-repeat: no-repeat;
    background-size: inherit;
}

.slider_home_for .box_slide_home {
    width: 100%;
    height: 100%;
    position: relative;
}

.slider_home_for .box_slide_home .box_img_slide_home {
    width: 580px;
    height: 100%;
    position: absolute;
    right: 0;
}

.slider_home_for .box_slide_home .box_img_slide_home .img_slide_home {
    width: 100%;
    height: 100%;
}

.slider_home_for .box_slide_home .box_img_slide_home .img_slide_home img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.slider_home_for .box_slide_home .box_caption_slide_home {
    width: 600px;
    height: max-content;
    position: absolute;
    top: 0;
    left: 5%;
    bottom: 0;
    margin: auto 0;
}

.box_caption_slide_home .caption_slide_home {
    width: 100%;
    position: relative;
}

.box_caption_slide_home .caption_slide_home .title_caption {
    width: 100%;
    margin-bottom: 20px;
}

.box_caption_slide_home .caption_slide_home .title_caption strong {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 70px;
    line-height: 80px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #FFFFFF;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.box_caption_slide_home .caption_slide_home .location_caption_slide_home {
    width: 100%;
    position: relative;
}

.box_caption_slide_home .caption_slide_home .location_caption_slide_home span {
    font-family: 'Barlow', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.5);
}

.box_caption_slide_home .caption_slide_home .location_caption_slide_home span::before {
    content: url(../images/location.svg);
    position: relative;
    top: 3px;
    padding-right: 10px;
}

.slider_home_nav {
    width: 300px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
}

.slider_home_nav .img_slide_home_nav {
    width: 300px;
    height: 100%;
    position: relative;
    overflow: hidden;
    background: #191D1B;
}

.slider_home_nav .img_slide_home_nav img {
    opacity: 0.5;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: -15px center;
}

footer {
    display: inline-block;
    width: 100%;
    position: relative;
    clear: both;
    padding: 50px 0;
}

.box_footer {
    width: 1140px;
    position: relative;
    margin: 0 auto;
    clear: both;
}

.coppyright {
    width: auto;
    float: left;
}

.coppyright a,
.coppyright span {
    font-family: 'Barlow', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 26px;
    color: #FFFFFF;
    display: block;
}
.coppyright a strong{
    font-weight: 700;
}
.list_social {
    width: auto;
    float: right;
}

.list_social a {
    margin-left: 15px;
}

.list_social a img {
    width: 25px;
    transition: all 0.5s;
}

.list_social a:hover img {
    transform: scale(1.1);
}

.button_hotline {
    width: auto;
    float: left;
    position: relative;
    line-height: 24px;
    margin-right: 40px;
}

.button_hotline a {
    font-family: 'Barlow', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 24px;
    color: #FFFFFF;
}

.button_hotline a::before {
    content: url(../images/hotline.svg);
    position: relative;
    padding-right: 7px;
    top: 5px;
}


/* section_content */

.section_content {
    width: 100%;
    clear: both;
    position: relative;
    z-index: 1;
    margin: 250px 0 60px;
}
.section_content_not{
    margin: 300px 0 100px;
}
.box_content {
    width: 1140px;
    margin: 0 auto;
    position: relative;
}

.box_content_about {
    width: 100%;
    position: relative;
    display: inline-block;
}

.img_about {
    position: relative;
    float: left;
    width: 660px;
    height: auto;
}

.img_about img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.content_about {
    width: calc(100% - 660px);
    float: right;
    text-align: right;
    padding-left: 70px;
}

.title_content {
    width: 100%;
    position: relative;
    clear: both;
}

.title_content h1 {
    margin: 0;
    margin-bottom: 15px;
    width: 100%;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 30px;
    line-height: 40px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #FFFFFF;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.content p,
.content {
    width: 100%;
    position: relative;
    font-family: 'Barlow', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0.02em;
    color: #FFFFFF;
}
.content.center{
    text-align: center;
}
.button_back_home {
    margin: 20px 0;
    position: relative;
    width: 100%;
    clear: both;
}

.button_back_home a {
    position: relative;
    font-family: 'Barlow', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 18px;
    color: rgba(255, 255, 255, 0.5);
}

.button_back_home a::before {
    content: url(../images/back.svg);
    position: relative;
    top: 3px;
    padding-right: 10px;
}

.list_project {
    width: 100%;
    margin-top: 50px;
    clear: both;
    position: relative;
}

.box_project {
    width: 33.33%;
    float: left;
    padding: 0 15px 30px;
    position: relative;
}

.box_project .project {
    width: 100%;
    position: relative;
    text-align: center;
}

.box_project .project .img_project {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.box_project .project .img_project img {
    width: 100%;
    transition: all 0.5s;
}

.box_project:hover .project .img_project img {
    transform: scale(1.1);
}

.box_project .project .name_project {
    width: 100%;
    padding: 15px 0 0;
}

.box_project .project .name_project strong {
    width: 100%;
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    letter-spacing: 0.02em;
    color: #FFFFFF;
}

.box_project .project .location_project {
    width: 100%;
    padding: 0;
}

.box_project .project .location_project span {
    width: 100%;
    font-family: 'Barlow', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.5)
}

.box_content_project {
    width: 100%;
    position: relative;
    display: inline-block;
}

.content_project {
    width: 400px;
    float: left;
    padding-right: 35px;
}

.slider_project {
    width: calc(100% - 400px);
    float: right;
}

.slider_project_for {
    width: 100%;
    position: relative;
}

.slider_project_for .slick-prev {
    left: 5px;
    width: 40px;
    height: 40px;
    position: absolute;
    background: url(../images/prev_project.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0.5;
}

.slider_project_for .slick-next {
    right: 5px;
    width: 40px;
    height: 40px;
    position: absolute;
    background: url(../images/next_project.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0.5;
}

.slide_img_project {
    width: 100%;
    padding: 0 5px;
    overflow: hidden;
    position: relative;
}

.slide_img_project img {
    width: 100%;
    position: relative;
}
.slide_img_project a img{
    height: 500px;
    object-fit: contain ;
    object-position: center;
}
.slider_project_nav {
    width: 100%;
    position: relative;
    padding-top: 30px;
}

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

.slider_project_nav .slide_img_project img {
    opacity: 0.5;
}

.slider_project_nav .slide_img_project.slick-current.slick-active img {
    opacity: 1;
}
.zalo_fixed{
    width: 50px;
    position: fixed;
    right: 15px;
    bottom: 100px;
    z-index: 9999;
}
.zalo_fixed img{
    width: 100%;
}
.messenger_fixed{
    width: 50px;
    position: fixed;
    right: 15px;
    bottom: 35px;
    z-index: 9999;
}
.messenger_fixed img{
    width: 100%;
}