.side-title {
    width: 80%;
    justify-content: center;
    margin: auto;
}

.side-title .story-title {
    font-weight: 900!important;
    font-size: 40px!important;
    color: #333333;
    text-align: center;
    padding-top: 35px;
    padding-bottom: 50px;
    letter-spacing: 10px;
}
  
article {
    width: 80%;
    max-width: 800px;
    justify-content: center;
    margin: auto;
    
    padding-top: 50px;

    background-color: none;

}

article p{
    font-weight: 400;
    font-size: 24px;
    color: #666666;
    
}

/* Team card */
.team-row{
    width: 100%;
    height: auto;
    margin: auto 0;
    display: flex;
    justify-content: center;    
}
.team-container, .team-name {
    text-align: center;
    padding-bottom: 5px;
    color: #333333;
}

.team-container {
    margin: auto;
    width: 70%;
    align-items: center;
}
  
.team-column {
    display: flex;
    width: auto;
    margin-bottom: 16px;
    padding: 0 10px;
}

.team-title {
    font-weight: 900!important;
    font-size: 40px!important;
    color: #333333;
    text-align: center;
    padding-top: 50px;
    padding-bottom: 50px;
    letter-spacing: 10px;
}

.team-card {
    width: auto;
    background-color: rgba(0, 0, 0, 0.10);
    border-bottom-right-radius: 5px;

}

.team-card img {
    margin: 0px;
    height: 300px;
    border-radius: 0%;
    filter: grayscale(0);  /* REMOVE SATURATION */
    transition: 0.5s;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

.team-card img:hover{
    border-radius: 0%;
    filter: grayscale(0);
}

.team-description {
    padding: 0 5px;
}

.team-description::after, .team-row::after {
    content: "";
    clear: both;
    display: table;
}

.title {
    color: #666666;
    font-weight: 600!important;
    padding-bottom: 15px;
    overflow-wrap: break-word!important;
}

.cont {
    color: #666666;
    font-weight: 400!important;
    padding-bottom: 10px;
}

.button {
    border: none;
    outline: 0;
    display: inline-block;
    padding: 4px;
    color: white;
    background-color: #fad030;
    border-bottom-right-radius: 5px;
    text-align: center;
    cursor: pointer;
    width: 100px;
    margin: 5px;
    margin-top: 10px;
    font-weight: 800;
    font-size: 15px;
    margin-bottom: 15px;
    margin-top: 20px;
}

.button:hover {
    background-color: #666666;
}





.security-container {
    float: left;
    width: 50%; /* Each image container takes up half the width of the article */
    box-sizing: border-box; /* This ensures padding and border are included in the width */
    padding: 50px; /* Adjust as needed */
    
}

.security-container img {
    width: 100%; /* Make the images fill their containers */
    display: block; /* Remove default inline display */
    border: none; /* Optional: Add border for better separation */
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}





@media screen and (max-width: 1070px) {
    .team-column {
        width: auto;
        display: flex;
        justify-content: center;
        padding: 50px;
    }
    .team-row{
        
        height: auto;
        margin: auto 0;
        display: grid;
        justify-content: center;
        
        
        margin: 20px auto;
        width:400px;

        grid-row: auto auto;
        grid-template-columns: 200px 200px;
        grid-column-gap: 150px;
        
    }
}

@media screen and (max-width: 858px) {

    .side-title .story-title {
        padding-top: 100px;
    }
    
    

}


@media screen and (max-width: 750px) {
    .team-column {
        width: 100%;
        display: flex;
        justify-content: center;
        padding: 20px;
        margin-bottom: 0px;
    }
    .team-row{
        width: 100%;
        height: auto;
        margin: auto 0;
        display: block;
        justify-content: center;
    }


    article {
        font-weight: 300;
        font-size: 20px;
        color: white;
        padding-top: 50px;
        padding-left: 5%;
        padding-right: 5%;
        width: 90%;
        background-color: none;
    }

    .team-title {
        padding-top: 50px;
    }


    .side-title .story-title {
        padding-top: 100px;
    }
    
    .security-container {

    padding: 5px; /* Adjust as needed */
    padding-top: 20px;
    padding-bottom: 20px;
    
    }
    
}


