* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-decoration: none;
    transition: 0.3s;
}
html {
    scroll-behavior: smooth;
	scroll-padding-top: 30px;
}
body {
    font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
    color: #333;
    background-color: #e3e6ec;
}
.profile p {
    line-height: 27px;
    color: #43484D;
    
}
#profile p{
    margin: 15px 0;
}
.profile h2 {
	
	font-size:20px;
    margin-bottom: 7px;
}
.profile  h3 {
    margin-bottom: 15px;
    font-size: 16px;
}
img {
    max-width: 100%;
}
main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 2% 5%;
    min-height: 100vh;
}
.left {
    flex: 0 0 30%;
}
.right {
    flex: 0 0 70%;
}
.left * {
    margin-bottom: 5px;
}

.right h2 {
    font-size: 20px;
	
}
.left h2{
    font-size: 18px;
}
.left div {
    background-color: #fff;
    margin: 20px;
    padding: 20px;
    border-radius: 10px;
}
.right div {
    background-color: #fff;
    margin: 20px;
    padding: 30px;
    border-radius: 10px;
}
.dp {
    border-radius: 50%;
    padding: 40px;
    padding-bottom: 20px;
    padding-top: 30px;
}
.profile-card {
    text-align: center;
}
.profile .row {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
}
.profile .col {
    flex: 1 1 250px;
    margin: 10px;
    padding: 15px;
}
.profile nav a {
    display: block;
    color: #43484D;
    padding: 0.75rem 1.25rem;
    background-color: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, .125);
    transition:0.6s;
}
.profile nav a:hover {
    color: blue;
	
}
.profile nav a span{
    display: flex;
    align-items: center;
    color: #222;font-weight: bold;
}
.profile nav svg{
    margin-right: 8px;
}
.profile ul{
    margin: 15px 0;
}
.profile li {
    padding: 5px;
    margin-left: 20px;
	list-style-type: disc;
	list-style-position: outside;
    line-height: 27px;
}
.top {
    position: fixed;
    right: 20px;
    bottom: 30px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #03a84e;
    color: #fff;
    border-radius: 50%;
}

.feather-facebook{
    color: #007bff;
}
.feather-instagram{
    color: #dc3545;
}
.profile details > summary {
   display: list-item;
 font-size:16px;
    
    font-weight: bold;
}
.profile  details > summary::-webkit-details-marker {
   display: list-item;
   
}

.fa-solid, .fa-brands{
    margin-right: 10px;
}
.fa-envelope{color: gold;}
.fa-globe{color: blue;}
.fa-facebook-square{color: #1877f2;}
.fa-twitter{color: #1da1f2;}
.fa-instagram-square{color: #fd1d1d;}
.fa-linkedin{}
.fa-youtube{color:red;}


@media screen and (max-width:500px) {
	main {
   
    padding: 2% 2%;
  
}

.profile h2 {
	
	font-size:18px!important;;
    margin-bottom: 15px;
}
    .left {
        flex: 1 1 100%;
    }
    .right {
        flex: 1 1 100%;
    }
	.profile h3 {
        font-size: 16px;
}
.left div, .right div{
    margin-left: 0;
    margin-right: 0;
}
.top {
display:none;
}
}
@media screen and (min-width:501px) and (max-width:800px) {
    .left {
        flex: 1 1 100%;
    }
    .right {
        flex: 1 1 100%;
    }
}
