:root {
  --primary: #78282c;
  --secondary: #561b1e;
  --filterPrimary: invert(13%) sepia(62%) saturate(2405%) hue-rotate(335deg) brightness(99%) contrast(85%);
}

* {
  margin: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  font-family: 'Almarai', sans-serif;
}

*::-moz-selection {
  background-color: var(--primary);
  color: #fff;
}

*::selection {
  background-color: var(--primary);
  color: #fff;
}

*::-webkit-scrollbar {
  width: 10px;
}

*::-webkit-scrollbar-track {
  background-color: #ccc;
}

*::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 8px;
}

*::-webkit-scrollbar-thumb:hover {
  background: var(--secondary);
}

/**********************************************
   Start Global Style
**********************************************/
p {
  font-size: 15px;
  color: #555;
  line-height: 1.8rem;
}

a {
  color: #000;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

a:hover {
  color: var(--primary) !important;
  text-decoration: none;
}

a:focus {
  outline: 0;
}

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

ul {
  list-style-type: none;
  padding: 0;
}

button {
  border: none;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

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;
  border-radius: 8px;
}

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: 50px !important;
}

form .custom-control-input:checked ~ .custom-control-label::before {
  border-color: var(--primary);
  background-color: var(--primary);
}

form .custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  border-color: var(--primary);
  -webkit-box-shadow: none;
          box-shadow: none;
}

