@import url("https://fonts.googleapis.com/css2?family=Tajawal:wght@200;300;400;500;700;800;900&display=swap");
@font-face {
  font-family: "light";
  src: url(../fonts/emkan/light.otf);
}
@font-face {
  font-family: "regular";
  src: url(../fonts/emkan/regular.otf);
}
@font-face {
  font-family: "bold";
  src: url(../fonts/emkan/bold.otf);
}
@font-face {
  font-family: "semiBold";
  src: url(../fonts/emkan/semiBold.otf);
}
@font-face {
  font-family: "medium";
  src: url(../fonts/emkan/medium.otf);
}
:root {
  --primary: #5E2964;
  --secondary: #49B189;
  --light1: #f6f3f7;
  --filterPrimary: invert(0%) sepia(100%) saturate(19%) hue-rotate(19deg) brightness(101%) contrast(106%);
  --filterSecondary: invert(0%) sepia(100%) saturate(19%) hue-rotate(19deg) brightness(101%) contrast(106%);
  --filterWhite: invert(99%) sepia(0%) saturate(4787%) hue-rotate(41deg) brightness(127%) contrast(96%);
}

* {
  margin: 0;
  box-sizing: border-box;
  text-decoration: none;
  font-family: "regular";
  scroll-behavior: smooth;
}
*::-moz-selection {
  background-color: var(--primary);
  color: #fff;
}
*::selection {
  background-color: var(--primary);
  color: #fff;
}
*::-webkit-scrollbar {
  width: 7px;
}
*::-webkit-scrollbar-track {
  background-color: #eee;
}
*::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 8px;
}

h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
  margin-bottom: 0;
  font-weight: bold;
}

body {
  direction: rtl;
  overflow-x: hidden;
}

div::-webkit-scrollbar,
ul::-webkit-scrollbar,
nav::-webkit-scrollbar {
  height: 5px;
}

/**********************************************
   Start Global Style
**********************************************/
.color-gray {
  color: #ccc;
}

.color-gray2 {
  color: #888;
}

.color-dark {
  color: #1B2021;
}

.color-primary {
  color: var(--primary);
}

.color-secondary {
  color: var(--secondary);
}

.filterPrimary {
  filter: var(--filterPrimary);
}

.filterSecondary {
  filter: var(--filterSecondary);
}

.filterWhite {
  filter: var(--filterWhite);
}

.bg-light1 {
  background-color: #f6f3f7 !important;
}

p,
.p {
  font-size: 15px;
  color: #555;
  line-height: 1.7rem;
  margin-bottom: 0;
}

a {
  color: #000;
  transition: all 0.3s ease-in-out;
  text-decoration: none !important;
}
a:hover {
  color: var(--primary) !important;
}
a:focus {
  outline: 0;
}

del,
.del {
  text-decoration: line-through;
  color: #888;
  font-size: 80%;
}

ul:not(.list-style) {
  list-style-type: none;
  padding: 0;
}

button {
  border: none;
  padding: 0;
  transition: all 0.3s linear;
  background-color: transparent;
}
button:focus {
  border: none;
  box-shadow: transparent;
  outline: 0;
}

button:active,
button:active:focus,
button:active:hover,
button:focus,
button:hover,
button:not(:disabled):not(.disabled).active,
button:not(:disabled):not(.disabled):active {
  transition: all 0.3s ease;
  outline: 0;
  box-shadow: none;
}

form .form-group {
  position: relative;
}
form .form-control {
  font-size: 14px;
}
form .form-control:focus {
  outline: none !important;
  box-shadow: none !important;
  border: 1px solid var(--primary) !important;
}
form input,
form select {
  height: 60px !important;
}
form .form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
  box-shadow: none;
}
form textarea {
  resize: none;
}
form .form-check-input {
  height: 1em !important;
}

.progress-wrap {
  position: fixed;
  inset-inline-end: 15px;
  bottom: 15px;
  height: 45px;
  width: 45px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgba(51, 51, 51, 0.2);
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  transform: translateY(130%);
  z-index: 99;
  transition: all 200ms linear;
}
.progress-wrap::after {
  background: url(../images/icons/top-arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  color: var(--primary);
  left: 10.5px;
  top: 10.5px;
  height: 25px;
  width: 25px;
  display: block;
  filter: var(--filterPrimary);
}
.progress-wrap svg path {
  fill: #f8f8f8;
}
.progress-wrap svg.progress-circle path {
  stroke: var(--primary);
  stroke-width: 4;
  box-sizing: border-box;
}
.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.container,
.container-fluid,
.zi-5 {
  position: relative;
  z-index: 5;
}

.secImg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.text-end {
  text-align: end;
}

.overflow_hidden {
  overflow: hidden !important;
}

.bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

img {
  max-width: 100%;
  max-height: 100%;
}

.img-cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.img-contain {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.w-fit {
  width: -moz-fit-content;
  width: fit-content;
}

.position-unset {
  position: unset;
}

.underline {
  text-decoration: underline !important;
}

.trans_3 {
  transition: all 0.3s linear;
}

/**********************************************
   Start Loader
**********************************************/
#preloader {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: fixed;
  z-index: 9999999;
  pointer-events: none;
  /*----------- upload loader ------------*/
}
#preloader::after, #preloader::before {
  content: "";
  position: fixed;
  left: 0;
  height: 50%;
  width: 100%;
  background: linear-gradient(to right, #0d1a36, #132650, #0a152e);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
#preloader::before {
  top: 0;
}
#preloader::after {
  bottom: 0;
}
#preloader .logo_img {
  width: 300px;
  max-width: 70%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
  opacity: 0.5;
}
#preloader #loading-wrapper {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.3333333333);
  display: none;
  transition: all 0.5s ease;
}
#preloader #loading-wrapper.show {
  display: block;
}
#preloader #loading-wrapper #loading-text {
  display: block;
  position: absolute;
  top: calc(50% - 38px);
  left: 50%;
  color: #fff;
  width: 100px;
  height: 100px;
  margin: -7px 0 0 -45px;
  text-align: center;
  font-size: 20px;
}
#preloader #loading-wrapper img {
  width: 100px;
  height: 100px;
  -o-object-fit: contain;
  object-fit: contain;
}
#preloader #loading-wrapper #loading-content {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 170px;
  height: 170px;
  margin: -85px 0 0 -85px;
  border: 3px solid #F00;
}
#preloader #loading-wrapper #loading-content::after {
  content: "";
  position: absolute;
  border: 3px solid #0F0;
  left: 15px;
  right: 15px;
  top: 15px;
  bottom: 15px;
}
#preloader #loading-wrapper #loading-content::before {
  content: "";
  position: absolute;
  border: 3px solid #00F;
  left: 5px;
  right: 5px;
  top: 5px;
  bottom: 5px;
}
#preloader #loading-wrapper #loading-content {
  border: 3px solid transparent;
  border-top-color: #3659A3;
  border-bottom-color: #3659A3;
  border-radius: 50%;
  animation: loader 2s linear infinite;
}
#preloader #loading-wrapper #loading-content::before {
  border: 3px solid transparent;
  border-top-color: #0aafde;
  border-bottom-color: #0aafde;
  border-radius: 50%;
  animation: loader 3s linear infinite;
}
#preloader #loading-wrapper #loading-content::after {
  border: 3px solid transparent;
  border-top-color: #E33F74;
  border-bottom-color: #E33F74;
  border-radius: 50%;
  animation: loader 1.5s linear infinite;
  -moz-animation: loader 2s linear infinite;
  -o-animation: loader 2s linear infinite;
}
#preloader.isdone {
  visibility: hidden;
  transition-delay: 1.5s;
}
#preloader.isdone #loading-wrapper {
  opacity: 0;
  transform: scale(3);
  filter: blur(2px);
}
#preloader.isdone::after, #preloader.isdone::before {
  height: 0;
  transition: all 0.7s cubic-bezier(1, 0, 0.55, 1);
  transition-delay: 1s;
}
#preloader #content-wrapper {
  color: #FFF;
  position: fixed;
  left: 0;
  top: 20px;
  width: 100%;
  height: 100%;
}
#preloader #header {
  width: 800px;
  margin: 0 auto;
  text-align: center;
  height: 100px;
  background-color: #666;
}
#preloader #content {
  width: 800px;
  height: 1000px;
  margin: 0 auto;
  text-align: center;
  background-color: #888;
}
@keyframes loader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/**********************************************
   Start Animations
**********************************************/
@keyframes floating-y {
  0% {
    transform: translateY(2px);
  }
  100% {
    transform: translateY(-2px);
  }
}
@keyframes floatingX {
  0% {
    transform: translateX(2px);
  }
  100% {
    transform: translateX(-2px);
  }
}
.slide_ltr {
  transform: scale(1.05);
  transition: all 1s ease-in-out;
  transition-delay: 0.1s;
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
          clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}
