*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
}
ul li{
    list-style: none;
}
a{
    text-decoration: none;
}
img{
    max-width: 100%;
    object-fit: cover;
}

.banner{
    position: relative;
}
.banner img{
	width:100%;
	max-height:70vh;
	object-fit:cover;
}
.banner__text{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.banner__text h2{
    font-family: 'Lora', serif;
    font-size: 80px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    -webkit-text-stroke-width: 2px; 
    -webkit-text-stroke-color: #004e6f; 
}
.main{
    /*margin-top: 90px; */
    background-image: url('../../files/images/ban-do.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding-top: 100px;
    background-color: #fff;
}
.main > .container{
	max-width: 1360px;
}
.heading__title{
	text-align:center;
}
.heading__title p{
    color: #000;
    font-style: italic;
    text-align: center;
}
.heading__title{
    margin-bottom: 30px;
}
.list__content{
    margin-bottom: 30px;
	box-shadow: rgba(113, 190, 190, 0.7) 0px 0px 24px;
}
.list__content img{
	width:100%;
}
.item-box{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 20px;
	background-color: #fff;
	box-shadow: 0 2px 21px rgba(0,0,0,.2);
	margin-bottom: 80px;
	padding: 10px;
	border-radius: 24px;
}
.item-box .box-image{
	width: 120px;
	height: 120px;
	display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 2px 21px rgba(0, 0, 0, .2);
	margin-top: -60px;
	overflow: hidden;
	/*padding: 6px;*/
	background-color: #fff;
}
.item-box .box-image img{
	width: 100%;
}
.item-box .title{
	width: 100%;
	text-align: center;
	line-height: 1.3;
	margin: 0;
}
.item-box .title a{
	display: block;
	font-size: 20px;
	line-height: 1.3;
	font-weight: 600;
	min-height: 52px;
	color: #003c62;
}
.item-box .title a:hover{
	text-decoration: none;
}
.item-box .webname a{
	color: #959595;
	overflow: hidden;
	text-overflow:ellipsis;
	display:-webkit-box;
	-webkit-line-clamp:1;
	line-clamp: 1;
	-webkit-box-orient:vertical;
	text-align: center;
}

.item-box .webname i{
	margin-left: 6px;
}
/*footer*/
footer{
    padding-top: 30px;
    background-color: #eeeef0;
    border-top: 1px solid #bfbfbf;
}
.list__addrs{
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}
.icons img{
    width: 32px;
    height: auto;
}
.location p{
    margin-bottom: 10px;
}
.location strong span{
    display: inline-block;
    text-decoration: underline;
}
/*end footer*/

@media only screen and (max-width: 991px){
    .banner__text h2{
        font-size: 60px;
    }
}
@media only screen and (max-width: 767.98px){
    .banner__text h2{
        font-size: 33px;
        -webkit-text-stroke-width: 1px; 
    }
}