@font-face {
  font-family: "Yekan";
  src: url("../font/Yekan/Yekan.woff2") format("woff2"),
    url("../font/Yekan/Yekan.woff") format("woff");
}

* {
  font-family: Yekan, "Heebo", sans-serif;
}

/********** Template CSS **********/
:root {
  --primary: #00b98e;
  --secondary: #ff6922;
  --light: #effdf5;
  --dark: #0e2e50;
  --c-primary-1: #081c15;
  --c-primary-2: #1b4332;
  --c-primary-3: #2d6a4f;
  --c-primary-4: #40916c;
  --c-primary-5: #52b788;
  --c-primary-6: #74c69d;
  --c-primary-7: #95d5b2;
  --c-primary-8: #b7e4c7;
  --c-primary-9: #d8f3dc;
  --c-grey-1: #102a42;
  --c-grey-2: #06080a;
  --c-grey-3: #9eb2c7;
  --c-grey-4: #f1f5f8;
  --c-white: rgb(255, 255, 255);
  --c-footer: #10002b;
  --ff-primary: "Yekan", sans-serif;
  --transition: all 0.3s linear;
  --light-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --dark-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);

  /* login pannel */
  --primary-color: #4ea685;
  --secondary-color: #57b894;
  --black: #000000;
  --white: #ffffff;
  --gray: #efefef;
  --gray-2: #757575;

  --facebook-color: #4267b2;
  --google-color: #db4437;
  --twitter-color: #1da1f2;
  --insta-color: #e1306c;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/* Carousel */
.carousel-texts {
  direction: rtl;
  text-align: right;
}

/*** Button ***/
.btn {
  transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-secondary {
  color: #ffffff;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  border-radius: 50px;
}

/*** Navbar ***/
.nav-bar {
  position: relative;
  margin-top: 20px;
  padding: 0 3rem;
  transition: 0.5s;
  z-index: 998;
}

.nav-bar.sticky-top {
  position: sticky;
  padding: 0;
  z-index: 998;
  top: 0;
}

.navbar {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 5px;
  transition: 0.5s;
}

.navbar .dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(-180deg);
}

.navbar-light .navbar-nav .nav-link {
  margin-right: 30px;
  padding: 25px 0;
  color: #ffffff;
  font-size: 19px;
  text-transform: uppercase;
  outline: none;
}

.navbar-login-btn {
  position: relative;
  top: 3px;
  font-size: 26px;
}

.nav-login {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--primary);
}

.btn .btn-link {
  box-shadow: none !important;
}

@media (max-width: 991.98px) {
  .nav-bar {
    margin: 0;
    padding: 0;
  }

  .navbar-light .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }

  .navbar-light .navbar-nav {
    border-top: 1px solid #eeeeee;
  }
}

.navbar-light .navbar-brand {
  height: 75px;
}

.navbar-light .navbar-nav .nav-link {
  color: var(--dark);
  font-weight: 500;
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    top: 100%;
    margin-top: 0;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
  }

  .navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
  }
}

.navbar-login-button i {
  font-size: 20px;
}

/*** Header ***/
@media (min-width: 992px) {
  .header {
    margin-top: 20px;
  }
}

.header-carousel .owl-nav {
  position: absolute;
  top: 50%;
  left: -25px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
  margin: 7px 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--primary);
  border-radius: 40px;
  font-size: 20px;
  transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
  background: var(--dark);
}

@media (max-width: 992px) {
  .left-side {
    width: 100% !important;
  }
}

@media (max-width: 768px) {
  .header-carousel .owl-nav {
    left: 25px;
  }
}

.breadcrumb-item+.breadcrumb-item::before {
  color: #dddddd;
}

/*** Icon ***/
.icon {
  padding: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff !important;
}

/*** About ***/
.about-img img {
  position: relative;
  z-index: 2;
  width: 500px;
  height: auto;
  object-fit: cover;
}

.about-img::before {
  position: absolute;
  content: "";
  top: 0;
  left: -50%;
  width: 100%;
  height: 100%;
  background: var(--primary);
  transform: skew(20deg);
  z-index: 1;
}

/*** Category ***/
.cat-item div {
  background: #ffffff;
  border: 1px dashed rgba(0, 185, 142, 0.3);
  transition: 0.5s;
}

.cat-item:hover div {
  background: var(--primary);
  border-color: transparent;
}

.cat-item div * {
  transition: 0.5s;
}

.cat-item:hover div * {
  color: #ffffff !important;
}

.Category-icons {
  width: 80px;
}

/*** Property List ***/
.nav-pills .nav-item .btn {
  color: var(--dark);
}

.nav-pills .nav-item .btn:hover,
.nav-pills .nav-item .btn.active {
  color: #ffffff;
}

.property-item {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
}

.property-item img {
  transition: 0.5s;
}

.property-item:hover img {
  transform: scale(1.1);
}

.property-item .border-top {
  border-top: 1px dashed rgba(0, 185, 142, 0.3) !important;
}

.property-item .border-end {
  border-right: 1px dashed rgba(0, 185, 142, 0.3) !important;
}

/*** Team ***/
.team-item {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
  transition: 0.5s;
}

.team-item .btn {
  color: var(--primary);
  background: #ffffff;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
}

.team-item .btn:hover {
  color: #ffffff;
  background: var(--primary);
}

.team-item:hover {
  border-color: var(--secondary) !important;
}

.team-item:hover .bg-primary {
  background: var(--secondary) !important;
}

