@font-face {
    font-family: Opens Sans Light;
    src: url('fonts/OpenSauceSans-Light.ttf');
}

.OpensSans {
    font-family: Opens Sans Light !important;
}

@font-face {
    font-family: Anton;
    src: url('fonts/Anton-Regular.ttf');
}

.Anton {
    font-family: Anton !important;
    letter-spacing: 0.5px;
}


@font-face {
    font-family: XM Yekan Regular;
    src: url('fonts/XM\ Yekan\ Regular.ttf');
}

.XMYekan {
    font-family: XM Yekan Regular !important;
}



.invertImage {
    -webkit-filter: invert(100%);
    /* Safari/Chrome */
    filter: invert(100%);
}

.google-maps {
    position: relative;
    padding-bottom: 75%;
    height: 500px;
    overflow: hidden;
}

.google-maps iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}

.gallery-item {
    padding: 10px;
}

.gallery-item img {
    max-width: 100%;
    height: auto;
}



hr {
    position: relative;
    border: none;
    height: 1px;
    background: black;
}

section.section {
    background: #e6e5e5;
    border-top: 5px solid #e6e5e5;
    margin: 0px 0;
    padding: 10px 0;
}

.btn-dark {
    font-family: 'Heebo', sans-serif;
    letter-spacing: 1px;
}

.nav-pills>li.active>a,
.nav-pills .nav-link.active {
    background-color: transparent;
    background: transparent !important;
    border-bottom: 3px solid #CCC;
    color: black;
}

ul.nav-pills>li>a.active:hover,
ul.nav-pills>li>a.active:focus {
    color: black;
    background-color: transparent;
}


.custom-btn-style-1 {
    position: relative;
    border-radius: 0;
    left: 5px;
}

.custom-btn-style-1:before {
    content: '';
    position: absolute;
    top: -5px;
    right: -5px;
    bottom: -5px;
    left: -5px;
    border: 1px solid #CCC;
    transition: ease all 300ms;
}

.custom-btn-style-1:hover:before {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.custom-btn-style-1.custom-btn-style-1-right {
    left: auto;
    right: 5px;
}

@media screen and (min-width: 769px) {
    html #header .header-logo.custom-header-logo:before {
        content: '';
        position: absolute;
        bottom: -87px;
        left: 40px;
        width: 130px;
        height: 350px;
        background-color: #383228;
        opacity: 1;
        visibility: visible;
        transform: rotate(45deg);
        transition: ease opacity 300ms, ease transform 300ms;
    }
}



.PageThickLine {
    display: flex;
    position: relative;
    max-width: 100%;
    height: 19px
}

.PageThickLine img {
    width: 100%;
    height: 100%
}


.img__wrapper {
    position: relative;
    overflow: hidden;
}

.img__wrapper img {
    width: 100%;
}

.sold_out {
    top: -170px;
    left: -6em;
    color: #fff;
    display: block;
    position: absolute;
    text-align: center;
    text-decoration: none;
    letter-spacing: .06em;
    background-color: #A00;
    padding: 0.5em 5em 0.4em 5em;
    text-shadow: 0 0 0.75em #444;
    box-shadow: 0 0 0.5em rgba(0, 0, 0, 0.5);
    font: bold 16px/1.2em Arial, Sans-Serif;
    -webkit-text-shadow: 0 0 0.75em #444;
    -webkit-box-shadow: 0 0 0.5em rgba(0, 0, 0, 0.5);
    -webkit-transform: rotate(-45deg) scale(0.75, 1);
    z-index: 10;
}

.sold_out:before {
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    margin: -0.30em -50em;
    transform: scale(0.7);
    -webkit-transform: scale(0.7);
}


.fill {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    max-height: 350px
}

.fill img {
    flex-shrink: 0;
    min-width: 100%;
    min-height: 100%
}

.img-hover-zoom {
    overflow: hidden;
    /* [1.2] Hide the overflowing of child elements */
}

/* [2] Transition property for smooth transformation of images */

.img-hover-zoom img {
    transition: transform .5s ease;
}

/* [3] Finally, transforming the image when container gets hovered */

.img-hover-zoom:hover img {
    transform: scale(1.5);
}