/* 
    Created on : 8 gen 2025, 15:04:48
    Author     : Erminio
*/
:root
{
    --color-pr: #234678;
    --color-sec: #4bcdb4;
    --color-ter: #BBFFE6;
    --color-qr:#E9FAF6;
    --color-gray-light: #F7F7F7;
    --color-gray-super-light: #FBFBFB;
    --color-gray: #ebebeb;
    --color-dark: #192841;
    --color-text: #555555;
    --color-text-dark: #222222;
    --color-white: #fff;
    --font-wn: 400;
    --font-wb: 700;
    
    --color-pr-rgb: 35,70,120;
     --color-sec-rgb: 80,200,180;
    --color-gradient:  linear-gradient(160deg,rgba(var(--color-sec-rgb), 1) 0%, rgba(var(--color-pr-rgb), 1) 50%);
}
@font-face 
{
    font-family: 'Raleway';
    src: url('/assets/css/fonts/Raleway-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face 
{
    font-family: 'Raleway';
    src: url('/assets/css/fonts/Raleway-Bold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

body
{
    font-family: "Raleway", san-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 400;
    background-color: var(--color-gray-light);
}
p
{
    color: var(--color-text);
    font-size: 15px;
    line-height: 21px;
}
b
{
    font-weight: var(--font-wb);
}
p.form
{
    font-size: 10px;
  line-height: 14px;
}
header
{
    height: 70px;
    width: 92vw;
    text-wrap: balance;
    background-color: #fff;
    position: fixed;
    left: 4vw;
    top: 0;
    z-index: 9;
    
    box-shadow: 0 0 20px rgba(25,40,65,0.20);
    padding: 0 25px;
    opacity: 1;
    transition: opacity 300ms ease-out;
}
header a.info-cpage
{
    border-bottom: 1px solid var(--color-sec);
    margin-top: 3px;
}
header.out
{
    opacity: 0;
}
footer
{
    padding-bottom: 0 !important;
}
h3
{
    font-weight: var(--font-wn);
}
#logo-header
{
    width: 115px;
    display: block;
    margin: 0;
}
#btn-menu-nav
{
    font-size: 32px;
    color: var(--color-pr);
    margin-top: 3px
}
#nav-menu
{
    position: fixed;
    width: 92vw;
    top: 75px;
    left: 4vw;
    background-color: #fff;
    padding: 40px 30px 40px 50px;

    box-shadow: 0 0 20px rgba(25,40,65,0.20);
    opacity: 0;
    transform: scale(0.01);
    transform-origin: top;
    transition: all 300ms ease-in-out;
}
#nav-menu.active
{
    transform: scale(1);
    transform-origin: top;
    opacity: 1;
    transition: all 400ms ease-in-out
}
#nav-menu ul
{
    display: block;
    text-align: left;
}
#nav-menu a:link,#nav-menu a:visited
{
    text-decoration: none;
    display: block;
    margin-bottom: 18px;
    color: var(--color-pr);
    font-weight: var(--font-wn);
    font-size: 16px;
     transition: all 300ms ease-in-out;
}
#nav-menu a:hover,#nav-menu a:visited:hover
{
    color: var(--color-sec);
     text-decoration: underline;
    transition: all 300ms ease-in-out;
   
}
#nav-menu a.sign-in
{
    background-color: var(--color-pr);
    color:  var(--color-sec);
    padding: 18px 26px;
    box-shadow: 0 0 20px rgba(25,40,65,0.20);
    font-weight: var(--font-wb);
}
#nav-menu li.sep
{
    border-top: 1px solid var(--color-gray);
    padding-bottom: 20px;
    display: block;
}
ul.nested
{
    margin-left: 30px;
  margin-top: 10px;
}
.point-circle
{
    width: 15px;
  height: 15px;
  background-color: var(--color-sec);
  border-radius: 100px;
  margin-right: 12px;
}



section,footer
{
    padding: 60px 0;
}
section h2
{
    margin-bottom: 20px;
    font-size: 32px;
    text-align: center;
    color: var(--color-dark);
}
section.pages h2
{
    font-size: 24px;
    line-height: 30px;
    text-align: left;
}
section h3
{
    margin-bottom: 40px;
    font-size: 18px;
    text-align: center;
    line-height: 23px;
    color: var(--color-pr);

}
section p
{
    margin-bottom: 20px;
    text-align: justify;
}
.border-radius
{
    border-radius: 2px
}
.border-radius-box
{
     border-radius: 3px
}
.border-radius-header
{
    border-radius: 0 0 2px 2px;
}
.border-radius-footer
{
    border-radius: 0;
}
.display-none
{
    display: none !important;
}
.material-symbols-outlined
{
    font-variation-settings:
        'FILL' 0,
        'wght' 300,
        'GRAD' 0,
        'opsz' 24
}
.font-weight-normal
{
    font-weight: 400;
}
.font-weight-bold
{
    font-weight: 800 !important;
}
.btn
{
    width: 100%;
    height: 45px;
    background-color: var(--color-pr);
    color: var(--color-sec);
    text-align: center;
    box-shadow: 0 0 20px rgba(25,40,65,0.20);
    font-weight: var(--font-wb);
    font-size: 15px;
     transition: all 300ms ease-in-out;
     cursor: pointer;
     border: none;
     outline: none;
}
.btn:hover
{
    background-color: var(--color-sec);
    color: var(--color-pr);
    transition: all 300ms ease-in-out;
}
.btn:hover.alt
{
    background-color: var(--color-pr);
    color: var(--color-sec) !important;
     transition: all 300ms ease-in-out;
}
.btn.alt
{
    background-color: var(--color-sec);
    color: var(--color-pr);
     transition: all 300ms ease-in-out;
}
.btn.on-bg
{
    background-color: var(--color-sec);
    color: var(--color-white)  !important;;
     transition: all 300ms ease-in-out;
}
.btn.on-bg:hover
{
    background-color: var(--color-white);
    color: var(--color-sec)  !important;;
     transition: all 300ms ease-in-out;
}
.btn.link
{
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    text-decoration: none;
}
.btn.link.left
{
    justify-content: left;
    padding-left: 20px;
}
.btn.small
{
    width: 100px;
}
.btn.large
{
    width: 120px;
}
.btn.submit
{
    border: none;
}
.bg-color-pr
{
     background-color: var(--color-pr) !important;
}
.bg-color-sec
{
     background-color: var(--color-sec) !important;
}
.bg-color-ter
{
     background-color: var(--color-qr) !important;
}
.bg-color-white
{
     background-color:var(--color-white) !important;
}
.bg-color-gray-light
{
     background-color:var(--color-gray-light) !important;
}
.bg-color-gray-super-light
{
     background-color:var(--color-gray-super-light) !important;
}
.bg-color-dark
{
     background-color: var(--color-dark) !important;
}

.color-pr
{
    color: var(--color-pr) !important;
}
.color-gray-light
{
    color: var(--color-gray) !important;
}
.color-gray-super-light
{
    color: var(--color-gray-super-light) !important;
}
.color-sec
{
    color: var(--color-sec) !important;
}
.color-ter
{
     color: rgba(var(--color-sec-rgb),0.09) !important;
}
.color-qr
{
     color: var(--color-qr) !important;
}
.color-text
{
    color: var(--color-text) !important;
}
.color-text-dark
{
    color: var(--color-text-dark) !important;
}
.color-dark
{
    color: var(--color-dark) !important;
}
.color-white
{
    color: var(--color-white) !important;
}

a.base-link:link,a.base-link:visited
{
    color: var(--color-pr);
    text-decoration: underline;
    transition: all 300ms ease-in-out;
}
a.base-link:hover,a.base-link:visited:hover
{
    color: var(--color-sec);
    transition: all 300ms ease-out;
}
a.base-link.on-bg:link,a.base-link.on-bg:visited
{
    color: var(--color-white);
}
a.base-link.on-bg:hover,a.base-link.on-bg:visited:hover
{
    color: var(--color-sec);
}



#jt
{
    height: 720px;
    display: flex;
    background-color: var(--color-gray-light);
}
#jt img
{
    width: 300px;
    margin: 50px auto 0 auto;
    display: block;
    height: auto;
}
#jt h1
{
    font-size: 30px;
    margin-top: 70px;
    line-height: 34px;
    color: var(--color-dark);
    text-wrap: balance;
        

}
#jt p
{
    font-size: 16px;
    margin: 16px auto 32px;
    line-height: 22px;
}

#loghi-ujt
{
    background-color: var(--color-white);
    box-shadow: 0 0 10px rgba(25,40,65,0.15);
    position: relative
}
#app,#contatti
{
    box-shadow: 0 0 10px rgba(25,40,65,0.15);
}
#row-loghi-ujt
{
    border-top: 1px solid var(--color-sec);
    padding: 50px 0;
    margin-top: -1px
}
#row-loghi-ujt div
{
    display: flex;
  align-content: center;
  align-items: center;
}
#loghi-ujt img,#loghi-customer img
{
    width: 100%;
    display: block;
    opacity: 0.9;
    height: auto;
    margin-inline: auto;
    transition: opacity 0.4s ease-in-out;
}

#service
{
    background-color: var(--color-gray-light);
}
.box-service
{
    background-color: rgba(var(--color-sec-rgb),0.10);
    padding: 35px 20px;
    box-shadow: 0 0 20px rgba(25,40,65,0.20);

}
.box-service.alt
{
    background-color: var(--color-pr);
}
.box-service.alt h3,.box-service.alt p
{
    color: #fff;
}
.box-service.alt .icon-service
{
    color: var(--color-sec);
}
.box-service h3,.box-service p
{
    text-align: left;
    margin: 0;

}
.box-service h3
{
    font-size: 22px;
    line-height: 26px;
    font-weight: var(--font-wb);
    color: var(--color-pr);
}
#wrapper-box-service
{
    margin-top: 40px;
}
.icon-service
{
    color: var(--color-pr);
    font-size: 38px;
    margin-right: 15px;
}
.box-service .btn
{
    justify-content: left;
}
.btn-service
{
    max-width: 180px;
    margin-top: 20px;
}

#app
{
/*    background: rgb(247,247,247);
    background: linear-gradient(180deg, rgba(247,247,247,1) 0%, rgba(255,255,255,1) 100%);*/
}
#img-section-app
{
    width: 300px;
    margin: auto;
    display: block;
    height: auto;
    opacity: 1;
    transition: all 400ms 200ms ease-in-out;
}
#img-section-app.tmp-out
{
    opacity: 0;
     transition: all 200ms  ease-in-out;
}
section h3.desc-app
{
    font-size: 24px;
    color: var(--color-pr);
    font-weight: var(--font-wb);
    margin-bottom: 20px;
    margin-top: 40px;
    text-align: left;
    line-height: 30px;
}
#box-slide-desc-app
{
    overflow-x: hidden;
}
.row#row-slide-desc-app
{
    width: 300%;
    max-width: 300%;
    margin-top: 20px;
   
}
#row-btn-slide-desc-app
{
    margin-bottom: 7px;
    border-bottom: 1px solid  var(--color-gray);
}
#row-btn-slide-desc-app h4
{
    color: var(--color-pr);
    font-weight: var(--font-wn);
    font-size: 16px;
    text-wrap: nowrap;
    padding-bottom: 7px;
    text-transform:uppercase;
    cursor: pointer;
    transition: all 300ms ease-out;

}#row-btn-slide-desc-app h4:hover
{
    color: var(--color-sec);
    transition: all 300ms ease-in-out;
   

}
#row-btn-slide-desc-app h4.last
{
    border-right: 0;
}
#row-btn-slide-desc-app .sep
{
    margin: 0 8px;
}
.btn-slide-desc-app
{
    display: flex;
}
.btn-slide-desc-app .sep
{
    margin: 0 5px;
    color: var(--color-text)
}
.btn-slide-desc-app .index-desc
{
    position: absolute;
    left: 0;
    bottom: -3px;
    width: calc(100% - 9px);
    background-color: var(--color-dark);
    height: 0;
    opacity: 0;
    transition: all 300ms ease-in-out;
}
.btn-slide-desc-app.active .index-desc
{
    height: 3px;
    opacity: 1;
    transition: all 300ms ease-in-out;
}
.btn-slide-desc-app.active .index-desc.last
{
    /*width: 100%;*/
}

#box-slide-desc-app li
{
    display: flex;
    gap: 5px;
    color: var(--color-text-dark);
    font-size: 15px;
    font-weight: var(--font-wn);
    line-height: 19px;
    margin-bottom: 15px;
}
#box-slide-desc-app .icon-desc
{
    color: var(--color-sec);
    font-size: 26px;
}
#row-slide-desc-app .slide ul
{
    display: none;
}
#row-slide-desc-app .slide.active ul
{
    display: block;
}


.box-review
{
    background-color: #fff;
    box-shadow: 0 0 20px rgba(25,40,65,0.20);
    padding: 40px 45px;
}
.box-review img
{
    width: 60px;
    height: 60px;
    background-color: var(--color-dark);
    display: block;
    margin: auto;
    border:none;
}
.box-review p
{
    margin-bottom: 0;
    text-align: left;
    color: var(--color-text);
}
.wrapper-info-rev
{
    align-content: space-between;
}
.wrapper-info-rev .fl-box
{
    display: flex;
}
.wrapper-info-rev  h3,.wrapper-info-rev  h4
{
    margin-left: 15px;
    color: var(--color-pr);
}
.wrapper-info-rev .name
{
    align-items: baseline;
}
.icon-rev
{
    color: var(--color-sec);
    font-size: 25px;
}
.wrapper-info-rev h5
{
    color: var(--color-pr);
    font-size: 15px;
    margin-left: 5px
}

.box-review.alt
{
    background-color: var(--color-pr);
}
.box-review.alt p
{
    color: #fff;
}
.box-review.alt h4
{
    color: var(--color-sec);
}
.box-review.alt h5
{
    color: #fff;
}
.box-review.alt .icon-rev
{
    color: var(--color-sec);
}
#customer
{
    background-color: var(--color-gray-super-light);
}
#row-loghi-customer img
{
    display: block;
    margin: auto;
    width: 100%;
    opacity: 0.7
}

#modal
{
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color-gray-super-light);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transform: scale(0.001);
    opacity: 0;
    transition: all 300ms ease-in-out;
    
}
#modal.active
{
    transform: scale(1);
    opacity: 1;
    transition: all 300ms ease-in-out;
}
#inner-modal
{
    width: 300px;
  padding: 35px 40px;
  background-color: var(--color-dark);
}
#inner-modal h5
{
    font-size: 22px;
    color: var(--color-ter);
     text-align: center;
}
#inner-modal p
{
    font-size: 14px;
    text-align: center;
    color: var(--color-white);
    margin: 20px auto 20px;
}


/*############# footer #################*/

.box-contacts
{
    padding: 30px 40px;
    box-shadow: 0 0 20px rgba(25,40,65,0.25);
}
#info-contact
{
    background-color: var(--color-white)
}
#info-contact h3
{
    font-size: 24px;
    color: var(--color-pr);
    margin-bottom: 20px;
    font-weight: var(--font-wb);

}
#info-contact h4
{
    font-size: 18px;
    color: var(--color-sec);
    margin-bottom: 5px;
}

#form-contact
{
    background-color: var(--color-pr);
}
#form-contact #icon-ident
{
    color: var(--color-sec);
    font-size: 42px;
    text-align: right;
    display: block;
}
#form-contact h3
{
    color: var(--color-sec);
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: var(--font-wb);
}
#form-contact p
{
    color: #fff;
}
.input,.textarea
{
    width: 100%;
    border: none;
    box-shadow: 0 0 20px rgba(25,40,65,0.25);
    border: none;
    height: 40px;
    padding-left: 20px;
    color: var(--color-pr);
     font-family: "Raleway", serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 400;
}
.input::placeholder
{
    font-weight: var(--font-wn);
    color: var(--color-pr);
    opacity: 0.4;
}
.label-text
{
    color: var(--color-sec);
    margin-bottom: 5px;
    font-weight: var(--font-wn);
    display: block;
    font-size: 15px
}
.textarea
{
    height: 100px;
    padding: 20px
}

#footer-data
{
    background-color: var(--color-pr);
    padding: 30px 0;
    margin-top: 50px;
    box-shadow: 0 -5px 10px rgba(25,40,65,0.20);
}
#logo-footer
{
    width: 160px;
    display: block;
    margin: auto;
    height: auto;
}
#footer-data p
{
    text-align: center;
    color: var(--color-white);
    font-size: 12px;
  line-height: 17px;
}
#sep-footer-data
{
    display: none;
}

.dialog
{
    padding: 30px;
  width: 320px;
  outline: none;
  border: navajowhite;
  background-color: var(--color-dark);
  box-shadow: 0 0 20px rgba(25,40,65,0.20);
}
.dialog p
{
    color: var(--color-white);
    margin: 10px 0 30px;
    font-size: 14px;
    line-height: 21px;
}
.dialog .title
{
    color: var(--color-qr);
    font-size: 18px;
  margin: 0;
}



#btn-point-app
{
    transition: all 300ms ease-in-out;

}
#btn-point-app.tmp-out
{
    opacity: 0;
    transition: all 300ms ease-in-out;
}
#img-contacts
{
    height: auto;
}

.hp-field
{
  position:absolute !important;
  left:-10000px !important;
  top:auto !important;
  width:1px !important;
  height:1px !important;
  overflow:hidden !important;
  white-space:nowrap !important;
}

@media only screen and (min-width:480px)
{
    header
    {
        width: 84vw;
        left: 8vw;
    }
    #nav-menu
    {
        width: 84vw;
        left: 8vw;
    }
    .box-service
    {
        padding: 40px 28px;
        
    }
    .box-contacts
    {
        padding: 40px 60px;
        ;

    }
    #img-contacts
    {
        display: none
    }
}
@media only screen and (min-width:768px)
{
    .btn.large
    {
        width: 140px;
    }
    header
    {
        height: 75px;
        width: 90vw;
        left: 5vw;
        padding: 0 45px;
    }
    #nav-menu
    {
        width: 90vw;
        left: 5vw;
        top: 80px;
        padding: 70px 280px 70px 80px;
    }
    #nav-menu a:link,#nav-menu a:visited
    {
        margin-bottom: 20px;
        font-size: 17px;
    }
    #nav-menu a.sign-in
    {
        padding: 12px 22px;
    }
    #nav-menu li.sep
    {
        padding-bottom: 22px;
    }


    #logo-header
    {
        width: 120px;
    }

    #jt
    {
        height: 450px;
    padding-top: 60px;
    }
    #jt h1
    {
        margin-top: 0;
    }
    #jt img
    {
        margin: 0px auto 0 auto;
    }
    
    .dialog
    {
        padding: 50px;
        width: 600px;
    }
    .dialog p
    {
        margin: 12px 0 32px;
        font-size: 15px;
        line-height: 23px;
    }
    .dialog .title
    {
        font-size: 20px;
    }



}
@media only screen and (min-width:1024px)
{
    .btn.large
    {
        width: 160px;
    }
    header
    {
        height: 80px;
    }
    p
    {
        font-size: 16px;
        line-height: 22px;
    }
    #nav-menu
    {
        position: relative;
        height: auto;
        padding: 0;
        width: 640px;
        left: inherit;
        top: inherit;
        box-shadow: none;
        background-color: #fff;
        text-align: right;
        transform: scale(1);
        transform-origin: top;
        opacity: 1;
    }
    #nav-menu ul
    {
        display: flex;
        text-align: left;
        width: 100%;
        gap: 19px;
        align-content: center;
        align-items: center;
        justify-content: right;
    }
    #nav-menu a:link, #nav-menu a:visited
    {
        margin-bottom: 0;
        font-size: 16px;
    }
    #nav-menu a.sign-in
    {
        padding: 15px 25px;

    }
    #btn-menu-nav
    {
        display: none;
    }

     #jt 
     {
    height: 580px;
    padding-top: 60px;
  }
    #jt h1
    {
        font-size: 38px;
        margin-top: 0;
        line-height: 42px;
    }
    #jt img
    {
        width: 90%;
        margin: 0px -30px 0 auto;
        display: block;
    }
    #jt p
    {
        font-size: 17px;
        margin: 20px auto 30px;
        line-height: 23px;
    }
    .btn
    {
        height: 50px;
        font-size: 16px;
    }
    .input, .textarea
    {
        height: 50px;
        padding-left: 22px;
    }
    .textarea
    {
        height: 70px;
    }
    .label-text
    {
        margin-bottom: 7px;
        font-size: 17px;
    }
    #loghi-ujt img,#loghi-customer img
    {
        width: 90%;
    }
    section,footer
    {
        padding: 80px 0;
    }
    section h2
    {
        margin-bottom: 20px;
        font-size: 36px;
    }
    section h3
    {
        font-size: 19px;
        line-height: 25px;
    }
    #btn-service-parag
    {
        margin-top: 20px;
    }
    #wrapper-box-service
    {
        margin-top: 80px;
    }
    .box-service {
        padding: 60px 28px;
    }
    .box-service h3
    {
        font-size: 23px;
    }
    .btn-service
    {
        max-width: 200px;
        margin-top: 5px;
    }
    #img-section-app
    {
        width: 100%;
    }
    section h3.desc-app
    {
        font-size: 25px;
        margin-bottom: 20px;
        margin-top: 0;
    }
    .content-section
    {
        margin-top: 20px;
    }

    #container-prev-review
    {
        padding: 0 20px;
    }
    .box-contacts
    {
        padding: 60px 70px;
    }
    #info-contact h3
    {
        font-size: 25px;
    }
    #form-contact #icon-ident
    {
        font-size: 60px;
        position: absolute;
        right: -40px;
        top: -10px;
    }
    #form-contact
    {
        padding: 40px 70px;
    }
    #form-contact h3 {
        font-size: 26px;
        margin-bottom: 20px;
    }
    #footer-data
    {
        margin-top: 80px;
    }
    #footer-data p 
    {
  font-size: 15px;
  line-height: 21px;
}
    .border-radius-header
    {
        border-radius: 0 0 6px 6px;
    }
    
    .dialog
    {
        padding: 70px;
        width: 820px;
    }
    .dialog p
    {
        margin: 15px 0 35px;
        font-size: 16px;
        line-height: 23px;
    }
    .dialog .title
    {
        font-size: 24px;
    }
    
    #inner-modal
    {
        width: 500px;
      padding: 40px 45px;
    }
    #inner-modal h5
    {
        font-size: 24px;
    }
    #inner-modal p
    {
        font-size: 16px;
        margin: 25px auto 25px;
    }
    #btn-close-modal
    {
        width: 200px;
        margin: auto;
    }


}
@media only screen and (min-width:1420px)
{

    .padding-block
    {
        padding: 0 80px;
    }
    .btn.large
    {
        width: 180px;
    }
    header
    {
        height: 100px;
       width: 1420px;
    left: calc((100vw - 1420px )/ 2);
        padding: 0;
        margin: auto;
    }
    p
    {
        font-size: 16px;
        line-height: 26px;
    }
    p.form
{
    font-size: 11px;
    line-height: 15px;
}
    #logo-header
    {
        width: 155px;
        margin-left: 50px;
    }
    #nav-menu
    {
        width:820px;
        margin-right: 50px;
    }
    #nav-menu a.sign-in
    {
        padding: 15px 50px;
    }
    #nav-menu ul
    {
        gap: 30px;
    }
    #nav-menu a:link, #nav-menu a:visited
    {
        font-size: 17px;
    }
    #jt
    {
    height: 740px;
    padding-top: 80px;
  }
    #jt h1
    {
        font-size: 54px;
        line-height: 56px;
    }
    #jt p
    {
        font-size: 20px;
        margin: 25px auto 35px;
        line-height: 28px;
    }
     #jt img 
     {
        width: 88%;
        margin: 0px -10px 0 auto;
    }
    .btn 
    {
        height: 55px;
        font-size: 17px;
    }
    .btn.link.left
    {
        padding-left: 25px;
    }
    #row-loghi-ujt 
    {
        padding: 65px 0;
    }
    #loghi-ujt img,#loghi-customer img
    {
        width: 70%;
        margin: auto;
    }
    section, footer
    {
        padding: 120px 0;
    }
    section h2
    {
        margin-bottom: 25px;
        font-size: 48px;
    }
    section h3
    {
        font-size: 21px;
        line-height: 29px;
    }
    #btn-service-parag
    {
        margin-top: 30px;
    }
    #wrapper-box-service
    {
        margin-top: 90px;
    }
    .box-service
    {
        padding: 70px 60px 70px 35px;
    }
    .icon-service
    {
        font-size: 78px;
        margin-right: 15px;
        margin-top: -25px;
    }
    .box-service h3
    {
        font-size: 26px;
    }
    .btn-service
    {
        max-width: 240px;
    }
    section h3.desc-app
    {
        font-size: 36px;
        margin-bottom: 60px;
        line-height: 44px;
        max-width: 620px;
    }
    #row-btn-slide-desc-app h4
    {
        font-size: 20px;
        padding-bottom: 15px;
    }
    #row-btn-slide-desc-app .sep
    {
        margin: 0 22px;
    }
    #box-slide-desc-app li
    {
        gap: 10px;
        font-size: 17px;
        line-height: 25px;
        margin-bottom: 30px;
    }
    .btn-slide-desc-app.active .index-desc
    {
        height: 4px;
    }
    .btn-slide-desc-app .index-desc
    {
        bottom: -4px;
    }
    #box-slide-desc-app .icon-desc
    {
        font-size: 34px;
    }
    .row#row-slide-desc-app
    {
        margin-top: 35px;
        margin-left: inherit;
        transition: all 300ms ease-in-out;
    }
    #btn-point-app
    {
        margin-top: 30px;
         opacity: 1;
        transition: all 300ms ease-in-out;
        
    }
    .btn-slide-desc-app .index-desc
    {
        width: calc(100% - 22px);
    }
    .content-section {
        margin-top: 50px;
    }
    .box-review
    {
        padding: 70px 60px;
    }
    .box-review img
    {
        width: 65px;
        height: 65px;

    }
    .wrapper-info-rev  h3,.wrapper-info-rev  h4
    {
        margin-left: 20px;
        font-size: 20px;
    }
    .icon-rev
    {
        color: var(--color-sec);
        font-size: 40px;
    }
    .wrapper-info-rev h5
    {
        font-size: 16px;
        margin-left: 10px;
    }
    .box-review p
    {
        margin-bottom: 15px;
        margin-top: 15px;
    }
    #row-loghi-customer img
    {
        opacity: 0.8;
    }
    .box-contacts
    {
        padding: 80px 75px;
    }
    #info-contact h3
    {
        font-size: 30px;
    }
    #info-contact h4
    {
        font-size: 19px;
        margin-bottom: 7px;
    }
    #form-contact
    {
        padding:100px 90px;
    }
    #form-contact h3
    {
        font-size: 26px;
    }
    .textarea
    {
        height: 100px;
    }
    #form-contact p {
        margin-bottom: 20px;
    }
    .label-text
    {
        margin-bottom: 9px;
        font-size: 18px;
    }
    #form-contact #icon-ident
    {
        right: -60px;
        top: -70px;
        font-size: 80px;
    }
    #footer-data
    {
        margin-top: 90px;
        padding: 40px 0;
        align-items: center
    }
    #logo-footer
    {
        width: 180px;
    }
    #container-prev-review 
    {
    padding: 0;
  }
  #img-section-app
{
    width: 90%;
    margin: 0 auto 0 0;
    display: block;
}
#footer-data p 
    {
  font-size: 17px;
  line-height: 27px;
  text-align: left;
  padding-left: 50px;
}
.border-radius
{
    border-radius: 3px
}
.border-radius-box
{
     border-radius: 4px
}
.border-radius-header
{
    border-radius: 0 0 10px 10px;
}
#footer-data img
{
    margin-left: auto;
    margin-right: 50px;
}
#sep-footer-data
{
    display: block;
    position: absolute;
    right: -10px;
    top: 0;
    height: 100%;
    width: 1px;
    background-color: var(--color-white);
    height: 150px;
    margin-top: -37px;
}
.border-radius-footer
{
    border-radius: 10px 10px 0 0;
}
 .dialog
    {
        padding: 80px 110px;
        width: 1024px;
    }
    .dialog p
    {
        margin: 20px 0 45px;
        font-size: 17px;
        line-height: 25px;
    }
    .dialog .title
    {
        font-size: 26px;
    }
    #img-contacts
    {
        display: block;
        width: 93%;
    margin: auto;
  
    }
    #inner-modal
    {
        width: 920px;
      padding: 60px 65px;
    }
    #inner-modal h5
    {
        font-size: 26px;
    }
    #inner-modal p
    {
        font-size: 17px;
        margin: 27px auto 27px;
    }
    #btn-close-modal
    {
        width: 260px;
        margin: auto;
    }

}
@media only screen and (min-width:1860px)
{
    .padding-block
    {
        padding: 0;
    }
    .btn.large
    {
        width: 200px;
    }
    header
    {
        height: 120px;
        width: 1420px;
        left: calc( (100vw - 1420px) / 2);
    }
    #logo-header
    {
        width: 170px;
        margin-left: 50px;
    }
     #nav-menu a:link, #nav-menu a:visited 
     {
    font-size: 19px;
  }
  #nav-menu ul 
  {
    gap: 33px;
  }
    #jt
    {
        min-height: 90vh;
        padding-top: 100px;
    }
     #jt h1 
     {
   font-size: 66px;
    line-height: 68px;
    text-wrap: balance;
  }
  #jt p
  {
    font-size: 24px;
    margin: 27px auto 40px;
    line-height: 34px;
  }
  .btn 
  {
    height: 60px;
    font-size: 18px;
  }
  .btn.link.left
  {
    padding-left: 30px;
  }
 #row-loghi-ujt {
    padding: 70px 0;
  }
  section, footer
  {
    padding: 140px 0;
  }
  section h2 
  {
    font-size: 50px;
  }
   section h3
   {
    font-size: 22px;
    line-height: 31px;
  }
   p {
    font-size: 17px;
    line-height: 28px;
  }
  #btn-service-parag
  {
    margin-top: 40px;
  }
  .box-service 
  {
    padding: 90px 80px 90px 55px;
  }
  .box-service h3 
  {
    font-size: 28px;
  }
   .icon-service 
   {
    font-size: 82px;
    margin-right: 20px;
    margin-top: -22px;
  }
  .content-section 
  {
    margin-top: 70px;
  }
  section h3.desc-app {
    font-size: 36px;
    margin-bottom: 65px;
  }
   #row-btn-slide-desc-app h4
   {
    font-size: 22px;
    padding-bottom: 17px;
  }
  .btn-slide-desc-app.active .index-desc 
  {
    height: 5px;
  }
   .row#row-slide-desc-app 
   {
    margin-top: 40px;
  }
   #box-slide-desc-app .icon-desc
   {
    font-size: 38px;
    margin-top: -6px
  }
  #box-slide-desc-app li
  {
    margin-bottom: 35px;
  }
  .box-review
  {
    padding: 80px 70px;
  }
 
  .box-contacts
  {
    padding: 90px 95pxs;
  }
  #info-contact h3 {
    font-size: 32px;
  }
  #form-contact {
    padding: 110px 100px;
  }
  #info-contact h4
  {
    font-size: 20px;
    margin-bottom: 9px;
  }
  .input, .textarea
  {
    height: 55px;
    padding-left: 25px;
  }
  .textarea
  {
      height: 110px;
  }
   #form-contact #icon-ident 
   {
    right: -65px;
    top: -80px;
    font-size: 90px;
  }
   #footer-data 
   {
    margin-top: 110px;
    padding: 50px 0;
  }
   #logo-footer
   {
    width: 200px;
    margin-bottom: 10px;
  }
  #img-section-app
{
    width: 95%;
}
.border-radius
{
    border-radius: 4px
}
.border-radius-box
{
     border-radius: 5px
}
.border-radius-header
{
    border-radius: 0 0 14px 14px;
}
#footer-data img
{
    margin-right: 70px;
}
#footer-data p
{
    padding-left: 70px;
}
.border-radius-footer
{
    border-radius: 14px 14px 0 0;
}
 #sep-footer-data
 {
    margin-top: -30px;
  }
  .dialog
    {
        padding: 85px 115px;
        width: 1080px;
    }
    .dialog p
    {
        margin: 25px 0 50px;
    }
    .dialog .title
    {
        font-size: 27px;
    }
    #img-contacts
    {
        width: 90%;
  
    }
    
    #box-slide-desc-app li 
    {
    gap: 12px;
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 32px;
  }


}





