.flex-container {
  display: flex;
  justify-content: center; /* Centers the columns horizontally */
  align-items: center;    /* Centers the columns vertically */
}

.flex-column-3 {
  margin: 0 10px;         /* Optional: Adds space between columns */
  padding: 0 15px;
  background-color: #ffffff00;
  width: 33%;
}
.flex-column-4 {
	margin: 0 10px;
	padding: 0 15px;
	background-color: #ffffff00;
	width: 25%
}
.layout-3-cols {
  width: 100%;
  display: grid;
  grid-template-rows: repeat(auto-fit, 1fr);
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.clr {
	clear: both;
}
div.colbtns {
	background-color: #000;
	border: 1px solid #828282;
	border-radius: 7px;
	padding: 3px 8px;
	width: auto;
	display: inline-block;
	margin-top: 0px;
}
div.colbtns:hover {
	background-color: rgba(0, 0, 0, 0.3);
	border: 1px solid #373737;
}
a.colbtns {
	color: #fff;
	text-decoration: none;
}
a.colbtns:hover {
	color: #C3E2FF;;
}
h3.col-title {
	margin-bottom: 5px;
}
span.coltitle {
    font-weight: bold;
    font-size: 1.2em;
}
@media screen and (max-width: 980px) {
	.flex-container {
		flex-direction: column;
	}
	.flex-column-3, .flex-column-4 {
		margin: 15px 0;
		width: 100%;
		padding: 0 5px;
	}
	.layout-3-cols {
		grid-template-columns: repeat(1, 1fr);
	}
}
img.social-icon {
	width: 38px;

}
img.social-icon:hover {
	opacity: 0.8;
}
.content {
	text-align: left;
}
		    html {
		        scroll-behavior: smooth;
		    }
		    a {
		        color: #DFEFFF;
		    }
		    h1 {
		        font-size: 1.7em;
		    }
		    h2 {
		        font-size: 1.35em;
		    }
		    h3 {
		        font-size: 1.1525em;
		    }
		    small {
		        font-size: smaller;
		        color: #aaa;
		    } 
		    section, div, article, p, span {
		        color: #ffffff;
		    }
		    .no-bullets {
                list-style-type: none;
            }
            ul > li {
                line-height: 2;
            }
           ul.tight > li {
                line-height: 1.3;
            }
            .box {
                border-radius:10px;
            }
            .top-btn {
                border-radius: 8px;
            }
            .top-btn:hover {
                opacity: 0.7;
            }
            img {
                border-radius: 8px;
            }
            .flex-container {
                display: flex;
                justify-content: space-between;
                margin-bottom: 20px;
            }
            .dropcap { 
                float: left; 
                color: #A2D2FF; 
                font-size: 75px; 
                line-height: 60px; 
                padding-top: 4px; 
                padding-right: 8px; 
                padding-left: 3px; 
                font-family: Georgia; 
            }
            .displayed {
                margin-bottom: 15px;
                width: 93%;
            }
            .caption {
              text-align: center;
              margin-top: -10px;
              margin-bottom: 25px;
              font-size: 12px;
            }
            @media only screen and (max-width: 800px) {
                .flex-container {
                    flex-direction: column;
                    justify-content: center;
                }
                .displayed {
                    width: 99%;
                }
            }





