/*#region Fonts*/
@font-face {
  font-family: "iransans";
  src: url("../fonts/iransanswebfanum/iransanswebfa_light.woff");
  font-weight: 300;
}
@font-face {
  font-family: "iransans";
  src: url("../fonts/iransanswebfanum/iransanswebfa.woff");
  font-weight: 400;
}
@font-face {
  font-family: "iransans";
  src: url("../fonts/iransanswebfanum/iransanswebfa_medium.woff");
  font-weight: 500;
}
@font-face {
  font-family: "estedad";
  src: url("../fonts/estedad/Estedad-Thin.woff2");
  font-weight: 100;
}
@font-face {
  font-family: "estedad";
  src: url("../fonts/estedad/Estedad-Light.woff2");
  font-weight: 300;
}
@font-face {
  font-family: "estedad";
  src: url("../fonts/estedad/Estedad-Regular.woff2");
  font-weight: 400;
}
@font-face {
  font-family: "estedad";
  src: url("../fonts/estedad//Estedad-Medium.woff2");
  font-weight: 500;
}
@font-face {
  font-family: "estedad";
  src: url("../fonts/estedad/Estedad-Bold.woff2");
  font-weight: 700;
}
@font-face {
  font-family: "estedad";
  src: url("../fonts/estedad//Estedad-ExtraBold.woff2");
  font-weight: 900;
}
@font-face {
  font-family: "awesome";
  src: url("../fonts/awesome/fa-light-300.woff2");
  font-weight: 300;
}
/*#endregion*/
/*#region Icons*/
.fa {
  font-family: "awesome";
  font-style: normal;
}

.fa::before {
  content: var(--fa);
}

.fa-home {
  --fa: "\f015";
}

.fa-bars {
  --fa: "\f0c9";
}

.fa-times {
  --fa: "\f00d";
}

.fa-cog {
  --fa: "\f013";
}

.fa-pencil {
  --fa: "\f303";
}

.fa-mobile {
  --fa: "\f3ce";
}

/*#endregion*/
/*#region Common*/
* {
  padding: 0;
  margin: 0;
  direction: rtl;
  user-select: none;
  font-family: "estedad";
  font-size: 12px;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: #01286d;
  transition: all 300ms;
}
a:hover {
  color: #00bc3b !important;
}

li {
  list-style: none;
  color: #62646A;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "estedad";
  font-weight: 700;
  padding: 8px 0;
}

h1 {
  color: #01286d;
  font-size: 22px;
}

h2 {
  font-size: 20px;
  color: rgba(1, 40, 109, 0.9);
}

h3 {
  font-size: 18px;
  color: rgba(1, 40, 109, 0.8);
}

h4 {
  font-size: 16px;
  color: rgba(1, 40, 109, 0.7);
}

h5 {
  font-size: 14px;
  color: rgba(1, 40, 109, 0.6);
}

h6 {
  font-size: 13px;
  color: rgba(1, 40, 109, 0.5);
}

p {
  font-family: "iransans";
  color: #62646A;
  font-weight: 400;
}

strong {
  font-family: "iransans";
  color: #222222;
  font-weight: 500;
}

button, input[type=submit] {
  background-color: transparent;
  outline: none;
  border: none;
}

.container {
  padding: 16px 5%;
  min-height: 400px;
}

.breadcrumb {
  background-color: #00bc3b;
}
.breadcrumb ul {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}
.breadcrumb a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 4px;
  color: #fff;
}
.breadcrumb a:hover {
  color: #01286d !important;
}
.breadcrumb li:not(:last-child) a:after {
  content: "\f104";
  font-family: "awesome";
}
.breadcrumb li:last-child a {
  cursor: auto;
  color: #01286d !important;
}

.text-danger {
  font-size: 10px;
  color: #fc0012;
  display: block;
}

