/* Common */

body{
    margin: 0;
    font-family: 'Inter', sans-serif;
    line-height: 24px;
    font-size: 14px;
    overflow-x: hidden;
}
.wrapper{
    max-width: 1366px;
    margin: 0 auto;
    padding: 0px 20px;
}
.ellipsis{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.flex_center{
    display: flex;
    align-items: center;
    justify-content: center;
}
.space_center_between{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.relate{
    position: relative;
}
.errPage{
    min-height: calc(100vh - 470px);
    color: #000;
    font-size: 80px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}
.button{
    border: none;
    border-radius: 3px;
    padding: 7px 20px;
    text-transform: uppercase;
    font-weight: 700;
    cursor: pointer;
    transition: 0.5s
}
.button:hover{
    text-decoration: none;
    transition: 0.5s
}
h2, h3{
    font-size: 24px;
    font-weight: 700;
}

/* header  */

header .header_label{
    background: #FB941E;
}
header .header_label .header_wrapper{
    height: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header .header_label span{
    color: #fff;
    width: 60%;
    font-weight: 700;
}
header .header_label .social_links{
    display: flex;
    gap: 5px;
}
header .header_label .social_links .phone{
    display: flex;
    align-items: center;
    gap: 5px;
    width: auto;
}
header .header_label .social_links .icon, header .header_label .social_links .icon-phone{
    background-color: #fafafa;
    width: 25px !important;
    height: 25px;
    border-radius: 50%;
    cursor: pointer;
}
.icon-phone{
    width: 34px !important;
}
.icon-facebook, .icon-instagram, .icon-phone{
    color: #FB941E;
}

/* header main */

.header_main {
    background-color: #000;
    width: 100%;
    padding: 10px 0px;
}
.header_main .logo_wrap img{
    width: 80px;
    height: 80px;
}
.header_main ul {
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: hidden;
 } 
 .header_main li {
    float: left;
  }
.header_main li a {
    padding: 20px 30px;
    opacity: 0.7;
    text-decoration: none;
    color: #fff;
    transition: 0.5s;
    position: relative;
}  
.header_main li a::after{
        position: absolute;
        content: '';
        width: 10px;
        display: inline-block;
        height: 1px;
        transition: 0.5s;
        background-color: #fff;
        bottom: 16px;
        width: 0px;
        right: 21px;
        z-index: 99;
}
.header_main li a:hover::after{
    width: 25px;
    transition: 0.5s;
}
.header_main li a:hover,
.header_main .menu-btn:hover {
    opacity: 1;
    transition: 0.5s;
}  
.header_main .menu {
    display: flex;
    align-items: center;
    margin-top: 18px;
    float: right;
    max-height: none;
}  
.header_main .menu-icon {
    cursor: pointer;
    display: none;
    float: right;
    padding: 28px 20px;
    position: relative;
    user-select: none;
}
.header_main .menu-icon .navicon {
    background: #fff;
    display: block;
    height: 2px;
    position: relative;
    transition: background .2s ease-out;
    width: 18px;
}  
.header_main .menu-icon .navicon:before,
.header_main .menu-icon .navicon:after {
    background: #fff;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
}  
.header_main .menu-icon .navicon:before {
    top: 5px;
}  
.header_main .menu-icon .navicon:after {
    top: -5px;
}  
.header_main .menu-btn {
    display: none;
}
.header_main .menu-btn:checked ~ .menu-icon .navicon {
   background: transparent;
}
.header_main .menu-btn:checked ~ .menu-icon .navicon:before {
    transform: rotate(-45deg);
}
.header_main .menu-btn:checked ~ .menu-icon .navicon:after {
    transform: rotate(45deg);
}
.header_main .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.header_main .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
    top: 0;
}  
.header_main .contact_button{
    background-color: #fafafa;
    float: right;
}
.header_main .contact_button a{
    color: #000;
}

/* footer */

footer{
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 30px 0px 50px;
    &::before{
        position: absolute;
        display: inline-block;
        content: '';
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7);
    }
}

footer .quick_links{
    flex: 1;
}
footer .quick_links h3{
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
}
footer .quick_links ul{
    list-style: none;
    padding-left: 0;
    line-height: 28px;
}
footer .quick_links ul li a{
    color: #fff;
    text-decoration: none;
    transition: 0.5s;
}
footer .quick_links ul li a:hover {
    color: #FB941E;
    transition: 0.5s;
}
footer .footer_contents{
    display: flex;
    justify-content: space-around;
}
footer .footer_contents .footer_logo{
    flex: 1;
    color: #fff;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
footer .footer_contents .footer_logo img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}
footer .working_hours{
    flex: 1;
    display: flex;
    flex-direction: column;
    color: #fff;
    align-items: flex-end;
}
footer .working_hours h3{
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
}
footer .working_hours .day, footer .working_hours .mng_eve{
    font-weight: 700;
}
footer .working_hours .sunday{
    color: #d52828;
    font-weight: 700;
    font-size: 21px;
    margin-top: 8px;
}
footer .working_hours .email{
    display: flex;
    gap: 6px;
    font-weight: 700;
    margin-top: 8px;
}
.copyright{
    background: #FB941E;
    padding: 10px 0px;
}
.copyright p{
    color: #fff;
    margin: 0;
}
.copyright .social_links{
    display: flex;
    gap: 5px;
}
.copyright .social_links .icon, .copyright  .icon-phone{
    background-color: #fafafa;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    cursor: pointer;
}
.copyright  p .phone{
    display: flex;
    align-items: center;
    gap: 5px;
}
.copyright  .icon-phone{
    width: 24px !important;
}