/*
Theme Name: Parsfan
Author: Reza Darvishzadeh
Version: 1.0
*/

@font-face {
    font-family: IRANSans;
    font-style: normal;
    font-weight: bold;
    src: url('fonts/iransans/eot/IRANSansWeb(FaNum)_Bold.eot');
    src: url('fonts/iransans/eot/IRANSansWeb(FaNum)_Bold.eot?#iefix') format('embedded-opentype'),
        /* IE6-8 */
        url('fonts/iransans/woff2/IRANSansWeb(FaNum)_Bold.woff2') format('woff2'),
        /* FF39+,Chrome36+, Opera24+*/
        url('fonts/iransans/woff/IRANSansWeb(FaNum)_Bold.woff') format('woff'),
        /* FF3.6+, IE9, Chrome6+, Saf5.1+*/
        url('fonts/iransans/ttf/IRANSansWeb(FaNum)_Bold.ttf') format('truetype');
}

@font-face {
    font-family: IRANSans;
    font-style: normal;
    font-weight: 500;
    src: url('fonts/iransans/eot/IRANSansWeb(FaNum)_Medium.eot');
    src: url('fonts/iransans/eot/IRANSansWeb(FaNum)_Medium.eot?#iefix') format('embedded-opentype'),
        /* IE6-8 */
        url('fonts/iransans/woff2/IRANSansWeb(FaNum)_Medium.woff2') format('woff2'),
        /* FF39+,Chrome36+, Opera24+*/
        url('fonts/iransans/woff/IRANSansWeb(FaNum)_Medium.woff') format('woff'),
        /* FF3.6+, IE9, Chrome6+, Saf5.1+*/
        url('fonts/iransans/ttf/IRANSansWeb(FaNum)_Medium.ttf') format('truetype');
}

@font-face {
    font-family: IRANSans;
    font-style: normal;
    font-weight: 300;
    src: url('fonts/iransans/eot/IRANSansWeb(FaNum)_Light.eot');
    src: url('fonts/iransans/eot/IRANSansWeb(FaNum)_Light.eot?#iefix') format('embedded-opentype'),
        /* IE6-8 */
        url('fonts/iransans/woff2/IRANSansWeb(FaNum)_Light.woff2') format('woff2'),
        /* FF39+,Chrome36+, Opera24+*/
        url('fonts/iransans/woff/IRANSansWeb(FaNum)_Light.woff') format('woff'),
        /* FF3.6+, IE9, Chrome6+, Saf5.1+*/
        url('fonts/iransans/ttf/IRANSansWeb(FaNum)_Light.ttf') format('truetype');
}

@font-face {
    font-family: IRANSans;
    font-style: normal;
    font-weight: 200;
    src: url('fonts/iransans/eot/IRANSansWeb(FaNum)_UltraLight.eot');
    src: url('fonts/iransans/eot/IRANSansWeb(FaNum)_UltraLight.eot?#iefix') format('embedded-opentype'),
        /* IE6-8 */
        url('fonts/iransans/woff2/IRANSansWeb(FaNum)_UltraLight.woff2') format('woff2'),
        /* FF39+,Chrome36+, Opera24+*/
        url('fonts/iransans/woff/IRANSansWeb(FaNum)_UltraLight.woff') format('woff'),
        /* FF3.6+, IE9, Chrome6+, Saf5.1+*/
        url('fonts/iransans/ttf/IRANSansWeb(FaNum)_UltraLight.ttf') format('truetype');
}

@font-face {
    font-family: IRANSans;
    font-style: normal;
    font-weight: normal;
    src: url('fonts/iransans/eot/IRANSansWeb(FaNum).eot');
    src: url('fonts/iransans/eot/IRANSansWeb(FaNum).eot?#iefix') format('embedded-opentype'),
        /* IE6-8 */
        url('fonts/iransans/woff2/IRANSansWeb(FaNum).woff2') format('woff2'),
        /* FF39+,Chrome36+, Opera24+*/
        url('fonts/iransans/woff/IRANSansWeb(FaNum).woff') format('woff'),
        /* FF3.6+, IE9, Chrome6+, Saf5.1+*/
        url('fonts/iransans/ttf/IRANSansWeb(FaNum).ttf') format('truetype');
}

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

