.view-header
{
    width: 100%;
    height: 60px;
    background-image: linear-gradient(0deg, rgb(40,40,40), rgb(80,80,80));
}
.view-header span{
    display: block;
    position: relative;
    top: 60%;
    left: 0;
    transform: translateY(-50%);
    padding-left: 7vw;
    font-size: 30px;
    color: white;
    font-weight: 700;
    letter-spacing: 1px;
}


.view-section
{
    padding: 60px 0;
}
.view-section .view-w-70
{
    width: 80%;
    margin: auto;
}
@media screen and (max-width: 767px) {
    .view-section
    {
        padding: 1em 0;
    }
    .view-section .view-w-70
    {
        width: 100%;
    }
}
@media screen and (max-width: 991px) and (orientation:landscape) {
    .view-section
    {
        padding: 1em 0;
    }
    .view-section .view-w-70
    {
        width: 100%;
    }
}

/* carousel full screen */
.full-screen-container{
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    z-index: 100;
    background-color: rgb(0, 0, 0, 0.8);
}
.full-screen-container .carousel{
    padding: auto;
}
.full-screen-container .carousel-item{
    text-align: center;
}
.full-screen-container .carousel-item img{
    border-radius: 10px;
    max-width: 70vw;
    max-height: 90vh;
    width: 100%;
    height: 100%;
    object-fit: contain;
    margin: auto;
    position:
    fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.btn-ctrl-carousel-fullScreen-left{
    left: 2vw;
}
.btn-ctrl-carousel-fullScreen-right{
    right: 2vw;
}
.btn-ctrl-carousel-fullScreen-left, .btn-ctrl-carousel-fullScreen-right{
    position: absolute;
    top: 50%;
    padding: 20px;
    transform: translateY(-50%);
    text-decoration: none;
    color: #F5F5F5;
    font-size: 2vw;
    background: rgba(0, 0, 0, 0.2);
    transition-duration: 0.4s;
}
.btn-ctrl-carousel-fullScreen-left:hover, .btn-ctrl-carousel-fullScreen-right:hover{
    color: #CCCCCC;
}
.close-full-screen{
    position: absolute;
    top: 2vw; right: 2vw;
}
.close-full-screen button{
    border:none;
    padding: 10px;
    background: rgba(0, 0, 0, 0.2);
    color: #F5F5F5;
    transition-duration: 0.4s;
}
.close-full-screen button:hover{
    color: #CCCCCC;
}
/* end */


.view-section #carousel
{
    height: 60vh;
}
.carousel-item .contImage
{
    background: white;
    padding: 5px;
    border-radius: 4px;
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 12px;
}
.carousel-item img
{
    width: 100%;
    height: 60vh;
    border-radius: 8px;
    object-fit: cover;

}
.carousel .btn-fullScreen
{
    position: absolute;
    left: 40px;
    top: 20px;
    background-color: white;
    border: 1px solid rgba(80, 80, 80);
    border-radius: 8px;
    z-index: 50;
}
.carousel .btn-fullScreen button
{
    background-color: white;
    border: none;
    border-radius: 8px;
}
.carousel .btn-fullScreen button span
{
    border-radius: 8px;
    padding: 0.5vw;
    color: black;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition-duration: 0.4s;
    cursor: pointer;
    font-size: 12px;
}
@media screen and (max-width: 767px) {
    .view-section #carousel
    {
        height: 40vh;
    }
    .carousel-item .contImage
    {
        padding: 5px 10px;
        top: 0.5em;
        right: 1em;
    }
    .carousel-item img
    {
        height: 40vh;
    }
    .carousel .btn-fullScreen
    {
        padding: 5px 10px;
        top: 0.5em;
        left: 1em;
    }
}
@media screen and (max-width: 991px) and (orientation:landscape) {
    .view-section #carousel
    {
        height: 75vh;
    }
    .carousel-item img
    {
        height: 75vh;
    }
}

.view-contact
{
    height: 100%;
    margin: auto;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid rgb(220,220,220);
    background: white;
}
.view-contact .view-wp
{
    width: 100%;
    margin: auto;
    padding: 10px 20px;
}
.view-contact .wp-title span
{
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 1px;
    padding: 15px 0;
    border-bottom: 1px solid rgb(220,220,220);
    display: block;
}
.view-contact .wp
{
    padding: 15px 0;
}
.view-contact .wp-icon
{
    display: inline-block;
}
.view-contact .wp-icon span
{
    display: block;
    color: #fff;
    background-image: linear-gradient(190deg, #25D366, #068f39);
    border-radius: 100px;
    padding: 12px;
    box-shadow: 2px 2px 8px 2px rgb(0,0,0,0.2);
    height: 50px;
    width: 50px;
    text-align: center;
    margin-left: auto;
    transition-duration: 0.4s;
}
.view-contact .wp-icon span:hover
{
    transform: scale(1.05);
}
.view-contact .wp-icon span i
{
    font-size: 25px;
}
.view-contact .wp-text
{
    display: inline-block;
    position: relative;
    margin-left: 20px;
    height: 40px;
}
.view-contact .wp-text div
{
    position: relative;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.view-contact .wp-text span
{
    display: block;
    font-size: 12px;
    color: #212121;
}
.view-contact .wp-btn a
{
    width: 100%;
    display: block;
    background-image: linear-gradient(190deg, #25D366, #068f39);
    color: white;
    border-radius: 6px;
    text-align: center;
    font-size: 14px;
    padding: 5px;
    text-decoration: none;
    letter-spacing: 1px;
    font-weight: 600;
    margin: 20px auto;
    transition-duration: 0.4s;
}
.view-contact .wp-btn a:hover
{
    text-decoration: underline;
    transform: scale(1.02);
}
.view-contact .share
{
    margin-top: 20px;
}
.view-contact .share div
{
    display: inline-block;
}
.view-contact .share div img
{
    width: 30px;
    margin-left: 10px;
    cursor: pointer;
    transition-duration: 0.4s;
}
.view-contact .share div img:hover
{
    transform: scale(1.1);
}
@media screen and (max-width: 991px){
    .view-contact
    {
        height: auto;
        margin-top: 3em;
    }
}


.view-features
{
    background: white;
    border-radius: 4px;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -30%);
    height: 40px;
    box-shadow: 2px 2px 4px 2px rgb(0,0,0,0.1);
    width: 70%;
}
.view-features span
{
    display: block;
    text-align: center;
    font-size: 13px;
    position: relative;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    letter-spacing: 2px;
}
@media screen and (max-width: 767px) {
    .view-features
    {
        width: 80%;
    }
    .view-features span
    {
        font-size: 11px;
        letter-spacing: 1px;
    }
}


.view-title
{
    margin: auto;
    padding: 60px 0;
    border-bottom: 1px solid rgb(220,220,220);
}
.title h1
{
    font-weight: bold;
    text-transform: uppercase;
    font-size: 20px;
    letter-spacing: 1px;
    text-align: left;
}



.position-center-center
{
    position: relative;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
}



.view-details-section
{
    background: #fff;
}
.view-details-section .view-w-70
{
    width: 80%;
    margin: auto;
    padding-bottom: 60px;
    border-bottom: 1px solid rgb(220,220,220);
}
.view-details-section .title
{
    padding-bottom: 30px;
    padding-top: 60px;
}
.view-details-section .title span
{
    font-size: 20px;
    letter-spacing: 1px;
    font-weight: bold;

}
.view-details-section .description
{
    width: 90%;
    margin: auto;
    text-align: justify;
}
.view-details-section .description .title
{
    padding-bottom: 0;
    padding-top: 0;
    font-weight: bold;
}
.view-details-section .item-spects
{
    margin-bottom: 0.5em;
    color: #333; 
}
.view-details-section .item-price
{
    padding-top: 3em;
}
.view-details-section .item-price span
{
    font-size: 1.3em;
}
.view-details-section .map
{
    width: 90%;
    margin: auto;
}
.view-details-section .map iframe
{
    width: 100%;
    height: 200px;
    border-radius: 10px;
}
.view-details-section .address
{
    padding: 15px 0 30px 0;
}
.view-details-section .address .item-img
{
    display: inline-block;
    margin-right: 10px;
}
.view-details-section .address
{
    width: 90%;
    margin: auto;
}
.view-details-section .address .position
{
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
    margin: auto;
}
.view-details-section .address .item-img img
{
    height: 25px;
}
.view-details-section .address span
{
    display: inline-block;
    font-size: 16px;
    letter-spacing: 1px;
    font-weight: 700;
    text-align: center;
}
@media screen and (max-width: 991px) {
    .view-details-section .view-w-70
    {
        width: 100%;
    }
    .view-details-section .map
    {
        width: 100%;
    }
    .view-details-section .description
    {
        width: 100%;
    }
}

/* antiquity */
.antiquity
{
    border-bottom: 1px solid rgb(220,220,220);
    padding-bottom: 60px;
}
.antiquity .status
{
    padding-bottom: 20px;
}
.antiquity .status span
{
    display: block;
    margin: auto;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 1px;
    color: #212121;
}
.antiquity .rule
{
    display: block;
    height: 100px;
}
.antiquity .rule .position
{
    position: relative;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    display: inline-block;
}
.antiquity .point
{
    display: inline-block;
}
.antiquity .point div
{
    display: block;
    border-radius: 100px;
    background: #414141;
    height: 10px;
    width: 10px;
}
.antiquity .point span
{
    position: absolute;
    top: 40px;
    transform: translate(calc(-50% + 5px), 0);
    display: block;
    font-size: 14px;
    font-weight: bold;
}
.antiquity .line
{
    display: inline-block;
    height: 10px;
}
.antiquity .line div
{
    display: block;
    border-radius: 2px;
    background: #414141;
    height: 2px;
    width: 25vw;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}
.antiquity .years span
{
    display: block;
    margin: auto;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #808080;
}

.tags .item
{
    margin-bottom: 1em;
}
.tags .item div
{
    display: inline-block;
}
.tags .item img
{
    width: 25px;
}
.tags .item span
{
    display: block;
    position: relative;
    top: 50%;
    left: 0;
    margin-left: 10px;
    letter-spacing: 1px;
    font-size: 12px;
    text-transform: uppercase;
}