@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@font-face {
    font-family: TrajanBold;
    src: url(../fonts/TrajanPro-Bold.otf);
}
*{
    margin: 0;
    padding: 0;
}
html,
body{
    width: 100%;
    height: 100%;
}
.tb{
    display: table;
    width: 100%;
    height: 100%;
}
.cell{
    display: table-cell;
    width: 100%;
    height: 100%;
    vertical-align: middle;
}
.banner{
    width: 100%;
    height: 100%;
    background: url(../images/bg.jpg) no-repeat center center;
    background-size: cover;
}
.banner .text{
    width: 100%;
    height: 100%;
}
.banner .text h1{
    margin: 0 20px;
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: 60px;
    color: #fff;
}
.banner .text .line1{
    width: 100px;
    height: 1px;
    background: #8B724A;
    transform: rotate(90deg);
    margin: 25px auto 50px;
}
.banner .text .line2{
    width: 100px;
    height: 1px;
    background: #8B724A;
    transform: rotate(90deg);
    margin: 80px auto 0;
}
.banner .text .dotline .wrap{
    width: 500px;
    display: block;
    margin: 0 auto;
    border-top: 1px dotted #fff;
    padding: 25px 0 0;
    position: relative;
    top: 100px;
}
.banner .text p{
    text-align: center;
}
.banner .text p a{
    text-decoration: none;
    color: #cfc2ae;
    font-size: 20px;
}
.banner .text .dotline h2{
    font-family: TrajanBold;
    color: #fff;
    text-align: center;
}
.banner .logo{
    padding: 25px 0;
    position: absolute;
    width: 100%;
}
.banner .logo img{
    width: 120px;
    margin: 0 auto;
    display: block;
}
@media only screen and (max-width: 520px){
    .banner{
        height: 700px;
    }
    .banner .text .dotline .wrap{
        width: 90%;
    }
    .banner .text p a{
        font-size: 12px;
    }
    .banner .text h1{
        font-size: 22px;
    }
    .banner .text .dotline h2{
        font-size: 14px;
    }
}