.clear {
    clear: both;
}

body {
    margin: 0px;
    background: white;
    direction: rtl;
    font-family: IRANSans;
}


.Container {
    width: 100%;
}

.FullSection {
    width: 100%;
}

.section {
    width: 1200px;
    max-width: 100%;
    margin: 0px auto;
}

.HeaderSection {
    border-bottom: 1px solid #777777;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 100;
    width: 100%;
    backdrop-filter: blur(4px) saturate(120%);
}

.Header {
    display: flex;
    justify-content: space-between;
}

.Header .logo img {
    height: 77px;
}

.Header .menu>ul {
    display: flex;
    margin: 0px;
    padding: 0px;
    list-style: none;
}

.Header .menu>ul>li {
    position: relative;
}

.Header .menu>ul>li>a {
    color: white;
    padding: 25px 30px;
    text-align: center;
    display: block;
    border-right: 1px solid #777777;
    border-left: 1px solid #777777;
    transition: all ease-in-out 0.3s;
}

.Header .menu>ul>li>a:hover {
    background: rgba(0, 132, 255, 0.5);
}

.sub-menu {
    display: none;
    position: absolute;
    top: 70px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    min-width: 200px;
    list-style: none;
    margin: 0px;
    padding: 0px;
    overflow: hidden;
    z-index: 100;
    left: 50%;
    transform: translateX(-50%);
    backdrop-filter: blur(3px) saturate(120%);
}

.sub-menu li a {
    color: white;
    padding-block: 10px;
    display: block;
    transition: all ease-in-out 0.3s;
    border-bottom: 1px solid #363636;
    text-align: center;
}

.sub-menu li:last-child a {
    border: none;
}

.sub-menu li a:hover {
    background-color: #0084FF;
}

.Header .menu>ul>li:hover .sub-menu {
    display: block;

}

.MainSlider {
    display: flex;
    align-items: center;
}

.SliderSection {
    height: 690px;
    position: relative;
}

.SliderDetails {
    display: flex;
    flex-direction: column;
    padding-inline: 5%;
}

.SliderDetails h2 {
    color: white;
    font-size: 48px;
    font-weight: bold;
}

.TextWithLine {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 40px;
}

.TextWithLine .Line {
    width: 70px;
    height: 3px;
    background: white;
}

.TextWithLine span {
    font-weight: bold;
    color: white;
}

.ActionButton {
    display: block;
    width: fit-content;
    height: 47px;
    text-align: center;
    color: white;
    background: #0084FF;
    border-radius: 15px;
    padding-inline: 30px;
    font-size: 18px;
    display: flex;
    align-items: center;
}

.SliderDetails .ActionButton {
    margin-right: 90px;
}

.AboutImg {
    background-position: center;
    background-size: cover;
    width: 100%;
    padding-top: 55%;
    border-radius: 20px;
    position: relative;
}

.AboutSection {
    display: flex;
    gap: 40px;
    margin-block: 150px;
    align-items: center;
}

.AboutSection .column1 {
    width: 50%;
    display: flex;
    flex-direction: column;
}

.AboutSection .column2 {
    width: 50%;
}

.AboutSection span {
    color: #0084FF;
}

.AboutSection h1 {
    color: #4F4F4F;
    font-size: 32px;
    margin-top: 5px;
}

.AboutSection p {
    color: #4F4F4F;
    text-align: justify;
}

.AboutImg .FBtn {
    position: absolute;
    bottom: -2px;
    right: -1px;
    width: 100px;
    height: 100px;
    background-image: url('assets/BackBtn2.svg');
    background-position: center;
    background-size: cover;
}

.FBtn .linkBtn {
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    background-color: #0084FF;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 5px;
    right: 7px;

}

.FBtn img {
    width: 15px;
}

.VideoWrapper {
    display: none;
}

.VideoModalBack {
    position: fixed;
    background: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
    z-index: 49;
    top: 0px;
}

.VideoModal {
    position: fixed;
    max-width: 95%;
    background: black;
    border-radius: 20px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    z-index: 100;
    overflow: hidden;
    padding: 10px;
}

