/*===========
|   Form    |
=============*/
form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

@media (max-width: 767px) {
  form {
    flex-direction: column;
  }
}

form button {
  width: 100%;
}

.form_wrap {
  width: 100%;
  margin-top: 20px;
}

.form-title {
  margin-bottom: 20px;
  text-align: start;
  font-size: 90%;
}

.form_group {
  position: relative;
  background: #fff;
  margin: 0 0 20px;
}

.form_group label {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 16px;
  padding: 0;
  color: #777;
  font-weight: 400;
  transition: .2s ease;
  z-index: 1;
}

.rtl .form_group label {
  right: 1rem;
  left: auto;
}

.form_group input,
.form_group select,
.form_group textarea {
  position: relative;
  width: 100%;
  height: 50px;
  padding-inline-start: 16px;
  box-shadow: inset 0 0 0 1px rgba(119, 119, 119, 0.25);
  border-radius: 6px;
  border: 0;
  outline: 0;
  font-size: 16px;
  color: #000;
  font-weight: 400;
  z-index: 2;
}

@media (max-width: 767px) {
  .form_group input,
  .form_group select,
  .form_group textarea {
    height: 44px;
  }
}

.form_group input:hover,
.form_group select:hover,
.form_group textarea:hover {
  border: 0;
  outline: 0;
}

.form_group input:focus,
.form_group select:focus,
.form_group textarea:focus {
  box-shadow: inset 0 0 0 1px rgba(247, 86, 3, 0.28), inset 0 -1px 0 1px rgba(247, 86, 3, 0.28);
  border: 0;
  outline: 0;
}

.form_group select {
  color: #777;
  padding: 0 16px;
}

.text-area label {
  top: 16px;
  transform: none;
}

.text-area textarea {
  height: 100px;
  padding: 16px;
}

.form_group.active label {
  top: -16px;
  left: 0;
  transform: none;
  font-size: 12px;
  color: #f75603;
}

.rtl .form_group.active label {
  right: 0;
  left: auto;
}

.form_group .material-icons {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 16px;
  color: #777;
  font-size: 24px;
  z-index: 1;
}

.half .form_group {
  flex: 1;
}

.half .form_group:first-child {
  margin-right: 20px;
}

.cvv-code .material-icons,
.c-card .material-icons {
  font-size: 16px;
}

.cvv-code .material-icons {
  cursor: pointer;
  z-index: 2;
}

.exp-date {
  align-items: center;
}

.exp-date > * {
  flex: auto 1 1;
  margin-right: 20px;
}

.exp-date > *:last-child {
  margin-right: 0;
}

.exp-date p {
  margin-bottom: 20px;
}

.page {
  flex: 1;
  z-index: 1;
}

.page section {
  flex: 1;
}

.page .page-title {
  margin: 40px auto 20px;
}

.page .page-title + div {
  margin-bottom: 40px;
}

.page .main-card {
  align-items: center;
  padding: 0;
}

@media (max-width: 767px) {
  .page .main-card {
    flex-direction: column-reverse;
  }
}

.page .main-card > * {
  flex: 1;
}

.page .main-card .text {
  padding: 2rem;
}

@media (max-width: 767px) {
  .page .main-card .text {
    padding: 1rem;
  }
}

.page .main-card .text h2 {
  margin-bottom: 20px;
  text-transform: uppercase;
  color: #fff;
}

@media (max-width: 767px) {
  .page .main-card .text br {
    display: none;
  }
}

.page .main-card .text p {
  text-align: center;
  color: #fff;
  font-weight: 600;
  font-size: 120%;
}

.page .main-card figure {
  overflow: hidden;
  max-height: 100%;
}

@media (max-width: 767px) {
  .page .main-card figure {
    max-height: 200px;
  }
}

@media (max-width: 768px) {
  .page .main-card figure img {
    width: 141%;
    max-width: 141%;
  }
}

@media (max-width: 767px) {
  .page .main-card figure img {
    width: 100%;
    max-width: 100%;
  }
}

.page .cols_wrap .card {
  margin-right: 20px;
}

