﻿@font-face {
    font-family: 'manrope-regular';
    src: url('../fonts/manrope-regular.ttf') format('truetype');
}

@font-face {
    font-family: 'manrope-extrabold';
    src: url('../fonts/manrope-extrabold.ttf') format('truetype');
}

div {
    font-family: manrope-regular;
}

.bold {
    font-family: manrope-extrabold;
}


body {
    margin: 0px !important;
    padding: 0px !important;
}


/*HEADER*/
/*bordo colorato menu attivo*/
.MenuAttivo {
    border: 10px solid;
    border-image-slice: 1;
    border-width: 5px;
    border-image-source: linear-gradient(to right, #f68a1f, #f36c21);
    border-left: 0;
    border-right: 0;
    border-top: 0;
}




/*Comuni*/
.rSfondoArancionSfumato {
    background: linear-gradient(to right, #f68a1f, #f36c21);
}

.bSfondoArancionSfumato {
    background: linear-gradient(to bottom, #f68a1f, #f36c21);
}

.rTestoArancionSfumato {
    background: -webkit-linear-gradient(left, #f68a1f, #f26421);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.rboxArancione {
    border-radius: 25px;
    padding: 60px 50px;
    background: linear-gradient(to right, #f68a1f, #f36c21);
}

.bboxArancione {
    border-radius: 25px;
    padding: 60px 50px;
    background: linear-gradient(to bottom, #f68a1f, #f36c21);
}

.lh-3 {
    line-height: 3;
}

.text-right {
    text-align: right !important;
}

.text-orange {
    color: #f68b1f !important;
}

.row {
    --bs-gutter-x: 0 !important;
}

.br-25 {
    border-radius: 25px;
}

.underlineHover {
    text-decoration: none !important;
}

    .underlineHover:hover {
        text-decoration: underline !important;
    }

/*Font size*/
.FontSize100 {
    font-size: 100px;
}

.FontSize60 {
    font-size: 60px;
}

.FontSize50 {
    font-size: 50px;
}

.FontSize40 {
    font-size: 40px;
}

.FontSize27 {
    font-size: 27px;
}

.FontSize22 {
    font-size: 22px;
}

.FontSize20 {
    font-size: 20px;
}

.FontSize18 {
    font-size: 18px;
}





/*ImgRotate*/

.imgRotate {
    transform: rotateY(0deg);
    -webkit-transform: rotateY(0deg);
    transition: 0.7s;
    -webkit-transition: 0.7s;
}

.imgRotate.active {
    transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
    transition: 0.5s;
    -webkit-transition: 0.5s;
}



/*Dissolvenza*/

.ShowServizi {
    opacity: 0;
    transform: translateX(0px);
    transition: all 0.7s ease-out;
    transition-delay: 0.4s;
}

.ShowServizi-animate {
    opacity: 1;
    transform: translateY(0);
}


/*Stile separatore*/
.space {
    height: 280px;
}
/*Media query per schermi piccoli*/
@media (max-width: 768px) {
    .sm {
        font-size: 2.8em;
    }

    .space {
        height: 80px;
    }
    /*agg. margine sovraposto*/
    .contatti-agg {
        margin-bottom: 2em;
    }
}