@font-face {
    font-family: "myIranYekan";
    font-weight: normal;
    src: url("fonts/iranyekan/woff2/iranyekanwebbold.woff2") format("truetype"),
    url("fonts/iranyekan/woff/iranyekanwebregular.woff") format('woff');
}

@font-face {
    font-family: "myIranYekan";
    font-weight: bold;
    src: url("fonts/iranyekan/ttf/iranyekanwebbold.ttf") format("truetype"),
    url("fonts/iranyekan/woff/iranyekanwebbold.woff") format('woff');
}

@font-face {
    font-family: "myPinar";
    font-weight: normal;
    src: url("fonts/pinar/Pinar-Regular.ttf") format("truetype"),
    url("fonts/pinar/Pinar-Regular.woff2") format('woff2');
}

@font-face {
    font-family: "myPinar";
    font-weight: bold;
    src: url("fonts/pinar/Pinar-Bold.ttf") format("truetype"),
    url("fonts/pinar/Pinar-Bold.woff2") format('woff');
}
@keyframes mymov-main {
    0%{
        background-size: 100%;
    }
    50%{
        background-size: 120%;
    }
    100%{
       background-size: 100%;
    }
}
/*body{*/
/*    background-color: black;*/
/*}*/

*{
    box-sizing: border-box;
    font-family: myIranYekan sans-serif;
    direction: rtl;
    /*font-family: "myIranYekan";*/
}

:root{
    --primaryColor : #cb79e1;
    --secondaryColor: rgba(119, 87, 183, 0.78);
}

a{
    text-decoration: none;
    cursor: pointer;
}

main{
    min-height: 100px;
    /*border: 1px solid black;*/
    background-image: url("../images/main_bg.jpg");
    background-repeat: repeat;
    background-size: 100% 100%;
    animation-name: mymov-main;
    background-position: center;
    animation-iteration-count: infinite;
    animation-duration: 15s;
    background-attachment: fixed;
    /*height: 700px;*/
}

.overlry-top-nav{
    position: fixed;
    /*left: 0;*/
    /*bottom: -100%;*/
    top: 100vh;
    visibility: hidden;
    width: 100vw;
    height: 100vh;
    background-color: white;
    /*display: flex;*/
    /*justify-content: center;*/
    /*align-content: center;*/
    z-index: 20;
    transition: all 0.5s ease-in-out;
}
.closee{
    position: absolute;
    top: 30px;
    left: 60px;
    font-size: 30px;
    transition: all 0.5s;
}

.closee::after{
    content: "";
    display: block;
    position: absolute;
    top: 46%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s;
    background-color: var(--secondaryColor);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    opacity: 0;
    z-index: -1;
}

.closee:hover::after{
    width: 40px;
    height: 40px;
    opacity: 1;
}

.closee:hover{
    color: white;
}


.show{
    top: 0;
    visibility: visible;
}

#container-overlry-top-nav{
    margin: 0 auto;
    width: 60%;
    height: 100%;
    /*border: 1px solid var(--primaryColor);*/
    display: flex;
    justify-content:center;
    align-content: flex-start;
    flex-wrap: wrap;
}

#container-overlry{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-content: flex-start;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 100px;
}

#item-overley-img{
    text-align: center;
    width: 100%;
}

#overlry-top-nav img{
    width: 200px;
    height: 100px;
}

.item-overley{
    width: 40%;
    height: 60px;
    /*border: 1px solid var(--primaryColor);*/
    margin-left: 15px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0 33px;
    background-color: #eae8e8;
    border-radius: 5px;
    transition: all 0.3s;
    position: relative;
}

.item-overley:hover{
    background-color: var(--secondaryColor);
}

.item-overley:hover .icon-overley{
    margin-right: 9px;
    background-color: white;
}

.item-overley:hover .icon-overley i{
    color:#373737;
}

.icon-overley{
    width:16px ;
    height: 16px ;
    border-radius: 50%;
    background-color: #373737;
    display: flex;
    justify-content: center;
    align-items: center;
    /*margin-left: 10px;*/
    position: absolute;
    right: 5px;
    top: 22px;
    transition: all 0.5s;
}