.scroll-top-btn {
  display: inline-block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  background: linear-gradient(-135deg, var(--secondary), var(--primary));
  text-align: center;
  position: fixed;
  bottom: 15px;
  left: 15px;
  z-index: 1000;
  border-radius: 15px;
  -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

.scroll-top-btn img {
  width: 22px;
  -webkit-filter: invert(99%) sepia(1%) saturate(0%) hue-rotate(163deg) brightness(116%) contrast(100%);
          filter: invert(99%) sepia(1%) saturate(0%) hue-rotate(163deg) brightness(116%) contrast(100%);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.scroll-top-btn:hover img {
  -webkit-animation: floating-y .5s infinite alternate;
          animation: floating-y .5s infinite alternate;
}

.center-vr {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.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;
}

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

@-webkit-keyframes pulsecust {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    opacity: 0;
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes pulsecust {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    opacity: 0;
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

/**********************************************
   Start Edit Navbar & Footer
**********************************************/
.navbar {
  background-color: #F6F6F6;
  padding: 0 1rem;
}

.navbar .logo {
  width: 95px;
  -o-object-fit: contain;
     object-fit: contain;
}

.navbar .nav-link {
  padding: 2.5rem 1.5rem !important;
  position: relative;
  color: #888;
}

.navbar .nav-link::after, .navbar .nav-link::before {
  content: '';
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  position: absolute;
}

.navbar .nav-link::before {
  width: 0%;
  height: 3px;
  background-color: var(--primary);
  top: 0;
  right: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  display: block;
  z-index: 1;
}

.navbar .nav-link::after {
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  right: 0;
  background-color: #fff;
}

.navbar .nav-link.active, .navbar .nav-link:hover {
  color: var(--primary);
}

.navbar .nav-link.active::before, .navbar .nav-link:hover::before {
  width: 100%;
}

.navbar .nav-link.active::after, .navbar .nav-link:hover::after {
  height: 100%;
}

.navbar .nav-link.active {
  font-weight: bold;
}

.navbar .lang-butn {
  width: 45px;
  height: 45px;
  line-height: 45px;
  display: block;
  border-radius: 50px;
  background-color: var(--primary);
  color: #fff;
  font-size: 14px;
  text-align: center;
}

.navbar .lang-butn:hover {
  background-color: var(--secondary);
  color: #fff !important;
}

.navbar .navbar-toggler {
  width: 20px;
  height: 20px;
  cursor: pointer;
  background-color: transparent;
  border: none;
  position: relative;
}

.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);
}

.navbar .navbar-toggler.active .navbar-toggler-icon::before {
  top: 0px !important;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

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

.navbar .navbar-toggler .navbar-toggler-icon {
  width: 15px;
  height: 2px;
  background: #000;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.navbar .navbar-toggler .navbar-toggler-icon::after, .navbar .navbar-toggler .navbar-toggler-icon::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 2px;
  background: #000;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.navbar .navbar-toggler .navbar-toggler-icon::after {
  top: -5px;
  right: 0px;
}

.navbar .navbar-toggler .navbar-toggler-icon::before {
  top: 5px;
  right: 0px;
}

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

.footer .content .logo {
  width: 95px;
  -o-object-fit: contain;
     object-fit: contain;
}

.footer .content .contact-links a {
  display: block;
  margin: 10px 0;
  color: #333;
  font-weight: 600;
}

.footer .content .contact-links a i {
  color: var(--primary);
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
}

.footer .content .title {
  font-weight: bold;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.footer .content .links a {
  display: block;
  margin: 14px 0;
  color: #888;
}

.footer .content .qr-img {
  width: 100px;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}


.footer .content .social-links a .icon {
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}

.footer .content .social-links a .icon_sm {
    width: 35px;
    height: 35px;
    box-shadow: 3px 6px 10px #0001;
    border-radius: 50%;
    margin-inline-end: 9px;
}

.footer .content .social-links a .icon:hover {
  -webkit-animation: tada 1s both;
          animation: tada 1s both;
}

.footer .copyright_p {
  padding: 25px 0;
  border-top: 1px solid #ddd;
  margin-bottom: 0;
  text-align: center;
}

/**********************************************
    Start Public Classes
**********************************************/
.butn {
  padding: .7rem 2.5rem;
  position: relative;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  overflow: hidden;
  font-size: 15px;
  border-radius: 15px;
  border: 1px solid transparent;
}

.butn::before {
  content: "";
  position: absolute;
  top: 0;
  right: -50px;
  bottom: 0;
  left: 0;
  border-right: 50px solid transparent;
  border-bottom: 80px solid var(--secondary);
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.butn.white-butn {
  padding: 0.6rem 2.5rem;
  border: 1px solid #fff;
  color: #fff;
  background-color: transparent;
}

.butn.white-butn:hover {
  border: 1px solid var(--secondary);
}

.butn.primary-butn {
  background-color: var(--primary);
  color: #fff;
}

.butn:hover {
  color: #fff !important;
}

.butn:hover:before {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.swiper-container .swiper-button-next,
.swiper-container .swiper-button-prev {
  width: 45px;
  height: 45px;
  border: 1px solid transparent;
  background-color: var(--primary);
  border-radius: 5px;
  background-image: unset;
  -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 5 Free";
  font-weight: 900;
  display: inline-block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  font-size: 15px;
  color: #fff;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.swiper-container .swiper-button-next:hover,
.swiper-container .swiper-button-prev:hover {
  background-color: var(--secondary);
  -webkit-box-shadow: 0 0 20px 0 rgba(217, 124, 111, 0.5);
          box-shadow: 0 0 20px 0 rgba(217, 124, 111, 0.5);
}

.swiper-container .swiper-button-next:hover::before,
.swiper-container .swiper-button-prev:hover::before {
  color: #fff;
}

.swiper-container .swiper-button-next::before {
  content: '\f053';
}

.swiper-container .swiper-button-prev::before {
  content: '\f054';
}

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

.swiper-container .swiper-pagination .swiper-pagination-bullet {
  border-radius: 25px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.swiper-container .swiper-pagination .swiper-pagination-bullet-active {
  width: 15px;
  background-color: var(--primary);
}

.section {
  position: relative;
  padding: 70px 0;
  overflow: hidden;
}

.pg-header {
  position: relative;
  padding: 60px 0;
}

.pg-header .bread {
  color: #ddd;
}

.pg-header .bread .link:hover {
  color: #fff !important;
}

.pg-header .bread .this_pg,
.pg-header .bread .link {
  color: #ddd;
  margin: 0 8px;
}

.pg-header::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(121, 50, 56, 0.8);
  z-index: 1;
}

.bg-gray {
  background-color: #F6F6F6;
}

.pagination-wrapper .pagination {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}

.pagination-wrapper .pagination .page-link {
  padding: 0.5rem 1rem;
  border-radius: 8px !important;
  background-color: transparent;
  color: var(--secondary);
  margin: 0 4px;
}

.pagination-wrapper .pagination .page-link:hover, .pagination-wrapper .pagination .page-link.active {
  background-color: var(--secondary);
  color: #fff !important;
}

.modal .modal-content {
  padding: 20px;
}

.modal .modal-content .modal-header {
  border-bottom: 1px solid transparent;
}

.modal .modal-content .modal-header .modal-title {
  font-weight: bolder;
}

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

/**********************************************
    Start Edit Home Page 
**********************************************/
.header .item {
  position: relative;
  padding: 160px 0;
}

.header .item .text-box .title {
  font-size: calc(1vw + 35px);
  line-height: 1.4;
}

.header .item .text-box .p {
  color: #ddd;
}

.header .item .bg {
  -o-object-position: bottom;
     object-position: bottom;
}

.header .item::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);
  z-index: 1;
}

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

.header .swiper-slide-active .item .text-box .p {
  -webkit-animation: fadeInDown 1s both;
          animation: fadeInDown 1s both;
}

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

.about-sec .text-box .center-vr{
    top: 0;
    transform: translateY(0%);
}
.about-sec .text-box .col-lg-6 {
    max-width: 100%;
}
.about-sec .text-box .logo {
  width: 90px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-margin-end: 15px;
          margin-inline-end: 15px;
}

.about-sec .about-img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}

.about-sec .exp-wrapper .counterup {
  -webkit-margin-start: 30px;
          margin-inline-start: 30px;
  position: relative;
}

.about-sec .exp-wrapper .counterup::before {
  content: '';
  width: 100px;
  height: 100px;
  background-color: rgba(121, 50, 56, 0.2);
  position: absolute;
  top: -27px;
  left: -27px;
}

.branches-sec .branch_card {
  position: relative;
  margin-bottom: 25px;
  border: 2px solid var(--primary);
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.branches-sec .branch_card .main-img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 330px;
}

.branches-sec .branch_card .card-body {
  padding: 2rem 1.25rem;
  text-align: center;
}

.branches-sec .branch_card .card-body .title {
  font-size: 1.1rem;
}

.branches-sec .branch_card:hover {
  border: 2px solid #694848;
  -webkit-transform: translateY(-15px);
          transform: translateY(-15px);
  -webkit-box-shadow: 0 15px 25px 0 #ddd;
          box-shadow: 0 15px 25px 0 #ddd;
}

.branches-sec .branch_card:hover .title {
  color: var(--primary);
}

.statics-sec {
  background-color: #FAF7F7;
}

.statics-sec .static_card {
  width: 100%;
  margin-bottom: 10px;
}

.statics-sec .static_card .icon-outer {
  width: 100px;
  height: 80px;
  line-height: 80px;
  font-size: 35px;
  background-color: #fff;
  text-align: center;
  border: 1px solid var(--primary);
  color: var(--primary);
  -webkit-margin-end: 25px;
          margin-inline-end: 25px;
}

.statics-sec .static_card .title {
  color: #555;
}

.statics-sec .static_card .counter {
  color: var(--primary);
  font-weight: bolder;
}

.statics-sec .static_card:hover .icon-outer i {
  -webkit-animation: tada 1s both;
          animation: tada 1s both;
}

.statics-sec .border-l {
  border-left: 1px solid #ccc;
}

.partners-sec .partnter_card {
  width: 100%;
  height: 200px;
  border: 1px solid #eee;
}

.partners-sec .partnter_card .partner-logo {
  width: 75%;
  height: 55px;
  display: block;
  margin: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.contact-sec .card-outer {
  background-color: #fff;
  padding: 50px 35px;
  -webkit-box-shadow: 3px 6px 15px 0 #ddd;
          box-shadow: 3px 6px 15px 0 #ddd;
  margin-bottom: 20px;
}

.contact-sec .card-outer .butn {
  padding: .9rem 2.5rem;
  -webkit-box-shadow: 3px 7px 15px 0 #ddd;
          box-shadow: 3px 7px 15px 0 #ddd;
}
.contact-sec .card-outer .form-check-label a {
    text-decoration: underline;
    color: #555;
}
.contact-sec .card-outer.form-wrapper .label {
  font-size: 13px;
}

.contact-sec .card-outer.loc-wrapper .loc_card {
  margin-bottom: 15px;
}

.contact-sec .card-outer.loc-wrapper .loc_card .label {
  font-size: 13px;
}

.contact-sec .card-outer.loc-wrapper .loc_card .content {
  border: 1px solid #ced4da;
  border-radius: 10px;
  overflow: hidden;
}

.contact-sec .card-outer.loc-wrapper .loc_card .content .icon-outer {
  background-color: var(--primary);
  color: #fff;
  width: 50px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  display: inline-block;
  -webkit-margin-end: 5px;
          margin-inline-end: 5px;
}

.contact-sec .card-outer.loc-wrapper .loc_card .content .data {
  color: #888;
  font-size: 12px;
}

.contact-sec .card-outer.loc-wrapper .loc_card .img-box {
  border: 1px solid #ced4da;
  border-radius: 10px;
  padding: 10px;
}

.contact-sec .card-outer.loc-wrapper .loc_card .img-box .qr-img {
  width: 160px;
  height: 190px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: auto;
}

.contact-sec .pattern {
  position: absolute;
  top: 25%;
  width: 65%;
  -o-object-fit: contain;
     object-fit: contain;
}

.newsletter-sec .inner {
  padding: 0 50px;
  position: relative;
}

.newsletter-sec .inner .text-box {
  background-color: #fff;
  padding: 30px 30px 40px 30px;
  border-radius: 25px;
  margin-top: 140px;
}

.newsletter-sec .inner .form-box {
  margin-top: -30px;
}

.newsletter-sec .inner .form-box .form-group .form-control {
  height: 70px !important;
  border: 1px solid transparent;
  -webkit-box-shadow: 0 0 15px 0 #eee;
          box-shadow: 0 0 15px 0 #eee;
  border-radius: 15px;
}

.newsletter-sec .inner .form-box .form-group .butn {
  position: absolute;
  left: 10px;
  top: 12px;
}

.newsletter-sec .inner::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);
  height: 80%;
  top: unset;
  background-color: #f7e9eb;
}

/**********************************************
    Start Edit Contact Page 
**********************************************/
.contact-pg .butn {
  width: 40%;
  margin: auto;
}

.contact-pg .inner {
  padding: 50px 35px;
  background-color: rgba(121, 50, 56, 0.05);
}

.contact-pg .inner .card-outer {
  padding: 0px;
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}

/**********************************************
    Start Edit content Page 
**********************************************/
.content-pg .inner {
  background-color: #fff;
  padding: 50px 35px;
  -webkit-box-shadow: 3px 6px 15px 0 #ddd;
          box-shadow: 3px 6px 15px 0 #ddd;
}

.content-pg .inner .p {
  font-size: 16px;
  line-height: 2.3rem;
}

.content-pg .section {
    padding: 0;   
}
.content-pg .section .inner{
    padding: 0; 
    box-shadow: none;
}
/**********************************************
    Start Edit about Page 
**********************************************/
.about-cards .about_card {
  padding: 1.5rem;
  position: relative;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  -webkit-box-shadow: 3px 6px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 3px 6px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 25px;
  height: calc(100% - 25px);
}

.about-cards .about_card .icon-box {
  width: 85px;
  height: 75px;
  line-height: 75px;
  text-align: center;
  display: block;
  margin: 0 auto 20px auto;
  border: 1px solid var(--primary);
}

.about-cards .about_card .icon-box .icon {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}

.about-cards .about_card .content .title {
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.about-cards .about_card .content .p ,
.about-cards .about_card .content p{
  font-size: 12px;
  margin-bottom: 0;
  color: #888;
}

.about-cards .about_card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.about-cards .about_card:hover .title {
  font-weight: bold;
  color: var(--primary);
}

.about-cards .about_card:hover .icon {
  -webkit-animation: tada 1.2s infinite;
          animation: tada 1.2s infinite;
}

.about-cards .about_card .col-lg-3 {
    max-width: 100% !important;
}
.about-cards .about_card .col-lg-3 .about_card {
    padding: 0;
    box-shadow: none;
    margin-bottom: 0px;
    height: 100%;
}
/**********************************************
    Start Edit blog det Page 
**********************************************/
.blog-det .blog_card {
  padding: 45px;
  position: relative;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  -webkit-box-shadow: 3px 6px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 3px 6px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 25px;
}

.blog-det .blog_card .sec-img {
  height: 320px;
}

.blog-det .blog_card .content .date {
  color: #888;
}

.blog-det .blog_card .content .det {
  line-height: 2.2rem;
}

.blog-det .realted_card {
  padding: 25px;
  position: relative;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  -webkit-box-shadow: 3px 6px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 3px 6px 15px rgba(0, 0, 0, 0.1);
}

.blog-det .realted_card .item {
  margin-bottom: 25px;
}

.blog-det .realted_card .item .sec-img {
  height: 180px;
}

.blog-det .realted_card .item .content .det {
  font-size: 12px;
  margin-bottom: 0;
}

.blog-det .realted_card .item:hover .title {
  color: var(--primary);
}

/**********************************************
    Start Edit blog Page 
**********************************************/
.blog-pg .blog_card {
  border: 2px solid var(--primary);
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  position: relative;
  margin-bottom: 50px;
}

.blog-pg .blog_card .img-box {
  height: 330px;
  overflow: hidden;
}

.blog-pg .blog_card .img-box .sec-img {
  -webkit-transition: all .7s ease-in-out;
  transition: all .7s ease-in-out;
}

.blog-pg .blog_card .card-body {
  padding: 1.25rem 1.25rem 2.25rem 1.25rem;
}

.blog-pg .blog_card .card-body .date {
  font-size: 14px;
  color: #888;
}

.blog-pg .blog_card .card-body .det {
  font-size: 13px;
}

.blog-pg .blog_card .card-body .butn {
  position: absolute;
  bottom: -25px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.blog-pg .blog_card:hover {
  -webkit-box-shadow: 3px 6px 25px 0 #ddd;
          box-shadow: 3px 6px 25px 0 #ddd;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.blog-pg .blog_card:hover .sec-img {
  -webkit-transform: scale(1.2) rotate(5deg);
          transform: scale(1.2) rotate(5deg);
}

/**********************************************
    Start Edit hotel Page 
**********************************************/
.hotel-pg .sm-card {
  padding: 35px;
  position: relative;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  -webkit-box-shadow: 3px 6px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 3px 6px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 35px;
}

.hotel-pg .sm-card .qr_img {
    width: 100%;
    height: 200px;
    object-fit: contain;
}

.hotel-pg .sm-card.reviews_card .title {
  cursor: pointer;
}

.hotel-pg .sm-card.reviews_card .content {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 15px;
}

.hotel-pg .sm-card.reviews_card .content .stars i {
  color: #ccc;
}

.hotel-pg .sm-card.reviews_card .content .stars i.active {
  color: var(--primary);
}

.hotel-pg .sm-card.reviews_card .content .num {
  font-size: 13px;
  color: #888;
}

.hotel-pg .sm-card.monuments_card .title {
  line-height: 1.8;
}

.hotel-pg .sm-card.monuments_card .custom-ul .li {
  position: relative;
  -webkit-padding-start: 20px;
          padding-inline-start: 20px;
  margin: 8px 0;
  color: #666;
}

.hotel-pg .sm-card.monuments_card .custom-ul .li::before {
  content: '\f068';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 0;
  top: 5px;
  color: #999;
  font-size: 13px;
}

.hotel-pg .sm-card.contact_card .loc_card {
  margin-bottom: 15px;
}

.hotel-pg .sm-card.contact_card .loc_card .label {
  font-size: 13px;
}

.hotel-pg .sm-card.contact_card .loc_card .content {
  border: 1px solid #ced4da;
  border-radius: 10px;
  overflow: hidden;
}

.hotel-pg .sm-card.contact_card .loc_card .content .icon-outer {
  background-color: var(--primary);
  color: #fff;
  width: 50px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  display: inline-block;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
}

.hotel-pg .sm-card.contact_card .loc_card .content .data {
  color: #888;
  font-size: 13px;
}

.hotel-pg .sm-card.contact_card .loc_card .img-box {
  border: 1px solid #ced4da;
  border-radius: 10px;
  padding: 10px;
}

.hotel-pg .sm-card.contact_card .loc_card .img-box .qr-img {
  width: 160px;
  height: 190px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: auto;
}

.hotel-pg .hotel-det {
  padding: 35px;
  position: relative;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  -webkit-box-shadow: 3px 6px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 3px 6px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 35px;
}

.hotel-pg .hotel-det .img-box {
  height: 350px;
  position: relative;
}

.hotel-pg .hotel-det .img-box .play-btn {
  width: 60px;
  height: 60px;
  text-align: center;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 5;
  -webkit-box-shadow: 6px 9px 20px 0 rgba(57, 101, 222, 0.4);
          box-shadow: 6px 9px 20px 0 rgba(57, 101, 222, 0.4);
}

.hotel-pg .hotel-det .img-box .play-btn:before, .hotel-pg .hotel-det .img-box .play-btn:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--primary);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.hotel-pg .hotel-det .img-box .play-btn:hover:before {
  background-color: var(--secondary);
}

.hotel-pg .hotel-det .img-box .play-btn:before {
  z-index: 1;
}

.hotel-pg .hotel-det .img-box .play-btn:after {
  overflow: hidden;
  z-index: 0;
  opacity: 1;
  visibility: visible;
  -webkit-animation: pulsecust 1.8s linear;
          animation: pulsecust 1.8s linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-transition: visibility 0.1s ease-out, opacity 0.2s ease-out;
  transition: visibility 0.1s ease-out, opacity 0.2s ease-out;
  background-color: #fff;
}

.hotel-pg .hotel-det .img-box .play-btn i {
  font-size: 1.2rem;
  color: #fff;
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.hotel-pg .hotel-det .content .note {
  font-size: 10px;
  margin-bottom: 0;
}

.hotel-pg .hotel-det .content .serv_card {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--primary);
  padding: 20px 10px;
  text-align: center;
}

.hotel-pg .hotel-det .content .serv_card .icon {
  width: 30px;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: auto;
  -webkit-filter: var(--filterPrimary);
          filter: var(--filterPrimary);
}

.hotel-pg .hotel-det .content .serv_card i {
  color: var(--primary);
  display: block;
  font-size: 25px;
}

.hotel-pg .hotel-det .content .serv_card .label {
  color: var(--primary);
  margin-top: 10px;
  font-size: 12px;
  font-weight: bold;
}

.hotel-pg .hotel-det .content .serv_card:hover i {
  -webkit-animation: pulse 1s both infinite;
          animation: pulse 1s both infinite;
}

.hotel-pg .hotel-det .content .data-group .det {
  color: #697C91;
  font-size: 14px;
}

.hotel-pg .hotel-det .content .data-group.bb {
  padding-bottom: 15px;
  border-bottom: 1px solid #ddd;
}
.hotel-pg .hotel-det .content .data-group .bb {
    padding-bottom: 0px;
    border-bottom: 1px solid transparent;
}    
.hotel-pg .hotel-det .content .data-group .mt-5 ,
.hotel-pg .hotel-det .content .data-group .mt-4{
    margin-top: 0rem!important;
}
/*.hotel-pg .hotel-det .content .data-group p {*/
/*    display: none;*/
/*}*/
.hotel-pg .hotel-det .content .data-group .det{
    display: block;
}
.hotel-pg .hotel-det .content .data-group .data-group .det{
    margin-bottom: 0;
}
.hotel-pg .reviews-wrapper .review_card {
  padding: 35px;
  height: 240px;
  transform: scale(.97);
  overflow: hidden;
  position: relative;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  -webkit-box-shadow: 3px 6px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 3px 6px 15px rgba(0, 0, 0, 0.1);
}

.hotel-pg .reviews-wrapper .review_card .prof-data {
  padding-bottom: 15px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 15px;
}

.hotel-pg .reviews-wrapper .review_card .stars i {
  color: #ccc;
  font-size: 15px;
}

.hotel-pg .reviews-wrapper .review_card .stars i.active {
  color: var(--primary);
}

.hotel-pg .reviews-wrapper .review_card .det {
  font-size: 13px;
  color: #999;
  margin-bottom: 0;
}

.showRateModal .num {
  border-radius: 8px;
  background-color: var(--primary);
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  -webkit-margin-end: 15px;
          margin-inline-end: 15px;
}

.showRateModal .data-group {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #eee;
  margin-bottom: 1rem;
}

.showRateModal .data-group .title {
  padding: 20px 15px;
  background-color: var(--primary);
  color: #fff;
  font-size: 14px;
  min-width: 141px;
  text-align: center;
}

.showRateModal .data-group .stars {
  padding: 0 15px;
}

.showRateModal .data-group .stars i {
  color: #ccc;
}

.showRateModal .data-group .stars i.active {
  color: var(--primary);
}

.showRateModal .stars-content {
  padding: 0 15px;
}

.showRateModal .stars-content .star-rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  font-size: 1.5em;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  padding: 0 .2em;
  text-align: center;
  width: 5em;
}

.showRateModal .stars-content .star-rating input {
  display: none;
}

.showRateModal .stars-content .star-rating label {
  color: #ccc;
  cursor: pointer;
  margin-bottom: 0;
}

.showRateModal .stars-content .star-rating :checked ~ label {
  color: var(--primary);
}

.showRateModal .stars-content .star-rating label:hover,
.showRateModal .stars-content .star-rating label:hover ~ label {
  color: var(--secondary);
}

.confirmationModal button.close {
  position: absolute;
  left: 18px;
  top: 18px;
}

.confirmationModal .icon {
  width: 180px;
  height: 180px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: auto;
}

.confirmationModal .content {
  margin-top: 25px;
  text-align: center;
}

.confirmationModal .content .title {
  margin-bottom: 1.5rem;
  font-weight: bolder;
  font-size: 2.2rem;
}

.confirmationModal .content .p {
  font-size: 19px;
}

.confirmationModal .content .logo {
  width: 150px;
  height: 25px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 5px;
}
/*# sourceMappingURL=style.css.map */