@import url('https://fonts.googleapis.com/css?family=Raleway&display=swap%27');

h1{
    color:white;
    text-align: center;
    font-size: 700%;
}

h3{
    color:white;
    text-align:center;
}

.boxhead0 a{
    color: rgb(242, 102, 25);
    text-decoration: underline;
}

h4{
    color:white;
    text-align:center;
}
a{
    color:white;
    text-decoration: none;
}

a:hover{
    color:white !important;
}

.menu * {
    box-sizing: border-box;
}

.menu{
    margin-top: 4%;
    margin-bottom: 8%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    left: 0;
    box-sizing: border-box;
}
.menu a{
    padding: 0.5em 0;
    color: rgba(255, 255, 255, 0.5);
    position: relative;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
    list-style: outside none none;
    padding: 0;
}

.menu a:before,
.menu a:after {
  position: absolute;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}

.menu a:after {
    left: 0;
    top: 0;
    padding: 0.5em 0;
    position: absolute;
    content: attr(data-hover);
    color: #ffffff;
    white-space: nowrap;
    max-width: 0%;
    overflow: hidden;
}
.menu a:hover:before, .menu .current a:before {
    opacity: 1;
    width: 100%;
}
.menu a:hover:after,
.menu .current a:after {
    max-width: 100%;
}

.boxhead{
    font-size: 200%;
    width: fit-content;
    flex-direction: row;
    text-decoration: none;
}
.boxhead1:hover{
    color:white !important;
}
.boxhead2:hover{
    color:white !important;
}
.dropdown{
    visibility: hidden;
    position: fixed;
    z-index: -1;
}

.logo1{
    grid-row-start: 1;
    grid-row-end: 1;
    text-align: center;
}
.imglogo1{
    height: 100px;
    width: 230px;
}

#background-video {
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: -1;
    }

.butto{
    position: relative;
    height: 500px;
    position: absolute;
    margin-top:4%;
    left: 50%;
    transform: translateX(-50%);
}
.button-visite {
        font-weight: bold;
        font-size: 180%;
        padding: 0.6em 2em;
        border: none;
        outline: none;
        height: 100px;
        color: black;
        background: white;
        cursor: pointer;
        position: relative;
        z-index: 0;
        border-radius: 10px;
        user-select: none;
        -webkit-user-select: none;
        touch-action: manipulation;
      }
      
      .button-visite:before {
        content: "";
        background: linear-gradient(
          45deg,
          #ff0000,
          #ff7300,
          #fffb00,
          #48ff00,
          #00ffd5,
          #002bff,
          #7a00ff,
          #ff00c8,
          #ff0000
        );
        position: absolute;
        top: -2px;
        left: -2px;
        background-size: 400%;
        z-index: -1;
        filter: blur(5px);
        -webkit-filter: blur(5px);
        width: calc(100% + 4px);
        height: calc(100% + 4px);
        animation: glowing-button-85 20s linear infinite;
        transition: opacity 0.3s ease-in-out;
        border-radius: 10px;
      }
      
      @keyframes glowing-button-85 {
        0% {
          background-position: 0 0;
        }
        50% {
          background-position: 400% 0;
        }
        100% {
          background-position: 0 0;
        }
      }
      
      .button-visite:after {
        z-index: -1;
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background: white;
        left: 0;
        top: 0;
        border-radius: 10px;
      }
