@font-face {
    font-family: fontEdil;
    src: url(/Conthrax-SemiBold.otf);
}

*{
    margin: 0;
    padding: 0;
    user-select: none;
   
}
::-webkit-scrollbar {
    width: 1px;}
  

body{
    width: 100%;
    height: auto;
    
}
.hamburgerMenu{
    display: none;
}
.cntMenu{
    display: none;
}
.navBar{
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    height: 10vh;
    background-color: gray;
    position: sticky;
    top: 0;
    border-bottom: solid 2px #1f676b;
}
.logoBox{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    height: 100%;
    width: 33.3%;
    .logoImg{
        height: 100%;
        filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.672));
    }
    h1{font-family: fontEdil;
        color: white;
        font-size: 0.8vw;
         filter: drop-shadow(2px 2px 4px rgb(0, 0, 0));
    }
}
.menuNav{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 33.3%;
    height: 100%;
    gap: 20px;
    a{
        font-family: fontEdil;
        text-decoration: none;
        color: #ffffff;
        filter: drop-shadow(2px 2px 2px #1f676b);
        font-size: 0.9vw;
    }
    a:hover{
        color: #1f676b;
    }
}
.btnBox{
    width: 33.3%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    a{text-decoration: none;}
}
.callBtn{
    background-color: #1f676b;
    width: 98%;
    height: 30%;
    padding: 8px 0px;
    border-radius: 15px;
    color: white;
    font-family: fontEdil;
    border-color: #ffffff;
    border-width: 4px;
    filter: drop-shadow(1px 1px 2px black);
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 0.8vw;
}
.callBtn:hover{
    background-color: #ffffff;
    color: #1f676b;
    border-color: #1f676b;
    transition: all 300ms ease-in-out;
    cursor: pointer;
}
.sectionOne{
    width: 100%;
    height: 90vh;
}
.heroImage{
    width: 100%;
    height: 100%;
    background-color: gray;
}
.boxImg{
    position: relative;
    width: 100%;
    height: 85%;
    display: flex;
    background-color: #ffffff;
    justify-content: center;
    align-items: center;
    background-image: url(/img/SfondoOne.jpg);
    background-size:contain;
    background-position: center;
    background-repeat: no-repeat;
}
.heroTextUp{
    background-color: rgba(128, 128, 128, 0.764);
    position: absolute;
    font-family: fontEdil;
    text-transform: uppercase;
    bottom: 10%;
    font-size: 0.9vw;
    color: #ffffff;
    border-radius: 10px;
    padding: 10px;
    p{
      filter: drop-shadow(2px 2px 6px black)  
    }
}
.heroText{
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 15%;
    font-family: fontEdil;
    font-size: 2vw;
    filter: drop-shadow(2px 2px 6px black);
}
.titlePartner{
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: fontEdil;
    margin-top: 5%;

}
.secPartner{
    width: 100%;
    height: 20vh;
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.footerContainer{
    width: 100%;
    height: 25vh;
    background-color: #1f676b;
    display: flex;
    border-top: 8px solid gray;
    border-bottom: 8px solid gray;

}
.sizeFoot{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 33.3%;   
    height: 100%;
    font-family: fontEdil;
    color: white;
    text-align: center;
    p{
        width: 90%;
        word-spacing: 2px;
        text-align: center;
        letter-spacing: 2px;
        font-size: 0.9vw;
        text-transform: uppercase;
        user-select: text;
    }
    a{
        cursor: pointer;
        text-decoration: underline;
        color: white; 
        width: 90%;
    }
}
.footSecTwo{
    border-right: solid 3px gray;
    border-left: solid 3px gray;
}
.footSecOne{
    flex-direction: column;
    justify-content: space-around;
}

@keyframes animBtn {
  0%   {filter: drop-shadow(1px 1px 2px black);}
  25%  {filter: drop-shadow(1px 1px 2px black);}
  50%  {filter: drop-shadow(1px 1px 2px black);}
  75%  {filter: drop-shadow(1px 1px 2px black);}
  100% {filter: drop-shadow(1px 1px 2px black);}
}

@keyframes buttonlgt {
    0% {
        border-color: #fca817;
    }

    50% {
        border-color: #fbff00;
        box-shadow: 0px 0px 15px #fbff00;
    }

    100% {
        border-color: #fca817;
    }
}