/*#endregion*/
/*#region Header*/
.header {
  position: sticky;
  top: 0;
  background-color: #01286d;
  display: flex;
  gap: 16px;
  align-items: center;
  line-height: 40px;
  padding: 16px 24px;
  border-top: 4px solid #00bc3b;
  z-index: 999;
}
.header-logo {
  position: relative;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}
.header-logo h2 {
  color: #fff;
}
.header-logo button {
  width: 28px;
  height: 28px;
  color: #fff;
  cursor: pointer;
}
.header-logo button i {
  font-size: 24px;
}
.header-logo.show .header-menu {
  transform: translateX(0);
}
.header-logo.hide .header-menu {
  transform: translateX(100%);
}
.header-menu {
  position: absolute;
  z-index: 100;
  top: calc(100% + 16px);
  right: -30px;
  left: 0;
  width: 100%;
  transition: all 400ms;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: -2px 0 4px rgba(0, 188, 59, 0.4);
}
.header-menu a {
  display: flex;
  gap: 8px;
  align-items: center;
  width: 100%;
  padding: 4px 16px;
  font-weight: 700;
  font-size: 14px;
}
.header-menu a:not(:last-child) {
  border-bottom: 1px solid rgba(233, 233, 233, 0.2);
}
.header-menu a {
  background-color: #01286d;
}
.header-menu a:hover {
  background-color: #003ca5;
}
.header-contact {
  flex: 1 1 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.header-contact a {
  display: flex;
  flex-direction: row-reverse;
  gap: 4px;
}
.header-contact a i {
  font-size: 18px;
}
.header-contact a span {
  font-family: "iransans";
  font-size: 18px;
  font-weight: 500;
}
.header a {
  color: #fff;
}

/*#endregion*/
/*#region Banners-service*/
.banner-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 30px 0;
}
.banner-main:first-child {
  padding-top: 0;
}
.banner-main-img {
  border-radius: 16px;
  overflow: hidden;
}
.banner-main-img img {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner-main-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.banner-main-text h2 {
  font-size: 24px;
  line-height: 48px;
  font-weight: 900;
}
.banner-main-text p {
  font-size: 14px;
  line-height: 30px;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
}
.banner-main-tag {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}
.banner-main-tag li {
  padding: 4px 16px;
  border-radius: 16px;
  border: 1px solid #8b5e00;
  color: #8b5e00;
  background-color: #fff3e0;
  font-size: 12px;
  font-weight: 500;
}
.banner-main-btn {
  display: grid;
  grid-template-columns: 1fr 1fr;
  flex-direction: column;
  gap: 16px;
}
.banner-main-btn a {
  font-family: "iransans";
  display: block;
  font-size: 16px;
  color: #fff;
  background-color: #8b5e00;
  padding: 8px 24px;
  text-align: center;
  border-radius: 40px;
}
.banner-main-btn a:hover {
  background-color: white;
  color: #8b5e00 !important;
  font-weight: 700;
  border: 1px solid #8b5e00;
}
.banner-main:nth-of-type(2) .banner-main-text {
  order: -1;
}

.cta {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-content: center;
}
.cta img, .cta picture {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden !important;
  object-fit: cover;
}

/*#region Banners-service*/
/*#region cta*/
/*endregion*/
/*#region blogcard*/
.whyus {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
}
.whyus-title {
  display: grid;
  justify-content: center;
  align-items: center;
  padding: 16px 0;
}
.whyus-title > h2 {
  text-align: center;
  font-size: 25px;
}
.whyus-title > p {
  text-align: center;
  font-size: 14px;
}
.whyus-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 16px;
  padding: 30px 0;
}
.whyus-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  border: 1px solid #e9e9e9;
  border-radius: 5px 5px 20px 5px;
  padding: 20px 16px;
  box-shadow: 5px 5px 4px #e9e9e9;
}
.whyus-item p {
  text-align: center;
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
}
.whyus-item h3 {
  text-align: center;
}
.whyus-icon img {
  width: 100px;
  height: 100px;
}

