@font-face {
  font-family: STC_reg;
  src: url(../fonts/STC_reg.ttf);
}
@font-face {
  font-family: Effra-Bold;
  src: url(../fonts/alfont_com_Dalton-Maag-Effra-Bold.ttf);
}
@font-face {
  font-family: Effra-Rg;
  src: url(../fonts/alfont_com_Effra_Rg.ttf);
}
@font-face {
  font-family: Effra-Lt;
  src: url(../fonts/alfont_com_Effra_Lt.ttf);
}
*,
* button:focus {
  outline: 0;
}

:root {
  --mainColor: #687389;
  --subColor: #C8C5C7;
  /* --subColor2: #77643d; */
}

.mainColor {
  color: var(--mainColor) !important;
}

.mainBack {
  background-color: var(--mainColor) !important;
  border-color: var(--mainColor) !important;
}

html::-webkit-scrollbar {
  height: 20px;
  width: 10px;
  background: #f1f1f1;
  border-radius: 10px;
}

html::-webkit-scrollbar-thumb {
  background: #999;
  border-radius: 10px;
}

html::-webkit-scrollbar-corner {
  background: #999;
  border-radius: 10px;
}

body {
  font-family: Effra-Rg;
  text-decoration: none;
  font-size: 0.9em;
  overflow-x: hidden;
  position: relative;
  direction: rtl;
  color: #55556d;
  font-weight: 500;
}

.light_item {
  display: block;
}

.dark_item {
  display: none;
}

.scrollsmoother-container {
  padding-top: 130px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
  margin: 0;
  line-height: 1.6;
  color: #171d27;
}

body a:hover {
  text-decoration: none;
}

body a:focus {
  outline: 0;
}

body ul {
  list-style-type: none;
  margin: 0;
}

[type=email], [type=number], [type=tel], [type=url] {
  direction: inherit;
}

.btn-default:active,
.btn-default:active:focus,
.btn-default:active:hover,
.btn-default:focus,
.btn-default:hover,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
  -webkit-appearance: none;
}

.btn:active,
.btn:active:focus,
.btn:active:hover,
.btn:focus,
.btn:hover,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
  transition: all 0.6s ease;
  outline: 0;
}

/* ==================== global style ============================== */
a,
span,
img {
  display: inline-block;
  transition: all 0.3s ease;
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: #999;
}

ul {
  padding: 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;
}

p {
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

.text,
.text * {
  font-size: 14px;
  line-height: 1.7;
}

small.text {
  font-size: 12px;
}

.section_padding {
  padding: 100px 0;
}

.dropdown .dropdown-menu {
  border-radius: 10px;
  padding: 10px;
  border: 0;
  box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.0666666667);
}
.dropdown .dropdown-menu .dropdown-item {
  font-size: 14px;
  padding: 0.5rem 1rem;
  border-radius: 10px;
}

