.sectionTwoContainer{
    gap: 20px;
    display: flex;
    padding: 50px;
    align-items: center;
    justify-content: center;
}
.sectionTwoRightContainer{
    gap:20px;
    display: flex;
    align-items: start;
    flex-direction: column;
    justify-content: center;
}

.sectionTwoRightInnerContainer{
    gap:20px;
    display: flex;
    align-items: start;
    flex-direction: column;
    justify-content: center;
}

.sectionTwoLeftContainer{
    display: flex;
    align-items: center;
    justify-content: start;
}

.sectionThreeContainer{
    gap:30px;   
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    padding: 0px 20px 50px 20px;
}

.sectionThreeCardsContainer{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    justify-content: space-evenly;
}

.sectionTitle{
    color:#345090;
    font-size: 30px;
    font-weight: 600;
    text-align: start;
    text-transform: capitalize;
}

.sectionTitleWithSides{
    gap:10px;
    display: flex;
    color:#345090;
    font-size: 30px;
    font-weight: 600;
    align-self: center;
    position: relative;
    align-items: center;
    justify-content: center;
}

.sectionTitleWithSides::after,
.sectionTitleWithSides::before{
    content: "";
    width:100px;
    height:5px;
    background-color: #345090;
}

.sectionDescription{
    width:80%;
    font-size: 16px;
    color:#515151;
    font-weight: 500;
    align-items: start;
}

.imageContainer{
    width: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.imageContainer img{
    width: 400px;
    height: 400px;
    display: flex;
    border-radius: 10px;
}

.servicesContainer{
    gap:20px;
    display: flex;
    align-items: start;
    justify-content: center;
}

.serviceCardContainer{
    gap:10px;
    width: 160px;
    display: flex;
    max-height: 150px;
    padding: 30px 15px;
    text-align: center;
    align-items: center;
    border-radius: 10px;
    flex-direction: column;
    justify-content: start;
    box-shadow: 0px 0px 5px #aaa;
}

.serviceImageContainer{
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    border-radius: 50px;
    justify-content: center;
}

.serviceImageContainer img{
    width: 100%;
    height: 100%;
    display: flex;
}

.cardTitle{
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    text-transform: capitalize;
}

.cardDescription{
    font-size: 14px;
    color: #515151;
    text-transform: capitalize;
}

.employeesCardContainer{
    gap:10px;
    width: 200px;
    height: 400px;
    display:flex;
    text-align: center;
    align-items: center;
    border-radius: 10px;
    flex-direction: column;
    justify-content: start;
}

.empPhotoContainer{
    width:150px;
    height:200px;
    display: flex;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 5px #000000;
}

.empPhotoContainer img{
    width: 100%;
    height: 100%;
    display: flex;
    border-radius: 10px;
}

.empName{
    gap:5px;
    display: flex;
    font-size: 18px;
    font-weight: 600;
    flex-direction: column;
}

.empRole{
    font-size: 17px;
    color:#345090;
}

.empDesc{
    font-size: 16px;
    color:#515151;
}

@media screen and (max-width: 1300px) {
    .imageContainer{
        width: 100%;
    }
    .imageContainer img{
        width: 300px;
        height: 300px;
    }
}

@media screen and (max-width: 1024px) {
    .sectionTwoContainer{
        padding: 50px 100px;
        flex-direction: column;
    }
    .sectionTwoRightContainer{
        align-items: center;
    }
    .imageContainer img{
        width: 300px;
        height: 300px;
    }
    .sectionThreeContainer{
        padding: 0px 100px 50px 100px;
    }
    .sectionThreeCardsContainer{
        gap:5px;
        justify-content: start;
    }
}

@media screen and (max-width: 913px) {
    .sectionTwoContainer{
        padding: 50px 20px;
    }
    .sectionThreeContainer{
        gap:20px;
        padding: 0px 10px 50px 10px;
    }
    .sectionThreeCardsContainer{
        gap:20px;
        justify-content: center;
    }
    .sectionTwoRightInnerContainer{
        padding: 0px 10px;
        text-align: center;
        align-items: center;
    }
    .servicesContainer{
        gap:15px;
        flex-wrap: wrap;
        padding: 0px 50px;
        justify-content: center;
    }
    .sectionTitle,
    .sectionTitleWithSides{
        font-size: 25px;
    }
    .employeesCardContainer{
        width: 250px;
        height: 400px;
    }
    .empPhotoContainer{
        width:130px;
        height:180px;
    }
}

@media screen and (max-width: 560px) {
    .imageContainer{
        width: 200px;
    }
    .imageContainer img{
        width: 200px;
        height: 200px;
    }
    .servicesContainer{
        padding: 0px 20px;
        justify-content: center;
    }
    .sectionTwoContainer{
        padding: 25px 0px;
    }
    .sectionThreeCardsContainer{
        gap:30px;
    }
    .sectionTitleWithSides, .sectionTitle{
        gap:5px;
        width: 100%;
        font-size: 25px;
        text-align: center;
    }
    .sectionTitleWithSides::after,
    .sectionTitleWithSides::before{
        width:30px;
    }
    .employeesCardContainer{
        height: fit-content;
    }
    .empPhotoContainer{
        width:90px;
        height:115px;
    }
}