*{
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
*{
    font-family: "B Nazanin", serif;
}

@font-face {
    font-family: "B Nazanin";
    src: url("./font/Nazanin.woff");
}
@font-face {
    font-family: "samim";
    src: url("./font/Samim.woff");
}
@-webkit-keyframes rotate-goods{
    from{-webkit-transform: rotateY(0deg);}
    to{-webkit-transform: rotateY(360deg);}
}
@keyframes rotate-goods{
    from{transform: rotateY(0deg);}
    to{transform: rotateY(360deg);}
}
header{
    width: 100%;
    height: 120px;
    position: fixed;
    top: 0;
    background-color: white;
    opacity: 0.9;
    z-index: 9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 5px 5px 10px #888888;
}
.logo{
    width: 100px;
    height: 100px;
    margin-left: 50px;
}
/**************** mobile menu design *************************/
.header-mobile{
    width: 100%;
    max-height: 80px;
    position: fixed;
    top: 0;
    background-color: #c4c2c2;
    padding: 20px;
    box-shadow: 5px 5px 10px #888888;
    opacity: 0.9;
    z-index: 11;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-mobile>i{
    font-size: 30px;
    cursor: pointer;
}
.overlay{
    height: 0%;
    width: 100%;
    z-index: 12;
    position: fixed;
    left: 0;
    top: 0;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.9);
    overflow-y: hidden;
    transition: 0.5s;
}
.overlay-content{
    position: relative;
    top: 25%;
    width: 100%;
    text-align: center;
    margin-top: 30px;
}
.overlay a {
    padding: 8px;
    text-decoration: none;
    font-size: 36px;
    color: #818181;
    display: block;
    transition: 0.3s;
}
.overlay a:hover, .overlay a:focus {
    color: #f1f1f1;
}
.overlay .closebtn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
}
@media screen and (max-height: 450px) {
    .overlay a {font-size: 20px}
    .overlay .closebtn {
        font-size: 40px;
        top: 15px;
        right: 35px;
    }
}
/************************mobile menu design************************/
.title{
    line-height: 100px;
    font-size: 50px;
}
#nav-icon{
    width: 60px;
    height: 45px;
    position: relative;
    margin-top: 20px;
    margin-right: 20px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}
#nav-icon>span{
    display: block;
    position: absolute;
    height: 4px;
    width: 80%;
    background: black;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}
#nav-icon span:nth-child(1) {
    top: 0;
}

#nav-icon span:nth-child(2),#nav-icon span:nth-child(3) {
    top: 13px;
}

#nav-icon span:nth-child(4) {
    top: 26px;
}

#nav-icon.open span:nth-child(1) {
    top: 18px;
    width: 0;
    left: 50%;
}

#nav-icon.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

