* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: "Zain", sans-serif;
  font-weight: 700;
  font-style: normal;
}

body {
  /* background-image: linear-gradient(90deg, rgb(2, 0, 36) 0%, rgb(1 20 48) 35%, rgb(26 32 43) 100%); */
  /* color: white; */
  color: #010225;
  background-color: white;
}

a {
  text-decoration: none;
}

.header {
  color: white;
  text-align: right;
  position: relative;
  margin-bottom: 400px;
}

.header .home-menu {
  display: flex;
  width: 80%;
  margin: 10px auto;
  justify-content: start;
  align-items: center;
}

.header .logo {
  width: 50%;
}

.header .login-link {
  width: 50%;
  text-align: left;
}

.header .login-link a {
  color: #010225;
}

.header .content {
  margin: 60px auto;
}

.header .content h2 {
  width: 80%;
  font-size: 34px;
  margin: 20px auto;
  color: rgb(1, 2, 37);
  opacity: 0;
  transform: translateY(-20px);
  animation: header-content-h1 3s forwards;
}

.header .content p {
  width: 80%;
  margin: 10px auto;
  font-size: 24px;
  opacity: 0;
  color: rgba(1, 2, 37, 0.5);
  transform: translateY(-20px);
  animation: header-content-p 3s forwards;
  animation-delay: 500ms;
}

.header .content .div-signup-now {
  width: 80%;
  margin: 50px auto;
}

.header .content .div-signup-now a {
  font-size: 28px;
  padding: 10px;
  background-color: #010225;
  color: white;
  border: none;
  border-radius: 8px;
}

.header .content .header-bg-img {
  position: absolute;
  width: 600px;
  margin: 0px auto;
  opacity: 0.25;
  left: 35%;
  z-index: -1;
}

.header .arrow-down {
  position: absolute;
  bottom: -50%;
  width: 50px;
  left: 50%;
}

.header .arrow-down svg {
  width: 100%;
  fill: rgb(1 2 37);
  animation: move-arrow 2s infinite;
}

@keyframes header-content-h1 {
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}

@keyframes move-arrow {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(30px);
  }

  100% {
    transform: translateY(0px);
  }
  
}

@keyframes header-content-p {
  to {
    opacity: 0.85;
    transform: translateY(0px);
  }
}

.ul {
  list-style: none;
}

.header-menu {
  background-color: #010225;
  color: white;
  position: relative;
}

