/* TABLE OF CONTENTS */
/* ------------------
1. General
2. Navbar
3. Slider
4. About
5. Rooms
6. Services
6. Team
7. Gallery
8. Price
9. Blog
10. Footer
-------------------- */

/* 1 General */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Background Color */
    --primary-color: #021832;
    --secondary-color: #a2071c;
    --bg-color: #f4f4f4;
    --bg-white: #fff;
    --bg-black: #000;

    /* Text Style */
    --primary-font: 'Poppins', sans-serif;
    --secondary-font: 'Oswald', sans-serif;
    --primary-text: #021832;
    --secondary-text: #a2071c;
    --text-white: #fff;
    --text-black: #151515;
    --text-gray: #e4e4e4;
}

body {
    font-family: var(--primary-font);
    background-color: var(--bg-white);
}

a {
    text-decoration: none;
}

::-webkit-scrollbar {
    width: .375rem;
}

::-webkit-scrollbar-track {
    background: var(--secondary-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
} 

section {
    padding: 3.125rem 0;
}
ol,ul{
  margin: 0px;
  padding: 0px;
}
.main-btn {
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-color);
    text-transform: uppercase;
    background-color: transparent;
    border: .0625rem solid var(--primary-color);
    padding: .375rem 1.875rem;
    border-radius: 3.125rem;
    line-height: 1.75rem;
    display: inline-block;
    transition: all 0.3s ease-out 0s;
}

.main-btn:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--text-white);
}

.modal-btn {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-white);
  text-transform: uppercase;
  background-color: var(--secondary-color);
  border: .0625rem solid var(--secondary-color);
  padding: .375rem 1.875rem;
  border-radius: 3.125rem;
  line-height: 1.75rem;
  display: inline-block;
  transition: all 0.3s ease-out 0s;
}


h1 {
    font-size: 3.75rem;
    line-height: 4.25rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    font-family: var(--secondary-font);
}

h2 {
  margin-bottom: 1.875rem;
  /* line-height: 1.875rem; */
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary-text);
  font-family: var(--secondary-font);
}

h3 {
    margin-bottom: 1.875rem;
    line-height: 2.875rem;
    font-weight: 700;
    font-size: 2.25rem;
    color: var(--primary-text);
    font-family: var(--secondary-font);
}

h3 span {
    color: var(--secondary-text);
}

h5 {
    font-size: 1.5rem;
    line-height: 1;
    color: var(--primary-text);
    margin-bottom: .9375rem;
    font-weight: 500;
    font-family: var(--secondary-font);

}

h6 {
    font-size: .875rem;
    color: var(--primary-text);
    margin-bottom: .9375rem;
    text-transform: uppercase;
    font-weight: 500;
    font-family: var(--secondary-font);
}

p {
    font-size: 1rem;
    color: var(--text-black);
    line-height: 1.625rem;
}

label{
  font-weight: 500;
  color: var(--primary-text);
}

.section-title:after {
    content: "";
    background-image: url('../images/title-icon.webp');
    background-position: center center;
    background-repeat: no-repeat;
    display: block;
    margin-top: 0.375rem;
    height: .9375rem;
}

/* 2 Navbar */
.header_wrapper .navbar {
    padding: .5375rem 0;
    background-color: var(--bg-white);
    -webkit-box-shadow: 0 .5rem .375rem -0.375rem rgb(0 0 0 / 40%);
    box-shadow: 0 .5rem .375rem -0.375rem rgb(0 0 0 / 40%);
    -webkit-transition: background 0s ease-in-out 0s, margin-top 0s ease-in-out 0s, opacity 0s ease-in-out 0s;
    transition: background 0s ease-in-out 0s, margin-top 0s ease-in-out 0s, opacity 0s ease-in-out 0s;
}

.header_wrapper .navbar-toggler {
    border: 0;
    color: var(--primary-text);
    line-height: 2;
}

.header_wrapper .navbar-toggler:focus {
    box-shadow: none;
}

.header_wrapper .nav-item {
    margin: 0 .625rem;
}

.header_wrapper .nav-item .nav-link {
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-text);
    display: inline-block;
}

.header_wrapper .nav-item .nav-link.active,
.header_wrapper .nav-item .nav-link:hover {
    color: var(--secondary-text);
}

.login a span.user-icon {
  background: var(--secondary-color);
  color: #fff;
  border-radius: 100%;
  min-width: 34px;
  height: 34px;
  vertical-align: middle;
  line-height: 34px;
  font-size: 14px;
  text-align: center;
  display: inline-block;
  -webkit-box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.15);
}

.navbar.header-scrolled {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: rgba(255, 255, 255, .85);
    -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}
.navbar-brand img{
    width: 55px;
    height: 50px;
}
.footer-logo img{
    width: 55px;
    height: 50px;
    margin-right: 5px;
}
@keyframes fadeInDown {
    0% {
        top: -30%;
    }

    50% {
        top: -15%;
    }

    100% {
        top: 0;
    }
}

/* 3 Banner */
.banner_wrapper {
    height: 40.625rem;
}


.banner_content  p {
    max-width: 37.5rem;
    margin: 0 auto;
    color: var(--text-white);
}



.banner_content {
    text-align: center;
    color: white;
    padding: 100px 0;
    background: url('../images/slider/slider3.jpg') no-repeat center center/cover;
}

.banner_content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.banner_content img{
    width: 180px;
}
.banner_content .form-group input {
    /* padding: 10px 15px; */
    font-size: 1rem;
}

.banner_content select {
    padding: 10px 15px;
    font-size: 1rem;
}