.icon-overley i{
    font-size: 10px;
    color: white;
}

.item-overley p{
    /*margin-right: 100px;*/
    font-family: "myIranYekan";
}

.item-overley:hover p{
    color: white;
}

.container{
    /*border: 1px solid black;*/
    margin: 0 auto;
    width: 80%;
    min-height: 100px;
}

#min-header{
    /*border: 1px solid red;*/
    display: flex;
    justify-content: space-between;
    align-items: center;
}

a#logo-image:link,
a#logo-image:visited{
    display: inline-block;
    /*border: 1px solid green;*/
}

a#logo-image img{
    height: 85px;
}


#top-navigation{
    /*border: 1px solid #ff00be;*/
    display: flex;
    direction: ltr;
}


#top-navigation ul{
    list-style: none;
    margin: 0;
    padding: 0;
}

#top-navigation ul li{
    margin: 0 18px;
    display: inline-block;
}


#top-navigation a{
    color: white;
    font-family: "myIranYekan";
    font-size: 16px;
    position: relative;
    transition: all 0.5s;
    margin-top: 2px;
}

#top-navigation ul li i{
    color: white;
    font-size: 20px;
}


#top-navigation ul li a::after{
    content: "";
    border: 2px solid var(--secondaryColor);
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    top: 25px;
    right: 0;
    transition: all 0.5s;
    border-radius: 50px;
    opacity: 0;
}

#top-navigation ul li a:hover::after{
    opacity: 1;
    border: 2px solid var(--secondaryColor);
    width: 100%;
}


#top-navigation ul li a:hover{
   color: var(--secondaryColor);
}


#body-content{
    /*border: 1px solid #eeeeee;*/
    min-height: 600px;
    text-align: center;
    line-height: 1.3;
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-content: flex-start;
}

#body-content h1{
    text-align: center;
    color: white;
    font-family: "myPinar";
    font-size: 45px;
    margin-top: 10px;
}

#body-content h1 span{
    font-family: "myPinar";
    color: var(--secondaryColor);
}

#body-content h3{
    font-family: "myIranYekan";
    color: white;
    font-size: 25px
}

#body-content h5{
    font-family: "myIranYekan";
    color: rgba(255, 255, 255, 0.53);
    margin: 0;

}

#form-input{
    width: 70%;
    /*border: 1px solid rgb(238, 238, 238);*/
    border-radius: 10px;
    padding: 6px;
    margin: 50px auto 0 auto;
    background-color: rgba(255, 255, 255, 0.11);
}

#input-header{
    font-family: "myIranYekan";
    padding: 8px;
    border-radius: 10px;
    border: none;
    background-color: rgba(255, 255, 255, 0);
    width: calc(100% - 100px);
    color: white;
    outline: none;
}

.s-btn{
    width: 90px;
    padding: 8px;
    border-radius: 10px;
    font-family: "myIranYekan";
    color: white;
    background-color: var(--secondaryColor);
    border: none;
    transition: all 0.3s;
}

.s-btn:hover{
    background-color: var(--primaryColor);
}

#one-section{
    /*border: 1px solid #71388d;*/
    min-height: 600px;
    display: flex;
    justify-content: center;
}

.container-title{
    /*border: 1px solid var(--secondaryColor);*/
    /*display: flex;*/
    /*justify-content: center;*/
    /*align-items: center;*/
    text-align: center;
}
.container-title h5{
    margin-top: 0;
    font-family: "myIranYekan";
    color: gray;
}

.title-section{
    margin-top: 90px;
    font-family: "myPinar";
    color: black;
    position: relative;
    font-size: 35px;
    font-weight: bold;
    /*border: 1px solid black;*/
    min-height: 100px;
    display: inline-block;
}

.title-section::after{
    content: "";
    position: absolute;
    width: 80%;
    height: 4px;
    background-color: var(--secondaryColor);
    /*bottom: -10px;*/
    left: 50%;
    top: 45px;
    transform: translatex(-50%);
    /*border: 2px solid var(--secondaryColor);*/
}