#nav-icon.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#nav-icon.open span:nth-child(4) {
    top: 18px;
    width: 0;
    left: 50%;
}
/*.found{*/
/*    touch-action: pan-x;*/
/*}*/
.pic-mobile{
    width: 100%;
    height: 100vh;
    background-image: url("./img/header-mobile.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.picture{
    position: relative;
    top: 120px;
    width: 100%;
    height: 650px;
    background-image: url("./img/header.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.picture>div{
    display: flex;
    width: 100%;
    justify-content: flex-end;
}
.picture>div>a{

}
.menu{
    float: right;
    margin: 10px;
    display: none;
}
.menu>li{
    padding: 15px;
    transition: 1s;
}
.menu>li>a{
    color: black;
    font-size: 26px;
    font-weight: bold;
    opacity: 0.5;
    transition: .5s;
}
.menu>li>a:hover{
    opacity: 1;

}
.menu-scroll{
    display: flex;
    width: 50%;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    margin-right: 50px;
}
.menu-scroll>li>a{
    color: black;
    font-weight: bold;
    font-size: 22px;
}
.menu-scroll>li>a:hover{
    color: #4d4ef6;
}
/**********************************intro ************************************/
#about-us{
    width: 100%;
    height: 100px;
    margin-top: 50px;
}
.intro{
    width: 100%;
    height: auto;
    margin:50px 0 100px 0;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.intro>*{
    font-family: "samim", serif;
}
.intro>p{
    width: 80%;
    margin-top: 25px;
    text-align: justify;
}
.video{
    width: 100%;
    height: 100vh;
}
.video>figure{
        width: 100%;
        height: 100%;
    background-image: url("./img/sea-salt-wooden-bowl-black-background.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size:cover;
    box-shadow: 3px 3px 3px 0 #cdd2ea;
}
.video-mobile{
    width: 100%;
    height: 100vh;
}
.video-mobile>figure{
    width: 100%;
    height: 100%;
    background-image: url("./img/sea-salt-wooden-bowl-black-background-mobile.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

/******************************** introducing goods ********************************/
#mahsol{
    width: 100%;
    height: 1px;
}
.goods{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 100px;
}
.goods>div:nth-of-type(1){
    width: 100%;
    height: 25vh;
    margin: 20px 0 150px 0;
    background-size: 120% 160%;
    background-position: center;
}
.yellow-back{
    background-image: url("./img/8116.jpg");
}
.blue-back{
    background-image: url("./img/blue.jpg");
}
.blue-back>h1{
    color: white;
}
.green-back{
    background-image: url("./img/green.jpg");
}
.green-back>h1{
    color: #fcfcfc;
}
.goods>div>h1{
    font-family: BTitrBold,'BTitrBold',tahoma;
    text-align: center;
    font-size: 68px;
    line-height: 175px;
}
.wrapper{
    display: flex;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
}

.box , .first-box , .first-box-mobile, .box-mobile{
    width: 400px;
    height: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    border-radius: 2px;
}
.box, .first-box{
    margin: 8% 3%;
}
.first-box-mobile, .box-mobile{
    margin: 20% 3%;

}
.first-box>figure,.box>figure , .first-box-mobile>figure , .box-mobile>figure{
    position: absolute;
    width: 85%;
    bottom: 70%;
    height: 70%;
}
figure>div{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    transition: 1s;

}
.first-box-mobile>figure>div, .box-mobile>figure>div{
    animation: rotate-goods infinite 10s alternate;
    animation-timing-function: linear;
    animation-delay: 3s;
    -webkit-animation: rotate-goods infinite 10s alternate;
    -webkit-animation-delay: 3s;
    -webkit-animation-timing-function: linear;
}
.first-box:nth-of-type(1)>figure>div:nth-of-type(1), .first-box-mobile:nth-of-type(1)>figure>div:nth-of-type(1){
    background-image: url("./img/test.jpg");
}
.first-box:nth-of-type(1)>figure>div:nth-of-type(2), .first-box-mobile:nth-of-type(1)>figure>div:nth-of-type(2){
    background-image: url("./img/111.jpg");
    backface-visibility: hidden;
}
.first-box:nth-of-type(2)>figure>div:nth-of-type(1), .first-box-mobile:nth-of-type(2)>figure>div:nth-of-type(1){
    background-image: url("./img/test2.jpg");
}
.first-box:nth-of-type(2)>figure>div:nth-of-type(2), .first-box-mobile:nth-of-type(2)>figure>div:nth-of-type(2){
    background-image: url("./img/111.jpg");
    backface-visibility: hidden;
}
.box:nth-of-type(1)>figure>div:nth-of-type(1), .box-mobile:nth-of-type(1)>figure>div:nth-of-type(1){
    background-image: url("./img/107.jpg");
}
.box:nth-of-type(1)>figure>div:nth-of-type(2), .box-mobile:nth-of-type(1)>figure>div:nth-of-type(2){
    background-image: url("./img/17.jpg");
    backface-visibility: hidden;
}
.box:nth-of-type(2)>figure>div:nth-of-type(1), .box-mobile:nth-of-type(2)>figure>div:nth-of-type(1){
    background-image: url("./img/10.jpg");
}
.box:nth-of-type(2)>figure>div:nth-of-type(2), .box-mobile:nth-of-type(2)>figure>div:nth-of-type(2){
    background-image: url("./img/10.jpg");
    backface-visibility: hidden;
}
.box:nth-of-type(3)>figure>div:nth-of-type(1), .box-mobile:nth-of-type(3)>figure>div:nth-of-type(1){
    background-image: url("./img/sanati-shekari10b.jpg");
}
.box:nth-of-type(3)>figure>div:nth-of-type(2), .box-mobile:nth-of-type(3)>figure>div:nth-of-type(2){
    background-image: url("./img/sanati-shekari10f.jpg");
    backface-visibility: hidden;
}
.box:nth-of-type(4)>figure>div:nth-of-type(1), .box-mobile:nth-of-type(4)>figure>div:nth-of-type(1){
    background-image: url("./img/sanati-shekari20b.jpg");
}
.box:nth-of-type(4)>figure>div:nth-of-type(2), .box-mobile:nth-of-type(4)>figure>div:nth-of-type(2){
    background-image: url("./img/sanati-shekari20f.jpg");
    backface-visibility: hidden;
}
.box:nth-of-type(5)>figure>div:nth-of-type(1), .box-mobile:nth-of-type(5)>figure>div:nth-of-type(1){
    background-image: url("./img/sanati-shekari30b.jpg");
}
.box:nth-of-type(5)>figure>div:nth-of-type(2), .box-mobile:nth-of-type(5)>figure>div:nth-of-type(2){
    background-image: url("./img/sanati-shekari30f.jpg");
    backface-visibility: hidden;
}
.vanish:nth-of-type(3)>figure>div:nth-of-type(1), .vanish-mobile:nth-of-type(3)>figure>div:nth-of-type(1){
    background-image: url("./img/106.jpg");
}
.vanish:nth-of-type(3)>figure>div:nth-of-type(2), .vanish-mobile:nth-of-type(3)>figure>div:nth-of-type(2){
    background-image: url("./img/106e.jpg");
    backface-visibility: hidden;
}
.vanish:nth-of-type(2)>figure>div:nth-of-type(1), .vanish-mobile:nth-of-type(2)>figure>div:nth-of-type(1){
    background-image: url("./img/20.jpg");
}
.vanish:nth-of-type(2)>figure>div:nth-of-type(2), .vanish-mobile:nth-of-type(2)>figure>div:nth-of-type(2){
    background-image: url("./img/101.jpg");
    backface-visibility: hidden;
    background-position: center;
}
.vanish:nth-of-type(1)>figure>div:nth-of-type(1), .vanish-mobile:nth-of-type(1)>figure>div:nth-of-type(1){
    background-image: url("./img/104.jpg");
}
.vanish:nth-of-type(1)>figure>div:nth-of-type(2), .vanish-mobile:nth-of-type(1)>figure>div:nth-of-type(2){
    background-image: url("./img/105.jpg");
    backface-visibility: hidden;
}
.first-box:hover>figure>div:nth-of-type(2),.box:hover>figure>div:nth-of-type(2){
    transform: perspective(1000px)rotateY(180deg);
}
.first-box:hover>figure>div:nth-of-type(1),.box:hover>figure>div:nth-of-type(1){
    transform: perspective(1000px)rotateY(180deg);
}
.box>h1 , .first-box>h1 , .box-mobile>h1, .first-box-mobile>h1{
    margin-top: 120px;
    /*font-family: "B Nazanin", serif;*/
}
.box>ul , .first-box>ul, .box-mobile>ul, .first-box-mobile>ul{
    margin: 20px 0 ;
    width: 80%;
    /*border: 2px solid orange;*/
}
.box>ul>li , .first-box>ul>li, .box-mobile>ul>li, .first-box-mobile>ul>li{
    list-style-type: square;
    /*font-family: "B Nazanin", serif;*/
    font-size: 20px;
    color: #0f146c;
    font-weight: bolder;
    padding: 2px;
    word-wrap: break-word;
}
.view-more{
    margin-right: -75%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 17%;
    cursor: pointer;

    /*border: 1px solid red;*/
}
.view-more>a{
    color: #0f146c;
    font-size: 22px;
    /*font-family: "B Nazanin", serif;*/
    font-weight: bolder;

}
.mahsol-mobile{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 180px;
}
.back{
    background-color: #cdd2ea;
}
.mahsol-mobile>div:nth-of-type(1){
    width: 50%;
    height: 80%;

    /*border: 2px solid red;*/
}
.mahsol-mobile>div>img{
    width: 100%;
    height: 50%;
}
.mahsol-mobile>div:nth-of-type(2) {
    width: 85%;
    height: auto;
    padding: 40px 0 120px 0;
    /*border: 2px solid green;*/
}
.mahsol-mobile>div:nth-of-type(2)>ul>li {
    list-style-type: disc;
    font-size: 22px;
}
.mahsol-mobile>div:nth-of-type(2)>p {
    font-size: 22px;
}
.mahsol-mobile>div:nth-of-type(2)>p>a {
margin-bottom: 100px;
}
.container-explain-mahsol{
    width: 100%;
    height: auto;
    padding-top: 120px;
    display: flex;
    /*border: 2px solid darkred;*/
    justify-content: flex-end;
    background-image: -moz-linear-gradient(#c2c3c4,#eef2f3);
    background-image: -webkit-linear-gradient(#c2c3c4,#eef2f3);
    background-image: -ms-linear-gradient(#c2c3c4,#eef2f3);
    background-image: -o-linear-gradient(#c2c3c4,#eef2f3);
}
.show-pic{
    width: 20%;
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    /*border: 2px solid orchid;*/
}
.show-pic>div{
    width: 100%;
    height: 33%;
}
.show-pic>div:nth-of-type(2){
    /*background-image: url("./img/10.jpg");*/
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-right: 5%;
}
.show-text{
    width: 80%;
    height: auto;
    /*border: 2px solid darkslateblue;*/
    display: flex;
    flex-direction: column;
}
.brief-text{
    width: 87%;
    margin: 100px auto 50px auto;
}
.brief-text>h2,.brief-text>ul>li{
    font-size: 28px;
    list-style-type: square;
}
.show-text>div:nth-of-type(2){
    width: 90%;
    margin: 5px auto 200px auto;
}
.show-text>div:nth-of-type(2)>p{
    font-size: 26px;
    text-align: justify;
}
.show-text>div:nth-of-type(2)>p>a{
    color: cornflowerblue;
}
.fa-long-arrow-alt-right{
    color: #0f146c;
    font-weight: bolder;
    font-size: 22px;
}
.blue{
    border: 4px solid #2D7CE9;
}
.yellow{
    border: 4px solid #FFC300;
    box-shadow: 1px 1px 1px 1px rgba(255,238,15,0.63);
}
.green{
    border: 4px solid #0c4f12;
}
/**************************************** paper page ***********************************/
.papers{
    width: 100%;
    height: auto;
    background-color: white;
    display: flex;
    justify-content: center;
    margin-bottom: 100px;
}
.wrapper-paper{
    width: 90%;
    height: auto;
    margin-top: 200px;
    display: flex;
    /*background-color: #d7d7d7;*/
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.wrapper-paper>div{
    width: 85%;
    height: auto;
    background-color: #A7BFE8;
    margin-top: 30px;
    border-radius: 10px;
    padding: 10px 35px;
    transition: 1s;
}
.wrapper-paper>div:nth-of-type(5),.wrapper-paper>div:nth-of-type(6){
    background-image:-moz-linear-gradient(#135058,#99f2c8);
    background-image: -webkit-linear-gradient(#135058,#99f2c8);
    background-image: -ms-linear-gradient(#135058,#99f2c8);
    background-image: -o-linear-gradient(#135058,#99f2c8);
}
.wrapper-paper>div:nth-of-type(1),.wrapper-paper>div:nth-of-type(7),.wrapper-paper>div:nth-of-type(2),.wrapper-paper>div:nth-of-type(8){
    background-image:-moz-linear-gradient(#135058,#F1F2B5);
    background-image: -webkit-linear-gradient(#135058,#F1F2B5);
    background-image: -ms-linear-gradient(#135058,#F1F2B5);
    background-image: -o-linear-gradient(#135058,#F1F2B5);
}
.wrapper-paper>div:nth-of-type(3),.wrapper-paper>div:nth-of-type(4){
    background-image:-moz-linear-gradient(#135058,#71B280);
    background-image: -webkit-linear-gradient(#135058,#71B280);
    background-image: -ms-linear-gradient(#135058,#71B280);
    background-image: -o-linear-gradient(#135058,#71B280);
}

.wrapper-paper>div:hover{
    /*background-color: #6190E8;*/
    box-shadow: 2px 2px 2px 2px gray;
}
.wrapper-paper>div>h2{
    /*font-family: "B Nazanin", serif;*/
    font-size: 34px;
    padding: 20px 20px 0 0;
    color: white;
}
.wrapper-paper>div>p{
    /*font-family: "B Nazanin", serif;*/
    font-size: 22px;
    text-align: justify;
    padding: 15px;
    color: white;
}
.moreText{
    display: none;
    /*font-family: "B Nazanin", serif;*/
    font-size: 22px;
    color: white;
}
.moreLessButton{
    border: none;
    padding: 8px;
    border-radius: 4px;
    background-image:-moz-linear-gradient(#ADA996,#F2F2F2,#DBDBDB,#EAEAEA);
    background-image: -webkit-linear-gradient(#ADA996,#F2F2F2,#DBDBDB,#EAEAEA);
    background-image: -ms-linear-gradient(#ADA996,#F2F2F2,#DBDBDB,#EAEAEA);
    background-image: -o-linear-gradient(#ADA996,#F2F2F2,#DBDBDB,#EAEAEA);
    float: left;
    /*font-family: "B Nazanin", serif;*/
    font-size: 23px;
    font-weight: bold;
    margin: 30px;
    cursor: pointer;
}
/**************************** compare page ***************************************/
.header-compare{
    opacity: 1;
}
.header-compare>div:nth-of-type(1){
    width: 86%;
    height: 100%;
}
.header-compare>div>ul{
    display: flex;
    /*margin-right: 20px;*/
}
.header-compare>div>ul>li{
    padding: 15px 23px;
}
.header-compare>div>ul>li>a{
    color: black;
    font-size: 24px;
    line-height: 80px;
    font-weight: bold;
    transition: 0.3s;
}
.header-compare>div>ul>li>a:hover{
    color: #4d4ef6;
}
.header-compare>div:nth-of-type(2){
    width: 14%;
    height: 100%;
}
.header-compare>div>img{
    width: 100px;
    height: 100px;
}
.main{
    margin-top: 120px;
    width: 100%;
    height: 85vh;
}
.menu-compare{
    width: 13%;
    position: fixed;
    top: 120px;
    right: 0;
}
.menu-compare>li>a{
    color: #FEAC5E;
}
.main>img{
    width: 100%;
    height: 82vh;
    z-index: -9;
    position: fixed;

}
.ghost{
    width: 100%;
    height: 85vh;
    /*border: 2px solid green;*/
    z-index: 1;
    position: relative;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}
.ghost>div{
    width: 25%;
    height: 100%;
    /* border: 2px solid gray; */
}
.frame{
    width: 70%;
    height: auto;
    /* border: 2px solid whitesmoke; */
    margin: 50% auto;
    opacity: 0;
    visibility: hidden;
    transition: 1s;
    cursor: pointer;
}
.frame>h2{
    padding: 40px 10px 5px 15px;
}
.frame>ul{
    margin-right: 25px;
    padding: 10px 10px;
}
.frame>ul>li{
    font-size: 20px;
    padding-top: 5px;
    padding-bottom: 10px;
}
.frame>h2,.frame>ul>li{
    text-align: center;
    color: #000000;
    text-shadow: 2px 2px #fafafa;
    list-style-type: disc;
    font-weight: 700;
}
.tablet_view{
    margin-top: 120px;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
}
.tablet_view>div{
    width: 100%;
    height: 65vh;
    /* border: 2px solid red; */
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    display: flex;
    justify-content: center;
}
.tablet_view>div:nth-of-type(1){
    background-image:url("./img/1gh.jpg");
}
.tablet_view>div:nth-of-type(2){
    background-image: url("./img/2gh.jpg");
}
.tablet_view>div:nth-of-type(3){
    background-image: url("./img/3gh.jpg");
}
.tablet_view>div:nth-of-type(4){
    background-image: url("./img/4gh.jpg");
}
.expln{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.expln>h2{
    font-size: xx-large;
    margin-bottom: 20px;
}
.expln>ul>li{
    list-style-type: disc;
    font-size: 20px;
}
.expln>*{
    text-shadow: 2px 2px #fafafa;
    font-weight: 700;
}
/************************************ contact page **********************************/
.background{
    width: 100%;
    height: 100%;
    margin: 100px 0;
    background-image: url("./img/99.jpg");
    /* position: fixed; */
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
.background>section{
    width: 100%;
    height: auto;
    /* border: 1px solid green; */
    margin-top: 100px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
.background>section>div{
    background-color: transparent;
    transition: 1s;
    padding: 35px 40px;
}
.background>section>div:hover{
    background-color: rgba(245, 245, 245, 0.973);
    box-shadow: 3px 3px 15px 1px rgb(180, 180, 180);
}
.background>section:nth-of-type(1)>div{
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-around;
    /* border: 2px solid orange; */
    margin-top: 50px;
}
a{
    color: black;
}
.info>h1 , .info>h2{
    font-size: 32px;
    padding: 4px;
}
.info>h1{
    text-align: center;
}
.info>h2>i{
    padding: 10px;
}
.info>div>p{
    font-size: 24px;
}
.sns>p{
    text-align: center;
    font-size: xx-large;
    font-weight: bolder;
}
.sns>p>a{
    font-size: 24px;
}
.sns>div{
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}
.fab{
    color: rgb(51, 51, 255);
    font-size: xx-large;
}
.line-center{
    text-align: center;
    position: relative;
    z-index: 2;
    font-size: xx-large;

}
.line-center>span{
    margin: 0;
    padding: 0 10px;
    background: rgb(255, 255, 255);
    display: inline-block;
    padding: 0 25px;
}
.line-center::after{
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    border-top: solid 2px black;
    z-index: -1;
}
.msg{
    width: 100%;
    height: auto;
}
.msg>section{
    width: 85%;
    height: auto;
    margin: 40px auto;
    display: flex;
    justify-content: space-around;
    background: whitesmoke;
    padding: 50px;
    box-shadow: 5px 5px 20px 3px rgb(133, 124, 107);
}
.msg>p{
    text-align: center;
    font-size: larger;
    font-weight: 600;
    margin: 45px 0;
}

.msg>section>form{
    width: 70%;
    display: flex;
    flex-direction: column;
}
.test{
    display: flex;
    width: 100%;
}
.test>div{
    width: 100%;
}
input{
    border: 1px solid #141414;
}
.format{
    width: 95%;
    height: 40px;
    margin: 0 auto;
}
.format-title{
    width: 100%;
    height: 40px;
}
.text-area{
    width: 100%;
}
.btn{
    width: 100px;
    height: 50px;
    background-color: #1169f6;
    border: 1px solid darkgray;
    color: white;
    font-family: "samim", serif;
    font-weight: bold;
    font-size: 15px;
}
/*menu in contact page*/
.menu-contact>ul{
    width: 50%;
    align-items: center;
    justify-content: space-between;
    display: flex;
    flex-direction: row;
    margin-right: 25px;
    /*border: 1px solid red;*/

}
.menu-contact>ul>li>a{
    color: black;
    /*font-family: "B Nazanin", serif;*/
    font-weight: bold;
    font-size: 24px;
    /*transition:.5s;*/
}
.menu-contact>ul>li>a:hover{
    color: #4d4ef6;
}
/******************** footer contact page ******************************/
footer{
    /* margin-top: 100px; */
    width: 100%;
    height: 350px;
    background-image: url("./img/cement-wall-floor-copy-space (1).jpg");
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    display: flex;
    justify-content: space-evenly;
    /*border: 1px solid red;*/
}
.address{
    width: 25%;
    height: 100%;
    /*border: 1px solid pink;*/
    display: flex;
    flex-direction: column;
}
.address>div:nth-of-type(1){
    width: 100%;
    height: 20%;
    /*border: 1px solid purple;*/
    background-color: transparent;
}
.address>div:nth-of-type(2){
    width: 100%;
    height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}
.address>div:nth-of-type(2)>div:nth-of-type(3){
    cursor: pointer;
}
.address>div>div{
    display: flex;
}
.address p,.address a{
    /*font-family: "B Nazanin", serif;*/
    font-size: 22px;
    color: black;
    font-weight: bold;
}
.fa-map-marker-alt , .fa-envelope , .fa-phone{
    color: black;
    font-size: 30px;
    padding-left: 15px;
}
.fab-down{
    color: black;
    font-size: 30px;
}
.social{
    width: 25%;
    height: 100%;
    display: flex;
    flex-direction: column;
    /*border: 2px solid yellow;*/
}
.social>div:nth-of-type(1){
    width: 100%;
    height: 10%;
    /*border: 1px solid green;*/
    background-color: transparent;
}
.social>div:nth-of-type(2){
    width: 100%;
    height: 90%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}
.social p{
    text-align: center;
    /*font-family: "B Nazanin", serif;*/
    font-size: 22px;
    font-weight: bold;
}
.social>div:nth-of-type(2) div{
    width: 70%;
    display: flex;
    justify-content: space-evenly;
}
.map {
    width: 30%;
    height: 100%;
    /*border: 2px solid brown;*/
}
.map>div{
    width: 100%;
    height: 10%;
    background-color: transparent;
}

