/* @font-face {
  font-family: "Gfont";
  src: url("../fonts/gfont.otf");
} */

:root
{
  --my-blue: #3A6688;
  --button-bg: #3A6688;
  --button-text-color: #fff;
  --baby-blue: #f8faff;
  --facebook-color: #4867aa;
  --insta-color: #ff005d;
  --linkedin-color: #027bb6;
  --padding-bottom: 20px;
  --top-variable: 0;
  --bg-width: 160%;
  
}


*
{
    box-sizing: border-box;
}

body
{
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  /* font-family: 'Raleway', sans-serif; */
  font-family: 'Helvetica', sans-serif;
  font-weight: 300;
  /* font-family: 'Poppins', sans-serif; */
  width: 100%;
  /* min-height: 1000px; */
  /* min-height: 100vh; */

}

.page
{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: initial;

  scroll-behavior: smooth;
  overflow-x: hidden; 
  
}

.about-container
{
  
  width: 100%;

  padding: 0 50px;

  display: flex;
  justify-content: center;

}


.about-container .photo-right
{
  
  position: relative;
  width: 40%;
  /* height: 100%; */
  max-width: 410px;
  /* max-height: 100vh; */
  margin:  0 25px;
  border: 1px solid #3d3d3d;
  overflow: hidden;
}

.about-container .photo-right img
{
  position: absolute;
  top: 0;
  right: 50%;
  transform: translateX(50%);

  /* right: 0; */

  /* width: 100%; */
  height: 100%;
  /* object-fit: cover; */

}

.about-container .me-description
{
  position: relative;
  /* top: -210px;
  left: 0; */
  width: 95%;
  max-width: 600px;
  height: 100%;
  display: flex;
  flex-direction: column;
  /* justify-items: center; */
  margin: 0 25px;
  /* background-color: #fff; */
}

.about-container .me-description h2
{
  text-align: center;
  font-size: 55px;
  /* font-size: max(45px, 4vw); */
  color: #000;
  text-shadow: 1px 1.5px 1px rgba(0, 0, 0, 0.4);
}

.about-container .me-description p
{
  text-align: justify;
  line-height: 25px;
  margin: 0;
}

.about-container .me-description p.me-me
{
  margin-top: 30px;
}

.about-container .me-description p.me-me a
{
  /* text-decoration: none; */
  color: var(--my-blue);
  font-weight: bold;
  /* color: #000; */
  transition: .2s;
}


.about-container .me-description ul
{
  /* list-style: none; */
  margin: 25px 0;
  padding-left: 20px;
  text-align: justify;
  line-height: 25px;
}

.about-container .me-description p.rappel
{
  font-style: italic;
  font-weight: 300;
}



/* 
section.bouton
{
  align-self: center;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
} */

.myButton {
  font-family: "Poppins", sans-serif;
  
  text-align: center;
  line-height: 32px;

	box-shadow:inset 0px 0px 15px 3px #23395e;

	background-color: var(--my-blue);
	border-radius:42px;
	border:4px solid #ffffff;

	cursor:pointer;
	color:#ffffff;

	font-size:20px;
  font-weight: bold;
	padding:10px 43px;

	text-decoration:none;

	text-shadow: 1px 1px #000000;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.4);
  transition: .4s;
}
.myButton:hover 
{
	background-color: #4980aa;
}

.myButton:hover i{
  color: rgb(255, 59, 59);
	transform: rotate(20deg);
  transition: .2s;
}
.myButton:active {
  transform: scale(0.93);
  box-shadow: none;
}

.myButton i
{
  position: relative;
  top: 2px;
  font-size: 30px;
  margin-left: 5px;
  transition: .4s;
}





@media (min-width: 1300px) {
  
}





@media (max-width: 1000px) {
  .about-container .photo-right
  {
    display: none;
  }
}

@media (max-width: 880px) {
  
}




@media (max-width: 800px) {
  
}

@media (max-width: 700px) {

}


@media (max-width: 650px) {
  
}


@media (max-width: 600px) {

  .about-container
  {
    padding: 0;
  }

}


@media (max-width: 500px) {

}

@media (max-width: 440px) {

  .myButton
  {
    padding: 11px 20px;
    font-size: 16px;
    line-height: 25px;
  }
  
  .myButton i
  {
    /* top: 2px; */
    font-size: 25px;
  }
}