*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-color: rgb(41, 40, 40);
    min-height: 100vh;
    display: flex;
    justify-content: center;
}
.main{
    width: 90%;
    max-width: 1200px;
    padding: 10px;
}
.navbar{
    width: 100%;
    height: 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}
.logo{
    display: flex;
    align-items: center;
    padding-left: 10px;
}
.logo > img{
    width: 50px;
    height: 50px;
    border-radius: 100%;
}
.menu1{
    width: 350px;
    height: 50px;
    background-color: rgb(54, 52, 52);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    border-radius: 30px;
    
}
.menu1 a.active {
    color: rgb(0, 255, 234);
    font-size: large;
}

.menu1 > li{
    list-style: none;
}
.menu1 > li > a{
    text-decoration: none;
    color: white;
    font-size: 15px;
    font-family: Arial, Helvetica, sans-serif;
    
}
.menu1 > li:nth-child(1) > a{
    color: rgb(0, 255, 234);
    font-size: large;
}
.menu1 > li:nth-child(4) > a{
    color: rgb(0, 255, 234);
    font-size: large;
}
.menu1 > li > a:hover{
    color: rgb(74, 204, 224); 
}
.right_menu{
    display: inline-block;
    padding: 12px 24px;
    background-color: rgb(0, 255, 234);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    margin-right: 20px;
}
.container{
    width: 100%;
    display: flex;
    gap: 20px;
}
.left{
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.left > h1{
    color: white;
    font-size: 50px;
    font-family: Arial, Helvetica, sans-serif;
}
.left > p{
    color: rgb(227, 224, 224);
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.5rem;
}
.right{
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.right > img{
    width: 100%;
    height: auto;
    padding: 20px;
}
.right > .contacts{
    width: 77%;
    height: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.contacts > li > a:hover{
    color: rgb(0, 255, 234);
}
.contacts > .one{
    list-style: none;
}
.contacts > .one > a{
    display: flex;
    gap: 15px;
    align-items: center;
    text-decoration: none;
    color: white;
}
.contacts > .one > a > img{
    width: 15px;
    height: 15px;
    background-color: white;
}
.contacts > .two{
    list-style: none;
}
.contacts > .two > a{
    display: flex;
    gap: 15px;
    align-items: center;
    text-decoration: none;
    color: white;
}
.contacts > .two > a > img{
    width: 15px;
    height: 15px;
}
.contacts > .three{
    list-style: none;
}
.contacts > .three > a{
    display: flex;
    gap: 15px;
    align-items: center;
    text-decoration: none;
    color: white;
}
.contacts > .three > a > img{
    width: 15px;
    height: 15px;
}
.contacts > .four{
    list-style: none;
}
.contacts > .four > a{
    display: flex;
    gap: 15px;
    align-items: center;
    text-decoration: none;
    color: white;
}
.contacts > .four > a > img{
    width: 15px;
    height: 15px;
    background-color: white;
}
.contacts > .five{
    list-style: none;
}
.contacts > .five > a{
    display: flex;
    gap: 15px;
    align-items: center;
    text-decoration: none;
    color: white;
}
.contacts > .five > a > img{
    width: 15px;
    height: 15px;
    background-color: white;
    
}
footer{
    width: 100%;
    height: 10%;
    border-top: 1px solid rgb(196, 191, 191);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 20px;
}
.bottom_menu{
    width: 290px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;        
}
.bottom_menu > li{
    list-style: none;
}
.bottom_menu > li > a{
    text-decoration: none;
    color: white;
    font-size: 15px;
    font-family: Arial, Helvetica, sans-serif;
}
footer > .bottom_menu > li:nth-child(4) > a{
    color: rgb(0, 255, 234);
    font-size: large;
}
.bottom_menu > li > a:hover{
    color: rgb(74, 204, 224); 
}
.copyright > p{
    color: white;
    font-size: 15px;
    font-family: Arial, Helvetica, sans-serif;
}
.work > a > img{
    width: 15px;
    height: 15px;
}
.work > a{
    text-decoration: none;
    color: rgb(206, 227, 54);
    font-size: large;
}
.work > a:hover{
    color: white;
}
.services{
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 20px;
}
.services > li{
    color: white;
}
.whatsapp{
    display: flex;
    flex-direction: column;
    
}
.whatsapp > a{
    text-decoration: none;
    color: rgb(74, 204, 224);
    font-size: 25px;
}

@media (max-width: 768px) {

    .navbar {
        flex-direction: column;
        gap: 15px;
    }

    .menu1 {
        width: 100%;
        flex-wrap: wrap;
        padding: 10px;
    }

    .container {
        flex-direction: column;
    }

    .left,
    .right {
        width: 100%;
    }

    .left > h1 {
        font-size: 28px;
    }

    .left > p {
        font-size: 14px;
        line-height: 1.4rem;
    }

    .right > img {
        padding: 0;
    }

    .contacts {
        width: 100%;
    }

    footer {
        flex-direction: column;
        gap: 10px;
        padding: 10px;
        text-align: center;
    }

    .bottom_menu {
        width: 100%;
        flex-wrap: wrap;
    }
}