@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;500;600;700&display=swap');

html {
  position: relative;
  overflow-x: hidden !important;
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #6D6E70;

}

p{
	margin: 0;
	padding: 0;
}

.wrapper {
  width: 100%;
  width: 100%;
  height: auto;
  min-height: 100vh;
  padding: 20px 20px;
  display: flex;  

}

@media screen and (max-width: 768px) {
  .wrapper {
    height: auto;
    min-height: 100vh;
    padding-top: 20px;
  }
}

.profile-card {
  width: 100%;
  min-height: 460px;
  margin: auto;
  box-shadow: 0px 8px 60px -10px rgba(13, 28, 39, 0.6);
  background: #fff;  
  max-width: 662px;
  position: relative;
  padding: 20px;
  background-image: url('../images/background-carteira.jpg');
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
}

.profile-card-top{
	display: flex;
	flex-wrap: wrap;
    width: 100%;
    
}

.profile-card-picture{
	margin-top: 15px;
}

.profile-card-picture-img{
	background: #E7E7E8;
	width: 180px;
	height: 239px;
	overflow: hidden;
	position: relative;
	border: 3px solid #539159;
}

.profile-card-picture-img img{
	
	position: absolute;
	left: 50%;
	top: 50%;
	height: 100%;
	width: auto;
	-webkit-transform: translate(-50%,-50%);
	  -ms-transform: translate(-50%,-50%);
	      transform: translate(-50%,-50%);
}

.profile-card-data{
	width: 71%;
	padding: 15px;
	padding-right: 0px;
}

.profile-card-data-logo{
	display: flex;
	flex-wrap: nowrap;
	margin-bottom: 15px;
}

.profile-card-data-logo-img img{
	max-height: 70px;
}

.profile-card-data-logo-txt{
	margin-left: 15px;
	margin-top: 7px;
}

.profile-card-data-logo-txt p{
	margin: 0;
	padding: 0;
	text-transform: uppercase;
}

.profile-card-data-logo-txt-1{
	font-weight: 200;
}

.profile-card-data-logo-txt-2{
	font-weight: 700;
	font-size: 16px;
}

.profile-card-data-logo-txt-3{
	font-weight: 700;
	font-size: 24px;
}

.profile-card-data-client-title{
	font-size: 12px;
	font-style: italic;
	font-weight: 500;
	padding-left: 10px;
}

.profile-card-data-client-subtitle{
	font-size: 14px;
	font-weight: 700;
	padding: 5px 10px 5px 10px;
	background: #F2F3F3;
	border: 1px solid #A8AAAC;
	border-radius: 25px;
}

.profile-card-data-client-line{
	display: flex;
	flex-direction: column;
	margin-bottom: 10px;
}

.profile-card-data-client-line-col{
	width: 50%;
}

.f-col{
	display: flex;
  	flex-flow: row wrap;
  	justify-content: space-between;
}

.f-col .profile-card-data-client-line-col:nth-child(1){
	width: calc(50% - 10px);
}

.f-col .profile-card-data-client-line-col:nth-child(2){
	width: calc(50% - 10px);
}

.profile-card-bottom-content{
	min-height: 250px;
	position: relative;
	margin-bottom: 35px;
  padding-bottom: 45px;
}

.profile-card-bottom-content-title{
	text-align: center;
    font-size: 20px;
    margin-top: 0px;
    font-weight: 600;
    position: relative;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.profile-card-bottom-content-title::before{
	content: '';
    z-index: 2;
    width: 10%;
    bottom: -13px;
    left: 0;
    margin: auto;
    right: 0;
    border-radius: 0;
    position: absolute;
    background: #539159;
    height: 5px;
}


.profile-card-bottom-content-subtitle{
	text-align: center;
    font-size: 9px;
    margin-top: 0px;
    font-weight: 200;
    position: relative;
    margin-bottom: 30px;
    text-transform: uppercase;
    position: absolute;
    bottom: -51px;
    left: 0;
    right: 0;
}

.profile-card-bottom-content-subtitle::before{
	content: '';
    z-index: 2;
    width: 35%;
    top: -13px;
    left: 0;
    margin: auto;
    right: 0;
    border-radius: 0;
    position: absolute;
    background: #6D6E70;
    height: 1px;
}

.profile-card-bottom-content-subtitle img{
	height: 45px;
    position: absolute;
    left: 0;
    right: 0;
    width: 98px;
    margin: 0 auto;
    top: -50px;
}

.profile-card-bottom-content-left-line-top{
	position: absolute;
	background: #539159;
	height: 3px;
	width: 30%;
	top: 9px;
	left: 0;
}

.profile-card-bottom-content-right-line-top{
	position: absolute;
	background: #539159;
	height: 3px;
	width: 30%;
	top: 9px;
	right: 0;
}

.profile-card-bottom-content-left-line-bottom{
	position: absolute;
	background: #539159;
	height: 3px;
	width: 30%;
	bottom: 0px;
	left: 0;
}

.profile-card-bottom-content-right-line-bottom{
	position: absolute;
	background: #539159;
	height: 3px;
	width: 30%;
	bottom: 0px;
	right: 0;
}

.profile-card-bottom-list{
	margin: 0;
	padding: 10px;
}

.profile-card-bottom-list li{
	list-style-type: disc;
	line-height: 30px;
	font-weight: 500;
	margin-left: 15px;
}

.profile-card-bottom-list li:nth-child(odd) {         
  clear:both;                
  float:left;                
  width:50%;                 
}

.assinatura{
	font-size: 12px;
    color: #a09d9d;
    text-align: center;
    margin-top: 5px;
}

.logo-instituto{
	text-align: center;
}

.logo-instituto img{
	width: 120px;
}

.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor;
}