.slide_ltr.animated {
  transform: scale(1);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
.slide_ltr.no_scale {
  transform: scale(1);
}

.slide_rtl {
  transform: scale(1.05);
  transition: all 1s ease-in-out;
  transition-delay: 0.1s;
  -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
          clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}
.slide_rtl.animated {
  transform: scale(1);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
.slide_rtl.no_scale {
  transform: scale(1);
}

@keyframes puff-in {
  0% {
    transform: scale(1.2);
    filter: blur(4px);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    filter: blur(0px);
    opacity: 1;
  }
}
.puff-in {
  animation: puff-in 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) both;
}

@keyframes text-focus-in {
  0% {
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    filter: blur(0px);
    opacity: 1;
  }
}
.text-focus-in {
  animation: text-focus-in 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}

/**********************************************
    Start Public Classes
**********************************************/
.section {
  position: relative;
  padding: 70px 0;
  overflow: hidden;
}

.swiper-container .swiper-pagination {
  bottom: 0;
}
.swiper-container .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 25px;
}
.swiper-container .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--primary);
}
.swiper-container .swiper-button-next,
.swiper-container .swiper-button-prev {
  background-image: unset;
  width: 40px;
  height: 40px;
  border: 1px solid transparent;
  border-radius: 50%;
  background-image: unset;
  background-color: #f5f5f5;
  transition: all 0.3s linear;
}
.swiper-container .swiper-button-next::before,
.swiper-container .swiper-button-prev::before {
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 15px;
  color: var(--secondary);
  transition: all 0.3s linear;
}
.swiper-container .swiper-button-next:hover,
.swiper-container .swiper-button-prev:hover {
  background-color: var(--primary);
  opacity: 1;
}
.swiper-container .swiper-button-next:hover::before,
.swiper-container .swiper-button-prev:hover::before {
  color: #fff;
}
.swiper-container .swiper-button-next,
.swiper-container .swiper-container-rtl .swiper-button-prev {
  right: 2%;
  left: auto;
}
.swiper-container .swiper-button-next::before,
.swiper-container .swiper-container-rtl .swiper-button-prev::before {
  content: "\f0da";
}
.swiper-container .swiper-button-prev,
.swiper-container .swiper-container-rtl .swiper-button-next {
  left: 2%;
  right: auto;
}
.swiper-container .swiper-button-prev::before,
.swiper-container .swiper-container-rtl .swiper-button-next::before {
  content: "\f0d9";
}

.butn {
  position: relative;
  padding: 0.95rem 2rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 16px;
  border: 1px solid transparent;
  border-radius: 24px;
  font-weight: bold;
}
.butn.md_butn {
  padding: 10px 15px;
  border-radius: 10px;
  font-size: 13px;
}
.butn i {
  position: relative;
  margin-inline-end: 7px;
  top: 2px;
}
.butn.sm_butn {
  padding: 0;
  width: 50px;
  height: 50px;
}
.butn.sm_butn i {
  top: 0;
}
.butn.primary_butn {
  background-color: var(--primary);
  color: #fff;
}
.butn.primary_border_butn {
  border: 1px solid var(--primary);
  color: var(--primary);
  background-color: transparent;
}
.butn.secondary_butn {
  background-color: var(--secondary);
  color: #fff;
}
.butn.secondary_border_butn {
  border: 1px solid var(--secondary);
  color: var(--secondary);
  background-color: transparent;
}
.butn.white_butn {
  background-color: #fff;
  color: #333;
}
.butn.white_border_butn {
  background-color: #fff;
  border: 1px solid #D6D3D3;
}
.butn:hover {
  background-color: #53BEDA;
  border: 1px solid #53BEDA;
  color: #fff !important;
}
.butn:hover .icon {
  filter: var(--filterWhite);
}

.icon18 {
  width: 18px;
  height: 18px;
  -o-object-fit: contain;
     object-fit: contain;
}

.icon15 {
  width: 15px;
  height: 15px;
  -o-object-fit: contain;
     object-fit: contain;
}

/**********************************************
   Start Edit Navbar & Footer
**********************************************/
/*body {*/
/*  padding-top: 115px;*/
/*}*/

.navs-container {
  padding-bottom: 6px;
  position: relative;
  /*position: fixed;*/
  /*top: 0;*/
  /*left: 0;*/
  width: 100%;
  /*z-index: 99;*/
  background-color: #fff;
}
.navs-container .navbar {
  padding: 1rem;
}
.navs-container .navbar .logo {
  width: 200px;
  -o-object-fit: contain;
     object-fit: contain;
}
.navs-container .navbar .nav-link {
  margin-inline-end: 10px;
  color: #21231D;
  font-size: 17px;
}
.navs-container .navbar .nav-link.active {
  font-weight: bold;
  color: var(--primary);
}
.navs-container .navbar .dropdown-menu {
  text-align: center;
  border-radius: 10px;
  border-color: transparent;
  box-shadow: 0px 0px 15px 0 rgba(51, 51, 51, 0.0666666667);
  font-size: 15px;
  border: 1px solid #eee;
}
.navs-container .navbar .dropdown-menu .dropdown-item {
  padding: 0.5rem 1rem;
  border-radius: 10px;
}
.navs-container .navbar .navbar-toggler {
  width: 40px;
  height: 40px;
  cursor: pointer;
  background-color: rgba(221, 221, 221, 0.3);
  border: none;
  position: relative;
}
.navs-container .navbar .navbar-toggler.active .navbar-toggler-icon {
  box-shadow: 0px 0px 0px grey;
  background: rgba(0, 0, 0, 0);
}
.navs-container .navbar .navbar-toggler.active .navbar-toggler-icon::before {
  top: 0px !important;
  transform: rotate(45deg);
}
.navs-container .navbar .navbar-toggler.active .navbar-toggler-icon::after {
  top: 0px !important;
  transform: rotate(135deg);
}
.navs-container .navbar .navbar-toggler .navbar-toggler-icon {
  width: 25px;
  height: 2px;
  background: var(--primary);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.5s;
}
.navs-container .navbar .navbar-toggler .navbar-toggler-icon::after, .navs-container .navbar .navbar-toggler .navbar-toggler-icon::before {
  content: "";
  position: absolute;
  width: 25px;
  height: 2px;
  background: var(--primary);
  transition: 0.5s;
}
.navs-container .navbar .navbar-toggler .navbar-toggler-icon::after {
  top: -6px;
  right: 0px;
}
.navs-container .navbar .navbar-toggler .navbar-toggler-icon::before {
  top: 6px;
  right: 0px;
}
.navs-container::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  background-color: rgba(18, 56, 100, 0.3);
  height: 4px;
  top: unset;
  background-image: linear-gradient(to right, #6AB64B, #FFB71D, #23ACD0, #5E2964);
}

.footer {
  border-top: 1px solid #eee;
}
.footer .content {
  margin-bottom: 30px;
}
.footer .content .logo {
  height: 70px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin-bottom: 20px;
}
.footer .content .social_links a {
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: var(--primary);
  margin: 0px 5px;
  border-radius: 50%;
  font-size: 14px;
}
.footer .content .social_links a:hover {
  background-color: var(--secondary);
  color: #fff !important;
}
.footer .content .links a {
  display: table;
  font-size: 15px;
  color: #666;
  margin-bottom: 12px;
}
.footer .content form .form-control {
  background-color: #F6F6F6;
  border-color: #F6F6F6;
  border-radius: 35px;
  height: 50px !important;
}
.footer .content form .submit_butn {
  width: 40px !important;
  height: 40px !important;
  position: absolute;
  inset-inline-end: 5px;
  top: 5px;
  border-radius: 50%;
}
.footer .foot {
  padding: 25px 0;
  border-top: 1px solid #eee;
}
.footer .foot .links a {
  color: #666;
  margin-inline-end: 15px;
  font-size: 15px;
}
.footer .foot .p {
  font-size: 15px;
}
.footer .foot .p .alyomLogo {
  width: 55px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-inline-start: 5px;
}

