/*RESET & BASE*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
  -webkit-tap-highlight-color: transparent;
  text-decoration: none;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
  background: #f5f5f5;
  min-height: 100vh;
  overflow-x: hidden;
  animation: fondu-entree 0.3s ease;
  transition: opacity 0.3s ease;
}
@keyframes fondu-entree {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/*HEADER*/
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(10px, 3vw, 20px) clamp(12px, 4vw, 20px);
  width: 100%;
  margin-bottom: 10px;
}

.profil {
  /* border: 2px solid; */
  margin-top: 10px;
  text-align: center;
  line-height: 1.5;
  padding: clamp(10px, 3vw, 20px) clamp(12px, 4vw, 20px);
}

.profil img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 100%;
}
.profil p {
  font-weight: 500;
}

.info {
  margin-top: 20px;
  padding: clamp(10px, 3vw, 20px) clamp(12px, 4vw, 20px);
  font-weight: 600;
}

/* FORM  */
.form {
  padding: clamp(10px, 3vw, 20px) clamp(12px, 4vw, 20px);
  display: inline-block;
  width: 100%;
  height: auto;
  flex-direction: column;
}
.form .contact {
  display: block;
  flex-direction: column;
  margin-bottom: 10px;
}
.form .contact h3 {
  font-size: 13px;
  margin-bottom: 5px;
}

.form .contact .con_card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgb(226, 226, 226);
  padding: 20px;
  border-radius: 10px;
}

.form .contact .con_card .left {
  display: flex;
  justify-content: center;
  align-items: center;
}
.form .contact .con_card .left img {
  width: 20px;
  height: 20px;
  object-fit: cover;
}
.form .contact .con_card .left .numb {
  margin-left: 10px;
  line-height: 1.5;
}
.form .contact .con_card .left .numb p:first-child,
.p {
  font-weight: 400;
  font-size: 13px;
  color: rgb(63, 63, 63);
}
.form .contact .con_card .left .numb p {
  font-size: 10px;
  font-weight: 400;
  color: gray;
}

.form .contact .con_card .right {
  border-radius: 100%;
  width: 20px;
  height: 20px;
  background: rgba(184, 255, 184, 0.178);
  display: flex;
  align-items: center;
  justify-content: center;
}
.form .contact .con_card .right .cercle {
  width: 10px;
  height: 10px;
  background: rgba(69, 194, 125, 0.473);
  border-radius: 100%;
}
.card  {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top:20px ;
}

.card .btn {
  width: 100%;
  margin: clamp(10px, 3vw, 16px) clamp(12px, 4vw, 20px);
  text-align: center;
  padding: clamp(10px, 3vw, 10px);
  font-size: clamp(13px, 3.5vw, 16px);
  background-color: red;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.3px;
  transition: opacity 0.2s;
}
.btn a { 
  color: #fff;
 }