.header-menu .nav .links-flex {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.header-menu .nav .each-link {
  padding: 10px;
}

.header-menu .nav .each-link img {
  width: 84px;
}

.header-menu .nav .each-link a {
  color: white;
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none;    /* Firefox */
  -ms-user-select: none;     /* Internet Explorer/Edge */
  user-select: none;         /* Standard */
}

.header-menu .nav .has-dropdown {
  position: relative;
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none;    /* Firefox */
  -ms-user-select: none;     /* Internet Explorer/Edge */
  user-select: none;         /* Standard */
}

.header-menu .nav .has-dropdown .text-menu {
  cursor: default;
  padding-bottom: 40px;
  position: relative;
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none;    /* Firefox */
  -ms-user-select: none;     /* Internet Explorer/Edge */
  user-select: none;         /* Standard */
}

.header-menu .nav .has-dropdown .text-menu::after {
  content: '';
  position: absolute;
  border: 4px solid white;
  border-right: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 4px solid transparent;
  left: -10px;
  top: 10px;
}

.header-menu .nav .has-dropdown .dropdown-menu {
  display: none;
  position: absolute;
  width: 250px;
  background: #296185;
  padding: 5px 10px;
  border-radius: 5px;
  top: 45px;
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none;    /* Firefox */
  -ms-user-select: none;     /* Internet Explorer/Edge */
  user-select: none;         /* Standard */
  z-index: 101;
}

.header-menu .nav .has-dropdown .dropdown-menu::after {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #296185;
  position: absolute;
  top: -7px;
}

.header-menu .nav .has-dropdown:hover .dropdown-menu {
  display: block;
}

.header-menu .nav .has-dropdown .dropdown-menu li {
  width: 100%;
  margin: 10px auto;
  border-radius: 5px;
}

.header-menu .nav .has-dropdown .dropdown-menu .each-dropdown-link {
  display: block;
  width: 100%;
  padding: 10px 5px;
}

.header-menu .nav .has-dropdown .dropdown-menu li:hover {
  background-color: #214c68;
}

.header-menu .humb-overlay {
  display: none;
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: #010225;
  opacity: 0.5;
  z-index: 99;
}

.header-menu .humb {
  display: none;
}

.header-menu .humb .ul {
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
  padding: 10px;
}

.header-menu .humb .bars-icon {
  width: 100%;
  font-size: 38px;
}

.header-menu .humb .small-logo {
  width: 110px;
  text-align: center;
}

.header-menu .humb .small-logo img {
  width: 100%;
}

.header-menu .close_menu {
  display: none;
  text-align: center;
  position: absolute;
  left: 0px;
  padding: 20px;
  font-size: 28px;
}

.section {
  min-height: 200px;
  color: white;
  margin: 100px auto;
  position: relative;
}

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

.section-animation {
  animation: section-image-1 5s forwards;
}
.section-content-animation {
  animation: section-content-1 3s forwards;
}
.section .flex .section-image {
  width: 800px;
}

.section .flex .section-image img {
  width: 100%;
}
.section .flex .section-content {
  padding: 10px;
  background: #020829;
  border-radius: 15px;
  position: relative;
  right: -80px;
}

.section .flex .section-content h2 {
  font-size: 52px;
  margin-bottom: 30px;
}

.section .flex .section-content p {
  width: 95%;
  font-size: 28px;
}

.image-anim {
  transform: translateX(200px);
  opacity: 0;
}

.text-anim {
  transform: translateX(300px);
  opacity: 0;
}

.section .categories {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 0px auto;
}

.section .categories .each-cat {
  width: 40%;
  margin: 0px auto;
  position: relative;
  background-color: #010225;
  box-shadow: 0px 7px 20px 1px #dddddd17;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.3s ease-out;
}

.section .categories .each-cat:hover {
  transform: scale(1.1);
}

.section .categories .each-cat .link {
  display: block;
  width: 100%;
  height: 100%;
}

.section .categories .each-cat .img {
  width: 100%;
}

.section .categories .each-cat .cat-text {
  color: white;
  position: absolute;
  top: 30%;
  right: 20px;
}

.section .categories .each-cat .cat-text .cat-title {
  display: block;
  font-size: 42px;
}

.section .categories .each-cat .cat-text .cat-desc {
  font-size: 18px;
  opacity: 0.75;
}

@keyframes section-image-1 {
  to {
    transform: translateX(0px);
    opacity: 1;
  }
}

@keyframes section-content-1 {
  to {
    transform: translateX(0px);
    opacity: 1;
  }
}

.history {
  display: block;
  width: 600px;
  margin: 20px auto;
  background: #010225;
  color: white;
  padding: 5px;
  border-radius: 8px;
}

.history .ul-flex {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
}

.history li a {
  color: white;
}

.history li {
  padding: 2px 5px;
  font-size: 16px;
}

.history li i {
  font-size: 12px;
}

.section .box-background {
  width: 100%;
  height: 100px;
  background: url("../images/section-background.jpg") no-repeat center center;
  /* background-attachment: fixed; */
  position: absolute;
  top: 0px;
  z-index: -1;
}

.section .section-3-text {
  width: 50%;
  background-color: #02082985;
  font-size: 54px;
  position: relative;
  right: 10%;
  top: -20px;
  border-bottom: 10px solid #772211;
  border-radius: 20px;
}

.section-4-bg {
  background: #0205270f;
  padding: 5px;
}

.section-4-flex {
  display: flex;
  justify-content: center;
  align-items: center;
}

.section .small-images {
  display: flex;
}

.section .small-images .each-image {
  width: 200px;
  display: inline-block;
  position: relative;
}

.section .small-images .each-image:nth-child(2) {
  right: -40px;
}

.section .small-images .each-image:nth-child(3) {
  right: -80px;
}

.section .small-images .each-image:nth-child(4) {
  right: -120px;
}

.section .small-images .each-image:nth-child(5) {
  right: -160px;
}

.section .small-images .each-image:nth-child(6) {
  right: -200px;
}

.section .small-images .each-image:nth-child(7) {
  right: -240px;
}

.section .small-images .each-image img {
  width: 100%;
  border-radius: 50%;
}

.section .section-4-text {
  font-size: 54px;
  padding: 0px 10px;
  color: #010225;
}

.loading {
  display: block;
  width: 28px;
  height: 28px;
  margin: auto;
  border: 2px solid white;
  border-right: 2px solid transparent;
  border-radius: 50%;
  animation: loading 1s infinite;
}

@keyframes loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Login */
.form-box {
  width: 600px;
  margin: 20px auto;
  padding: 10px;
  border-radius: 10px;
  background-color: #010225;
  color: white;
}

.form-box .alert-err-msg {
  display: block;
  background: red;
  padding: 5px 10px;
  border-radius: 5px;
  margin: 10px auto;
}

.form-box .each-input {
  width: 80%;
  margin: 25px auto;
  position: relative;
}

.absolute-icon {
  position: absolute;
  color: white;
  bottom: 0px;
  font-size: 16px;
  padding: 12px;
}

.form-box .small-info {
  font-size: 12px;
  color: #ffffff87;
}

.form-box .each-input label {
  display: block;
  padding-right: 5px;
  font-size: 24px;
}

.form-box .each-input input {
  display: block;
  width: 100%;
  outline: none;
  font-size: 20px;
  padding: 5px 35px 5px 5px;
  border-radius: 10px;
  border: none;
  background: #161e2b;
  color: white;
}

.form-box .each-input .btn-dark {
  border: none;
  outline: none;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 20px;
  display: block;
  margin: 10px auto;
  width: 80%;
  background: #296185;
  color: white;
  cursor: pointer;
}

.form-box .each-input .center-a-white {
  color: white;
  text-align: center;
  display: block;
  margin-top: 100px;
  margin-bottom: 50px;
}

/* User page */
.user_settings {
  width: 700px;
  margin: 10px auto;
}

.user_settings .account_message {
  background: #ff000061;
  padding: 5px 10px;
  border-radius: 5px;
  margin: 10px auto;
}

.user_settings .form_messages {
  margin: 10px auto;
}

.user_settings .form_messages .msg_success {
  display: block;
  background: rgba(0, 255, 0, 0.38);
  padding: 5px 10px;
  border-radius: 5px;
  margin: 10px auto;
}

.user_settings .form_messages .msg_error {
  display: block;
  background: rgba(255, 0, 0, 0.38);
  padding: 5px 10px;
  border-radius: 5px;
  margin: 10px auto;
}

.user_settings .each-settings {
  display: flex;
  width: 95%;
  margin: 20px auto;
  justify-content: center;
  align-items: center;
}

.user_settings .each-settings img {
  display: block;
  width: 150px;
  margin: 0px auto;
  border-radius: 50%;
  cursor: pointer;
}

.user_settings .each-settings .label {
  cursor: default;
}

.user_settings .each-settings .label,
.user_settings .each-settings .input {
  width: 100%;
  padding: 8px 10px;
  font-size: 18px;
  margin-bottom: 10px;
}

.user_settings .each-settings .input {
  border: none;
  background-color: #010225;
  border-radius: 8px;
  color: white;
  direction: rtl;
}

.user_settings .each-settings .textarea {
  height: 300px;
  max-width: 900px;
}

.toggle-element {
  width: 100px;
  height: 25px;
  background: #010225;
  border-radius: 15px;
  position: relative;
  cursor: pointer;
}

.toggle-element .toggle-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: red;
  position: absolute;
  left: 5px;
  top: 3px;
  transition: all 0.5s ease-in-out;
}