.service-area {
    background: var(--bg-white);
    box-shadow: 0 .625rem .9375rem 0 rgb(0 0 0 / 10%);
    margin-top: -4rem;
    padding: 2.125rem 1.875rem;
    position: relative;
    z-index: 2;
    text-align: center;
}
.service-area .service_box img{
    width: 45px;
    height: 45px;
    filter: drop-shadow(2px 4px 6px #842029c2);
}
.service_box p:hover{
  color: var(--secondary-color);
}

/* 4 About */
.about_wrapper {
    padding-top: 9.375rem;
}


/* 11 footer */
.footer_wrapper {
    background-color: var(--bg-black);
}

.footer_wrapper h5 {
    color: var(--text-white);
    margin-bottom: 1.25rem;
}

.footer_wrapper ul li {
    margin-bottom: .5rem;
    list-style: none;
}

.footer_wrapper .contact-info li a{
    color: var(--text-white)
}
.footer_wrapper .contact-info li a i{
  color: var(--secondary-color);
}

.footer_wrapper .link-widget li a,
.footer_wrapper p {
    color: var(--text-gray);
    font-size: .875rem;
    padding-left:1.5rem;
    position: relative;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.footer_wrapper .link-widget li a::before {
    content: '\f105';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0.3rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.footer_wrapper .link-widget li a:hover {
    margin-left: .625rem;
    color: var(--secondary-text);
}

.footer_wrapper .social-network a {
    width: 2.1875rem;
    height: 2.1875rem;
    margin: .5rem;
    line-height:2rem;
    font-size: .875rem;
    display: inline-block;
    border: .125rem solid var(--text-gray);
    color: var(--text-gray);
    text-align: center;
    border-radius: 100%;
    -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.footer_wrapper .social-network a:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--text-white);
    box-shadow: 0 .625rem .9375rem 0 rgb(0 0 0 / 10%);
    transform: translateY(-0.1875rem);
}

.footer_wrapper .form-control:focus {
    outline: none;
    box-shadow: none;
    border-color: var(--secondary-color);
}

.footer_wrapper .copyright-section {
    background-color: var(--primary-color);
    padding: 1.25rem 0 .3125rem;
    text-align: center;
}


.footer_wrapper .copyright-section a {
    color: var(--secondary-text);
}

.news-section {
    /* margin: 40px 0px; */
}
.news-card {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.news-label {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: #842029;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
}
.section-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}
.view-all {
    float: right;
    font-size: 14px;
    color: red;
    text-decoration: none;
}
.view-all:hover {
    text-decoration: underline;
}


.team-one {
	padding: 30px 0;
	position: relative;
  }
  @media (max-width: 767px) {
	/* .team-one {
	  padding: 80px 0;
	} */
  }
  /* .team-one--about {
	padding: 0;
  } */
  
  .team-card {
	position: relative;
	z-index: 1;
	background-color: #f1f6f7;
	overflow: hidden;
	transition: all 500ms ease;
	border-radius: 10px 10px 0 0;
  }
  .team-card::after {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	content: "";
	background-color: #842029;
	opacity: 0;
	visibility: hidden;
	transition: all 700ms ease;
	transform: translate3d(0px, 100%, 0px);
	z-index: -1;
  }
  .team-card:hover::after {
	opacity: 1;
	visibility: visible;
	transform: translate3d(0px, 0, 0px);
  }
  .team-card__image {
	position: relative;
	z-index: 1;
  }
  .team-card__image::after {
	position: absolute;
	right: -5px;
	bottom: -10px;
	width: calc(100% + 5px);
	height: 100%;
	content: "";
	background-color: #fff;
	z-index: -1;
	border-radius: 0 0 142px 0;
  }
  .team-card__image img {
	position: relative;
	width: 100%;
	border-radius: 0 0 142px 0;
  }
  .team-card__hover {
	position: absolute;
	bottom: 30px;
	right: 30px;
  }
  .team-card__hover__btn {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background-color: var(--accent-color);
	font-size: 21px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	transition: all 500ms ease;
  }
  .team-card__hover__btn::after {
	display: inline-block;
	content: "+";
	transition: 300ms ease;
  }
  .team-card__hover:hover .team-card__hover__btn::after {
	content: "-";
  }
  .team-card__hover__social {
	position: absolute;
	bottom: 100%;
	right: 0;
	z-index: 3;
	margin: 0;
	opacity: 0;
	padding-bottom: 14px;
	transform: scaleY(0);
	transform-origin: center;
	transform-style: preserve-3d;
	transition: all 0.4s linear;
	transform-origin: bottom center;
  }
  .team-card__hover__social a {
	width: 40px;
	height: 40px;
	background-color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	color: var(--accent-color);
	font-size: 14px;
	transition: all 500ms ease;
  }
  .team-card__hover__social a + a {
	margin-top: 8px;
  }
  .team-card__hover__social a:hover {
	background-color: var(--accent-color);
	color: #fff;
  }
  .team-card__hover:hover .team-card__hover__social {
	opacity: 1;
	transform: scaleY(1);
  }
  .team-card__content {
	position: relative;
	padding: 35px 30px 26.3px;
  }
  .team-card__content::after {
	position: absolute;
	visibility: hidden;
	opacity: 0;
	right: 74px;
	bottom: 0;
	content: "";
	width: 51px;
	height: 44px;
	background-image: url(../images/shapes/team-hover-arrow.png);
	background-position: center center;
	background-size: cover;
	transition: all 400ms ease;
  }
  .team-card:hover .team-card__content::after {
	visibility: visible;
	opacity: 1;
	bottom: 14px;
  }
  .team-card__title {
	margin: 0;
	font-size: 24px;
	text-transform: capitalize;
	font-weight: 800;
	margin-bottom: 11px;
  }
  .team-card__title a {
	color: inherit;
	background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
	transition: all 500ms ease;
  }
  .team-card__title a:hover {
	background-size: 100% 1px;
  }
  .team-card__title a:hover {
	color: var(--accent-color);
  }
  .team-card:hover .team-card__title {
	color: #fff;
  }
  .team-card__designation {
	line-height: 1em;
	margin: 0;
	font-size: 17px;
	text-transform: capitalize;
	transition: all 300ms ease;
  }
  .team-card:hover .team-card__designation {
	color: #fff;
  }
  
  .team-two {
	padding: 120px 0 0;
	position: relative;
  }
  @media (max-width: 767px) {
	.team-two {
	  padding: 80px 0 0;
	}
  }
  .team-two--page {
	padding: 120px 0;
	position: relative;
  }
  @media (max-width: 767px) {
	.team-two--page {
	  padding: 80px 0;
	}
  }
  
  .team-card-two {
	position: relative;
  }
  .team-card-two__hover {
	position: absolute;
	top: 32px;
	right: 30px;
  }
  .team-card-two__hover__btn {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background-color: var(--accent-color);
	font-size: 21px;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	transition: all 500ms ease;
  }
  .team-card-two__hover__btn::after {
	display: inline-block;
	content: "+";
	transition: 300ms ease;
  }
  .team-card-two__hover:hover .team-card-two__hover__btn::after {
	content: "-";
  }
  .team-card-two__hover__social {
	position: absolute;
	top: 100%;
	right: 0;
	z-index: 3;
	margin: 0;
	opacity: 0;
	padding-top: 14px;
	transform: scaleY(0);
	transform-origin: center;
	transform-style: preserve-3d;
	transition: all 0.4s linear;
	transform-origin: top center;
  }
  .team-card-two__hover__social a {
	width: 40px;
	height: 40px;
	background-color: #f1f6f7;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	color: var(--accent-color);
	font-size: 14px;
	transition: all 500ms ease;
  }
  .team-card-two__hover__social a + a {
	margin-top: 8px;
  }
  .team-card-two__hover__social a:hover {
	background-color: var(--accent-color);
	color: #fff;
  }
  .team-card-two__hover:hover .team-card-two__hover__social {
	opacity: 1;
	transform: scaleY(1);
  }
  .team-card-two:hover .team-card-two__hover__btn {
	background-color: #fff;
	color: var(--accent-color);
  }
  .team-card-two__content {
	position: relative;
	z-index: 1;
	padding: 25px 30px 26px;
	background-color: #f1f6f7;
	border-radius: 20px;
	margin-bottom: 9px;
  }
  .team-card-two__content::after {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	content: "";
	background-color: var(--accent-color);
	border-radius: 10px;
	transition: all 500ms ease;
	transform: translate3d(0px, 100%, 0px);
	height: 0;
	z-index: -1;
  }
  .team-card-two:hover .team-card-two__content::after {
	height: 100%;
	transform: translate3d(0px, 0, 0px);
  }
  .team-card-two__title {
	margin: 0;
	font-size: 24px;
	text-transform: capitalize;
	font-weight: 800;
	margin-bottom: 11px;
  }
  .team-card-two__title a {
	color: inherit;
	background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
	transition: all 500ms ease;
  }
  .team-card-two__title a:hover {
	background-size: 100% 1px;
  }
  .team-card-two__title a:hover {
	color: inherit;
  }
  .team-card-two:hover .team-card-two__title {
	color: #fff;
  }
  .team-card-two__designation {
	line-height: 1em;
	margin: 0;
	font-size: 17px;
	text-transform: capitalize;
	transition: all 300ms ease;
  }
  .team-card-two:hover .team-card-two__designation {
	color: #fff;
  }
  .team-card-two__image {
	position: relative;
	padding: 9px;
	margin: 0 10px;
	border: 1px dashed #dddddd;
	border-radius: 10px;
  }
  @media (min-width: 992px) and (max-width: 1199px) {
	.team-card-two__image {
	  margin: 0;
	}
  }
  .team-card-two__image img {
	width: 100%;
	border-radius: 10px;
  }
  .team-card-two:hover .team-card-two__image {
	border-color: var(--accent-color);
  }

   .theme-btn-s2 {
    background-color: #fff;
    height: 45px;
    line-height: 45px;
    color: var(--primary-text);
    font-size: 16px;
    font-size: 1.06667rem;
    font-weight: 600;
    padding: 0 25px 0 25px;
    border: 0;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -o-border-radius: 50px;
    -ms-border-radius: 50px;
    border-radius: 50px;
    display: inline-block;
    text-transform: capitalize;
    position: relative;
  }
  .theme-btn-s2:hover{
    color: var(--secondary-text);
  }

  .cta-section-s2 {
    background: #a2071c;
    background: -webkit-linear-gradient(left, #f44336, #a2071c);
    background: -webkit-gradient(linear, left top, right top, from(#f44336), to(#a2071c));
    background: -o-linear-gradient(left, #f44336, #a2071c);
    background: linear-gradient(left, #f44336, #a2071c);
    padding: 35px 0;
  }
   
  .cta-section-s2 h4 {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin: 0;
  }
  

  .nav-tabs:not(.flex-column, .flex-sm-column, .flex-md-column, .flex-lg-column, .flex-xl-column) {
    border-bottom: 1px solid #d7dee3;
    flex-wrap: nowrap;
    overflow: hidden;
    overflow-x: auto;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    -webkit-overflow-scrolling: touch;
  }
  .nav-tabs .nav-item .nav-link.active {
    color: var(--secondary-color);
}
.nav-tabs .nav-item .nav-link {
    border: 0;
    background: transparent;
    font-size: 1rem;
    position: relative;
    border-radius: 0;
    padding: 0.8rem 1rem;
    color: var(--primary-color);
    white-space: nowrap !important;
    font-weight: 500;
}
.nav-tabs .nav-item .nav-link.active:after {
  height: 3px;
  width: 100%;
  content: ' ';
  background-color: var(--secondary-color);
  display: block;
  position: absolute;
  bottom: 1px;
  left: 0;
}
.sticky-top {
  position: -webkit-sticky;
  position: sticky;
  top: 0px;
  z-index: 0 !important;
}

.text-muted {
  color: var(--primary-color) !important;
}
.text-muted span{
  color: var(--secondary-color);
}
.fw-300 {
  font-weight: 500 !important;
}
form {
  padding: 0;
  margin: 0;
  display: inline;
}
.form-control:not(.form-control-sm) {
  padding: .810rem .96rem;
  height: inherit;
}

.btn-link {
  text-decoration: none;
}

.btn-link-forgot{
  color: var(--secondary-color);
}
.btn-link-sign,
.btn-link-login{
color: var(--primary-color);
font-weight: 500;
}

.form-select:focus {
  border-color: var(--secondary-color) !important;
  outline: 0;
  box-shadow: none !important;
}
.form-control:focus{
  box-shadow: none;
  border-color: var(--secondary-color);
}

.form-check-input:focus{
  border-color: unset !important;
  outline: 0;
  box-shadow: none !important;
}

.btn-link-forgot:hover,
.btn-link-sign:hover,
.btn-link-login:hover{
  color: var(--secondary-color);
}

.form-check-input:checked {
  background-color: var(--secondary-color)!important;
  border-color: var(--secondary-color)!important;
}

hr {
  opacity: 0.15;
}
.social-icons {
  margin: 0;
  padding: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}
html:not([dir="rtl"]) .social-icons li:first-child {
  margin-left: 0px;
}

.social-icons li {
  margin: 2px 3px;
  padding: 0;
  border-radius: 100%;
  overflow: visible;
}
.social-icons.social-icons-colored li.social-icons-facebook a {
  background: #3B5998;
  color: #fff;
}

.social-icons li a {
  background: #d4d4d4;
  border-radius: 100%;
  display: block;
  height: 34px;
  line-height: 34px;
  width: 34px;
  font-size: 16px;
  text-align: center;
  color: #fff;
  text-decoration: none;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.social-icons li i {
  line-height: inherit;
}
.social-icons.social-icons-colored li.social-icons-twitter a {
  background: #00ACEE;
  color: #fff;
}
.social-icons.social-icons-colored li.social-icons-google a {
  background: #DD4B39;
  color: #fff;
}
.social-icons.social-icons-colored li.social-icons-linkedin a {
  background: #0E76A8;
  color: #fff;
}
.social-icons.social-icons-colored li.social-icons-facebook a:hover,
.social-icons.social-icons-colored li.social-icons-linkedin a:hover,
.social-icons.social-icons-colored li.social-icons-google a:hover,
.social-icons.social-icons-colored li.social-icons-twitter a:hover{
  background-color: var(--secondary-color);
  color: var(--text-white);
}

/* page title */
.page-title {
  background: url("../images/slider/slider3.jpg") center center/cover no-repeat local;
  width: 100%;
  height: 250px;
  text-align: center;
  position: relative;
  word-break: break-all;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.page-title:before{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(6,25,56,.8);
}
@media (max-width: 991px) {
  .page-title {
    height: 150px;
  }
}

.page-title .page-title-container {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  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: left;
}

.page-title .page-title-wrapper {
    text-align: center;
    margin-bottom: 16px;
}

.page-title h2,
.page-title ol {
  color: #fff;
}

.page-title h2 {
  font-size: 2.625rem;
  font-weight: bold;
  margin: 0 0 0.5em;
}

@media (max-width: 991px) {
  .page-title h2 {
    font-size: 3rem;
  }
}

@media (max-width: 767px) {
  .page-title h2 {
    font-size: 2.1875rem;
  }
}

.page-title .breadcrumb {
  background-color: transparent;
  padding: 0;
  margin-bottom: 0;
  justify-content: center;
}

@media (max-width: 767px) {
  .page-title .breadcrumb {
    text-align: center;
  }
}

.page-title .breadcrumb li {
  font-size: 18px;
  color: #fff;
  margin-right: 5px;
  position: relative;
  font-family: 'Roboto', sans-serif
}

@media (max-width: 767px) {
  .page-title .breadcrumb li {
    font-size: 18px;
  }

  .page-title .page-title-wrapper {
      text-align: center;
      margin-bottom: 10px;
  }
}

.page-title .breadcrumb li a {
  color: #fff;
}
.page-title .breadcrumb li.active{
  color: var(--secondary-color);
}
.page-title .breadcrumb li a:hover {
  color: #2db85d;
}

/* =============== */

  /* Box Shadow */
  .shadow-md {
    -webkit-box-shadow: 0px 0px 50px -35px rgba(0, 0, 0, 0.4);
    box-shadow: 0px 0px 50px -35px rgba(0, 0, 0, 0.4);
  }
  
  /* Border Radius */
  .rounded-top-0 {
    border-top-start-radius: 0px !important;
    border-top-end-radius: 0px !important;
  }
  
  .rounded-bottom-0 {
    border-bottom-start-radius: 0px !important;
    border-bottom-end-radius: 0px !important;
  }
  
  html:not([dir="rtl"]) .rounded-start-0 {
    border-top-left-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
  }
  
  html:not([dir="rtl"]) .rounded-end-0 {
    border-top-right-radius: 0px !important;
    border-top-right-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
  }
  
  html[dir="rtl"] .rounded-start-0 {
    border-top-right-radius: 0px !important;
    border-top-right-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
  }
  
  html[dir="rtl"] .rounded-end-0 {
    border-top-left-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
  }
  
  .modal-content{
    border: 1px solid rgb(85 4 4 / 90%);
  }

  /* Text Size */
  .txt-color{
    color: var(--secondary-color) !important;
  }
  .text-0 {
    font-size: 11px !important;
    
  }
  
  .text-1 {
    font-size: 14px !important;
  }
  
  .text-2 {
    font-size: 14px !important;
  }
  
  .text-3 {
    font-size: 16px !important;
    
  }
  
  .text-4 {
    font-size: 18px !important;
    
  }
  
  .text-5 {
    font-size: 19px !important;
  }
  

  
  .text-7 {
    font-size: 28px !important;

  }
  
  .text-8 {
    font-size: 32px !important;
 
  }
  
  .text-9 {
    font-size: 36px !important;
    
  }
  
  .text-10 {
    font-size: 40px !important;
  
  }
  
  .text-11 {
    font-size: calc(1.4rem + 1.8vw) !important;
  }
  
 
  
  .text-11, .text-12, .text-13, .text-14, .text-15, .text-16, .text-17, .text-18, .text-19, .text-20, .text-21, .text-22, .text-23, .text-24, .text-25 {
    line-height: 1.3;
  }
  
  /* Font Weight */
  .fw-100 {
    font-weight: 100 !important;
  }
  
  .fw-200 {
    font-weight: 200 !important;
  }
 
  
  .fw-400 {
    font-weight: 400 !important;
  }
  
  .fw-500 {
    font-weight: 500 !important;
  }
  
  .fw-600 {
    font-weight: 600 !important;
  }
  
  .fw-700 {
    font-weight: 700 !important;
  }
  
  .fw-800 {
    font-weight: 800 !important;
  }
  
  .fw-900 {
    font-weight: 900 !important;
  }
  
  /* Opacity */
  .opacity-0 {
    opacity: 0;
  }
  
  .opacity-1 {
    opacity: 0.1;
  }
  
  .opacity-2 {
    opacity: 0.2;
  }
  
  .opacity-3 {
    opacity: 0.3;
  }
  
  .opacity-4 {
    opacity: 0.4;
  }
  
  .opacity-5 {
    opacity: 0.5;
  }
  
  .opacity-6 {
    opacity: 0.6;
  }
  
  .opacity-7 {
    opacity: 0.7;
  }
  
  .opacity-8 {
    opacity: 0.8;
  }
  
  .opacity-9 {
    opacity: 0.9;
  }
  
  .opacity-10 {
    opacity: 1;
  }
  
  /* Background light */
  .bg-light-1 {
    background-color: #f9f9fb !important;
  }
  
  .bg-light-2 {
    background-color: #f8f8fa !important;
  }
  
  .bg-light-3 {
    background-color: #f5f5f5 !important;
  }
  
  .bg-light-4 {
    background-color: #eff0f2 !important;
  }
  
  .bg-light-5 {
    background-color: #ececec !important;
  }
  
  /* Background Dark */
  .bg-dark {
    background-color: #111418 !important;
  }
  
  .bg-dark-1 {
    background-color: #191f24 !important;
  }
  
  .bg-dark-2 {
    background-color: #232a31 !important;
  }
  
  .bg-dark-3 {
    background-color: #2b343c !important;
  }
  
  .bg-dark-4 {
    background-color: #38434f !important;
  }
  
  .bg-dark-5 {
    background-color: #435161 !important;
  }
  
  hr {
    opacity: 0.15;
  }
  

  /*  Layouts */
  #main-wrapper {
    background: #f6f7f8;
  }
  
  @media (min-width: 992px) and (max-width: 1199.98px) {
    #main-wrapper.boxed {
      max-width: 990px;
      margin: 0 auto;
      -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
      box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    }
  }
  
  @media (min-width: 1200px) and (max-width: 1399.98px) {
    #main-wrapper.boxed {
      max-width: 1180px;
      margin: 0 auto;
      -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
      box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    }
  }
  
  @media (min-width: 1400px) {
    #main-wrapper.boxed {
      max-width: 1360px;
      margin: 0 auto;
      -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
      box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    }
  }
  
  .section {
    position: relative;
    padding: 1.125rem 0;
  }
 
  

  /*  Rechare & Bill Payment */

  /* View Plans Link */
  .view-plans-link {
    position: absolute;
    right: 0px;
    z-index: 4;
    padding: 0 15px;
    font-size: 13px;
    text-decoration: underline;
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
  }
  a.view-plans-link{
    color: var(--secondary-text);
    font-weight: 500;
  }

  html[dir="rtl"] .view-plans-link {
    right: auto;
    left: 0px;
  }
  
  /* Plans */
  .plans {
    max-height: 380px;
    overflow: hidden;
    overflow-y: auto;
  }
  
  .plans.page {
    max-height: 617px;
  }
  
  
  
  /* Operator selection */
  .operator-selection .form-check {
    position: relative;
    padding-left: 0;
  }
  
  .operator-selection .form-check .form-check-label {
    padding-bottom: 1rem;
  }
  
  .operator-selection .form-check .form-check-input {
    top: auto;
    bottom: 0rem;
    left: calc(50% - 0.65rem);
    position: absolute;
    margin: 0;
  }
  
  html[dir="rtl"] .operator-selection .form-check {
    padding-right: 0;
  }
  
  html[dir="rtl"] .operator-selection .form-check .form-check-input {
    left: auto;
    right: calc(50% - 0.75rem);
  }
  
  .icon-inside {
    position: absolute;
    right: 15px;
    top: calc(50% - 11px);
    pointer-events: none;
    font-size: 18px;
    font-size: 1.125rem;
    color: #c4c3c3;
    z-index: 3;
  }
  
  .form-control-sm + .icon-inside {
    font-size: 0.875rem !important;
    font-size: 14px;
    right: 10px;
  }
  
  html[dir="rtl"] .icon-inside {
    left: 15px;
    right: auto;
  }
  
  .invoice-container {
    margin: 15px auto;
    padding: 70px;
    max-width: 850px;
    background-color: #fff;
    border: 1px solid #ccc;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    -o-border-radius: 6px;
    border-radius: 6px;
  }
  
  @media (max-width: 767.98px) {
    .invoice-container {
      padding: 35px 20px 70px 20px;
      margin-top: 0px;
      border: none;
      border-radius: 0px;
    }
  }
  
  /* Tags */
  .tags {
    margin-bottom: 10px;
  }
  
  .tags a {
    background: #f4f5f4;
    color: #535b61;
    padding: 8px 12px;
    border-radius: 3px;
    display: inline-block;
    margin-bottom: 8px;
    margin-right: 3px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  
  .tags a:hover {
    background: #0071cc;
    color: #fff;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  
  html[dir="rtl"] .tags a {
    margin-left: 3px;
    margin-right: 0px;
  }
  
 
  

  /*  Elements */
  
  /* Featured Box */
  .featured-box {
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    position: relative;
  }
  
  .featured-box h3, .featured-box h4 {
    font-size: 1.3125rem;
    font-size: 21px;
    margin-bottom: 10px;
    font-weight: 500;
  }
  
  .featured-box .featured-box-icon {
    display: inline-block;
    font-size: 35px;
    height: 45px;
    line-height: 45px;
    padding: 0;
    width: 45px;
    margin-top: 0;
    margin-bottom: 12px;
    color: var(--secondary-color);
    border-radius: 0;
  }
  
  .featured-box.style-1 {
    padding-left: 50px;
    /* padding-top: 8px; */
  }
  
  .featured-box.style-1 .featured-box-icon {
    position: absolute;
    top: 0;
    left: 0;
    margin-bottom: 0;
    font-size: 30px;
    -ms-flex-pack: center !important;
    justify-content: center !important;
    text-align: center;
  }
 

  /* Team */
  .team {
    text-align: center;
    margin-bottom: 15px;
    padding: 15px;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  
  .team:hover {
    -webkit-box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.15);
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  
  .team img {
    margin-bottom: 20px;
  }
  
  .team h3 {
    font-size: 18px;
    margin-bottom: 0px;
  }
  
  .team p {
    margin-bottom: 0.5rem;
  }
  
  /*=== Accordion ===*/
  .accordion .accordion-item {
    border: none;
    margin-bottom: 10px;
    margin-bottom: 0.6rem;
    background-color: transparent;
  }
  
  .accordion .accordion-header .accordion-button {
    box-shadow: none;
    padding: 1rem 1.25rem 1rem 2.25rem;
    border-radius: 4px;
    position: relative;
  }
  
  .accordion:not(.accordion-flush) .accordion-header .accordion-button {
    background-color: #0071cc;
    color: #fff;
  }
  
  .accordion:not(.accordion-flush) .accordion-header .accordion-button.collapsed {
    background-color: rgba(0, 0, 0, 0.06);
    color: #4c4d4d;
  }
  
  .accordion .accordion-header .accordion-button:after {
    position: absolute;
    content: " ";
    left: 20px;
    top: calc(50% + 2px);
    width: 9px;
    height: 9px;
    border-color: #CCC;
    border-top: 2px solid;
    border-right: 2px solid;
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background-image: none;
  }
  
  .accordion .accordion-header .accordion-button.collapsed:after {
    top: calc(50% - 2px);
    -webkit-transform: translate(-50%, -50%) rotate(135deg);
    transform: translate(-50%, -50%) rotate(135deg);
  }
  
  .accordion .accordion-body {
    padding: 1rem 0 0.4rem 2.25rem;
  }
  
  .accordion.arrow-end .accordion-header .accordion-button {
    padding-left: 1.25rem;
  }
  
  .accordion.arrow-end .accordion-header .accordion-button:after {
    right: 15px;
    left: auto;
  }
  
  .accordion.arrow-end .accordion-body {
    padding-left: 1.25rem;
  }
  
  .accordion.accordion-flush .accordion-item {
    margin: 0;
  }
  
  .accordion.accordion-flush .accordion-header .accordion-button {
    padding-left: 1.40rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0px;
    background: transparent;
    color: var(--secondary-color);
  }
  
  .accordion.accordion-flush .accordion-item:first-of-type .accordion-header .accordion-button {
    border-top: 0px;
  }
  
  .accordion.accordion-flush .accordion-header .accordion-button:after {
    left: 6px;
  }
  
  .accordion.accordion-flush .accordion-header .accordion-button.collapsed {
    color: #4c4d4d;
  }
  
  .accordion.accordion-flush .accordion-body {
    padding: 0rem 0 1rem 1.40rem;
  }
  
  .accordion.accordion-flush.arrow-end .accordion-header .accordion-button {
    padding-left: 0;
  }
  
  .accordion.accordion-flush.arrow-end .accordion-header .accordion-button:after {
    right: 0px;
    left: auto;
  }
  
  .accordion.accordion-flush.style-2 .accordion-header .accordion-button {
    padding-left: 0px;
  }
  
  .accordion.accordion-flush.style-2 .accordion-header .accordion-button:after {
    right: 2px;
    left: auto;
    -webkit-transform: translate(-50%, -50%) rotate(135deg);
    transform: translate(-50%, -50%) rotate(135deg);
    top: 50%;
  }
  
  .accordion.accordion-flush.style-2 .accordion-header .accordion-button.collapsed:after {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
  }
  
  .accordion.accordion-flush.style-2 .accordion-body {
    padding-left: 0px;
    padding-right: 0px !important;
  }
  
  .routes-list {
    padding: 0px;
    list-style: none;
    line-height: 2;
  }
  
  .routes-list a {
    color: inherit;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  
  .routes-list a:hover {
    color: #0071cc;
    text-decoration: underline;
  }
  
  html[dir="rtl"] .accordion .accordion-header .accordion-button {
    padding: 1rem 2.25rem 1rem 1.25rem;
  }
  
  html[dir="rtl"] .accordion .accordion-header .accordion-button:after {
    left: auto;
    right: 12px;
  }
  
  html[dir="rtl"] .accordion .accordion-body {
    padding-right: 2.25rem;
    padding-left: 0;
  }
  
  html[dir="rtl"] .accordion.accordion-flush .accordion-header .accordion-button {
    padding-right: 1.40rem;
  }
  
  html[dir="rtl"] .accordion.accordion-flush .accordion-header .accordion-button::after {
    left: auto;
    right: 0px;
  }
  
  html[dir="rtl"] .accordion.accordion-flush .accordion-body {
    padding-right: 1.25rem;
  }
  
  html[dir="rtl"] .accordion.arrow-end .accordion-header .accordion-button {
    padding-right: 1.25rem;
    padding-left: 2.25rem;
  }
  
  html[dir="rtl"] .accordion.arrow-end .accordion-header .accordion-button::after {
    left: 20px;
    right: auto;
  }
  
  html[dir="rtl"] .accordion.arrow-end .accordion-body {
    padding-right: 1.25rem;
    padding-left: 0;
  }
  
  html[dir="rtl"] .accordion.accordion-flush.arrow-end .accordion-header .accordion-button {
    padding-right: 0;
    padding-left: 2.25rem;
  }
  
  html[dir="rtl"] .accordion.accordion-flush.arrow-end .accordion-header .accordion-button::after {
    left: 6px;
    right: auto;
  }
 
  
  /* Easy Responsive Tab Accordion */
  .resp-htabs ul.resp-tabs-list {
    margin: 0px;
    padding: 0px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style: none;
    border-bottom: 1px solid #d7dee3;
  }
  
  .resp-tabs-list li {
    padding: .5rem 1rem !important;
    margin: 0;
    list-style: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
  }
  
  h2.resp-accordion {
    cursor: pointer;
    padding: 5px;
    display: none;
  }
  
  .resp-tab-content {
    display: none;
    padding: 15px;
  }
  
  .resp-tab-active {
    margin-bottom: -1px !important;
    border-bottom: 2px solid #0071cc;
  }
  
  .resp-content-active, .resp-accordion-active {
    display: block;
  }
  
  h2.resp-accordion {
    font-size: 16px;
    color: var(--primary-color);
    border: 1px solid var(--secondary-color);
    border-top: 0px solid #e4e9ec;
    margin: 0px;
    padding: 1rem 1.25rem;
  }
  
  h2.resp-tab-active {
    border-bottom: 0px solid #e4e9ec !important;
    margin-bottom: 0px !important;
    padding: 1rem 1.25rem !important;
  }
  
  h2.resp-tab-title:last-child {
    border-bottom: 12px solid #e4e9ec !important;
    background: blue;
  }
  
  /* Easy Responsive Vertical tabs */
  .resp-vtabs ul.resp-tabs-list {
    margin: 0;
    padding: 0;
  }
  
  .resp-vtabs .resp-tabs-list li {
    display: block;
    padding: 15px 15px !important;
    margin: 0;
    cursor: pointer;
    color: var(--primary-text);
    border: none;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  
  .resp-vtabs .resp-tabs-list li:hover {
    color: var(--secondary-color);
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  
  .resp-vtabs .resp-tabs-list li span {
    font-size: 20px;
    text-align: center;
    width: 30px;
    display: inline-block;
    float: left;
    margin-right: 15px;
    color: var(--secondary-color);
  }
  
  html[dir="rtl"] .resp-vtabs .resp-tabs-list li span {
    float: right;
    margin-right: 0px;
    margin-left: 15px;
  }
  
  
  h2.resp-accordion span {
    font-size: 20px;
    text-align: center;
    width: 30px;
    display: inline-block;
    float: left;
    margin-right: 15px;
    color: var(--secondary-color);
  }
  
  html[dir="rtl"] h2.resp-accordion span {
    float: right;
    margin-right: 0px;
    margin-left: 15px;
  }
  
  .resp-vtabs .resp-tabs-container {
    padding: 0px;
  }
  
  .resp-vtabs .resp-tab-content {
    border: none;
  }
  .resp-vtabs li.resp-tab-active span{
    color: var(--text-white);
  }

  .resp-vtabs li.resp-tab-active, .resp-vtabs li.resp-tab-active:hover {
    color: var(--text-white);
    -webkit-box-shadow: -5px 0px 24px -18px rgb(83, 4, 4);
    box-shadow: -5px 0px 24px -18px rgb(83, 4, 4);
    border-radius: 4px 0px 0px 4px;
    background-color: var(--secondary-color);
    position: relative;
    z-index: 1;
    margin-right: -1px !important;
    margin-bottom: 0px !important;
  }
  
  .resp-arrow {
    width: 0;
    height: 0;
    float: right;
    margin-top: 6px;
    border-color: #000;
    border-top: 1px solid;
    border-right: 1px solid;
    width: 9px;
    height: 9px;
    -webkit-transform: translate(-50%, -50%) rotate(135deg);
    transform: translate(-50%, -50%) rotate(135deg);
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  
  html[dir="rtl"] .resp-arrow {
    float: left;
  }
  
  h2.resp-tab-active {
    background: var(--secondary-color) !important;
    color: var(--text-white);
  }
  
  h2.resp-tab-active span{
    color: var(--text-white);
  }

  h2.resp-tab-active i.resp-arrow {
    margin-top: 10px;
    transform: translate(-50%, -50%) rotate(-45deg);
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  
  /* Accordion Styles */
  .resp-easy-accordion h2.resp-accordion {
    display: block;
  }
  
  .resp-easy-accordion .resp-tab-content {
    border: 1px solid #e4e9ec;
  }
  
  .resp-easy-accordion .resp-tab-content:last-child {
    border-bottom: 1px solid #e4e9ec !important;
  }
  
  .resp-jfit {
    width: 100%;
    margin: 0px;
  }
  
  .resp-tab-content-active {
    display: block;
  }
  
  h2.resp-accordion:first-child {
    border-top: 1px solid var(--secondary-color) !important;
  }
  
  @media (max-width: 767.98px) {
    ul.resp-tabs-list {
      display: none !important;
    }
    h2.resp-accordion {
      display: block;
    }
    .resp-vtabs .resp-tab-content, .resp-htabs .resp-tab-content {
      border: 1px solid var(--secondary-color);
    }
    .resp-vtabs .resp-tabs-container {
      border: none;
      float: none;
      width: 100%;
      min-height: initial;
      clear: none;
    }
    .resp-accordion-closed {
      display: none !important;
    }
    .resp-vtabs .resp-tab-content:last-child {
      border-bottom: 1px solid #e4e9ec !important;
    }
  }

  
  /* Banner */
  .banner .item {
    position: relative;
  }
  
  .banner .item img {
    vertical-align: middle;
  }
  
  .banner .caption {
    position: absolute;
    z-index: 2;
    bottom: 0;
    width: 100%;
    padding: 15px 20px;
  }
  
  .banner .caption h2 {
    font-size: 19px;
    color: #fff;
  }
  
  .banner .caption p {
    color: rgba(250, 250, 250, 0.8);
    margin-bottom: 0px;
  }
  
  .banner .rounded .banner-mask, .banner .rounded img {
    border-radius: .25rem;
  }
  
  .banner .banner-mask {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
    backface-visibility: hidden;
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.01), rgba(0, 0, 0, 0.6));
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.01), rgba(0, 0, 0, 0.6));
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0.01), black);
    background: -ms-linear-gradient(top, rgba(0, 0, 0, 0.01), black);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.01), black);
    opacity: 0.7;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  
  .banner .item:hover .banner-mask {
    opacity: 0.95;
    filter: alpha(opacity=99);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  
 
  
  /* Steps Progress bar */
  .widget-steps > .step {
    padding: 0;
    position: relative;
  }
  
  .widget-steps > .step .step-name {
    font-size: 16px;
    margin-bottom: 5px;
    text-align: center;
  }
  
  .widget-steps > .step > .step-dot {
    position: absolute;
    width: 30px;
    height: 30px;
    display: block;
    background: #fff;
    border: 1px solid var(--secondary-color);
    top: 45px;
    left: 50%;
    margin-top: -15px;
    margin-left: -15px;
    border-radius: 50%;
  }
  
  .widget-steps > .step > .step-dot:after {
    width: 10px;
    height: 10px;
    border-radius: 50px;
    position: absolute;
    top: 9px;
    left: 9px;
  }
  
  .widget-steps > .step.complete > .step-dot:after {
    content: '\f00c';
    font-weight: 900;
    color: var(--secondary-color);
    font-family: "Font Awesome 5 Free";
    top: 3px;
    left: 7px;
  }
  
  .widget-steps > .step.active > .step-dot:after {
    background: var(--secondary-color);
    content: '';
  }
  
  .widget-steps > .step > .progress {
    position: relative;
    background: #bbb;
    border-radius: 0px;
    height: 1px;
    box-shadow: none;
    margin: 22px 0;
  }
  
  .widget-steps > .step > .progress > .progress-bar {
    width: 0px;
    box-shadow: none;
    background: var(--secondary-color);
  }
  
  .widget-steps > .step.complete > .progress > .progress-bar {
    width: 100%;
  }
  
  .widget-steps > .step.active > .progress > .progress-bar {
    width: 50%;
  }
  
  .widget-steps > .step:first-child.active > .progress > .progress-bar {
    width: 0%;
  }
  
  .widget-steps > .step:last-child.active > .progress > .progress-bar {
    width: 100%;
  }
  
  .widget-steps > .step.disabled > .step-dot {
    border-color: #bbb;
  }
  
  .widget-steps > .step:first-child > .progress {
    left: 50%;
    width: 50%;
  }
  
  .widget-steps > .step:last-child > .progress {
    width: 50%;
  }
  
  .widget-steps > .step.disabled a.step-dot {
    pointer-events: none;
  }
  
  html[dir="rtl"] .widget-steps > .step > .step-dot {
    top: 45px;
    right: 50%;
    left: auto;
    margin-left: 0;
    margin-right: -15px;
  }
  
  html[dir="rtl"] .widget-steps > .step > .step-dot:after {
    left: 0px;
    right: 9px;
  }
  
  html[dir="rtl"] .widget-steps > .step.complete > .step-dot:after {
    left: 0px;
    right: 7px;
  }
  
  html[dir="rtl"] .widget-steps > .step:first-child > .progress {
    left: auto;
    right: 50%;
  }

  /* Payments Images */
  .payments-types {
    margin: 0;
    padding: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style: none;
  }
  
  .payments-types li {
    margin: 0px 10px 8px 0px;
  }
  
  .payments-types li a {
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    opacity: 1;
  }
  
  .payments-types li img {
    display: flex;
  }
  
  .payments-types li:hover a {
    opacity: 0.8;
  }
  
  html[dir="rtl"] .payments-types li {
    margin-left: 10px;
    margin-right: 0px;
  }

  /* Social Icons */

  .social-icons.social-icons-sm li a {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
  }
  .social-icons.social-icons-sm li.social-icons-facebook a{
    background: #3B5998;
    color: #fff;
  }
  .social-icons.social-icons-sm li.social-icons-twitter a{
    background: #00ACEE;
    color: #fff;
  }
  .social-icons.social-icons-sm li.social-icons-google a{
    background: #DD4B39;
    color: #fff;
  }
   .social-icons.social-icons-sm li.social-icons-facebook a:hover,  .social-icons.social-icons-sm li.social-icons-linkedin a:hover,  .social-icons.social-icons-sm li.social-icons-google a:hover,  .social-icons.social-icons-sm li.social-icons-twitter a:hover {
    background-color: var(--secondary-color);
    color: var(--text-white);
   }
  .social-icons.social-icons-lg li a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 20px;
  }
  
  .social-icons.social-icons-dark li a {
    background: #555;
  }
  
  .social-icons li:hover a {
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }

  html[dir="rtl"] .social-icons li:first-child {
    margin-right: 0px;
  }
  
  html[dir="rtl"] .social-icons li:last-child {
    margin-left: 0px;
  }
 
  /* Bootstrap Specific */
 
  .form-select option {
    color: #777;
  }
  
  .form-select:invalid {
    color: #b1b4b6;
  }

  .form-control-sm {
    font-size: 14px;
  }
  
  .form-control-lg {
    height: calc(2.4em + 1rem + 2px);
  }
  
  select.form-control:not([size]):not([multiple]):not(.form-control-sm) {
    height: auto;
    padding-top: .700rem;
    padding-bottom: .700rem;
  }
  
  .form-select:not(.form-select-sm) {
    height: calc(3.05rem + 2px);
    min-height: 100%;
    padding-top: .700rem;
    padding-bottom: .700rem;
  }
  
  .form-select:not(.form-select-sm).border-0 {
    height: calc(3.00rem + 2px);
  }
  
  .col-form-label-sm {
    font-size: 13px;
  }
  
  .form-select-sm {
    padding-left: 5px !important;
    font-size: 14px;
  }

  .form-control:focus[readonly] {
    box-shadow: none;
  }
  
  .input-group-text {
    border-color: #d5d3d3;
    color: #777;
  }
  
  .form-control::-webkit-input-placeholder, .form-select::-webkit-input-placeholder {
    color: #b1b4b6;
  }
  
  .form-control:-moz-placeholder, .form-select:-moz-placeholder {
    color: #b1b4b6;
  }
  
  .form-control::-moz-placeholder, .form-select::-moz-placeholder {
    color: #b1b4b6;
  }
  
  .form-control:-ms-input-placeholder, .form-control::-ms-input-placeholder, .form-select:-ms-input-placeholder, .form-select::-ms-input-placeholder {
    color: #b1b4b6;
  }
  
  .btn {
    padding: .750rem 2.5rem;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  
  .btn-sm {
    padding: 0.5rem 1rem;
  }

  
  .btn:not(.btn-link):hover {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  
  .input-group-append .btn, .input-group-prepend .btn {
    -webkit-box-shadow: none;
    box-shadow: none;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  
  .input-group-append .btn:hover, .input-group-prepend .btn:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
  }

  .text-light {
    color: #dee3e4 !important;
  }
  
  .text-primary {
    color: var(--secondary-color) !important;
  }
  
  .btn-link:hover {
    color: var(--secondary-color) !important;
  }
  
  .btn-link:hover {
    text-decoration: underline;
  }
  
  .btn-primary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
  }
  
  .btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
  }
  .quick-btn {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--text-white);
  }
  
  .quick-btn:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--text-white);
  }

  .btn-check:focus+.btn, .btn:focus {
    outline: 0;
    box-shadow: none !important;
}
  .apply-btn {
    background-color: #0c2f55;
    color: var(--text-white);
  }
  .apply-btn:hover{
    color: var(--text-white);
    background-color: var(--secondary-color);
  }
  .btn-outline-primary {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
  }
  
  .btn-outline-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #fff;
  }

  .progress-bar,
  .nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    background-color: var(--secondary-color);
  }

  /* Pagination */
  .page-link {
    border-color: #f4f4f4;
    border-radius: 0.25rem;
    margin: 0 0.3rem;
  }
  
  .page-item.disabled .page-link {
    border-color: #f4f4f4;
  }
  
  /* Slider Range (jQuery UI) */
  .ui-slider-horizontal {
    height: .2em;
    margin-left: 11px;
    margin-right: 11px;
  }
  
  .ui-slider-horizontal .ui-slider-handle {
    top: -0.7em;
    margin-left: -.7em;
    border-radius: 100%;
    background: #fff;
    width: 1.5em;
    height: 1.5em;
  }
  
  .ui-slider.ui-widget.ui-widget-content {
    border: none;
    background: #eee;
    margin-bottom: 15px;
  }
  
  .ui-slider .ui-widget-header {
    background: #0071cc;
  }
  
  .ui-menu.ui-widget.ui-widget-content {
    -webkit-box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.176);
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.176);
    border: none;
    overflow: hidden;
    overflow-y: auto;
    max-height: 50vh;
    border-radius: 4px;
  }
  
  .ui-menu .ui-menu-item-wrapper {
    padding: 6px .75rem 6px .9rem;
  }
  
  .ui-widget-content .ui-state-active {
    border-color: #0071cc;
  }
  
  .ui-menu .ui-menu-divider {
    display: none;
  }
  
  /* Date Range Picker */
  .daterangepicker {
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.176);
  }
  
  .table:not(.table-sm) > :not(caption) > * > * {
    padding: .75rem .75rem;
  }
  
  .table > :not(:first-child) {
    border-color: #dee2e6;
  }
  
  .iti__flag-container {
    direction: ltr;
  }