.team-item:hover .bg-primary i {
  color: var(--secondary) !important;
}

/*** Testimonial ***/
.testimonial-carousel {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (min-width: 576px) {
  .testimonial-carousel {
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .nav-bar {
    top: -18px;
  }
}

.testimonial-carousel .testimonial-item .border {
  border: 1px dashed rgba(0, 185, 142, 0.3) !important;
}

.testimonial-carousel .owl-nav {
  position: absolute;
  width: 100%;
  height: 40px;
  top: calc(50% - 20px);
  left: 0;
  display: flex;
  justify-content: space-between;
  z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--primary);
  border-radius: 40px;
  font-size: 20px;
  transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  background: var(--dark);
}

.C-Testimonial {
  text-align: right;
}

.testimonial-item {
  direction: rtl;
}

.testimonial-item-user {
  direction: ltr;
}

.testimonial-item-user img {
  border-radius: 50%;
  width: 70px;
  height: 70px;
  object-fit: cover;
}

/* news-index */

.job-item {
  text-align: right;
  direction: rtl;
}

.job-item {
  border: 1px solid transparent;
  border-radius: 2px;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
  transition: 0.5s;
}

.job-item:hover {
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: none;
}

/*** Footer ***/
.footer .btn.btn-social {
  margin-right: 5px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 35px;
  transition: 0.3s;
}

.footer .btn.btn-social img {
  width: 20px;
  height: 20px;
}

.footer .btn.btn-social:hover {
  color: var(--primary);
  border-color: var(--light);
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: right;
  font-size: 15px;
  font-weight: normal;
  text-transform: capitalize;
  transition: 0.3s;
}

.footer .btn.btn-link:hover {
  letter-spacing: 1px;
  box-shadow: none;
}

.footer .form-control {
  border-color: rgba(255, 255, 255, 0.5);
}

.footer .copyright {
  padding: 25px 0;
  font-size: 15px;
  border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
  color: var(--light);
}

.footer .footer-menu a {
  margin-left: 15px;
  padding-left: 15px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .footer-menu a:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}

/* Customize Alert */

.alertc {
  z-index: 10000000;
  width: 400px;
  background-color: #fff;
  border-radius: 6px;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.1);
  text-align: center;
  padding: 0px 30px 30px;
  color: #333;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: var(--dark-shadow);
  visibility: hidden;
  transition: transform 0.4s, top 0.4s;
}


.alertc.open-alertc {
  visibility: visible;
  top: 50%;
  transform: translate(-50%, -50%) scale(1);
}