.CloseModal img {
    width: 30px;
    position: absolute;
    z-index: 10;
    left: 5px;
    top: 5px;
    background: #0084FF;
    border-radius: 50%;
    padding: 5px;
    cursor: pointer;
}

.VideoModal .Video {
    border-radius: 24px;
    overflow: hidden;
}

.h_iframe-aparat_embed_frame {
    position: relative;
}

.h_iframe-aparat_embed_frame .ratio {
    display: block;
    width: 100%;
    height: auto;
}

.h_iframe-aparat_embed_frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.h_iframe-aparat_embed_frame {
    position: relative;
}

.h_iframe-aparat_embed_frame .ratio {
    display: block;
    width: 100%;
    height: auto;
}

.h_iframe-aparat_embed_frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ProjectSection {
    margin-block: 150px;
}

.title {
    color: #4F4F4F;
    font-size: 32px;
    font-weight: 500;
    text-align: center;
}

.filterNavigations {
    width: 100%;
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-block: 40px;
}

.filterNavigations span {
    background-color: #777777;
    color: white;
    border-radius: 10px;
    text-align: center;
    height: 40px;
    padding-block: 7px;
    width: 128px;
    cursor: pointer;
    transition: all ease-in-out 0.3s;
}

.filterNavigations span.active,
.filterNavigations span:hover {
    background-color: #0084FF;
}

.ProjectsArea {
    width: 100%;
    display: flex;
    margin-top: 40px;
}

.Project {
    padding-top: 28%;
    background-position: center;
    background-size: cover;
    border-radius: 20px;
    width: 23%;
    margin:0px 1%;
    position: relative;
}

.ProjectText {
    position: absolute;
    width: 100%;
    padding-left: 20%;
    bottom: 0px;
    right: 0px;
    padding-right: 20px;
    color: white;
    padding-bottom: 10px;
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.9288047982865021) 0%, rgba(0, 0, 0, 0.03804849576549374) 100%);
    border-radius: 20px;
}

.Project .FBtn {
    position: absolute;
    bottom: -2px;
    left: -1px;
    width: 70px;
    height: 70px;
    background-image: url('assets/BackBtn.svg');
    background-position: center;
    background-size: cover;
}

.Project .FBtn .linkBtn {
    width: 40px;
    height: 40px;
    bottom: 5px;
    left: 6px;
    right: unset;

}

.Project .FBtn img {
    width: 12px;
}

.ProjectText h3 {
    margin-block: 5px;
    font-size: 20px;
    font-weight: bold;
}

.ProjectText img {
    margin-left: 10px;
    width: 11px;
}

.Project span {
    color: #C9C9C9;
    display: flex;
}

.ServicesSection {
    margin-block: 150px;
}