/* property list */

.widget-box-model .widget, .agent-search, .woo-filter-bar, .widget_recent_property, .widget_send_message, .property_carousel_widget, .advance_search_widget {
    background-color: #fff;
    border: 1px solid #dee2e6;
    margin-bottom: 30px;
}
.woocommerce-ordering {
  display: flex;
}
.woocommerce-ordering select:not(:last-child) {
  margin-right: 10px;
}

.woocommerce-ordering select {
  background-color: #a2071ce0;
  font-size: 14px;
  border: 0;
  padding-right: 45px;
  padding-left: 20px;
  border-radius: 23px;
  line-height: 45px;
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url(../images/angle-down-solid.png);
  background-repeat: no-repeat;
  background-size: 8px;
  background-position: calc(100% - 20px);
  cursor: pointer;
  color: var(--text-white);
}
.woocommerce-ordering-pages {
  line-height: 40px;
}
.font-fifteen {
  font-size: 15px !important;
}
.view-category button {
  border-radius: 7px;
}
.view-category button {
  width: 40px;
  height: 40px;
  border: 0;
  color: var(--secondary-color);
  background-color: transparent;
}
.property-grid {
  margin-right: 3px;
  color: var(--gray-color);
}

.property-block {
  position: relative;
  overflow: hidden;
  height: 100%;
}
.transation-this, .transation, .transation * {
  -moz-transition: all 300ms ease-in-out 0s;
  -webkit-transition: all 300ms ease-in-out 0s;
  -o-transition: all 300ms ease-in-out 0s;
  -ms-transition: all 300ms ease-in-out 0s;
  transition: all 300ms ease-in-out 0s;
}
.property-block .cata {
  left: 15px;
  top: 15px;
  z-index: 9;
  display: flex;
  background-color: var(--secondary-color);
}
.property-block .cata span {
  padding: 0 10px;
  font-size: 12px;
  margin-right: 3px;
  height: 25px;
  line-height: 25px;
}
.property-grid .listing-ctg {
  position: absolute;
  left: 15px;
  bottom: 15px;
  display: inline-block !important;
  text-transform: uppercase;
  font-size: 13px;
  line-height: 40px;
  height: auto !important;
  z-index: 10;
}