.toggle-element .toggle-text {
  position: absolute;
  color: white;
  right: 5px;
  top: 2px;
  transition: all 0.5s ease-in-out;
}

.user_settings .each-settings .small-text {
  font-size: 12px;
  padding-right: 5px;
  opacity: 0.5;
}

.user_settings .each-settings .save_button {
  background: #296185;
  color: white;
  cursor: pointer;
  width: 50%;
  margin-left: 25%;
  border: none;
  outline: none;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 20px;
}

.user_settings .each-settings .logout_button {
  color: #296185;
  cursor: pointer;
  width: 25%;
  border: none;
  outline: none;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 20px;
  background-color: transparent;
}

/* Services page */
.services {
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
  margin: 10px auto;
  flex-wrap: wrap;
  width: 80%;
}

.services .each-service {
  display: flex;
  align-items: center;
  justify-content: start;
  border: 1px solid #010225;
  padding: 10px;
  margin: 20px auto;
  width: 45%;
  background: #296185;
  border: 1px solid #ffffff47;
  border-radius: 20px;
  box-shadow: 0px 7px 20px 1px #dddddd17;
  transition: all 0.5s ease-in-out;
}

.services .each-service:hover {
  transform: scale(1.1);
}

.services .each-service a {
  color: white;
}

.services .each-service .img_service {
  width: 35%;
  border-radius: 18px;
  overflow: hidden;
}