.ServicesArea {
    width: 100%;
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.ServiceItem {
    border-radius: 20px;
    width: 100%;
    position: relative;
    background-color: #e6e6e6;
    color: white;
    padding: 30px;
}

.ServiceItem h4 {
    color: #4F4F4F;
    font-size: 20px;
    font-weight: 500;
    margin-block: 15px;
}

.ServiceItem p {
    color: #777777;
    padding-bottom: 20px;
    text-align: justify;
}

.ServiceItem .FBtn {
    position: absolute;
    bottom: -2px;
    left: -1px;
    width: 70px;
    height: 70px;
    background-image: url('assets/BackBtn.svg');
    background-position: center;
    background-size: cover;
}

.ServiceItem .FBtn .linkBtn {
    width: 40px;
    height: 40px;
    bottom: 5px;
    left: 6px;
    right: unset;

}

.ServiceItem .FBtn img {
    width: 12px;
}

.StatisticSection {
    margin-block: 150px;
    padding-block: 70px;
    background: url('assets/StatisticBack.jpg');
}

.Numbers {
    max-width: 1000px;
    width:100%;
    display: flex;
    gap: 20px;
}

.NumberItem {
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 300px;
}

.NumberItem .number {
    font-weight: bold;
    font-size: 50px;
    color: white;
}

.NumberItem .Line {
    height: 1px;
    width: 35%;
    height: 1.5px;
    background-color: #0084FF;
}

.NumberItem .text {
    font-weight: 500;
    color: white;
    font-size: 18px;
    margin-top: 20px;
}

.TeamSection {
    display: flex;
    width: calc(50% + 600px);
    gap: 20px;
}

.TeamSection .column1 {
    width: 320px;
    display: flex;
    flex-direction: column;
}

.TeamSection span {
    color: #0084FF;
}

.TeamSection h1 {
    color: #4F4F4F;
    font-size: 32px;
    margin-top: 5px;
}

.TeamSection p {
    color: #4F4F4F;
    text-align: justify;
}

.TeamItems {
    width: 100%;

}

.TeamItem {
    display: flex;
    position: relative;
    justify-content: end;
    height: 100%;
}

.TeamTitle {
    display: flex;
    position: absolute;
    width: calc(100% - 50px);
    gap: 20px;
    transform: rotate(90deg);
    bottom: 0;
    right: 35px;
    transform-origin: right;
}

.TeamTitle span {
    font-weight: bold;
    color: #4F4F4F;
}

.TeamTitle span:nth-child(2) {
    color: #0084FF;
}

.TeamImage {
    width: calc(100% - 50px);
    height: 100%;
    background-position: center;
    background-size: cover;
    border-radius: 20px;
}

.TeamSection .column2 {
    width: calc(100% - 320px);
}

.TeamItem .FBtn {
    display: none;
    position: absolute;
    bottom: -2px;
    left: -1px;
    width: 70px;
    height: 70px;
    background-image: url('assets/BackBtn.svg');
    background-position: center;
    background-size: cover;
}

.TeamItem .FBtn .linkBtn {
    width: 40px;
    height: 40px;
    bottom: 5px;
    left: 6px;
    right: unset;

}

.TeamItem .FBtn img {
    width: 12px;
}

.TeamItems .slick-dots{
    bottom: -35px;
}

.CustomerSection {
    margin-block: 150px;
    padding-block: 70px;
    background: url('assets/StatisticBack.jpg');
}

.Customers {
    height: 150px;
    margin-top: 30px;
}

.CustomerSection .title {
    color: white;
}


.CustomerItem img {
    width: 100%;
    border-radius: 10px;
}

/* the slides */
.CustomerSection .slick-slide {
    margin: 0 20px;
}

/* the parent */
.CustomerSection .slick-list {
    margin: 0 -20px;
}

.CustomerItem {
    display: flex !important;
    align-items: center;
    min-height: 150px !important;
}

.Footer {
    margin-top: 150px;
    padding: 70px 10px 10px 10px;
    background: url('assets/StatisticBack.jpg');

}

.Footer .section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footerLogo {
    width: 120px;
}

.footerLogo img {
    width: 100%;
}

.Footer h3 {
    color: white;
    font-weight: bold;
    font-size: 24px;
}

.Footer p {
    color: white;
    font-weight: bold;
    text-align: center;
    max-width: 675px;
    line-height: 35px;
}

.ContactFooter {
    width: 100%;
    max-width: 360px;
    border-top: 1px solid white;
    display: flex;
    margin-top: 30px;
}

.cFooter {
    width: 50%;
    display: flex;
    flex-direction: row-reverse;
    color: white;
    gap: 10px;
    margin-block: 10px;
}

.cFooter img {
    width: 20px;
}

.cFooter:first-child {
    justify-content: start;
    border-left: 1px solid white;
}

.socials {
    margin: 30px auto;
    display: flex;
    width: 100%;
    gap: 20px;
    justify-content: center;
}

.socials img {
    max-width: 25px;
    max-height: 25px;
}

.Copyright {
    background-color: #0084FF;
    color: white;
    width: 100%;
    height: 35px;
    display: flex;
    align-items: center;
    font-size: 13px;
}

.Copyright span {
    text-align: center;
    display: block;
}

.Copyright a {
    color: white;
}

.PageBanner {
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
    height: 400px;
    padding-top: 50px;
}

.PageBanner h2 {
    color: white;
    font-weight: bold;
    font-size: 40px;
}

.ProjectPages {
    margin-block: 50px;
}

.ProjectPages .ProjectsArea {
    flex-wrap: wrap;
}

.ProjectPages .ProjectsArea .Project {
    margin-bottom:20px;
}

.SingleBanner {
    background-size: cover;
    background-position: center;
    height: 500px;
    align-items: center;
    display: flex;
}

.SingleBanner h2 {
    color: white;
    font-weight: bold;
    font-size: 40px;
    margin-bottom: 15px;
}

.SingleBanner span {
    color: white;
    font-size: 24px;
}

.ProjectMetaAndSlider {
    display: flex;
    gap: 20px;
    margin-top: -60px;
}

.ProjectMeta {
    width: 320px;
    background: #F9F9F9;
    border-radius: 15px;
    overflow: hidden;
}

.ProjectSlider {
    width: calc(100% - 340px);
}

.ProjectSliderItem {
    width: 100%;
    /* padding-top:50%; */
    height: 400px !important;
    background-position: center;
    background-size: cover;
}

.MetaTitle {
    width: 100%;
    display: flex;
    height: 60px;
    background-color: #0084FF;
    color: white;
    justify-content: center;
    align-items: center;
    font-size: 21px;
    font-weight: bold;
}

.MetaItems {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px 30px;
    height: calc(100% - 60px);
}

.MetaItem {
    display: flex;
    flex-direction: row;
    color: #353535;
    justify-content: space-between;
}

.MetaItem span {
    display: flex;
    align-items: center;
}

.MetaItem img {
    margin-left: 10px;
    max-width: 20px;
    max-height: 20px;
}

.MetaItem p {
    margin: 0px;
}

.ProjectSlider .slick-dotted.slick-slider {
    margin-bottom: 0px !important;
    border-radius: 15px;
    overflow: hidden;
}

.ProjectSlider .slick-dots {
    bottom: 5px;
    right: 5px;
}

.slick-dots li button::before {
    content: '' !important;
    width: 16px !important;
    height: 16px !important;
    border-radius: 100px !important;
    background-color: #D9D9D9 !important;
    opacity: 1 !important;
}

.slick-dots li.slick-active button::before {
    background-color: #0084FF !important;
    opacity: 1 !important;
}

.ProjectSlider .slick-dots {
    text-align: right;
}

.ProjectSlider .slick-dots li {
    margin: 0px 2px;
}

.MainText {
    color: #7D7D7D;
    text-align: justify;
    line-height: 33px;
}

.MainText h1,
.MainText h2,
.MainText h3,
.MainText h4,
.MainText h5,
.MainText h6 {
    color: #555555;
}

.MainText img {
    width: 100%;
    max-width: 100%;
    border-radius: 15px;
    margin: 10px auto;
    display: block;
}

.BlogSlider {
    position: relative;
    width: 1200px;
    margin: 0px auto;
    margin-top: 50px;
}

.sliderContainer {
    height: 555px;

}

.sliderContainer .sliderItem {
    width: 70%;
    left: 15%;
    top: 70px;
    margin: 0px auto;
    padding-top: 36%;
    background-position: center !important;
    background-size: cover !important;
    position: absolute;
    z-index: 9;
    transition: all 500ms ease;
    color: white;
    text-decoration: none;
    border-radius: 15px;
    overflow: hidden;
}

.sliderContainer #c_1 {
    transform: translateX(0) scale(1.2);
    z-index: 99;
}