.property-grid .listing-ctg i {
  margin-right: 3px;
  color: var(--secondary-color);
}
.quick-meta {
  right: 15px;
  bottom: 15px;
  z-index: 10;
}
.quick-meta li {
  width: 35px;
  height: 35px;
  border-radius: 3px;
  background-color: #14212d;
  display: inline-block;
  margin: 2px;
  text-align: center;
  line-height: 38px;
  font-size: 14px;
}
.quick-meta li a {
  display: block;
  color: var(--bg-white);
}
.property-grid .listing-price {
  font-weight: 700;
  color: var(--secondary-color);
  display: flex;
  font-family: var(--secondary-text);
  font-size: 21px;
  align-items: center;
  gap: 5px;
}
.property-grid .listing-price small {
  font-size: 14px;
  font-weight: 400;
  color: var(--gray-color);
}
.property-grid .listing-title a {
  font-weight: 500;
  color: var(--bg-black);
  font-size: 18px;
  margin-bottom: 10px;
}
.property-grid .listing-title a:hover{
  color: var(--secondary-color);
}
.property-grid .listing-location {
  margin-bottom: 15px;
  display: inline-block;
  width: 100%;
  font-size: 14px;
  color: var(--primary-text);
}
.property-grid .listing-location i {
  font-size: 13px;
  color: var(--secondary-color);
  padding-right: 3px;
}
.property_text .quantity {
  color: var(--gray-color);
}
.listing-location i{
  color: var(--secondary-color);
}
.quantity {
  gap: 15px;
}
.property-grid .quantity li span {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  font-size: 13px;
  margin-right: 8px;
  color: var(--secondary-color);
}
li {
  line-height: 25px;
  list-style: none;
}

