@font-face {
    font-family: 'Inter Medium';
    src: url('../font/Inter-Medium.woff2') format('woff2'),
    url('../font/Inter-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter SemiBold';
    src: url('../font/Inter-SemiBold.woff2') format('woff2'),
    url('../font/Inter-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter Light';
    src: url('../font/Inter-Light.woff2') format('woff2'),
    url('../font/Inter-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

:root {
    --pimary-color: #000000;
    --secondary-color: #e56c00;
    --inter-light: 'Inter Light', 'sans-serif';
    --inter-medium: 'Inter Medium', 'sans-serif';
    --inter-semibold: 'Inter SemiBold', 'sans-serif';

}
html {
    scroll-behavior: smooth;
}
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    padding: 0;
    margin: 0;
    font-family: var(--inter-light);
    font-size: 16px;
    color: #000000;
    line-height: 1.7;
    overflow-x: hidden;
    background: #ffffff;
}

input, select, button, a, textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    cursor: pointer;
    outline: none;
    transition: all 0.25s;
}

input {
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

select {
    -webkit-appearance: inherit;
    -moz-appearance: inherit;
    appearance: inherit;
    list-style: none;
}
::selection {
    background: #242424;
    color: #ffffff;
}

strong, b {
    font-family: var(--inter-semibold);
}

select option {
    color: black !important;
}
h1{
    font-family: var(--inter-medium);
    margin: 0;
    font-size: 48px;
    text-transform: uppercase;
    line-height: normal;
}
h2{
    font-family: var(--inter-medium);
    margin: 0;
    font-size: 30px;
    text-transform: uppercase;
    line-height: normal;
}
h4{
    font-family: var(--inter-light);
    margin: 0;
    font-size: 16px;
    text-transform: none;
}
.container{
    padding: 0;
    position: relative;
}
.section_header{
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1;
    background: #ffffff;
}
.scroll_menu {
    box-shadow: rgba(0, 0, 0, 0.09) 0 0 10px;
    z-index: 1;
}
.nav_pc ul{
    padding: 0;
    margin: 0 0 0 auto;
}
.nav_pc li{
    list-style: none;
    float: left;
    padding: 0 15px;
    line-height: 80px;
    position: relative;
}
.nav_pc li:nth-last-child(1){
    padding-right: 0;
}
.brand_logo{
    position: absolute;
    left: 0;
    top: 0;
    height: 80px;
    transition: all 0.25s;
}
.brand_logo img{
    height: 100%;
    width: auto;
    display: block;
    padding: 10px 0;
    transition: all 0.25s;
}
.nav_pc{
    float: right;
}
.nav_pc a:hover, .nav_pc a.active{
    color: var(--secondary-color);
}
.images_icon {
    object-fit: cover;
    width: 22px;
    height: 22px;
    -webkit-mask-size: 100%;
    -webkit-mask-repeat: no-repeat;
    background: var(--pimary-color);
    margin: 0;
    transition: all 0.25s;
    vertical-align: middle;
    display: inline-block;
}
.images_icon:hover{
    background: var(--secondary-color);
}
li.social_header{
    display: flex;
    align-items: center;
    margin-left: 15px;
    padding-left: 30px;
}
li.social_header:before{
    content: '';
    width: 1px;
    height: 40%;
    background: var(--pimary-color);
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}
li.social_header a{
    padding: 0 5px;
}
li.social_header a:nth-child(1){
    padding-left: 0;
}
li.social_header a:nth-last-child(1){
    padding-right: 0;
}
.section_parallax{
    height: 100vh;
    position: relative;
    display: flex;
    align-items: flex-end;
}
.section_parallax .images_parallax{
    width: 100%;
    height: calc(100vh - 80px);
}
.section_parallax .images_parallax img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.section_mission{
    text-align: center;
    position: relative;
}
.images_mission{
    height: 700px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}
.images_mission img{
    width: 100%;
    height: 100%;
    /*filter: blur(3px);*/
}
.details_mission{
    position: absolute;
    left: 0;
    right: 0;
    color: #ffffff;
    font-size: 18px;
    padding-bottom: 80px;
}
.details_mission h2{
    position: relative;
    padding-bottom: 25px;
    margin-bottom: 25px;
    font-size: 38px;
}
.details_mission h2:before{
    content: '';
    width: 50px;
    height: 3px;
    background: #ffffff;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 0;
}
.details_mission p{
    margin: 0;
}
.details_mission p>label{
    display: inline-block;
    width: 100%;
}
.btn_mission{
    border: 1px solid transparent;
    padding: 10px 30px;
    background: none;
    border-radius: 50px;
    color: #ffffff;
    transition: all 0.25s;
}
.slide_thumbnails_mission{
    position: absolute;
    bottom: 80px;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 1;
}
.slide_thumbnails_mission .slick-list{
    display: inline-block;
    margin: 0 auto;
}
.slide_thumbnails_mission .slide{
    padding: 0 15px;
}
.slide_thumbnails_mission .slide.slick-current .btn_mission{
    border-color: #ffffff;
}
.slide_mission .slick-arrow{
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    height: 40px;
    width: auto;
    margin: auto;
    z-index: 1;
    background: none;
    border: none;
}
.slide_mission .slick-arrow.slick-next{
    right: 50px;
    left: auto;
}
.slide_mission .slick-arrow img{
    width: auto;
    height: 40px;
    filter: brightness(0) invert(1);
}
.slide_mission .slide.slick-current h2{
    animation-name: fadeInUp;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-timing-function: ease-in-out;
}
.slide_mission .slide.slick-current p{
    animation-name: fadeInUp;
    animation-duration: 1.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-timing-function: ease-in-out;
}
.section_equipment{
    background: #e8e8e8;
    padding: 80px 0;
    text-align: center;
    color: var(--pimary-color);
}
.section_equipment h2{
    color: var(--pimary-color);
}
.section_equipment h4{
    position: relative;
    margin-top: 10px;
    padding-bottom: 25px;
    color: var(--pimary-color);
}
.section_equipment h4:before{
    content: '';
    width: 50px;
    height: 3px;
    background: var(--pimary-color);
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 0;
}
.section_customer{
    padding: 80px 0;
    text-align: center;
}
.section_customer img{
    width: auto;
    height: 140px;
    display: block;
    margin: auto;
}
.section_customer ul{
    padding: 0;
    margin: 20px 0 0;
}
.section_customer li{
    list-style: none;
    display: inline-block;
    width: 15.66%;
}
.section_ig{
    padding: 0 0 80px;
    text-align: center;
}
.images_widget img{
    width: 100%;
    height: auto;
    display: block;
}
.images_widget {
    margin-bottom: 50px;
}

.section_ig p {
    margin: 0;
    display: inline;
}

.btn_ig {
    padding: 10px 30px;
    border-radius: 50px;
    color: #ffffff;
    margin-left: 10px;
    border: none;
    background-image: linear-gradient(to right, #df993d, #c42a68, #7024c4);
    background-size: 130% 100%;
    moz-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}

.btn_ig:hover {
    background-position: 100% 0;
    moz-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
.address{
    background: var(--pimary-color);
    padding: 80px 0;
    color: #ffffff;
}
.address .container{
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.address .col-xs-4{
    width: auto;
}
.address h4{
    text-transform: uppercase;
    font-family: var(--inter-semibold);
    color: var(--secondary-color);
    margin-bottom: 15px;
}
.address img{
    width: auto;
    height: 70px;
    filter: brightness(0) invert(1);
    display: block;
    margin: 0;
}
.address ul{
    margin: 0;
    padding: 0;
}
.address li{
    list-style: none;
    width: 100%;
}
.address a:hover{
    color: var(--secondary-color);
}
.address .images_icon{
    background: #ffffff;
    width: 30px;
    height: 30px;
    margin-top: 15px;
}
.address .images_icon:hover{
    background: var(--secondary-color);
}
.copyright{
    text-align: left;
}
.copyright p{
    display: flex;
    justify-content: space-around;
}
.copyright p>label{
    float: right;
}
.images_products{
    position: relative;
    margin: 50px 0 80px;
    padding-bottom: 50px;
}
.images_products img{
    width: 100%;
    height: auto;
    display: block;
}
.section_equipment table{
    position: relative;
    /*border-collapse: collapse;*/
    width: 100%;
    border: 1px solid var(--pimary-color);
    border-radius: 26px;
}
.section_equipment table td{
    padding: 15px;
    border: 1px solid var(--pimary-color);
    width: 14%;
    line-height: normal;
}
.section_equipment table tr:nth-child(1), .section_equipment table td:nth-child(1){
    font-family: var(--inter-semibold);
    font-size: 18px;
}
.section_equipment table tr:nth-child(1) td:nth-last-child(1){
    text-align: center;
}
.section_equipment table tr:nth-child(1) td:nth-last-child(1){
    border-top-right-radius: 25px;
}
.section_equipment table tr:nth-child(1) td:nth-child(1){
    border-top-left-radius: 25px;
}
.section_equipment table tr:nth-last-child(1) td:nth-last-child(1){
    border-bottom-right-radius: 25px;
}
.section_equipment table tr:nth-last-child(1) td:nth-child(1){
    border-bottom-left-radius: 25px;
}
.section_equipment table td>label{
    display: inline-block;
    width: 100%;
}
.section_equipment table td:nth-last-child(1){
    text-align: left;
    width: 30%;
    padding: 15px 25px;
}
.products{
    position: absolute;
    left: 0;
    bottom: 0;
    background: var(--pimary-color);
    color: #ffffff;
    padding: 5px 20px;
    line-height: normal;
    text-align: center;
    border-radius: 50px;
    font-family: var(--inter-semibold);
}
.products:before{
    content: '';
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    background: var(--pimary-color);
    width: 14px;
    height: 7px;
    position: absolute;
    left: 0;
    right: 0;
    top: -7px;
    margin: auto;
}
.products_1{
    left: 18%;
}
.products_2{
    left: 38%;
}
.products_3{
    left: 57%;
}
.products_4{
    left: 75%;
}
.scroll_menu .brand_logo{
    height: 60px;
}
.scroll_menu .nav_pc li{
    line-height: 60px;
}
.hamberger_menu {
    display: block;
    position: absolute;
    right: 115px;
    transition: all 0.5s;
    top: 0;
    bottom: 0;
    height: 45px;
    margin: auto;
}
.hamberger_menu:before{
    content: '';
    background: var(--pimary-color);
    width: calc(100px + 15px);
    height: calc(30px + 15px);
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 50px;
}
/*.hamberger_menu_right .button_container{*/
/*    left: 0;*/
/*    top: 0;*/
/*}*/

.button_container {
    position: relative;
    /*top: 0;*/
    /*bottom: 0;*/
    height: 18px;
    width: 30px;
    margin: auto;
    cursor: pointer;
    transition: all 1s;
    z-index: 15;
    right: auto;
    left: 15px;
    top: 15px;
    bottom: 0;
}
.button_container:before{
    content: 'Menu';
    color: #ffffff;
    position: absolute;
    right: -55px;
    top: 0;
    bottom: 0;
    text-transform: uppercase;
    font-size: 14px;
    line-height: normal;
}
.button_container:hover {
    opacity: 1;
}

.button_container.active .top {
    -webkit-transform: translateY(8px) translateX(0) rotate(45deg);
    transform: translateY(8px) translateX(0) rotate(45deg);
    background: #fff;
    width: 100%;
}

.button_container.active .middle {
    opacity: 0;
    background: #fff;
}

.button_container.active .bottom {
    -webkit-transform: translateY(-8px) translateX(0) rotate(-45deg);
    transform: translateY(-8px) translateX(0) rotate(-45deg);
    background: #fff;
}

.button_container span {
    background: #ffffff;
    border: none;
    height: 1px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all .35s ease;
    cursor: pointer;
}

.button_container span:nth-of-type(1) {
    width: 100%;
}

.button_container span:nth-of-type(2) {
    top: 8px;
}

.button_container span:nth-of-type(3) {
    top: 16px;
    width: 60%;
}
.button_container:hover span:nth-of-type(3), .button_container.active span:nth-of-type(3){
    width: 100%;
}

.overlay {
    position: fixed;
    /*background-image: url('../images/icon/bg.jpg');*/
    background: #000000c7;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    overflow: hidden;
    transition: all 0.5s;
    display: grid;
    z-index: 2;
}

.overlay.open {
    opacity: 1;
    visibility: visible;
    width: 100%;
    height: 100%;
    grid-template-columns: 2fr 2fr;
}

.overlay.open li {
    -webkit-animation: fadeInUp .9s ease forwards;
    animation: fadeInUp .9s ease forwards;
    -webkit-animation-delay: .35s;
    animation-delay: .35s;
}

.overlay.open li:nth-of-type(2) {
    -webkit-animation-delay: .40s;
    animation-delay: .40s;
}

.overlay.open li:nth-of-type(3) {
    -webkit-animation-delay: .45s;
    animation-delay: .45s;
}

.overlay.open li:nth-of-type(4) {
    -webkit-animation-delay: .50s;
    animation-delay: .50s;
}

.overlay.open li:nth-of-type(5) {
    -webkit-animation-delay: .55s;
    animation-delay: .55s;
}

.overlay.open li:nth-of-type(6) {
    -webkit-animation-delay: .60s;
    animation-delay: .60s;
}

.overlay.open li:nth-of-type(7) {
    -webkit-animation-delay: .65s;
    animation-delay: .65s;
}

.overlay.open li:nth-of-type(8) {
    -webkit-animation-delay: .70s;
    animation-delay: .70s;
}

.overlay.open li:nth-of-type(9) {
    -webkit-animation-delay: .75s;
    animation-delay: .75s;
}

.overlay.open li:nth-of-type(10) {
    -webkit-animation-delay: .80s;
    animation-delay: .80s;
}

.overlay.open li:nth-of-type(11) {
    -webkit-animation-delay: .85s;
    animation-delay: .85s;
}

.overlay nav {
    position: relative;
    /* -webkit-transform: translateY(-50%); */
    /* transform: translateY(-50%); */
    text-align: left;
    padding: 0 50px;
    margin-top: 75px;
}

.overlay ul {
    list-style: none;
    margin: 100px auto 0;
    position: relative;
    height: 100%;
    color: #ffffff;
    text-align: left;
    padding: 0 30px;
    z-index: 60;
    font-size: 16px;
}

.overlay ul li {
    /*display: block;*/
    position: relative;
    padding: 8px 0;
    opacity: 0;
    width: 100%;
    line-height: initial;
}

.overlay ul li a {
    display: block;
    position: relative;
    color: #ffffff;
    text-decoration: none;
    /*overflow: hidden;*/
    opacity: 1;
    text-transform: uppercase;
    transition: all 0.25s;
}

.overlay ul li a.active,
.overlay ul li a:hover,
.nav_mobile .overlay-menu .active {
    color: var(--secondary-color);
    opacity: 1;
}

.overlay ul li a:hover:after,
.overlay ul li a:focus:after,
.overlay ul li a:active:after {
    width: 100%;
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        left: 20%;
    }

    100% {
        opacity: 1;
        left: 0;
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        left: 20%;
    }

    100% {
        opacity: 1;
        left: 0;
    }
}
.overlay-menu .left{
    flex: 1;
    background: #000000c0;
    -webkit-backdrop-filter: saturate(0);
    backdrop-filter: saturate(0);
    transition: all .3s ease;
}
.overlay-menu .right{
    flex: 1;
    background: var(--pimary-color);
    color: #fff;
    overflow: hidden;
    /*overflow-y: auto;*/
    height: 100%;
    text-align: left;
    position: absolute;
    right: 0;
    width: 50%;
}
.fix_body {
    overflow: hidden !important;
}
.menu_mobile{
    display: none;
}