.sliderContainer #c_2 {
    transform: translateX(-22%) scale(1);
}

.sliderContainer #c_3 {
    transform: translateX(22%) scale(1);
}

.prev,
.next {
    position: absolute;
    color: gray;
    width: 30px;
    height: 30px;
    text-align: center;
    cursor: pointer;
    top: 50%;
}

.prev {
    left: -40px;
}

.next {
    right: -40px;
}

.sliderContent {
    position: absolute;
    bottom: 0px;
    width: 100%;
    z-index: 2;
    padding: 30px;
    box-sizing: border-box;
}

.sliderContent h3 {
    font-size: 18px;
    margin: 10px 0px;
}

.sliderContent p {
    color: white;
    font-size: 14px;
    margin: 10px 0px;
}

.NavigationArea {
    margin: 30px auto 50px auto;
    display: flex;
    justify-content: center;
    gap: 20px;
    width:100%;
}

.NavigationArea a {
    color: #141414;
    transition: 0.3s all ease-in-out;
    text-decoration: none;
    font-size: 20px;
    cursor: pointer;
}

.NavigationArea a:hover {
    color: #0084FF;
}

.NavigationArea span {
    color: #0084FF;
    font-size: 20px;
    font-weight: bold;
}

.slideroverlay {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 14.34%, rgba(60, 60, 60, 0.00) 43.86%);
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0px;
    right: 0px;
}

