*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: rgb(248, 249, 251);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}  .hero{
    background-color: #6c6cd1;
    padding:15rem 0;
}
.links_container li:nth-of-type(1) a {
    color: white;
    border-bottom: 1px solid white;
}
.flex_container{
    width: 100%;
    display: flex;
    /* border: 1px solid white; */
}
.text_wrapper{
    width: 60%;
}
.text_wrapper h1{
    font-size: 55px;
    color: white;
}

.text_wrapper p{
    padding: 2rem 0;
    font-size: 20px;
    line-height: 1.2;
    color: white;
}
.img_wrapper{
    /* border: 1px solid red; */
    border-radius: 10px;
    overflow: hidden;
    width: 45%;
    height: 300px;
}
.img_wrapper img{
    width: 100%;
    height: 100%;
}

.btn_services,
.btn_get_started{
  /* border: 1px solid red; */
  border: none;
  border-radius: 10px;
  padding: 1.2rem 2rem;
  font-size: 1.2rem; 
  font-weight: bold;
}

.btn_get_started{
    background-color: #6c6cd1;
    color: white;
}
.btn_get_started:hover{
    background-color: white;
    color: #6c6cd1;
}


.our_services{
    width: 100%;
    padding: 2rem  0;

}

.our_services h1{
    font-size: 3.5rem;
    text-align: center;
}

.our_services .p1{
    color: gray;
    font-size: 1.2rem;
    text-align: center;
}

.card_wrapper{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    padding: 5rem 0;
}
.card-item{
    width: 25%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 0.2px solid rgba(128, 128, 128, 0.215);
    padding: 1rem;
    border-radius: 10px;
}
.card-item .icon_wrapper{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}
.card-item p {
    color: gray;
}
.green{
    background-color: green;
}
.blue{
    background-color: blue;
}
.yellow{
    background-color: yellow;
}

.card-item h3{
    padding: 1rem 0;
}

.card-item p{
    text-align: center;
    line-height: 2rem;
    padding: 1rem 0;
}