/* --------------- to_top button --------------- */
.progress-wrap {
  position: fixed;
  left: 20px;
  bottom: 20px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.0666666667);
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  transform: translateX(-100px);
  z-index: 99;
  transition: all 200ms linear;
}
.progress-wrap::after {
  background: url(../images/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: #000;
  left: 13px;
  top: 13px;
  height: 25px;
  width: 25px;
  display: block;
}
.progress-wrap svg path {
  fill: #f8f8f8;
}
.progress-wrap svg.progress-circle path {
  stroke: #000;
  stroke-width: 5;
  box-sizing: border-box;
}
.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* --------------- butn --------------- */
.butn_arrow {
  position: relative;
  text-align: center;
  font-size: 21px;
  display: inline-flex;
  border: 0;
}
.butn_arrow:hover {
    box-shadow: 10px 10px 30px #0001, 10px 10px 30px #fff5;
    top: -3px;
}
.butn_arrow .arrow {
  width: 60px;
  height: 60px;
  background-color: var(--mainColor);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.butn_arrow .txt {
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #171d27;
  color: #fff;
  padding: 0 40px;
  flex-grow: 1;
}

.btn {
  position: relative;
  text-align: center;
  padding: 12px 30px;
  background-color: var(--mainColor);
  border: 2px solid var(--mainColor);
  border-radius: 0;
  transition: all 0.3s ease;
}
.btn:hover {
    box-shadow: 10px 10px 30px #0001, 10px 10px 30px #fff5;
    top: -3px;
}
.btn * {
  color: #fff;
}
.btn:hover {
  background-color: #171d27;
  border-color: #171d27;
}
.btn.btd_btn_dark {
  background-color: transparent;
  border-color: #171d27;
}
.btn.btd_btn_dark * {
  color: #171d27;
}
.btn.btd_btn_dark:hover {
  background-color: var(--mainColor);
  border-color: var(--mainColor);
}
.btn.btd_btn_dark:hover * {
  color: #fff;
}

/* --------------- navbar --------------- */
.navbar {
  position: fixed;
  padding: 30px 0;
  background-color: #f1efec;
  width: 100%;
  top: 0;
  right: 0;
  z-index: 999;
  transition: all 0.5s ease;
}
.navbar .logo {
  max-height: 60px;
}
.navbar .navbar-nav .nav-link {
  color: #171d27;
  margin: 0 10px;
  font-size: 18px;
}
.navbar .navbar-nav .nav-link.active, .navbar .navbar-nav .nav-link:hover {
  color: var(--mainColor);
}
.navbar .nav_btns {
  display: flex;
  align-items: center;
}
.navbar .nav_btns .form-switch {
  position: relative;
  margin-inline-start: 20px;
  cursor: pointer;
}
.navbar .nav_btns .form-switch .form-check-input {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  border: 0;
  box-shadow: none;
  float: none;
  background-image: none;
  cursor: pointer;
}
.navbar .nav_btns .form-switch .icon {
  position: absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
  z-index: 5;
  font-size: 25px;
  line-height: 1;
  pointer-events: none;
  transition: all 0.3s ease;
}
.navbar .nav_btns .form-switch .icon .fa-sun {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.navbar .nav_btns .form-switch .icon .fa-moon {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.3s ease;
  color: var(--mainColor);
}
.navbar.login_navbar {
  margin: 3vw 4vw 0;
  padding: 10px;
  width: calc(100% - 8vw);
}
.navbar.login_navbar .login_side {
  min-width: calc(50% - 70px);
  display: flex;
  justify-content: end;
}
.navbar.login_navbar .navbar-brand {
  margin: 0;
}
.navbar .nav_icon {
  width: 43px;
  height: 43px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(151, 151, 151, 0.3333333333);
  color: #55556D;
}
.navbar .nav_icon:hover {
  background-color: var(--mainColor);
  color: #fff;
}
.navbar .nav_user {
  display: flex;
  align-items: center;
}
.navbar.nav-scroll {
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  position: fixed;
  left: 0;
  width: 100%;
  transition: transform 0.5s;
  transition: all 0.5s ease;
}

/* --------------- header --------------- */
header {
  position: relative;
  background-color: #f1efec;
}
header .content {
  position: relative;
}
header .hero_img {
  position: relative;
  text-align: end;
  width: 90%;
  margin-inline-start: 10%;
}
header .hero_img .img-line {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
          clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  transition: all 2s ease-in-out;
}
header .hero_img .img-line.animated {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
header .info {
  position: absolute;
  top: 45%;
  right: 0;
  transform: translateY(-50%);
  z-index: 20;
}
header .info h1 {
  font-size: 66px;
  line-height: 1.4;
  margin-bottom: 60px;
}
header .rect {
  position: absolute;
  right: calc((100% - 1320px) / 2);
  bottom: -50px;
  width: 100px;
  height: 100px;
  z-index: 30;
}

.section_title h2 {
  font-size: 36px;
  font-weight: bold;
}
.section_title h2 span {
  display: block;
  font-weight: 400;
}
.section_title .text {
  font-size: 17px;
  color: #55556d;
}

/* --------------- procces --------------- */
.procces {
  position: relative;
  background-color: #171d27;
  color: #fff;
}
.procces * {
  color: #fff;
}
.procces .float_img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 25%;
  z-index: 1;
  pointer-events: none;
}
.procces .text {
  color: #aabfc7;
}
.procces .section_title .text {
  font-size: 18px;
  margin-top: 30px;
}
.procces .procces_cards {
  padding-top: 20px;
}
.procces .procces_cards .col-lg-6:nth-of-type(odd) {
  margin-top: -70px;
}
.procces .procces_cards .item {
  position: relative;
  padding: 15px;
  margin-top: 50px;
}
.procces .procces_cards .item .title {
  font-size: 23px;
  margin-bottom: 20px;
}
.procces .procces_cards .item .cont {
  display: flex;
  align-items: center;
}
.procces .procces_cards .item .cont .icon {
  width: 100px;
  height: 100px;
  margin-inline-end: 30px;
  flex-shrink: 0;
}
.procces .procces_cards .item .cont .text {
  font-size: 14px;
}

/* --------------- experience --------------- */
.experience {
  position: relative;
  background-color: #f1efec;
}
.experience .text {
  color: #55556d;
}
.experience .title {
  position: relative;
  margin-bottom: 50px;
}
.experience .title .text {
  font-size: 18px;
  margin: 10px 0;
}
.experience .title .text .logo {
  height: 40px;
  margin: 0 5px;
}
.experience .cards .col-lg-6:nth-of-type(odd) {
  margin-top: -50px;
}
.experience .cards .item {
  position: relative;
  margin-top: 70px;
  margin-inline-start: 50px;
}
.experience .cards .item .cont {
  position: relative;
  padding: 15px 30px;
  box-shadow: 0 24px 24px 0 rgba(10, 10, 40, 0.08);
  background-image: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, #f1efec 76%), linear-gradient(to bottom, #fff, #fff);
  z-index: 10;
}
.experience .cards .item .cont .icon {
  text-align: end;
  margin-bottom: 15px;
}
.experience .cards .item .cont .icon img {
  height: 40px;
}
.experience .cards .item .cont h3 {
  display: flex;
  align-items: flex-end;
}
.experience .cards .item .cont h3 .counter {
  font-size: 44px;
  font-weight: bold;
  margin-inline-end: 15px;
  flex-shrink: 0;
}
.experience .cards .item .cont h3 .text {
  font-size: 17px;
  margin-bottom: 15px;
  line-height: 1.4;
}
.experience .cards .item .shap {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 55px;
  height: 55px;
  transform: translate(-50%, 50%);
}
.experience .img {
  height: 480px;
  width: 80%;
  margin: 50px auto;
  perspective: 500px;
}
.experience .img .main_img {
  position: relative;
  transform: rotateY(15deg);
  overflow: hidden;
}
.experience .img .shap {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100px;
  height: 100px;
  transform: translate(-70%, 70%);
}
.experience .info .text {
  font-size: 15px;
  margin-bottom: 30px;
}

/* --------------- community --------------- */
.community {
  position: relative;
  background-color: #171d27;
  color: #fff;
  overflow: hidden;
}
.community * {
  color: #fff;
}
.community .line_shap {
  position: absolute;
  left: 0;
  top: 70px;
  max-width: 25%;
  pointer-events: none;
}
.community .section_title .text {
  font-size: 25px;
  color: #aabfc7;
}
.community .community_slider .swiper-wrapper .swiper-slide:nth-of-type(even) .community_card {
  flex-direction: column-reverse;
  background-image: linear-gradient(146deg, #5ac781 0%, rgba(10, 10, 40, 0) 74%);
}
.community .community_slider .swiper-wrapper .swiper-slide:nth-of-type(2) .community_card {
  background-image: linear-gradient(146deg, #c9c21d 0%, rgba(10, 10, 40, 0) 74%);
}
.community .community_slider .swiper-wrapper .swiper-slide:nth-of-type(3) .community_card {
  background-image: linear-gradient(146deg, #5ac781 0%, rgba(10, 10, 40, 0) 74%);
}
.community .community_slider .swiper-wrapper .swiper-slide:nth-of-type(4) .community_card {
  background-image: linear-gradient(159deg, #38a3b8 0%, rgba(10, 10, 40, 0) 73%);
}
.community .community_card {
  box-shadow: 0 24px 24px 0 rgba(10, 10, 40, 0.08);
  background-image: linear-gradient(146deg, #857bec 0%, rgba(23, 29, 39, 0) 74%);
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  min-height: 570px;
}
.community .community_card .info {
  position: relative;
  padding: 40px 35px;
  flex-grow: 1;
}
.community .community_card .info .title {
  font-size: 23px;
  margin-bottom: 15px;
}
.community .community_card .info .text {
  font-size: 14px;
  opacity: 0.7;
}
.community .community_card .img {
  height: 310px;
}

/* --------------- projects_places --------------- */
.projects_places {
  position: relative;
  padding: 70px 0;
  background-color: #ccccb2;
  z-index: 10;
}
.projects_places .line {
  position: absolute;
  bottom: -60px;
  right: 0;
  width: calc((100vw - 1320px) / 2 + 400px);
  height: 300px;
  -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
          clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  transition: all 2s ease;
}
.projects_places .line.animated {
  -webkit-clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
          clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
}
.projects_places .section_title .text {
  font-size: 17px;
  color: #55556d;
}
.projects_places .cards .item {
  text-align: center;
  display: block;
}
.projects_places .cards .item .img {
  position: relative;
  height: 250px;
}
.projects_places .cards .item .img .img_contain {
  -o-object-position: bottom;
     object-position: bottom;
}
.projects_places .cards .item .img .cont {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}
.projects_places .cards .item .img .cont .icon {
  height: 40px;
  margin-bottom: 5px;
}
.projects_places .cards .item .img .cont p {
  font-size: 15px;
  font-weight: 700;
  color: #171d27;
}
.projects_places .cards .item .info {
  position: relative;
}
.projects_places .cards .item .info .shap {
  position: absolute;
  left: 50%;
  top: -25px;
  height: 60px;
  width: 60px;
  max-height: unset;
  transform: translateX(-50%);
}
.projects_places .cards .item .info h6 {
  font-size: 17px;
  display: inline-block;
  padding-inline-start: 60px;
  font-weight: 700;
  width: -moz-max-content;
  width: max-content;
  position: relative;
  top: -10px;
  color: #171d27;
}

/* --------------- project_steps --------------- */
.project_steps {
  position: relative;
  background-color: #f1efec;
}
.project_steps .section_title .text {
  font-size: 17px;
  color: #55556d;
}
.project_steps .section_title h2 {
  display: block;
  position: relative;
  width: -moz-max-content;
  width: max-content;
  margin: auto;
}
.project_steps .section_title h2 .arrow {
  position: absolute;
  top: -25px;
  right: 0;
  transform: translateX(100px);
  width: 90px;
  max-width: unset;
  max-height: unset;
}
.project_steps .cards .item {
  position: relative;
  margin-top: 60px;
  padding: 0 30px;
}
.project_steps .cards .item .title {
  position: relative;
  padding: 10px;
  margin-bottom: 10px;
}
.project_steps .cards .item .title h6 {
  font-size: 21px;
  font-weight: bold;
}
.project_steps .cards .item .title .shap {
  position: absolute;
  width: 60px;
  height: 60px;
  top: 50%;
  transform: translateY(-50%);
  right: -30px;
}
.project_steps .cards .item .info {
  position: relative;
  padding: 30px 15px 10px;
  box-shadow: 0 24px 24px 0 rgba(10, 10, 40, 0.08);
  background-color: #fff;
}
.project_steps .cards .item .info .text {
  font-size: 15px;
}
.project_steps .cards .item .info .icon {
  text-align: end;
}
.project_steps .cards .item .info .icon img {
  width: 70px;
  height: 70px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: -50px;
}

/* --------------- dream --------------- */
.dream {
  position: relative;
  background-color: #f1efec;
  padding-bottom: 100px;
  overflow: hidden;
}
.dream .title {
  position: relative;
  display: block;
  margin: auto;
  width: -moz-max-content;
  width: max-content;
  padding: 50px 60px;
  margin-bottom: 30px;
}
.dream .title h2 {
  font-size: 36px;
  font-weight: bold;
  color: var(--mainColor);
}
.dream .title .cir {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.dream .dream_slider {
  position: relative;
}
.dream .dream_slider .swiper-wrapper {
  align-items: center;
}
.dream .dream_slider .img {
  height: 400px;
}
.dream .cocen_container {
  direction: ltr;
  width: 80%;
  margin: 30px auto 0;
}
.dream .cocen_container img {
  max-width: inherit;
  max-height: inherit;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
}

.swiper_arrows {
  position: relative;
  display: flex;
  width: -moz-max-content;
  width: max-content;
  margin: auto;
  margin-top: 30px;
  background-color: var(--mainColor);
  border-radius: 30px;
  overflow: hidden;
  line-height: 1;
}
.swiper_arrows .swiper-button-next,
.swiper_arrows .swiper-button-prev {
  position: static;
  margin: 0;
  padding: 0;
  height: 30px;
}
.swiper_arrows .swiper-button-next::after,
.swiper_arrows .swiper-button-prev::after {
  font-size: 13px;
  color: #fff;
}

/* --------------- blog --------------- */
.blog {
  position: relative;
  background-image: linear-gradient(to top, #f1efec, transparent);
}
.blog .title .title_side {
  display: flex;
  align-items: center;
  padding-bottom: 10px;
}
.blog .title .text {
  font-size: 18px;
  color: #55556d;
}
.blog .title .text .logo {
  height: 40px;
  margin: 0 5px;
}
.blog .post {
  position: relative;
  margin-top: 50px;
}
.blog .post .date {
  position: relative;
  padding: 10px 0;
  width: -moz-max-content;
  width: max-content;
}
.blog .post .date small {
  font-size: 12px;
}
.blog .post .date .shap {
  position: absolute;
  width: 60px;
  height: 60px;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  max-width: unset;
  max-height: unset;
  display: none;
}
.blog .post .main_img {
  position: relative;
  height: 250px;
}
.blog .post .main_img .post_line {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  opacity: 0.2;
}
.blog .post .info {
  padding: 20px;
  position: relative;
  background-color: #fff;
  min-height: 220px;
}
.blog .post .info .title {
  font-size: 21px;
  font-weight: bold;
  margin-bottom: 15px;
}
.blog .post .info .more {
  color: #55556d;
  font-size: 14px;
  font-weight: 600;
  margin-top: 20px;
  position: relative;
  padding-bottom: 15px;
}
.blog .post .info .more::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 6px;
  right: 0;
  bottom: 0;
  background-image: url(../images/more_line.png);
  background-size: contain;
  background-repeat: no-repeat;
}

/* --------------- blog_details --------------- */
.blog_details {
  position: relative;
}
.blog_details .main_img {
  margin-top: -100px;
  position: relative;
  z-index: 30;
  padding: 1.5vw;
  border: 2px solid #171D27;
}
.blog_details .main_img::after {
  position: absolute;
  content: "";
  left: -2px;
  top: calc(50% - 100px);
  height: 200px;
  width: 2px;
  background-color: #fff;
}
.blog_details .main_img .img {
  position: relative;
  height: 600px;
  overflow: hidden;
  max-height: 100vw;
}
.blog_details .main_img .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog_details .main_info {
  position: relative;
  padding-top: 30px;
}
.blog_details .main_info .text {
  font-size: 20px;
  margin-top: 30px;
}
.blog_details .share_card {
  position: relative;
  margin-top: 50px;
  padding: 30px 0;
  border-top: 1px solid rgba(153, 153, 153, 0.2666666667);
}
.blog_details .share_card .share {
  display: flex;
  align-items: center;
}
.blog_details .share_card .share .soc_links a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid rgba(153, 153, 153, 0.3333333333);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-inline-start: 20px;
}
.blog_details .share_card .tags {
  display: flex;
  align-items: center;
}
.blog_details .share_card .tags .tags_links a {
  padding: 8px 15px;
  border-radius: 6px;
  background-color: #f5f5f5;
  margin-inline-start: 10px;
}

/* --------------- contact --------------- */
.contact {
  position: relative;
  background-color: #f1efec;
  padding-bottom: 120px;
}
.contact .title {
  position: relative;
  display: block;
  margin: 0 30px -50px 0;
  width: -moz-max-content;
  width: max-content;
  padding: 30px 50px;
  z-index: 20;
}
.contact .title h2 {
  font-size: 36px;
  font-weight: bold;
}
.contact .title .cir {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  filter: brightness(0);
}
.contact .contact_form {
  position: relative;
  z-index: 10;
  padding: 80px 40px 100px;
  box-shadow: 0 24px 24px 0 rgba(10, 10, 40, 0.08);
  background-image: linear-gradient(133deg, rgba(255, 255, 255, 0) 0%, #f1efec 75%), linear-gradient(to bottom, #fff, #fff);
}
.contact .contact_form .form-group {
  position: relative;
  margin-bottom: 30px;
}
.contact .contact_form .form-group label {
  font-weight: 600;
  color: #55556d;
  display: block;
  margin-bottom: 10px;
}
.contact .contact_form .form-group .form-control {
  border: 0;
  border-radius: 0;
  border-top: 1px solid #ccc;
  min-height: 50px;
  background-color: transparent;
  padding: 15px 0;
  font-size: 19px;
  font-weight: 500;
  box-shadow: none !important;
}
.contact .contact_form .form-group .form-control:hover, .contact .contact_form .form-group .form-control:focus {
  border-color: var(--mainColor);
}
.contact .contact_form .butn_arrow {
  position: absolute;
  right: 30px;
  bottom: 0;
  transform: translateY(50%);
}
.contact .contact_form .shap {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 30;
  transform: translate(-50%, 50%);
}
.contact .img {
  position: relative;
  height: 100%;
  overflow: hidden;
}
.contact .contacts {
  padding-bottom: 120px;
}
.contact .contacts .info_card {
  position: relative;
  margin-top: 30px;
  padding: 50px;
  box-shadow: 0 24px 24px 0 rgba(10, 10, 40, 0.08);
  background-image: linear-gradient(133deg, rgba(255, 255, 255, 0) 0%, #f1efec 75%), linear-gradient(to bottom, #fff, #fff);
  height: calc(100% - 30px);
}
.contact .contacts .info_card .icon {
  font-size: 30px;
  margin-bottom: 10px;
}
.contact .contacts .info_card h6 {
  font-size: 21px;
}

/* --------------- footer --------------- */
footer {
  position: relative;
  background-color: #171d27;
  color: #fff;
}
footer * {
  color: #fff;
}
footer .lamp_shap {
  position: absolute;
  left: 0;
  top: 40px;
  max-width: 30%;
  height: 75%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left;
     object-position: left;
  pointer-events: none;
}
footer .container {
  position: relative;
  z-index: 20;
}
footer .top_content {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
}
footer .top_content .foot_logo {
  height: 60px;
  margin-inline-end: 40px;
  overflow: hidden;
  flex-shrink: 0;
}
footer .top_content h6 {
  font-size: 16px;
  color: #aabfc7;
  line-height: 1.8;
}
footer .links_group {
  margin-bottom: 50px;
}
footer .links_group .links a {
  font-size: 16px;
  color: #fff;
  margin: 10px 0;
}
footer .links_group .links a:hover {
  color: var(--mainColor);
}
footer .contact_info {
  margin-bottom: 30px;
}
footer .contact_info .item {
  display: flex;
  margin-bottom: 30px;
}
footer .contact_info .item .icon {
  font-size: 40px;
  margin-inline-end: 30px;
  flex-shrink: 0;
}
footer .contact_info .item .icon i {
  color: var(--mainColor);
}
footer .contact_info .item small {
  font-size: 14px;
  color: #55556d;
  display: block;
  font-weight: bold;
  margin-bottom: 10px;
}
footer .contact_info .item a {
  font-size: 16px;
  color: #fff;
}
footer .contact_info .item a:hover {
  color: var(--mainColor);
}
footer .sub_title {
  font-size: 24px;
  color: #aabfc7;
  margin-bottom: 20px;
  font-weight: 600;
}
footer .foot {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 20px 0;
}
footer .foot .text {
  color: #aabfc7;
}
footer .foot .foot_links a {
  color: #cde0e8;
}
footer .foot .foot_links a:hover {
  color: var(--mainColor);
}
footer .social_icons {
  text-align: center;
}
footer .social_icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2666666667);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 10px;
  color: #fff;
  font-size: 16px;
}
footer .social_icons a:hover {
  background-color: var(--mainColor);
  border-color: var(--mainColor);
}

/* --------------- login --------------- */
.login {
  padding: 100px 4vw;
}
.login .form {
  display: block;
  position: relative;
  padding: 50px;
  border: 1px solid #171D27;
  height: 100%;
}
.login .form::after {
  position: absolute;
  content: "";
  left: -4px;
  top: 35%;
  width: 4px;
  height: 30%;
  background-color: #fff;
  z-index: 2;
}
.login .form .section_title {
  margin-bottom: 70px;
}
.login .contact_info {
  position: relative;
  background-color: #fae9d5;
  padding-bottom: 150px;
  height: 100%;
}
.login .contact_info .float_info {
  position: relative;
  padding: 5vw;
  z-index: 10;
}
.login .contact_info .float_info .text {
  font-size: 18px;
  color: #55556d;
  margin-top: 30px;
}
.login .contact_info .float_info .text .logo {
  height: 40px;
  margin: 0 5px;
  opacity: 0.7;
}
.login .contact_info .float_info ul li {
  font-size: 16px;
  margin: 15px 0;
  color: #171d27;
  font-weight: 600;
}
.login .contact_info .float_info ul li .icon {
  margin-inline-end: 20px;
  color: var(--mainColor);
}
.login .contact_info .img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
}
.login .login_slider {
  position: relative;
  overflow: hidden;
  height: 100%;
}
.login .main-img {
  padding: 30px;
  background-color: #FAE9D5;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.login .main-img img {
  filter: grayscale(1);
  max-height: 300px;
}

.swiper-pagination .swiper-pagination-bullet {
  margin: 6px !important;
  width: 12px;
  height: 12px;
  background-color: #171D27;
}

.form {
  display: block;
}
.form .form-group {
  position: relative;
  margin-bottom: 30px;
}
.form .form-group .float_label {
  font-size: 16px;
  color: #55556d;
  display: block;
  padding-inline-start: 30px;
  position: absolute;
  right: 0;
  top: 15px;
  pointer-events: none;
  transition: all 0.3s ease;
  /*-----*/
  top: -10px;
  opacity: 0.4;
  font-size: 14px;
}
.form .form-group .form-control {
  min-height: 45px;
  border: 0;
  border-radius: 0;
  border-bottom: 2px solid #171d27;
  padding: 15px 30px 15px 15px;
  box-shadow: none;
  background-color: transparent;
}
.form .form-group .form-control:hover, .form .form-group .form-control:focus {
  border-color: var(--mainColor);
}
/*.form .form-group .form-control:focus ~ .float_label, .form .form-group .form-control:valid ~ .float_label {*/
/*  top: -10px;*/
/*  opacity: 0.4;*/
/*  font-size: 14px;*/
/*}*/
.form .form-group .st_icon {
  position: absolute;
  right: 0;
  bottom: 15px;
  font-size: 18px;
  color: #55556d;
}
.form .phone_group {
  display: flex;
}
.form .phone_group .flag {
  height: 20px;
  margin-inline-end: 5px;
}
.form .phone_group .form-select {
  background-position: right 0.75rem center;
  pointer-events: none;
  background: transparent;
}

.form-check-input:checked {
  background-color: var(--mainColor);
  border-color: var(--mainColor);
}

.show_hide_password {
  position: relative;
}
.show_hide_password .show_pass {
  position: absolute;
  bottom: 20px;
  inset-inline-end: 0;
  cursor: pointer;
  color: #55556d;
}

/* --------------- inner_header --------------- */
.inner_header {
  position: relative;
  padding: 120px 0;
  text-align: center;
  background-color: #f1efec;
}
.inner_header .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
}
.inner_header .line_shap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.inner_header h2 {
  font-size: 40px;
  font-weight: bold;
  color: #171d27;
}
.inner_header .container {
  position: relative;
  z-index: 20;
}
.inner_header .text {
  font-size: 18px;
}
.inner_header .shap {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 60%;
}
.inner_header .logo {
  height: 40px;
  margin: 0 10px;
}

/* --------------- about pg --------------- */
.about_vision {
  position: relative;
  background-image: url(../images/vision_bg.png);
  background-size: cover;
  padding-bottom: 100px;
}
.about_vision::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 180px;
  background-color: #fff;
}
.about_vision .vision_card {
  position: relative;
  text-align: center;
  padding: 40px;
  height: 100%;
  z-index: 10;
  box-shadow: 0 24px 24px 0 rgba(10, 10, 40, 0.08), 0 0 1px 0 rgba(10, 10, 40, 0.08);
  background-image: linear-gradient(141deg, rgba(255, 255, 255, 0) 24%, #f1efec 83%), linear-gradient(to bottom, #fff, #fff);
}
.about_vision .vision_card .icon {
  height: 90px;
  margin-bottom: 15px;
}
.about_vision .vision_card h5 {
  font-size: 27px;
  font-weight: bold;
  margin-bottom: 10px;
}
.about_vision .vision_card .text {
  font-size: 16px;
}
.about_vision .goals_card {
  position: relative;
  padding: 50px 0;
  color: #fff;
}
.about_vision .goals_card .icon {
  height: 90px;
  margin-bottom: 15px;
  text-align: center;
}
.about_vision .goals_card h5 {
  font-size: 27px;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
  color: #fff;
}
.about_vision .goals_card .goal_list .item {
  display: flex;
  margin-top: 30px;
}
.about_vision .goals_card .goal_list .item .star {
  margin-inline-end: 15px;
  flex-shrink: 0;
  height: 25px;
}
.about_vision .goals_card .goal_list .item .txt {
  font-size: 16px;
}

/* --------------- contact pg --------------- */
.map iframe {
  margin-bottom: -6px;
}

/* --------------- project_pg --------------- */
.project_pg .project {
  position: relative;
  padding: 200px 0 100px;
  background-size: cover;
  background-color: #f1efec;
}
.project_pg .project .container {
  position: relative;
  z-index: 20;
}
.project_pg .project .shap {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  opacity: 0.3;
  height: 100%;
}
.project_pg .project .info {
  position: relative;
}
.project_pg .project .info .small {
  font-size: 12px;
}
.project_pg .project .info .proj_title {
  position: relative;
  font-size: 31px;
  color: var(--mainColor);
  padding-inline-start: 8px;
  margin-top: 15px;
}
.project_pg .project .info .proj_title::before {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  width: 30px;
  height: 30px;
  background-image: url(../images/exp_red.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.project_pg .project .info .blocks_number {
  display: flex;
  align-items: center;
  font-size: 12px;
  margin-top: 30px;
  line-height: 1;
}
.project_pg .project .info .blocks_number .icon {
  margin-inline-end: 10px;
  width: 30px;
  flex-shrink: 0;
}
.project_pg .project .info .blocks_number p {
  font-weight: bold;
  line-height: 1;
}
.project_pg .project .info .btns {
  margin-top: 45px;
  display: flex;
  width: calc(100% + 50px);
  margin-inline-start: -25px;
}
.project_pg .project .info .btns .more {
  display: flex;
  justify-content: space-between;
  flex-grow: 1;
  background-color: #fff;
  padding: 15px 30px;
  color: var(--mainColor);
  font-weight: bold;
  margin-inline-end: 20px;
}
.project_pg .project .info .btns .more .arrow {
  margin-top: 3px;
}
.project_pg .project .info .btns .home_icon {
  width: 55px;
  border: 1px solid var(--mainColor);
  color: var(--mainColor);
  margin-inline-start: 1px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.project_pg .project .info .btns .home_icon.active {
  background-color: var(--mainColor);
  color: #fff;
}
.project_pg .project .info .btns .btn {
  flex-grow: 1;
  margin: 5px;
}
.project_pg .project .info .btns .whats_btn {
  width: 100%;
  background-color: #11b12e;
  border-color: #11b12e;
  color: #fff;
}
.project_pg .project .project_sliders {
  position: relative;
  overflow: hidden;
  display: flex;
}
.project_pg .project .project_sliders .gallery-top {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.project_pg .project .project_sliders .gallery-top .swiper-slide .img {
  height: 460px;
}
.project_pg .project .project_sliders .gallery-top .swiper-slide .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.project_pg .project .project_sliders .gallery-thumbs {
  width: 25%;
  margin-top: -10px;
}
.project_pg .project .project_sliders .gallery-thumbs .swiper-wrapper {
  display: block;
}
.project_pg .project .project_sliders .gallery-thumbs .swiper-wrapper .swiper-slide {
  opacity: 0.5;
  height: -moz-max-content;
  height: max-content;
  width: 100%;
}
.project_pg .project .project_sliders .gallery-thumbs .swiper-wrapper .swiper-slide .img {
  height: 160px;
  padding: 10px 20px;
}
.project_pg .project .project_sliders .gallery-thumbs .swiper-wrapper .swiper-slide .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.project_pg .project .project_sliders .gallery-thumbs .swiper-wrapper .swiper-slide-thumb-active {
  opacity: 1;
}
.project_pg .projetcs_filter .filter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: 2px solid rgba(85, 85, 109, 0.168627451);
}
.project_pg .projetcs_filter .filter .nav-pills .nav-link {
  font-size: 16px;
  font-weight: bold;
  border-radius: 0;
  background-color: transparent;
  color: #171d27;
  padding: 20px 0;
  margin-inline-end: 30px;
  border-bottom: 7px solid transparent;
  margin-bottom: -1px;
}
.project_pg .projetcs_filter .filter .nav-pills .nav-link.active {
  color: var(--mainColor);
  border-color: var(--mainColor);
}
.project_pg .projetcs_filter .filter .selects {
  display: flex;
}
.project_pg .projetcs_filter .filter .selects .select_group {
  position: relative;
  margin: 10px;
}
.project_pg .projetcs_filter .filter .selects .select_group .icon {
  position: absolute;
  right: 10px;
  top: 11px;
  pointer-events: none;
}
.project_pg .projetcs_filter .filter .selects .select_group .form-select {
  font-weight: bold;
  border: 1px solid rgba(153, 153, 153, 0.2);
  border-radius: 0;
  min-height: 42px;
  padding-inline-start: 35px;
  box-shadow: none;
  background-image: none;
  min-width: 150px;
  font-size: 14px;
}
.project_pg .projetcs_filter .filter .selects .select_group .form-select:focus {
  border-color: var(--mainColor);
  background-color: rgba(104, 115, 137, 0.0784313725);
  color: var(--mainColor);
}
.project_pg .projetcs_filter .filter .selects .select_group .form-select:focus ~ .icon {
  color: var(--mainColor);
}
.project_pg .projetcs_filter .filter .grid_list_btns .bttn {
  height: 42px;
  width: 42px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-inline-start: 8px;
  border: 1px solid rgba(153, 153, 153, 0.2);
  font-size: 18px;
  cursor: pointer;
}
.project_pg .projetcs_filter .filter .grid_list_btns .bttn.active {
  border-color: var(--mainColor);
  background-color: rgba(104, 115, 137, 0.0784313725);
  color: var(--mainColor);
}
.project_pg .swiper-button-next,
.project_pg .swiper-button-prev {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid #fff;
  transition: all 0.3s ease;
}
.project_pg .swiper-button-next::after,
.project_pg .swiper-button-prev::after {
  font-size: 14px;
  color: #fff;
}
.project_pg .swiper-button-next:hover,
.project_pg .swiper-button-prev:hover {
  background-color: #fff;
}
.project_pg .swiper-button-next:hover::after,
.project_pg .swiper-button-prev:hover::after {
  color: var(--mainColor);
}

.pagination {
  position: relative;
  margin-top: 50px;
  justify-content: center;
}
.pagination a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f1efec;
  color: var(--mainColor);
  margin: 5px;
}
.pagination a:hover, .pagination a.active {
  background-color: var(--mainColor);
  color: #fff;
}

.swiper-notification {
  display: none;
}

.projects_cards {
  padding: 50px 0;
}
@media screen and (min-width: 991px) {
  .projects_cards.projects_grid .col-lg-6 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
}
.projects_cards.projects_grid .project_card {
  display: block;
}
.projects_cards.projects_grid .project_card .imgs_slider {
  width: 100%;
}
.projects_cards.projects_grid .project_card .info {
  width: 100%;
}
.projects_cards .project_card {
  position: relative;
  display: flex;
  background-color: #fff;
  margin-bottom: 30px;
  border: 1px solid #171d27;
  height: calc(100% - 30px);
}
.projects_cards .project_card::after {
  position: absolute;
  content: "";
  left: -2px;
  top: calc(50% - 50px);
  width: 2px;
  height: 100px;
  background-color: #fff;
  z-index: 10;
}
.projects_cards .project_card.solid_card .solid {
  display: flex;
}
.projects_cards .project_card .solid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.4666666667);
  z-index: 20;
  display: none;
}
.projects_cards .project_card .solid img {
  height: 180px;
}
.projects_cards .project_card .imgs_slider {
  position: relative;
  width: 50%;
  overflow: hidden;
  height: 315px;
  min-height: 100%;
}
.projects_cards .project_card .imgs_slider .img {
  height: 315px;
  min-height: 100%;
}
.projects_cards .project_card .imgs_slider .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.projects_cards .project_card .imgs_slider .slider_inf {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  padding: 20px;
  z-index: 10;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.7607843137), transparent);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.projects_cards .project_card .imgs_slider .slider_inf .imgs_num {
  background-color: #fff;
  padding: 5px 15px;
  border-radius: 30px;
  display: inline-block;
  font-size: 12px;
  font-weight: bold;
}
.projects_cards .project_card .imgs_slider .slider_inf .logo {
  height: 30px;
}
.projects_cards .project_card .imgs_slider .swiper-pagination {
  bottom: 20px;
}
.projects_cards .project_card .imgs_slider .swiper-pagination .swiper-pagination-bullet {
  background-color: #fff;
}
.projects_cards .project_card .info {
  position: relative;
  padding: 25px 25px 0;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.projects_cards .project_card .info .small {
  font-size: 12px;
}
.projects_cards .project_card .info .soon_icon {
  position: absolute;
  left: 10px;
  top: 10px;
  background-color: #f1efec;
  padding: 10px 10px 20px;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
          clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
  text-align: center;
}
.projects_cards .project_card .info .soon_icon .icon {
  color: var(--mainColor);
  display: block;
}
.projects_cards .project_card .info .soon_icon .txt {
  font-size: 12px;
  font-weight: bold;
}
.projects_cards .project_card .info .icon_cards {
  display: flex;
  flex-wrap: wrap;
}
.projects_cards .project_card .info .icon_cards .item {
  width: 50%;
  display: flex;
  margin: 10px 0;
}
.projects_cards .project_card .info .icon_cards .item .icon {
  height: 20px;
  width: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-inline-end: 10px;
}
.projects_cards .project_card .info .icon_cards .item h6 {
  font-size: 12px;
}
.projects_cards .project_card .info .btns {
  margin-top: 10px;
  display: flex;
  width: calc(100% + 50px);
  margin-inline-start: -25px;
}
.projects_cards .project_card .info .btns .more {
  display: flex;
  justify-content: space-between;
  flex-grow: 1;
  background-color: #f1efec;
  padding: 15px 30px;
  color: var(--mainColor);
  font-weight: bold;
}
.projects_cards .project_card .info .btns .home_icon {
  width: 55px;
  height: 55px;
  border: 1px solid var(--mainColor);
  color: var(--mainColor);
  margin-inline-start: auto;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.projects_cards .project_card .info .btns .home_icon.active {
  background-color: var(--mainColor);
  color: #fff;
}

/* --------------- project_det_pg --------------- */
.project_det_pg {
  position: relative;
}
.project_det_pg .container {
  position: relative;
  z-index: 20;
}
.project_det_pg .sub_title {
  position: relative;
  font-size: 21px;
  font-weight: bold;
  margin-bottom: 30px;
  padding-bottom: 20px;
}
.project_det_pg .sub_title::after {
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: var(--mainColor);
}
.project_det_pg .details_tabs .nav-pills {
  padding: 20px 0;
  border-bottom: 1px solid rgba(153, 153, 153, 0.6);
  margin-bottom: 50px;
}
.project_det_pg .details_tabs .nav-pills .nav-link {
  font-size: 20px;
  background-color: transparent;
  border-radius: 0;
  padding: 0;
  color: #000;
  margin-inline-end: 3vw;
  opacity: 0.7;
  transition: all 0.3s ease;
}
.project_det_pg .details_tabs .nav-pills .nav-link.active {
  color: var(--mainColor);
  opacity: 1;
}
.project_det_pg .details_tabs .tab_full_details .cards .item {
  position: relative;
  display: flex;
  align-items: center;
  background-color: #fff;
  padding: 15px;
  margin-top: 20px;
  overflow: hidden;
}
.project_det_pg .details_tabs .tab_full_details .cards .item::before {
  position: absolute;
  content: "";
  right: -100px;
  top: -53px;
  width: 200px;
  height: 200px;
  border: 20px solid #f1efec;
  pointer-events: none;
  transform: rotate(45deg);
}
.project_det_pg .details_tabs .tab_full_details .cards .item .icon {
  width: 60px;
  height: 50px;
  margin-inline-end: 100px;
  padding: 5px;
}
.project_det_pg .details_tabs .tab_full_details .cards .item h5 {
  color: var(--mainColor);
  font-weight: bold;
  margin-top: 5px;
  margin-bottom: 0;
}
.project_det_pg .project_det_main {
  position: relative;
  background-color: #f1efec;
  padding: 100px 0 100px;
}
.project_det_pg .project_det_main .title h1 {
  font-size: 70px;
}
.project_det_pg .project_det_main .shap {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
}
.project_det_pg .project_det_main .project_sliders {
  position: relative;
  overflow: hidden;
  display: flex;
}
.project_det_pg .project_det_main .project_sliders .gallery-top {
  position: relative;
  width: 75%;
  overflow: hidden;
}
.project_det_pg .project_det_main .project_sliders .gallery-top .swiper-slide .img {
  position: relative;
  height: 460px;
}
.project_det_pg .project_det_main .project_sliders .gallery-top .swiper-slide .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.project_det_pg .project_det_main .project_sliders .gallery-top .swiper-slide .img .play_btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  color: #FF0000;
  font-size: 60px;
}
.project_det_pg .project_det_main .project_sliders .gallery-top .swiper-slide .img .play_btn i {
  background-color: #fff;
  border-radius: 8px;
  line-height: 0.5;
}
.project_det_pg .project_det_main .project_sliders .gallery-thumbs {
  width: 25%;
  margin-top: -10px;
  height: 480px;
}
.project_det_pg .project_det_main .project_sliders .gallery-thumbs .swiper-wrapper {
  display: block;
}
.project_det_pg .project_det_main .project_sliders .gallery-thumbs .swiper-wrapper .swiper-slide {
  opacity: 0.5;
  height: -moz-max-content;
  height: max-content;
  width: 100%;
}
.project_det_pg .project_det_main .project_sliders .gallery-thumbs .swiper-wrapper .swiper-slide .img {
  height: 160px;
  padding: 10px 20px;
}
.project_det_pg .project_det_main .project_sliders .gallery-thumbs .swiper-wrapper .swiper-slide .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.project_det_pg .project_det_main .project_sliders .gallery-thumbs .swiper-wrapper .swiper-slide-thumb-active {
  opacity: 1;
}
.project_det_pg .project_det_main .map_wrapper .map_info {
  padding: 25px;
  background-color: #fff;
  margin-bottom: 15px;
}
.project_det_pg .project_det_main .main_info {
  padding-top: 50px;
}
.project_det_pg .project_det_main .main_info .text {
  font-size: 16px;
  margin-bottom: 20px;
}
.project_det_pg .project_det_main .phone_card {
  position: relative;
  padding: 70px 50px;
  text-align: center;
  margin-top: 50px;
  box-shadow: -6px 6px 0 0 rgba(221, 61, 7, 0.08);
  background-image: linear-gradient(146deg, #fff 19%, #f1efec 100%);
}
.project_det_pg .project_det_main .phone_card .card_title {
  position: relative;
  display: block;
  margin: auto;
  width: -moz-max-content;
  width: max-content;
  margin-bottom: 30px;
  font-size: 32px;
  padding: 5px 10px;
}
.project_det_pg .project_det_main .phone_card .card_title .cir {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.project_det_pg .project_det_sub {
  position: relative;
  padding: 100px 0;
}
.project_det_pg .project_det_sub .sub_card {
  position: relative;
  padding: 30px;
  margin-top: 20px;
  height: calc(100% - 20px);
}
.project_det_pg .project_det_sub .sub_card .float_icon {
  position: absolute;
  top: -40px;
  left: 50px;
  width: 80px;
  height: 80px;
  padding: 20px;
  background-color: #fff;
  transform: rotate(45deg);
  box-shadow: -6px 6px 0 0 rgba(221, 61, 7, 0.08);
}
.project_det_pg .project_det_sub .sub_card .float_icon img {
  transform: rotate(-45deg);
}
.project_det_pg .project_det_sub .sub_card * {
  position: relative;
  z-index: 10;
}
.project_det_pg .project_det_sub .sub_card .icons_cards {
  display: flex;
  flex-wrap: wrap;
}
.project_det_pg .project_det_sub .sub_card .icons_cards p, .project_det_pg .project_det_sub .sub_card .icons_cards small {
  font-weight: bold;
}
.project_det_pg .project_det_sub .sub_card .icons_cards .item {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 12px;
  margin-top: 30px;
  line-height: 1;
  width: 50%;
}
.project_det_pg .project_det_sub .sub_card .icons_cards .item .icon {
  margin-inline-end: 10px;
  width: 40px;
  flex-shrink: 0;
}
.project_det_pg .project_det_sub .sub_card .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.5;
}
.project_det_pg .swiper-button-next,
.project_det_pg .swiper-button-prev {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid #fff;
  transition: all 0.3s ease;
}
.project_det_pg .swiper-button-next::after,
.project_det_pg .swiper-button-prev::after {
  font-size: 14px;
  color: #fff;
}
.project_det_pg .swiper-button-next:hover,
.project_det_pg .swiper-button-prev:hover {
  background-color: #fff;
}
.project_det_pg .swiper-button-next:hover::after,
.project_det_pg .swiper-button-prev:hover::after {
  color: var(--mainColor);
}

/* --------------- faq pg --------------- */
.faq {
  position: relative;
}
.faq .nav-pills {
  justify-content: center;
  margin-bottom: 60px;
}
.faq .nav-pills .nav-link {
  border: 1px solid var(--mainColor);
  border-radius: 0;
  background-color: rgba(104, 115, 137, 0.0666666667);
  color: var(--mainColor);
  min-width: 177px;
  text-align: center;
  margin: 8px;
  padding: 12px;
}
.faq .nav-pills .nav-link:hover, .faq .nav-pills .nav-link.active {
  background-color: var(--mainColor);
  color: #fff;
}
.faq .accordion > .accordion-item {
  padding: 5px 15px;
  border-radius: 0;
  background-color: #fff;
  margin-bottom: 15px;
  box-shadow: 0px 4px 12px 0px rgba(10, 10, 10, 0.031372549);
  border: 1px solid rgba(153, 153, 153, 0.1333333333);
}
.faq .accordion > .accordion-item .accordion-button {
  padding: 10px 0;
  padding-inline-start: 10px;
  border: 0;
  box-shadow: none;
  background-color: transparent;
  color: #000;
  font-weight: bold;
}
.faq .accordion > .accordion-item .accordion-button::after {
  background-image: none;
  content: "\f067";
  font-family: "Font Awesome 6 Pro";
  font-size: 15px;
  font-weight: 300;
  transform: rotate(0);
  width: 42px;
  height: 42px;
  background-color: rgba(15, 85, 85, 0.0352941176);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.faq .accordion > .accordion-item .accordion-button:not(.collapsed) {
  color: var(--mainColor);
}
.faq .accordion > .accordion-item .accordion-button:not(.collapsed)::after {
  content: "\f068";
  color: var(--mainColor);
  background-color: rgba(104, 115, 137, 0.0666666667);
}
.faq .accordion > .accordion-item .accordion-body {
  padding: 10px;
  padding-bottom: 30px;
}
.faq .accordion > .accordion-item .accordion-body .text {
  font-size: 16px;
}

/* --------------- user --------------- */
.user_links .links {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(153, 153, 153, 0.2);
}
.user_links .links .nav_link {
  position: relative;
  font-size: 15px;
  padding: 30px 15px;
}
.user_links .links .nav_link .icon {
  font-size: 20px;
  margin-inline-end: 10px;
}
.user_links .links .nav_link::before {
  position: absolute;
  content: "";
  right: 15px;
  bottom: -5px;
  width: 10px;
  height: 10px;
  background-color: var(--mainColor);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s ease;
}
.user_links .links .nav_link.active, .user_links .links .nav_link:hover {
  color: var(--mainColor);
}
.user_links .links .nav_link.active::before, .user_links .links .nav_link:hover::before {
  opacity: 1;
}
.user_links.user_links_vertical {
  height: 100%;
  border-left: 1px solid rgba(153, 153, 153, 0.2);
  display: flex;
  padding: 50px 0;
}
.user_links.user_links_vertical .links {
  display: block;
  border-bottom: 0;
  width: 100%;
}
.user_links.user_links_vertical .links .nav_link {
  padding: 20px 30px;
  width: 100%;
}
.user_links.user_links_vertical .links .nav_link::before {
  right: auto;
  left: -5px;
  bottom: calc(50% - 5px);
}

/* --------------- user pages --------------- */
@media screen and (min-width: 991px) {
  .user_pg > .row .col-lg-3 {
    width: 20%;
  }
  .user_pg > .row .col-lg-9 {
    width: 80%;
    padding: 4vw;
  }
}
.user_pg .projects_cards {
  padding: 0;
}

.purchases_pg {
  position: relative;
}
.purchases_pg .purchases_cards {
  position: relative;
  padding: 60px 0;
}
.purchases_pg .purchases_cards .number_item {
  position: relative;
  background-color: #fff;
  padding: 20px;
  border: 1px solid rgba(153, 153, 153, 0.1333333333);
  box-shadow: 0px 24px 24px 0px rgba(0, 0, 0, 0.0666666667);
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.purchases_pg .purchases_cards .number_item * {
  position: relative;
  z-index: 5;
}
.purchases_pg .purchases_cards .number_item .numb {
  font-size: 32px;
  font-weight: bold;
  color: var(--mainColor);
  margin-bottom: 60px;
}
.purchases_pg .purchases_cards .number_item .numb small {
  font-size: 13px;
  position: relative;
  top: -15px;
}
.purchases_pg .purchases_cards .number_item .back_txt {
  color: #F1EFEC;
  font-size: 55px;
  line-height: 33px;
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 1;
}
.purchases_pg .purchases_cards .project_progress {
  position: relative;
  background-color: #fff;
  padding: 20px;
  border: 1px solid rgba(153, 153, 153, 0.1333333333);
  box-shadow: 0px 24px 24px 0px rgba(0, 0, 0, 0.0666666667);
  margin-top: 30px;
}
.purchases_pg .purchases_cards .project_progress h6 {
  font-size: 16px;
  margin-bottom: 10px;
}
.purchases_pg .purchases_cards .project_progress .color_items {
  display: flex;
  flex-wrap: wrap;
}
.purchases_pg .purchases_cards .project_progress .color_items .item {
  margin-top: 14px;
  width: 25%;
  min-width: -moz-max-content;
  min-width: max-content;
  padding-inline-end: 20px;
}
.purchases_pg .purchases_cards .project_progress .color_items .item .perc {
  color: var(--mainColor);
  margin-inline-start: 5px;
  font-weight: bold;
  font-size: 12px;
}
.purchases_pg .purchases_cards .project_progress .color_items .item .clr {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  margin-inline-end: 10px;
  background-color: #ccc;
  position: relative;
  top: 4px;
}
.purchases_pg .purchases_cards .project_progress .color_items .item .clr.green {
  background-color: #4AC367;
}
.purchases_pg .purchases_cards .project_progress .color_items .item .clr.orange {
  background-color: #FFC107;
}
.purchases_pg .purchases_cards .project_progress .color_items .item .clr.purple {
  background-color: #DA5DF5;
}
.purchases_pg .purchases_cards .project_progress .color_items .item .clr.brown {
  background-color: #8D6E63;
}
.purchases_pg .purchases_cards .project_progress .color_items .item .clr.blue {
  background-color: #2196F3;
}
.purchases_pg .purchases_cards .project_progress .color_items .item .clr.cyan {
  background-color: #00BCD4;
}
.purchases_pg .purchases_cards .project_progress .back_txt {
  color: #F1EFEC;
  font-size: 55px;
  line-height: 33px;
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 1;
}
.purchases_pg .purchases_cards .project_progress .chart_cont {
  position: relative;
  height: 400px;
}
.purchases_pg .purchases_cards .project_progress .apexcharts-tooltip,
.purchases_pg .purchases_cards .project_progress .apexcharts-toolbar {
  display: none !important;
}
.purchases_pg .purchases_cards .project_progress .apexcharts-legend-series {
  display: none;
}
.purchases_pg .purchases_cards .project_progress .progress_wrapper {
  margin-top: 40px;
}
.purchases_pg .purchases_cards .project_progress .progress_wrapper .progress {
  margin-top: 15px;
  border-radius: 20px;
}
.purchases_pg .purchases_cards .project_progress .progress_wrapper .progress .progress-bar {
  background-color: var(--mainColor);
  border-radius: 20px;
}
.purchases_pg .purchases_cards .project_progress .nav-pills {
  display: block;
}
.purchases_pg .purchases_cards .project_progress .nav-pills li {
  overflow: hidden;
  margin-bottom: 30px;
}
.purchases_pg .purchases_cards .project_progress .nav-pills li .nav-link {
  padding: 0;
  width: 100%;
  background-color: transparent;
  color: #000;
}
.purchases_pg .purchases_cards .project_progress .nav-pills li .nav-link .proj_name {
  width: 100%;
  text-align: start;
  border-radius: 0;
  background-color: #f5f5f5;
  padding: 15px;
  font-size: 18px;
  color: #000;
  display: flex;
}
.purchases_pg .purchases_cards .project_progress .nav-pills li .nav-link .proj_name .arrow {
  margin-inline-start: auto;
  margin-inline-end: 0;
  opacity: 0;
}
.purchases_pg .purchases_cards .project_progress .nav-pills li .nav-link.active .proj_name {
  background-color: var(--mainColor);
  color: #fff;
}
.purchases_pg .purchases_cards .project_progress .nav-pills li .nav-link.active .proj_name .arrow {
  opacity: 1;
}
.purchases_pg .purchases_cards .project_progress .nav-pills li .proj_content {
  background-color: #f5f5f5;
  margin-top: 10px;
  padding: 20px;
  display: none;
}
.purchases_pg .purchases_cards .project_progress .nav-pills li .proj_content.active {
  display: block;
}
.purchases_pg .purchases_cards .project_progress .tab-content {
  margin-top: 60px;
}
.purchases_pg .steps_levels {
  position: relative;
  padding: 50px 0;
  background-image: url(../images/steps_bg.png);
  background-size: cover;
  border-top: 1px solid rgba(104, 115, 137, 0.1333333333);
}
.purchases_pg .steps_levels .steps {
  position: relative;
  display: flex;
  padding-inline-start: 62px;
}
.purchases_pg .steps_levels .steps .step_item {
  position: relative;
  flex-grow: 1;
  display: flex;
  justify-content: end;
}
.purchases_pg .steps_levels .steps .step_item::before {
  position: absolute;
  content: "";
  left: 60px;
  top: 25px;
  width: calc(100% - 60px);
  height: 2px;
  background-color: rgba(153, 153, 153, 0.2);
}
.purchases_pg .steps_levels .steps .step_item:first-of-type {
  position: absolute;
  right: 0;
  top: 0;
}
.purchases_pg .steps_levels .steps .step_item:first-of-type::before {
  display: none;
}
.purchases_pg .steps_levels .steps .step_item.active::before {
  background-color: var(--mainColor);
}
.purchases_pg .steps_levels .steps .step_item.active .icon {
  background-color: rgba(104, 115, 137, 0.1333333333);
  border-color: #687389;
  color: var(--mainColor);
  outline: 6px solid #fff;
  outline-offset: -7px;
}
.purchases_pg .steps_levels .steps .step_item.active .icon .check {
  display: block;
}
.purchases_pg .steps_levels .steps .step_item.active .icon .n_active {
  display: none;
}
.purchases_pg .steps_levels .steps .step_item .cont {
  text-align: center;
}
.purchases_pg .steps_levels .steps .step_item .icon {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  border: 1px solid rgba(153, 153, 153, 0.2666666667);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  font-size: 18px;
}
.purchases_pg .steps_levels .steps .step_item .icon .check {
  display: none;
}
.purchases_pg .steps_levels .steps .step_item p {
  font-size: 12px;
  font-weight: bold;
}
.purchases_pg .steps_levels .steps .step_item small {
  font-size: 11px;
}

.shap_title {
  position: relative;
  font-size: 31px;
  color: var(--mainColor);
  padding-inline-start: 8px;
}
.shap_title::before {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  width: 30px;
  height: 30px;
  background-image: url(../images/exp_red.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

/* --------------- user_info --------------- */
.user_info {
  position: relative;
}
.user_info .user_info_card {
  position: relative;
  padding: 4vw;
  box-shadow: 0px 4px 12px rgba(10, 10, 40, 0.04), 0px 0px 1px rgba(85, 85, 109, 0.08);
  background: linear-gradient(180deg, rgba(234, 238, 243, 0.6) 0%, rgba(255, 255, 255, 0.6) 45.51%, rgba(255, 255, 255, 0.6) 76.1%, rgba(246, 229, 215, 0.0666666667) 100%);
  background-blend-mode: normal;
  margin-top: 20px;
  border: 1px solid #171D27;
}
.user_info .user_info_card::after {
  position: absolute;
  content: "";
  left: -5px;
  top: calc(50% - 100px);
  height: 200px;
  width: 5px;
  background-color: #fff;
}
.user_info .user_info_card .edit_link {
  position: absolute;
  top: 4vw;
  right: 4vw;
  z-index: 10;
  font-weight: bold;
}
.user_info .user_info_card .edit_link:hover {
  color: var(--mainColor);
}
.user_info .user_info_card .img_card {
  text-align: center;
}
.user_info .user_info_card .img_card .user_icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background-color: rgba(153, 153, 153, 0.2);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}
.user_info .user_info_card .img_card h6 {
  color: var(--mainColor);
  margin-top: 10px;
}
.user_info .user_info_card .info_list {
  margin-top: 100px;
}
.user_info .user_info_card .info_list li {
  display: flex;
  margin: 15px 0;
}
.user_info .user_info_card .info_list li .txt {
  width: 25%;
}

/* --------------- user_info_edit --------------- */
.user_info_edit .user_info_icon {
  display: flex;
  align-items: center;
}
.user_info_edit .user_info_icon .user_icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(153, 153, 153, 0.2);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline-end: 15px;
}
.user_info_edit .form {
  position: relative;
  border: 1px solid #171D27;
  padding: 50px;
}
.user_info_edit .form::after {
  position: absolute;
  content: "";
  left: -5px;
  top: calc(50% - 100px);
  height: 200px;
  width: 5px;
  background-color: #fff;
}

/* --------------- user_files --------------- */
.user_files .nav-pills {
  justify-content: center;
  margin-bottom: 60px;
}
.user_files .nav-pills .nav-link {
  border: 1px solid var(--mainColor);
  border-radius: 0;
  background-color: rgba(104, 115, 137, 0.0666666667);
  color: var(--mainColor);
  min-width: 177px;
  text-align: center;
  margin: 8px;
  padding: 12px;
}
.user_files .nav-pills .nav-link:hover, .user_files .nav-pills .nav-link.active {
  background-color: var(--mainColor);
  color: #fff;
}
.user_files .files .file_card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 30px;
  margin-bottom: 10px;
  font-size: 14px;
  box-shadow: 0px 4px 12px 0px rgba(10, 10, 10, 0.031372549);
  border: 1px solid rgba(153, 153, 153, 0.1333333333);
  background-color: #fff;
}
.user_files .files .file_card .date {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 14px;
}
.user_files .files .file_card h6 {
  font-size: 18px;
}
.user_files .files .file_card a:hover {
  color: var(--mainColor);
}


.user_files .accordion-header .accordion-button .float_logo {
  width: 40px;
  /*height: 40px;*/
  /*border-radius: 10px;*/
  /*background-color: rgba(153, 153, 153, 0.2);*/
  /*font-size: 20px;*/
  /*display: flex;*/
  /*align-items: center;*/
  /*justify-content: center;*/
  margin-inline-end: 20px;
  /*flex-shrink: 0;*/
  overflow: hidden;
  /*padding: 3px;*/
  transition: all 0.4s ease;
}
.user_files .accordion-header .accordion-button .float_logo img {
  /*height: 100%;*/
  width: 100%;
  /*-o-object-fit: contain;*/
  /*   object-fit: contain;*/
  border-radius: 8px;
}
.user_files .accordion-header .accordion-button:not(.collapsed) .float_logo {
  opacity: 0;
  width: 0;
  margin-inline-end: 0;
}

.user_files .daman_card_body .main_cont {
  display: flex;
}
.user_files .daman_card_body .main_cont .logo {
  width: 80px;
  /*height: 80px;*/
  /*border-radius: 20px;*/
  /*background-color: rgba(153, 153, 153, 0.2);*/
  /*font-size: 20px;*/
  /*display: flex;*/
  /*align-items: center;*/
  /*justify-content: center;*/
  margin-inline-end: 30px;
  /*flex-shrink: 0;*/
  /*padding: 5px;*/
  /*overflow: hidden;*/
}
.user_files .daman_card_body .main_cont .logo img {
    /*height: 100%;*/
    width: 100%;
    /*object-fit: contain;*/
    border-radius: 8px;
}
.user_files .daman_card_body .main_cont .inff {
  flex-grow: 1;
}
.user_files .daman_card_body .main_cont .info_list {
  margin-top: 15px;
}
.user_files .daman_card_body .main_cont .info_list li {
  display: flex;
  margin: 10px 0;
  font-size: 13px;
}
.user_files .daman_card_body .main_cont .info_list li .txt {
  width: 35%;
}
.user_files .daman_card_body .btns_side {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  align-items: flex-end;
  padding-bottom: 10px;
}
.user_files .daman_card_body .btns_side .warranty_time {
  font-size: 12px;
  padding: 12px 15px;
  background-color: rgba(104, 115, 137, 0.0666666667);
  border-radius: 8px;
  position: absolute;
  top: -63px;
  left: 50px;
}
.user_files .daman_card_body .btns_side .btns .icon_link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #F1EFEC;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-inline-start: 5px;
  font-size: 17px;
  position: relative;
  top: 2px;
}
.user_files .daman_card_body .btns_side .btns .icon_link .fa-whatsapp {
  color: #11b12e;
}
.user_files .daman_card_body .btns_side .btns .icon_link:hover {
  background-color: var(--mainColor);
  color: #fff;
}
.user_files .daman_card_body .btns_side .btns .icon_link:hover .fa-whatsapp {
  color: #fff;
}
.user_files .daman_card_body .btns_side .btns .down_link {
  display: inline-flex;
  background-color: #F1EFEC;
  align-items: center;
  padding: 10px 30px;
  border-radius: 50px;
  margin-inline-start: 10px;
  font-size: 12px;
}
.user_files .daman_card_body .btns_side .btns .down_link:hover {
  background-color: var(--mainColor);
  color: #fff;
}
.user_files .daman_card_body .btns_side .btns .down_link i {
  flex-shrink: 0;
}
.user_files .proj_head_tabs {
  position: relative;
  padding: 30px 30px 10px;
  border-radius: 20px;
  background-color: #f9f9f9;
}
.user_files .proj_head_tabs .proj_pills {
  margin-bottom: 0;
}
.user_files .proj_head_tabs .proj_pills .nav-link {
  position: relative;
  background-color: #fff;
  padding: 40px 50px 0;
  border-radius: 15px;
  color: #000;
  border: 0;
  transition: all 0.3s ease;
  opacity: 0.7;
  margin-bottom: 30px;
  width: 300px;
}
.user_files .proj_head_tabs .proj_pills .nav-link .card_title {
    font-size: 18px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 60px;
}
.user_files .proj_head_tabs .proj_pills .nav-link p {
    min-height: 70px;
}
.user_files .proj_head_tabs .proj_pills .nav-link.active {
  color: #000;
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.0666666667);
  opacity: 1;
}
.user_files .proj_head_tabs .proj_pills .nav-link.active .arrow {
  background-color: var(--mainColor);
  color: #fff;
  transform: translateY(30px);
}
.user_files .proj_head_tabs .proj_pills .nav-link .arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 15px auto;
  background-color: #fff;
  border: 1px solid rgba(153, 153, 153, 0.1333333333);
  transition: all 0.3s ease;
}
.user_files .proj_tab_content {
  position: relative;
  padding: 50px 30px;
  border-radius: 20px;
  background-image: linear-gradient(to bottom, #f9f9f9, transparent);
  margin-top: 30px;
}
.user_files .no_data_tab {
  padding: 30px;
  text-align: center;
}
.user_files .no_data_tab .icon {
  height: 200px;
  margin-bottom: 30px;
}

.accordion > .accordion-item {
  padding: 5px 15px;
  border-radius: 0;
  background-color: #fff;
  margin-bottom: 15px;
  box-shadow: 0px 4px 12px 0px rgba(10, 10, 10, 0.031372549);
  border: 1px solid rgba(153, 153, 153, 0.1333333333);
}
.accordion > .accordion-item .accordion-button {
  padding: 10px;
  border: 0;
  box-shadow: none;
  background-color: transparent;
  color: #000;
  font-weight: bold;
}
.accordion > .accordion-item .accordion-button::after {
  background-image: none;
  content: "\f067";
  font-family: "Font Awesome 6 Pro";
  font-size: 15px;
  font-weight: 300;
  transform: rotate(0);
  width: 42px;
  height: 42px;
  background-color: rgba(15, 85, 85, 0.0352941176);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.accordion > .accordion-item .accordion-button:not(.collapsed) {
  color: var(--mainColor);
}
.accordion > .accordion-item .accordion-button:not(.collapsed)::after {
  content: "\f068";
  color: var(--mainColor);
  background-color: rgba(104, 115, 137, 0.0666666667);
}
.accordion > .accordion-item .accordion-body {
  padding: 10px;
  padding-bottom: 30px;
}
.accordion > .accordion-item .accordion-body .text {
  font-size: 16px;
}

/* --------------- user_process --------------- */
.user_process .process_title {
  position: relative;
  margin-bottom: 30px;
}
.user_process .process_title .select_side {
  display: flex;
  align-items: center;
}
.user_process .process_title .select_side .txt {
  flex-shrink: 0;
  margin-inline-end: 20px;
}
.user_process .process_title .select_side .select_group {
  position: relative;
  margin: 10px;
}
.user_process .process_title .select_side .select_group .icon {
  position: absolute;
  right: 10px;
  top: 11px;
  pointer-events: none;
  color: var(--mainColor);
}
.user_process .process_title .select_side .select_group .form-select {
  font-weight: bold;
  border: 1px solid var(--mainColor);
  border-radius: 0;
  min-height: 42px;
  padding-inline-start: 35px;
  box-shadow: none;
  min-width: 150px;
  font-size: 14px;
  background-color: rgba(104, 115, 137, 0.0784313725);
  color: var(--mainColor);
}
.user_process .process_table .row {
  align-items: center;
}
.user_process .process_table .table_head {
  background-color: #f7f7f7;
}
.user_process .process_table .table_head .item {
  padding: 20px;
}
.user_process .process_table .table_body .body_row {
  border-bottom: 1px solid rgba(153, 153, 153, 0.2);
}
.user_process .process_table .table_body .body_row:last-of-type {
  border: 0;
}
.user_process .process_table .table_body .body_row .item {
  padding: 15px 10px;
}
.user_process .process_table .table_body p {
    font-size: 12px;
    font-weight: 600;
}
.user_process .process_table .table_body .body_row .status_btn {
  position: relative;
  width: 110px;
  padding: 2px 20px;
  border-radius: 7px;
  background-color: rgba(153, 153, 153, 0.0666666667);
  border: 1px solid rgba(153, 153, 153, 0.4);
  font-size: 12px;
  text-align: center;
}
.user_process .process_table .table_body .body_row .status_btn .float_icon {
  position: absolute;
  right: 5px;
  top: 5px;
}
.user_process .process_table .table_body .body_row .status_btn.success_btn {
  border-color: #05a563;
  background-color: rgba(5, 165, 99, 0.1333333333);
  color: #05a563;
}
.user_process .process_table .table_body .body_row .status_btn.review_btn {
  border-color: #ec840a;
  background-color: rgba(236, 132, 10, 0.1333333333);
  color: #ec840a;
}
.user_process .no_process {
  padding: 100px 0;
  text-align: center;
}
.user_process .no_process .icon {
  height: 150px;
  margin-bottom: 20px;
}

/* --------------- user_property_det --------------- */
.user_property_det .property_main_info .info {
  position: relative;
  padding-top: 20px;
  height: 100%;
  padding-bottom: 100px;
}
.user_property_det .property_main_info .info .small {
  font-size: 12px;
}
.user_property_det .property_main_info .info .icon_cards {
  display: flex;
  flex-wrap: wrap;
}
.user_property_det .property_main_info .info .icon_cards .item {
  width: 33%;
  display: flex;
  margin: 10px 0;
}
.user_property_det .property_main_info .info .icon_cards .item .icon {
  height: 20px;
  width: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-inline-end: 10px;
}
.user_property_det .property_main_info .info .icon_cards .item h6 {
  font-size: 12px;
}
.user_property_det .property_main_info .info .map_btn {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  padding: 25px;
  text-align: center;
  background-image: url(../images/map_btn.png);
  background-size: cover;
  font-weight: bold;
}
.user_property_det .property_main_info .info .map_btn:hover {
  color: var(--mainColor);
}
.user_property_det .property_main_info .imgs_slider {
  position: relative;
  overflow: hidden;
}
.user_property_det .property_main_info .imgs_slider .img {
  height: 400px;
  min-height: 100%;
}
.user_property_det .property_main_info .imgs_slider .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.user_property_det .property_main_info .imgs_slider .slider_inf {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  padding: 20px;
  z-index: 10;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.7607843137), transparent);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.user_property_det .property_main_info .imgs_slider .slider_inf .imgs_num {
  background-color: #fff;
  padding: 5px 15px;
  border-radius: 30px;
  display: inline-block;
  font-size: 12px;
  font-weight: bold;
}
.user_property_det .property_main_info .imgs_slider .slider_inf .logo {
  height: 30px;
}
.user_property_det .property_main_info .imgs_slider .swiper-pagination {
  bottom: 20px;
}
.user_property_det .property_main_info .imgs_slider .swiper-pagination .swiper-pagination-bullet {
  background-color: #fff;
}
.user_property_det .property_features {
  position: relative;
  padding: 30px;
  margin: 50px 0;
  border-radius: 15px;
  overflow: hidden;
}
.user_property_det .property_features .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
}
.user_property_det .property_features .container {
  position: relative;
  z-index: 20;
}
.user_property_det .property_features .features_content {
  position: relative;
}
.user_property_det .property_features .features_content .features {
  display: flex;
  flex-wrap: wrap;
}
.user_property_det .property_features .features_content .features .item {
  width: 33%;
  display: flex;
  align-items: center;
  margin: 15px 0;
}
.user_property_det .property_features .features_content .features .item .icon {
  height: 30px;
  width: 30px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-inline-end: 20px;
}
.user_property_det .property_features .features_content .features .item h6 {
  font-size: 16px;
  font-weight: 400;
}
.user_property_det .property_steps {
  position: relative;
}
.user_property_det .property_steps .steps_levels .steps {
  position: relative;
  display: flex;
  /*padding-inline-start: 62px;*/
  flex-wrap: wrap;
}
.user_property_det .property_steps .steps_levels .steps .step_item {
  position: relative;
  /*flex-grow: 1;*/
  display: flex;
    justify-content: start;
    width: 20%;
    margin-bottom: 30px;
}
/*.user_property_det .property_steps .steps_levels .steps .step_item::before {*/
/*  position: absolute;*/
/*  content: "";*/
/*  left: 60px;*/
/*  top: 25px;*/
/*  width: calc(100% - 60px);*/
/*  height: 2px;*/
/*  background-color: rgba(153, 153, 153, 0.2);*/
/*}*/
/*.user_property_det .property_steps .steps_levels .steps .step_item:first-of-type {*/
/*  position: absolute;*/
/*  right: 0;*/
/*  top: 0;*/
/*}*/
.user_property_det .property_steps .steps_levels .steps .step_item:first-of-type::before {
  display: none;
}
.user_property_det .property_steps .steps_levels .steps .step_item.active::before {
  background-color: var(--mainColor);
}
.user_property_det .property_steps .steps_levels .steps .step_item.active .icon {
  background-color: rgba(104, 115, 137, 0.1333333333);
  border-color: #687389;
  color: var(--mainColor);
  outline: 6px solid #fff;
  outline-offset: -7px;
}
.user_property_det .property_steps .steps_levels .steps .step_item.active .icon .check {
  display: block;
}
.user_property_det .property_steps .steps_levels .steps .step_item.active .icon .n_active {
  display: none;
}
.user_property_det .property_steps .steps_levels .steps .step_item .cont {
  /*text-align: center;*/
}
.user_property_det .property_steps .steps_levels .steps .step_item .icon {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  border: 1px solid rgba(153, 153, 153, 0.2666666667);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  font-size: 18px;
}
.user_property_det .property_steps .steps_levels .steps .step_item .icon .check {
  display: none;
}
.user_property_det .property_steps .steps_levels .steps .step_item p {
  font-size: 12px;
  font-weight: bold;
}
.user_property_det .property_steps .steps_levels .steps .step_item small {
  font-size: 11px;
}
.user_property_det .property_steps .steps_content {
  padding-top: 80px;
}
.user_property_det .property_steps .steps_content .steps_box {
  position: relative;
  background: rgba(85, 85, 109, 0.04);
  box-shadow: 0px 4px 12px rgba(10, 10, 40, 0.05), 0px 0px 2px 1px rgba(85, 85, 109, 0.06);
}
.user_property_det .property_steps .steps_content .steps_box .nav-pills {
  position: relative;
  z-index: 10;
  background: #fff;
  box-shadow: 0px 4px 12px rgba(10, 10, 40, 0.05), 0px 0px 2px 1px rgba(85, 85, 109, 0.07);
}
.user_property_det .property_steps .steps_content .steps_box .nav-pills .nav-link {
  padding: 20px 5px;
  margin: 0 20px;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  color: #171d27;
  font-size: 13px;
  border-bottom: 2px solid transparent;
  font-weight: bold;
}
.user_property_det .property_steps .steps_content .steps_box .nav-pills .nav-link.active, .user_property_det .property_steps .steps_content .steps_box .nav-pills .nav-link:hover {
  color: var(--mainColor);
  border-color: var(--mainColor);
}
.user_property_det .property_steps .steps_content .steps_box .tab-pane {
  position: relative;
  padding: 20px;
}
.user_property_det .property_steps .steps_content .steps_box .tab-pane::after {
  position: absolute;
  content: "";
  right: 95px;
  top: 0;
  width: 1px;
  height: 100%;
  border-right: 1px dashed var(--mainColor);
  opacity: 0.4;
}
.user_property_det .property_steps .steps_content .steps_box .steps_time_line {
  position: relative;
  max-height: 500px;
  overflow-x: hidden;
  overflow-y: scroll;
}
.user_property_det .property_steps .steps_content .steps_box .steps_time_line::-webkit-scrollbar {
  height: 6px;
  width: 6px;
  background: #f1f1f1;
  border-radius: 3px;
}
.user_property_det .property_steps .steps_content .steps_box .steps_time_line::-webkit-scrollbar-thumb {
  background: #999;
  border-radius: 6px;
}
.user_property_det .property_steps .steps_content .steps_box .steps_time_line .item {
  position: relative;
  padding: 20px 0;
  display: flex;
  align-items: start;
}
.user_property_det .property_steps .steps_content .steps_box .steps_time_line .item .date {
  font-size: 12px;
  width: 55px;
}
.user_property_det .property_steps .steps_content .steps_box .steps_time_line .item .icon {
  width: 22px;
  margin: 0 10px;
}
.user_property_det .property_steps .steps_content .steps_box .steps_time_line .item .cont {
  position: 10px;
}
.user_property_det .property_steps .steps_content .steps_box .steps_time_line .item .cont h6 {
  font-size: 16px;
  color: var(--mainColor);
}
.user_property_det .property_steps .steps_content .steps_box .steps_time_line .item .cont small {
  color: #999;
  font-size: 11px;
}
.user_property_det .property_steps .steps_content .steps_box .steps_time_line .item .cont .imgs {
  position: relative;
  top: 15px;
}
.user_property_det .property_steps .steps_content .steps_box .steps_time_line .item .cont .imgs .img {
  width: 55px;
  height: 55px;
  margin-inline-end: 10px;
  margin-bottom: 10px;
}
.user_property_det .property_steps .steps_content .steps_box .steps_time_line .item .cont .imgs .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* --------------- live_video --------------- */
.live_video .video {
  position: relative;
  padding: 3vw;
  border: 2px solid #171D27;
  height: 100%;
}
.live_video .video::after {
  position: absolute;
  content: "";
  left: -4px;
  top: 35%;
  width: 4px;
  height: 30%;
  background-color: #fff;
  z-index: 2;
}
.live_video .video .img {
  position: relative;
  height: 500px;
}
.live_video .video .img::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  background-image: linear-gradient(to top, #000, transparent);
  opacity: 0.7;
}
.live_video .video .play_btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: #171d27;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  font-size: 18px;
}
.live_video .video .info {
  position: absolute;
  left: 0;
  bottom: 4vw;
  width: 100%;
  z-index: 15;
  text-align: center;
  color: #fff;
  padding: 30px;
}
.live_video .video .info * {
  color: #fff;
}
.live_video .video .info a:hover {
  color: var(--mainColor);
}
.live_video .video .logo {
  position: absolute;
  top: 50px;
  left: 50px;
  z-index: 20;
  height: 50px;
  opacity: 0.7;
}

/* --------------- user_projects_future --------------- */
/* --------------- footer --------------- */
/* --------------- footer --------------- */
/* --------------- footer --------------- */
/* --------------- footer --------------- */
/* ======== */
@media screen and (max-width: 991px) {
  .navbar.position-absolute {
    position: relative !important;
  }
  header .info {
    position: static;
    transform: translateY(0%);
    margin-bottom: 30px;
  }
  header .info h1 {
    font-size: 50px;
  }
  .procces .col-lg-6 {
    margin-top: 0 !important;
  }
  .experience {
    overflow: hidden;
  }
  .experience .col-lg-6 {
    margin-top: 0 !important;
  }
  .experience .cards .item {
    margin-inline-start: 0;
    margin-inline-end: 30px;
  }
  .experience .img {
    margin-top: 100px;
    margin-inline-start: 0;
    height: max-content;
  }
  .projects_places .cards .item {
    margin-top: 70px;
  }
  .projects_places .cards .item .img .cont {
    bottom: 40%;
  }
  .blog .title .title_side {
    display: block;
  }
  .blog .title .title_side .text {
    margin: 30px 0;
  }
  .contact {
    overflow: hidden;
  }
  .project_pg .project {
    padding: 80px 0;
  }
  .project_pg .project .project_sliders {
    margin-top: 30px;
  }
  .project_pg .project .project_sliders .gallery-thumbs .swiper-wrapper .swiper-slide .img {
    padding: 10px;
  }
  .project_pg .projetcs_filter .filter .grid_list_btns {
    display: none;
  }
  .project_pg .projetcs_filter .filter .selects {
    display: block;
    width: 100%;
  }
  .projects_cards .project_card {
    display: block;
  }
  .projects_cards .project_card .imgs_slider {
    width: 100%;
  }
  .projects_cards .project_card .info {
    width: 100%;
  }
  .user_files .files .file_card h6 {
    font-size: 13px;
  }
  .user_files .files .file_card .date {
    position: static;
    transform: translate(0, 0);
    font-size: 11px;
    margin: 0 15px;
    flex-shrink: 0;
  }
  .user_files .files .file_card a {
    flex-shrink: 0;
  }
  .user_process .process_table .table_head {
    display: none;
  }
  .user_process .process_table .table_body .body_row {
    border: 1px solid rgba(153, 153, 153, 0.2) !important;
    border-radius: 15px;
    margin-bottom: 15px;
    padding: 10px;
  }
  .user_process .process_table .table_body .body_row .item {
    padding: 10px 20px;
  }
  .dream .cocen_container {
    width: 100%;
  }
  .dream .cocen_container img {
    height: 300px;
  }
  .user_files .daman_card_body .btns_side .warranty_time {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
  }
  .user_files .proj_tab_content {
      padding: 40px 10px;
  }
  .user_files .daman_card_body .btns_side .btns {
      margin-top: 20px !important;
  }
  
  .user_files .daman_card_body .btns_side .btns .icon_link {
      width: 30px;
        height: 30px;
        font-size: 12px;
  }
  .user_files .daman_card_body .btns_side .btns .down_link {
        padding: 6px 15px;
        font-size: 10px;
  }
  
  .project_det_pg .details_tabs .nav-pills .nav-link {
      font-size: 14px;
  }
  
  .project_pg .project .info .btns {
      width: 100%;
      margin-inline-start: 0;
  }
  
  .btn {
      padding: 12px 20px;
      font-size: 13px;
  }
  
  .user_info .user_info_card {
      margin-bottom: 30px;
  }
  
  .user_process .process_title .select_side {
      display: block;
  }
  
  .user_process .process_title .select_side .select_group {
      margin: 10px 0 !important;
  }
  
  .user_property_det .property_steps .steps_levels .steps .step_item {
      width: 33%;
  }
  
}
/* ======= */
.theme_dark {
  background-color: #262c39;
  color: #fff;
}
.theme_dark .text {
  color: #ccc !important;
}
.theme_dark h1, .theme_dark h2, .theme_dark h3, .theme_dark h4, .theme_dark h5, .theme_dark h6 {
  color: #fff;
}
.theme_dark .btn.btd_btn_dark {
  border-color: #fff;
}
.theme_dark .btn.btd_btn_dark * {
  color: #fff;
}
.theme_dark .butn_arrow .txt {
  background-color: #fff;
  color: #262c39;
}
.theme_dark .light_item {
  display: none;
}
.theme_dark .dark_item {
  display: block;
}
.theme_dark .navbar {
  background-color: #262c39;
}
.theme_dark .navbar .navbar-nav .nav-link {
  color: #fff;
}
.theme_dark .inner_header {
  background-color: #262c39;
}
.theme_dark .inner_header::before {
  background-image: linear-gradient(to top, #262c39, transparent);
}
.theme_dark .bg-white,
.theme_dark .about_vision::before {
  background-color: #262c39 !important;
}
.theme_dark header {
  background-color: #262c39;
}
.theme_dark header * {
  color: #fff;
}
.theme_dark .experience {
  background-color: #262c39;
}
.theme_dark .experience * {
  color: #fff;
}
.theme_dark .experience .cards .item .cont {
  background-color: #171D27;
  background-image: none;
}
.theme_dark .experience .cards .item .cont .icon {
  filter: brightness(10000%);
}
.theme_dark .projects_places {
  background-color: #262c39;
}
.theme_dark .projects_places * {
  color: #fff;
}
.theme_dark .projects_places .cards .item .info h6 {
  color: #fff;
}
.theme_dark .project_steps {
  background-color: #171D27;
}
.theme_dark .project_steps * {
  color: #fff;
}
.theme_dark .project_steps .cards .item .info {
  background-color: #262c39;
}
.theme_dark .blog {
  background-image: none;
}
.theme_dark .blog .post .info * {
  color: #171D27;
}
.theme_dark .contact,
.theme_dark .project_det_pg .project_det_main,
.theme_dark .project_pg .project,
.theme_dark .user_files .proj_head_tabs .proj_pills .nav-link {
  background-color: #262c39;
  color: #fff;
}
.theme_dark .user_files .proj_head_tabs .proj_pills .nav-link .arrow {
  color: #000;
}
.theme_dark .user_files .proj_head_tabs .proj_pills .nav-link.active .arrow {
  color: #fff;
}
.theme_dark .about_vision .vision_card,
.theme_dark .blog_details .share_card .tags .tags_links a,
.theme_dark .contact .contacts .info_card,
.theme_dark .login .contact_info,
.theme_dark .project_det_pg .project_det_main .map_wrapper .map_info,
.theme_dark .project_det_pg .project_det_main .phone_card,
.theme_dark .project_det_pg .details_tabs .tab_full_details .cards .item,
.theme_dark .projects_cards .project_card .info,
.theme_dark .user_files .files .file_card,
.theme_dark .accordion > .accordion-item,
.theme_dark .user_info .user_info_card,
.theme_dark .user_process .process_table .table_head,
.theme_dark .user_property_det .property_main_info .imgs_slider .slider_inf .imgs_num,
.theme_dark .projects_cards .project_card .imgs_slider .slider_inf .imgs_num {
  background-color: #171D27 !important;
  background-image: none;
}
.theme_dark .user_files .proj_head_tabs .proj_pills .nav-link.active {
  background-color: #171D27 !important;
  background-image: none;
  color: #fff;
}
.theme_dark .about_pg .blog {
  background-color: #171D27 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1333333333);
}
.theme_dark .faq .accordion > .accordion-item,
.theme_dark .purchases_pg .purchases_cards .number_item,
.theme_dark .purchases_pg .purchases_cards .project_progress,
.theme_dark .user_files .proj_head_tabs,
.theme_dark .projects_cards .project_card .info .soon_icon {
  background-color: rgba(255, 255, 255, 0.0666666667);
}
.theme_dark .faq .accordion > .accordion-item .accordion-button,
.theme_dark .login .contact_info .float_info ul li,
.theme_dark .form-control,
.theme_dark .details_tabs .nav-pills .nav-link,
.theme_dark .projetcs_filter .filter .nav-pills .nav-link,
.theme_dark .form .form-group .float_label,
.theme_dark .user_files .proj_head_tabs .proj_pills .nav-link.active,
.theme_dark .accordion > .accordion-item .accordion-button {
  color: #fff;
}
.theme_dark .login .contact_info .img,
.theme_dark .project_det_pg .details_tabs .tab_full_details .cards .item::before,
.theme_dark .purchases_pg .purchases_cards .number_item .back_txt,
.theme_dark .purchases_pg .purchases_cards .project_progress .back_txt {
  opacity: 0.05;
}
.theme_dark .project_det_pg .details_tabs .tab_full_details .cards .item .icon img {
  filter: invert(95%) sepia(99%) saturate(3%) hue-rotate(213deg) brightness(103%) contrast(100%);
}
.theme_dark .project_pg .projetcs_filter .filter .selects .select_group .form-select,
.theme_dark .user_files .daman_card_body .btns_side .btns .icon_link,
.theme_dark .user_files .daman_card_body .btns_side .btns .down_link {
  background-color: rgba(255, 255, 255, 0.0666666667);
  color: #fff;
}
.theme_dark .user_files .proj_tab_content {
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.0666666667), transparent);
}

.theme_dark .login .contact_info .float_info .text .logo {
    filter: invert(100%) sepia(100%) saturate(1%) hue-rotate(87deg) brightness(1000%) contrast(100%);
}

.theme_dark .navbar .nav_btns .form-switch .icon .fa-sun {
  opacity: 0;
  transform: translateY(-20px);
}
.theme_dark .navbar .nav_btns .form-switch .icon .fa-moon {
  opacity: 1;
  transform: translateY(0);
  /*color: #fff;*/
}



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;
}/*# sourceMappingURL=style.css.map */


/*------- new style ------*/
.modal .modal-content {
  border: 0;
  border-radius: 0;
  outline: 1px solid var(--mainColor);
  outline-offset: -10px;
  padding: 40px;
}
.modal .modal-content .btn-close {
  position: absolute;
  top: 30px;
  left: 30px;
}

.projects_cards .project_card .info .card_title {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 18px;
}

.pointer_none {
    pointer-events: none;
}

select.pointer_none {
    pointer-events: none;
    background-image: none;
}

.theme_dark .navbar .nav_btns .form-switch .form-check-input {
    background-color: var(--mainColor);
}


.theme_dark .navbar .nav_btns .form-switch .icon .fa-moon {
    color: #fff;
}

.navbar .nav_btns .form-switch .icon .fa-sun {
    color: var(--mainColor);
}

.navbar .nav_btns .form-switch .form-check-input {
    background-color: #fff;
}

a:hover {
    /*color: #4880e8 !important;*/
    text-decoration: underline !important;
}

