/* [Master Stylesheet] */
/* ----------------------------------------------------------
    :: Template
    :: Author: Turbo
    :: Author URL:www.boo-code.com
    :: Version: 1.0
    :: Created: 10 2023
    :: Last Updated: 10 2023
    ---------------------------------------------------------- */
/* -------------------------------------------------
    ============ PLACE YOUR CUSTOM CSS HERE ============
    ------------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700;800;900&display=swap");
* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Tajawal", sans-serif;
}

a {
  text-decoration: unset;
}

.main-button {
  background: #0ca47b;
  color: #fff;
  padding: 0.8rem 2rem;
  display: block;
  border-radius: 0.5rem;
  min-width: 200px;
  border: none;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
}
.main-button:hover {
  background: #097457;
}

a.main-button:hover {
  color: #fff;
}

.outline-button {
  background: transparent;
  color: #0ca47b;
  padding: 0.8rem 1rem;
  display: block;
  border-radius: 0.5rem;
  border: 0.0625rem solid #0ca47b;
  cursor: pointer;
  transition: 0.3s;
}

.danger-button {
  background: transparent;
  color: #d20000;
  padding: 0.8rem 1rem;
  display: block;
  border-radius: 0.5rem;
  border: 0.0625rem solid #d20000;
  cursor: pointer;
  transition: 0.3s;
}

main {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
}

.primaryColor {
  color: #0ca47b;
}

nav.navbar {
  background: #0ca47b;
  box-shadow: 0 0 9px #ccc;
  padding: 0;
}
nav.navbar .navbar-box {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}
nav.navbar .navbar-box .logo-box {
  background: #fff;
  flex-basis: 30%;
  -webkit-clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
  padding-inline-start: 12%;
}
nav.navbar .navbar-box .links-box {
  flex-basis: 70%;
  background: #0ca47b;
  padding-inline-end: 5%;
}
nav.navbar .header-logo {
  height: 3rem;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}
nav.navbar ul.navbar-nav {
  display: flex;
  justify-content: flex-end;
  gap: 1.5rem;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
nav.navbar ul.navbar-nav .nav-link,
nav.navbar ul.navbar-nav .navbar-nav .nav-link.active,
nav.navbar ul.navbar-nav .navbar-nav .show > .nav-link {
  color: #fff;
  font-size: 1.2rem;
}
nav.navbar .login-link {
  background: transparent no-repeat padding-box;
  width: 10rem;
  padding: 0.5rem 1rem;
  text-align: center;
  border: 2px solid #fff;
  border-radius: 0.5rem;
}
nav.navbar ul.dropdown-menu li:not(:last-child) {
  border-bottom: 1px solid #eee;
}

.slider {
  background: url("../images/slider.png") no-repeat center center/cover;
}
.slider .carousel-inner {
  height: 600px;
}
.slider .carousel-inner .carousel-item {
  flex-grow: 1;
  align-items: center;
  height: 100%;
}
.slider .carousel-inner .carousel-item .carousel-box {
  display: flex;
  align-items: center;
  height: 100%;
}
.slider .carousel-inner .carousel-item .carousel-box .slider-content {
  width: 45%;
  position: absolute;
  padding-inline-start: 12%;
}
.slider .carousel-inner .carousel-item .carousel-box .slider-content h1 {
  font-size: 1.8rem;
  font-weight: 900;
  color: #222;
  position: relative;
  margin-bottom: 2rem;
  padding-bottom: 0.5rem;
}
.slider .carousel-inner .carousel-item .carousel-box .slider-content h1::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0.5rem;
  background: #0ca47b;
  bottom: -0.5rem;
  left: 0;
}
.slider .carousel-inner .carousel-item .carousel-box .slider-content ul {
  display: flex;
  row-gap: 1rem;
  flex-direction: column;
}
.slider .carousel-inner .carousel-item .carousel-box .slider-content ul li {
  font-size: 1.4rem;
  font-weight: 500;
  color: #555;
}
.slider .carousel-inner .carousel-item .carousel-box .slider-content p {
  font-size: 1.5rem;
  font-weight: 400;
  color: #222;
}
.slider .carousel-control-prev-icon,
.slider .carousel-control-next-icon {
  background-color: #0ca47b;
  border-radius: 5px;
  padding: 1rem;
  width: 40px;
  height: 40px;
  margin-bottom: 2rem;
}
.slider .carousel-control-next,
.slider .carousel-control-prev {
  align-items: end;
  width: 5%;
  transition: opacity 0.15s ease;
}
.slider .carousel-control-prev {
  right: 11%;
}
.slider .carousel-control-next {
  right: 16%;
}

.about-us {
  padding: 5rem 0;
}
.about-us h2 {
  font-weight: 900;
  font-size: 26px;
  color: #0ca47b;
}
.about-us p {
  font-weight: 400;
  font-size: 20px;
  text-align: justify;
}
.about-us img {
  width: 140px;
}
.about-us .left-side {
  padding-inline-start: 2rem;
  border-inline-start: 4px solid #0ca47b;
}

.fetures {
  padding: 8rem 0;
  background: url("../images/features/fetures-bg.png") no-repeat center center/cover;
  position: relative;
}
.fetures h1 {
  font-weight: 900;
  font-size: 34px;
  margin-bottom: 34px;
  color: #0b6b51;
}
.fetures h3 {
  font-weight: 700;
  font-size: 24px;
}
.fetures p {
  font-size: 20px;
}
.fetures .icon-img {
  width: 120px;
}

.partners {
  padding: 5rem 0;
}
.partners h2 {
  font-weight: 900;
  font-size: 34px;
  color: #0ca47b;
  text-align: center;
  margin-bottom: 2rem;
}
.partners .partner-box {
  padding: 1rem 1rem;
  box-shadow: 0px 3px 17px rgba(0, 0, 0, 0.1607843137);
  border-radius: 12px;
  border: none;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.partners .partner-box img {
  height: 200px;
  width: 200px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.partners .partner-box .partner-content {
  background-color: #0ca47b;
  border-radius: 12px;
  margin-top: 20px;
  box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.1607843137);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 0.5rem;
}
.partners .partner-box .partner-content img {
  height: 45px;
  width: 45px;
}

.feats .row .cover-img {
  padding: 0;
  height: 770px;
  overflow: hidden;
}
.feats .feats-box {
  background: url("../images/feat-bg-2.png") no-repeat center center/cover;
  color: white;
  padding: 10px 50px !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  min-height: 385px !important;
}
.feats p {
  text-align: start;
  font-size: 20px;
  line-height: 1.8;
}
.feats ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: start;
}
.feats ul li {
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
}
.feats h2 {
  font-weight: 700;
  font-size: 30px;
  position: relative;
  padding-bottom: 12px;
  position: relative;
  margin-bottom: 2rem;
}
.feats h2::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 4px;
  background: #fff;
  bottom: 0;
  right: 0;
}

.news {
  padding: 5rem 0;
}
.news h1 {
  font-weight: 700;
  font-size: 34px;
  color: #0ca47b;
  text-align: center;
  margin-bottom: 3rem;
}
.news .news-big-box {
  box-shadow: 0px 3px 17px rgba(0, 0, 0, 0.1607843137);
  border-radius: 5px 25px 5px 25px;
  margin-bottom: 1rem;
  padding: 1rem;
}
.news .news-big-box img {
  border-radius: 15px 15px 0 0;
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}
.news .news-big-box .news-content {
  padding: 1rem;
}
.news .news-big-box .news-content h2 {
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.news .news-big-box .news-content p {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.7;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-clamp: 6;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
}
.news .news-big-box .news-content a {
  color: #0ca47b;
  font-weight: 700;
  font-size: 18px;
  text-decoration: underline;
}
.news .news-small-box {
  display: flex;
  gap: 1rem;
  box-shadow: 0px 3px 17px rgba(0, 0, 0, 0.1607843137);
  border-radius: 15px;
  margin-bottom: 1.8rem;
  align-items: center;
}
.news .news-small-box img {
  border-radius: 0 15px 15px 0;
  width: 200px;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
}
.news .news-small-box .news-content {
  padding: 1rem;
}
.news .news-small-box .news-content h2 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.news .news-small-box .news-content p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 0.5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.news .news-small-box .news-content a {
  color: #0ca47b;
  font-weight: 700;
  font-size: 16px;
  text-decoration: underline;
}
.news .carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  background-color: #0ca47b;
  border-radius: 50%;
}
.news .carousel-indicators {
  bottom: -3rem;
}

.testimonials {
  padding: 2rem 0;
}
.testimonials h2 {
  font-weight: 700;
  font-size: 34px;
  color: #0ca47b;
  text-align: center;
  margin-bottom: 2rem;
}
.testimonials .myCard {
  padding-bottom: 180px;
}
.testimonials .myCard .myCard-img {
  border-radius: 20px;
  border: 1px solid #ccc;
  width: 80%;
}
.testimonials .myCard .description {
  background: #0ca47b;
  padding: 20px 10px;
  border-radius: 20px;
  position: absolute;
  width: 90%;
  left: 0;
  z-index: 10;
  bottom: 0px;
  border: 4px solid #fff;
  color: #fff;
}
.testimonials .myCard .description h5 {
  margin: 0;
  font-size: 14px;
}
.testimonials .myCard .description h3 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
  margin-bottom: 15px;
}
.testimonials .ceoCard .ceo-img {
  border-radius: 20px;
  border: 1px solid #ccc;
  width: 100%;
  height: 300px;
  -o-object-fit: contain;
     object-fit: contain;
}
.testimonials .ceoCard .description {
  background: #0ca47b;
  margin: 0.5rem 0;
  padding: 20px 10px;
  border-radius: 20px;
  border: 4px solid #fff;
  color: #fff;
}
.testimonials .ceoCard .description h5 {
  margin: 0;
  font-size: 14px;
}
.testimonials .ceoCard .description h3 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
  margin-bottom: 15px;
}
.testimonials .social img {
  height: 40px;
  transition: all 0.3s ease-in-out;
}
.testimonials .social img:hover {
  transform: scale(1.1);
}
.testimonials .carousel-indicators {
  bottom: -50px;
}
.testimonials .carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  background-color: #0ca47b;
  border-radius: 50%;
}

.consultants {
  background-color: #f6f6f6;
  padding: 5rem 0;
}
.consultants .myCard {
  padding-bottom: 2rem;
}
.consultants .myCard .myCard-img {
  border-radius: 20px;
  border: 1px solid #ccc;
  width: 80%;
  height: 250px;
  -o-object-fit: contain;
     object-fit: contain;
  background: #fff;
}
.consultants .myCard .description {
  position: relative;
  top: -50px;
  left: -30px;
}

.faqs {
  padding: 5rem 0;
  background: url("../images/faqs-bg.png") no-repeat center center/cover;
}
.faqs h1 {
  font-weight: 700;
  font-size: 34px;
  color: #0ca47b;
  text-align: center;
  margin-bottom: 0.5rem;
}
.faqs .accordion-item {
  margin-bottom: 2rem;
  border-radius: 10px;
  box-shadow: 0px 3px 17px rgba(0, 0, 0, 0.1607843137);
  border: 2px solid #e2e2e2;
}
.faqs .accordion-item .accordion-header {
  border-radius: 10px;
}
.faqs .accordion-item .accordion-button {
  border-radius: 10px;
  padding: 1.5rem;
  font-size: 18px;
  font-weight: 700;
  outline: none;
}
.faqs .accordion-item .accordion-button:focus {
  box-shadow: none;
}
.faqs .accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.faqs .accordion-button:not(.collapsed)::after {
  background-image: url("../images/according-arrow.svg");
}

.accordion {
  --bs-accordion-active-color: #0ca47b;
  --bs-accordion-active-bg: #09a47b1f;
}

footer {
  background-color: #f2f2f2;
  padding-top: 2rem;
  margin-top: 4rem;
}
footer .footer-up {
  background-color: #0ca47b;
  -webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 16% 100%);
          clip-path: polygon(0 0, 100% 0%, 100% 100%, 16% 100%);
  width: 80%;
  box-shadow: 1px 4px 6px gray;
  margin-top: -45px;
  padding: 35px 12% 35px 22px;
}
footer .footer-up .logo {
  height: 50px;
  margin-bottom: 2rem;
}
footer .footer-up h5 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}
footer .footer-up p {
  font-size: 16px;
  margin-bottom: 2rem;
  width: 70%;
  line-height: 1.8;
  color: #fff;
}
footer .footer-up .social img {
  height: 40px;
  transition: all 0.3s ease-in-out;
}
footer .footer-up .social img:hover {
  transform: scale(1.1);
}
footer .footer-bottom {
  padding: 1.5rem 0;
}
footer .footer-bottom ul {
  justify-content: center;
  margin: 0;
  gap: 2rem;
}
footer .footer-bottom ul li {
  font-size: 18px;
  color: #222;
  font-weight: 500;
}
footer .footer-bottom ul li a {
  color: #222;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
footer .footer-bottom ul li a:hover {
  color: #0ca47b;
}
footer .copyrights {
  background-color: #c8c8c8;
  color: #000;
  padding: 1rem 0;
  text-align: center;
}
footer .copyrights p {
  margin: 0;
}

input {
  width: 100%;
  padding: 0.8rem 0.5rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  text-align: right;
  outline-color: #0ca47b;
}

input[type=file] {
  padding: 0.6rem 0.5rem;
}

input[type=radio],
input[type=checkbox] {
  margin-right: 0.5rem;
  width: 20px;
  height: 20px;
  margin-bottom: 0;
  accent-color: #0ca47b;
}

select {
  width: 100%;
  padding: 1rem 0.5rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  text-align: right;
  outline-color: #0ca47b;
}

textarea {
  width: 100%;
  padding: 0.8rem 0.5rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  text-align: right;
  outline-color: #0ca47b;
  resize: none;
}

.login {
  padding: 8rem 0;
}
.login .row-box {
  border-bottom-left-radius: 10% 50%;
  border-top-left-radius: 10% 50%;
  background-color: #f8f9fa;
  padding: 5rem 0;
  width: 80%;
  padding-inline-start: 10%;
  align-items: center;
}
.login .row-box h2 {
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 2rem;
}
.login .row-box .login-img {
  height: 80px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.login .row-box button.login-button {
  color: white;
  background-color: #0ca47b;
  border: none;
  border-radius: 5px;
  padding: 8px 30px;
  width: 200px;
  margin-bottom: 1rem;
  font-size: 18px;
  margin-top: 1rem;
}
.login .row-box button.login-button:hover {
  background-color: #097457;
  color: #ffffff;
}
.login .row-box a.forget-passowrd {
  color: #d20000;
  display: block;
}
.login .row-box a.forget-passowrd:hover {
  color: #9f0000;
}
.login .row-box p.not-have {
  margin-top: 1rem;
}
.login .row-box p.not-have a {
  color: #0ca47b;
  font-weight: 700;
  text-decoration: underline;
}
.login .nav-tabs {
  background-color: #0ca47b;
  border: none;
  --bs-nav-tabs-border-width: 0;
  border-radius: 28px;
  padding: 0.3rem;
}
.login .nav-tabs .nav-link.active,
.login .nav-link {
  border-radius: 28px;
  font-weight: 700;
  font-size: 13px;
  color: #222;
  padding: 0.8rem 2rem;
}
.login .nav-tabs .nav-link {
  color: #f2f2f2;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.breadcrumb {
  background-color: #f2f2f2;
  padding: 0.5rem 0;
}
.breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: ">";
}
.breadcrumb ol {
  display: flex;
}
.breadcrumb ol li {
  font-size: 18px;
  color: #222;
  font-weight: 500;
}
.breadcrumb ol li a {
  color: #0ca47b;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.breadcrumb ol li a:hover {
  color: #097457;
}

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
.pagination li a {
  color: #222;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  display: block;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease-in-out;
}
.pagination li a:hover {
  color: #0ca47b;
  background: #fff;
}
.pagination li.active a {
  background: #0ca47b;
  color: #fff;
  border-color: #0ca47b;
}

.sidebar {
  border: 1px solid #e1e1e1;
  border-radius: 21px;
  height: 100%;
}
.sidebar li {
  padding: 1rem;
  border-bottom: 1px solid #e1e1e1;
}
.sidebar li a {
  color: #222;
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
  display: block;
  transition: all 0.3s ease-in-out;
}
.sidebar li a:hover {
  color: #0ca47b;
}
.sidebar li a.active {
  color: #0ca47b;
  font-weight: 700;
}
.sidebar li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

h2.profile-title {
  font-weight: 700;
  font-size: 24px;
  color: #0ca47b;
  margin-bottom: 2rem;
  position: relative;
}
h2.profile-title::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0.2rem;
  background: #0ca47b;
  bottom: -0.5rem;
  left: 0;
}

.mainTitle {
  font-weight: 700;
  font-size: 34px;
  color: #0ca47b;
  margin-bottom: 2rem;
}

.offers {
  padding: 2rem 0;
}

.offer-card {
  border: 1px solid #e1e1e1;
  border-radius: 21px;
  margin-top: 0.8rem;
  margin-bottom: 0.8rem;
}
.offer-card .offer-img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 21px 21px 0 0;
}
.offer-card .title-box {
  position: relative;
  margin-top: -10%;
}
.offer-card .title-box h5 {
  color: white;
  background: transparent;
  font-size: 20px;
  position: relative;
  top: 0px;
  right: 0px;
  z-index: 2;
  padding: 20px;
  width: 80%;
  line-height: 1.6;
}
.offer-card .title-box h5::before {
  content: "";
  width: 100%;
  background-color: #0ca47b;
  position: absolute;
  top: 0px;
  padding: 8px;
  right: 0px;
  transform: perspective(248px) rotateX(-35deg);
  transform-origin: 100% 50%;
  z-index: -1;
  height: 100%;
}
.offer-card .offer-card-content {
  padding: 0 1rem 2rem 1rem;
  position: relative;
}
.offer-card .offer-card-content p {
  margin: 0;
  font-weight: 600;
  font-size: 16px;
}
.offer-card .offer-card-content .status {
  background: #f2f2f2;
  padding: 0.5rem 1rem;
  border-radius: 7px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.offer-card .offer-card-content .confirm-message {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  color: #d20000;
  font-size: 14px;
  text-align: center;
}

.rating {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.rating i {
  color: #ccc;
  font-size: 18px;
}
.rating i.checked {
  color: gold;
}

.filter-box {
  background: #f8f8f8;
  border-radius: 12px;
  margin-top: 1rem;
  margin-bottom: 2rem;
  padding: 1rem;
}
.filter-box .stars_box {
  display: flex;
  gap: 0.2rem;
  justify-content: space-around;
  margin-top: 1rem;
}
.filter-box .stars_box .checkbox_box {
  border-radius: 5px;
  margin-top: 0.5rem;
}
.filter-box .stars_box .checkbox_box label {
  cursor: pointer;
}
.filter-box .stars_box .checkbox_box input {
  display: none;
}
.filter-box .stars_box .checkbox_box .all {
  background: #fff;
  display: flex;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0.2rem;
  width: 4rem;
  height: 3rem;
  font-size: 0.8rem;
  color: #4e4e4e;
  border: 1px solid #d5d5d5;
}
.filter-box .stars_box .checkbox_box .all p {
  margin: 0;
}
.filter-box .stars_box .checkbox_box input.active + .all {
  background: rgba(12, 164, 123, 0.2588235294);
  border-color: #0ca47b;
}
.filter-box button.filter {
  margin-top: 1.5rem;
  width: 100%;
}

.profile {
  padding: 3rem 0;
}
.profile .profile-img-box {
  border: 1rem;
  border: 1px solid #d6d6d6;
  border-radius: 10px;
  margin-bottom: 2rem;
}
.profile .profile-img-box img {
  padding: 1rem;
  width: 200px;
  height: 200px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.profile .profile-img-box label {
  font-weight: 700;
  font-size: 20px;
  color: #0ca47b;
  background: #f2f2f2;
  padding: 0.5rem 1rem;
  border-radius: 0 0 10px 10px;
  display: block;
  text-align: center;
  cursor: pointer;
}
.profile .profile-img-box input {
  display: none;
}
.profile .inputs-info {
  background: #f3f3f3;
  display: flex;
  align-items: center;
  padding: 1rem;
  border-radius: 0.4rem;
  margin-bottom: 1rem;
}
.profile .inputs-info h5 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}

.add-rating-box {
  padding: 2rem;
  border-radius: 1rem;
  background: #f3f3f3;
  margin-bottom: 2rem;
}
.add-rating-box .title {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.add-rating-box .title h5 {
  font-weight: 700;
  font-size: 20px;
  color: #222;
  margin: 0;
}

.project-detials {
  padding: 2rem 0;
}
.project-detials .project-title {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.project-detials .project-title img {
  height: 50px;
}
.project-detials .project-title h4 {
  font-weight: 700;
  font-size: 24px;
  color: #222;
  margin: 0;
}
.project-detials .project-slider .carousel-indicators {
  margin-top: 0.8rem;
  position: relative;
  left: unset;
  bottom: unset;
  right: unset;
  z-index: 2;
  margin-left: unset;
  margin-bottom: 1rem;
  margin-right: unset;
  overflow-y: auto;
  height: 650px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.project-detials .project-slider .carousel-indicators [data-bs-target] {
  box-sizing: unset;
  flex: unset;
  width: unset;
  height: unset;
  padding: 0;
  margin-left: unset;
  margin-right: unset;
  text-indent: unset;
  background-color: unset;
  background-clip: unset;
  border: 0;
  border-top: unset;
  border-bottom: unset;
  opacity: 0.5;
  transition: opacity 0.6s ease;
}
.project-detials .project-slider .carousel-indicators .active {
  opacity: 1;
}
.project-detials .project-slider .carousel-indicators button {
  border: none;
  padding: 0;
  background: transparent;
  display: flex;
}
.project-detials .project-slider .carousel-indicators img {
  width: 150px;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1rem;
  border: 1px solid #ccc;
}
.project-detials .project-slider .carousel-inner {
  border-radius: 1rem;
}
.project-detials .project-slider .carousel-inner img {
  border-radius: 1rem;
  width: 100%;
  height: 650px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid #ccc;
}
.project-detials .project-slider .carousel-control-next,
.project-detials .project-slider .carousel-control-prev {
  width: 3%;
  opacity: 0.8;
}
.project-detials .project-slider .carousel-control-next-icon,
.project-detials .project-slider .carousel-control-prev-icon {
  background-color: #0ca47b;
  border-radius: 5px;
  padding: 1rem;
  width: 40px;
  height: 40px;
  margin-bottom: 0rem;
}
.project-detials .company-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}
.project-detials .detials-tabs {
  margin-top: 2rem;
}
.project-detials .detials-tabs .nav-tabs {
  border: none;
  background: #bbe2d8;
  border-radius: 0.5rem;
  padding: 0.4rem;
  margin-top: 4rem;
}
.project-detials .detials-tabs .nav-tabs .nav-item {
  width: 48%;
  margin: 0 1%;
  text-align: center;
}
.project-detials .detials-tabs .nav-tabs .nav-item .nav-link {
  width: 100%;
  color: #000;
  font-size: 18px;
  font-weight: 700;
  border-radius: 0.5rem;
  border-color: transparent;
}
.project-detials .detials-tabs .nav-tabs .nav-item .nav-link.active {
  color: #0ca47b;
  border-color: #0ca47b;
}
.project-detials .map-area iframe {
  width: 80%;
  height: 400px;
}
.project-detials .price-box {
  background: #f8f8f8;
  border-radius: 0.5rem;
  padding: 2rem;
  margin-top: 2rem;
}

.progress-card {
  border-radius: 0.8rem;
  padding: 2rem;
  margin-top: 2rem;
  border: 1px solid #e1e1e1;
  min-height: 187px;
}
.progress-card h4 {
  color: #222;
  font-size: 22px;
  font-weight: 700;
}
.progress-card .progress {
  width: 100px;
  height: 100px;
  line-height: 100px;
  background: none;
  margin: 0 auto;
  box-shadow: none;
  position: relative;
}
.progress-card .progress:after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 10px solid rgba(12, 164, 123, 0.1882352941);
  position: absolute;
  top: 0;
  left: 0;
}
.progress-card .progress > span {
  width: 50%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  z-index: 1;
}
.progress-card .progress .progress-left {
  left: 0;
}
.progress-card .progress .progress-bar {
  width: 100%;
  height: 100%;
  background: none;
  border-width: 10px;
  border-style: solid;
  position: absolute;
  top: 0;
  border-color: #08a47b;
}
.progress-card .progress .progress-left .progress-bar {
  left: 100%;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
  border-left: 0;
  transform-origin: center left;
}
.progress-card .progress .progress-right {
  right: 0;
}
.progress-card .progress .progress-right .progress-bar {
  left: -100%;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  border-right: 0;
  transform-origin: center right;
}
.progress-card .progress .progress-value {
  display: flex;
  border-radius: 50%;
  font-size: 1.2rem;
  text-align: center;
  line-height: 20px;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  font-weight: 800;
}
.progress-card .progress .progress-value span {
  font-size: 12px;
  text-transform: uppercase;
}
.progress-card .progress[data-percentage="1"] .progress-right .progress-bar {
  animation: loading-1 0.5s linear forwards;
}
.progress-card .progress[data-percentage="1"] .progress-left .progress-bar {
  animation: 0;
}
.progress-card .progress[data-percentage="2"] .progress-right .progress-bar {
  animation: loading-2 0.5s linear forwards;
}
.progress-card .progress[data-percentage="2"] .progress-left .progress-bar {
  animation: 0;
}
.progress-card .progress[data-percentage="3"] .progress-right .progress-bar {
  animation: loading-3 0.5s linear forwards;
}
.progress-card .progress[data-percentage="3"] .progress-left .progress-bar {
  animation: 0;
}
.progress-card .progress[data-percentage="4"] .progress-right .progress-bar {
  animation: loading-4 0.5s linear forwards;
}
.progress-card .progress[data-percentage="4"] .progress-left .progress-bar {
  animation: 0;
}
.progress-card .progress[data-percentage="5"] .progress-right .progress-bar {
  animation: loading-5 0.5s linear forwards;
}
.progress-card .progress[data-percentage="5"] .progress-left .progress-bar {
  animation: 0;
}
.progress-card .progress[data-percentage="6"] .progress-right .progress-bar {
  animation: loading-6 0.5s linear forwards;
}
.progress-card .progress[data-percentage="6"] .progress-left .progress-bar {
  animation: 0;
}
.progress-card .progress[data-percentage="7"] .progress-right .progress-bar {
  animation: loading-7 0.5s linear forwards;
}
.progress-card .progress[data-percentage="7"] .progress-left .progress-bar {
  animation: 0;
}
.progress-card .progress[data-percentage="8"] .progress-right .progress-bar {
  animation: loading-8 0.5s linear forwards;
}
.progress-card .progress[data-percentage="8"] .progress-left .progress-bar {
  animation: 0;
}
.progress-card .progress[data-percentage="9"] .progress-right .progress-bar {
  animation: loading-9 0.5s linear forwards;
}
.progress-card .progress[data-percentage="9"] .progress-left .progress-bar {
  animation: 0;
}
.progress-card .progress[data-percentage="10"] .progress-right .progress-bar {
  animation: loading-10 0.5s linear forwards;
}
.progress-card .progress[data-percentage="10"] .progress-left .progress-bar {
  animation: 0;
}
.progress-card .progress[data-percentage="11"] .progress-right .progress-bar {
  animation: loading-11 0.5s linear forwards;
}
.progress-card .progress[data-percentage="11"] .progress-left .progress-bar {
  animation: 0;
}
.progress-card .progress[data-percentage="12"] .progress-right .progress-bar {
  animation: loading-12 0.5s linear forwards;
}
.progress-card .progress[data-percentage="12"] .progress-left .progress-bar {
  animation: 0;
}
.progress-card .progress[data-percentage="13"] .progress-right .progress-bar {
  animation: loading-13 0.5s linear forwards;
}
.progress-card .progress[data-percentage="13"] .progress-left .progress-bar {
  animation: 0;
}
.progress-card .progress[data-percentage="14"] .progress-right .progress-bar {
  animation: loading-14 0.5s linear forwards;
}
.progress-card .progress[data-percentage="14"] .progress-left .progress-bar {
  animation: 0;
}
.progress-card .progress[data-percentage="15"] .progress-right .progress-bar {
  animation: loading-15 0.5s linear forwards;
}
.progress-card .progress[data-percentage="15"] .progress-left .progress-bar {
  animation: 0;
}
.progress-card .progress[data-percentage="16"] .progress-right .progress-bar {
  animation: loading-16 0.5s linear forwards;
}
.progress-card .progress[data-percentage="16"] .progress-left .progress-bar {
  animation: 0;
}
.progress-card .progress[data-percentage="17"] .progress-right .progress-bar {
  animation: loading-17 0.5s linear forwards;
}
.progress-card .progress[data-percentage="17"] .progress-left .progress-bar {
  animation: 0;
}
.progress-card .progress[data-percentage="18"] .progress-right .progress-bar {
  animation: loading-18 0.5s linear forwards;
}
.progress-card .progress[data-percentage="18"] .progress-left .progress-bar {
  animation: 0;
}
.progress-card .progress[data-percentage="19"] .progress-right .progress-bar {
  animation: loading-19 0.5s linear forwards;
}
.progress-card .progress[data-percentage="19"] .progress-left .progress-bar {
  animation: 0;
}
.progress-card .progress[data-percentage="20"] .progress-right .progress-bar {
  animation: loading-20 0.5s linear forwards;
}
.progress-card .progress[data-percentage="20"] .progress-left .progress-bar {
  animation: 0;
}
.progress-card .progress[data-percentage="21"] .progress-right .progress-bar {
  animation: loading-21 0.5s linear forwards;
}
.progress-card .progress[data-percentage="21"] .progress-left .progress-bar {
  animation: 0;
}
.progress-card .progress[data-percentage="22"] .progress-right .progress-bar {
  animation: loading-22 0.5s linear forwards;
}
.progress-card .progress[data-percentage="22"] .progress-left .progress-bar {
  animation: 0;
}
.progress-card .progress[data-percentage="23"] .progress-right .progress-bar {
  animation: loading-23 0.5s linear forwards;
}
.progress-card .progress[data-percentage="23"] .progress-left .progress-bar {
  animation: 0;
}
.progress-card .progress[data-percentage="24"] .progress-right .progress-bar {
  animation: loading-24 0.5s linear forwards;
}
.progress-card .progress[data-percentage="24"] .progress-left .progress-bar {
  animation: 0;
}
.progress-card .progress[data-percentage="25"] .progress-right .progress-bar {
  animation: loading-25 0.5s linear forwards;
}
.progress-card .progress[data-percentage="25"] .progress-left .progress-bar {
  animation: 0;
}
.progress-card .progress[data-percentage="26"] .progress-right .progress-bar {
  animation: loading-26 0.5s linear forwards;
}
.progress-card .progress[data-percentage="26"] .progress-left .progress-bar {
  animation: 0;
}
.progress-card .progress[data-percentage="27"] .progress-right .progress-bar {
  animation: loading-27 0.5s linear forwards;
}
.progress-card .progress[data-percentage="27"] .progress-left .progress-bar {
  animation: 0;
}
.progress-card .progress[data-percentage="28"] .progress-right .progress-bar {
  animation: loading-28 0.5s linear forwards;
}
.progress-card .progress[data-percentage="28"] .progress-left .progress-bar {
  animation: 0;
}
.progress-card .progress[data-percentage="29"] .progress-right .progress-bar {
  animation: loading-29 0.5s linear forwards;
}
.progress-card .progress[data-percentage="29"] .progress-left .progress-bar {
  animation: 0;
}
.progress-card .progress[data-percentage="30"] .progress-right .progress-bar {
  animation: loading-30 0.5s linear forwards;
}
.progress-card .progress[data-percentage="30"] .progress-left .progress-bar {
  animation: 0;
}
.progress-card .progress[data-percentage="31"] .progress-right .progress-bar {
  animation: loading-31 0.5s linear forwards;
}
.progress-card .progress[data-percentage="31"] .progress-left .progress-bar {
  animation: 0;
}
.progress-card .progress[data-percentage="32"] .progress-right .progress-bar {
  animation: loading-32 0.5s linear forwards;
}
.progress-card .progress[data-percentage="32"] .progress-left .progress-bar {
  animation: 0;
}
.progress-card .progress[data-percentage="33"] .progress-right .progress-bar {
  animation: loading-33 0.5s linear forwards;
}
.progress-card .progress[data-percentage="33"] .progress-left .progress-bar {
  animation: 0;
}
.progress-card .progress[data-percentage="34"] .progress-right .progress-bar {
  animation: loading-34 0.5s linear forwards;
}
.progress-card .progress[data-percentage="34"] .progress-left .progress-bar {
  animation: 0;
}
.progress-card .progress[data-percentage="35"] .progress-right .progress-bar {
  animation: loading-35 0.5s linear forwards;
}
.progress-card .progress[data-percentage="35"] .progress-left .progress-bar {
  animation: 0;
}
.progress-card .progress[data-percentage="36"] .progress-right .progress-bar {
  animation: loading-36 0.5s linear forwards;
}
.progress-card .progress[data-percentage="36"] .progress-left .progress-bar {
  animation: 0;
}
.progress-card .progress[data-percentage="37"] .progress-right .progress-bar {
  animation: loading-37 0.5s linear forwards;
}
.progress-card .progress[data-percentage="37"] .progress-left .progress-bar {
  animation: 0;
}
.progress-card .progress[data-percentage="38"] .progress-right .progress-bar {
  animation: loading-38 0.5s linear forwards;
}
.progress-card .progress[data-percentage="38"] .progress-left .progress-bar {
  animation: 0;
}
.progress-card .progress[data-percentage="39"] .progress-right .progress-bar {
  animation: loading-39 0.5s linear forwards;
}
.progress-card .progress[data-percentage="39"] .progress-left .progress-bar {
  animation: 0;
}
.progress-card .progress[data-percentage="40"] .progress-right .progress-bar {
  animation: loading-40 0.5s linear forwards;
}
.progress-card .progress[data-percentage="40"] .progress-left .progress-bar {
  animation: 0;
}
.progress-card .progress[data-percentage="41"] .progress-right .progress-bar {
  animation: loading-41 0.5s linear forwards;
}
.progress-card .progress[data-percentage="41"] .progress-left .progress-bar {
  animation: 0;
}
.progress-card .progress[data-percentage="42"] .progress-right .progress-bar {
  animation: loading-42 0.5s linear forwards;
}
.progress-card .progress[data-percentage="42"] .progress-left .progress-bar {
  animation: 0;
}
.progress-card .progress[data-percentage="43"] .progress-right .progress-bar {
  animation: loading-43 0.5s linear forwards;
}
.progress-card .progress[data-percentage="43"] .progress-left .progress-bar {
  animation: 0;
}
.progress-card .progress[data-percentage="44"] .progress-right .progress-bar {
  animation: loading-44 0.5s linear forwards;
}
.progress-card .progress[data-percentage="44"] .progress-left .progress-bar {
  animation: 0;
}
.progress-card .progress[data-percentage="45"] .progress-right .progress-bar {
  animation: loading-45 0.5s linear forwards;
}
.progress-card .progress[data-percentage="45"] .progress-left .progress-bar {
  animation: 0;
}
.progress-card .progress[data-percentage="46"] .progress-right .progress-bar {
  animation: loading-46 0.5s linear forwards;
}
.progress-card .progress[data-percentage="46"] .progress-left .progress-bar {
  animation: 0;
}
.progress-card .progress[data-percentage="47"] .progress-right .progress-bar {
  animation: loading-47 0.5s linear forwards;
}
.progress-card .progress[data-percentage="47"] .progress-left .progress-bar {
  animation: 0;
}
.progress-card .progress[data-percentage="48"] .progress-right .progress-bar {
  animation: loading-48 0.5s linear forwards;
}
.progress-card .progress[data-percentage="48"] .progress-left .progress-bar {
  animation: 0;
}
.progress-card .progress[data-percentage="49"] .progress-right .progress-bar {
  animation: loading-49 0.5s linear forwards;
}
.progress-card .progress[data-percentage="49"] .progress-left .progress-bar {
  animation: 0;
}
.progress-card .progress[data-percentage="50"] .progress-right .progress-bar {
  animation: loading-50 0.5s linear forwards;
}
.progress-card .progress[data-percentage="50"] .progress-left .progress-bar {
  animation: 0;
}
.progress-card .progress[data-percentage="51"] .progress-right .progress-bar {
  animation: loading-50 0.5s linear forwards;
}
.progress-card .progress[data-percentage="51"] .progress-left .progress-bar {
  animation: loading-1 0.5s linear forwards 0.5s;
}
.progress-card .progress[data-percentage="52"] .progress-right .progress-bar {
  animation: loading-50 0.5s linear forwards;
}
.progress-card .progress[data-percentage="52"] .progress-left .progress-bar {
  animation: loading-2 0.5s linear forwards 0.5s;
}
.progress-card .progress[data-percentage="53"] .progress-right .progress-bar {
  animation: loading-50 0.5s linear forwards;
}
.progress-card .progress[data-percentage="53"] .progress-left .progress-bar {
  animation: loading-3 0.5s linear forwards 0.5s;
}
.progress-card .progress[data-percentage="54"] .progress-right .progress-bar {
  animation: loading-50 0.5s linear forwards;
}
.progress-card .progress[data-percentage="54"] .progress-left .progress-bar {
  animation: loading-4 0.5s linear forwards 0.5s;
}
.progress-card .progress[data-percentage="55"] .progress-right .progress-bar {
  animation: loading-50 0.5s linear forwards;
}
.progress-card .progress[data-percentage="55"] .progress-left .progress-bar {
  animation: loading-5 0.5s linear forwards 0.5s;
}
.progress-card .progress[data-percentage="56"] .progress-right .progress-bar {
  animation: loading-50 0.5s linear forwards;
}
.progress-card .progress[data-percentage="56"] .progress-left .progress-bar {
  animation: loading-6 0.5s linear forwards 0.5s;
}
.progress-card .progress[data-percentage="57"] .progress-right .progress-bar {
  animation: loading-50 0.5s linear forwards;
}
.progress-card .progress[data-percentage="57"] .progress-left .progress-bar {
  animation: loading-7 0.5s linear forwards 0.5s;
}
.progress-card .progress[data-percentage="58"] .progress-right .progress-bar {
  animation: loading-50 0.5s linear forwards;
}
.progress-card .progress[data-percentage="58"] .progress-left .progress-bar {
  animation: loading-8 0.5s linear forwards 0.5s;
}
.progress-card .progress[data-percentage="59"] .progress-right .progress-bar {
  animation: loading-50 0.5s linear forwards;
}
.progress-card .progress[data-percentage="59"] .progress-left .progress-bar {
  animation: loading-9 0.5s linear forwards 0.5s;
}
.progress-card .progress[data-percentage="60"] .progress-right .progress-bar {
  animation: loading-50 0.5s linear forwards;
}
.progress-card .progress[data-percentage="60"] .progress-left .progress-bar {
  animation: loading-10 0.5s linear forwards 0.5s;
}
.progress-card .progress[data-percentage="61"] .progress-right .progress-bar {
  animation: loading-50 0.5s linear forwards;
}
.progress-card .progress[data-percentage="61"] .progress-left .progress-bar {
  animation: loading-11 0.5s linear forwards 0.5s;
}
.progress-card .progress[data-percentage="62"] .progress-right .progress-bar {
  animation: loading-50 0.5s linear forwards;
}
.progress-card .progress[data-percentage="62"] .progress-left .progress-bar {
  animation: loading-12 0.5s linear forwards 0.5s;
}
.progress-card .progress[data-percentage="63"] .progress-right .progress-bar {
  animation: loading-50 0.5s linear forwards;
}
.progress-card .progress[data-percentage="63"] .progress-left .progress-bar {
  animation: loading-13 0.5s linear forwards 0.5s;
}
.progress-card .progress[data-percentage="64"] .progress-right .progress-bar {
  animation: loading-50 0.5s linear forwards;
}
.progress-card .progress[data-percentage="64"] .progress-left .progress-bar {
  animation: loading-14 0.5s linear forwards 0.5s;
}
.progress-card .progress[data-percentage="65"] .progress-right .progress-bar {
  animation: loading-50 0.5s linear forwards;
}
.progress-card .progress[data-percentage="65"] .progress-left .progress-bar {
  animation: loading-15 0.5s linear forwards 0.5s;
}
.progress-card .progress[data-percentage="66"] .progress-right .progress-bar {
  animation: loading-50 0.5s linear forwards;
}
.progress-card .progress[data-percentage="66"] .progress-left .progress-bar {
  animation: loading-16 0.5s linear forwards 0.5s;
}
.progress-card .progress[data-percentage="67"] .progress-right .progress-bar {
  animation: loading-50 0.5s linear forwards;
}
.progress-card .progress[data-percentage="67"] .progress-left .progress-bar {
  animation: loading-17 0.5s linear forwards 0.5s;
}
.progress-card .progress[data-percentage="68"] .progress-right .progress-bar {
  animation: loading-50 0.5s linear forwards;
}
.progress-card .progress[data-percentage="68"] .progress-left .progress-bar {
  animation: loading-18 0.5s linear forwards 0.5s;
}
.progress-card .progress[data-percentage="69"] .progress-right .progress-bar {
  animation: loading-50 0.5s linear forwards;
}
.progress-card .progress[data-percentage="69"] .progress-left .progress-bar {
  animation: loading-19 0.5s linear forwards 0.5s;
}
.progress-card .progress[data-percentage="70"] .progress-right .progress-bar {
  animation: loading-50 0.5s linear forwards;
}
.progress-card .progress[data-percentage="70"] .progress-left .progress-bar {
  animation: loading-20 0.5s linear forwards 0.5s;
}
.progress-card .progress[data-percentage="71"] .progress-right .progress-bar {
  animation: loading-50 0.5s linear forwards;
}
.progress-card .progress[data-percentage="71"] .progress-left .progress-bar {
  animation: loading-21 0.5s linear forwards 0.5s;
}
.progress-card .progress[data-percentage="72"] .progress-right .progress-bar {
  animation: loading-50 0.5s linear forwards;
}
.progress-card .progress[data-percentage="72"] .progress-left .progress-bar {
  animation: loading-22 0.5s linear forwards 0.5s;
}
.progress-card .progress[data-percentage="73"] .progress-right .progress-bar {
  animation: loading-50 0.5s linear forwards;
}
.progress-card .progress[data-percentage="73"] .progress-left .progress-bar {
  animation: loading-23 0.5s linear forwards 0.5s;
}
.progress-card .progress[data-percentage="74"] .progress-right .progress-bar {
  animation: loading-50 0.5s linear forwards;
}
.progress-card .progress[data-percentage="74"] .progress-left .progress-bar {
  animation: loading-24 0.5s linear forwards 0.5s;
}
.progress-card .progress[data-percentage="75"] .progress-right .progress-bar {
  animation: loading-50 0.5s linear forwards;
}
.progress-card .progress[data-percentage="75"] .progress-left .progress-bar {
  animation: loading-25 0.5s linear forwards 0.5s;
}
.progress-card .progress[data-percentage="76"] .progress-right .progress-bar {
  animation: loading-50 0.5s linear forwards;
}
.progress-card .progress[data-percentage="76"] .progress-left .progress-bar {
  animation: loading-26 0.5s linear forwards 0.5s;
}
.progress-card .progress[data-percentage="77"] .progress-right .progress-bar {
  animation: loading-50 0.5s linear forwards;
}
.progress-card .progress[data-percentage="77"] .progress-left .progress-bar {
  animation: loading-27 0.5s linear forwards 0.5s;
}
.progress-card .progress[data-percentage="78"] .progress-right .progress-bar {
  animation: loading-50 0.5s linear forwards;
}
.progress-card .progress[data-percentage="78"] .progress-left .progress-bar {
  animation: loading-28 0.5s linear forwards 0.5s;
}
.progress-card .progress[data-percentage="79"] .progress-right .progress-bar {
  animation: loading-50 0.5s linear forwards;
}
.progress-card .progress[data-percentage="79"] .progress-left .progress-bar {
  animation: loading-29 0.5s linear forwards 0.5s;
}
.progress-card .progress[data-percentage="80"] .progress-right .progress-bar {
  animation: loading-50 0.5s linear forwards;
}
.progress-card .progress[data-percentage="80"] .progress-left .progress-bar {
  animation: loading-30 0.5s linear forwards 0.5s;
}
.progress-card .progress[data-percentage="81"] .progress-right .progress-bar {
  animation: loading-50 0.5s linear forwards;
}
.progress-card .progress[data-percentage="81"] .progress-left .progress-bar {
  animation: loading-31 0.5s linear forwards 0.5s;
}
.progress-card .progress[data-percentage="82"] .progress-right .progress-bar {
  animation: loading-50 0.5s linear forwards;
}
.progress-card .progress[data-percentage="82"] .progress-left .progress-bar {
  animation: loading-32 0.5s linear forwards 0.5s;
}
.progress-card .progress[data-percentage="83"] .progress-right .progress-bar {
  animation: loading-50 0.5s linear forwards;
}
.progress-card .progress[data-percentage="83"] .progress-left .progress-bar {
  animation: loading-33 0.5s linear forwards 0.5s;
}
.progress-card .progress[data-percentage="84"] .progress-right .progress-bar {
  animation: loading-50 0.5s linear forwards;
}
.progress-card .progress[data-percentage="84"] .progress-left .progress-bar {
  animation: loading-34 0.5s linear forwards 0.5s;
}
.progress-card .progress[data-percentage="85"] .progress-right .progress-bar {
  animation: loading-50 0.5s linear forwards;
}
.progress-card .progress[data-percentage="85"] .progress-left .progress-bar {
  animation: loading-35 0.5s linear forwards 0.5s;
}
.progress-card .progress[data-percentage="86"] .progress-right .progress-bar {
  animation: loading-50 0.5s linear forwards;
}
.progress-card .progress[data-percentage="86"] .progress-left .progress-bar {
  animation: loading-36 0.5s linear forwards 0.5s;
}
.progress-card .progress[data-percentage="87"] .progress-right .progress-bar {
  animation: loading-50 0.5s linear forwards;
}
.progress-card .progress[data-percentage="87"] .progress-left .progress-bar {
  animation: loading-37 0.5s linear forwards 0.5s;
}
.progress-card .progress[data-percentage="88"] .progress-right .progress-bar {
  animation: loading-50 0.5s linear forwards;
}
.progress-card .progress[data-percentage="88"] .progress-left .progress-bar {
  animation: loading-38 0.5s linear forwards 0.5s;
}
.progress-card .progress[data-percentage="89"] .progress-right .progress-bar {
  animation: loading-50 0.5s linear forwards;
}
.progress-card .progress[data-percentage="89"] .progress-left .progress-bar {
  animation: loading-39 0.5s linear forwards 0.5s;
}
.progress-card .progress[data-percentage="90"] .progress-right .progress-bar {
  animation: loading-50 0.5s linear forwards;
}
.progress-card .progress[data-percentage="90"] .progress-left .progress-bar {
  animation: loading-40 0.5s linear forwards 0.5s;
}
.progress-card .progress[data-percentage="91"] .progress-right .progress-bar {
  animation: loading-50 0.5s linear forwards;
}
.progress-card .progress[data-percentage="91"] .progress-left .progress-bar {
  animation: loading-41 0.5s linear forwards 0.5s;
}
.progress-card .progress[data-percentage="92"] .progress-right .progress-bar {
  animation: loading-50 0.5s linear forwards;
}
.progress-card .progress[data-percentage="92"] .progress-left .progress-bar {
  animation: loading-42 0.5s linear forwards 0.5s;
}
.progress-card .progress[data-percentage="93"] .progress-right .progress-bar {
  animation: loading-50 0.5s linear forwards;
}
.progress-card .progress[data-percentage="93"] .progress-left .progress-bar {
  animation: loading-43 0.5s linear forwards 0.5s;
}
.progress-card .progress[data-percentage="94"] .progress-right .progress-bar {
  animation: loading-50 0.5s linear forwards;
}
.progress-card .progress[data-percentage="94"] .progress-left .progress-bar {
  animation: loading-44 0.5s linear forwards 0.5s;
}
.progress-card .progress[data-percentage="95"] .progress-right .progress-bar {
  animation: loading-50 0.5s linear forwards;
}
.progress-card .progress[data-percentage="95"] .progress-left .progress-bar {
  animation: loading-45 0.5s linear forwards 0.5s;
}
.progress-card .progress[data-percentage="96"] .progress-right .progress-bar {
  animation: loading-50 0.5s linear forwards;
}
.progress-card .progress[data-percentage="96"] .progress-left .progress-bar {
  animation: loading-46 0.5s linear forwards 0.5s;
}
.progress-card .progress[data-percentage="97"] .progress-right .progress-bar {
  animation: loading-50 0.5s linear forwards;
}
.progress-card .progress[data-percentage="97"] .progress-left .progress-bar {
  animation: loading-47 0.5s linear forwards 0.5s;
}
.progress-card .progress[data-percentage="98"] .progress-right .progress-bar {
  animation: loading-50 0.5s linear forwards;
}
.progress-card .progress[data-percentage="98"] .progress-left .progress-bar {
  animation: loading-48 0.5s linear forwards 0.5s;
}
.progress-card .progress[data-percentage="99"] .progress-right .progress-bar {
  animation: loading-50 0.5s linear forwards;
}
.progress-card .progress[data-percentage="99"] .progress-left .progress-bar {
  animation: loading-49 0.5s linear forwards 0.5s;
}
.progress-card .progress[data-percentage="100"] .progress-right .progress-bar {
  animation: loading-50 0.5s linear forwards;
}
.progress-card .progress[data-percentage="100"] .progress-left .progress-bar {
  animation: loading-50 0.5s linear forwards 0.5s;
}
@keyframes loading-1 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(3.6deg);
  }
}
@keyframes loading-2 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(7.2deg);
  }
}
@keyframes loading-3 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(10.8deg);
  }
}
@keyframes loading-4 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(14.4deg);
  }
}
@keyframes loading-5 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(18deg);
  }
}
@keyframes loading-6 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(21.6deg);
  }
}
@keyframes loading-7 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(25.2deg);
  }
}
@keyframes loading-8 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(28.8deg);
  }
}
@keyframes loading-9 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(32.4deg);
  }
}
@keyframes loading-10 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(36deg);
  }
}
@keyframes loading-11 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(39.6deg);
  }
}
@keyframes loading-12 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(43.2deg);
  }
}
@keyframes loading-13 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(46.8deg);
  }
}
@keyframes loading-14 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(50.4deg);
  }
}
@keyframes loading-15 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(54deg);
  }
}
@keyframes loading-16 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(57.6deg);
  }
}
@keyframes loading-17 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(61.2deg);
  }
}
@keyframes loading-18 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(64.8deg);
  }
}
@keyframes loading-19 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(68.4deg);
  }
}
@keyframes loading-20 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(72deg);
  }
}
@keyframes loading-21 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(75.6deg);
  }
}
@keyframes loading-22 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(79.2deg);
  }
}
@keyframes loading-23 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(82.8deg);
  }
}
@keyframes loading-24 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(86.4deg);
  }
}
@keyframes loading-25 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(90deg);
  }
}
@keyframes loading-26 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(93.6deg);
  }
}
@keyframes loading-27 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(97.2deg);
  }
}
@keyframes loading-28 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(100.8deg);
  }
}
@keyframes loading-29 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(104.4deg);
  }
}
@keyframes loading-30 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(108deg);
  }
}
@keyframes loading-31 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(111.6deg);
  }
}
@keyframes loading-32 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(115.2deg);
  }
}
@keyframes loading-33 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(118.8deg);
  }
}
@keyframes loading-34 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(122.4deg);
  }
}
@keyframes loading-35 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(126deg);
  }
}
@keyframes loading-36 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(129.6deg);
  }
}
@keyframes loading-37 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(133.2deg);
  }
}
@keyframes loading-38 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(136.8deg);
  }
}
@keyframes loading-39 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(140.4deg);
  }
}
@keyframes loading-40 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(144deg);
  }
}
@keyframes loading-41 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(147.6deg);
  }
}
@keyframes loading-42 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(151.2deg);
  }
}
@keyframes loading-43 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(154.8deg);
  }
}
@keyframes loading-44 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(158.4deg);
  }
}
@keyframes loading-45 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(162deg);
  }
}
@keyframes loading-46 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(165.6deg);
  }
}
@keyframes loading-47 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(169.2deg);
  }
}
@keyframes loading-48 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(172.8deg);
  }
}
@keyframes loading-49 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(176.4deg);
  }
}
@keyframes loading-50 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(180deg);
  }
}

.small-card {
  border-radius: 0.5rem;
  padding: 1rem;
  margin-top: 2rem;
  border: 1px solid #e1e1e1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.small-card h6 {
  margin: 0;
}
.small-card i {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: white;
}
.small-card i.up {
  background: #0ca47b;
}
.small-card i.down {
  background: #ffc107;
}

.add-rate-box {
  background: #f8f8f8;
  border-radius: 0.5rem;
  margin-top: 2rem;
  padding: 0.9rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.add-rate-box h5 {
  margin: 0;
  font-weight: 700;
  font-size: 1rem;
}

.detials-tabs {
  margin-top: 2rem;
}
.detials-tabs .nav-tabs {
  border: none;
  background: #bbe2d8;
  border-radius: 0.5rem;
  padding: 0.4rem;
  margin-top: 4rem;
}
.detials-tabs .nav-tabs .nav-item {
  width: 48%;
  margin: 0 1%;
  text-align: center;
}
.detials-tabs .nav-tabs .nav-item .nav-link {
  width: 100%;
  color: #000;
  font-size: 18px;
  font-weight: 700;
  border-radius: 0.5rem;
  border-color: transparent;
}
.detials-tabs .nav-tabs .nav-item .nav-link.active {
  color: #0ca47b;
  border-color: #0ca47b;
}

.rating-box {
  margin: 1rem 0;
  display: flex;
  gap: 1rem;
}

.company-detials {
  padding: 2rem 0;
}
.company-detials .company-img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1rem;
  border: 1px solid #ccc;
  margin-bottom: 2rem;
}
.company-detials .socila {
  display: flex;
  gap: 1rem;
}
.company-detials .socila img {
  height: 40px;
  transition: all 0.3s ease-in-out;
}
.company-detials .socila img:hover {
  transform: scale(1.1);
}

.add-to-fav {
  background: #f3f3f3;
  border-radius: 2rem;
  padding: 1rem 2rem;
  border: none;
}
.add-to-fav .fa-heart {
  color: #d20000;
}

.share {
  background: #f3f3f3;
  border-radius: 2rem;
  padding: 0.8rem 2rem;
  border: none;
}
.share .fa-share-alt {
  color: #0ca47b;
  font-size: 1.4rem;
}

.rating-page .rating-radiobox {
  padding: 1.5rem;
  border: 1px solid #e1e1e1;
  border-radius: 0.8rem;
  margin-bottom: 2rem;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}
.rating-page .rating-radiobox h5 {
  font-size: 1.2rem;
  font-weight: 600;
}
.rating-page .rating-radiobox i {
  color: #ffc107;
  font-size: 1.2rem;
}
.rating-page .rating-radiobox label {
  cursor: pointer;
}
.rating-page textarea {
  border: 1px solid #e1e1e1;
  border-radius: 0.8rem;
}

.add-project {
  padding: 2rem 0;
}
.add-project .project-img {
  margin: 1rem 0;
}
.add-project .project-img img {
  width: 100%;
  height: 200px;
  border-radius: 1rem;
  border: 1px solid #ccc;
  -o-object-fit: cover;
     object-fit: cover;
}
.add-project .add-img-label {
  margin: 1rem 0;
  width: 100%;
  height: 200px;
  border-radius: 1rem;
  border: 2px dashed #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.add-project .add-img-label i {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  color: #ccc;
}
.add-project input.add-img-input {
  display: none;
}

.packages {
  padding: 3rem 0;
}
.packages .title_desc {
  width: 70%;
  margin: 0 auto;
  display: block;
  margin-bottom: 4rem;
}
.packages .package-box {
  box-shadow: 0px 3px 17px rgba(0, 0, 0, 0.1607843137);
  border: 2px solid #e2e2e2;
  border-radius: 21px;
  padding: 0 2rem 2rem 2rem;
}
.packages .package-box .package-head {
  width: 70%;
  margin: 0 auto;
  border-radius: 0 0 1rem 1rem;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0.5rem;
  padding: 2.4rem 1rem;
  margin-bottom: 2rem;
}
.packages .package-box .package-head h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
}
.packages .package-box .package-head p {
  margin: 0;
  font-size: 20px;
}
.packages .package-box .package-body {
  margin-bottom: 2rem;
}
.packages .package-box .package-body .price {
  font-size: 44px;
  font-weight: 500;
  text-align: center;
}
.packages .package-box .package-body .price span {
  font-size: 64px;
  font-weight: 700;
}
.packages .package-box .package-body .del {
  text-decoration: line-through;
  color: #a7a7a7;
  font-size: 40px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 2rem;
}
.packages .package-box ul {
  margin-top: 2rem;
}
.packages .package-box .status {
  background: #f2f2f2;
  padding: 0.5rem 1rem;
  border-radius: 7px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.packages .package-box button {
  background: transparent;
  color: #0ca47b;
  padding: 0.8rem 1rem;
  display: block;
  border-radius: 0.5rem;
  border: 2px solid #0ca47b;
  cursor: pointer;
  transition: 0.3s;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  display: block;
  margin-top: 4rem;
  font-weight: 700;
}
.packages .package-box.silver .package-body .price {
  color: #d0da33;
}
.packages .package-box.silver .package-head {
  background: #d0da33;
}
.packages .package-box.silver button {
  color: #d0da33;
  border-color: #d0da33;
}
.packages .package-box.golden .package-body .price {
  color: #71ba44;
}
.packages .package-box.golden .package-head {
  background: #71ba44;
}
.packages .package-box.golden button {
  color: #71ba44;
  border-color: #71ba44;
}
.packages .package-box.diamond .package-body .price {
  color: #0ca47b;
}
.packages .package-box.diamond .package-head {
  background: #0ca47b;
}
.packages .package-box.diamond button {
  color: #0ca47b;
  border-color: #0ca47b;
}

.user-rating-box {
  margin-bottom: 2rem;
}
.user-rating-box .contet-box {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.user-rating-box .contet-box .rating-desc {
  background: #f3f3f3;
  border-radius: 0.5rem;
  padding: 1rem;
}
.user-rating-box .contet-box .rating-desc p {
  margin: 0;
  line-height: 1.6;
}
.user-rating-box .contet-box .date {
  font-size: 14px;
  color: #71ba44;
  text-align: end;
  display: block;
  margin-top: 0.3rem;
}

.more-button {
  width: 200px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2rem;
  display: block;
}

.login-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

/* Responsive */
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  nav.navbar {
    padding-inline-start: 0;
    gap: 1rem;
  }
  nav.navbar .navbar-box {
    display: block;
  }
  nav.navbar .navbar-box .logo-box {
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    -webkit-clip-path: none;
            clip-path: none;
  }
  nav.navbar .navbar-box .links-box {
    padding: 1rem;
    -webkit-clip-path: none;
            clip-path: none;
  }
  nav.navbar .navbar-box .links-box ul {
    gap: 1rem;
  }
  nav.navbar ul.navbar-nav {
    align-items: flex-start;
  }
  .slider .carousel-inner {
    height: 400px;
  }
  .slider .carousel-inner .carousel-item .carousel-box .slider-content {
    width: 90%;
  }
  .slider .carousel-control-next {
    right: 20%;
  }
  .slider .carousel-inner .carousel-item .carousel-box .slider-content h1 {
    font-size: 2rem;
  }
  .about-us {
    padding: 3rem 0;
  }
  .about-us img {
    width: 100px;
    margin-bottom: 1rem;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
  .about-us .left-side {
    padding-inline-start: 1rem;
    border-inline-start: none;
  }
  .fetures {
    padding: 4rem 0;
  }
  .fetures h1 {
    font-size: 28px;
  }
  .partners {
    padding: 3rem 0;
  }
  .feats .row .cover-img {
    height: unset;
  }
  .feats h2 {
    font-size: 26px;
    text-align: start;
  }
  .feats .feats-box {
    padding: 30px !important;
  }
  .news {
    padding: 3rem 0;
  }
  .testimonials {
    padding: 2rem 0;
  }
  .testimonials h2 {
    font-size: 28px;
  }
  .testimonials .myCard {
    padding-bottom: 0;
  }
  .faqs {
    margin-top: 2rem;
    padding: 3rem 0;
  }
  footer .footer-up .logo {
    height: 40px;
    margin-bottom: 1rem;
  }
  footer .footer-up {
    width: 94%;
  }
  footer .footer-up p {
    font-size: 16px;
    width: 90%;
  }
  .login {
    padding: 3rem 0;
  }
  .login .row-box {
    padding: 2rem 0;
    width: 100%;
    padding-inline-start: 5%;
    padding-inline-end: 5%;
    align-items: center;
    flex-direction: column-reverse;
  }
  .login .row-box .login-img {
    height: 50px;
    margin-bottom: 2rem;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
  .login .row-box h2 {
    font-size: 27px;
  }
  .login .nav-tabs .nav-link.active,
  .login .nav-link {
    border-radius: 28px;
    font-weight: 700;
    font-size: 13px;
    color: #222;
    padding: 0.8rem 1rem;
  }
  .mainTitle {
    margin-bottom: 1rem;
  }
  .profile {
    padding: 2rem 0;
  }
  .project-detials {
    padding: 2rem 0;
  }
  .project-detials .project-slider .carousel-inner img {
    height: 300px;
  }
  .project-detials .project-slider .carousel-indicators {
    flex-direction: row;
    height: 100px;
  }
  .project-detials .project-slider .carousel-indicators img {
    width: 70px;
    height: 70px;
  }
  .company-title {
    flex-direction: column;
  }
  .project-detials .map-area iframe {
    width: 100%;
    height: 300px;
  }
  .project-detials .buttons-box {
    flex-direction: column;
    gap: 1rem;
  }
  .packages .title_desc {
    width: 100%;
    margin-bottom: 1rem;
  }
  .packages .package-box.golden {
    margin-top: 2rem;
  }
  .packages .package-box {
    margin: 2rem 0;
  }
  .user-rating-box .contet-box {
    flex-wrap: wrap;
  }
  .slider .carousel-inner .carousel-item .carousel-box .slider-content p {
    font-size: 1.2rem;
    margin-bottom: 0;
  }
  .slider .carousel-inner .carousel-item .carousel-box .slider-content h1 {
    font-size: 1.6rem;
  }
  .about-us img {
    width: 150px;
  }
  .fetures .gap-4 {
    gap: 0.5rem !important;
  }
  .fetures h3 {
    font-size: 20px;
  }
  .fetures p {
    font-size: 16px;
  }
  .partners h2,
  .faqs h1 {
    font-size: 28px;
  }
  .news .news-big-box img {
    height: 250px;
  }
  .news .news-small-box img {
    width: 150px;
  }
  footer .footer-up {
    padding: 35px 8% 35px 22px;
  }
  footer .footer-bottom ul li {
    font-size: 16px;
  }
  footer .footer-bottom ul {
    gap: 1rem;
  }
  .testimonials .myCard .description {
    position: relative;
    width: 90%;
    left: -25px;
    bottom: 70px;
  }
  .testimonials .carousel-indicators {
    bottom: -20px;
  }
  .slider .carousel-inner .carousel-item .carousel-box .slider-content {
    padding-inline-start: 10%;
    background: rgba(255, 255, 255, 0.6588235294);
    padding: 2rem;
    border-radius: 1rem 0 0 1rem;
    padding-bottom: 1rem;
  }
  .slider .carousel-control-prev-icon,
  .slider .carousel-control-next-icon {
    margin-bottom: 1rem;
  }
  footer .footer-up h5 {
    font-size: 18px;
    margin-top: 10px;
  }
  .login-header {
    flex-direction: column;
    gap: 1rem;
  }
  .slider .carousel-inner .carousel-item .carousel-box .slider-content ul li {
    font-size: 1.2rem;
  }
}
/* galaxy S5 */
/* iphone x, 6/7/8 */
/* iphone 6/7/8 plus */
/* ipad */
/*  large screen  */
/* 17 inch *//*# sourceMappingURL=style.css.map */