.pagination .page-link, .pagination .page-item.disabled .page-link {
  background: transparent;
}

.pagination-dotted-active .page-item:first-child .page-link, .pagination-dotted-active .page-item:last-child .page-link {
  width: auto;
}
.pagination-dotted-active .active .page-link {
  background: var(--secondary-color);
  border: none;
  color: var(--text-white);
  border-radius: 50%;
}
.pagination-dotted-active .page-link {
  color: #fff;
  border: none;
  background: transparent;
  border-radius: 50%;
  padding: 0;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  color: var(--bg-black);
}

.thumbnail-img {
  overflow: hidden;
  position: relative;
}

/* Scale the image on hover */
.thumbnail-img img {
  transition: transform 0.5s ease;
  width: 100%; /* Ensure the image takes full width */
}

.thumbnail-img:hover img {
  transform: scale(1.1); /* Scale the image to 110% on hover */
}

.post-meta>a:last-child {
  border-right: none;
  margin: 0;
  padding: 0;
}
.post-meta>a {
  display: inline-block;
  line-height: 15px;
  font-weight: 500;
}
.post-meta a:hover{
  color: var(--secondary-color) !important;
}
 .listing-ctg {
  color: var(--secondary-color);
}
.listing-ctg i {
  margin-right: 3px;
}
.listing-ctg .Appartment {
  color: var(--secondary-color);
}
.property-overview .listing-title {
  margin-bottom: 10px;
}
.col-auto .listing-title a {
  color: var(--text-black);
  font-size: 24px;
  line-height: revert;
  font-weight: 600;
}
.property-overview .listing-price {
  font-size: 24px;
  font-weight: 700;
  text-align: right;
  color: var(--secondary-color);
  display: flex;
  flex-direction: column;
}
.property-overview .listing-price small {
  font-size: 14px;
  color: var(--secondary-text);
  font-weight: 400;
}
.col-auto .available-btn {
  background-color: var(--secondary-color);
  margin-top: 5px;
  font-size: 11px;
}

