/* CSS Document */

body{
    font-family: 'Gabriel Sans', sans-serif;
    font-size: 62.5%;
    background-color: #742D92;
}

.page-title{
    font-size: 40px;
    font-weight: 1000;
    text-transform: uppercase;
    font-style: italic;
    margin-bottom: 20px;
}

.custom-loader-mask{
    background-color: #F9ED32;
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-loader{ 
    display: flex;
}

.wrapper-loader{
    width: 133px;
    height: 21px;
    position: relative;
}

.head{
    width: 20px;
    height: 21px;
    border-radius: 50px;
    background-color: #742d92;
    position: absolute;
    right: 0;  
}

.shoulder{
    width: 20px;
    height: 21px;
    border-radius: 50px;
    background-color: #742d92;
    position: absolute;
    right: 16px;  
}

.body{
    width: 100px;
    height: 12px;
    background-color: #742d92;
    position: absolute;
    right: 27px;
    bottom: 0;
}

.cape{
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-top: 0 solid transparent;
    border-right: 55px solid #742d92;
    border-bottom: 16px solid transparent;
    right: 27px;
    top: 0;
}

.wind1,
.wind2,
.wind3,
.wind4{
    width: 80px;
    border-top: 3px solid #742D92;
    position: absolute;
    right: 0;
    animation: wind .5s linear infinite;
}

.wind1{top: 10%; animation-delay: 0s}

.wind2{top: 25%; animation-delay: .3s }

.wind3{top: 60%; animation-delay: .5s}

.wind4{top: 90%; animation-delay: .8s}


@keyframes wind{
      0% {left: 100%;
  }
  100% {
    left: 0;
    opacity: 0;
  }
}


.purple {
    color: #742D92;
}
.yellow {
    color: #F9ED32;
}
.purple-bg {
    background-color: #742D92;
    color: #F9ED32;
}
.yellow-bg {
    background-color: #F9ED32;
    color: #742D92;
}

strong{
    font-weight: 900;
}

#header {
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5px;
    border: none;
}
#leftHeader {
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#social {
    margin-right: 20px;
}

#leftHeader #social a{display: block; width: 25px; height: 25px; float: left; margin: 0;}

#leftHeader #social{width: 160px; display: flex; justify-content: space-between;}

#leftHeader #social a img{width: 100%;}

#ham{
    cursor: pointer;
    outline: none;
    height: 25px;
}

#menu-mobile{
    text-align: center;
    position: absolute;
    text-transform: uppercase;
    display: none;
}
.menu-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#contacts {
    width: 100%;
	height: 100px;
    text-align: center;
    padding: 0 15px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    float:left;
}

#footer-p-desk {
    display: none;
}

#footer-p-mobile {
    font-size: 11px;
    line-height: 1.5rem;
}

#contatti {
    width: 100%;
    height: 65px;
    line-height: 65px;
    font-family: 'Gabriel Sans';
    font-size: 1.3rem;
    text-transform: uppercase;
    cursor: pointer;
    text-align: center;
    font-weight: 700;
    padding:0;
	border: none;
	outline:none;
	float:left;
}

.icon-heart:before {
  content: "\2665";
}

/*_____________________________________________________ Media Queries __________________________________________________________*/

@media(min-width:768px){
	
#contacts {
    font-size: 1.7em;
}
    
    .page-title{font-size: 50px;}
	
}

@media(min-width:1025px){
    
    #header{padding:0 20px;}

#menu-mobile{
    text-align: center;
    font-size: 20px;
    line-height: 25px;
    top: 0px;
    right: 0;
    display: none;
    text-transform: uppercase;
}
#menu-list {
    text-align: center;
}
#menu-list li {
    width: 100%;
}

#contatti {
    width: 30%;
    height: 80px;
    line-height: 80px;
}

#contacts{width: 70%; height: 80px; line-height: 16px; display: flex; align-content:center;}
	
#footer-p-mobile {
    display: none;
}
#footer-p-desk {
    display: block;
    font-size: 11px;
}
	
}