/*endregion*/
/*#region shortdescription*/
.main-shortdesc {
  align-items: center;
  min-height: auto;
}
.main-shortdesc-text {
  align-items: center;
  background-color: rgba(1, 40, 109, 0.1);
  border-radius: 10px 10px 50px 10px;
  border: 1px solid #00bc3b;
  box-shadow: 4px 4px 4px #e9e9e9;
  padding: 30px;
  text-align: center;
}
.main-shortdesc-text h2 {
  text-align: center;
}
.main-shortdesc-text p {
  font-size: 14px;
  color: #00bc3b;
}
.main-shortdesc-text p:last-child {
  text-align: justify;
  line-height: 30px;
  color: #62646A;
}
.main-shortdesc-text span {
  font-size: 14px;
  color: #62646A;
}

/*endregion*/
/*#region blogcard*/
.blog {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
}
.blog-title {
  display: grid;
  justify-content: center;
  align-items: center;
  padding: 16px 0;
}
.blog-title > h1 {
  text-align: center;
  font-size: 25px;
}
.blog-title > p {
  text-align: center;
  font-size: 14px;
  color: #00bc3b;
}
.blog-list {
  display: grid;
  grid-template-columns: 2fr 2fr;
  gap: 16px;
  width: 100%;
}
.blog-list .blog-item {
  justify-content: space-between;
}
.blog-item {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 16px;
  border: 1px solid #e9e9e9;
  border-radius: 5px 5px 20px 5px;
  padding: 10px 16px;
  box-shadow: 5px 5px 4px #e9e9e9;
}
.blog-img img {
  width: 100px;
  height: 100px;
}

