/* Typography */
html, body{
    height: 100%;
    margin: 0;
    overflow-x: hidden;
    font-size: 16px;
    color: var(--generic--text);
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    transition: 'cursor' 0.2s;
}
@media(max-width: 320px){
	.menu-hero .logo{
		width:100px !important;
	}
	.hp_toptext{
		padding:10px !Important;
		text-align:center;
	}.hp_toptext h1{
		font-size:18px !important;
	}
}
h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{
    color: var(--title--text);
    font-weight: 700;
    font-family: 'Ubuntu', sans-serif;
}

.footer{
    background-color: var(--title--text);
	font-size:14px !important
}
.footer .social{
    background-color: var(--black);
    padding: 12px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.social-icon{
    margin: 0 15px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}
.social-icon:hover{
    opacity: 0.8;
}
.newsletter-input{
    border-radius: 30px;
    max-width: 245px;
}
#newsletter-button{
    border-radius: 30px;
    width: 100%;
    max-width: 245px;
}
.itala-tag{
    display: inline-flex;
    margin: 8px;
}
.itala-tag .label{
    padding: 8px 14px;
    background: -webkit-linear-gradient(0deg, #48b3e2 0%, #4891E2 100%);
    background: linear-gradient(0deg, #48b3e2 0%, #4891E2 100%); 
    border-radius: 30px 0 0 30px;
    font-weight: 500;
    font-size: 12px;
    color: white;
}
.itala-tag .icon{
    padding: 8px 14px;
    background: -webkit-linear-gradient(0deg, #48b3e2 0%, #4891E2 100%);
    background: linear-gradient(0deg, #48b3e2 0%, #4891E2 100%); 
    border-radius: 0 30px 30px 0;
    font-weight: 500;
    font-size: 10px;
    color: white;
    margin-left: 2px;
    position: relative;
    cursor: pointer;
}
.itala-tag .icon:hover{
    opacity: 0.8;
}
.itala-tag .icon::before, .itala-tag .icon::after{
    content: '';
    width: 2px;
    height: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: white;
}
.itala-tag .icon::before{
    transform: translate(-50%, -50%) rotate(45deg);
}
.itala-tag .icon::after{
    transform: translate(-50%, -50%) rotate(-45deg);
}
.user{
    display: inline-flex;
    align-items: center;
}
.avatar{
    height: 44px;
    width: 44px;
    position: relative;
    border-radius: 50%;
    background: var(--base) url("../img/common/user.svg") no-repeat center;
    background-size: 85%;
}
.avatar img{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background-color: var(--base);
    border-radius: 50%;
}
/* Utils */
.object-fit_cover { 
    object-fit: cover 
}
.bg-light.transparent{
    background-color: rgba(255,255,255, 0.4) !important;
}
.bg-brown{
    background-color: var(--brown);
}