.alertc img {
  width: 100px;
  margin-top: -50px;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.alertc h2 {
  font-size: 30px;
  font-weight: 500;
  margin: 30px 0 10px;
}

.alertc p {
  font-size: 18px;
}

.alertc a {
  margin-top: 12px;
  font-size: 18px;
  color: rgb(255, 0, 0);
}

.alertc form {
  width: 100%;
}

.alertc-btn {
  width: 100%;
  margin-top: 50px;
  padding: 10px 0;
  background: var(--c-primary-5);
  color: #fff;
  border: 0;
  outline: none;
  font-size: 18px;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
}

/* Guest Login Form */

.lf-container {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  direction: ltr;
}

.lf-row {
  display: flex;
  flex-wrap: wrap;
  height: 100vh;
}

.lf-col {
  width: 50%;
}

.lf-align-items-center {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.lf-form-wrapper {
  width: 100%;
  max-width: 28rem;
}

.lf-form {
  padding: 1rem;
  background-color: var(--white);
  border-radius: 1.5rem;
  width: 100%;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  transform: scale(0);
  transition: 0.5s ease-in-out;
  transition-delay: 1s;
}

.lf-input-group {
  position: relative;
  width: 100%;
  margin: 1rem 0;
  direction: rtl;
}

.lf-input-group i {
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--gray-2);
}

.lf-input-group input {
  width: 100%;
  padding: 1rem 3rem;
  font-size: 1rem;
  background-color: var(--gray);
  border-radius: 0.5rem;
  border: 0.125rem solid var(--white);
  outline: none;
}

.lf-input-group input:focus {
  border: 0.125rem solid var(--primary-color);
}

.lf-btn {
  cursor: pointer;
  width: 100%;
  padding: 0.6rem 0;
  border-radius: 0.5rem;
  border: none;
  background-color: var(--primary-color);
  color: var(--white);
  font-size: 1.2rem;
  outline: none;
}

.lf-form p {
  margin: 1rem 0;
  font-size: 0.9rem;
}

.lf-backtoindex-right {
  margin-top: 10px;
  font-weight: 600;
  position: absolute;
  top: 5px;
  right: 20px;
}

.lf-backtoindex-left {
  margin-top: 10px;
  font-weight: 600;
  position: absolute;
  top: 5px;
  left: 20px;
}

.lf-backtoindex-right a,
.lf-backtoindex-left a {
  color: var(--c-primary-3);
}

.lf-flex-col {
  flex-direction: column;
}

.lf-social-list {
  margin: 2rem 0;
  padding: 1rem;
  border-radius: 1.5rem;
  width: 100%;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  transform: scale(0);
  transition: 0.5s ease-in-out;
  transition-delay: 1.2s;
}

.lf-social-list>div {
  color: var(--white);
  margin: 0 0.5rem;
  padding: 0.7rem;
  cursor: pointer;
  border-radius: 0.5rem;
  cursor: pointer;
  transform: scale(0);
  transition: 0.5s ease-in-out;
}

.lf-social-list>div:nth-child(1) {
  transition-delay: 1.4s;
}

.lf-social-list>div:nth-child(2) {
  transition-delay: 1.6s;
}

.lf-social-list>div:nth-child(3) {
  transition-delay: 1.8s;
}

.lf-social-list>div:nth-child(4) {
  transition-delay: 2s;
}

.lf-social-list>div>i {
  font-size: 1.5rem;
  transition: 0.4s ease-in-out;
}

.lf-social-list>div:hover i {
  transform: scale(1.5);
}

.lf-facebook-bg {
  background-color: var(--facebook-color);
}

.lf-google-bg {
  background-color: var(--google-color);
}

.lf-twitter-bg {
  background-color: var(--twitter-color);
}

.lf-insta-bg {
  background-color: var(--insta-color);
}

.lf-links {
  cursor: pointer;
  color: var(--c-primary-4);
}

.lf-container.lf-sign-in .lf-form.lf-sign-in,
.lf-container.lf-sign-in .lf-social-list.lf-sign-in,
.lf-container.lf-sign-in .lf-social-list.lf-sign-in>div,
.lf-container.lf-sign-up .lf-form.lf-sign-up,
.lf-container.lf-sign-up .lf-social-list.lf-sign-up,
.lf-container.lf-sign-up .lf-social-list.lf-sign-up>div {
  transform: scale(1);
}

.lf-content-row {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 6;
  width: 100%;
}

.lf-text {
  margin: 4rem;
}

.lf-text h2 {
  color: var(--white);
}

.lf-text h2 {
  font-size: 3.5rem;
  font-weight: 800;
  margin: 2rem 0;
  transition: 1s ease-in-out;
}

.lf-text p {
  font-weight: 600;
  transition: 1s ease-in-out;
  transition-delay: 0.2s;
}

.lf-img img {
  width: 30vw;
  transition: 1s ease-in-out;
  transition-delay: 0.4s;
}

.lf-text.lf-sign-in h2,
.lf-text.lf-sign-in p,
.lf-img.lf-sign-in img {
  transform: translateX(-250%);
}

.lf-text.lf-sign-up h2,
.lf-text.lf-sign-up p,
.lf-img.lf-sign-up img {
  transform: translateX(250%);
}

.lf-container.lf-sign-in .lf-text.lf-sign-in h2,
.lf-container.lf-sign-in .lf-text.lf-sign-in p,
.lf-container.lf-sign-in .lf-img.lf-sign-in img,
.lf-container.lf-sign-up .lf-text.lf-sign-up h2,
.lf-container.lf-sign-up .lf-text.lf-sign-up p,
.lf-container.lf-sign-up .lf-img.lf-sign-up img {
  transform: translateX(0);
}

/* BACKGROUND */

.lf-container::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100vh;
  width: 300vw;
  transform: translate(35%, 0);
  background-image: linear-gradient(-45deg,
      var(--primary-color) 0%,
      var(--secondary-color) 100%);
  transition: 1s ease-in-out;
  z-index: 6;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-bottom-right-radius: max(50vw, 50vh);
  border-top-left-radius: max(50vw, 50vh);
}

.lf-container.lf-sign-in::before {
  transform: translate(0, 0);
  right: 50%;
}

.lf-container.lf-sign-up::before {
  transform: translate(100%, 0);
  right: 50%;
}

.lf-timer {
  color: #2e2e2ed7;
}

/* RESPONSIVE */

@media only screen and (max-width: 748px) {

  .lf-container::before,
  .lf-container.lf-sign-in::before,
  .lf-container.lf-sign-up::before {
    height: 100vh;
    border-bottom-right-radius: 0;
    border-top-left-radius: 0;
    z-index: 0;
    transform: none;
    right: 0;
  }

  /* .container.sign-in .col.sign-up {
        transform: translateY(100%);
    } */

  .lf-container.lf-sign-in .lf-col.lf-sign-in,
  .lf-container.lf-sign-up .lf-col.lf-sign-up {
    transform: translateY(0);
  }

  .lf-content-row {
    align-items: flex-start !important;
  }

  .lf-content-row .lf-col {
    transform: translateY(0);
    background-color: unset;
  }

  .lf-col {
    width: 100%;
    position: absolute;
    padding: 2rem;
    background-color: var(--white);
    border-top-left-radius: 2rem;
    border-top-right-radius: 2rem;
    transform: translateY(100%);
    transition: 1s ease-in-out;
  }

  .lf-row {
    align-items: flex-end;
    justify-content: flex-end;
  }

  .lf-form,
  .lf-social-list {
    box-shadow: none;
    margin: 0;
    padding: 0;
  }

  .lf-text {
    margin: 0;
  }

  .lf-text p {
    display: none;
  }

  .lf-text h2 {
    margin: 0.5rem;
    font-size: 2rem;
  }

  .lf-row-r {
    position: relative;
    right: 0;
  }
}

/* FORM */

.formbold-mb-3 {
  margin-bottom: 15px;
}

.formbold-relative {
  position: relative;
}

.formbold-opacity-0 {
  opacity: 0;
}

.formbold-stroke-current {
  stroke: #ffffff;
  z-index: 999;
}

#supportCheckbox:checked~div span {
  opacity: 1;
}

#supportCheckbox:checked~div {
  background: var(--c-primary-5);
  border-color: var(--c-primary-5);
}

.formbold-main-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px 0 40px;
  flex-direction: column;
  width: 100%;
}

