* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: gilroy;
}
html, 
body {
    height: 100%;
    width: 100%;
}
body {
    overflow-x: hidden;
}
section {
    width: 100%;
    height: 100%;
    position: relative;
}
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 100px;
}
.part2{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}
nav h1 {
    font-size: 50px;
    display: flex;
    align-items: center;
    font-weight: 600;
    color: rgb(138, 138, 138);
}
nav h4 {
    font-size: 25px;
    font-weight: 500;
    color: rgb(138, 138, 138);
}
nav button {
    padding: 22px 40px;
    font-size: 25px;
    border: 2px solid rgb(138, 138, 138);
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    background-color: transparent;
    color: rgb(138, 138, 138);
}

.center {
    padding: 80px;
    height: 80%;    
    width: 100%;
    display: flex;
}
.center-part1 {
    line-height: 1.2;
    height: 100%;
    width: 45%;    
}
.center-part1 h1 {
    font-size: 90px;
    font-weight: 600;
    color: rgb(138, 138, 138);
}
.center-part1 p {
    margin-top: 40px;
    margin-bottom: 25px;
    font-size: 30px;
    width: 95%;
    color: rgb(138, 138, 138);
}
.center-part1 button {
    padding: 22px 40px;
    background-color: rgb(138, 138, 138);
    color: #fff;
    border-radius: 10px;
    font-size: 25px;
    border: none;
    font-weight: 600;
}

.center-part2 {
    height: 100%;
    width: 55%;    
    position: relative;
}
.center-part2 img {
    position: absolute;
    right: 0;
    width: 100%;
    height: 100%;
}

.section1bottom {
    margin-top: 25px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 120px;
}
.section1bottom img {
    height: 60px;
}

.section2 .services {
    padding: 40px 120px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 50px;
    margin-top: 50px;
}
.services h3 {
    font-weight: 500;
    padding: 5px 10px 0 10px;
    border-radius: 5px;
    font-size: 30px;
    color: rgb(138, 138, 138);
}
.services p{
    width: 60%;
    font-size: 20px;
    font-weight: 500;
    color: rgb(138, 138, 138);
}

.container{
    height: 80%;
    width: 100%;
    display: flex;
    padding: 40px 120px;
    justify-content: space-between;
    flex-wrap: wrap;
}
.elem{
    display: flex;
    flex-shrink: 0;
    width: 45%;
    height: 350px;
    border-radius: 20px;
    border: 2px solid black;
    padding: 60px;
    box-shadow: 0px 15px 0px  rgb(180, 175, 175);
    margin-bottom: 30px;
    background-color: rgb(225, 225, 225);
}
.elem-part1 {
    height: 100%;
    width: 50%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
}
.elem-part2{
    height: 100%;
    width: 50%;
}
.elem-part2 img {
    height: 100%;
}
.elem-part1 h2 {
    font-size: 45px;
    width: fit-content;
    font-weight: 500;
    color: rgb(138, 138, 138);
}
.elem-part1 h4 {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 500;
    gap: 20px;
}

.black {
    background-color: black;
    color: #fff;
    box-shadow: 0px 15px 0px rgb(99, 99, 99);
}