.elementor-8770 .elementor-element.elementor-element-4be9f0b > .elementor-element-populated{padding:0px 0px 0px 0px;}@media(min-width:768px){.elementor-8770 .elementor-element.elementor-element-4be9f0b{width:100%;}}/* Start custom CSS for text-editor, class: .elementor-element-1e30522 */.team-section {
    display: flex;
    flex-wrap: wrap;
    gap: 17px; /* Adjusted gap between team members */
}

.team-member {
    display: flex;
    background-color: #77619C;
    border-radius: 50px;
    flex: 1 1 calc(33.333% - 17px); /* Adjusted width with the gap */
    overflow: hidden;
    box-sizing: border-box;
    position: relative;
}

.team-member:nth-child(2n) {
    background-color: #A3730D;
}

.team-content {
    flex: 1;
    color: #fff;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 0 !important;
}

.team-content h3 {
    margin: 0;
    font-size: 17px; /* Adjusted font size */
}

.team-content p {
    margin: 4px 0 0 0;
    font-size: 13px;
}

.linkedin-icon {
    width: 14px; /* Adjusted icon size */
    height: 14px; /* Adjusted icon size */
    margin-top: 10px;
}

.team-image {
    flex: 0 0 150px;
    background-size: contain;
    background-position: right bottom;
    background-repeat: no-repeat;
    height: 100%;
}

/* Responsive design to adjust layout on smaller screens */
@media (max-width: 768px) {
      .team-section {
        gap: 10px;
        display: grid;
        grid-template-columns: 48% 48%;
    }
.team-member {
    display: grid;
    grid-template-columns: 40% 60%;
    height: 140px;
    border-radius: 30px;
}   
    .team-content {
        padding: 12px;
        display: block !important;
    }
    
    .team-content h3 {
        font-size: 13px; 
    }
    
    .team-content p {
       display: none;
    }

    .linkedin-icon {
        width: 12px; /* Reduced icon size for smaller screens */
        height: 12px; /* Reduced icon size for smaller screens */
    }

    .team-image {
    background-size: contain;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-9a97ec8 */.container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 20px auto;
    padding: 10px;
}

.info-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-radius: 8px;
    color: white;
    position: relative;
}

.info-content {
    max-width: 60%;
}

.info-content h3 {
    font-size: 1.8rem;
}

.info-content p {
    margin: 10px 0;
}

.social-icons {
    margin-top: 10px;
}

.social-icons a {
    margin-right: 10px;
    color: white;
    font-size: 1.2rem;
}

.social-icons a:hover {
    color: #ddd;
}

.info-image img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
}

/* Different background colors */
.color1 { background-color: #ff6f61; }
.color2 { background-color: #6b5b95; }
.color3 { background-color: #88b04b; }
.color4 { background-color: #f7cac9; }
.color5 { background-color: #92a8d1; }
.color6 { background-color: #034f84; }

/* Responsive design */
@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr;
    }

    .info-box {
        flex-direction: column-reverse;
        text-align: center;
    }

    .info-content {
        max-width: 100%;
    }

    .info-image img {
        margin: 10px 0;
    }
}/* End custom CSS */