.container {
    max-width: 1250px;
    margin: 0 auto;
    width: 90%;
}
:root {
    --white: #ffffff;
    --black: #000000;
    --gray: #333333;
    --orange: #CD6643;
    --blue: #293561;
}
nav {
    width: 100%;
    position: fixed;
    top: 0;left: 0;
    transition: 300ms;
    z-index: 1000;
    background: rgba(255, 255, 255, .6);
    border-bottom: 1px solid rgba(0,0,0,.2);
}
nav *,footer * {
    list-style: none;
}
.scrolled {
    background: rgba(255, 255, 255, 1);
}
.nav_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 80px;
}
.logo img {
    width: 120px;
}
.navigation {
    display: flex;
    align-items: center;
}
.nav_child {
    position: absolute;
    bottom: -180%;
    /* border: 1px solid rgba(0,0,0,.2); */
    box-shadow: 0px 0px 20px rgba(0,0,0,.2);
    left: 5px;
    background: var(--white);
    min-width: 200px;
    opacity: 0;
    transition: 300ms;
    visibility: hidden;
}
.hover_child:hover .nav_child{
    opacity: 1;
    visibility: visible;
    bottom: -215%;
}
.nav_child a {
    width: 100%;
    /* border-bottom: 1px solid rgba(0,0,0,.1); */
    padding: 10px 0px;
    display: block;
}
.nav_child a:hover {
    background: #eeeeee;
}
.hamburger_menu {
    position: absolute;
    z-index: 998;
    width: 100%;
    opacity: 0;
    top: 100%;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    background: rgba(255,255,255,.8);
    border: 1px solid rgba(0,0,0,.1);
    transition: 200ms;
    overflow: hidden;
    transform: translateY(-50px);
    visibility: hidden;
}
.hamburger_active {
    opacity: 1;
    transform: translateY(0px);
    visibility: visible;
}
.hamburger_nav {
    width: 100%;
    display: flex;flex-direction: column;
    align-items: center;
}
.hamburger_nav li {
    width: 100%;
    border-bottom: 1px solid rgba(0,0,0,.2);
}
.hamburger_nav li a {
    width: 100%;
    display: inline-block;
    color: var(--black);
    text-align: center;
    padding: 25px 0px 25px 0px;
}
.hamburger {
    display: none;
    margin: 0px 0px 0px 0px;
}
.hamburger_call_btn {
    display: none;
    color: var(--white);
    margin: 4px 10px 0px 0px;
    font-size: 17px;
}
.navigation li {
    position: relative;
    height: 100%;
}
.navigation li a {
    color: var(--black);
    display: inline-block;
    padding: 15px 20px;
    position: relative;
    transition: 200ms;
    height: 100%;
    font-size: 15px;
}
.navigation li a:hover {
    color: var(--orange);
}
.nav_active::after {
    content: '';
    width: 100%;
    height: 2px;
    background: var(--orange);
    position: absolute;
    bottom: 0;
    left: 0;
}
.nav_active {
    color: var(--orange) !important;
}
.navigation_contact {
    display: none;
}
.navigation_contact a{
    font-weight: 800;
}
footer {
    background: var(--blue);
}
footer *{
    color: white;
}
.footer_container {
    padding: 70px 0px;
    display: flex;
    flex-wrap: wrap;
}
.footer_calc {
    width: calc(100%/4);
}
.footer_logo img {
    width: 150px;
}
footer ul h3 {
    color: var(--orange);
    font-size: 18px;
    margin: 0px 0px 10px 0px;
    font-weight: 700;
}
footer ul li a {
    display: inline-block;
    opacity: .8;
    font-size: 16px;
    font-weight: 500;
    margin: 5px 0px;
    transition: 200ms;
}
footer ul li a:hover {
    color: var(--orange);
}
.footer_socials {
    margin: 20px 0px 0px 0px;
}
.footer_socials a {
    display: inline-block;
    margin: 0px 10px;
}
.footer_socials a i{
    color: var(--orange);
    font-size: 20px;
}
.footer_copyright {
    text-align: center;
    width: 100%;
    background: var(--blue);
    padding: 15px 10px;
    border-top: 1px solid rgba(255,255,255,.2);
}
.footer_copyright h4 {
    font-weight: 400;
}
.preloader {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    background: var(--white);
    display: flex;align-items: center;justify-content: center;
    flex-direction: column;
}
.preloader svg {
    color: var(--orange);
    width: 100px;
    margin: 0px 0px 20px 0px;
}
.preloader .small-circle {
	stroke-dasharray: 210;
	stroke-dashoffset: 210;
	transform-origin: 50%;
    animation: 1s draw-small infinite alternate;
}
@keyframes draw-small {
	0% { stroke-dashoffset: 0; transform: rotate(0deg); }
	100% { stroke-dashoffset: 210; transform: rotate(360deg); }
}
.preloader .big-circle {
	stroke-dasharray: 240;
	stroke-dashoffset: 240;
	transform-origin: 50%;
    animation: 1s draw-big infinite alternate 0.5s;
}
@keyframes draw-big {
	0% { stroke-dashoffset: 0; transform: rotateY(180deg) rotate(360deg); }
	100% { stroke-dashoffset: 240; transform: rotateY(180deg) rotate(0deg); }
}

@media(max-width:980px) {
    .navigation {
        display: none;
    }
    .nav_container {
        min-height: 30px;
    }
    .hamburger,.hamburger_call_btn {
        display: inline-block;
    }
    .logo img {
        width: 100px;
    }
    nav {
        padding: 10px 0px;
    }
}
@media(max-width:800px) {
    .footer_calc {
        width: calc(100%/2);
    }
}
@media(max-width:600px) {
    .slider_status_line{
        display: none;
    }
    .footer_copyright h4 {
        font-size: 15px;
    }
}
@media(max-width:500px) {
    .header_socials {
        display: none;
    }
}
@media(max-width:400px) {
    .hamburger_call_btn {
        display: none;
    }
    .footer_calc {
        width: calc(100%/1);
        margin: 20px 0px;
    }
    .footer_copyright h4 {
        font-size: 13px;
    }
}