.tox-tinymce {
  height: 300px !important;
}

.formbold-form-wrapper {
  margin: 0 auto;
  max-width: 570px;
  width: 100%;
  padding: 10px 40px;
  margin-top: 0;
}

.formbold-profile {
  width: 130px;
  height: 130px;
}

.formbold-profile img {
  width: 100%;
  height: 100%;
}

.formbold-form-wrapper-free {
  max-width: 570px;
  width: 100%;
  padding: 40px;
  margin-top: 20px;
}

.formbold-img {
  display: block;
  margin: 0 auto 45px;
}

.formbold-input-wrapp>div {
  display: flex;
  gap: 20px;
  /* flex-wrap: wrap; */
}

.formbold-input-flex {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.formbold-input-flex>div {
  width: 50%;
}

.formbold-form-input {
  max-width: 250px;
  min-width: 200px;
  padding: 13px 22px;
  border-radius: 5px;
  border: 1px solid #c5c5c5;
  background: #ffffff;
  font-weight: 500;
  font-size: 16px;
  color: #020202;
  outline: none;
  resize: none;
  max-width: 250px;
}

.formbold-form-input::placeholder,
select.formbold-form-input,
.formbold-form-input[type="date"]::-webkit-datetime-edit-text,
.formbold-form-input[type="date"]::-webkit-datetime-edit-month-field,
.formbold-form-input[type="date"]::-webkit-datetime-edit-day-field,
.formbold-form-input[type="date"]::-webkit-datetime-edit-year-field {
  color: rgba(0, 0, 0, 0.884);
}

.formbold-form-input:focus {
  border-color: var(--c-primary-4);
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
}

.formbold-form-label {
  color: var(--c-primary-2);
  font-weight: 800;
  font-size: 14px;
  line-height: 24px;
  display: block;
  margin-bottom: 10px;
  margin-right: 5px;
}

.formbold-checkbox-label {
  display: flex;
  cursor: pointer;
  user-select: none;
  font-size: 16px;
  line-height: 24px;
  color: var(--c-primary-4);
}

.formbold-checkbox-label a {
  margin-left: 5px;
  color: var(--c-primary-4);
}

.formbold-input-checkbox {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.formbold-checkbox-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin-right: 16px;
  margin-top: 2px;
  margin-left: 5px;
  border: 0.7px solid #696969;
  border-radius: 3px;
}

.formbold-form-file {
  padding: 12px;
  font-size: 14px;
  line-height: 24px;
  color: rgba(83, 99, 135, 0.5);
}

.formbold-form-file::-webkit-file-upload-button {
  display: none;
}

.formbold-form-file:before {
  content: "Upload";
  display: inline-block;
  background: #eeeeee;
  border: 0.5px solid #e7e7e7;
  border-radius: 3px;
  padding: 3px 12px;
  outline: none;
  white-space: nowrap;
  -webkit-user-select: none;
  cursor: pointer;
  color: #637381;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  margin-left: 10px;
}

.formbold-btn {
  width: max-content;
  font-size: 16px;
  border-radius: 5px;
  padding: 14px 25px;
  border: none;
  font-weight: 500;
  background-color: var(--c-primary-4);
  color: white;
  cursor: pointer;
  margin-top: 25px;
  transition: all 1s ease;
}

.formbold-btn:hover {
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
  background-color: var(--c-primary-5);
}

.formbold-redbtn {
  background-color: var(--google-color);
}

.formbold-redbtn:hover {
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
  background-color: rgb(211, 51, 51);
}

.formbold-w-45 {
  width: 45%;
}

.formbold-row {
  flex-direction: column;
}

.formbold-profile img {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.incms-profile {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 10px auto;
}

.nof {
  text-align: center;
  color: var(--c-primary-2);
  font-weight: 800;
  font-size: 16px;
  margin-top: 40px;
  margin-bottom: 5px;
}

.form-log {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  color: rgb(179, 0, 0);
}

.form-log-green {
  color: green;
}

.fbrr-btns {
  display: flex;
  gap: 20px;
}

.formbold-redbtn {
  background-color: rgb(190, 1, 1);
}

.formbold-redbtn:hover {
  background-color: rgb(228, 0, 0);
}

.formbold-goldbtn {
  background-color: rgb(167, 164, 0);
}

.formbold-goldbtn:hover {
  background-color: rgb(206, 202, 0);
}

.formexplain {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 30px auto 30px auto;
  gap: 4px;
  max-width: 80%;
}

.formexplain-a {
  color: var(--c-primary-3);
  font-weight: 800;
  line-height: 0;
}

.formexplain-a a {
  color: var(--c-primary-2);
  text-decoration: underline;
  font-size: 14px;
}

/* NEWS MANAGE */

/* News Manage */

.nmf-table {
  width: 70%;
  margin: auto;
  direction: rtl;
  margin-top: 100px;
  font-size: 18px;
}

.nmf-title {
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  font-size: 18px;
}

.nmfl-title {
  max-width: 80%;
  min-width: 60%;
}

.listofnews {
  width: 80%;
  margin: auto;
}

.listofnews table td {
  border-style: ridge;
  padding: 7px 10px;
}

.listofnews .managenewstitle {
  width: 60%;
}

.newnews {
  text-align: center;
  background-color: var(--c-primary-5);
  cursor: pointer;
  transition: all 1s ease;
}

.newnews:hover {
  background-color: var(--c-primary-4);
}

.nmfl-delete {
  background-color: rgb(252, 86, 86);
  cursor: pointer;
  border-radius: 10px 10px 10px 10px;
}

.nmfl-delete a {
  color: black;
}

.nmfl-update {
  background-color: var(--c-primary-8);
  cursor: pointer;
  border-radius: 10px 10px 10px 10px;
}

.nmfl-update a {
  color: black;
  width: 100%;
}

.user_info_form {}

.flex-1 {
  flex: 1;
}

.center_parent {
  display: flex;
  align-items: center;
  gap: 20px;
}


@media screen and (max-width: 1400px){
  .news-single {
    padding: 20px 0 20px !important;
  }
}

@media screen and (max-width: 982px) {
  .nmf-table {
    width: 100%;
  }
}

@media screen and (max-width: 612px) {
  .listofnews-senderinfo {
    display: none;
  }

  .center_parent {
    align-items: start;
    gap: 0;
    flex-direction: column;
  }

  .formbold-form-label {
    margin-left: auto;
  }

  .copyright_text {
    font-size: 13px;
  }
}

@media screen and (max-width: 576px) {
  .news-single {
    padding: 10px 0 0px !important;
  }
  .news-single .news-title a  {
    font-size: 20px;
  }
  .news-single .single-main {
    margin-top: 15px !important;
  }
}
@media screen and (max-width: 540px) {

  .formbold-input-wrapp {
    width: 100%;
  }
}

@media screen and (max-width: 444px) {
  .listofnews-sendtime {
    display: none;
  }

  .fullName {
    display: flex;
    flex-wrap: wrap;
  }

  .formbold-form-wrapper {
    padding: 0;
  }

  .tox-tinymce {
    height: 300px !important;
  }

  .fbrr-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
  }

  .formbold-main-wrapper {
    padding: 20px;
  }

  .navbar {
    top: -18px;
  }

  .dropdown_search_parent {
    width: 250px !important;
  }

  /* .brr-search-container form {
    width: 90%;
  } */

  .formbold-input-wrapp>div {
    flex-wrap: wrap;
  }

  .formexplain-a {
    line-height: 2;
  }

  .formbold-mb-3 {
    width: 100%;
  }

  .input-wrapper {
    margin: 0 10px !important;

  }

  .news-header p {
    font-size: 12px;
  }

  .about_header_title {
    font-size: 20px;
  }

  .news-title {
    font-size: 16px;
  }

  .sender_container {
    padding: 20px 10px !important;
  }

  .news-show {
    width: 90% !important;
    margin-top: 25px !important;
    margin-bottom: 25px !important;
  }
}

/* GUIDE */

.faq-nav {
  flex-direction: column;
  margin: 0 0 32px;
  border-radius: 2px;
  border: 1px solid #ddd;
  box-shadow: 0 1px 5px rgba(85, 85, 85, 0.15);
}

.faq-nav .nav-link {
  position: relative;
  display: block;
  margin: 0;
  padding: 13px 16px;
  background-color: #fff;
  border: 0;
  border-bottom: 1px solid #ddd;
  border-radius: 0;
  color: #616161;
  transition: background-color 0.2s ease;
}

.faq-nav .nav-link:hover {
  background-color: #f6f6f6;
}

.faq-nav .nav-link.active {
  background-color: #f6f6f6;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.87);
}

.faq-nav .nav-link:last-of-type {
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom: 0;
}

.faq-nav .nav-link i.mdi {
  margin-right: 5px;
  font-size: 18px;
  position: relative;
}

.tab-content {
  box-shadow: 0 1px 5px rgba(85, 85, 85, 0.15);
}

.tab-content .card {
  border-radius: 0;
}

.tab-content .card-header {
  padding: 15px 16px;
  border-radius: 0;
  background-color: #f6f6f6;
}

.tab-content .card-header h5 {
  margin: 0;
}

.tab-content .card-header h5 button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.87);
  text-align: right;
  white-space: normal;
}

