* {
    margin: 0;
    padding: 0;
}
body {
    background: rgb(233, 233, 142);
}
ul {
    list-style-type: none;
}
a {
    text-decoration: none;
}
/*###################### style header ##############*/
#header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1rem auto;
    width: 70%;
}

/*######### style navbar-list1 ##########*/
#header .header-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10rem;
}
#header .navbar-list1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}
#header .navbar-list2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
/*######### style nav-link ##########*/
#header .navbar-list1 .nav-link {
    color: rgb(65, 47, 82);
    font-size: 1rem;
}
#header .navbar-list1 .nav-link:hover {
    color: blueviolet;
    text-decoration: underline;
}
/*######### style nav-icon ##########*/
#header .navbar-list2 .nav-icon {
    font-size: 22px;
}
/*######### style profile ##########*/
#header .profile {
    font-weight: bold;
    font-family: vazir;
    font-size: 2rem;
}
/*############## style main ###########*/
.contioner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 35rem;
    width: 70%;
    margin-top: 7rem;
}
/*############## style left-section text1  ###########*/
.contioner .left-section .left-list .text1 {
    color: rgb(141, 53, 224);
    font-size: small;
    font-weight: bold;
    transform: translateX(13rem);
}

.contioner .left-section .left-list .title {
    font-size: 36px;
    transform: translateX(13rem);
}

/*############## style left-section text2  ###########*/
.contioner .left-section .left-list .text2 {
    color: rgb(64, 43, 83);
    font-size: 13px;
    font-weight: bold;
    margin-top: 1rem;
    transform: translateX(13rem);
}

.contioner .left-section .link {
    display: inline-block;
    background: rgb(167, 223, 15);
    padding: 8px 12px;
    border: 2px solid grey;
    transform: translateX(13rem);
    margin-top: 1rem;
    transition: all 0.3s ease;
    
}
.contioner .left-section .link:hover {
    background: rgb(137, 163, 72);
    color: white;
}
/*############## style right-section  ###########*/
.contioner .right-section .right-list {
    position: relative;
}

.contioner .right-section .icon1 {
    position: absolute;
    width: 30px;
    transform: translate(380px, -31px);
    font-weight: bold;
}
.contioner .right-section .icon2 {
    position: absolute;
    width: 30px;
    transform: translate(380px, -10px);
    font-weight: bold;
}
.contioner .right-section .icon3 {
    position: absolute;
    width: 30px;
    transform: translate(366px, -21px);
    font-weight: bold;
}
.contioner .right-section .icon {
    position: absolute;
    width: 30px;
    transform: translate(180px, 250px);
    font-weight: 400;
    
}
/*############## style right-img ###########*/
.contioner .right-section .right-banner-img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 1px solid red;
    transition: all 0.3s ease;
    transform: translateX(10rem); 
}
/*##################### style footer ###################*/
.main-footer {
    position: fixed;
    bottom: 0;
    left: 35rem;
    display: inline-block;
    flex-direction: column;
    min-height: 4vh;
    color: rgb(63, 55, 55);
}

.main-footer .copy-right-text .footer-link {
    color: blueviolet;
    transition: all 0.3s ease;
} 
.main-footer .copy-right-text .footer-link:hover {
    text-decoration: underline;
    color: black;
} 

 

 