:root {
    --background-color: #ffffff; /* Background color for the entire website, including individual sections */
    --default-color: #222222; /* Default color used for the majority of the text content across the entire website */
    --heading-color: #172a28; /* Color for headings, subheadings and title throughout the website */
    --accent-color: #C1198D; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

.localization {
    position: fixed;

    z-index: 99999;
    width: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

@media screen and (min-width: 992px) {
   .localization {
        right: 15px;
        bottom: 65px;
   }
}

@media screen and (max-width: 991px) {
    .localization {
        right: 55px;
        top: 35px;
    }

}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, .99);
    z-index: 99999;
}

/********************  Preloader Demo-17 *******************/

.preloader .loader{position:relative;width:65px;border:1px solid transparent;margin:40px auto}
.preloader .loader span{position:absolute;bottom:0;display:block;width:9px;height:5px;border-radius:5px;background:rgba(0,0,0,.1);-webkit-animation:preloader 2s infinite ease-in-out;animation:preloader 2s infinite ease-in-out}
.preloader .loader span:nth-child(2){left:11px;-webkit-animation-delay:.2s;animation-delay:.2s}
.preloader .loader span:nth-child(3){left:22px;-webkit-animation-delay:.4s;animation-delay:.4s}
.preloader .loader span:nth-child(4){left:33px;-webkit-animation-delay:.6s;animation-delay:.6s}
.preloader .loader span:nth-child(5){left:44px;-webkit-animation-delay:.8s;animation-delay:.8s}
.preloader .loader span:nth-child(6){left:55px;-webkit-animation-delay:1s;animation-delay:1s}
@-webkit-keyframes preloader{
    0%,100%,50%{height:5px;-webkit-transform:translateY(0);transform:translateY(0);background:rgba(0,0,0,.1)}
    25%{height:30px;-webkit-transform:translateY(15px);transform:translateY(15px);background:#C1198D}
}
@keyframes preloader{
    0%,100%,50%{height:5px;-webkit-transform:translateY(0);transform:translateY(0);background:rgba(0,0,0,.1)}
    25%{height:30px;-webkit-transform:translateY(15px);transform:translateY(15px);background:#C1198D}
}

/*--------------------------------------------------------------*/
/*# Team Section*/
/*--------------------------------------------------------------*/

.team .member {
    background-color: var(--surface-color);
    box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-radius: 15px;
    padding: 15px;
    overflow: hidden;
}

.team .member .image{
    border-radius: 15px;
    overflow: hidden;
    max-height: 250px;
}

.team .member img {
   width: fit-content;
}

.team .member .member-content {
    padding: 0 20px 30px 20px;
}

.team .member h4 {
    font-weight: 700;
    margin-top: 16px;
    margin-bottom: 2px;
    font-size: 20px;
}

.team .member span {
    font-style: italic;
    display: block;
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team .member .social {
    margin-top: 15px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.team .member .social a {
    color: color-mix(in srgb, var(--default-color), transparent 60%);
    transition: 0.3s;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
}

.team .member .social a:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.team .member .social i {
    font-size: 18px;
    margin: 0 2px;
}

/*Board Section*/
.board .board-member{
    background: #f7f7f7;
    box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-top: 3rem;
}

.board .board-member .pic{
    max-height: 350px;
    margin-bottom: 10px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .board .board-member .pic{
        max-height: 280px;
    }
}
.board .board-member .pic img{
    width: fit-content;
}


.board .content{
    padding: 1rem;
}

.board h3 {
    font-size: 20px;
}

.board h3 a {
    color: var(--heading-color);
}

.board h3:hover {
    a {
        color: var(--accent-color);
    }
}

.board .position {
    display: block;
    margin-bottom: 20px;
    font-size: 14px;
    color: color-mix(in srgb, var(--heading-color), transparent 30%);
}

.board p {
    line-height: 1.7;
    color: var(--default-color);
}

.board .more {
    position: relative;
    padding-right: 30px;
    display: inline-block;
}

.board .more span {
    position: absolute;
    top: 50%;
    right: 0;
    font-size: 16px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: transparent;
    color: var(--contrast-color);
    line-height: 1.6;
    text-align: center;
    transition: 0.3s all ease;
    font-style: italic;
}

.board .more span:before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.board .more:hover {
    color: var(--contrast-color);
}

.board .more:hover span {
    background: var(--accent-color);
}

.board .more.dark {
    color: var(--accent-color);
    font-style: italic;
}

.board .more.dark>span {
    color: var(--default-color);
}

.board .more.dark:hover {
    color: var(--accent-color);
}

.board .more.dark:hover span {
    color: var(--contrast-color);
    background: var(--accent-color);
}