/*################################ loading ###############*/

#loading
{
    display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: var(--color-gray-light);
  margin: 0;
  z-index: 99;
  position: fixed;
  width: 100vw;
  opacity: 1;
}
#loading.out
{
    transform: scale(0);
    opacity: 0;
    transition: opacity 500ms ease-out, transform 50ms  ease-out 600ms;
}
.erminio-outline
{
    width: 180px;
    height: 60px;
}
.erminio-outline text
{
    font-size: 64px;
    fill: none;
    stroke: var(--color-sec);
    stroke-width: 2.2;
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    
    letter-spacing: 1px
}
.erminio-outline text.animation
{
    animation: drawAndFill 1s ease-in-out forwards;
}

@keyframes drawOutline
{
    0%   
    {
        stroke-dashoffset: 400;
        opacity: 0.4;
    }
    50%  
    {
        opacity: 1;
    }
    100% 
    {
        stroke-dashoffset: 0;
        opacity: 0.4;
    }
}

@keyframes drawAndFill
{
    0%   
    {
        stroke-dashoffset: 400;
        fill: transparent;
    }

    100% 
    {
        fill: var(--color-sec);;
        stroke-dashoffset: 0;
    }
}

@media only screen and (min-width:1024px)
{
    .erminio-outline
    {
        width: 210px;
        height: 70px;
    }
}
@media only screen and (min-width:1420px)
{
    .erminio-outline
    {
        width: 270px;
        height: 90px;
    }
}
@media only screen and (min-width:1860px)
{
    .erminio-outline
    {
        width: 300px;
        height: 100px;
    }
}