@media (max-width: 767px) {
  .page .cols_wrap .card {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

.page .cols_wrap .card:last-child {
  margin: 0;
}

.page .cols_wrap .card h4 {
  margin: 20px 0;
  text-align: start;
}

.page .cols_wrap .card:not(.comment) p {
  color: #777;
  text-transform: uppercase;
}

.page .cols_wrap .card:not(.comment) p span {
  color: #41488b;
  font-weight: 600;
}

.page .bottom-text {
  margin-bottom: 10px;
  color: #777;
}

.title-bg {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-image: url("../images/about-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 300px;
}

.title-bg:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(33, 33, 33, 0.5);
}

.title-bg .main-card {
  position: relative;
  z-index: 2;
}

.cols_wrap.comment_wrap {
  display: block;
}

@media (max-width: 767px) {
  .cols_wrap.comment_wrap {
    flex-direction: column;
  }
}

.cols_wrap.comment_wrap .card {
  margin-right: 0;
}

.cols_wrap.comment_wrap .card figure {
  width: 50px;
  min-width: 50px;
  max-width: 50px;
  height: 50px;
  margin: 0 20px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(119, 119, 119, 0.5);
  overflow: hidden;
}

@media (max-width: 767px) {
  .cols_wrap.comment_wrap .card figure {
    margin: 0 auto 20px;
  }
}

.cols_wrap.comment_wrap .card figure .material-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  color: rgba(33, 33, 33, 0.5);
  font-size: 30px;
}

.cols_wrap.comment_wrap .card h4 {
  text-align: center;
}

.cols_wrap.comment_wrap p {
  padding: 0;
}

.comment {
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.comment:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .comment {
    margin-bottom: 20px;
    margin-right: 0;
  }
}

.comment .flex-wrap {
  justify-content: flex-start;
  width: 100%;
}

.comment .user-info {
  margin-top: 10px;
  font-size: 80%;
  justify-content: flex-end;
  width: 100%;
}

.comment .user-info h4, .comment .user-info p {
  margin: 0 0 0 10px !important;
  text-align: center;
}

.comment .material-icons {
  font-size: 14px;
  color: #f7bb4d;
}

.page-support .title-bg {
  background-image: url("../images/support-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 40px;
}

.page-support .page-title {
  margin: 0 auto 20px;
}

.page-support .page-title + div {
  margin-bottom: 0;
}

.page-support .card {
  max-width: 450px;
  margin: 0 auto;
}

.page-support form {
  display: block;
}

.page-support .form {
  padding: 0;
}

@media (max-width: 767px) {
  .page-support .form {
    padding: 0;
  }
}

.page-support .form-text {
  margin-bottom: 20px;
  padding: 0 0 20px;
  border-bottom: 1px solid rgba(119, 119, 119, 0.3);
}

.page-support .form-text .support-number,
.page-support .form-text .support-email {
  text-align: start;
  font-size: 90%;
}

.page-support .form-text .support-number span,
.page-support .form-text .support-email span {
  font-weight: 600;
}

.page-support button {
  position: relative;
  overflow: hidden;
  border: 0;
  outline: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  transition: .2s ease;
  text-align: center;
  background: #f75603;
}

.page-support button:hover {
  background: #c54402;
}

@media (max-width: 767px) {
  .page-support button {
    font-size: 12px;
  }
}

.qna-wrap {
  margin-bottom: 20px;
  padding: 0 0 20px;
  border-bottom: 1px solid rgba(119, 119, 119, 0.3);
}

.qna-wrap:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.qna-wrap:hover .qna-title {
  color: #f75603;
}

.qna-title,
.qna-content {
  font-weight: 500;
  color: #000;
  text-align: start;
}

.qna-title:before, .qna-title:after,
.qna-content:before,
.qna-content:after {
  content: "";
  display: block;
  position: absolute;
}

.qna-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.qna-content {
  margin: 10px 0 0;
  font-size: 13px;
  font-weight: 400;
}

.qna-content a {
  color: #41488b;
  text-decoration: underline;
}
