* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: sans-serif;
    color: rgb(212, 188, 52);
}

body {
    width: 100%;
    background-color: #202020;
    display: flex;
    justify-content: start;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
}

.box {
    width: 80%;
    height: 1850px;
    background-color: #202020;
    display: flex;
    justify-content: start;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    overflow-x: hidden;
}

img {
    width: 175px;
    height: 175px;
}

header {
    width: 100%;
    height: 150px;
    display: flex;
    justify-content: center;
    align-content: space-between;
    background: #202020;
}

.header {
    width: 100%;
    height: 175px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header_left {
    width: 20%;
    height: 100%;
}

.header_right {
    width: 80%;
    height: 100%;
}

ul {
    width: 100%;
    height: 175px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5rem;
}

li {
    transition: all 0.1s ease-in-out;
    width: 25%;
    height: 100%;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgb(212, 188, 52);
    font-family: sans-serif;
    text-transform: uppercase;
    cursor: pointer;
    text-align: center;
}

li:hover {
    color: gold;
    font-size: 25px;
}

a {
    text-decoration: none;
}

p {
    font-family: sans-serif;
    font-size: 100px;
    text-align: center;
}


main {
    width: 100%;
    height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.name {
    width: 100%;
    height: 20pc;
    font-size: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.services {
    width: 100%;
    height: 80%;
    justify-content: space-between;
}

.engineering,
.montage,
.work {
    width: 30%;
    height: 100%;
    font-size: 35px;
    flex-direction: column;
    gap: 3rem;
    text-transform: uppercase;
    border-radius: 25px;

}

.icon {
    width: 300px;
    height: 300px;
    border-radius: 50px;
}

nav {
    width: 100%;
    height: 700px;
    flex-direction: column;
}

@keyframes animation {
    0% {
        transform: translateX(0px);
    }

    50% {
        transform: translateX(-500px);
    }

    100% {
        transform: translateX(0px);
    }
}

.slide {
    width: 80%;
    gap: 5rem;
    justify-content: start;
    z-index: 0;
    border-radius: 50px;
}

.slide>img {
    border-radius: 50px;
    animation-name: animation;
    animation-duration: 15s;
    animation-iteration-count: infinite;
}

.slide {
    overflow: hidden;
}

.slider {
    overflow: hidden;
    width: 100%;
    height: 500px;
    gap: 2rem;

}

.right>img {
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 100;
}

.left>img {
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 100;
}

.slide_imgs>img {
    width: 350px;
    height: 350px;
}

.right {
    transform: rotate(180deg);
}

footer{
    width: 100%;
    height: 150px;
}

.footer_left ,.footer_right{
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap:2rem;
    flex-direction: column;
}

.facebook , .instagram , .email , .phone{
    width: 25%;
    height: 50%;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 1rem;
}   