@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;1,100;1,200;1,300;1,400;1,500;1,600&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
html,body{
    scroll-behavior: smooth;
    background-color: #fff;
}

#main{
    width: 100%;
}

.header {
    width: 100%;
    height: 50vh;
    background-image: url(./images/header.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.589);
}

.header h1 {
    text-align: center;
    color: #fff;
    z-index: 1000;
    position: relative;
    text-transform: uppercase;
}

.btn {
    margin-top: 40px;
    gap: 40px;
}

.btn a{
    padding: 8px 20px;
    text-decoration: none;
    background-color: #0091ca;
    position: relative;
    z-index: 1000;
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: all cubic-bezier(0.19, 1, 0.22, 1) 1s;
    margin: 30px;
}

.btn a:hover{
    background-color: #fff;
    color: #0091ca;
    text-decoration: none;
}

.text{
    display: flex;
    /* justify-content: center; */
    /* align-items: center; */
    padding: 40px 180px;
    /* width: 60%; */
    gap: 30px;
}

.text a{
    color: #000;
}
.text a:nth-child(2){
    color: green;
}

.text a:hover{
    text-decoration: none;
}

.text p{
    text-align: center;
}

.text-img{
    display: flex;
    justify-content: center;
    /* align-items: center; */
    padding: 30px 100px;
    gap: 30PX;
}

.textimg-right h2{
    color: #0091ca;
    font-size: 22px;
}
.textimg-left img{
    border-radius: 10px;
}
.textimg-right {
    width: 40%;
}

.textimg-right a{
    color: #0091ca;
    text-decoration: none;
}

.service{
    padding: 40px 200px;
}

@media (max-width: 768px) {
    .header {
        width: 100%;
        height: 30vh;
    }
    .text{
        padding: 40px 20px;
    }
    .text-img{
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        padding: 30px 20px;
    }
    .textimg-right {
        width: 100%;
        padding: 30px 0;
    }
    .service{
        padding: 40px 20px;
    }
    .textimg-left img{
        width: 350px;
        height: 400px;
    }
    .header h1 {
        font-size: 22px;
    }

}