.title-section::before{
    content: "";
    position: absolute;
    width: 40%;
    height: 4px;
    background-color: var(--secondaryColor);
    /*bottom: -10px;*/
    left: 50%;
    top: 55px;
    transform: translatex(-50%);
    /*border: 2px solid var(--secondaryColor);*/
}

#service-body{
    /*border: 1px solid var(--secondaryColor);*/
    width: 100%;
    min-height: 260px;
    display: flex;
    column-gap: 40px;
    flex-wrap: wrap;
    flex-direction: row;
}

.services-section{
    /*border: 1px solid var(--secondaryColor);*/
    width: 10%;
    min-height: 10px;
    flex-grow: 1;
    border-radius: 10px 10px 30px 10px;
    display: flex;
    justify-content: flex-start;
    padding: 20px;
    flex-wrap: wrap;
    flex-direction: column;
    align-content: center;
    align-items: center;
    box-shadow: 0px 0px 15px -7PX black;
    transition: all 0.3s;
    margin-top: 20px;
}

.services-section h3{
    font-family: "myIranYekan";
    margin-bottom: 0;
    font-size: 18px
}

.services-section p{
    font-family: "myIranYekan";
    text-align: center;
    font-size: 11px;
    line-height: 1.6;
    margin-bottom: 0;
    font-weight: bold;
    color: gray;
}

.services-section a{
    font-family: "myIranYekan";
    margin-top: 20px;
    margin-bottom: 0;
    font-size: 15px;
    color: var(--secondaryColor);
}

.services-section:hover {
    background-color: var(--secondaryColor);
    color: white;
    transform: translatey(-10px);
}

.services-section:hover a{
    color: white;
}

.services-section:hover p{
    color: white;
}

.icon-service{
    /*border: 1px solid var(--secondaryColor);*/
    width:80px;
    height:80px;
    border-radius: 8px 10px 50px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: lightgray;
    text-align: center;
    transition: all 0.3s;
}

.services-section:hover .icon-service{
    background-color: white;
    transform: rotateY(180deg);
}

.icon-service i{
    color: var(--secondaryColor);
    font-size: 30px;
}

#two-section{
    min-height:400px;
    background: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),url(../images/bg3.jpg);
    background-repeat: no-repeat;
    background-size:cover;
    background-attachment: fixed;
}

#information-container{
    /*border: 1px solid white;*/
    min-height: 500px;
    width: 100%;
    display: flex;
    column-gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.information{
    width: 21%;
    min-height: 300px;
    /*border: 1px solid white;*/
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.information i{
    color: var(--secondaryColor);
    font-size: 50px;
}

.information h3{
    font-family: "myIranYekan";
    font-size: 60px;
    color: white;
    margin: 35px 0 0 0;
}

.information p{
    color: white;
    font-family: "myIranYekan";
    font-size: 13px;
    font-weight: bold;
    margin: 35px 0 0 0;
}

#three-section{
    min-height: 200px;
}

#container-comment{
    display: flex;
    column-gap: 20px;
    /*border: 1px solid var(--secondaryColor);*/
    /*min-height: 10px;*/
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
    flex-direction: row;
    /*display: grid;*/
    /*grid-template-rows: repeat(2, auto);*/
}

.comment-form{
    /*border: 1px solid var(--secondaryColor);*/
    /*width: 400px;*/
    width: 45%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 7px 7px 15px 7px;
    border-radius: 10px;
    box-shadow: 0 0 15px -5px black;
    margin-top: 20px;
    flex-wrap: wrap;
    background-image: url("../images/quote.svg");
    background-repeat: no-repeat;
    background-size: 80px;
    background-position: 25px 30px;
}

.comment{
    /*width: 100%;*/
    /*border: 1px solid var(--secondaryColor);*/
    /*flex-grow: 1;*/
    direction: ltr;
    display: flex;
    justify-content: flex-end;
    /*align-content: flex-start;*/
    padding:20px;
    border-radius: 10px;
    width: 100%;
}