.profile-card-social {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.profile-card-social__item {
  display: inline-flex;
  width: 55px;
  height: 55px;
  margin: 15px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #009001;
  box-shadow: 0px 7px 30px rgba(43, 98, 169, 0.5);
  position: relative;
  font-size: 21px;
  flex-shrink: 0;
  transition: all .3s;
}
@media screen and (max-width: 768px) {
  .profile-card-social__item {
    width: 50px;
    height: 50px;
    margin: 10px;
  }
}
@media screen and (min-width: 768px) {
  .profile-card-social__item:hover {
    transform: scale(1.2);
  }
}
.profile-card-social__item.facebook {
  background: linear-gradient(45deg, #3b5998, #0078d7);
  box-shadow: 0px 4px 30px rgba(43, 98, 169, 0.5);
}
.profile-card-social__item.twitter {
  background: linear-gradient(45deg, #1da1f2, #0e71c8);
  box-shadow: 0px 4px 30px rgba(19, 127, 212, 0.7);
}
.profile-card-social__item.instagram {
  background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
  box-shadow: 0px 4px 30px rgba(120, 64, 190, 0.6);
}
.profile-card-social__item.behance {
  background: linear-gradient(45deg, #1769ff, #213fca);
  box-shadow: 0px 4px 30px rgba(27, 86, 231, 0.7);
}
.profile-card-social__item.github {
  background: linear-gradient(45deg, #333333, #626b73);
  box-shadow: 0px 4px 30px rgba(63, 65, 67, 0.6);
}
.profile-card-social__item.codepen {
  background: linear-gradient(45deg, #324e63, #414447);
  box-shadow: 0px 4px 30px rgba(55, 75, 90, 0.6);
}
.profile-card-social__item.link {
  background: linear-gradient(45deg, #d5135a, #f05924);
  box-shadow: 0px 4px 30px rgba(223, 45, 70, 0.6);
}
.profile-card-social .icon-font {
  display: inline-flex;
}

.profile-card-data-logo-txt-2 br{
	display: none;
}


@media screen and (max-width: 768px) {
  .profile-card-top {
    justify-content: center;
  }

  .profile-card-data{
  	width: 100%;
  	padding: 0;
  	padding-top: 25px;
  }

  .profile-card-data-logo-txt-2 br{
	display: block;
  }

  .profile-card-data-logo-txt{
  	margin-top: 0;
  }

  .profile-card-data-logo{
  	justify-content: center;
  }

  .profile-card-picture-img{
  	width: 150px;
  	height: 200px;
  }

  .profile-card-bottom-content-left-line-top, 
  .profile-card-bottom-content-right-line-top, 
  .profile-card-bottom-content-left-line-bottom,
  .profile-card-bottom-content-right-line-bottom
  {
  	width: 20%;
  }

  .profile-card-bottom-list li:nth-child(odd) {
    clear: both;
    float: unset;
    width: 100%;
  }

  .profile-card-bottom-content {
    min-height: 50px;
    position: relative;
    margin-bottom: 35px;
    padding-bottom: 35px;
  }

  .profile-card-data-logo-img img{
    max-height: 94px;
  }


}


@media screen and (max-width: 360px) {

  .profile-card-bottom-content-left-line-top, 
  .profile-card-bottom-content-right-line-top, 
  .profile-card-bottom-content-left-line-bottom,
  .profile-card-bottom-content-right-line-bottom
  {
    width: 15%;
  }

  .profile-card-picture-img {
    width: 120px;
    height: 150px;
  }



}
