/* text styles */
.textprimary {
    color: aqua;

}

.textsecondary {
    color: limegreen;
}

/* Background */
.bg-primary{
    background-color: aqua;
}

.bg-light {
    background-color: white;
}

/* button */
.btn {
    cursor: pointer;
    display: inline-block;
    padding: 10px 30px;
    color: #333;
    background: aqua;
    border: none;
    border-radius: 5px;
    width: 30vw
}

.btn-primary {
    background-color: aqua;
    color: white;
}

.btn-secondary {
    background-color: limegreen;
    color: white;
}
.btn-outline {
    background-color: none;
    border: 2px #fff solid;
    color: #fff;
    margin: 10px;
    padding: 3px 10px;
    border-radius: 10px;
}
.btn-outline:hover {
    opacity: 80%;
}
.btn-dark {
    background: #333;
    color: #fff;

}

.btn-light {
    background: #fff;
    color: #333;
}

/* flex columns */
.flex-columns.flex-reverse .row {
    flex-direction: row-reverse;
}
.flex-columns .row{
display: flex;
flex-direction: row;
text-align: center;
flex-wrap: wrap;
width: 100%;
max-height: 100vh;
}

.flex-columns .column {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
    flex: 1;
}
.flex-columns h2 {
    font-size: 40px;
    font-weight: 100;
}
.flex-columns h4 {
    margin-bottom: 10px;
}
.flex-columns p {
    margin: 20px 0;
}

.section-header {
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.section-header h2 {
    font-size: 40px;
    margin: 20px 0;
}

.flex-columns .column-2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    Padding: 30px;
}
.flex-columns .column-1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
}


/* Flex items */
.flex-items {
    display: flex;
    text-align: center;
    justify-content: space-between;
    height: 100%;
    
}

.flex-items > div {
    padding: 20px;
    width: 25vw;
}
.flex-columns .column {
    display: flex;
    flex-direction: column;
    max-height: 100%;
    justify-content: center;
    align-content: center;
}
.flex-columns img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.flex-grid .column img {
    object-fit: cover;
    border-radius: 47%
}
.flex-columns .column .column-1,
.flex-columns .column .column-2 {
    height: 100%;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column
}

.flex-grid .row{
    display: flex;
    flex-wrap: wrap;
    padding: 0 4px;
    z-index: 100;
}

.flex-grid .column{
    flex: 25%;
    max-width: 25%;
    padding: 0 4px;
    align-content: center;
    justify-content: space-between;
    border: 1px rgb(33, 34, 31) solid;
    border-radius: 50%;
    color: white;
    position: relative;
}

