/* ==========================
    Tour Guides Page
========================== */
.guide_heading_area {
    text-align: center;
    border-bottom: 1px solid gainsboro;
    padding-bottom: 10px;
    padding-top: 30px;
    margin-bottom: 30px;
}

.guide_heading_area h3 {
    font-weight: 400;
    color: var(--primary-color);
}

.tour_guides_boxed {
    position: relative;
    box-shadow: 8px 10px 24px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
}

.tour_guides_boxed img {
    width: 100%;
}

.tour_guide_content {
    position: absolute;
    bottom: 0;
    background: #fff;
    width: 100%;
    box-shadow: 8px 10px 24px rgba(0, 0, 0, 0.1);
    padding: 10px 10px;
    text-align: center;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(100px);
}

.tour_guides_boxed:hover .tour_guide_content {
    opacity: 1;
    transform: translateY(0px);
}

.tour_guide_content h3 {
    font-size: 20px;
    font-weight: 500;
    color: var(--primary-color);
}

.tour_guide_content p {
    padding-top: 1px;
    font-size: 14px;
    font-weight: 500;
    color: #818090;
}

.tour_guide_content ul {
    margin-bottom: 10px;
    margin-top: -25px;
}

.tour_guide_content li {
    display: inline-flex;
    background: #fff;
    width: 30px;
    text-align: center;
    justify-content: center;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    box-shadow: 4px 6px 20px rgba(0, 0, 0, 0.08);
    transition: .4s all ease-in-out;
    color: var(--primary-color);
    margin-left: 8px;
}

.tour_guide_content li a {
    color: var(--primary-color);
}

.tour_guide_content li:first-child {
    margin-left: 0;
}

.tour_guide_content li:hover {
    background: var(--primary-color);
}

.tour_guide_content li:hover a {
    color: var(--white-color);
}


/* team 2 */
.guidepost{
    margin-bottom: 10px;
}
.guidepost:hover{
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.postcontent{
    padding-top: 5px;
}
.category a {
    color: #767676;
    font-style:italic;
}

.contactinfo {
    padding: 10px 0;
    list-style: none;
    font-size: 14px;
    line-height: 17px;
}

.contactinfo li {
    padding-bottom: 10px;
}
.postcontent{
    padding: 20px 20px 10px;
}
.posttitle h3 a {
    color: #1a6701;
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 20px;
    font-weight: 600;
}

.contactinfo li i,
.contactinfo li span,
.contactinfo li span a {

    color: #767676;
    font-size: 14px;
    line-height: 14px;
}

.contactinfo li i {
    width: 25px;
}


/* new */
.team-sec h2{
    font-weight: bold;
    font-size: 32px;
}
.team-sec h3{
    font-size: 40px;
    color: var(--black-color);
    padding-bottom: 5px;
    margin-bottom: 15px;
    position: relative;
}
.team-sec h3:after {
    position: absolute;
    left: 0;
    bottom: 0;
    content: '';
    height: 2px;
    width: 100px;
    background-color: var(--primary-color);
}
.team ul li .team-box {
    overflow: hidden;
    padding-bottom: 20px;
    margin-bottom: 30px;
    border: 1px solid #e9e9e9;
    background-color: #fefefe;
    border-radius: 2px;
    padding: 20px;
    position: relative;
}
.team ul li img.img-thumbnail {
    -webkit-border-radius: 2px;
    border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    background-clip: padding-box;
    padding: 0;
    border: none;
}
.team ul li:nth-child(odd) img {
    float: left;
    margin-right: 30px;
    margin-bottom: 10px;
}
.team ul li:nth-child(2n) img {
    float: right;
    margin-left: 30px;
    margin-bottom: 10px;
}
.team img {
    width: 200px;
}
.img-thumbnail {
    padding: 4px;
    line-height: 1.71429;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    display: inline-block;
    max-width: 100%;
    height: auto;
}
.team h4 {
    margin: 0;
    padding: 0;
    background: 0 0;
    font-size: 18px;
    margin-bottom: 2px;
    font-weight: 700;
}
.team em {
    margin-bottom: 10px;
    display: block;
    font-size: 14px;
    font-style: normal;
    color: #006ebf;
    font-weight: 400;
}

/* team page nav */
.team-page {}

.team-page .nav-pills .nav-link{
 cursor: pointer;
}
.team-page .nav-pills .nav-link.active,
.team-page  .nav-pills .show>.nav-link {
    color: #fff;
    background-color: var(--primary-color);
   
}
.team-det h4{
    color:#000;
    margin: 10px 0;
}
.team-det h5{
    font-style: italic;
}
.team-page img{
    height: 350px;
    width: 350px;
  margin-bottom: 15px;
}
.team-page .bar{
      margin:10px;
      border-top: 1px solid #ccc;
}