/**********************************************
    Start Edit Home Page 
**********************************************/
.header .txt_box .title {
  font-size: 55px;
}
.header .txt_box .subtitle {
  line-height: 1.4;
}
.header .shapes {
  position: absolute;
  inset-inline-end: 20%;
  top: 8%;
  width: 32%;
  -o-object-fit: contain;
     object-fit: contain;
}
.header .shapes2 {
  width: 77px;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  bottom: 10%;
  inset-inline-start: -1%;
}

.categ_sec {
  background-image: linear-gradient(to right, #5E2964, #49B189);
}
.categ_sec .categ_card {
  background-color: rgba(255, 255, 255, 0.1764705882);
  border-radius: 20px;
  position: relative;
  padding: 45px 35px;
  padding-bottom: 70px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  margin-bottom: 25px;
  height: calc(100% - 25px);
}
.categ_sec .categ_card .title {
  margin-bottom: 15px;
  font-size: 25px;
  font-weight: bold;
}
.categ_sec .categ_card .p {
  color: #f5f5f5;
  height: 82px;
  overflow: hidden;
}
.categ_sec .categ_card .ul {
  height: 90.5px;
  overflow: hidden;
}
.categ_sec .categ_card .ul li {
  color: #f5f5f5;
  margin-bottom: 7px;
  display: block;
  position: relative;
  padding-inline-start: 20px;
  font-size: 15px;
  line-height: 1.7;
}
.categ_sec .categ_card .ul li::before {
  content: "\f0c8";
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  display: inline-block;
  font-size: 8px;
  position: absolute;
  top: 4px;
  inset-inline-start: 0;
  color: var(--primary);
}
.categ_sec .categ_card .more_butn {
    position: absolute;
    bottom: 35px;
  color: #fff;
}
.categ_sec .categ_card .more_butn::before {
  content: "";
  width: 20px;
  height: 6px;
  background-color: #53BEDA;
  position: absolute;
  inset-inline-start: 0;
  transition: all 0.3s linear;
  bottom: 0;
  z-index: -1;
}
.categ_sec .categ_card .more_butn:hover::before {
  width: 100%;
}
.categ_sec .shape {
  position: absolute;
  inset-inline-start: -130px;
  top: 0;
  width: 125px;
}

.community_sec  {
    background-color: #f8f8f8 ;
}

.community_sec .txt_box .sec_title {
  position: relative;
}
.community_sec .txt_box .sec_title::before {
  content: "";
  width: 125px;
  height: 40px;
  background: url(../images/shapes-4.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  inset-inline-start: -130px;
  top: -6px;
}
.community_sec .txt_box .p {
  font-size: 16px;
}
.community_sec .secImg {
  height: 460px;
  -o-object-fit: contain;
     object-fit: contain;
}

.blog_sec .sec_title {
  position: relative;
}
.blog_sec .sec_title::before {
  content: "";
  width: 125px;
  height: 40px;
  background: url(../images/shapes-5.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  inset-inline-start: -130px;
  top: -6px;
}
.blog_sec .nav-link {
  background-color: #f9f9f9;
  border-radius: 24px;
  padding: 0.7rem 2rem;
  color: #666;
  margin-inline-end: 5px;
}
.blog_sec .nav-link.active {
  background-color: var(--primary) !important;
  color: #fff !important;
}
.blog_sec .blog_card {
  border: 1px solid #eee;
  border-radius: 25px;
  margin-bottom: 25px;
  height: calc(100% - 25px);
}
.blog_sec .blog_card .img_box {
  height: 180px;
  position: relative;
  border-radius: 25px 25px 0 0;
  overflow: hidden;
}
.blog_sec .blog_card .img_box .categ_badge {
  background-color: #fff;
  padding: 0.6rem 1rem;
  position: absolute;
  top: 10px;
  left: 10px;
  border-radius: 25px;
  font-size: 12px;
  color: var(--primary);
}
.blog_sec .blog_card .card-body {
  padding: 2rem 1.5rem;
}

.blog_sec .blog_card .card-body .p {
    position: relative;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog_sec .blog_card .card-body .title {
  height: 68px;
  overflow: hidden;
  font-size: 28px;
  font-weight: bold;
}
.blog_sec .blog_card .card-body .more_butn {
  position: relative;
  color: #101010;
  font-size: 17px;
}
.blog_sec .blog_card .card-body .more_butn::before {
  content: "";
  width: 20px;
  height: 6px;
  background-color: #53BEDA;
  position: absolute;
  inset-inline-start: 0;
  transition: all 0.3s linear;
  bottom: 0;
  z-index: -1;
}
.blog_sec .blog_card .card-body .more_butn:hover::before {
  width: 100%;
}

.about_sec {
  background-color: #F5F6F8;
}
.about_sec .txt_box .sec_title {
  position: relative;
}
.about_sec .txt_box .sec_title::before {
  content: "";
  width: 125px;
  height: 40px;
  background: url(../images/shapes-6.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  inset-inline-start: -130px;
  top: -6px;
}
.about_sec .txt_box .p {
  font-size: 24px;
  line-height: 1.7;
}
.about_sec .secImg {
  height: 380px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left;
     object-position: left;
}
.about_sec .pattern {
  position: absolute;
  top: 0;
  inset-inline-end: 0;
}

.partners_sec .sec_title {
  position: relative;
}
.partners_sec .sec_title::before {
  content: "";
  width: 125px;
  height: 40px;
  background: url(../images/shapes-7.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  inset-inline-start: -130px;
  top: -6px;
}
.partners_sec .logo {
  max-width: 85%;
  display: block;
  margin: auto;
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.3s linear;
  filter: grayscale(100%);
}
.partners_sec .logo:hover {
  filter: grayscale(0);
}

/**********************************************
    Start innerheader
**********************************************/
.innerheader {
  position: relative;
  padding: 50px 0;
  background: linear-gradient(90deg, #5E2964 0%, #49B189 69%), linear-gradient(180deg, #23ACD0 0%, #5E2964 100%);
  color: #fff;
}
.innerheader h1 {
  font-size: 35px;
  color: var(--primary);
  font-weight: bold;
}
.innerheader h1 i {
  font-size: 20px;
  margin-inline-end: 10px;
}
.innerheader .links {
  position: relative;
  padding-top: 10px;
}
.innerheader .links a {
  color: #fff;
}

/**********************************************
    Start communities 
**********************************************/
.communities {
  position: relative;
}
.communities .filter-box {
  position: relative;
  padding: 30px 15px 20px;
  background-color: #fff;
  border-radius: 20px;
  margin-top: 30px;
}
.communities .filter-box .search-group {
  position: relative;
  display: flex;
}
.communities .filter-box .search-group .form-control {
  min-height: 35px;
  border: 1px solid rgba(153, 153, 153, 0.2);
  background-color: #fff;
  border-radius: 8px;
  box-shadow: none;
  font-size: 13px;
  padding: 10px 35px 10px 10px;
}
.communities .filter-box .search-group button {
  position: absolute;
  right: 10px;
  top: 10px;
  background-color: transparent;
  border: 0;
  color: var(--primary);
}
.communities .filter-box .accordion-box {
  position: relative;
  max-height: 730px;
  overflow-y: auto;
  margin-top: 20px;
  padding-inline-end: 10px;
}
.communities .filter-box .accordion-box::-webkit-scrollbar {
  width: 3px;
}
.communities .filter-box .accordion-box::-webkit-scrollbar-track {
  background-color: rgba(94, 41, 100, 0.0196078431);
}
.communities .filter-box .accordion-box::-webkit-scrollbar-thumb {
  background: rgba(94, 41, 100, 0.0666666667);
  border-radius: 8px;
}
.communities .filter-box .accordion {
  position: relative;
}
.communities .filter-box .accordion .accordion-item {
  border: 0;
}
.communities .filter-box .accordion .accordion-item .accordion-header {
  padding: 0;
}
.communities .filter-box .accordion .accordion-item .accordion-header .accordion-button {
  position: relative;
  background-color: transparent;
  border-radius: 10px;
  color: #1F1F39;
  border: 0;
  box-shadow: none;
  font-size: 12px;
  font-weight: bold;
  padding: 12px 15px;
}
.communities .filter-box .accordion .accordion-item .accordion-header .accordion-button::after {
  background-size: 10px;
  background-position: center;
  background-image: none;
  content: "\f078";
  font-family: "Font Awesome 6 Pro";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  font-size: 11px;
}
.communities .filter-box .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  background-color: var(--primary);
  color: #fff;
}
.communities .filter-box .accordion .accordion-item .accordion-body {
  padding: 10px 15px 0;
}
.communities .filter-box .accordion .accordion-item .accordion-body .acc-list a {
  position: relative;
  font-size: 12px;
  color: #616161;
  display: block;
  margin: 15px 0;
  padding-inline-start: 15px;
}
.communities .filter-box .accordion .accordion-item .accordion-body .acc-list a::before {
  position: absolute;
  content: "";
  inset-inline-start: 0;
  top: 5px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #616161;
}
.communities .filter-box .accordion .accordion-item .accordion-body .acc-list a:hover {
  color: var(--primary);
}
.communities .com-card {
  position: relative;
  background-color: #fff;
  padding: 30px;
  border-radius: 15px;
  margin-top: 30px;
  overflow: hidden;
  z-index: 20;
}
.communities .com-card .tags {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.communities .com-card .tags a {
  font-size: 14px;
  font-weight: bold;
  color: var(--primary);
}
.communities .com-card .tags a .icon {
  font-size: 13px;
  margin-inline-end: 5px;
}
.communities .com-card .title {
  position: relative;
  font-size: 20px;
  margin-top: 30px;
  font-weight: bold;
  margin-bottom: 5px;
  white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.communities .com-card .cats {
  position: relative;
  display: flex;
  align-items: center;
}
.communities .com-card .cats a {
  font-size: 10px;
  font-weight: bold;
  border-radius: 6px;
  opacity: 0.5;
  margin-top: 5px;
}
.communities .com-card .cats a.main-cat {
  opacity: 1;
}
.communities .com-card .cats .arrow {
  font-size: 12px;
  margin: 5px 10px 0;
}
.communities .com-card .shap {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 300px;
  height: 300px;
  transform: translate(-20%, 40%);
  opacity: 0.03;
  pointer-events: none;
  z-index: -1;
}

.main-search-box {
  position: relative;
}
.main-search-box .form-group {
  position: relative;
  display: flex;
}
.main-search-box .form-group .form-control {
  min-height: 50px;
  border: 0;
  background-color: #fff;
  border-radius: 30px;
  box-shadow: none;
  font-size: 15px;
    padding: 10px;
    padding-inline-start: 50px;
}
.main-search-box .form-group button {
  position: absolute;
  inset-inline-start: 25px;
  top: 15px;
  background-color: transparent;
  border: 0;
  color: var(--primary);
}
.main-search-box .filter-btn {
  position: relative;
  background-color: var(--primary);
  border-radius: 30px;
  display: flex;
  align-items: center;
    padding: 0 10px;
    padding-inline-end: 30px;
}
.main-search-box .filter-btn .form-select {
  min-height: 50px;
  border: 0;
  background-color: var(--primary);
  color: #fff;
  border-radius: 30px;
  box-shadow: none;
  font-size: 15px;
  padding: 0;
  padding-inline-start: 20px;
  background-image: none;
}
.main-search-box .filter-btn .icon {
  position: relative;
  font-size: 18px;
  color: #fff;
  line-height: 1;
}
.main-search-box.main-search-st2 button {
  position: absolute;
  right: auto;
    inset-inline-end: 0 !important ;
    inset-inline-start: unset !important;
    top: 0;
    background-color: var(--primary);
    color: #fff;
    border: 0;
    width: 60px;
    height: 60px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.main-search-box.main-search-st2 button:hover {
  background-color: var(--secondary);
}
.main-search-box.main-search-st2 .ico {
  position: absolute;
    inset-inline-start: 20px;
    top: 20px;
  background-color: transparent;
  border: 0;
  color: var(--primary);
}

/* --------------- pagination --------------- */
.pagination {
  position: relative;
  justify-content: center;
  margin-top: 50px;
}
.pagination .page-link {
  width: 45px;
  height: 45px;
  border-radius: 6px !important;
  margin: 0 5px;
  background-color: #fff;
  border: 1px solid rgba(153, 153, 153, 0.2);
  color: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pagination .page-link:hover, .pagination .page-link.active {
  background-color: var(--primary);
  color: #fff !important;
}

/**********************************************
    Start Edit illnesses 
**********************************************/
.illnesses {
  position: relative;
}
.illnesses .ill-card {
  position: relative;
  background-color: #fff;
  padding: 30px;
  border-radius: 15px;
  overflow: hidden;
  z-index: 20;
  margin-top: 24px;
  z-index: 20;
  overflow: hidden;
  height: calc(100% - 24px);
  padding-bottom: 90px;
}

.illnesses .ill-card .butn {
    position: absolute;
    bottom: 30px;
}
.illnesses .ill-card .title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 22px;
}

.illnesses .ill-card::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: rgba(73, 177, 137, 0.0666666667);
  transform: translate(-40%, -40%);
  z-index: -1;
  pointer-events: none;
}
.illnesses .ill-card::after {
  position: absolute;
  content: "";
  left: 90px;
  top: 90px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: rgba(73, 177, 137, 0.2);
  z-index: -1;
  pointer-events: none;
}
.illnesses .ill-card .sec-num {
  position: relative;
  font-size: 16px;
  color: #999;
  font-size: 13px;
  margin-bottom: 10px;
}
.illnesses .ill-card .sec-num strong {
  color: var(--primary);
  font-size: 15px;
}
.illnesses .ill-card .tags {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
}
.illnesses .ill-card .tags a {
  font-size: 14px;
  font-weight: bold;
  color: var(--primary);
}
.illnesses .ill-card .tags a .icon {
  font-size: 13px;
  margin-inline-end: 5px;
}

.white-box {
  position: relative;
  padding: 30px;
  background-color: #fff;
  border-radius: 20px;
}

.illnesses h1, .illnesses h2, .illnesses h3, .illnesses h4, .illnesses h5, .illnesses h6 {
  color: var(--primary);
}
.illnesses .illnesses-det {
  position: relative;
}
.illnesses .illnesses-det .tags {
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 10px;
}
.illnesses .illnesses-det .tags a {
  font-size: 14px;
  font-weight: bold;
  color: var(--primary);
  margin-inline-start: 20px;
}
.illnesses .illnesses-det .tags a:first-of-type {
  margin-inline-start: 0;
}
.illnesses .illnesses-det .tags a .icon {
  font-size: 13px;
  margin-inline-end: 5px;
}
.illnesses .illnesses-det .content-wrapper {
  position: relative;
  height: 600px;
  overflow: hidden;
  padding-bottom: 50px;
}
.illnesses .illnesses-det .content-wrapper.more {
  height: -moz-max-content;
  height: max-content;
}
.illnesses .illnesses-det .content-wrapper.more .more-btn {
  display: none;
}
.illnesses .illnesses-det .content-wrapper h5 {
  color: var(--primary);
  margin-bottom: 15px;
}
.illnesses .illnesses-det .content-wrapper .info-item {
  position: relative;
  margin-top: 30px;
}
.illnesses .illnesses-det .content-wrapper .info-item .text {
  font-size: 14px;
  color: #21231D;
  line-height: 1.8;
}
.illnesses .illnesses-det .content-wrapper .info-item ol,
.illnesses .illnesses-det .content-wrapper .info-item ul {
  font-size: 14px;
  color: #21231D;
  line-height: 1.8;
}
.illnesses .illnesses-det .content-wrapper .info-item ol li,
.illnesses .illnesses-det .content-wrapper .info-item ul li {
  margin: 10px 0;
}
.illnesses .illnesses-det .content-wrapper .more-btn {
  position: absolute;
  right: 0;
  bottom: 0;
  color: var(--primary);
  font-weight: bold;
  cursor: pointer;
  z-index: 20;
  padding: 20px 0 0;
  background-color: #fff;
  width: 100%;
}
.illnesses .links-box .links-list {
  position: relative;
  margin-top: 15px;
  margin-bottom: 0;
  max-height: 200px;
  overflow-x: auto;
}
.illnesses .links-box .links-list::-webkit-scrollbar {
  width: 2px;
}
.illnesses .links-box .links-list::-webkit-scrollbar-track {
  background-color: #eee;
}
.illnesses .links-box .links-list::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 8px;
}
.illnesses .links-box .links-list a {
  margin: 5px 0;
  display: inline-block;
  color: #23ACD0;
  text-decoration: underline !important;
}
.illnesses .links-box .links-list a i {
  font-size: 10px;
}
.illnesses .translation-box .translations {
  position: relative;
}
.illnesses .translation-box .translations .item {
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.illnesses .translation-box .translations .item .icon {
  width: 30px;
  height: 30px;
  margin-inline-end: 10px;
  flex-shrink: 0;
}

.up_group {
  position: relative;
}
.up_group .input-group-append {
  position: absolute;
  right: 6px;
  bottom: 5px;
  width: 150px;
  font-size: 12px;
  min-height: calc(100% - 10px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--secondary);
  color: #fff;
  pointer-events: none;
  padding: 10px;
  border-radius: 30px !important;
}
.up_group .file {
  position: absolute;
  opacity: 0;
  right: 2px;
  bottom: 2px;
  width: 150px;
  min-height: 50px;
  z-index: 20;
  cursor: pointer;
  border-radius: 30px;
}
.up_group .input_ques {
  min-height: 50px;
  width: 100% !important;
  display: block !important;
  border-radius: 30px !important;
  border: 1px solid rgba(153, 153, 153, 0.1333333333);
  padding: 8px 20px;
  font-size: 13px;
  background-color: #fff;
  padding-right: 170px !important;
}
.up_group .input_ques::-moz-placeholder {
  color: rgba(153, 153, 153, 0.6);
}
.up_group .input_ques::placeholder {
  color: rgba(153, 153, 153, 0.6);
}

/**********************************************
    Start Edit timeline
**********************************************/
.timeline {
  position: relative;
}
.timeline .timeline-header {
  position: relative;
  background: #fff;
  z-index: 20;
  border-radius: 0 0 50px 50px;
  margin-bottom: -50px;
}
.timeline .timeline-header .cover-img {
  position: relative;
  border-radius: 0 0 20px 20px;
  overflow: hidden;
}
.timeline .timeline-header .cover-info {
  position: relative;
  z-index: 10;
}
.timeline .timeline-header .cover-info .main-inf {
  position: relative;
  display: flex;
  align-items: center;
}
.timeline .timeline-header .cover-info .main-inf .avatar {
  width: 135px;
  height: 135px;
  border-radius: 50%;
  overflow: hidden;
  margin-top: -40px;
  margin-inline-end: 20px;
  flex-shrink: 0;
  border: 5px solid #fff;
}
.timeline .timeline-header .cover-info .main-inf .cont {
  position: relative;
  padding: 30px 0;
}
.timeline .timeline-header .cover-info .main-inf .cont h1 {
  font-size: 30px;
  font-weight: bold;
  color: var(--primary);
}
.timeline .timeline-header .cover-info .main-inf .cont .stats {
  font-size: 14px;
  color: #777;
}
.timeline .timeline-header .cover-info .main-inf .cont .stats i {
  font-size: 6px;
  margin: 0 10px;
}
.timeline .main-tabs {
  position: relative;
  padding: 70px 0;
  background: linear-gradient(90deg, #5E2964 0%, #49B189 69%), linear-gradient(180deg, #23ACD0 0%, #5E2964 100%);
  color: #fff;
}
.timeline .main-tabs .butn {
  padding: 10px 2rem;
}
.timeline .main-tabs .nav-pills .nav-item .nav-link {
  position: relative;
  background-color: #fff;
  padding: 12px 50px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 30px;
  color: var(--primary);
  margin-inline-end: 10px;
}
.timeline .main-tabs .nav-pills .nav-item .nav-link.active {
  background-color: var(--primary);
  color: #fff;
}
.timeline .timeline-body {
  position: relative;
  z-index: 20;
  border-radius: 50px 50px 0 0;
  margin-top: -50px;
}
.timeline .timeline-body .post-card {
  position: relative;
  padding: 20px;
  border-radius: 15px;
  background-color: #fff;
  margin-bottom: 24px;
}
.timeline .timeline-body .post-card .user-info {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}
.timeline .timeline-body .post-card .user-info .avatar {
  width: 50px;
  height: 50px;
  margin-inline-end: 15px;
  flex-shrink: 0;
}
.timeline .timeline-body .post-card .user-info h6 {
  font-size: 16px;
  font-weight: bold;
}
.timeline .timeline-body .post-card .user-info .small {
  font-size: 10px;
  margin-top: 5px;
}
.timeline .timeline-body .post-card .post-img {
  position: relative;
  height: 300px;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 15px;
}
.timeline .timeline-body .post-card .post-btns {
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 20px;
}
.timeline .timeline-body .post-card .post-btns .like-btn {
  font-size: 15px;
  color: #999;
  font-weight: bold;
}
.timeline .timeline-body .post-card .post-btns .like-btn.like {
  color: #23ACD0;
  font-weight: bold;
}
.timeline .timeline-body .post-card .post-btns .like-btn.like .fa-heart:before {
  content: "\f004";
  font-weight: 900;
}
.timeline .timeline-body .post-card .post-btns .stats {
  font-size: 13px;
  color: #777;
  margin-inline-start: auto;
}
.timeline .timeline-body .post-card .post-btns .stats a {
  color: #777;
}
.timeline .timeline-body .post-card .post-btns .stats .fa-circle {
  font-size: 4px;
  margin: 0 10px;
}
.timeline .timeline-body .post-card .cats {
  position: absolute;
  inset-inline-end: 20px !important ;
  top: 20px;
  display: inline-flex;
  align-items: center;
  padding: 5px 15px;
  background-color: rgba(35, 172, 208, 0.0666666667);
  border-radius: 6px;
  width: fit-content;
}
.timeline .timeline-body .post-card .cats a {
  font-size: 11px;
  font-weight: bold;
  border-radius: 6px;
  opacity: 0.5;
}
.timeline .timeline-body .post-card .cats a.main-cat {
  opacity: 1;
}
.timeline .timeline-body .post-card .cats .arrow {
  font-size: 10px;
  margin: 5px 10px 0;
}
.timeline .timeline-body .post-card .pin {
  position: absolute;
  left: 20px;
  top: 20px;
  display: inline-flex;
  align-items: center;
  padding: 5px 15px;
  background-color: rgba(35, 172, 208, 0.0666666667);
  border-radius: 6px;
  font-size: 12px;
}
.timeline .timeline-body .post-card .post-likes {
  position: absolute;
  left: 30px;
  bottom: 40px;
  z-index: 10;
  background-color: #fff;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.0666666667);
  padding: 15px;
  border-radius: 15px 15px 15px 0;
  min-width: 200px;
  transform: scale(0);
  opacity: 0;
  visibility: hidden;
  transform-origin: left bottom;
  transition: all 0.3s ease;
}
.timeline .timeline-body .post-card .post-likes.show {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
  left: 40px;
  bottom: 50px;
}
.timeline .timeline-body .post-card .post-likes .likes {
  max-height: 150px;
  overflow-y: auto;
}
.timeline .timeline-body .post-card .post-likes .likes::-webkit-scrollbar {
  width: 2px;
}
.timeline .timeline-body .post-card .post-likes .likes::-webkit-scrollbar-track {
  background-color: #eee;
}
.timeline .timeline-body .post-card .post-likes .likes::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 8px;
}
.timeline .timeline-body .post-card .post-likes .user-info {
  display: flex;
  margin: 10px 0;
}
.timeline .timeline-body .post-card .post-likes .user-info h6 {
  margin-bottom: 0;
  font-size: 13px;
  transition: all 0.3s ease;
}
.timeline .timeline-body .post-card .post-likes .user-info .avatar {
  width: 30px;
  height: 30px;
}
.timeline .timeline-body .post-card .post-likes .user-info:hover * {
  color: var(--secondary);
}
.timeline .timeline-body .post-card .post-comments {
  position: relative;
  padding-top: 20px;
  border-top: 1px solid rgba(153, 153, 153, 0.3333333333);
  margin-top: 15px;
  display: none;
}
.timeline .timeline-body .post-card .post-comments .comments {
  position: relative;
  padding-inline-end: 20px;
  max-height: 400px;
  overflow-y: auto;
}
.timeline .timeline-body .post-card .post-comments .comments::-webkit-scrollbar {
  width: 2px;
}
.timeline .timeline-body .post-card .post-comments .comments::-webkit-scrollbar-track {
  background-color: #eee;
}
.timeline .timeline-body .post-card .post-comments .comments::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 8px;
}
.timeline .timeline-body .post-card .post-comments .comments .comment-item {
  position: relative;
  margin-bottom: 15px;
}
.timeline .timeline-body .post-card .post-comments .comments .comment-item .user-info {
  align-items: flex-start;
}
.timeline .timeline-body .post-card .post-comments .comments .comment-item .user-info .avatar {
  width: 40px;
  height: 40px;
  margin-top: 2px;
}
.timeline .timeline-body .post-card .post-comments .comments .comment-item .user-info .cont {
  position: relative;
  padding: 15px;
  background-color: var(--light1);
  border-radius: 15px;
  font-size: 13px;
}
.timeline .timeline-body .post-card .post-comments .comments .comment-item .user-info .cont h6 {
  color: var(--primary);
  margin-bottom: 10px;
  font-size: 14px;
}
.timeline .timeline-body .post-card .post-comments .comments .comment-item .post-img {
  height: 200px;
}
.timeline .timeline-body .post-card .post-comments .add-comment {
  position: relative;
  background-color: #fff;
  padding-top: 20px;
}
.timeline .timeline-body .post-card .post-comments .add-comment .user-info {
  align-items: flex-start;
}
.timeline .timeline-body .post-card .post-comments .add-comment .user-info .avatar {
  width: 40px;
  height: 40px;
  margin-top: 2px;
}
.timeline .timeline-body .post-card .post-comments .add-comment .user-info .cont {
  position: relative;
  padding: 15px;
  border: 1px solid rgba(153, 153, 153, 0.3333333333);
  border-radius: 15px;
  font-size: 13px;
}
.timeline .timeline-body .post-card .post-comments .add-comment .user-info .cont h6 {
  color: var(--primary);
  margin-bottom: 10px;
  font-size: 14px;
}
.timeline .timeline-body .post-card .post-comments .add-comment .post-img {
  height: 200px;
}
.timeline .timeline-body .post-card .post-comments .add-comment .form-control {
  background-color: var(--light1);
}
.timeline .timeline-body .post-card .post-comments .add-comment .float-btns {
  position: absolute;
  left: 30px;
  bottom: 30px;
  z-index: 20;
}
.timeline .timeline-body .posts-pin {
  position: relative;
  padding: 30px;
  border-radius: 15px;
  background-color: #fff;
  margin-bottom: 24px;
}
.timeline .timeline-body .posts-pin .pin-item {
  position: relative;
  display: block;
  background-color: #f9f9f9;
  margin-top: 20px;
  padding: 15px;
  border-radius: 15px;
  border: 1px solid transparent;
  height: 150px;
  overflow: hidden;
}
.timeline .timeline-body .posts-pin .pin-item::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 15px;
  background-color: #f9f9f9;
  z-index: 5;
  transition: all 0.3s ease;
}
.timeline .timeline-body .posts-pin .pin-item .user-info {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.timeline .timeline-body .posts-pin .pin-item .user-info .avatar {
  width: 50px;
  height: 50px;
  margin-inline-end: 15px;
  flex-shrink: 0;
}
.timeline .timeline-body .posts-pin .pin-item .user-info h6 {
  font-size: 16px;
  font-weight: bold;
}
.timeline .timeline-body .posts-pin .pin-item .user-info .small {
  font-size: 10px;
  margin-top: 5px;
}
.timeline .timeline-body .posts-pin .pin-item:hover {
  background-color: #f6f3f7;
  border-color: rgba(94, 41, 100, 0.2);
}
.timeline .timeline-body .posts-pin .pin-item:hover::after {
  background-color: #f6f3f7;
}

.about-card .main-list {
  position: relative;
}
.about-card .main-list li {
  position: relative;
  margin: 15px 0;
  font-size: 17px;
}
.about-card .main-list li strong {
  color: var(--secondary);
  margin-inline-start: 5px;
}

.avatar-upload {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 0;
}
.avatar-upload .avatar-edit {
  position: relative;
  padding: 8px 15px;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  margin-inline-start: 30px;
  font-size: 12px;
}
.avatar-upload .avatar-edit input {
  display: none;
}
.avatar-upload .avatar-preview {
  width: 80px;
  height: 80px;
  position: relative;
  border-radius: 50%;
}
.avatar-upload .avatar-preview > div {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.post-modal .post-card {
  position: relative;
  padding: 20px;
  border-radius: 15px;
  background-color: #fff;
  margin-bottom: 24px;
}
.post-modal .post-card .user-info {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}
.post-modal .post-card .user-info .avatar {
  width: 50px;
  height: 50px;
  margin-inline-end: 15px;
  flex-shrink: 0;
}
.post-modal .post-card .user-info h6 {
  font-size: 16px;
  font-weight: bold;
}
.post-modal .post-card .user-info .small {
  font-size: 10px;
  margin-top: 5px;
}
.post-modal .post-card .post-img {
  position: relative;
  height: 300px;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 15px;
}
.post-modal .post-card .post-btns {
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 20px;
}
.post-modal .post-card .post-btns .like-btn {
  font-size: 15px;
  color: #999;
  font-weight: bold;
}
.post-modal .post-card .post-btns .like-btn.like {
  color: #23ACD0;
  font-weight: bold;
}
.post-modal .post-card .post-btns .stats {
  font-size: 13px;
  color: #777;
  margin-inline-start: auto;
}
.post-modal .post-card .post-btns .stats a {
  color: #777;
}
.post-modal .post-card .post-btns .stats .fa-circle {
  font-size: 4px;
  margin: 0 10px;
}
.post-modal .post-card .cats {
  position: absolute;
  inset-inline-end: 20px;
  top: 20px;
  display: inline-flex;
  align-items: center;
  padding: 5px 15px;
  background-color: rgba(35, 172, 208, 0.0666666667);
  border-radius: 6px;
}
.post-modal .post-card .cats a {
  font-size: 11px;
  font-weight: bold;
  border-radius: 6px;
  opacity: 0.5;
}
.post-modal .post-card .cats a.main-cat {
  opacity: 1;
}
.post-modal .post-card .cats .arrow {
  font-size: 10px;
  margin: 5px 10px 0;
}
.post-modal .post-card .post-likes {
  position: absolute;
  left: 30px;
  bottom: 40px;
  z-index: 10;
  background-color: #fff;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.0666666667);
  padding: 15px;
  border-radius: 15px 15px 15px 0;
  min-width: 200px;
  transform: scale(0);
  opacity: 0;
  visibility: hidden;
  transform-origin: left bottom;
  transition: all 0.3s ease;
}
.post-modal .post-card .post-likes.show {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
  left: 40px;
  bottom: 50px;
}
.post-modal .post-card .post-likes .likes {
  max-height: 150px;
  overflow-y: auto;
}
.post-modal .post-card .post-likes .likes::-webkit-scrollbar {
  width: 2px;
}
.post-modal .post-card .post-likes .likes::-webkit-scrollbar-track {
  background-color: #eee;
}
.post-modal .post-card .post-likes .likes::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 8px;
}
.post-modal .post-card .post-likes .user-info {
  display: flex;
  margin: 10px 0;
}
.post-modal .post-card .post-likes .user-info h6 {
  margin-bottom: 0;
  font-size: 13px;
  transition: all 0.3s ease;
}
.post-modal .post-card .post-likes .user-info .avatar {
  width: 30px;
  height: 30px;
}
.post-modal .post-card .post-likes .user-info:hover * {
  color: var(--secondary);
}
.post-modal .post-card .post-comments {
  position: relative;
  padding-top: 20px;
  border-top: 1px solid rgba(153, 153, 153, 0.3333333333);
  margin-top: 15px;
  display: none;
}
.post-modal .post-card .post-comments .comments {
  position: relative;
  padding-inline-end: 20px;
  max-height: 400px;
  overflow-y: auto;
}
.post-modal .post-card .post-comments .comments::-webkit-scrollbar {
  width: 2px;
}
.post-modal .post-card .post-comments .comments::-webkit-scrollbar-track {
  background-color: #eee;
}
.post-modal .post-card .post-comments .comments::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 8px;
}
.post-modal .post-card .post-comments .comments .comment-item {
  position: relative;
  margin-bottom: 15px;
}
.post-modal .post-card .post-comments .comments .comment-item .user-info {
  align-items: flex-start;
}
.post-modal .post-card .post-comments .comments .comment-item .user-info .avatar {
  width: 40px;
  height: 40px;
  margin-top: 2px;
}
.post-modal .post-card .post-comments .comments .comment-item .user-info .cont {
  position: relative;
  padding: 15px;
  background-color: var(--light1);
  border-radius: 15px;
  font-size: 13px;
}
.post-modal .post-card .post-comments .comments .comment-item .user-info .cont h6 {
  color: var(--primary);
  margin-bottom: 10px;
  font-size: 14px;
}
.post-modal .post-card .post-comments .comments .comment-item .post-img {
  height: 200px;
}
.post-modal .post-card .post-comments .add-comment {
  position: relative;
  background-color: #fff;
  padding-top: 20px;
}
.post-modal .post-card .post-comments .add-comment .user-info {
  align-items: flex-start;
}
.post-modal .post-card .post-comments .add-comment .user-info .avatar {
  width: 40px;
  height: 40px;
  margin-top: 2px;
}
.post-modal .post-card .post-comments .add-comment .user-info .cont {
  position: relative;
  padding: 15px;
  border: 1px solid rgba(153, 153, 153, 0.3333333333);
  border-radius: 15px;
  font-size: 13px;
}
.post-modal .post-card .post-comments .add-comment .user-info .cont h6 {
  color: var(--primary);
  margin-bottom: 10px;
  font-size: 14px;
}
.post-modal .post-card .post-comments .add-comment .post-img {
  height: 200px;
}
.post-modal .post-card .post-comments .add-comment .form-control {
  background-color: var(--light1);
}
.post-modal .post-card .post-comments .add-comment .float-btns {
  position: absolute;
  left: 30px;
  bottom: 30px;
  z-index: 20;
}
.post-modal .post-card .post-comments .add-comment .float-btns .butn {
  position: relative;
}
.post-modal .post-card .post-comments .add-comment .float-btns .butn input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 20;
  opacity: 0;
  cursor: pointer;
}

/**********************************************
    Start Edit login 
**********************************************/
.login {
  position: relative;
}
.login .form-st1 {
  padding-inline-start: calc((100vw - 1320px) / 2);
}
.login .img {
  width: 300px;
  height: 150px;
  -o-object-fit: contain;
     object-fit: contain;
  padding: 0 !important;
  margin: 0 auto;
}

.form-st1 {
  background-color: var(--light1);
  padding: 150px 0;
}
.form-st1 .icon-group {
  position: relative;
}
.form-st1 .icon-group .icon {
  position: absolute;
  inset-inline-start: 20px;
  top: 20px;
  color: var(--primary);
  z-index: 10;
}
.form-st1 .icon-group .form-check {
  margin-top: 10px;
  color: #888;
  font-size: 13px;
  margin-inline-start: 20px;
}
.form-st1 .form-control {
  position: relative;
  min-height: 60px;
  border-radius: 25px;
  border: 1px solid transparent;
  padding-inline-start: 50px;
}
.form-st1 .form-control:hover, .form-st1 .form-control:focus {
  border-color: #48B189;
}
.form-st1 .input-group .form-select {
  max-width: -moz-max-content;
  max-width: max-content;
  background-color: var(--secondary);
  color: #fff;
  font-size: 18px;
  direction: ltr;
  border: 0 !important;
}
.form-st1 .code-group {
  display: flex;
  justify-content: center;
}
.form-st1 .code-group .form-control {
  width: 60px;
  height: 60px;
  margin: 0 5px;
  text-align: center;
  border-radius: 10px;
  font-size: 25px;
  padding: 0;
}

.show_hide_password {
  position: relative;
}
.show_hide_password .show_pass {
  position: absolute;
  top: 23px;
  inset-inline-end: 20px;
  cursor: pointer;
  color: #888;
  z-index: 10;
}

/**********************************************
    Start Edit contact page 
**********************************************/
.contact-pg {
  position: relative;
  background-color: #F1F8FF;
}
.contact-pg .contact-info {
  position: relative;
  padding: 3vw;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.0196078431);
  z-index: 20;
  overflow: hidden;
  height: 100%;
}
.contact-pg .contact-info::before {
  position: absolute;
  content: "";
  inset-inline-end: 0;
  top: 0;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: rgba(73, 177, 137, 0.0666666667);
  transform: translate(-40%, -40%);
  z-index: -1;
  pointer-events: none;
}
.contact-pg .contact-info::after {
  position: absolute;
  content: "";
  inset-inline-end: 90px;
  top: 90px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: rgba(73, 177, 137, 0.2);
  z-index: -1;
  pointer-events: none;
}
.contact-pg .contact-info a:hover {
  color: var(--cr-blue);
}
.contact-pg .contact-info .item {
  position: relative;
  display: flex;
  margin: 30px 0;
}
.contact-pg .contact-info .item .icon {
  width: 25px;
  height: 25px;
  margin-inline-end: 20px;
  flex-shrink: 0;
  margin-top: 3px;
  font-size: 20px;
  color: var(--secondary);
}
.contact-pg .contact-info .item .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.contact-pg .contact-info .item h5 {
  font-size: 18px;
}
.contact-pg .contact-info .social-links {
  position: relative;
  margin-top: 30px;
}
.contact-pg .contact-info .social-links a {
  position: relative;
  font-size: 18px;
  margin-inline-end: 10px;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  background-color: var(--light1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.contact-pg .contact-info .social-links a:hover {
  background-color: var(--secondary);
  color: #fff !important;
}
.contact-pg .form-st1 {
  background-color: #fff;
  border-radius: 20px;
  padding: 50px;
}
.contact-pg .form-st1 .icon-group .form-control {
  background-color: var(--light1);
}
.contact-pg .form-st1 .icon-group .form-select {
  background-color: var(--secondary);
}

/**********************************************
    Start Edit about-pg 
**********************************************/
.about-pg {
  position: relative;
}
.about-pg .nav-pills {
  position: relative;
  justify-content: center;
}
.about-pg .nav-pills .nav-item .nav-link {
  pointer-events: none;
  padding: 12px 40px;
  border-radius: 12px;
  border: 1px solid var(--primary);
  color: var(--primary);
  background-color: transparent;
  margin: 5px;
  font-weight: bold;
}
.about-pg .nav-pills .nav-item .nav-link.active {
  background-color: var(--primary);
  color: #fff;
}
.about-pg .accordion {
  position: relative;
  padding: 30px;
  background-color: #fff;
  border-radius: 20px;
}
.about-pg .accordion .accordion-item {
  border: 0;
  margin-bottom: 30px;
}
.about-pg .accordion .accordion-item .accordion-header {
  padding: 0;
}
.about-pg .accordion .accordion-item .accordion-header .accordion-button {
  position: relative;
  background-color: rgba(94, 41, 100, 0.0666666667);
  border-radius: 10px;
  color: #1F1F39;
  border: 0;
  box-shadow: none;
  font-size: 16px;
  font-weight: bold;
  padding: 15px;
}
.about-pg .accordion .accordion-item .accordion-header .accordion-button::after {
  background-size: 10px;
  background-position: center;
  background-image: none;
  content: "\f078";
  font-family: "Font Awesome 6 Pro";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  font-size: 11px;
}
.about-pg .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  background-color: var(--primary);
  color: #fff;
}
.about-pg .accordion .accordion-item .accordion-body {
  padding: 30px 15px 0;
}

/**********************************************
    Start Edit translations 
**********************************************/
.translations {
  position: relative;
}
.translations .trans-card {
  position: relative;
  display: block;
  font-weight: bold;
  background-color: #fff;
  margin-top: 30px;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid transparent;
  height: calc(100% - 30px);
}
.translations .trans-card .icon {
  height: 50px;
  margin-bottom: 25px;
}
.translations .trans-card h5 {
  font-weight: bold;
  color: var(--primary);
}
.translations .trans-card:hover {
  border-color: var(--primary);
}

/**********************************************
    Start Edit modal 
**********************************************/
.modal {
    background: #0005;
}
.modal .modal-content {
  background-color: var(--light1);
  padding: 30px;
  border-radius: 20px;
  border: 0;
}
.modal .modal-content .icon-group {
  position: relative;
}
.modal .modal-content .icon-group .icon {
  position: absolute;
  right: 20px;
  top: 20px;
  color: var(--primary);
  z-index: 10;
}
.modal .modal-content .form-control {
  position: relative;
  min-height: 60px;
  border-radius: 25px;
  border: 1px solid transparent;
  padding-inline-start: 50px;
}
.modal .modal-content .form-control:hover, .modal .modal-content .form-control:focus {
  border-color: #48B189;
}
.modal .modal-content .input-group .form-select {
  max-width: -moz-max-content;
  max-width: max-content;
  background-color: var(--secondary);
  color: #fff;
  font-size: 18px;
  direction: ltr;
  border: 0 !important;
}

.modal-backdrop.fade {
    opacity: 0 !important;
    pointer-events: none;
}
/**********************************************
    Start Edit blog-pg 
**********************************************/
.blog-pg {
  position: relative;
}
.blog-pg .post-det {
  position: relative;
}
.blog-pg .post-det .main-img {
  position: relative;
  height: 450px;
  border-radius: 30px;
  overflow: hidden;
}
.blog-pg .post-det .main-img .categ_badge {
  background-color: #fff;
  padding: 0.6rem 1rem;
  position: absolute;
  bottom: 20px;
  left: 20px;
  border-radius: 25px;
  font-size: 12px;
  color: var(--primary);
}
.blog-pg .post-det .main-info {
  position: relative;
  padding-top: 50px;
}

.blog-pg .post-det .main-info p {
    overflow: hidden;
}

.blog-pg .post-det .main-info .date {
  display: flex;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 30px;
}
.blog-pg .post-det .main-info .date .item {
  color: var(--primary);
  margin-inline-end: 20px;
}
.blog-pg .post-det .main-info .date .item .icon {
  margin-inline-end: 10px;
}
.blog-pg .post-det .main-info ul {
  margin-top: 24px;
}
.blog-pg .post-det .main-info ul li {
  margin-bottom: 24px;
}

.img-upload {
  position: relative;
  display: flex;
  align-items: center;
}
.img-upload label {
  cursor: pointer;
}
.img-upload .img-edit {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  padding: 8px 15px;
  background-color: var(--secondary);
  color: #fff;
  border-radius: 8px;
  margin-inline-start: 30px;
  cursor: pointer;
}
.img-upload .img-edit input {
  display: none;
  cursor: pointer;
}
.img-upload .img-preview {
  width: 100%;
  height: 200px;
  position: relative;
  border-radius: 20px;
  border: 1px solid rgba(153, 153, 153, 0.2666666667);
}
.img-upload .img-preview > div {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.post-modal .img-preview {
  height: 150px;
}

/**********************************************
    Start upload images
**********************************************/
.upload-content-item .butn {
  position: relative;
}
.upload-content-item .butn input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 20;
  opacity: 0;
  cursor: pointer;
}
.upload-content-item .uploaded-imgs .img-thumbnail {
  width: 100px;
  height: 120px;
  -o-object-fit: cover;
     object-fit: cover;
  flex-grow: 1;
  /* border: 0; */
  border-radius: 10px;
  padding: 0;
}
.upload-content-item .uploaded-imgs .hidden-count {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 70px;
  color: #fff;
  font-size: 1.2em;
  border-radius: 5px;
  text-align: center;
  position: relative;
  background-color: rgba(0, 0, 0, 0.6);
}

/**********************************************
    Start Edit datepicker 
**********************************************/
.ui-widget.ui-widget-content {
  min-width: 350px;
  border-color: #eee;
}
.ui-widget.ui-widget-content select {
  position: relative;
  min-height: 35px;
  font-size: 12px;
  box-shadow: none !important;
  border-radius: 8px;
  border-color: #dee2e6;
  padding: 0 10px;
  margin: 0 5px;
}

.ui-state-default {
  background: transparent;
  border: 0;
  padding: 15px;
  text-align: center !important;
  color: #888 !important;
}

.ui-widget-content .ui-state-default {
  background: transparent;
  padding: 10px 15px;
  border: 1px solid rgba(153, 153, 153, 0.1333333333);
  border-radius: 5px;
}

.ui-widget-header {
  background: #fafafa;
  border: 0;
  padding: 5px !important;
}

.ui-datepicker .ui-datepicker-prev {
  top: 10px;
  text-align: center;
}
.ui-datepicker .ui-datepicker-prev:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  color: #555;
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  font-size: 16px;
  content: "\f053";
}
.ui-datepicker .ui-datepicker-prev:hover:after {
  color: #fff;
}
.ui-datepicker .ui-datepicker-next {
  top: 10px;
  text-align: center;
}
.ui-datepicker .ui-datepicker-next:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  color: #555;
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  font-size: 16px;
  content: "\f054";
}
.ui-datepicker .ui-datepicker-next:hover:after {
  color: #fff;
}
.ui-datepicker th {
  padding: 12px;
}

.ui-state-highlight {
  border-color: var(--primary) !important;
  background-color: rgba(94, 41, 100, 0.0666666667) !important;
}

.ui-state-active {
  border-color: var(--primary) !important;
  background-color: var(--primary) !important;
  color: #fff !important;
}

/**********************************************
    Start Edit Media screens 
**********************************************/
@media screen and (max-width: 991px) {
  .order_md_1 {
    order: -1;
  }
  .d_mob_block {
    display: block !important;
  }
  .d_mob_none {
    display: none !important;
  }
  .navs-container .navbar .navbar-nav.ms-auto {
    width: fit-content;
    margin: 0 !important;
    text-align: start !important;
    align-items: normal !important;
  }
   .navs-container .navbar .navbar-nav * {
       margin: 4px 0 !important ;
   }
   .navs-container .navbar .navbar-nav .dropdown {
       order: -1 ;
   }
   .innerheader h1 {
    font-size: 25px;
   }
  .header .txt_box .title {
    font-size: 45px;
  }
  .header .shapes2,
  .categ_sec .shape {
    display: none;
  }
  .categ_sec .butn.secondary_butn {
    padding: 0.6rem 0.5rem;
    font-size: 12px;
  }
  .section .sec_title::before {
    display: none;
  }
  .blog_sec .nav-link {
    padding: 0.7rem 1rem;
    font-size: 12px;
    margin-top: 10px;
  }
  .footer .foot .p {
    font-size: 13px;
    text-align: start !important;
    margin-top: 10px;
  }
  .login .form-st1 {
    padding: 100px 20px !important;
  }
  .contact-pg .contact-info {
    padding: 50px 20px;
  }
  .contact-pg .form-st1 {
    padding: 50px 20px;
    margin-top: 30px;
  }
  .login .img {
    display: none;
  }
  .timeline .timeline-header .cover-info .main-inf {
    display: block;
    padding: 20px;
  }
  .timeline .main-tabs .nav-pills .nav-item {
    margin-top: 10px;
  }
  .timeline .main-tabs .nav-pills .nav-item .nav-link,
  .timeline .main-tabs .butn {
    padding: 10px 15px;
    font-size: 12px;
  }
  .modal .modal-content {
    padding: 10px;
  }
  .modal .modal-content .modal-body {
    padding: 10px 0;
  }
  .main-search-box {
    padding: 0 20px;
  }
  .white-box {
    padding: 30px 20px;
  }
  



}
/**********************************************
    Start Edit EN direction 
**********************************************/
html[dir=ltr] {
  @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
}

html[dir=ltr] body {
  direction: ltr;
  font-family: "Poppins", sans-serif;
}

html[dir=ltr] .categ_sec .categ_card .more_butn i ,
html[dir=ltr] .blog_sec .blog_card .card-body .more_butn i ,
html[dir=ltr] a .fa-long-arrow-left ,
html[dir=ltr] h1 .fa-long-arrow-right ,
html[dir=ltr] a .fa-arrow-left-long ,
html[dir=ltr] .innerheader .links .arrow ,
html[dir=ltr] button .fa-arrow-left-long ,
html[dir=ltr] .communities .com-card .cats .arrow {
    transform: rotateY(180deg);
}

html[dir=ltr] .innerheader .links .arrow,
html[dir=ltr] .communities .com-card .cats .arrow {
    display: inline-block;
}

 html[dir=ltr] .innerheader {
    background: linear-gradient(90deg, #49B189 0%, #5E2964 69%), linear-gradient(180deg, #23ACD0 0%, #5E2964 100%);
}



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