.tab-content .card-header h5 button:hover,
.tab-content .card-header h5 button:focus,
.tab-content .card-header h5 button:active,
.tab-content .card-header h5 button:hover:active {
  text-decoration: none;
}

.tab-content .card-body p {
  color: #616161;
}

.tab-content .card-body p:last-of-type {
  margin: 0;
}

.accordion>.card:not(:first-child) {
  border-top: 0;
}

.collapse.show .card-body {
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

/* NEWS */

/* News */

.read-news-show {
  width: 80%;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-top: 100px;
  margin-bottom: 100px;
}

.read-news {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
  margin-bottom: 20px;
}

.read-news-header {
  display: flex;
  margin-right: 0px;
  padding-right: 19px;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
  padding-left: 0.7rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.read-news-header p {
  position: relative;
  top: 3px;
  float: left;
}

.read-news-body {
  flex: 1 1 auto;
  padding: 2rem 1rem;
}

.read-news-body .read-news-title {
  margin-bottom: 0.5rem;
  color: #131518;
}

.read-news-body .read-news-text {
  margin-bottom: 2rem;
  font-size: 18px;
  color: #212529;
}

.mainhr {
  margin-bottom: 20px;
}

.backtonews {
  float: left;
}



.read-news-sender {
  display: flex;
  align-items: center;
  gap: 10px;
}

.read-news-sender p {
  margin-top: 15px;
}

.read-news-body p>img {
  width: 80%;
  height: auto;
}

.read-news-user-profile {
  width: 50px !important;
  height: 50px !important;
  object-fit: cover !important;
  border-radius: 50% !important;
}

/* Aparat Video */

.aparatvideocontainer {
  width: 100%;
}

.video {
  position: relative;
  padding-bottom: 56.25%;
}

.video iframe {
  position: relative;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.copyright_text {}

.left-side {
  width: calc(100vw - 300px);
  position: sticky;
  left: 0;
  margin-right: auto;
}

/* * {
    border:1px solid #333;
} */

.tox-statusbar__branding {
  display: none !important;
}

.tox .tox-statusbar a {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.tox .tox-promotion {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.classmanage_form {
  padding: 10px 20px;
}

.rankmanage_checkbox {
  width: 150px;
  display: flex;
  justify-content: space-between;
  /* gap: 10px; */
}

.rankmanage_checkbox input,
.rankmanage_checkbox label {
  cursor: pointer;
}

.checkbox_submenu_div {
  width: 150px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 15px;
}

.rankmanage_checkbox_submenu {
  /* width: 100px; */
  display: none;
}

.rankmanage_checkbox_submenu * {
  cursor: pointer;
}

.rankmanage_checkbox_submenu.show {
  display: block;
}

#articleCheckbox:checked .rankmanage_checkbox_submenu {
  display: block;
}

#sendCheckbox {}

#editCheckbox {}

#deleteCheckbox {}

.checkboxes_parent {
  max-height: 350px;
  overflow-y: auto;
  padding: 15px;
}

.table-container {
  max-height: 300px;
  overflow-y: auto;
}

.table-container table {
  width: 100%;
}

.addStudentToClass {
  width: 550px;
  /* overflow-y: hidden !important; */
}

.student_information_list {}

.table_container_students {
  max-height: 300px !important;
  overflow-y: auto;
}

.table_container_students thead th {
  position: sticky;
  top: 0;
  background-color: #fff;
  padding: 10px;
}

.table_container_students table {
  width: 100%;
  border-collapse: collapse;
}

.table_container_students table tbody tr.show {
  background-color: rgb(162, 212, 162);
}

.sendStudentDatas_btn {
  margin: 30px auto 0 auto;
}

/* Select2 */
.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background: #0090e7;
}

.select2-container--default .select2-selection--single,
.select2-container--default .select2-dropdown,
.select2-container--default .select2-selection--multiple {
  border-color: #2c2e33;
  background: #000000;
}

.select2-container--default .select2-selection--single .select2-search__field,
.select2-container--default .select2-dropdown .select2-search__field,
.select2-container--default .select2-selection--multiple .select2-search__field {
  border-color: #2c2e33;
}

.select2-container--default .select2-selection--single {
  height: auto;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #ffffff;
  line-height: 14px;
}

.select2-container--default .select2-dropdown {
  font-size: 0.8125rem;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border-color: #2c2e33;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  color: #ffffff;
  border: 0;
  border-radius: 3px;
  padding: 6px;
  font-size: 0.625rem;
  font-family: inherit;
  line-height: 1;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove {
  color: #ffffff;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice:nth-child(5n + 1) {
  background: #0090e7;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice:nth-child(5n + 2) {
  background: #00d25b;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice:nth-child(5n + 3) {
  background: #8f5fe8;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice:nth-child(5n + 4) {
  background: #fc424a;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice:nth-child(5n + 5) {
  background: #ffab00;
}

.dropdown_search_parent {
  position: relative;
  background-color: var(--c-primary-5);
  border-radius: 18px;
  width: 350px;
}

.dropdown_search_parent hr {
  margin: 5px 0;
}

.dropdown_search_input {
  padding: 15px 15px 10px 5px;
  background-color: unset;
  /* border: 1px solid #fff; */
  font-size: 16px;
  color: #fff;
  width: 100%;
}

.dropdown_search_list {
  position: absolute;
  top: 45px;
  border-top: 1px solid #f4f4f4;
  border-bottom-left-radius: 22px;
  border-bottom-right-radius: 22px;
  background-color: var(--c-primary-5);

  display: none !important;
  padding: 10px 15px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  margin-bottom: 0 !important;
  width: 100%;
  gap: 10px;
  max-height: 300px;
  overflow-y: auto;
}

.dropdown_search_list.show {
  display: flex !important;
}

.dropdown_search_list_item {
  cursor: pointer;
  font-size: 16px;
  width: 100%;
}


.input-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}


.inputs-container {
  display: flex;
}

.formbold-form-input {
  width: 100%;
  max-width: 100%;
}
 


.about_header_title {}


/* NEWS GRID */

.news-body img,
.news-body>*>img {
  width: 100%;
  height: auto;
}

.blog{
	background:#fff;
}
.blog .blog-title{
	text-align:center;
}
.blog .single-news {
	background: #fff;
	position: relative;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	transition: all 0.4s ease;
	box-shadow: 0px 0px 10px #00000014;
}
.blog .single-news img{
	width: 100%;
  height: 250px;
	margin:0;
  object-fit: cover;
	padding:0;
	-webkit-transition:all 0.4s ease;
	-moz-transition:all 0.4s ease;
	transition:all 0.4s ease;
}
.blog .single-news .news-head{
	position:relative;
	overflow:hidden;
}
.blog .single-news .news-content {
	text-align: right;
	background: #fff;
	z-index: 99;
	position: relative;
	padding: 30px;
	left: 0;
	z-index: 0;
}
.blog .single-news .news-content:before{
	position:absolute;
	content:"";
	left:0;
	bottom:0;
	height:2px;
	width:0%;
	background:#1A76D1;
	opacity:0;
	visibility:hidden;
	-webkit-transition:all 0.4s ease;
	-moz-transition:all 0.4s ease;
	transition:all 0.4s ease;
}
.blog .single-news:hover .news-content:before{
	opacity:1;
	visibility:visible;
	width:100%;
}
.blog .single-news .news-body h2 {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 10px;
	line-height: 24px;
}
.blog .single-news .news-body h2 a{
	color:var(--c-primary-3);
	font-weight: 500;
}
.blog .single-news .news-body h2 a:hover{
	color:#1A76D1;
}
.blog .single-news .news-content p {
	font-weight: 400;
	text-transform: capitalize;
	font-size: 16px;
	letter-spacing: 0px;
	line-height: 23px;
}
.blog .single-news .news-body .news-date {
	display: inline-block;
	font-size: 14px;
	margin-bottom: 5px;
	background: var(--c-primary-5);
	color: #fff;
	padding: 4px 15px;
	border-radius: 3px;
	font-size: 14px;
	margin-bottom: 10px;
}
.blog.grid .single-news{
	margin-top:30px;
}



/* News Single */
.news-single {
	padding: 60px 0 90px;
	background: #f8f8f8;
}
.news-single .single-main {
	margin-top: 30px;
	background: #fff;
	padding: 30px;
	-webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.10);
	-moz-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.10);
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.10);
	border-radius: 8px;
}
.news-single .news-head{}
.news-single .news-head img{
	width:100%;
	height:100%;
}
.news-single .news-title {
	font-size: 25px;
	margin: 20px 0;
}
.news-single .news-title a {
	color: #252525;
	font-weight: 600;
}
.news-single .news-title a:hover {
	color: #1A76D1;
}
/* Blog Meta */
.news-single{
	background:#fff;
}
.news-single .meta {
	overflow: hidden;
	border-top: 1px solid #ebebeb;
	border-bottom: 1px solid #ebebeb;
	width: 100%;
	padding: 10px 0;
	margin-bottom: 0px;
}
.news-single .meta span {
	margin-right: 10px;
	display: inline-block;
}
.news-single .meta span:last-child{
	margin:0;
}
.news-single .meta span, .news-single .meta span a {
	color: #2C2D3F;
	font-weight: 400;
}
.news-single .meta span i {
	margin-right: 5px;
	color:#1A76D1;
}
.news-single .meta-left{
	float:right;
}
.news-single .meta-left .author img {
	width: 45px;
	height: 45px;
	border-radius: 100%;
	margin-left: 12px;
}
.news-single .meta-left .author {
	float: left;
}
.news-single .meta-left span.date {
	margin-top: 10px;
}
.news-single .meta-right {
	float: right;
	margin-top: 10px;
}
.news-single .news-content{
	margin:20px 0;
}
.news-single .news-content p{
	margin-bottom:10px;
}
.news-single .news-content p:last-child{
	margin:0;
}
.news-single .news-text p {
	font-size: 14px;
	margin-bottom:20px;
}
/* Image Gallery */
.news-single .image-gallery {
	margin-bottom: 20px;
}
.news-single .image-gallery .single-image {
	overflow: hidden;
}
.news-single .image-gallery .single-image:hover img{
	-webkit-transform:scale(1.2);
	-moz-transform:scale(1.2);
	transform:scale(1.2);
}
/* Blockqoute */
.news-single blockquote {
	background-image: url('img/blockqoute-bg.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 30px;
	overflow: hidden;
}
.news-single blockquote::before {
	opacity: 0.9;
}
.news-single .news-text blockquote p {
	color: #fff;
	margin: 0;
	line-height: 26px;
	font-size: 15px;
	position: relative;
}
.news-single .blog-bottom {
	overflow: hidden;
}
/* Social Share */
.news-single .social-share {
	float: left;
}
.news-single .social-share li {
	float: left;
}
.news-single .social-share li span{
	padding-left:5px;
}
.news-single .social-share li.facebook a{
	background:#5d82d1;
}
.news-single .social-share li.twitter a{
	background:#40bff5;
}
.news-single .social-share li.google-plus a{
	background:#eb5e4c;
}
.news-single .social-share li.linkedin a{
	background:#238cc8;
}
.news-single .social-share li.pinterest a{
	background:#e13138;
}
.news-single .social-share li a {
	padding: 10px 20px;
	display: block;
	color: #fff;
}
.news-single .social-share li a:hover{
	background:#2B343E;
}
/* Prev Next Button */
.news-single .prev-next {
	float: right;
}
.news-single .prev-next li {
	display: inline-block;
	padding: 0;
	margin-right: 5px;
}
.news-single .prev-next li:last-child{
	border:none;
}
.news-single .prev-next li a {
	display: block;
	width: 40px;
	height: 40px;
	line-height: 36px;
	text-align: center;
	font-size: 16px;
	border: 1px solid #c4c4c4;
	color: #555;
	border-radius: 4px;
}
.news-single .prev-next li a:hover{
	color:#fff;
	background:#1A76D1;
	border-color:transparent;
}
/* Blog Comments */
.news-single .blog-comments {
	margin-top: 30px;
	background: transparent;
	-webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.10);
	-moz-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.10);
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.10);
	border-radius: 8px;
	padding: 30px;
}
.news-single .blog-comments h2 {
	text-align: left;
	text-transform: capitalize;
	font-size: 18px;
	color: #252525;
	margin-bottom: 20px;
}
.news-single .blog-comments h4 span{
	float:right;
}
.news-single .single-comments {
	overflow: hidden;
	margin-bottom: 30px;
	background: #fff;
	border-bottom: 1px solid #eee;
	padding-bottom: 30px;
}
.news-single .single-comments.left .main {
	padding-left: 100px;
	position: relative;
	margin-left: 100px;
}
.news-single .single-comments.left img{
	position:absolute;
	left:0;
	top:0;
}
.news-single .single-comments:last-child{
	margin:0;
	border:none;
	margin-bottom:0;
	padding-bottom:0;
}
.news-single .single-comments .main {
	overflow: hidden;
}
.news-single .single-comments .head {
	float: left;
	margin-right: 20px;
	text-align: center;
	width: 12%;
}
.news-single .head img {
	width: 80px;
	height: 80px;
	line-height: 80px;
	border-radius: 100%;
	border: 5px solid #f8f8f8;
}
.news-single .single-comments .body {
	float: left;
	width: 85%;
}
.news-single .single-comments.left .body{
	float: noene;
	width:100%;
}
.news-single .single-comments .comment-list {
	margin-top: 30px;
	padding-top: 30px;
	border-top: 1px solid #e2e2e2;
	overflow: hidden;
}
.news-single .single-comments .comment-list .body {
	width: 78%;
}
.news-single .single-comments h4 {
	margin: 0 0 5px;
	font-size: 16px;
	text-align: left;
	font-weight: 500;
	color: #252525;
}
.news-single .single-comments .comment-meta{
	margin-bottom:5px;
}
.news-single .single-comments .meta {
	font-size: 13px;
	color: #555;
	font-weight: 400;
	border: none;
	margin-right: 10px;
	padding: 0;
	margin: 0 10px 0 0;
}
.news-single .single-comments .meta:last-child{
	margin:0;
}
.news-single .comment-meta span i{
	margin-right:5px;
}
.news-single .comment-meta span:last-child{
	margin:0;
}
.news-single .single-comments p {
	font-size: 13px;
}
.news-single .single-comments a {
	text-transform: capitalize;
	font-size: 13px;
	font-weight: 400;
	color: #fff;
	padding: 3px 15px;
	display: inline-block;
	margin-top: 10px;
	border-radius: 4px;
	background:#1A76D1;
	color:#fff;
}
.news-single .single-comments a:hover{
	background:#2C2D3F;
	color:#fff;
}
.news-single .single-comments a i{
	margin-right:5px;
}
.news-single .comment-list {
	padding-left:50px;
}
.news-single .single-comments.login{
	text-align:center;
}
.news-single .single-comments.login i{
	font-size:20px;
}
.news-single .single-comments.login a{
	text-align:center;
}
.news-single .single-comments.login a:hover{
	color:#353535;
}
.news-single .comments-form {
	margin-top: 30px;
	-webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.10);
	-moz-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.10);
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.10);
	border-radius: 8px;
	padding: 30px;
}
.news-single .comments-form h2 {
	text-align: left;
	font-size: 18px;
	color: #353535;
	margin-bottom: 20px;
	text-transform: capitalize;
}
.news-single .form {
}
.news-single .form-group {
	position: relative;
	display: block;
	margin: 0 0 20px;
}
.news-single .form-group i {
	position: absolute;
	left: 12px;
	top: 17px;
	z-index: 1;
	color: #1A76D1;
}
.news-single .form-group input {
	width: 100%;
	height: 50px;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	transition: all 0.4s ease;
	font-weight: 400;
	border-radius: 0px;
	padding-left: 34px;
	padding-right: 20px;
	border: none;
	line-height:50px;
	font-weight: 400;
	font-size:14px;
	color:#2C2D3F;
}
.news-single .form-group textarea {
	border: 1px solid #ddd;
	width: 100%;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	transition: all 0.4s ease;
	box-shadow: none;
	border-radius: 0px;
	border: none;
	height: 190px;
	padding: 15px 15px 15px 35px;
	resize: none;
	font-weight: 400;
	font-size:14px;
	color:#2C2D3F;
}
.news-single .form-group input, .news-single .form-group textarea {
	border: 1px solid transparent;
	border: 1px solid #eee;
	border-radius: 5px;
}
.news-single .form-group.message i {
	top: 22px;
}
.news-single .form-group .button {
	padding: 10px 30px;
	font-size: 14px;
	text-transform: uppercase;
	display: block;
	border: 0px solid;
	color: #fff;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	transition: all 0.4s ease;
	padding: 15px 30px;
	
}
.news-single .form-group .button:hover {
	background: #353535;
}
.news-single .form-group .button i{
	position:relative;
	display:inline-block;
	color:#fff;
	margin-right:10px;
	padding:0px;
}
.news-single .form-group.button {
	margin: 0;
	text-align: left;
}
.news-single .form-group.button .btn{
	background:#fff;
	background:#1A76D1;
	color:#fff;
}
.news-single .form-group.button .btn:hover{
	color:#fff;
}
.news-single .form-group.button .btn i {
	color: #fff;
	position: relative;
	top: 0;
	left: 0;
	margin-right: 10px;
	-webkit-transition:all 0.3s ease 0s;
	-moz-transition:all 0.3s ease 0s;
	transition:all 0.3s ease 0s;
}
/*===================
	End Blog CSS
=====================*/



.news-text {
  margin-top: 10px;
}

.margin_center {
  margin: 0 auto;
}