.quick-meta li {
  width: 35px;
  height: 35px;
  border-radius: 3px;
  background-color: #14212d;
  display: inline-block;
  margin: 2px;
  text-align: center;
  line-height: 38px;
  font-size: 14px;
}

.bg-light {
  background-color: #e3f5fb !important;
}

.bg-booking {
  background-color: var(--secondary-color) !important;
}
.list-three-fold-width li {
  width: 33.32%;
  float: left;
  padding: 5px;
}
ul.list-three-fold-width,
ul.quick-meta{
padding-left: 0px;
}
.font-500 {
  font-weight: 500 !important;
}
.table-striped td {
  border-top: 1px solid #dee2e6;
}

.table-striped td {
  border-top: 1px solid #dee2e6;
}
table td, table th {
  border: none;
  padding: 10px 15px;
}
.list-style-tick li {
  position: relative;
  margin-bottom: 10px;
}
.list-style-tick li::before {
  position: relative;
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  font-size: 12px;
  color: var(--bg-white);
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: inline-block;
  background-color: var(--secondary-color);
  margin-right: 10px;
  text-align: center;
}
.font-mini {
  font-size: 11px;
}
.media {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: start;
  flex-wrap: wrap;
}
.comments img {
  width: 75px;
}
.media-body {
  -ms-flex: 1;
  flex: 1;
}
.comments-date {
  font-size: 14px;
  color: #a5a5a5;
}
a, .photo-overlay::before, [class*="accordion-plus-"] .ac-toggle::after {
  -moz-transition: all 300ms ease-in-out 0s;
  -webkit-transition: all 300ms ease-in-out 0s;
  -o-transition: all 300ms ease-in-out 0s;
  -ms-transition: all 300ms ease-in-out 0s;
  transition: all 300ms ease-in-out 0s;
}
.text-primary {
  color: var(--secondary-color) !important;
}