.comment img{
    width:60px;
}

.comment-image{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border-top:var(--secondaryColor) 4px solid;
    border-right: var(--secondaryColor) 4px solid;
    border-bottom: lightgrey 4px solid;
    border-left: lightgray 4px solid;
    margin-left: 10px;
}

.comment-image img{
    width: 80px;
}

.profile{
    width: 300px;
    display: flex;
    /*border: 1px solid var(--secondaryColor);*/
}

.comment-profile{
    width: 200px;
    /*display: flex;*/
    flex-wrap: wrap;
    /*border: 1px solid var(--secondaryColor);*/
    flex-direction: column;
}

.comment-profile h3{
    font-family: "myIranYekan";
    margin: 12px 0 0 0 ;
    font-weight: bold;
}

.comment-profile p{
    font-family: "myIranYekan";
    margin: 6px 0 0 0 ;
    font-size: 13px;
    color: gray;
}

.comment-profile i{
    color: gold;
    margin-left: 3px;
}

.star-profile{
    margin: 7px 0 0 0;
    display: flex;
}

.text-comment{
    width: 85%;
    /*border: 1px solid var(--secondaryColor);*/
    /*display: block;*/
    /*text-align: center;*/
}

.text-comment p{
    font-family: "myIranYekan";
    text-align: justify;
    color: gray;
    font-size: 13px;
    line-height: 1.6;
}

.souwich-comment{
    width: 100%;
    min-height: 100px;
    /*border: 1px solid var(--secondaryColor);*/
    display: flex;
    justify-content: center;
    align-content: center;

}

.souwich{
    width: 18px;
    height: 18px;
    border-radius: 50%;
    /*border: 1px solid var(--secondaryColor);*/
    margin: 35px 8px 0 0;
    background-color: lightgray;
}

.souwich:nth-child(2){
    background-color: var(--secondaryColor);
}


#four-section{
    min-height: 200px;
}

#container-image{
    width: 100%;
    /*border: 1px solid black;*/
    min-height: 800px;
}

#container-list{
    display: flex;
    align-content: center;
    justify-content: center;
}

#nav-list{
    border: 1px solid var(--primaryColor);
    display: inline-block;
    padding: 5px;
    border-radius: 50px;
    width: 50%;
    margin-bottom: 30px;
}

#nav-list ul{
    display: flex;
    list-style: none;
    justify-content: space-between;
    align-content: center;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

#nav-list ul li{
    margin-bottom: 1px;
    border-radius: 50px;
    padding: 7px;
    /*background-color: var(--primaryColor);*/
    color: var(--primaryColor);
    transition: all 0.3s
}

#nav-list ul li a{
    font-family: "myIranYekan";
    /*color: var(--primaryColor);*/
    /*!*background-color: black;*!*/
    /*border-radius: 19px;*/
    /*padding: 6px 10px;*/
    /*!*font-weight: bold;*!*/
    /*transition: all 0.3s;*/
}

#nav-list ul li:nth-child(1){
    background-color: var(--primaryColor);
    color: white;
}

#nav-list ul li:hover{
    background-color: var(--primaryColor);
    color: white;
}

#image-list{
    display: grid;
    grid-template-columns: repeat(4, auto);
}

.image-project{
    width: 100%;
    height: 100%;
    /*border: 1px solid black;*/
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
}

.image-project::after{
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(203, 121, 225, 0.55);
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    transition: all 0.3s;
}


.image-project:hover::after{
    opacity: 1;
}

.overlay-image{
    height: 90px;
    /*border: 1px solid black;*/
    border-right: 3px solid white;
    position: absolute;
    top: 45px;
    left: 15px;
    padding-right: 10px;
    opacity: 0;
    z-index: 10;
    transition: all 0.3s;
}

.overlay-image h3{
    font-family: "myIranYekan";
    text-align: right;
    font-size: 13px;
    font-weight: bold;
    color: white;
}

