.txt_shadow {
    color: var(--link2);
    text-shadow: 1px 1px 2px black;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
}
.home_sec2_wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    text-align: center;
    margin-top: 20px;
}
.container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    width: 70%;     
    margin: auto;
}
.column { 
    min-width: 250px;
    min-height: 275px;
    text-align: center;
    flex: 1 1 calc(33.333% - 20px); /* 3 columns by default */
    box-sizing: border-box;
    background-color: var(--bgheader);
    filter: drop-shadow(2px 2px 2px);
    border: 2px solid var(--link2);
    font-size: 20px;
    padding: 7px;  
    padding-bottom: 20px;
    border-radius: 3px;
}
.column:hover {
    filter: drop-shadow(4px 4px 2px);
}
.sec3_container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    width: 65%;     
    margin: auto;
}
.image_row {
    max-width: 300px;
    min-width: 300px;
    border: 2px solid var(--link2);
    border-radius: 5px;
    color: var(--link2);
    font-size: 18px;
    padding: 10px;
    text-align: left;
    flex: 1 1 calc(33.333% - 30px); /* 3 columns by default */
    box-sizing: border-box;
    margin-top: 15px;
}
#width {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10000;
    border: 1px solid black;
    background-color: white;
}
.content_wrapper2 {
    display: flex;
    flex-direction: column;
    width: 70%;
    text-align: center;
    margin: 0 auto;
}
.custom {
  list-style: none;
  padding-left: 0;
}
.custom li {
  position: relative;
  padding-left: 25px;
}
.custom li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: green;
}
.wrapper2 {
    width: 300px;
    background-color: #fff;
    padding: 7px;
    filter: drop-shadow(2px 2px 2px);
    border: 1px solid var(--link2);
    font-size: .75em;
    margin-bottom: 25px;
    border-radius: 2px;
}
.left {
    text-align: left;
}
.blue {
    color: #0026fd;
}
.image_row100 {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
    margin-bottom: 15px;
}
.image_row_container {
    margin-left: 25px;
    margin-right: 25px;
}
.image_wrapper {
    width: 300px;
    border: 2px solid var(--link2);
    border-radius: 5px;
    color: var(--link2);
    font-size: 18px;
    padding: 10px;
    text-align: left;
}
.iw_h {
    font-size: 20px;
    color: var(--link1);
    text-align: center;
    font-weight: bold;
    margin-bottom: 5px;
}
.iw_p {
    font-size: 24px;
    color: var(--text2);
    margin-bottom: 5px;
}
.wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.wrapper a {
    color: var(--link1);
    text-decoration: none;
}
.wrapper a:hover {
    text-decoration: underline;
}
@keyframes moveLeftRight {
    0%   { transform: translateX(0); }
    50%  { transform: translateX(20px); }
    100% { transform: translateX(0); }
}
@media (max-width: 1500px){
    .home_sec2 {
        width: 100%;
    }
}
@media (max-width: 1350px){
}
@media screen and (max-width: 1100px) {
}
@media screen and (max-width: 1025px) {
    .home_sec2_wrapper {
        margin-top: 5px;
        margin-bottom: 5px;       
    }   
    .txt_shadow {
        font-size: 24px;
    }    
    .container {
        width: 85%;
    }
}
@media (max-width: 600px) {
}

