* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: 'Lato', sans-serif;
}

#calender h3 {
  font-size: 22px;
  font-weight: bold;
  padding: 5px;
  width: 220px;
  background-color: rgba(255, 255, 255, 0.39);
  border-bottom: 1px solid red;
  margin-left: 30px;
}

#main_section, #calender {
  width: 100%;
  height: 100%;
  max-height: auto;
  background-image: url(../../image/contact_main_image.jpg);
  background-size: cover;
}

#calender iframe {
  width: 600px;
  height: 400px;
  margin: 20px;
}

#calender iframe .mv-dayname, #calender iframe .st-bg, #calender iframe .st-dtitle {
  color: red;
  background-color: red;
}

#calender iframe #element {
  background-color: #24ce27;
}

#main_section {
  padding-top: 85px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

#contact_form {
  max-height: 310px;
  width: 380px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border: 1px solid #262626;
  border-radius: 2px;
  padding: 20px;
}

#contact_form #nom, #contact_form #lastname, #contact_form #email, #contact_form #phone {
  height: 26px;
  max-width: 1fr;
  padding: 5px;
  font-size: 14px;
  border: 0.1px solid black;
  border-radius: 3px;
}

#contact_form #nom, #contact_form #email {
  margin-right: 5px;
}

#contact_form #message {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  padding: 5px;
  resize: none;
  font-size: 14px;
}

#contact_form #button {
  margin-top: 18px;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
  height: 30px;
  background-color: #262626;
  color: white;
  border: none;
  font-size: 16px;
  cursor: pointer;
}

#right_box {
  height: auto;
}

#right_box #social_media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#right_box #social_media p {
  font-size: 22px;
  font-weight: bold;
  margin-right: 15px;
  margin-left: 20px;
}

#right_box #social_media a {
  margin-top: 0px;
  margin-left: 10px;
}

#right_box #social_media img {
  width: 40px;
}

#buttom_logo {
  margin-top: 90px;
  width: 400px;
  -webkit-animation: logo_animation;
          animation: logo_animation;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
}

@media screen and (max-width: 1280px) {
  #buttom_logo {
    display: block;
    margin: 0px;
    width: 400px;
    -webkit-animation: logo_animation;
            animation: logo_animation;
    -webkit-animation-duration: 2s;
            animation-duration: 2s;
  }
  #right_box {
    margin-top: 50px;
  }
  #contact_form {
    gap: 10px;
  }
}

@-webkit-keyframes logo_animation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes logo_animation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@media screen and (max-width: 500px) {
  #contact_form {
    width: 95%;
  }
  #contact_form input {
    width: 100%;
  }
  #buttom_logo {
    width: 300px;
  }
}

@media screen and (max-width: 600px) {
  #calender iframe {
    width: 400px;
    height: 800px;
    margin: 20px;
  }
}

@media screen and (max-width: 400px) {
  #calender iframe {
    width: 300px;
    height: 800px;
    margin: 20px;
  }
}
/*# sourceMappingURL=style.css.map */