/* **************** FONT **************** */

@font-face {
  font-family: IRANSans;
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/IRANSansWeb_Light.eot');
  src: url('../fonts/IRANSansWeb_Light.eot?#iefix') format('embedded-opentype'),  /* IE6-8 */
  url('../fonts/IRANSansWeb_Light.woff2') format('woff2'),  /* FF39+,Chrome36+, Opera24+*/
  url('../fonts/IRANSansWeb_Light.woff') format('woff'),  /* FF3.6+, IE9, Chrome6+, Saf5.1+*/
  url('../fonts/IRANSansWeb_Light.ttf') format('truetype');
}
/* **************** VARIABLES **************** */
:root {
  /* ********* COLORS ********* */
  --orange-color: #ff8521;
  --green-color: #00954a;
  --white-color: #ffffff;
  --cold-white-color: #e7e7e7;
  --dark-color: #1f1f1f;
  --red-color: #9c1010;
  --gold-color: #b3812c;
}

/* **************** DEFAULT **************** */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  direction: rtl;
  font-family: IRANSans;
  scroll-behavior: smooth;
}

body {
  background-color: var(--white-color);
  position: relative;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  width: 100%;
  vertical-align: middle;
}

.english-font {
  font-family: "Lato", sans-serif;
}

/* **************** HEADER TITLE **************** */
.header-box {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px;
  background-color: var(--cold-white-color);
}

.header-box h1 {
    font-size: 22px;
    color: var(--gold-color);
}

.main-section {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 50px 0px;
}

.main-wrapper {
  width: 1200px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0px 30px;
  column-gap: 50px;
}

form {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.text-box {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 100px 0px;
}

.text-box .text-wrapper {
    width: 1200px;
    padding: 0px 30px;
}

.text-box .text-wrapper h2 {
    padding-bottom: 15px;
    text-align: center;
}

.text-box .text-wrapper p {
    text-align: center;
}

/* **************** FORM **************** */
.contact-form label {
  padding-bottom: 10px;
}

.contact-form input {
  margin-bottom: 20px;
  padding: 10px 20px;
  border-radius: 10px;
  border-color: var(--gold-color);
}

#inp-name-text {
    padding: 10px 10px 200px 10px;
}

.send-btn {
    outline: none;
    border: none;
    padding: 10px;
    font-size: 18px;
    border-radius: 10px;
    background-color: var(--gold-color);
    color: var(--white-color);
    cursor: pointer;
    transition: 0.3s;
}

.send-btn:hover {
    background-color: var(--dark-color);
}

/* **************** CONTENT **************** */
.data-item {
  display: flex;
  align-items: center;
  margin: 25px 0px;
}

.data-item i {
  font-size: 25px;
  color: var(--gold-color);
  margin-left: 10px;
}

.data-item p {
  font-size: 18px;
}

/* **************** RESPONSIVE **************** */
@media screen and (max-width : 700px) {
    .main-wrapper {
        grid-template-columns: 1fr;
        row-gap: 50px;
      }
}