.services .each-service .img_service a {
  display: block;
  width: 100%;
}
.services .each-service .img_service img {
  width: 100%;
}

.services .each-service .desc_service {
  width: 100%;
  margin-right: 10px;
}

.services .each-service .desc_service .service_title {
  font-size: 32px;
  font-weight: 800;
}

.services .each-service .desc_service .service_category {
  display: block;
  font-size: 14px;
  margin-bottom: 5px;
  opacity: 0.5;
}

.services .each-service .desc_service .service_desc {
  font-size: 18px;
  font-weight: 400;
}

.accounts-list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 70%;
  margin: 20px auto;
  overflow: hidden;
}

.accounts-list .each-account {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  background-color: #296185;
  border-radius: 8px;
  width: 45%;
  height: 230px;
  margin: 20px auto;
  padding: 10px 2px;
  border: 1px solid #ffffff59;
  box-shadow: 0px 7px 20px 1px #dddddd17;
  overflow: hidden;
  transition: all 0.1s ease-in;
  position: relative;
}

.accounts-list .each-account:hover {
  transform: scale(1.05);
}

.accounts-list .each-account .status-icon {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  position: absolute;
  left: 5px;
  top: 5px;
  animation: status-icon 2s infinite;
}

@keyframes status-icon {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.accounts-list .each-account .status-online {
  background-color: green;
}

.accounts-list .each-account .status-offline {
  background-color: red;
}

.accounts-list .each-account a {
  color: white;
}

.accounts-list .each-account .acc-img {
  width: 30%;
}

.accounts-list .each-account .acc-img a {
  display: block;
  width: 100%;
  height: 100%;
}

.accounts-list .each-account .acc-img img {
  width: 100%;
  border-radius: 50%;
}

.accounts-list .each-account .acc-desc {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.accounts-list .each-account .acc-desc .acc-short-profile {
  opacity: 0.5;
}

.account-view {
  width: 600px;
  margin: 20px auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}

.account-view .each-detail {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  width: 100%;
  margin: 20px auto;
}

.account-view .each-detail .acc-img {
  width: 200px;
  margin: 5px auto;
}

.account-view .each-detail .acc-img a {
  display: block;
  width: 100%;
  height: 100%;
}

.account-view .each-detail .acc-img img {
  width: 100%;
  border-radius: 50%;
}

.account-view .each-detail .detail-name,
.account-view .each-detail .detail-value {
  width: 100%;
  padding: 5px 10px;
  border-radius: 8px;
}

.account-view .each-detail .detail-name {
  opacity: 0.75;
}

.account-view .each-detail .detail-value {
  background-color: #010225;
  color: white;
}

.account-view .each-detail .detail-value .btn-appointment {
  border: none;
  outline: none;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 20px;
  display: block;
  margin: 10px auto;
  width: 80%;
  background: #296185;
  color: white;
  cursor: pointer;
}

.reset-password {
  width: 70%;
  max-width: 800px;
  margin: 100px auto;
}

.reset-password h2 {
  font-size: 34px;
}

.reset-password form {
  margin: 50px auto;
  position: relative;
}

.reset-password .input-text {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 28px;
  color: #296185;
  transition: all 0.5s ease-in-out;
}

.reset-password .input {
  padding: 10px 8px;
  border: none;
  background-color: #ddd;
  border-radius: 8px;
  display: block;
  width: 386px;
  font-size: 24px;
  color: #010225;
}

.reset-password .input:focus {
  outline: 3px solid #296185;
}

.reset-password .btn_reset {
  display: inline-block;
  padding: 5px 20px;
  font-size: 21px;
  margin: 20px;
  width: 30%;
  border: none;
  background: #296185;
  color: white;
  border-radius: 8px;
  cursor: pointer;
  vertical-align: middle;
}

.reset-password .bo-back-btn {
  display: inline-block;
  vertical-align: middle;
}

.reset-password a {
  color: #296185;
}

.reset-password .reset-messages {
  padding: 10px;
  margin-bottom: 10px;
}

.reset-password .reset-messages .success {
  display: block;
  width: 100%;
  background-color: green;
  color: white;
  padding: 10px;
  border-radius: 8px;
  font-size: 18px;
  margin-top: 10px;
}

.reset-password .reset-messages .error {
  display: block;
  width: 100%;
  background-color: red;
  color: white;
  padding: 10px;
  border-radius: 8px;
  font-size: 18px;
  margin-top: 10px;
}

/* About us - Privacy Policy */
.about-us-content {
  width: 70%;
  margin: 50px auto;
  line-height: 2;
  font-size: 22px;
  color: #010225;
  background: url(../images/theme-lines-opacity.png);
  background-repeat: repeat;
  background-position: center;
  background-size: contain;
}

.about-us-content p {
  background-color: #e5e5e552;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 10px;
  border-radius: 12px;
}

.privacy-poilcy-content {
  width: 70%;
  margin: 50px auto;
  line-height: 2;
  color: #010225;
  background: url(../images/theme-lines-opacity.png);
  background-repeat: repeat;
  background-position: center;
  background-size: contain;
}

.privacy-poilcy-content ul {
  padding-right: 10px;
}

.privacy-poilcy-content .wrapper {
  background-color: #e5e5e552;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 10px;
  border-radius: 12px;
}


/* Footer */
.footer-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

.footer {
  margin-top: 200px;
  padding: 50px;
  background-image: linear-gradient(338deg, rgb(2 5 39) 0%, rgb(40 77 133) 35%, rgb(26 32 43) 100%);

}

.footer .each {
  text-align: center;
  width: 100%;
}

.footer .each .social img {
  margin-top: 10px;
  width: 25px;
}

.footer .each .social img:nth-child(1) {
  margin-left: 20px;
}

.footer .each .ul a {
  color: white;
}

@media screen and (max-width: 1090px) {
  .header .logo {
    right: 10px;
  }
  .header .content {
    right: 5px;
  }
  .header .content h2 {
    width: 98%;
    font-size: 24px;
  }
  .header .content p {
    width: 98%;
    font-size: 18px;
  }

  .section {
    width: 600px;
  }

  .section .categories {
    flex-direction: column;
  }

  .section .categories .each-cat {
    width: 100%;
    margin-bottom: 30px;
  }

  .section-4-flex {
    flex-direction: column;
  }

  .section .small-images .each-image {
    width: calc(100%/6);
  }
  .section .flex {
    flex-direction: column;
  }

  .section .flex .section-image {
    width: 95%;
    margin-left: auto;
    margin-right: auto;
  }

  .section .flex .section-content {
    right: 0px;
  }

  .section .flex .section-content h2 {
    font-size: 46px;
  }
  .section .flex .section-content p {
    width: 98%;
    font-size: 18px;
  }

  .section .section-3-text {
    width: 100%;
    font-size: 48px;
    right: 0px;
    border-bottom: 2px solid #772211;
  }

  .section .section-4-text {
    font-size: 24px;
  }

  .section .small-images .each-image:nth-child(2) {
    right: 0px;
  }
  
  .section .small-images .each-image:nth-child(3) {
    right: 0px;
  }
  
  .section .small-images .each-image:nth-child(4) {
    right: 0px;
  }
  
  .section .small-images .each-image:nth-child(5) {
    right: 0px;
  }
  
  .section .small-images .each-image:nth-child(6) {
    right: 0px;
  }
  
  .section .small-images .each-image:nth-child(7) {
    right: 0px;
  }

  .services {
    width: 98%;
  }

  .services .each-service .desc_service .service_title {
    font-size: 20px;
  }

  .services .each-service .desc_service .service_category {
    font-size: 12px;
  }

  .services .each-service .desc_service .service_desc {
    font-size: 14px;
  }

  /* Footer */
  .footer {
    padding: 15px;
  }

  .footer .each {
    margin-top: 20px;
  }

  .footer .each:nth-child(1) {
    margin-left: 5px;
  }

  .footer-flex {
    flex-direction: column;
  }

  .footer .links {
    border-top: 2px white;
    padding-top: 50px;
  }
}

@media screen and (max-width: 960px) {
  .header-menu .humb {
    display: block;
  }

  .header-menu .close_menu {
    display: block;
  }

  .header-menu .nav {
    position: fixed;
    width: 70%;
    height: 100%;
    top: 0px;
    right: -100%;
    z-index: 101;
    background-color: #010225;
    transition: all 0.35s ease-in-out;
    overflow: auto;
  }

  .header-menu .nav .links-flex {
    flex-direction: column;
    padding-top: 50px;
  }

  .header-menu .nav .each-link {
    width: 100%;
    text-align: center;
  }

  .header-menu .nav .each-link a {
    display: block;
    width: 100%;
  }

  .header-menu .nav .has-dropdown .dropdown-menu {
    width: 100%;
    position: relative;
    top: 0px;
  }

  .header-menu .nav .has-dropdown .text-menu {
    padding-bottom: 5px;
  }

  .header-menu .nav .has-dropdown .dropdown-menu::after {
    top: -3px;
    left: 49%;
  }
}

@media screen and (max-width: 800px) {
  .history {
    width: 98%;
  }

  .history li {
    font-size: 12px;
    padding: 2px 1px;
  }

  .history li i {
    font-size: 8px;
  }

  .user_settings {
    width: 100%;
  }

  .user_settings .each-settings {
    flex-direction: column;
  }

  .user_settings .each-settings .save_button {
    margin-left: 0px;
    width: 80%;
  }

  .user_settings .each-settings .logout_button {
    width: 80%;
    margin-top: 20px;
    text-align: center;
  }

  .section {
    width: 95%;
  }

  .section .categories {
    flex-direction: column;
  }

  .section .categories .each-cat {
    width: 90%;
    margin: 30px auto;
  }

  .form-box {
    width: 90%;
  }

  .form-box .each-input label {
    font-size: 18px;
  }

  .accounts-list {
    width: 98%;
    flex-direction: column;
    justify-content: center;
  }

  .accounts-list .each-account .acc-img {
    width: 110px;
  }

  .accounts-list .each-account .acc-img a {
    display: block;
    width: 100%;
    height: 100%;
  }

  .accounts-list .each-account .acc-desc .acc-name {
    font-size: 18px;
  }

  .accounts-list .each-account .acc-desc .acc-short-profile {
    font-size: 14px;
  }

  .accounts-list .each-account {
    width: 100%;
  }

  .account-view {
    width: 98%;
  }

  .account-view .each-detail {
    flex-direction: column;
  }

  .services .each-service {
    width: 100%;
  }

  .about-us-content, .privacy-poilcy-content {
    width: 98%;
  }


}

@media screen and (max-width: 460px) {
  .section .categories .each-cat .cat-text .cat-title {
    font-size: 20px;
  }
  .section .categories .each-cat .cat-text .cat-desc {
    font-size: 16px;
  }

  .header .login-link {
    top: 15%;
  }

  .section .categories .each-cat .cat-text {
    top: 12px;
  }

  .section .flex .section-content h2 {
    font-size: 26px;
  }

  .reset-password {
    width: 98%;
  }

  .reset-password .input {
    width: 100%;
  }

  .reset-password .btn_reset {
    margin: 50px 10px;
    width: 60%;
  }


}