.HeaderBack {
    background: #2d2d2d;
    width: 100%;
    height: 77px;
}

.ArticlaPage .ProjectsArea{
    flex-wrap: wrap;
}

.ArticlaPage .ProjectsArea .Project{
    margin-bottom:20px;
}

.PostThumbnail img{
    width:100%;
}

.PostMetas {
    width:100%;
    border-top:1px solid black;
    border-bottom:1px solid black;
    display: flex;
    justify-content: space-between;
    padding:8px 0px;
    margin-top:50px;
}

.PostMetas span{
    font-size: black;
    font-weight: 200;
}

.SingleText{
    margin-top:50px;
}

#loading{
background-color: rgba(0,0,0,0.85);
display: none;
justify-content: center;
align-items: center;
width:100%;
height: 100%;
top:0px;
left: 0px;
position: fixed;
z-index: 9999999;
}

.loader {
    position: relative;
    width: 64px;
    height: 64px;
    background: #fff;
    border-radius: 50%;
    overflow: hidden;
  }
  .loader:after{
    content: '';
    position: absolute;
    inset: 8px;
    margin: auto;
    background: #222b32;
     border-radius: 50%;
  }
  .loader:before{
    content: '';
    position: absolute;
    inset: 0px;
    margin: auto;
    background: #0084FF;
    animation: crlMugLoader 2s linear infinite alternate;
  }
  @keyframes crlMugLoader {
    0%  ,10% { transform: translateY(64px) }
    90% , 100% { transform: translateY(0px) }
  }

  .slick-prev{
    z-index: 1000;
  }

  .prev.page-numbers,.next.page-numbers{
    display: none;
  }

  .ContactDetalis {
    padding-inline: 10px;
}
.ContactDetalis iframe {
    width: 100%;
    margin-top: 30px;
}

.ContactFormAndInfo {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.ContactInfo {
    width: 320px;
    display: flex;
    flex-direction: column;
}

.ContactForm {
    width: calc(100% - 340px);
}

.ContactInfoLine {
    display: flex;
    gap: 20px;
    border-bottom: 0.5px solid #58595B;
    color: #58595B;
    font-weight: 300;
    height: 80px;
    align-items: center;
}

.ContactInfoLine img {
    max-width: 30px;
    max-height: 30px;
}

.ContactNavigation {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    justify-content: center;
}

.ContactNavigation img {
    width: 50px;
}

  .FormMain{
    width:100%;
    max-width: 1000px;
    margin:0px auto;
    display: flex;
    position: relative;
}
.FormMain .leftContact,.FormMain .rightContact{
    width:50%;
    padding:10px 20px;
    box-sizing: border-box;
}

.FormMain input,.FormMain textarea{
    width:100%;
    border: 1px solid #C7DAF0;
    height: 45px;
    color:#194F90;
    font-weight: 300;
    border-radius: 10px;
    font-size: 14px;
    padding-right:140px;
    font-family:'IRANSans';
}

.FormMain textarea{
    height: 112px;
    resize: none;
    padding-top:10px;
}

.FormMain label{
    position: relative;
    width:100%;
}

.FormMain .lText{
    position: absolute;
    right: 10px;
    width: 120px;
    top: 36px;
    z-index: 10;
    color:#194F90;
    font-size: 14px;
    font-weight: 300;
}

.FormMain p{
    margin:0px;
}

.submitForm{
    position: absolute;
    left: 20px;
    bottom: -60px;
}

input.ActionButton{
    padding: 0px;
    width: 80px;
    color: white;
    height: 35px;
    background: #0084FF;
    border: none;
}

.wpcf7 form .wpcf7-response-output{
    color:#87A3C6;
    font-weight: 300;
    text-align: center;
    border:none !important;
}

      
