@import url("/styles/basics/basic01.css");
@import url("/styles/basics/font.css");
@import url("/styles/basics/basic02.css");

html,
body {
  width: 100%;
  height: 100%;
  min-width: 1280px;
  background-image: url("/assets/img/bg.svg");
  background-repeat: repeat;
  background-size: 80%;
}

body {
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

body.loaded {
  opacity: 1;
}
body {
  transition: opacity 0.8s ease-in-out;
}
a,
li,
input,
button,
h3,
p,
th,
td,
select,
option,
span,
h2 {
  font-family: IRANSans;
  font-weight: normal;
}
header {
  width: 100%;
  height: 5rem;
}
main {
  width: 100%;
  display: inline-block;
}
.SectionTitle {
  height: 5rem;
  line-height: 5rem;
  text-align: center;
  font-size: 2.5rem;
  color: #7a7a7a;
  border-bottom: 1px solid #d6d6d6;
}
.WrapperDiv {
  padding: 2rem;
  border-radius: 2rem;
  background-color: var(--primary-color-glass);
}
.ContentHolderDiv {
  width: 100%;
  height: 100%;
}
.ContentDiv {
  border-radius: 1rem;
  float: right;
}
.DataEntry {
  width: 100%;
  height: 2.5rem;
  padding: 0 0.5rem;
  font-size: 0.8rem;
  border: 1px solid var(--primary-color);
  border-radius: 0.2rem;
  transition: all ease-in-out 300ms;
}
.DataEntry:focus {
  border: 1px groove var(--secondary-color);
}
.DataEntryCaption {
  text-align: left;
}
.Buttons {
  color: #fff;
  border-radius: 0.2rem;
  background-color: var(--secondary-color);
  transition: all ease-in-out 300ms;
}
.Buttons:active {
  filter: brightness(50%);
}

footer {
  width: 100%;
  height: 30rem;
  /* background-color: #4b4747; */
  background-image: url("/assets/img/footer.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
#div_footer {
  height: calc(100% - 2rem);
  width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}
.FooterTile {
  width: 100%;
  height: 2rem;
  line-height: 2rem;
  text-align: center;
  color: #fff;
  background-color: var(--primary-color);
}
.FooterInfo {
  height: 100%;
  margin-left: 0.5rem;
  padding: 0.5rem;
  text-align: center;
  border-radius: 1rem;
  background-color: rgba(255, 255, 255, 0.5);
  float: left;
}
.FooterInfo img {
  width: 25rem;
}
.FooterNote1 {
  width: 30rem;
  padding: 1.5rem;
  text-align: justify;
}
.FooterNote2 {
  width: 30rem;
  height: 10rem;
  direction: ltr;
}
.AddressTable {
  width: 100%;
}
.Address td {
  direction: rtl;
  text-align: center;
}
.Phone td,
.Email td,
.Instagram td,
.Telegram td {
  width: 60%;
  height: 2rem;
  font-family: sans-serif;
  font-size: 1rem;
  text-align: left;
  direction: ltr;
}
.Address th {
  background-image: url("/assets/img/address.svg");
  background-repeat: no-repeat;
  background-size: 2rem;
  background-position: center;
  text-align: center;
}
.Phone th {
  width: 40%;
  background-image: url("/assets/img/phone.svg");
  background-repeat: no-repeat;
  background-size: 2rem;
  background-position: calc(100% - 1rem);
  text-align: right;
}
.Email th {
  background-image: url("/assets/img/email.svg");
  background-repeat: no-repeat;
  background-size: 2rem;
  background-position: calc(100% - 1rem);
  text-align: right;
}
.Instagram th {
  background-image: url("/assets/img/instagram.svg");
  background-repeat: no-repeat;
  background-size: 2rem;
  background-position: calc(100% - 1rem);
  text-align: right;
}
.Telegram th {
  background-image: url("/assets/img/Telegram.svg");
  background-repeat: no-repeat;
  background-size: 2rem;
  background-position: calc(100% - 1rem);
  text-align: right;
}