.image-project:hover .overlay-image{
    opacity: 1;
    left: 45px;
}

.overlay-project-name{
    position: absolute;
    bottom:8px;
    right: 15px;
    opacity: 0;
    z-index: 10;
    transition: all 0.3s;
}

.image-project:hover .overlay-project-name{
    opacity: 1;
}

.overlay-project-name h3{
    font-family: "myPinar";
}

.image-project img{
    width: 92%;
    height: 310px;
    transform:scale(1.3);
    transition: all 0.3s;
}

.image-project:hover img{
    transform:scale(1.1);
}

#five-section{

}

.avita-team{
    display: flex;
    gap: 10px;
    align-content: center;
    justify-content: center;
    flex-wrap: wrap;
}

.team{
    width: 24%;
    border-radius: 10px;
    /*border: 1px solid var(--primaryColor);*/
    min-height: 130px;
    overflow: hidden;
    background-color: #e8e7e7;
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-content: flex-start;
    flex-direction: column;

}

.team img{
    width: 100%;
    /*position: absolute;*/
    z-index: 10;
}

.team::after{
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--primaryColor);
    position: absolute;
    right: -100%;
    top: 0;
    /*z-index: -1;*/
    transition: all 0.5s;
}

.team:hover::after{
    right: 0;
}

.social-media-icon{
    display: inline-block;
    position: absolute;
    z-index: 11;
    font-size: 20px;
    transform: rotatey(-90deg);
    /*padding: 10px;*/
    top: 5px;
    left: 10px;
    transform-origin: left;
    width: 43px;
    background-color: white;
    border-radius: 10px;
    transition: all 0.5s;
    opacity: 0;
}

.social-media-icon ul {
    list-style: none;
    margin: 15px -28px;
}

.social-media-icon ul li {
    margin: 6px 0 ;
}

.social-media-icon ul li a:link,
.social-media-icon ul li a:visited {

}

.team:hover .social-media-icon{
    opacity: 1;
    transform: rotatey(0deg);
}

.paragraf-image{
    /*border: 1px solid black;*/
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    /*align-items: baseline;*/
    flex-direction: column;
    z-index: 10;
    margin: 10px 0;
}

.paragraf-image h3{
    font-family: "myIranYekan";
    /*text-align: center;*/
    font-size: 17px;
    /*position: absolute;*/
    /*top: 75%;*/
    /*left: 50%;*/
    /*transform: translateX(-50%);*/
    z-index: 10;
    /*direction: ltr;*/
}

.paragraf-image p{
    font-family: "myIranYekan";
    /*text-align: center;*/
    font-size: 13px;
    font-weight: bold;
    color: var(--secondaryColor);
    /*position: absolute;*/
    /*bottom: 18px;*/
    /*left: 50%;*/
    /*transform: translateX(-50%);*/
    z-index: 10;
    margin-top: 0;
}

#six-section{

}

#container-communication{
    /*border: 1px solid var(--primaryColor);*/
    display: flex;
    justify-content: center;
    align-content: center;
    flex-grow: 1;
    /*gap: 5px;*/
    min-height: 200px;
    flex-wrap: wrap;
}

.margin-footer{
    margin-bottom:90px;
}

.communication{
    width: 30%;
    /*border: 1px solid var(--primaryColor);*/
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    padding: 20px;
}

.communication i{
    font-size: 50px;
    color: var(--secondaryColor);
}

.communication h3{
    font-family: "myIranYekan";
    color: gray;
    font-size: 15px;
    margin-top: 30px;
}

.communication p{
    font-family: "myIranYekan";
    font-size: 14px;
    margin: 5px 0;
    text-align: center;
}

#contact-form{
    padding-top: 20px;
    width: 100%;
    /*border: 1px solid var(--primaryColor);*/
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: flex-start;
    gap: 10px;
    /*min-height: 200px;*/

}

.top-input{
    width: 45%;
    /*margin-top: 5px;*/
    font-family: "myIranYekan";
    background-color: #eae7e7;
    border: none;
    padding: 13px;
    border-radius: 5px;
    color: black;
    font-size: 15px;
}

