.social-contact-container {
    position: fixed;
    z-index: 10;
    top: 20%;
    right: 0;
    width: 35px;
}

.social-contact-container:hover .social-buttons {
    right: 0;
}

.social-contact-container .social-buttons-trigger {
    background: green;
    height: 35px;
    width: 35px;
    padding: 5px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    right: -10px;
    position: relative;
    display: none;
}

.social-contact-container .social-buttons-trigger img {
    height: 100%;
}

.social-contact-container .social-buttons {
    position: relative;
    /* right: -100%; */
    margin-top: 10px;
    padding: 5px;
    transition: all 0.25s ease-in-out;
    background: white;
    border-radius: 5px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}


.social-contact-container .social-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-contact-container .social-buttons .whatsapp-logo {
    display: block;
    margin-bottom: 10px;
}
.social-contact-container .social-buttons .telegram-logo img {
    width: 85%;
}
.social-contact-container .social-buttons a:hover img {
    transform: scale(1.1);
}

#about {
    background: #faf5ef;
}
#about ul {
    padding-left: 35px;
}
#about ul li{
    font-size: 15px;
    line-height: 2em;
    list-style: none;
    color: var(--mayar-secondary);
}
#about .subtitle {
    padding-left: 10px;
    line-height: 2em;
}
#about h2 {
    color: var(--mayar-primary);
    font-weight: bold;
    font-size: 22px;
    margin: 10px 0;
    margin-top: 20px;
    letter-spacing: 2px;
}

.footer-logo {
    width: 100%;
    text-align: center;
}
.footer-logo img {
    width: 300px;
    background: white;
    border-radius: 5px;
    padding: 5px 0;
}

.subscribe form {
    width: 100%;
}

.subscribe form textarea, .subscribe form input {
    margin-top: 10px;
    outline: none;
    padding: 15px 25px;
    color: #333;
    font-size: 14px;
	text-transform: capitalize;
    width: 100% !important;
    border: none;
    background: #fff;
    letter-spacing: 1px;
}

.form-message {
    padding: 4px 20px;
    text-align: center;
    border-radius: 5px;
    margin-bottom: 10px;
    background: rgb(225, 255, 229);
    color: green;
}

.form-error {
    background: rgb(255, 225, 225);
    color: red;
}

.prices-banner {
    position: relative;
    width: 100%;
    height: 400px;
}

.prices-banner img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.prices-banner::before {
    content: '';
    position: absolute;
    z-index: 3;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
}

.our-prices {
    background: #fffbf7;
}

.price-card {
    margin-bottom: 20px;
}

.price-card .card-container {
    padding: 10px;
    border-radius: 3px;
    background: white;
    text-align: center;
    box-shadow: 1px 2px 5px 0px rgba(0,0,0,0.2);
}

.price-card .card-title {
    font-weight: bold;
    color: var(--mayar-secondary);
}

.price-card .card-icon {
    width: 150px;
    opacity: 0.3;
    margin: 10px 0;
    display: inline-block;
}

.price-card .price {
    position: relative;
    font-size: 65px;
    font-weight: bold;
    color: var(--mayar-primary);
    display: inline-block;
}

.price-card .price::before {
    content: '€';
    position: absolute;
    top: 10px;
    left: -15px;
    font-size: 20px;
    font-weight: normal; 
}
.price-card .price::after {
    content: '/ H';
    position: absolute;
    bottom: 20px;
    right: -20px;
    font-size: 15px;
    font-weight: normal;
}

.price-card .description {
    color: #d1d1d1;
    margin-bottom: 10px;
    font-size: 14px;
}

@media only screen and (min-width: 992px) {
    .social-contact-container {
        width: 50px;
    }
    .social-contact-container .social-buttons-trigger {
        width: 50px;
        height: 50px;
    }
}

@media all and (max-width : 560px) {
	.logo img {
		width: 100px;		
	}
}