
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;

}

body {
    min-height: 100vh;
    background-color: rgb(253, 253, 253) no-repeat;
}

.header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.3rem 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.header::before {
    content:" ";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color:rgb(25, 25, 25);
    z-index: -1;
}

.logo {
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    font-weight: 700;
}

.navbar a{
    font-size: 1.15rem;
    color: white;
    text-decoration: none;
    font-weight: 500;
    margin-left: 7.5rem;
}

#check {
    display: none;
}

.icons {
    position: absolute;
    right: 5%;
    font-size: 2.8rem;
    color: #fff;
    cursor: pointer;
    display: none;
}

.navbar :hover {
    color: #ff7400;
    transition: .2s ease-in-out;
    transition-delay: .3;
}

.container-content {
    margin-top: 50px;
    background-color: #ffffff;
    width: 100%;
    height: auto;
    padding-left: 100px;
    padding-right: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.p-content{
    align-items: center;
    text-align: center;
    line-height: 1.8;
}

.container-content1 {
    background-color:#f4f4f4;
    display: flex;
    height: 200px;
    justify-content: center;
    align-items: center;
}

.img-content1 {
    width: 20%;
}

.container-content3 {
    background-color:#ffffff;
    display: flex;
    height: 600px;
    justify-content: center;
    align-items: center;
}

.img-content3 {
    width: 50%;
}

.container-content2 {
    width: 100%;
    height: 200px;
    background-color: #ffffff;
}
.wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    height:100px;
    color: rgb(0, 0, 0);
    font-size: 15px;
}
.card {
    width: 10%;
    background-color: #ffffff;
    padding: 20px;
}
.text-center {
    text-align: center;
}
.btn {
    margin-top: 8px;
    padding: 12px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    width: 100%;
    background-color: #ff7400;
    color: white;
}

.ul-content4 {
    left: 0;
    width: 100%;
    padding: 1.3rem 10%;
    display: flex;
    background-color: #ffffff;
    justify-content: center;
    align-items: center;
}

.h-content4{
    list-style-type: none;
    justify-content: center;
    align-items: center;
    color: rgb(0, 0, 0);
    text-align: center;
}
.a-visitus {
    text-decoration: none;
    color:#ffffff;
}
.ul-footer1 {
    left: 0;
    width: 100%;
    padding: 1.3rem 10%;
    display: flex;
    background-color: #ff7400;
    justify-content: center;
    align-items: center;
}

.h-footer1{
    list-style-type: none;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.footer2 {
    left: 0;
    width: 100%;
    padding: 1.3rem 10%;
    display: flex;
     background-color: #252525;
    justify-content: center;
    align-items: center;
}

.li-footer2{
    list-style-type: none;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

@media (max-width: 992px) {
    .header {
        padding: 1.3rem 5%;
    }
    .container-content {
       padding: 2.5rem 5%;
        font-size: 80%; 
    }
     .container-content1 {
        padding: 1.3rem 5%;
        height: auto;
    }
    .img-content1 {
        width: 50%;
    }
    .container-content3 {
        padding: 1.3rem 5%;
        height: auto;
    }
    .img-content3 {
        width: 100%;
    }
    .ul-footer1 {
        padding: 1.3rem 5%;
        font-size: 80%;
    }
    .container-content2 {
        width: 100%;
        height: 200px;
    }
    .ul-content4 { 
        padding: 1.3rem 5%;
        font-size: 80%;
    }

    .card {
        width: 30%;
    }
    .ul-footer1 {
        padding: 1.3rem 5%;
        font-size: 80%;
    }
        .footer2 {
        padding: 1.3rem 5%;
        font-size: 80%;
    }
}
@media (max-width: 768px) {
    .icons {
        display: inline-flex;
    }
    #check:checked~.icons #menu-icon {
        display: none;
    }

    .icons #close-icon {
        display: none;
    }
        #check:checked~.icons #close-icon {
        display: block;
    }

    .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height:  0;
        background: #252525;
        overflow: hidden;
        transition: .3s ease;
    }
    #check:checked~.navbar {
        height: 12.5rem;    }

    .navbar a {
        display: block;
        font-size: 1.1rem;
        margin: 1.5rem 0;
        text-align: center;
        transform: translateY(-50px);
        transition: .3s ease;

    }

      #check:checked~.navbar a {
        transform: translateY(0); 
    }

}