/*endregion*/
/*#region Description*/
.description {
  overflow: hidden;
  min-height: fit-content;
}
.description-container {
  max-height: 180px;
  overflow: hidden;
  position: relative;
}
.description-container:before {
  content: "";
  background: linear-gradient(180deg, hsla(0, 0%, 100%, 0) 50%, #fff);
  position: absolute;
  width: 100%;
  height: 36px;
  bottom: 0;
}
.description-container p {
  line-height: 28px;
}
.description-toggler span {
  font-size: 13px;
  font-weight: 500;
  color: #01286d;
  cursor: pointer;
  padding: 8px 0;
  display: block;
}
.description.show .description-container {
  max-height: fit-content;
}
.description.show .description-container:before {
  display: none;
}
.description.show .description-toggler span:first-child {
  display: none;
}
.description.hide .description-toggler span:last-child {
  display: none;
}

/*#endregion*/
.service {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
  justify-content: center;
  align-items: flex-start;
}
.service-main img {
  position: relative;
  object-fit: cover;
  max-width: 98%;
  display: block;
  border-radius: 16px;
  margin: 20px auto;
}
.service-main-breadcrumb {
  margin: 16px;
}
.service-main-breadcrumb a {
  font-weight: bold;
  background-color: #00bc3b;
  max-width: max-content;
  padding: 5px;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
}
.service-main-breadcrumb a:hover {
  color: #fff !important;
}
.service-main-tag {
  display: flex;
  position: relative;
  bottom: 60px;
  right: 5%;
  gap: 16px;
}
.service-main-tag p {
  font-weight: bold;
  background-color: #00bc3b;
  max-width: max-content;
  padding: 5px;
  border-radius: 5px;
  color: #fff;
}
.service-main-text p {
  font-size: 14px;
  line-height: 28px;
  text-align: justify;
}
.service-main-text p strong {
  font-size: 14px;
  font-weight: 600;
}
.service-main-text h2 u a {
  font-size: 20px;
}
.service-main-text h3 u a {
  font-size: 18px;
}
.service-main-text h4 u a {
  font-size: 16px;
}
.service-main-text h5 u a {
  font-size: 14px;
}
.service-main-text ul {
  padding-right: 30px;
}
.service-main-text ul li {
  font-size: 14px;
  line-height: 28px;
  list-style: disc;
  margin-top: 8px;
}

/*#region contactus*/
.main-contact {
  align-items: center;
  min-height: auto;
}
.main-contact-text {
  align-items: center;
  background-color: rgba(1, 40, 109, 0.1);
  border-radius: 10px 10px 50px 10px;
  border: 1px solid #00bc3b;
  box-shadow: 4px 4px 4px #e9e9e9;
  padding: 30px;
  text-align: center;
}
.main-contact-text h1 {
  text-align: center;
}
.main-contact-text p {
  font-size: 14px;
  color: #00bc3b;
}
.main-contact-text p:last-child {
  text-align: center;
  line-height: 30px;
  color: #62646A;
}
.main-contact-btn {
  margin: 16px 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  flex-direction: column;
  gap: 16px;
}
.main-contact-btn a {
  font-family: "iransans";
  display: block;
  font-size: 16px;
  color: #fff;
  background-color: #8b5e00;
  padding: 8px 24px;
  text-align: center;
  border-radius: 40px;
}
.main-contact-btn a:hover {
  background-color: white;
  color: #8b5e00 !important;
  font-weight: 700;
  border: 1px solid #8b5e00;
}

/*endregion*/
.sidebar {
  padding: 16px;
  border: 1px solid #00bc3b;
  background-color: #e9e9e9;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: sticky;
  top: 95px;
}
.sidebar-other {
  order: 1;
}
.sidebar-blog-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.sidebar-blog-list .blog-item {
  flex-direction: row-reverse;
  padding: 0;
  justify-content: space-between;
}
.sidebar-blog-list .blog-text {
  flex: 1 1 auto;
}
.sidebar-blog-item {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}
.sidebar-blog h3 {
  color: #01286d;
  line-height: 30px;
  font-size: 16px;
}
.sidebar-blog h4 {
  color: #01286d;
  font-size: 14px;
}
.sidebar-blog h4:hover {
  cursor: pointer;
}
.sidebar-blog img {
  width: 50px;
  height: 50px;
  border: 2px solid #00bc3b;
}
.sidebar > a {
  display: flex;
  border-radius: 8px;
  overflow: hidden;
}
.sidebar > a img {
  border-radius: 16px;
  display: block;
  margin: auto;
  width: 100%;
}
.sidebar ul {
  padding: 0 10px;
}
.sidebar ul li {
  list-style: circle;
  font-size: 14px;
  color: #62646A;
}

.cms-nav {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  position: fixed;
  top: 50%;
  background-color: #00bc3b;
  padding: 10px;
  border-radius: 20px 0 0 20px;
  align-items: center;
  overflow: hidden;
}
.cms-nav-icon {
  width: 100%;
  height: 100%;
}
.cms-nav-icon span {
  font-size: 12px;
  color: #fff;
}

.call {
  width: 40px;
  height: 40px;
  position: fixed;
  border-radius: 50%;
  bottom: 30px;
  right: 1%;
  overflow: hidden;
  background-color: #00bc3b;
  display: flex;
  justify-content: center;
  align-items: center;
}
.call-btn {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
}
.call-btn i {
  font-size: 24px;
  color: #fff;
}

/*#region login*/
.login fieldset {
  display: grid;
  gap: 4px;
  outline: none;
  border: none;
}
.login form {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
  background-color: #e9e9e9;
  width: 30%;
  margin: 5% auto;
  padding: 16px 24px;
  box-shadow: 0 0 5px #fff;
  border-radius: 5px;
}
.login form input {
  outline: none;
  border: none;
  border-radius: 4px;
  display: block;
  line-height: 28px;
}
.login form input:not([type=checkbox]):focus {
  border: 1px solid #fff3e0;
  box-shadow: 0 0 4px #62646A;
  outline: none;
}
.login form input[type=checkbox] {
  display: inline;
}
.login form input[type=submit] {
  background-color: #00bc3b;
  color: #01286d;
  padding: 3px;
  font-size: 13px;
  cursor: pointer;
  border-radius: 5px;
}
.login form label {
  font-size: 13px;
}
.login .form-checkbox label {
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
}

/*#endreigon*/
/*#region Footer*/
.footer {
  background-color: #01286d;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  justify-content: center;
  justify-items: center;
  align-items: flex-start;
  padding: 10px 50px;
  border-top: 5px solid #00bc3b;
}
.footer > div:not(:last-child) {
  width: fit-content;
}
.footer-call h3 {
  color: #fff;
  line-height: 80px;
}
.footer-call a {
  display: flex;
  flex-direction: row;
  align-items: center;
  line-height: 40px;
  gap: 16px;
  color: #fff;
}
.footer-call a:hover i {
  color: #fff;
}
.footer-call i {
  display: flex;
  justify-content: center;
  font-size: 20px;
  background-color: #00bc3b;
  width: 40px;
  height: 40px;
  padding: 2px;
  margin: 5px;
  border-radius: 8px;
}
.footer-call span {
  font-size: 18px;
}
.footer-nav h3 {
  color: #fff;
  line-height: 80px;
}
.footer-nav a {
  color: #fff;
  line-height: 40px;
}
.footer-nav span {
  font-size: 16px;
}
.footer-blog-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-blog-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}
.footer-blog h3 {
  color: #fff;
  line-height: 80px;
}
.footer-blog h4 {
  color: #fff;
  font-size: 14px;
}
.footer-blog h4:hover {
  cursor: pointer;
}
.footer-blog img {
  width: 50px;
  height: 50px;
  border: 2px solid #00bc3b;
}
.footer-copy {
  grid-column: span 3;
  width: 100%;
  text-align: center;
  line-height: 40px;
}
.footer-copy a, .footer-copy p {
  color: rgba(255, 255, 255, 0.7);
}

