:root{
  --theme:#e84f13;
  --black:#000000;
  --white:#fff;
  --light-black:#333;
  --orange:#ffa500;
  --background:#e8e6e6;
  --primary:red;
  --off-grey:#eeeeee;
  --yellow:#f9d806;
    --light-yellow:#ffee80;
    --black:#130f40;
    --light-color:#666;
    --heaven:#fff;
    --whitesmoke:#eee;
    --box-shadow:0 .5rem 1rem rgba(0,0,0,.1);
    --border:.1rem solid rgba(0,0,0,.1);
}

h2 {
  font-family: "Poppins";
  font-size: 26px;
  margin-bottom: 5px;
}

h3 {
  font-size: 24px;
  font-weight: 500;
  color: rgba(34, 34, 34, 0.5);

  margin-bottom: 10px;
  margin-top: 0px;
}
*h3,
span,
p{
  font-family: 'Nunito', sans-serif;
  margin:0; padding:0;
  box-sizing: border-box;
  text-transform: capitalize;
  outline: none; border:none;
  text-decoration: none;
  transition: all .2s linear;
}

.headers {
  margin-top: 60px;
  text-align: center;
  background-color: var(--off-grey);
  color: var(--black);
  
}

 .headers .description {
  margin-bottom: 10px;
  margin-top: 0px;

}

.profile_container,
.info,
.back {
  margin: 60px 0px 0px;
  max-width: 100%;
  display: flex;
  overflow-x: hidden;
}



.profile_img-LG {
  height: 400px;
  width: 300px;
  border-radius: 40px;

  object-fit: cover;
  object-position: 50% 50%;

  background-position: 40% 50%;
}


.description {
  margin-bottom: 10px;
  margin-top: 0px;

}

.profile_img_section {
  margin-right: 50px;
}

.profile_desc_section {
  display: flex;
  flex-direction: column;

  margin-left: 50px;
}

.interests_item {
  display: inline-block;
  padding: 5px 15px;
  margin-right: 7.5px;
  margin-bottom: 10px;
  line-height: 35px;
  background-color: #e6e6e6;
  border-radius: 5px;

  color: rgba(34, 34, 34, 0.5);
}


@media screen and (max-width: 1000px) {
  .profile_container,
  .info,
  .back {
    margin: 60px 33px 0px;
  }

  .profile_container {
    flex-direction: column;
  }

  .profile_img_section {
    margin: 0 auto;
  }

  .profile_img-LG {
    width: 237px;
    height: 237px;
    border-radius: 100%;
  }

  .flag_wrapper {
  }

  .profile_desc_section {
    margin-left: 0px;
    margin-bottom: 10px;
    margin-top: 0px;
  }

}



















* {
  box-sizing: border-box;
}

body,
html {
  overflow-x: hidden;
}

body {
  margin: 0;
  width: 100%;
  font-family: "Oswald", sans-serif;
  font-size: 12pt;
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Bebas Neue", cursive;
}

a {
  text-decoration: none;
  transition: all 0.5s ease-in-out;
}

a:hover {
  transition: all 0.5s ease-in-out;
}