.top-input::placeholder{
    color: gray;
}

.top-input:focus{
    outline: 2px solid var(--secondaryColor);
}


#bottom-input{
    width: 91%;
    font-family: "myIranYekan";
    background-color: #eae7e7;
    border: none;
    padding: 13px;
    border-radius: 5px;
    color: black;
    font-size: 15px;
    min-height: 180px;
    min-width: 220px;
}

#bottom-input:focus{
    outline: 2px solid var(--secondaryColor);
}


#bottom-input::placeholder{
    color: gray;
}

#container-button{
    width: 91%;
    min-height: 50px;
    /*border: 1px solid var(--primaryColor);*/
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

#input-form{
    padding: 9px 15px;
    color: white;
    background-color: var(--secondaryColor);
    border-radius: 10px;
    /*height-min: 10px;*/
    margin: 2px;
    font-family: "myIranYekan";
    font-size: 14px;
    transition: all 0.3s;
}

#input-form:hover{
    background-color: var(--primaryColor);
}

footer{

}

#container-footer{
    width: 100%;
    /*border: 1px solid var(--secondaryColor);*/
    min-height: 300px;
    background: rgb(119,87,183);
    background: linear-gradient(270deg, rgba(119,87,183,1) 18%, rgba(203,121,225,1) 100%);
}

#background{
    width: 100%;
    /*height: 100%;*/
    background-image: url("../images/footer_bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    z-index: 1;
}

#container-footer-item{
    width: 100%;
    min-height: 300px;
    display: flex;
    justify-content: center;
    align-content: flex-start;
    flex-wrap: wrap;
    /*border: 3px solid black;*/
}

.fotter-item{
    /*margin-top: 50px;*/
    /*border: 1px solid black;*/
    width: 25%;
    /*min-height: 100%;*/
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    padding: 10px;
}

.fotter-item h3{
    font-family: "myPinar";
    font-size: 18px;
    color: white;
    margin-bottom: 30px;
}

.fotter-item h3::before{
    content: "";
    display: block;
    width: 61px;
    border-top: 2px solid white;
    position: relative;
    bottom: -35px;
    left: 0px;
}

.fotter-item h3::after{
    content: "";
    display: block;
    width: 66px;
    border-top: 1px solid white;
    position: relative;
    bottom: -13px;
    left: -56px;
}

.fotter-item p{
    font-family: "myIranYekan";
    text-align: justify;
    color: white;
    font-size: 14px;
    line-height: 1.5;
    margin-top: 30px;
}

#container-icons-footer{
    width: 100%;
    display: flex;
    justify-content: center;
    align-content: center;
}

.icon-footer{
    width: 35px;
    height: 35px;
    border: 1px solid white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 10px;
    transition: all 0.3s;
    margin-top: 15px;
}

.icon-footer i{
    font-size: 15px;
    color: white;
    transition: all 0.3s;
}

.icon-footer:hover i{
    color: black;
}

.icon-footer:hover{
    background-color: white;
}

.footer-paragraph p{
    font-family: "myIranYekan";
    margin-top: 4px;
    transition: all 0.3s;
}

.footer-paragraph p:hover{
    color: var(--primaryColor);
}

#container-footer-link{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 20px;
}

.link-footer a{
    color: white;
    background-color: black;
    padding: 4px;
    border-radius: 5px;
    font-family: "myIranYekan";
    font-size: 13px;
    transition: all 0.3s;
    /*margin-top: 5px;*/
}

.link-footer a:hover{
    background-color: #373737;
}

.fotter-item img{
    width: 150px;
    margin-top: 10px;
}

#coppy-right{
    width: 100%;
    /*min-height: 100px;*/
    margin-top: 0;
    /*background-color: black;*/
    text-align: center;
}

#coppy-right h3{
    font-family: "myIranYekan";
    color: black;
    font-size: 13px;
}

#coppy-right h3 i{
    color: red;
}