/*#endregion*/
/*#region Media*/
@media (max-width: 768px) {
  /*#region Header*/
  .header {
    padding: 4px 16px;
    flex-direction: column;
    gap: 0;
    box-shadow: 0 -1px 10px #00bc3b;
  }
  .header-logo {
    width: 100%;
    justify-content: flex-start;
  }
  .header-menu {
    width: 100%;
    position: fixed;
    top: 108px;
    right: -5px;
  }
  .header-menu a:first-child {
    border-top: 1px solid rgba(233, 233, 233, 0.2);
  }
  .header-contact {
    width: 100%;
    justify-content: space-between;
  }
  .header-contact a span {
    font-size: 14px;
  }
  /*#endregion*/
  /*#region banner*/
  .banner-main {
    display: grid;
    grid-template-columns: 1fr;
    margin-bottom: 20px;
  }
  .banner-main:nth-of-type(2) .banner-main-img {
    order: -1;
  }
  .banner-main-text a {
    font-size: 13px;
    padding: 6px 16px;
  }
  /*#endregion*/
  /*#region whyus*/
  .whyus-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
  }
  /*#endregion*/
  /*#region blog*/
  .blog-list {
    display: grid;
    grid-template-columns: 1fr;
  }
  .blog-text h3 {
    font-size: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    text-align: justify;
  }
  /*#endregion*/
  /*#region Service*/
  .service {
    grid-template-columns: 1fr;
  }
  .sidebar {
    position: unset;
  }
  .sidebar img:first-child {
    order: -1;
  }
  .sidebar-other {
    order: -1;
  }
  /*#ednregion*/
  /*#region contactus*/
  .main-contact-btn {
    display: grid;
    grid-template-columns: 1fr;
  }
  /*#endregion*/
  /*#region Footer*/
  .footer {
    grid-template-columns: 1fr;
  }
  .footer-copy {
    grid-column: span 1;
  }
  /*#endregion*/
}
/*#endregion*/

/*# sourceMappingURL=style.css.map */