.go-btn {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-white);
  text-transform: uppercase;
  background-color: var(--secondary-color);
  border: .0625rem solid var(--secondary-color);
  padding: .375rem 1.875rem;
  line-height: 1.75rem;
  display: inline-block;
  transition: all 0.3s ease-out 0s;
}

.widget {
  padding: 30px;
}

.widget .quick-search {
  padding: 0;
}

.quick-search .form-control {
  margin-bottom: 10px;
}

.splide--nav>.splide__track>.splide__list>.splide__slide.is-active {
  border-color: var(--secondary-color) !important;
}
/* Jobs page Css */

@media (min-width: 992px) {
  .collapse.miz_show {
      display: block !important;
  }
}

.br-bottom {
  border-bottom: 1px solid #eef2f5;
}

.sidebar-single_search_boxed .widget-boxed-header h4 {
  margin: 0;
  font-size: 14px;
}

.sidebar-single_search_boxed .widget-boxed-header h4 a {
  height: 100%;
  display: block;
  color: #2D3954 !important;
  position: relative;
  padding: 0.8rem 0rem;
}

.widget-boxed-header h4 a.collapsed:before {
    content: "\f077";
    background: #a2071c1f;
    color: var(--secondary-color);
}
.widget-boxed-header h4 a:before {
    content: "\f078";
    position: absolute;
    width: 25px;
    height: 25px;
    right: 0;
    top: 52%;
    transform: translate(-10%, -52%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #a2071c1f;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 10px;
    color: var(--secondary-color);
}
.widget-filter-list li {
  line-height: 1.7;
}

.widget-filter-list li {
  padding: 4px 0;
}

.gray-simple {
  background: #f1f5f8 !important;
}

@media (min-width: 993px) {
  a._filter-ico.ml-2 {
      display: none;
  }
}

.item-shorting-box {
  display: flex;
  align-items: center;
  justify-content: end;
}

.item-shorting .left-column h4 {
  font-weight: 500;
  font-size: 14px;
}

.quick-jobs-list-box {
  position: relative;
  width: 100%;
  display: flex;
  background: #ffffff;
  border-radius: 0.5rem;
  flex-direction: column;
  padding: 1.4rem 1rem;
}

.quick-jobs-list-head {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.quick-jobs-list-head-thunner {
  position: relative;
  display: flex;
  align-items: start;
  justify-content: center;
  width: auto;
}

.quick-jobs-list-emp-thumb {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #f4f5f7;
  border-radius: 0.4rem;
}

.jobs-verified {
  position: relative;
}

.jobs-verified:before {
  content: "";
  position: absolute;
  right: -5px;
  bottom: 0;
  width: 18px;
  height: 18px;
  background: transparent url(../images/approved.png) no-repeat;
  background-size: cover;
}

.quick-jobs-list-emp-thumb figure {
  margin: 0;
}

.quick-jobs-list-emp-thumb figure img {
  max-width: 50px;
}

.quick-jobs-list-job-caption {
  display: flex;
  align-items: self-start;
  justify-content: flex-start;
  flex-direction: column;
  padding-left: 1rem;
  width: 100%;
  flex: 1;
}

.quick-jobs-employer-wrap {
  position: relative;
  width: 100%;
}

.quick-jobs-employer-wrap span {
  font-weight: 500;
  color: #728ca3;
  font-size: 13px;
}

.quick-job-title-wrap {
  position: relative;
  max-width: 290px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0.4rem;
}

.quick-job-title-wrap {
  position: relative;
  display: block;
  width: 100%;
}

.quick-job-title-wrap h4 {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
}

.quick-job-title-wrap h4 a{
  color: var(--primary-text);
}

.quick-job-title-wrap h4 a:hover{
  color: var(--secondary-color);
}

.btn-md {
  padding: 1em 1.5em;
  height: 45px;
  font-size: 0.8rem;
}
.quick-info-ico-style {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 400px;
}
.quick-info-ico-style .jobs-single-y1 {
  width: auto;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  color: rgba(0, 44, 63, 0.6);
  font-size: 12px;
}
.quick-info-ico-style .jobs-single-y1.style-1 span {
  background: rgb(255 152 0 / 15%);
  box-shadow: 0 0 0 4px rgb(255 152 0 / 25%);
  color: #ff9800;
}

.quick-info-ico-style .jobs-single-y1 span {
  position: relative;
  display: inline-flex;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 12px;
  background: red;
  box-shadow: 0 0 0 4px rgba(2, 2, 2, 0.8);
  margin-right: 10px;
}
.quick-info-ico-style .jobs-single-y1.style-2 span {
  background: rgb(76 175 80 / 15%);
  box-shadow: 0 0 0 4px rgb(76 175 80 / 25%);
  color: #4CAF50;
}
.quick-info-ico-style .jobs-single-y1.style-3 span {
  background: rgb(230 39 86 / 15%);
  box-shadow: 0 0 0 4px rgb(230 39 86 / 25%);
  color: #e62756;
}

/* job details page css */
.bg-dark {
  background-color: #081721 !important;
}

.bg-dark {
  background-color: #041b2d !important;
}
.bg-cover {
  background-size: cover !important;
  background-position: center !important;
}
.job-head-body-top {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}
.job-root-y1 {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: auto;
}
.full-time-bg {
  background-color: #7bbd15 !important;
}

.label {
  padding: 4px 15px;
  color: #ffffff;
  font-weight: 500;
  border-radius: 4px;
  font-size: 75%;
}

.text-sm-muted {
  font-size: 12px;
  font-weight: 500;
  color: rgba(0, 44, 63, 0.6);
}
.jobs-star-groups {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  letter-spacing: 3px;
  color: #d7dde2;
}
.jobs-star-groups .active {
  color: #FF9800;
}
.jobs-star-groups .all-reveiw {
  font-size: 13px;
  font-weight: 600;
  color: #19282d;
  letter-spacing: 0;
}

.btn-whites {
  background: #ffffff;
  border-color: #ffffff;
  color: #081011;
}

.jobs-blocs {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  background: #ffffff;
  border-radius: 0.4rem;
  border: 2px solid #ebeff2;
}
ul.simple-list-y1, ul.degree-list, ul.simple {
  padding: 0;
  margin: 0;
}
ul.simple-list-y1 li, ul.degree-list li {
  list-style: none;
  position: relative;
  color: rgba(0, 44, 63, 0.6);
  font-weight: 500;
  padding: 0.2rem 0rem 0.2rem 1.4rem;
  font-family: var(--secondary-font);
}
ul.simple-list-y1 li:before {
  content: "\f192";
  font-family: "Font Awesome 5 Free";
  position: absolute;
  left: 0;
  color: var(--secondary-color);
}
ul.degree-list li:before {
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  color: var(--secondary-color);
  position: absolute;
  left: 0;
}
.jobs-bloxs-footer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-top: 2px solid #ebeff2;
}
.footer-share-block {
  position: relative;
  width: auto;
  display: block;
}
.footer-share-block ul {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.footer-share-block ul li {
  position: relative;
  display: inline-flex;
  margin-right: 0.7rem;
  list-style: none;
}
.jobs-apply-detail {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 0.4rem;
  padding: 1rem;
}
.rounded-img{
  border-top-left-radius: 50rem;
  border-bottom-left-radius: 50rem;
  width: 100vh;
}
.bg-white {
  background-color: #ffffff !important;
}
.upload-btn-wrapper {
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.full-width {
  width: 100%;
}
.upload-btn-wrapper .btn {
  border: none;
  color: #1ca774;
  background-color: rgb(23 172 106 / 12%);
  padding: 8px 20px;
  border-radius: 0.3rem;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer !important;
  height: 55px;
}
.upload-btn-wrapper input[type=file] {
  font-size: 100px;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}
.form-group label {
  margin-bottom: 7px;
  font-size: 15px;
  font-weight: 500;
}

.footer-share-block ul li strong {
  font-size: 11px;
}

.footer-share-block ul li a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.2rem;
  background: #f0f2f4;
  color: #617580;
}
span.mod-close {
  position: absolute;
  right: 10px;
  top: 16px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #eff0f2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  cursor: pointer;
  z-index: 1;
}

/* Back Button Css */

button.back-to-top{
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  clear: both;
  position: fixed;
  border: none;
  outline: 0 !important;
  z-index: 99;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  }
  
  button.back-to-top:hover,
  button.back-to-top:active,
  button.back-to-top:focus{
  outline: 0 !important;
  }
  
  button.back-to-top::before,
  button.back-to-top::after {
  content: "";
  display: block;
  vertical-align: middle;
  border-bottom: solid 10px var(--secondary-color);
  border-left: solid 10px transparent;
  line-height: 0;
  border-right: solid 10px transparent;
  height: 0;
  margin: 18px auto 0;
  width: 0;
  border-radius:20px;
  visibility: hidden;
  }
  button.back-to-top.show::after,
  button.back-to-top.show::before{
  visibility: visible;
  }
  button.back-to-top::after {
  border-bottom-color:#fff;
  position: relative;
  top:-24px;
  }
  button.back-to-top.show {
  display: block;
  background: #fff;
  font-size: 25px;
  right: 25px;
  bottom: 50px;
  height: 50px;
  width: 50px;
  visibility: visible;
  box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.25);
  }
 
.d-flex {
    display: flex;
    align-items: center;
}

.navbar-toggler {
    border: none;
    background: none;
}

.navbar-toggler-icon {
    font-size: 1.25rem;
}

.user-icon {
    font-size: 1.25rem;
}

.login {
    display: flex;
    align-items: center;
}

@media (max-width: 991.98px) {
    .container {
        flex-wrap: nowrap;
    }
    .navbar-brand {
        flex: 1;
    }
    .navbar-toggler {
        margin-left: auto;
    }
    .login {
        margin-left: 10px;
    }
}
.dropdown-menu-end {
  right: 0;
  left: auto;
}