:root {
  --primary: #2A3891;
  --secondary: #333;
  --filterPrimary: invert(19%) sepia(57%) saturate(1909%) hue-rotate(212deg) brightness(97%) contrast(95%);
  --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%);
}

@font-face {
  font-family: 'rb_light';
  src: url(../fonts/rb/light.TTF);
}

@font-face {
  font-family: 'rb_regular';
  src: url(../fonts/rb/regular.TTF);
}

@font-face {
  font-family: 'rb_bold';
  src: url(../fonts/rb/bold.TTF);
}

* {
  margin: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  font-family: 'rb_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;
}

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

div::-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 {
  -webkit-filter: var(--filterPrimary);
          filter: var(--filterPrimary);
}

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

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

p {
  font-size: 15px;
  color: #555;
  line-height: 1.7rem;
}

a {
  color: #000;
  -webkit-transition: all .3s ease-in-out;
  transition: all .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 {
  list-style-type: none;
  padding: 0;
}

button {
  border: none;
  padding: 0;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  background-color: transparent;
}

button:focus {
  border: none;
  -webkit-box-shadow: transparent;
          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 {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

form .form-group {
  position: relative;
}

form .form-control {
  font-size: 14px;
}

form .form-control:focus {
  outline: none !important;
  -webkit-box-shadow: 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);
  -webkit-box-shadow: none;
          box-shadow: none;
}

form textarea {
  resize: none;
}

form .form-check-input {
  height: 1em !important;
}
input[type=email], input[type=number] {
    direction: inherit !important;
}
.progress-wrap {
  position: fixed;
  inset-inline-end: 20px;
  bottom: 20px;
  height: 55px;
  width: 55px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  -webkit-box-shadow: inset 0 0 0 2px rgba(51, 51, 51, 0.2);
          box-shadow: inset 0 0 0 2px rgba(51, 51, 51, 0.2);
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  -webkit-transform: translateY(130%);
          transform: translateY(130%);
  z-index: 99;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.progress-wrap::after {
  background: url(../images/icons/top-arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  content: '';
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  color: var(--primary);
  left: 13px;
  top: 13px;
  height: 30px;
  width: 30px;
  display: block;
  -webkit-filter: var(--filterPrimary);
          filter: var(--filterPrimary);
}

.progress-wrap svg path {
  fill: #f8f8f8;
}

.progress-wrap svg.progress-circle path {
  stroke: var(--primary);
  stroke-width: 4;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.in-flex {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.inFlex {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

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

.sec-img {
  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;
}

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

.position-unset {
  position: unset;
}

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

.trans_3 {
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

/**********************************************
   Start Animations
**********************************************/
@-webkit-keyframes floatingY {
  0% {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
  }
  100% {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
}
@keyframes floatingY {
  0% {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
  }
  100% {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
}

@-webkit-keyframes floatingX {
  0% {
    -webkit-transform: translateX(2px);
            transform: translateX(2px);
  }
  100% {
    -webkit-transform: translateX(-2px);
            transform: translateX(-2px);
  }
}

@keyframes floatingX {
  0% {
    -webkit-transform: translateX(2px);
            transform: translateX(2px);
  }
  100% {
    -webkit-transform: translateX(-2px);
            transform: translateX(-2px);
  }
}

.slide_ltr {
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
  -webkit-transition-delay: .1s;
          transition-delay: .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 {
  -webkit-transform: scale(1);
          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 {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.slide_rtl {
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
  -webkit-transition-delay: .1s;
          transition-delay: .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 {
  -webkit-transform: scale(1);
          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 {
  -webkit-transform: scale(1);
          transform: scale(1);
}

@-webkit-keyframes puff-in {
  0% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    -webkit-filter: blur(4px);
            filter: blur(4px);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}

@keyframes puff-in {
  0% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    -webkit-filter: blur(4px);
            filter: blur(4px);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}

.puff-in {
  -webkit-animation: puff-in 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) both;
          animation: puff-in 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) both;
}

@-webkit-keyframes text-focus-in {
  0% {
    -webkit-filter: blur(10px);
            filter: blur(10px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}

@keyframes text-focus-in {
  0% {
    -webkit-filter: blur(10px);
            filter: blur(10px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}

.text-focus-in {
  -webkit-animation: text-focus-in 0.7s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
          animation: text-focus-in 0.7s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}

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

.swiper-container .swiper-pagination {
  bottom: 0;
}

.swiper-container .swiper-pagination .swiper-pagination-bullet {
  width: 25px;
  height: 2px;
  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: 0%;
  background-image: unset;
  background-color: #f5f5f5;
  -webkit-transition: all .3s linear;
  transition: all .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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  font-size: 15px;
  color: #888;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.swiper-container .swiper-button-next:hover,
.swiper-container .swiper-button-prev:hover {
  background-color: var(--primary);
}

.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: '\f178';
}

.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: '\f177';
}

.butn {
  position: relative;
  padding: .7rem 1.7rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  font-size: 14px;
  border: 1px solid transparent;
  border-radius: 0;
}

.butn i {
  -webkit-margin-end: 7px;
          margin-inline-end: 7px;
}

.butn.sm_butn {
  padding: 0;
  width: 50px;
  height: 50px;
}

.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: var(--primary);
}

.butn.white_border_butn {
  background-color: #fff;
  border: 1px solid #D6D3D3;
}

.butn:hover {
  background-color: #172057;
  border: 1px solid #172057;
  color: #fff !important;
}

.butn:hover .icon {
  -webkit-filter: var(--filterWhite);
          filter: var(--filterWhite);
}

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

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

.border_b {
  position: relative;
}

.border_b::after {
  content: '';
  width: 35px;
  height: 3px;
  background-color: var(--primary);
  display: block;
  margin: 15px 0;
}

.modal .modal-content {
  padding: 40px 2vw;
}

.modal .modal-content .butn_close {
  width: 15px;
  height: 15px;
  background-color: #f7f7f7;
  color: var(--primary);
  position: absolute;
  left: 10px;
  top: 10px;
  border-radius: 5px;
}

.projectModal .sec-img {
  height: 350px !important;
}

.projectModal .card-body {
  padding: 2rem 1rem;
}

.projectModal .card-body .p {
  font-size: 11px !important;
}

.projectModal .card-body .data_items {
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.projectModal .card-body .data_items .data {
  font-size: 13px;
  margin-bottom: 10px;
}

.projectModal .card-body .data_items .data i {
  color: var(--primary);
  -webkit-margin-end: 5px;
          margin-inline-end: 5px;
}

/**********************************************
   Start Edit Navbar & Footer
**********************************************/
.navs-container .top_nav {
    background: var(--primary);
    padding: 10px 0;
}

.navs-container .top_nav .logos_box .nav_logo {
    width: 70px;
    height: 40px;
    object-fit: contain;
    margin-inline-end: 10px;
}
.navs-container .top_nav .mail_link {
    font-size: 15px;
    border-radius: 50%;
    background: #0f1b685e;
}
.navs-container .top_nav .mail_link:hover {
    color: #fff !important;
}

.navs-container .navbar {
  position: relative;
  padding: 1rem;
}

.navs-container .navbar .logo {
  width: 260px;
  -o-object-fit: contain;
     object-fit: contain;
}

.navs-container .navbar .nav-link {
  margin: 5px 7px;
  color: #2F2F2F;
  font-size: 15px;
}

.navs-container .navbar .nav-link.active {
  color: var(--primary);
  font-weight: bold;
}

.navs-container .navbar .lang_butn {
  font-size: 15px;
  color: #2F2F2F;
}

.navs-container .navbar .lang_butn .langIcon {
  width: 29px;
  height: 29px;
  -o-object-fit: cover;
     object-fit: cover;
}

.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 {
  -webkit-box-shadow: 0px 0px 0px grey;
          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;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.navs-container .navbar .navbar-toggler.active .navbar-toggler-icon::after {
  top: 0px !important;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.navs-container .navbar .navbar-toggler .navbar-toggler-icon {
  width: 25px;
  height: 2px;
  background: var(--primary);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.5s;
  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);
  -webkit-transition: 0.5s;
  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;
}

.footer {
  padding: 70px 0 40px 0;
  background-color: #0A0E35;
}

.footer .about_foot .logo {
  height: 90px;
  -o-object-fit: contain;
     object-fit: contain;
}

.footer .about_foot .det {
  color: #fff;
  font-size: 12px;
}

.footer .contact_data {
  margin-bottom: 25px;
}

.footer .contact_data .label {
  color: #eee;
  font-family: 'rb_light';
}

.footer .contact_data .label i {
  color: #fff;
  -webkit-margin-end: 7px;
          margin-inline-end: 7px;
}

.footer .contact_data .data {
  color: #fff;
}

.footer .contact_data .social_links a {
  color: #fff;
  -webkit-margin-end: 15px;
          margin-inline-end: 15px;
}

.footer .links a {
  color: #f5f5f5;
  -webkit-margin-end: 3vw;
          margin-inline-end: 3vw;
  font-size: 15px;
  margin-bottom: 25px;
}

.footer .links a:hover {
  color: #fff !important;
}

.footer .copyright_p {
  color: #9D9D9D;
  font-size: 14px;
}

.footer .copyright_p .alyom_logo {
  width: 60px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 10px;
}

/**********************************************
    Start Edit Home Page 
**********************************************/
.header .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 85vh;
}
.header .item .text_box  {
    background: linear-gradient(to left, #dadefa80, transparent);
    padding: 2vw;
    backdrop-filter: blur(2px);
}
.header .item .text_box .title {
  font-size: 50px;
  line-height: 1.5;
  padding-bottom: 22px;
}

.header .item .text_box .butn {
  width: 140px;
}

.header .swiper-button-next,
.header .swiper-button-prev {
  background-color: #fff;
}

.header .swiper-slide-active .item .text_box .title {
  -webkit-animation: fadeInUp 1s both;
          animation: fadeInUp 1s both;
}

.header .swiper-slide-active .item .text_box .butn {
  -webkit-animation: zoomIn 1s both;
          animation: zoomIn 1s both;
}

.header .swiper-slide-active .item .text_box .bg {
  -webkit-animation: text-focus-in 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
          animation: text-focus-in 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}

.about_sec .img_box {
  position: relative;
}

.about_sec .img_box img {
  height: 500px;
  -o-object-fit: contain;
     object-fit: contain;
}

.about_sec .img_box img.img1 {
  margin-top: 70px;
}

.about_sec .img_box::before {
    content: '';
    width: 300px;
    height: 300px;
    border: 11px solid var(--primary);
    z-index: -1;
    position: absolute;
    bottom: -30px;
    right: 12%;
    border-top: none;
    border-left: none;
}

.about_sec .text_box .p {
  color: #2F2F2F;
  line-height: 2;
}

.about_sec .text_box .butn {
  width: 140px;
}

.about_sec .about_card {
  position: relative;
  padding: 45px;
  height: 100%;
}

.about_sec .about_card .title {
  font-size: 22px;
  margin-bottom: 15px;
}

.about_sec .about_card .det {
  font-size: 13px;
}

.about_sec .about_card::before {
  content: '';
  background: url(../images/pattern-1.png) no-repeat center;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: .2;
}

.about_sec .col-lg-3:first-child .about_card {
  background-color: var(--primary);
}

.about_sec .col-lg-3:nth-child(2) .about_card {
  background-color: #1E1E1E;
}

.about_sec .col-lg-3:nth-child(3) .about_card {
  background-color: #f8f8f8;
}
.about_sec .col-lg-3:nth-child(4) .about_card {
  background-color: #1b203c;
}

.estates_sec .nav-link {
  background-color: #f9f9f9;
  border-radius: 0px;
  color: #888;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
  font-size: 15px;
  padding: 0.75rem 1.5rem;
}

.estates_sec .nav-link.active {
  background-color: var(--primary);
}

.estates_sec .esate_card {
  position: relative;
  overflow: hidden;
  border: 1px solid #eee;
}

.estates_sec .esate_card .sec-img {
  height: 490px;
  -webkit-transition: all .4s linear;
  transition: all .4s linear;
}

.estates_sec .esate_card .num {
  background-color: #fff;
  -webkit-clip-path: polygon(100% 0, 0 0, 100% 100%);
          clip-path: polygon(100% 0, 0 0, 100% 100%);
  width: 75px;
  height: 75px;
  position: absolute;
  top: 0;
  right: -1px;
  color: var(--primary);
  font-size: 20px;
  font-weight: bold;
  z-index: 2;
  padding: 10px 15px 0 0;
}

.estates_sec .esate_card .txt_box {
  position: absolute;
  width: 100%;
  top: 100px;
  z-index: 3;
  padding: 0 20px;
}

.estates_sec .esate_card .txt_box .border_b::after {
  background-color: #fff;
}

.estates_sec .esate_card .logo_box {
  width: 150px;
  height: 150px;
  background-color: #fff;
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 100%);
          clip-path: polygon(0 0, 0 100%, 100% 100%);
  position: absolute;
  bottom: -1px;
  left: 0;
  padding: 10px 15px 0 0;
  z-index: 2;
}

.estates_sec .esate_card .logo_box .estateLogo {
  width: 70px;
  height: 70px;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  bottom: 8px;
  left: 11px;
}

.estates_sec .esate_card::before {
  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);
  background-color: rgba(0, 3, 34, 0.45);
  z-index: 1;
}

.estates_sec .esate_card:hover .sec-img {
  -webkit-transform: scale(1.1) rotate(3deg);
          transform: scale(1.1) rotate(3deg);
}

.estates_sec .pattern {
  position: absolute;
  left: 0;
  bottom: 0;
  width: auto;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: .06;
  /*-webkit-filter: grayscale(1);*/
  /*        filter: grayscale(1);*/
}

.projects_sec .item {
  opacity: .3;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  position: relative;
  border: 1px solid #eee;
  overflow: hidden;
}

.projects_sec .item .sec-img {
  height: 500px;
}

.projects_sec .item .text_box {
  background-color: #fff;
  padding: 45px 45px 30px 45px;
  position: absolute;
  bottom: 0;
  right: 0;
  -webkit-transition: all .5s linear;
  transition: all .5s linear;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}

.projects_sec .item .text_box .date {
  color: #A0A0A0;
  font-size: 13px;
}

.projects_sec .swiper-slide-active .item {
  opacity: 1;
}

.projects_sec .swiper-slide-active .item .text_box {
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}

.statics_sec .inner {
  padding: 7vw 15vw;
  background-color: #F5F5F5;
  position: relative;
}

.statics_sec .inner .txt_num {
  text-align: center;
  font-size: calc(1vw + 30px);
}

.statics_sec .inner .txt_num .num {
  font-size: calc(5vw + 30px);
  display: inline-block;
}

.statics_sec .inner .txt_num b {
  font-size: calc(3vw + 30px);
}

.statics_sec .inner .det {
  font-weight: bold;
  color: #2F2F2F;
  font-size: 25px;
  line-height: 2;
}

.statics_sec .inner::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);
  width: calc(100% - 5vw);
  height: calc(100% - 5vw);
  top: 50%;
  left: 50%;
  right: unset;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border: 1px solid var(--primary);
  background-image: -webkit-gradient(linear, right top, left top, from(#DEDEDE), to(#F5F5F5));
  background-image: linear-gradient(to left, #DEDEDE, #F5F5F5);
}

.statics_sec .about_card {
  background-color: var(--primary);
  padding: 70px 10vw 100px 10vw;
  position: relative;
  text-align: center;
  -webkit-clip-path: polygon(0 0, 95% 0, 100% 15%, 100% 100%, 5% 100%, 0 85%);
          clip-path: polygon(0 0, 95% 0, 100% 15%, 100% 100%, 5% 100%, 0 85%);
  margin-top: 80px;
  min-height: 400px;
}
.statics_sec .about_card .bg {
    object-position: top;
}
.statics_sec .about_card .txt_num {
  text-align: center;
  font-size: calc(1vw + 30px);
}

.statics_sec .about_card .txt_num .num {
  font-size: calc(5vw + 30px);
  display: inline-block;
}

.statics_sec .about_card .txt_num b {
  font-size: calc(3vw + 30px);
}

.statics_sec .about_card .det {
  font-weight: bold;
  color: #2F2F2F;
  font-size: 25px;
  line-height: 2;
}

.statics_sec .about_card::before {
  background: url(../images/pattern-4.svg);
  background-position: top;
}

.contact_sec .form_box {
  padding: 3vw;
  background-color: #fff;
  position: relative;
}

.contact_sec .form_box .form-group {
  margin-bottom: 1rem;
}

.contact_sec .form_box .form-group .form-control {
  border: none !important;
  border-bottom: 1px solid #eee !important;
  border-radius: 0;
  -webkit-padding-start: 35px;
          padding-inline-start: 35px;
}

.contact_sec .form_box .form-group .form-control:focus {
  border: none !important;
  border-bottom: 1px solid var(--primary) !important;
}

.contact_sec .form_box .form-group textarea.form-control {
  padding-top: 18px;
}

.contact_sec .form_box .form-group .icon {
  position: absolute;
  top: 20px;
  inset-inline-start: 10px;
  color: var(--primary);
}

.contact_sec .form_box .butn {
  width: 140px;
}

.contact_sec .map_box {
  margin-top: -211px;
}

.contact_sec .map_box iframe {
  margin-bottom: -7px;
}

.contact_sec .bg {
  height: 550px;
}

/**********************************************
    Start Edit pg-header
**********************************************/
.pg_header {
  padding: 45px 0;
}
.pg_header .bg {
    object-fit: contain;
    object-position: left;
    opacity: .5;
}
.pg_header .pg_title {
  font-size: 32px;
  font-family: 'rb_bold';
}

.pg_header .bread .item {
  position: relative;
}

.pg_header .bread .item::after {
  content: '';
  width: 30px;
  height: 25px;
  background: url(../images/icon.png) no-repeat center;
  background-size: contain;
  display: inline-block;
  margin: 0 15px;
  position: relative;
  top: 8px;
}

.pg_header .bread .item.active::after {
  display: none;
}

.pg_header::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);
  background-color: transparent;
  background-image: -webkit-gradient(linear, right top, left top, from(#efefef), to(transparent));
  background-image: linear-gradient(to left, #efefef, transparent);
  z-index: 1;
}

/**********************************************
    Start Edit team_pg 
**********************************************/
.team_pg .founder_card {
  position: relative;
  padding: 25px 25px 0 25px;
  margin-bottom: 25px;
}

.team_pg .founder_card .img_box {
  width: 90%;
  display: block;
  margin: auto;
  border-radius: 15px;
  overflow: hidden;
  height: 530px;
  position: relative;
  z-index: 6;
}

.team_pg .founder_card .img_box .social_links {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 10px;
  background-color: #68F8C1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.team_pg .founder_card .img_box .social_links a {
  margin: 0 10px;
  color: #fff;
  font-size: 20px;
}

.team_pg .founder_card .card-body {
  position: relative;
  z-index: 6;
}

.team_pg .founder_card .card-body .job {
  color: #767676;
}

.team_pg .founder_card .card-body .name {
  font-weight: bold;
}

.team_pg .founder_card .card-body .job,
.team_pg .founder_card .card-body .name {
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.team_pg .founder_card::before {
  content: '';
  background: url(../images/founder_border.svg) no-repeat top;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  opacity: .2;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.team_pg .founder_card:hover .social_links {
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}

.team_pg .founder_card:hover::before {
  opacity: 1;
}

.team_pg .founder_card:hover::after {
  background-color: var(--primary);
}


.team_pg .founder_card2::before  {
     background-size: contain;
}
.team_pg .founder_card2 .img_box {
    width: 100%;
    height: 450px;
}
.team_pg .founder_card2 .card-body {
    background: #fff;
    margin-top: -70px;
    width: 95%;
    margin: auto;
    margin-top: -70px;
    border-radius: 25px;
    padding: 1.5rem;
    box-shadow: 3px 6px 10px 0 #0001;
}



.team_pg .team_card {
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  border: 1px solid #eee;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.team_pg .team_card .img_box {
  height: 370px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  overflow: hidden;
  position: relative;
}

.team_pg .team_card .img_box .social_links {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0px;
}

.team_pg .team_card .img_box .social_links a {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--primary);
  color: #fff;
  border-radius: 5px 5px 0 0;
  z-index: 9;
  -webkit-box-shadow: -3px -6px 10px 0 #0001;
          box-shadow: -3px -6px 10px 0 #0001;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  margin: 0 5px;
}

.team_pg .team_card .img_box .social_links a:nth-child(2) {
  -webkit-transition-delay: .1s;
          transition-delay: .1s;
}

.team_pg .team_card .img_box .social_links a:nth-child(3) {
  -webkit-transition-delay: .2s;
          transition-delay: .2s;
}

.team_pg .team_card .img_box .social_links a:nth-child(4) {
  -webkit-transition-delay: .3s;
          transition-delay: .3s;
}

.team_pg .team_card .img_box .social_links a:nth-child(5) {
  -webkit-transition-delay: .4s;
          transition-delay: .4s;
}

.team_pg .team_card .img_box .social_links a:hover {
  background-color: #fff;
}

.team_pg .team_card .img_box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#6842db), to(rgba(255, 255, 255, 0)));
  background-image: linear-gradient(0deg, #6842db 0%, rgba(255, 255, 255, 0) 100%);
  background-position: center bottom;
  -webkit-transition-delay: .1s;
          transition-delay: .1s;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
  -webkit-transition-duration: .5s;
          transition-duration: .5s;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.team_pg .team_card .card-body {
  padding: 1.5rem;
  text-align: center;
  background-image: -webkit-gradient(linear, left bottom, left top, from(white), to(#f9f9f9));
  background-image: linear-gradient(0deg, white 0%, #f9f9f9 100%);
}

.team_pg .team_card .card-body .job {
  font-size: 13px;
}

.team_pg .team_card .card-body .name {
  font-size: 17px;
}

.team_pg .team_card:hover {
  -webkit-box-shadow: 3px 6px 10px 0 #0001;
          box-shadow: 3px 6px 10px 0 #0001;
  border-radius: 30px;
}

.team_pg .team_card:hover .img_box {
  border-radius: 30px 30px 0 0;
}

.team_pg .team_card:hover .img_box::before {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}

.team_pg .team_card:hover .img_box .social_links a {
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}

.team_pg .team_card2 {
  position: relative;
  /*padding: 25px 25px 0 25px;*/
  margin-bottom: 25px;
}

.team_pg .team_card2 .img_box {
  width: 100%;
  display: block;
  margin-bottom: 15px;
  border-radius: 15px;
  overflow: hidden;
  height: 330px;
  position: relative;
  z-index: 6;
  background-color: #EEEEF4;
  border: 1px solid #9993;
}

.team_pg .team_card2 .img_box .social_links {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 10px;
  background-color: #68F8C1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  display: none !important;
}

.team_pg .team_card2 .img_box .social_links a {
  margin: 0 10px;
  color: #fff;
  font-size: 20px;
}

.team_pg .team_card2 .card-body {
  text-align: center;
  position: relative;
  z-index: 6;
}

.team_pg .team_card2 .card-body .job {
  color: #767676;
  font-size: 13px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.team_pg .team_card2 .card-body .name {
  font-weight: bold;
  font-size: 20px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

/*.team_pg .team_card2::before {*/
/*  content: '';*/
/*  background: url(../images/founder_border.svg) no-repeat top;*/
/*  background-size: cover;*/
/*  position: absolute;*/
/*  top: 0;*/
/*  left: 0;*/
/*  right: 0;*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  opacity: .2;*/
/*  -webkit-transition: all .3s linear;*/
/*  transition: all .3s linear;*/
/*}*/

/*.team_pg .team_card2::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);*/
/*  background-color: #EDECEC;*/
/*  height: 210px;*/
/*  top: unset;*/
/*  border-radius: 15px;*/
/*  -webkit-transition: all .3s linear;*/
/*  transition: all .3s linear;*/
/*}*/

.team_pg .team_card2:hover .social_links {
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}

/*.team_pg .team_card2:hover .job,*/
/*.team_pg .team_card2:hover .name {*/
/*  color: #fff;*/
/*}*/

/*.team_pg .team_card2:hover::before {*/
/*  opacity: 1;*/
/*}*/

/*.team_pg .team_card2:hover::after {*/
/*  background-color: var(--primary);*/
/*}*/

/**********************************************
    Start Edit blog_pg 
**********************************************/
.blog_pg .search_box .form-group .form-control {
  height: 65px !important;
  border-radius: 15px;
  font-size: 17px;
}

.blog_pg .search_box .form-group .search_butn {
  color: var(--primary);
  background-color: #DCDCDC;
  position: absolute;
  left: 0px;
  top: 0px;
  font-size: 20px;
  width: 65px;
  height: 65px;
  border-radius: 15px 0 0 15px;
  border: 1px solid transparent;
}

.blog_pg .blog_card {
  border: 1px solid #eee;
  position: relative;
  margin-bottom: 30px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.blog_pg .blog_card .img_box {
  position: relative;
}

.blog_pg .blog_card .img_box .sec-img {
  height: 300px;
}

.blog_pg .blog_card .img_box .date {
  position: absolute;
  bottom: 10px;
  right: 10px;
  padding: 5px 0;
  border-radius: 50px;
  width: 40px;
  height: 65px;
  background-color: #fff;
  text-align: center;
  font-size: 9px;
  font-weight: bold;
}

.blog_pg .blog_card .img_box .date .num {
  width: 30px;
  height: 30px;
  background-color: var(--primary);
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: bold;
  border-radius: 50%;
  margin: 0 auto  5px auto;
}

.blog_pg .blog_card .card-body {
  padding: 1.5rem;
}

.blog_pg .blog_card .card-body .title {
  font-family: 'rb_bold';
}

.blog_pg .blog_card .card-body .p {
  color: #737373;
  font-size: 14px;
  margin-bottom: 0;
      height: 55px;
    overflow: hidden;
}

.blog_pg .blog_card .more_butn {
  padding: 1rem 1.5rem;
  border-top: 1px solid #eee;
  font-weight: bold;
}

.blog_pg .blog_card .more_butn:hover {
  background-color: var(--primary);
  color: #fff !important;
}

.blog_pg .blog_card:hover {
  -webkit-box-shadow: 3px 6px 10px 0 #0001;
          box-shadow: 3px 6px 10px 0 #0001;
}

/**********************************************
    Start Edit  contact_pg
**********************************************/
.contact_pg .cards_row {
  position: relative;
}
.contact_pg .cards_row .contact_card::before {
    content: '';
    background: url(../images/pattern-1+.png) no-repeat center;
    background-size: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: .09;
}
.contact_pg .cards_row .pattern {
  position: absolute;
  left: -50px;
  top: -50px;
  z-index: -1;
  width: 23%;
  -o-object-fit: contain;
     object-fit: contain;
}

.contact_pg .cards_row .shape {
  position: absolute;
  bottom: -7px;
  left: -25px;
  width: 35px;
  -o-object-fit: contain;
     object-fit: contain;
}

.contact_pg .cards_row .contact_card {
  position: relative;
  padding: 45px;
  text-align: center;
  background-color: #F8F8F8;
  margin-bottom: 25px;
  border: 1px solid transparent;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.contact_pg .cards_row .contact_card .icon {
  font-size: 50px;
  margin-bottom: 13px;
  color: var(--primary);
      position: relative;
    z-index: 5;
}

.contact_pg .cards_row .contact_card .label {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 13px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
      position: relative;
    z-index: 5;
}

.contact_pg .cards_row .contact_card .data {
  font-size: 18px;
  color: #777;
    position: relative;
    z-index: 5;
}

.contact_pg .cards_row .contact_card:hover {
  border-color: var(--primary);
}

.contact_pg .cards_row .contact_card:hover .label {
  color: var(--primary);
}

.contact_pg .form_box {
  -webkit-box-shadow: 3px 6px 15px 0 #0001;
          box-shadow: 3px 6px 15px 0 #0001;
  margin-top: -50px;
  background-color: #f9f9f9;
}

.contact_pg .map_box {
  margin-top: 0px;
}

/**********************************************
    Start Edit  blog_det
**********************************************/
.blog_det .search_box .form-group .form-control {
  background-color: var(--primary);
  color: #fff;
  height: 70px !important;
  border-radius: 0;
  font-size: 17px;
}

.blog_det .search_box .form-group .form-control::-webkit-input-placeholder {
  color: #f8f8f8;
}

.blog_det .search_box .form-group .form-control:-ms-input-placeholder {
  color: #f8f8f8;
}

.blog_det .search_box .form-group .form-control::-ms-input-placeholder {
  color: #f8f8f8;
}

.blog_det .search_box .form-group .form-control::placeholder {
  color: #f8f8f8;
}

.blog_det .search_box .form-group .search_butn {
  color: #fff;
  position: absolute;
  left: 15px;
  top: 20px;
  font-size: 20px;
}

.blog_det .related_box {
  padding: 35px;
  background-color: #f8f8f8;
}

.blog_det .related_box .item {
  margin-bottom: 25px;
}

.blog_det .related_box .item .sm_img {
  width: 100px;
  height: 85px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-margin-end: 15px;
          margin-inline-end: 15px;
}

.blog_det .related_box .item .txt {
  width: calc(100% - 115px);
}

.blog_det .related_box .item .txt .date {
  font-size: 12px;
  color: #777;
}

.blog_det .related_box .item .txt .date i {
  color: #5BD9CC;
  -webkit-margin-end: 5px;
          margin-inline-end: 5px;
}

.blog_det .related_box .item .txt .title {
  font-size: 16px;
  height: 40px;
  overflow: hidden;
}

.blog_det .tags_box {
  padding: 35px;
  background-color: #f8f8f8;
}

.blog_det .tags_box .item {
  padding: 0.9rem 2rem;
  background-color: #fff;
  margin: 5px 0;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  font-size: 15px;
  font-weight: bold;
  color: var(--primary);
  display: inline-block;
}

.blog_det .blog_box {
  border: 1px solid #eee;
}

.blog_det .blog_box .img_box {
  position: relative;
  height: 400px;
}

.blog_det .blog_box .img_box .date {
  position: absolute;
  left: 0;
  top: -25px;
  background-color: var(--primary);
  color: #fff;
  font-weight: bold;
  text-align: center;
  width: 95px;
  height: 115px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 25px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: .5rem;
}

.blog_det .blog_box .img_box .date .month {
  font-size: 20px;
}

.blog_det .blog_box .img_box .date::before {
  content: '';
  width: 15px;
  height: 25px;
  background-color: var(--primary);
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 100%);
          clip-path: polygon(0 0, 0% 100%, 100% 100%);
  position: absolute;
  top: 0;
  right: -15px;
}

.blog_det .blog_box .card-body {
  padding: 1.5rem;
}

.blog_det .blog_box .card-body .p {
  color: #505050;
  font-size: 15px;
  margin-bottom: 0;
  line-height: 2;
}

.blog_det .blog_box .blog_row {
  margin-top: 20px;
  padding: 0 2rem;
  padding-top: 35px;
  margin-bottom: 35px;
  border-top: 1px solid #eee;
}

.blog_det .blog_box .blog_row .tags .item {
  padding: 0.5rem 1.5rem;
  background-color: var(--primary);
  margin: 5px 0;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  font-size: 13px;
  font-weight: bold;
  color: #fff;
  display: inline-block;
}

.blog_det .blog_box .blog_row .social_links {
  background-color: #f8f8f8;
  padding: .5rem 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.blog_det .blog_box .blog_row .social_links a {
  width: 30px;
  height: 30px;
  background-color: #fff;
  -webkit-box-shadow: 3px 6px 10px 0 #0001;
          box-shadow: 3px 6px 10px 0 #0001;
  border-radius: 50%;
  margin: 0 5px;
  color: #666;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.blog_det .blog_box .blog_sm_card {
  background-color: #f8f8f8;
  padding: 35px 30px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 25px;
}

.blog_det .blog_box .blog_sm_card .img {
  width: 100px;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  -webkit-margin-end: 15px;
          margin-inline-end: 15px;
}

.blog_det .blog_box .blog_sm_card .title {
  width: calc(100% - 115px);
  margin-bottom: 0;
  line-height: 1.5;
  font-size: 17px;
}

.share_box {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 5;
}

.share_box .share_butn {
  width: 45px;
  height: 45px;
  background-color: #fff;
  color: var(--primary);
  border-radius: 25px;
  font-weight: bold;
  font-size: 18px;
  border: 1px solid var(--primary);
}

.share_box .share_links {
  position: absolute;
  bottom: -50px;
  inset-inline-start: 0;
  visibility: hidden;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.share_box .share_links.active a {
  -webkit-transform: scaleX(1) translateY(0px);
          transform: scaleX(1) translateY(0px);
  visibility: visible;
  opacity: 1;
}

.share_box .share_links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin: 0 5px;
  color: var(--primary);
  background-color: #f6f6f6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  opacity: 0;
  -webkit-box-shadow: 3px 6px 10px 0 #0001;
          box-shadow: 3px 6px 10px 0 #0001;
  -webkit-transform: scaleX(0) translateY(-50px);
          transform: scaleX(0) translateY(-50px);
  -webkit-transform-origin: right center;
          transform-origin: right center;
  -webkit-perspective: 1000px;
          perspective: 1000px;
  transition: all .3s linear;
}

.share_box .share_links a:nth-child(2) {
  -webkit-transition-delay: .1s;
          transition-delay: .1s;
}

.share_box .share_links a:nth-child(3) {
  -webkit-transition-delay: .2s;
          transition-delay: .2s;
}

.share_box .share_links a:nth-child(4) {
  -webkit-transition-delay: .3s;
          transition-delay: .3s;
}

.share_box .share_links a:nth-child(5) {
  -webkit-transition-delay: .4s;
          transition-delay: .4s;
}

.share_box .share_links a:hover {
  background-color: var(--primary);
  color: #fff !important;
}

/**********************************************
    Start Edit jobs_pg
**********************************************/
.jobs_pg .search_box .form-group .form-control {
  height: 65px !important;
  border-radius: 15px;
  font-size: 17px;
}

.jobs_pg .search_box .form-group .search_butn {
  color: var(--primary);
  background-color: #DCDCDC;
  position: absolute;
  left: 0px;
  top: 0px;
  font-size: 20px;
  width: 65px;
  height: 65px;
  border-radius: 15px 0 0 15px;
  border: 1px solid transparent;
}

.jobs_pg .job_card {
  position: relative;
  margin: 15px 0 20px 0;
  border: 1px solid #eee;
  padding: 45px 0  45px 0;
  text-align: center;
}

.jobs_pg .job_card .title,
.jobs_pg .job_card a {
  font-size: 25px;
}

.jobs_pg .job_card .date {
  position: absolute;
  left: 0;
  top: -15px;
  background-color: var(--primary);
  color: #fff;
  font-weight: bold;
  text-align: center;
  width: 80px;
  height: 110px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 25px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: .5rem;
}

.jobs_pg .job_card .date .month {
  font-size: 20px;
}

.jobs_pg .job_card .date::before {
  content: '';
  width: 10px;
  height: 15px;
  background-color: var(--primary);
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 100%);
          clip-path: polygon(0 0, 0% 100%, 100% 100%);
  position: absolute;
  top: 0;
  right: -10px;
}

/**********************************************
    Start Edit job_det
**********************************************/
.job_det {
  background-color: #f9f9f9;
}

.job_det .text_box {
  -webkit-padding-start: 3vw;
          padding-inline-start: 3vw;
}

.job_det .text_box .title {
  font-size: calc(.1vw + 35px);
  line-height: 1.4;
}

.job_det .text_box .p {
  line-height: 2;
}

.job_det .text_box .date {
  font-size: 14px;
  color: #888;
  font-weight: 500;
}

.job_det .text_box .date i {
  color: var(--primary);
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
}

.job_det .text_box .custom_ul {
  list-style-type: disc;
  -webkit-padding-start: 15px;
          padding-inline-start: 15px;
}

.job_det .text_box .custom_ul li {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 2px;
}

.job_det .text_box .box {
  position: relative;
  z-index: 6;
  width: 115%;
  -webkit-margin-start: -18%;
          margin-inline-start: -18%;
  padding: 4vw;
  background-color: #fff;
  border: 1px solid #eee;
  margin-top: 30px;
  border-radius: 15px;
}

.job_det .text_box .box .form-group {
  margin-bottom: 1.5rem;
}

.job_det .text_box .box .form-group .label {
  font-weight: bold;
  color: var(--dark);
  margin-bottom: .6rem;
  font-size: 13px;
}

.job_det .text_box .box .form-group .form-control {
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 0;
}

.job_det .text_box .box .uploading_box input[type=file] {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  padding: 0;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  filter: alpha(opacity=0);
}

.job_det .text_box .box .uploading_box .input-group-btn {
  background-color: #0A0E35;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.job_det .text_box .box .uploading_box .input-group-btn .btn {
  min-width: 115px;
  -webkit-border-end: 1px solid #ccc;
          border-inline-end: 1px solid #ccc;
}

.job_det .text_box .box .uploading_box .input-group-btn .browse-button-text {
  color: #fff;
}

.job_det .text_box .box .uploading_box .input-group-btn .clear-button {
  color: #fcc0c0;
}

.job_det .text_box .box .uploading_box .input-group-btn i {
  -webkit-margin-end: 5px;
          margin-inline-end: 5px;
}

.job_det .text_box .box .uploading_box .input-group {
  border-radius: 0rem;
  overflow: hidden;
}

.job_det .img_box {
  position: relative;
  height: 80%;
}

.job_det .img_box .sec-img {
  border-radius: 15px;
}

/**********************************************
    Start Edit  estate_det
**********************************************/
.estate_det .box {
  position: relative;
  border: 1px solid #eee;
}

.estate_det .box .img_box {
  position: relative;
}

.estate_det .box .img_box .sec-img {
  height: 450px;
}

.estate_det .box .card-body {
  padding: 2rem;
}

.estate_det .img_box .social_links {
  background-color: #f8f8f8;
  padding: .5rem 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.estate_det .img_box .social_links a {
  width: 30px;
  height: 30px;
  background-color: #fff;
  -webkit-box-shadow: 3px 6px 10px 0 #0001;
          box-shadow: 3px 6px 10px 0 #0001;
  border-radius: 50%;
  margin: 0 5px;
  color: #666;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.estate_det .card-body {
  padding: 3rem 2rem 0 2rem;
}

.estate_det .card-body .p {
  color: #505050;
  font-size: 15px;
  margin-bottom: 0;
  line-height: 2;
}

/**********************************************
    Start Edit partners_pg
**********************************************/
.partners_pg .partner_box {
  position: relative;
  padding: 25px;
  background-color: #f7f7f7;
  margin-bottom: 35px;
}

.partners_pg .partner_box .logo {
  height: 70px;
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 85%;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  display: block;
    margin: auto;
}

.partners_pg .partner_box:hover .logo {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}

/**********************************************
    Start Edit  content_pg
**********************************************/
.content_pg {
  background-color: #f9f9f9;
}

.content_pg .inner {
  padding: 0 3vw 50px 3vw;
  border-radius: 25px;
  background-color: #fff;
  margin-top: 50px;
}

.content_pg .inner .sec_head {
  outline: 15px solid #f9f9f9;
  padding: 1.5rem 2vw;
  border-radius: 15px;
  display: block;
  position: relative;
  top: -45px;
  background: #fff;
}

.content_pg .inner .sec_head .border_b::after {
  margin-bottom: 0;
}

.content_pg .inner .det {
  line-height: 2.2;
  color: #505050;
  margin-bottom: 0;
  font-size: 16px;
}
/*# sourceMappingURL=style.css.map */