*{
    margin: 0;
}
@font-face {
    font-family: golden;
    src: url(../fonts/golden-beach-font/GoldenbeachpersonaluseBdit-jEgDM.otf);
}
@font-face {
    font-family: love;
    src: url(../fonts/lovheart-font/LovheartPersonalUseItalic-Yz0x4.ttf);
}
@font-face {
    font-family: rosemary;
    src: url(../fonts/rosemarrye-font/RosemarryePersonalUse-MVG7J.ttf);
}
@font-face {
    font-family: sticky;
    src: url(../fonts/sticky_memos/Sticky\ Memos\ Demo.otf);
  }
@font-face {
    font-family: chaising_cars;
    src: url(../fonts/kg_chasing_cars/KGChasingCars.ttf);
}

body{
    font-family: 'Manrope', sans-serif;
    font-size: 1em;
    /*background-color: hsl(248, 53%, 58%);*/
    background-color: hsl(334, 44%, 54%);;
    color: white;
}
header, footer{
    background-color: white;
    padding: 20px 50px;
    color: black;
}
#mainHeader {
    display: flex;
    flex-direction: row;
    justify-content: space-between;

}
.job{
    display: none;
    visibility: hidden;
  }
.emplacement p{
    font-family: love, golden, fantasy,'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;;
    font-size: 2.5em;
    color: peru;
}
.emplacement{
    /* clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);*/
    text-align: center;
    padding: 50px;
    width: 500px;
    color: black;
    font-family: sticky, Verdana, Geneva, Tahoma, sans-serif;
    font-size: .8em;
    /*background-image: radial-gradient(circle, #ca4c4c, #cf4f5d, #d3536e, #d4597f, #d46090, #d95c8f, #df588e, #e4538d, #ef3e75, #f62859, #f71039, #f20b0b); */   
    animation: customLook 4s ease 0s infinite normal none;
}
/* Copy this code after the above code */
@keyframes customLook {
    0% {
      animation-timing-function: ease-out;
      transform: scale(1);
      transform-origin: center center;
    }
  
    10% {
      animation-timing-function: ease-in;
      transform: scale(0.91);
    }
  
    17% {
      animation-timing-function: ease-out;
      transform: scale(0.98);
    }
  
    33% {
      animation-timing-function: ease-in;
      transform: scale(0.87);
    }
  
    45% {
      animation-timing-function: ease-out;
      transform: scale(1);
    }
  }
  
.logo img{
    width: 180px;
    height: 150px;
}
.logo img:hover{
    opacity: 0.6;
}
.menuHeader {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    gap: 25px;
    align-items: center;
}
.menuHeader a {
    text-decoration: none;
    color: black;
}
.menuHeader a:hover {
    font-style: italic;
    cursor: pointer;
}
footer{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.rightFooter {
    display: flex;
    flex-direction: row;
    gap: 20px;
    
}
.rightFooter img{
    width: 50px;
    height: 40px;
}
.rightFooter img:hover{
    opacity: 0.5;
}
#tiktokFooter {
    width: 60px;
    height: 60px;
    position: relative;
    bottom: 10px;
}
.cta {
    display: inline-block;
    background: linear-gradient(#696484, #8788ba);
    width: 300px;
    border-radius: 50px;
    padding: 20px 30px;
    color: white;
    text-decoration: none;
    margin: auto;
    transition: transform 450ms, background-color 300ms 150ms;
}
.cta a {
    text-decoration: none;
    color: white;
    text-align: center;

}
.cta:hover {
    background: linear-gradient(#8e86b5, #acaeed);
    text-decoration: none;
    transform: scale(1.15);
}
.frmContact p{
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 1.2em;
}
form label, input, p {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

h1{
    color: white;
    font-size: 3.5em;
    margin-bottom: 30px;
}
.rdvDate{
    display: inline-block;
  }
.rdvDate input{
    width: 30%;
  }
.jobLabel{
    display: none;
    visibility: hidden;
}

.leftFooter a{
    text-decoration: underline;
    color: black;
}
.leftFooter a:hover{
    font-style: italic;
    color: red;
}
.leftFooter p{
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 1.1em;
}
.copy {
    background-color: white;
    text-align: center;
    color: black;
    padding-bottom: 20px;
}
@media screen and (max-width:1220px ) {
    .menuHeader{
        width: 494px;
    }
    
}
@media screen and (max-width:1070px) {
    h1, h2{
        font-size: 1.5em;
    }
    .emplacement{
        width: 300px;
    }
    .emplacement p{
        font-size: 1.8em;
    }
    header, footer {
        flex-direction: column;
        justify-content: center;
        gap: 30px;
    }
    #mainHeader{
        flex-direction: column;
        align-items: center;
    }
    .menuHeader{
        flex-direction: column;
    }
    footer{
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .cta{
        width: 150px;
    }
}
@media screen and (max-width:480px) {
    body{
      width: 500px;
    }
}