:root{
    --white-color:#fff;
    --dark-color:#222;
    --body-bg-color:#fff;
    --section-bg-color:#202834;
    --navigation-item-hover-color:#3b5378;

    --text-shadow:0 5px 25px rgba(0,0,0,0.1);
    --box-shadow:0 5px 25px rgb(0 0 0 / 20%);

    --scroll-bar-color:#fff;
    --scroll-thumb-color:#282f4e;
    --scroll-thumb-hover-color: #454f6b;

}

body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background-image: url(https://images.unsplash.com/photo-1476842634003-7dcca8f832de?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
    /* filter: blur(50px); */
    /* background-image: url('img_girl.jpg'); */
        /* background-repeat: no-repeat; */
        background-attachment: fixed;
        /* background-size: cover; */
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
  }

  header{
    z-index: 9999;
    position: fixed;
    width: 100%;
    height: calc(5rem + 1rem);
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
}

header .nav-bar{
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 200px;
    transition: 0.3s ease;
}

.nav-items{
    font-size: 2em;
    margin-left: -235px;
    margin-top: 7px;
  }

.nav-close-btn, .nav-menu-btn{
    display: none;
}

.nav-bar .Logo{
    color: var(--white-color);
    font-size: 1.8em;
    font-weight: 600;
    letter-spacing: 2px;
    /* width: 5px; */
    text-transform: uppercase;
    text-decoration: none;
    text-shadow: var(--text-shadow);
}


.navigation .nav-items a{
    color: var(--white-color);
    font-size: 0.5em;
    text-decoration: none;
    /* text-shadow: var(--text-shadow); */
    text-shadow: 0 0 4px black; 
    /* margin-left: -350px; */
    justify-content: space-between;   
}

.navigation .nav-items a:hover{
    color: greenyellow;
    transition: 0.3s ease-in-out;
}

.navigation .nav-items a i{
    display: none;
}

.navigation .nav-items a:not(:last-child){
    margin-right: 45px;
}
  
  .team-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /* margin-left: 10em; */
    /* align-items: center; */
  }

  .main-title h1{
    font-size: 3em;
    color: white;
    transform: translateY(0);
    opacity: 1;
    transition: 1s ease;
    transition-delay: 0.3s;
    transition-property: transform, opacity;
    /* text-decoration: underline; */
    /* flex: none; */
    /* margin-top: auto; */
  }
  
  .team-member {
    text-align: center;
    margin: 20px;
    width: 190px;
    /* height: 150px; */
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.21);
    transition: transform 0.3s ease-in-out;
  }
  
  .team-member:hover {
    transform: translateY(-10px);
  }
  
  .team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
  }
  
  .team-member h3 {
    /* margin-top: 20px; */
    font-weight: 700;
    margin: 0;
    color: #fff;
  }
  
  .team-member .role {
    color: #fff;
    margin-bottom: 15px;
  }
  
  .fa {
    font-size: 24px;
    margin: 0 10px;
    color: #fff;
    transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
    text-decoration: none;
  }
  
  .team-member:hover .fa {
    transform: scale(1.2);
    color: #007AFF;
  }

  footer{
    margin-top: 5vh;
  }

  footer h3{
    color: #fff;
    /* flex: 0; */
    margin-top: auto;
    margin-top: 5vh;
    font-weight: 200;
  }

  @media  screen and (max-width: 1100px) {
    header .nav-bar{
        padding: 0 50px;
    }

    .swiper-slide .text-content{
        margin: 0 120px 0 50px;
    }

    .bg-slider-thumbs{
        bottom: 3em;
    }

    body{
        /* background-image: url('img_girl.jpg'); */
        background-repeat: no-repeat;
        background-attachment: fixed;
        background-size: cover;
    }

    .team-section{
        margin-top: 1000px;
    }
}

@media  screen and (max-width: 785px){

    body{
        /* background-image: url('img_girl.jpg'); */
        background-repeat: no-repeat;
        background-attachment: fixed;
        background-size: cover;
    }

    header .nav-bar{
        padding: 25px 20px;
    }

    .swiper-slide .text-content{
        margin: 0 70px 0 20px;
    }

    .swiper-slide .text-content .title{
        font-size: 3em;
    }

    .swiper-slide .text-content .title span{
        font-size: 0.35em;
    }

    .swiper-slide .text-content p{
        font-size: 0.9em;
    }

    .nav-menu-btn{
        display: block;
        color: var(--dark-color);
        position: absolute;
        top: 0;
        right: 0;
        font-size: 1.3em;
        margin: 10px;
        cursor: pointer;
        transition: 0.3s ease-in-out;
    }

    .navigation{
        z-index: 99999;
        position: fixed;
        width: 100%;
        height: 100vh;
        /* margin-top: 50px; */
        top: 0;
        left: 0;
        background: rgba(0,0,0,0.25);
        display: flex;
        justify-content: center;
        align-items: center;
        visibility: hidden;
        opacity: 0;
        transition: 0.3s ease-in-out;
    }

    .navigation.active{
        visibility: visible;
        opacity: 1;
    }

    .navigation .nav-items{
        position: relative;
        /* background: var(--white-color); */
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(5px);
        text-shadow: 0 0 4px black;
        /* padding: 20px; */
        border-radius: 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        border-right: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: var(--box-shadow);
        width: 400px;
        max-width: 400px;
        display: grid;
        place-content: center;
        margin: 20px;
        margin-top: 360px;
        padding: 5px;
        border-radius: 20px;
        box-shadow: var(--box-shadow);
        transform: translateY(-200px); 
        transition: 0.3s ease-in-out;
    }

    .navigation .nav-items a{
        color: white;
        font-size: 1em;
        margin: 15px 50px;
        transition: 0.3s ease-in-out;
        text-shadow: none;
    }

    .navigation.active .nav-items{
        transform: translateY(-50%);
        transition: 0.3s ease-in-out;
    }

    .navigation .nav-items a i{
        display: inline-block;
        font-size: 1.3em;
        margin-right: 5px;
    }

    .swiper-slide .text-content .read-btn {
        margin-top: 20px;
    }

    .team-section{
        margin-top: 1000px;
    }
}