﻿/*host*/

.host-box{
    width: 1200px;
    max-width: 100%;
    display: block;
    margin: 0 auto;
    padding-top: 50px;
}

.host-info{
    width: 100%;
    padding-top: 40px;
}
.host-list{
    margin-bottom: 80px;
}
.host-info-block{
    box-sizing: border-box;
}
.host-list .host-info-block{
    padding-left: 20px;
}


.host-img{
    width: 300px;
    max-width: 100%;
    display: inline-block;

}
.host-info-block{
    width: calc(100% - 300px);
    max-width: 100%;
    display: inline-block;
    vertical-align: top;  
    box-sizing: border-box; 
}
.host-list-info-item{
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 5px;
}
.host-list-info-narrative{
    font-size: 16px;
    letter-spacing: 1px;
}
.host-list-info{
    width: 50%;
    padding-right: 20px;
    box-sizing: border-box;
}
.host-list-info:first-child{
    float: right;
    padding-right: 0px;
}


#team-page .host-list-info{
    width: 100%;
    float: initial;
}
.host-info-url{
    position: absolute;
    top: 0;
    right: 0;
}



.host-info-name{
    font-size: 16px;
    letter-spacing: 3px;
    color: #4c4c4c;
    margin-bottom: 10px;
}
.host-list-info-narrative{
    font-size: 16px;
    letter-spacing: 3px;
    color: #4c4c4c; 
}
.host-list-info-list{
    margin-bottom: 20px;
}
.host-list-info-list:last-child{
    margin-bottom: 0;
}
.host-info-block .name {
    font-size: 25px;
    letter-spacing: 3px;
    color: #000;
}
.host-info-experience{
    font-size: 18px;
    letter-spacing: 3px;
    padding-top: 10px;
    font-weight: 500;
}
.host-info-link{
	font-size: 16px;
	font-weight: bold;
	letter-spacing: 1px;
	cursor: pointer;
	display: inline-block;
	margin-bottom: 5px;
	color: #008cd6;
	transition: all .5s ease;
}
.host-info-link:hover{
	color: #e60404;
}

@media only screen and (min-width: 1000px){
    .host-list{
        opacity: 0;
        -webkit-transform: translate3d(0, 50%, 0);
        transform: translate3d(0, 50%, 0);
        transition: all .5s ease;
    }
    .host-list.active{
        opacity: 1;
        -webkit-transform: translate3d(0, 0%, 0);
        transform: translate3d(0, 0%, 0);
     
    }
}
@media only screen and (max-width: 1000px){
	.host-img{
		width: 30%;
	}
	.host-info-block{
		width: 70%;
	}
}
@media only screen and (max-width: 750px){
    .host-box{
        width: 95%;
        padding-top: 0;
    }
    .host-img{
        width: 300px;
    }
    .host-list .host-info-block{
        width: 100%;
        display: block;
        padding: 0;
    }
 
    .host-info-block{
        margin-top: 20px;
    }
    .host-list{
        margin-bottom: 40px;
    }
}
@media only screen and (max-width: 550px){
	.host-img {
	    width: 100%;
	}
    .host-list-info{
        width: 100%;
    }
    .host-list-info:first-child{
        float: none;
        margin-bottom: 20px;
    }

}