* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Raleway", sans-serif;
  scroll-behavior: smooth;
  scroll-margin-top: 50px;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0px 0px !important;
}

.btn {
  border: none !important;
  border-radius: 4px !important;
  text-transform: uppercase !important;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  font-family: "Raleway", sans-serif !important;
  padding: 7px 15px !important;
}
.btn__quote-btn {
  color: #9b205c !important;
  background-color: #fff !important;
  border: 1px solid #3f51b5 !important;
  margin: auto 5px auto 10px;
}
.btn__quote-btn a {
  color: #9b205c;
  text-decoration: none;
}
.btn__contact-btn {
  background-color: #fff !important;
  color: #241648 !important;
  font-weight: 800 !important;
  letter-spacing: 0.5px !important;
}
.btn__contact-btn a {
  color: #241648;
  text-decoration: none;
}
.btn__about-contact-btn {
  background: linear-gradient(0deg, #b72151, #480e5a) !important;
  color: #fff !important;
}
.btn__about-contact-btn a {
  color: #fff;
  text-decoration: none;
}
.btn__submitBtn {
  padding: 10px 25px !important;
}

.btn {
  border: none !important;
  border-radius: 4px !important;
  text-transform: uppercase !important;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  font-family: "Raleway", sans-serif !important;
  padding: 7px 15px !important;
}

.btn__quote-btn {
  color: #9b205c !important;
  background-color: #fff !important;
  border: 1px solid #3f51b5 !important;
  margin: auto 5px auto 10px;
}

.btn__quote-btn a {
  color: #9b205c;
  text-decoration: none;
}

.btn__contact-btn {
  background-color: #fff !important;
  color: #241648 !important;
  font-weight: 800 !important;
  letter-spacing: 0.5px !important;
}

.btn__contact-btn a {
  color: #241648;
  text-decoration: none;
}

.btn__about-contact-btn {
  background: linear-gradient(0deg, #b72151, #480e5a) !important;
  color: #fff !important;
}

.btn__about-contact-btn a {
  color: #fff;
  text-decoration: none;
}

.btn__submitBtn {
  padding: 10px 25px !important;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
}

.whole-header {
  position: relative;
}

.secondary-header {
  background-color: #fff;
  padding: 0px 10px 20px;
  color: #9b205c !important;
}
.secondary-header .logo {
  padding: 5px 0px;
}
.secondary-header .logo img {
  max-width: 125px;
  width: 100%;
  height: 100%;
}
.secondary-header h6 {
  color: #9b205c;
  font-weight: 600;
}
.secondary-header p {
  font-size: 13px;
  color: gray;
  font-weight: 500;
}
.secondary-header a {
  text-decoration: none;
  color: #fff;
}
.secondary-header .secondary-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.secondary-header .secondary-navbar .details {
  display: flex;
  align-items: center;
}
.secondary-header__location {
  display: flex;
  align-items: center;
  padding: 0px 10px;
}
.secondary-header__content {
  color: #fff;
  margin-left: 5px;
}
.secondary-header__mail {
  display: flex;
  align-items: center;
  padding: 0px 10px;
}
.secondary-header .vertical-line {
  background-color: #fff;
  height: 25px;
  width: 1px;
}

.primary-header {
  position: absolute !important;
  bottom: 0%;
  left: 50%;
  transform: translate(-50%, 50%);
  width: 100%;
  z-index: 2;
}
.primary-header__bg {
  background-color: #9b205c;
  padding: 0px 0px !important;
}
.primary-header__bg .navbar-toggler {
  border: none;
}
.primary-header__bg .navbar-toggler:focus {
  box-shadow: none;
}
.primary-header__bg ul {
  -moz-column-gap: 25px;
       column-gap: 25px;
}
.primary-header__bg .navbar-nav .active {
  color: #fff !important;
  text-decoration: underline;
}
.primary-header__bg .navbar-collapse {
  padding-left: 1em;
}
.primary-header__bg .nav-link {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 13px 10px !important;
  transition: 0.3s;
}
.primary-header__bg .nav-link:hover {
  color: #fff;
  text-decoration: underline;
}
.primary-header__social-icons {
  margin: 0px 15px;
}
.primary-header__social-icons i {
  color: #fff;
  padding: 10px 10px;
  font-size: 12px;
  cursor: pointer;
}
.primary-header__search {
  font-size: 12px;
  background-color: #241648;
  color: #fff;
  padding: 16px 14px;
  margin-right: 2px;
}

/***** hamburger *****/
#checkbox {
  display: none;
}

.toggle {
  position: relative;
  width: 30px;
  height: 30px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition-duration: 0.5s;
}

.bars {
  width: 100%;
  height: 4px;
  background-color: #fff;
  border-radius: 4px;
}

#bar2 {
  transition-duration: 0.8s;
}

#bar1,
#bar3 {
  width: 70%;
}

#checkbox:checked + .toggle .bars {
  position: absolute;
  transition-duration: 0.5s;
}

#checkbox:checked + .toggle #bar2 {
  transform: scaleX(0);
  transition-duration: 0.5s;
}

#checkbox:checked + .toggle #bar1 {
  width: 100%;
  transform: rotate(45deg);
  transition-duration: 0.5s;
}

#checkbox:checked + .toggle #bar3 {
  width: 100%;
  transform: rotate(-45deg);
  transition-duration: 0.5s;
}

#checkbox:checked + .toggle {
  transition-duration: 0.5s;
  transform: rotate(180deg);
}

/***** hamburger *****/
/********** media query **********/
@media (min-width: 320px) and (max-width: 991px) {
  .secondary-header {
    padding: 0.5em 0em 2em;
    display: none !important;
  }
  .secondary-header .secondary-navbar h6,
  .secondary-header .secondary-navbar p,
  .secondary-header .secondary-navbar a {
    font-size: 13px;
  }
  .secondary-header .secondary-navbar .details {
    display: unset !important;
  }
  .secondary-header .secondary-navbar .vertical-line-responsive {
    display: flex;
    justify-content: center;
    height: 15px;
  }
  .secondary-header .secondary-navbar .vertical-line-responsive .vertical-line {
    background-color: #808080;
    transform: rotate(90deg);
  }
  .secondary-header .secondary-navbar .btn__quote-btn {
    padding: 5px 10px !important;
    margin-top: 5px;
  }
  .primary-header {
    display: none;
    position: fixed !important;
    top: 0px !important;
    bottom: unset;
    left: 0 !important;
    transform: none !important;
    width: 100%;
  }
  /***** secondary response *****/
  .secondary-header-response {
    background-color: #fff;
    padding: 10px 10px;
    color: #9b205c !important;
  }
  .secondary-header-response .details {
    display: flex;
    justify-content: end;
  }
  .secondary-header-response .details h6 {
    color: #9b205c !important;
    font-size: 13px;
  }
  .secondary-header-response .details p {
    color: #808080;
    font-size: 13px;
  }
  .secondary-header-response .details a {
    text-decoration: none;
  }
  /***** secondary response *****/
  /***** primary response *****/
  .primary-header-response {
    background-color: #9b205c;
    padding: 10px 10px;
  }
  .primary-header-response img {
    max-width: 100px;
    width: 100%;
    height: 100%;
  }
  /***** primary response *****/
}
@media (min-width: 320px) and (max-width: 767px) {
  .secondary-header__location {
    margin-bottom: 0.5rem;
    padding: 0px 0px;
  }
  .secondary-header__mail {
    padding: 0px 0px;
  }
  .secondary-navbar .details {
    display: unset;
  }
  .secondary-navbar__location {
    margin-bottom: 0.5rem;
  }
  .secondary-navbar .btn__quote-btn {
    display: none;
  }
}
@media (min-width: 992px) {
  .secondary-header-response {
    display: none;
  }
  .primary-header-response {
    display: none;
  }
}
@media (min-width: 991px) and (max-width: 1024px) {
  .primary-header__bg .navbar-collapse {
    padding-left: 0em;
  }
  .primary-header__bg ul {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}
.btn {
  border: none !important;
  border-radius: 4px !important;
  text-transform: uppercase !important;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  font-family: "Raleway", sans-serif !important;
  padding: 7px 15px !important;
}

.btn__quote-btn {
  color: #9b205c !important;
  background-color: #fff !important;
  border: 1px solid #3f51b5 !important;
  margin: auto 5px auto 10px;
}

.btn__quote-btn a {
  color: #9b205c;
  text-decoration: none;
}

.btn__contact-btn {
  background-color: #fff !important;
  color: #241648 !important;
  font-weight: 800 !important;
  letter-spacing: 0.5px !important;
}

.btn__contact-btn a {
  color: #241648;
  text-decoration: none;
}

.btn__about-contact-btn {
  background: linear-gradient(0deg, #b72151, #480e5a) !important;
  color: #fff !important;
}

.btn__about-contact-btn a {
  color: #fff;
  text-decoration: none;
}

.btn__submitBtn {
  padding: 10px 25px !important;
}

.banner-section {
  background: linear-gradient(358deg, rgba(24, 24, 24, 0.76), rgba(25, 26, 26, 0.41)), url(../img/banner.png);
  background-color: #000;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 90vh;
  margin-top: 5em;
  position: relative;
}
.banner-section__contents {
  color: #fff;
  padding: 12em 0em 5em;
  margin: auto;
}
.banner-section__contents h5 {
  margin-bottom: 1.5rem !important;
}
.banner-section__contents h1 {
  font-size: 3.5rem;
  font-weight: 700;
  font-family: "Lora", serif;
  margin-bottom: 1rem !important;
  text-transform: uppercase;
}

/********** media query **********/
@media (min-width: 320px) and (max-width: 767px) {
  .banner-section {
    height: 80vh;
  }
  .banner-section__contents {
    padding: 13em 0em 5em;
  }
  .banner-section h1 {
    font-size: 1.5rem;
  }
  .banner-section h5 {
    font-size: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .banner-section h5 {
    font-size: 1rem;
  }
  .banner-section h1 {
    font-size: 2.5rem;
  }
}
@media (min-width: 1025px) and (max-width: 1327px) {
  .banner-section h1 {
    font-size: 2.5rem;
    width: 750px;
  }
}
.about-section {
  padding: 27em 0em 5em;
}
.about-section__content {
  color: #000;
  padding-left: 30px;
}
.about-section__title {
  font-size: 3rem;
  font-weight: 800;
  font-family: "Lora", serif;
  margin-bottom: 1.5rem !important;
  background: linear-gradient(0deg, #b72151, #480e5a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.about-section__desc {
  line-height: 1.5;
  text-align: justify;
  margin-bottom: 2rem !important;
}
.about-section__img {
  padding: 10px 10px;
}
.about-section__img img {
  width: 100%;
  border-radius: 10px;
  box-shadow: rgba(149, 157, 165, 0.6) 0px 8px 24px;
}

/********** media query *********/
@media (min-width: 320px) and (max-width: 575px) {
  .about-section__title {
    text-align: center;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .about-section {
    padding: 3em 0em;
  }
  .about-section__content {
    padding-left: 0px;
  }
  .about-section__title {
    font-size: 1.5rem;
    margin-bottom: 1rem !important;
  }
  .about-section__desc {
    margin-bottom: 1.5rem !important;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .about-section {
    padding: 4em 0em;
  }
  .about-section__title {
    font-size: 2.5rem;
    margin-bottom: 1rem !important;
  }
}
.btn {
  border: none !important;
  border-radius: 4px !important;
  text-transform: uppercase !important;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  font-family: "Raleway", sans-serif !important;
  padding: 7px 15px !important;
}

.btn__quote-btn {
  color: #9b205c !important;
  background-color: #fff !important;
  border: 1px solid #3f51b5 !important;
  margin: auto 5px auto 10px;
}

.btn__quote-btn a {
  color: #9b205c;
  text-decoration: none;
}

.btn__contact-btn {
  background-color: #fff !important;
  color: #241648 !important;
  font-weight: 800 !important;
  letter-spacing: 0.5px !important;
}

.btn__contact-btn a {
  color: #241648;
  text-decoration: none;
}

.btn__about-contact-btn {
  background: linear-gradient(0deg, #b72151, #480e5a) !important;
  color: #fff !important;
}

.btn__about-contact-btn a {
  color: #fff;
  text-decoration: none;
}

.btn__submitBtn {
  padding: 10px 25px !important;
}

.card-section {
  position: absolute;
  width: 100%;
  top: 95%;
  z-index: 1;
}
.card-section__mission {
  width: 28% !important;
  margin: 0px auto;
}
.card-section__mission .card {
  padding-top: 2em;
  border: none;
  text-align: center;
  background-color: #fff;
  height: 100%;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  transition: 0.3s;
}
.card-section__mission .card:hover {
  background: linear-gradient(0deg, #b72151, #480e5a);
  color: #fff !important;
}
.card-section__mission .card:hover .card-title {
  color: #fff !important;
}
.card-section__mission .card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: auto;
  padding: 10px 10px;
  background-color: #fff;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}
.card-section__mission .card .card-title {
  font-size: 1rem;
  color: #9b205c;
  font-weight: 800;
  margin-bottom: 0.5rem !important;
}
.card-section__mission .card .card-text {
  text-align: justify;
  font-size: 0.8rem;
}
.card-section__vision {
  width: 28% !important;
  margin: 0px auto;
}
.card-section__vision .card {
  padding-top: 2em;
  border: none;
  text-align: center;
  background-color: #fff;
  height: 100%;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  transition: 0.3s;
}
.card-section__vision .card:hover {
  background: linear-gradient(0deg, #b72151, #480e5a);
  color: #fff !important;
}
.card-section__vision .card:hover .card-title {
  color: #fff !important;
}
.card-section__vision .card:hover li::before {
  background-color: #fff !important;
}
.card-section__vision .card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: auto;
  padding: 10px 10px;
  background-color: #fff;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}
.card-section__vision .card .card-title {
  font-size: 1rem;
  color: #9b205c;
  font-weight: 800;
  margin-bottom: 0.5rem !important;
}
.card-section__vision .card .list {
  list-style: none;
  text-align: justify;
  padding-left: 20px !important;
}
.card-section__vision .card .list li {
  position: relative;
  font-size: 0.8rem;
}
.card-section__vision .card .list li::before {
  position: absolute;
  content: " ";
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  background-color: #9b205c;
  left: -20px;
  top: 8px;
}
.card-section__value {
  width: 28% !important;
  margin: 0px auto;
}
.card-section__value .card {
  padding-top: 2em;
  border: none;
  text-align: center;
  background-color: #fff;
  height: 100%;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  transition: 0.3s;
}
.card-section__value .card:hover {
  background: linear-gradient(0deg, #b72151, #480e5a);
  color: #fff !important;
}
.card-section__value .card:hover .card-title {
  color: #fff !important;
}
.card-section__value .card:hover li::before {
  background-color: #fff !important;
}
.card-section__value .card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: auto;
  padding: 10px 10px;
  background-color: #fff;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}
.card-section__value .card .card-title {
  font-size: 1rem;
  color: #9b205c;
  font-weight: 800;
  margin-bottom: 0.5rem !important;
}
.card-section__value .card .list {
  list-style: none;
  text-align: justify;
  padding-left: 20px !important;
}
.card-section__value .card .list li {
  position: relative;
  font-size: 0.8rem;
}
.card-section__value .card .list li::before {
  position: absolute;
  content: " ";
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  background-color: #9b205c;
  left: -20px;
  top: 8px;
}

/********** media query *********/
@media (min-width: 320px) and (max-width: 767px) {
  .card-section {
    padding: 3em 0em !important;
  }
}
@media (min-width: 320px) and (max-width: 1024px) {
  .card-section {
    padding: 4em 0em;
    position: unset;
    background-color: #f0f0f0;
  }
  .card-section__mission {
    width: 100% !important;
    margin: auto;
  }
  .card-section__vision {
    width: 100% !important;
    margin: auto;
  }
  .card-section__value {
    width: 100% !important;
    margin: auto;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .card-section__mission {
    width: 33.33% !important;
    margin: initial;
  }
  .card-section__vision {
    width: 33.33% !important;
    margin: initial;
  }
  .card-section__value {
    width: 33.33% !important;
    margin: initial;
  }
}
.btn {
  border: none !important;
  border-radius: 4px !important;
  text-transform: uppercase !important;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  font-family: "Raleway", sans-serif !important;
  padding: 7px 15px !important;
}

.btn__quote-btn {
  color: #9b205c !important;
  background-color: #fff !important;
  border: 1px solid #3f51b5 !important;
  margin: auto 5px auto 10px;
}

.btn__quote-btn a {
  color: #9b205c;
  text-decoration: none;
}

.btn__contact-btn {
  background-color: #fff !important;
  color: #241648 !important;
  font-weight: 800 !important;
  letter-spacing: 0.5px !important;
}

.btn__contact-btn a {
  color: #241648;
  text-decoration: none;
}

.btn__about-contact-btn {
  background: linear-gradient(0deg, #b72151, #480e5a) !important;
  color: #fff !important;
}

.btn__about-contact-btn a {
  color: #fff;
  text-decoration: none;
}

.btn__submitBtn {
  padding: 10px 25px !important;
}

.services-section {
  padding: 5em 0em;
  background: linear-gradient(0deg, rgba(183, 33, 81, 0.431372549), rgba(72, 14, 90, 0.4784313725)), url(../img/services.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.services-section__content {
  color: #fff;
  z-index: 1 !important;
}
.services-section__title {
  font-size: 3rem;
  font-weight: 800;
  font-family: "Lora", serif;
  margin-bottom: 1.5rem !important;
}
.services-section__desc {
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 2rem !important;
}
.services-section__slider-box {
  padding: 5em 1em 5em 0em;
  background-color: #fff;
  border-radius: 25px;
  position: relative;
  width: 90%;
  margin: auto !important;
}
.services-section__slider-box img {
  width: 300px !important;
  height: 250px;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  position: absolute;
  left: -35px;
  top: 50%;
  transform: translate(0%, -50%);
  box-shadow: rgba(149, 157, 165, 0.6) 0px 8px 24px;
}
.services-section__slider-content h3 {
  color: #9b205c;
  font-size: 1.5rem;
  font-family: "Lora", serif;
  font-weight: 700;
  margin-bottom: 1rem !important;
}
.services-section__slider-content p {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1rem !important;
}
.services-section .slider {
  width: 100%;
}
.services-section .slick-list {
  z-index: 0;
}
.services-section .slick-slide {
  margin: 0px 20px;
}
.services-section .slick-slide img {
  width: 100%;
}
.services-section .slick-prev:before,
.services-section .slick-next:before {
  color: black;
}
.services-section .slick-slide {
  transition: all ease-in-out 0.3s;
  opacity: 0;
}
.services-section .slick-active {
  opacity: 0.5;
}
.services-section .slick-current {
  opacity: 1;
}
.services-section .slick-prev,
.services-section .slick-next {
  top: unset;
  bottom: -60px !important;
}
.services-section .slick-prev {
  left: 8% !important;
  padding-right: 5px;
}
.services-section .slick-next {
  right: 84% !important;
  padding-left: 5px;
}
.services-section .slick-prev:before {
  background: url("../icons/MaterialSymbolsChevronLeftRounded.svg") no-repeat;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #fff;
  padding: 5px 15px;
  opacity: 1 !important;
  content: "" !important;
  border-radius: 50%;
}
.services-section .slick-next:before {
  background: url("../icons/MaterialSymbolsChevronRightRounded.svg") no-repeat;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #fff;
  padding: 5px 15px;
  opacity: 1 !important;
  content: "" !important;
  border-radius: 50%;
}

/********** media query *********/
@media (min-width: 320px) and (max-width: 575px) {
  .services-section__title {
    text-align: center;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .services-section__slider-content {
    padding-left: 2em;
  }
}
@media (min-width: 1025px) and (max-width: 1199px) {
  .services-section__slider-box img {
    width: 250px !important;
  }
  .services-section__slider-content h3 {
    font-size: 1.4rem;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .services-section {
    padding: 3em 0em 7em;
  }
  .services-section__content {
    margin-bottom: 1.5rem;
  }
  .services-section__title {
    font-size: 1.5rem;
    margin-bottom: 1rem !important;
  }
  .services-section__desc {
    margin-bottom: 1.5rem !important;
  }
  .services-section .slick-next {
    padding-left: 15px !important;
  }
  .services-section__slider-box {
    padding: initial;
  }
  .services-section__slider-box .col-md-12 {
    padding: 0px 0px;
  }
  .services-section__slider-box img {
    position: unset;
    width: 100% !important;
    transform: unset;
    margin-bottom: 2em;
  }
  .services-section__slider-content {
    padding: 1em 1em;
  }
  .services-section__slider-content h3 {
    font-size: 1rem !important;
  }
  .services-section__slider-content p {
    font-size: 0.8rem !important;
  }
}
@media (min-width: 376px) and (max-width: 475px) {
  .services-section .slick-next {
    right: 82% !important;
  }
}
@media (min-width: 320px) and (max-width: 375px) {
  .services-section .slick-next {
    right: 79% !important;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .services-section {
    padding: 4em 0em;
  }
  .services-section__title {
    font-size: 2.5rem;
    margin-bottom: 1rem !important;
  }
  .services-section__desc {
    margin-bottom: 1.5rem !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .services-section {
    padding: 4em 0em 8em;
  }
  .services-section__slider-box {
    margin-top: 2em !important;
    padding-left: 16em;
  }
}
.btn {
  border: none !important;
  border-radius: 4px !important;
  text-transform: uppercase !important;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  font-family: "Raleway", sans-serif !important;
  padding: 7px 15px !important;
}

.btn__quote-btn {
  color: #9b205c !important;
  background-color: #fff !important;
  border: 1px solid #3f51b5 !important;
  margin: auto 5px auto 10px;
}

.btn__quote-btn a {
  color: #9b205c;
  text-decoration: none;
}

.btn__contact-btn {
  background-color: #fff !important;
  color: #241648 !important;
  font-weight: 800 !important;
  letter-spacing: 0.5px !important;
}

.btn__contact-btn a {
  color: #241648;
  text-decoration: none;
}

.btn__about-contact-btn {
  background: linear-gradient(0deg, #b72151, #480e5a) !important;
  color: #fff !important;
}

.btn__about-contact-btn a {
  color: #fff;
  text-decoration: none;
}

.btn__submitBtn {
  padding: 10px 25px !important;
}

.process-section {
  padding: 5em 0em;
}
.process-section__content {
  color: #000;
  text-align: center;
}
.process-section__title {
  font-size: 3rem;
  font-weight: 800;
  font-family: "Lora", serif;
  margin-bottom: 1.5rem !important;
  background: linear-gradient(0deg, #b72151, #480e5a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.process-section__desc {
  line-height: 1.5;
  margin-bottom: 2rem !important;
  font-weight: 500;
}
.process-section__img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/********** media query *********/
@media (min-width: 320px) and (max-width: 767px) {
  .process-section {
    padding: 3em 0em;
  }
  .process-section__title {
    font-size: 1.5rem;
    margin-bottom: 1rem !important;
  }
  .process-section__desc {
    margin-bottom: 1.5rem !important;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .process-section {
    padding: 4em 0em;
  }
  .process-section__title {
    font-size: 2.5rem;
    margin-bottom: 1rem !important;
  }
  .process-section__desc {
    margin-bottom: 1.5rem !important;
  }
}
@media (max-width: 991px) {
  .process-section__img .process-img {
    display: none;
  }
}
@media (min-width: 992px) {
  .process-section__img .process-res {
    display: none;
  }
}
.btn {
  border: none !important;
  border-radius: 4px !important;
  text-transform: uppercase !important;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  font-family: "Raleway", sans-serif !important;
  padding: 7px 15px !important;
}

.btn__quote-btn {
  color: #9b205c !important;
  background-color: #fff !important;
  border: 1px solid #3f51b5 !important;
  margin: auto 5px auto 10px;
}

.btn__quote-btn a {
  color: #9b205c;
  text-decoration: none;
}

.btn__contact-btn {
  background-color: #fff !important;
  color: #241648 !important;
  font-weight: 800 !important;
  letter-spacing: 0.5px !important;
}

.btn__contact-btn a {
  color: #241648;
  text-decoration: none;
}

.btn__about-contact-btn {
  background: linear-gradient(0deg, #b72151, #480e5a) !important;
  color: #fff !important;
}

.btn__about-contact-btn a {
  color: #fff;
  text-decoration: none;
}

.btn__submitBtn {
  padding: 10px 25px !important;
}

.choose-section {
  padding: 5em 0em;
  background-color: #f0f0f0;
}
.choose-section__content {
  color: #000;
}
.choose-section__title {
  font-size: 3rem;
  font-weight: 800;
  font-family: "Lora", serif;
  margin-bottom: 1.5rem !important;
}
.choose-section__desc {
  line-height: 1.5;
  margin-bottom: 2rem !important;
  font-weight: 500;
}
.choose-section__list ul {
  list-style: none;
  padding-left: 60px;
}
.choose-section__list ul li {
  position: relative;
  margin-bottom: 1rem;
  font-weight: 500;
}
.choose-section__list ul li::before {
  position: absolute;
  content: " ";
  width: 16px;
  height: 16px;
  background: url(../icons/MaterialSymbolsSelectCheckBoxRounded.svg) no-repeat;
  left: -25px;
  top: 3px;
}
.choose-section__img img {
  width: 100%;
  height: 450px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 25px;
}

/********** media query *********/
@media (min-width: 320px) and (max-width: 575px) {
  .choose-section__title {
    text-align: center;
  }
  .choose-section__desc {
    text-align: justify;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .choose-section {
    padding: 3em 0em;
  }
  .choose-section__title {
    font-size: 1.5rem;
    margin-bottom: 1rem !important;
  }
  .choose-section__desc {
    margin-bottom: 1.5rem !important;
  }
  .choose-section__list ul {
    padding-left: 30px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .choose-section {
    padding: 4em 0em;
  }
  .choose-section__title {
    font-size: 2.5rem;
    margin-bottom: 1rem !important;
  }
  .choose-section__desc {
    margin-bottom: 1.5rem !important;
  }
}
.btn {
  border: none !important;
  border-radius: 4px !important;
  text-transform: uppercase !important;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  font-family: "Raleway", sans-serif !important;
  padding: 7px 15px !important;
}

.btn__quote-btn {
  color: #9b205c !important;
  background-color: #fff !important;
  border: 1px solid #3f51b5 !important;
  margin: auto 5px auto 10px;
}

.btn__quote-btn a {
  color: #9b205c;
  text-decoration: none;
}

.btn__contact-btn {
  background-color: #fff !important;
  color: #241648 !important;
  font-weight: 800 !important;
  letter-spacing: 0.5px !important;
}

.btn__contact-btn a {
  color: #241648;
  text-decoration: none;
}

.btn__about-contact-btn {
  background: linear-gradient(0deg, #b72151, #480e5a) !important;
  color: #fff !important;
}

.btn__about-contact-btn a {
  color: #fff;
  text-decoration: none;
}

.btn__submitBtn {
  padding: 10px 25px !important;
}

.team-section {
  padding: 5em 0em;
  background-color: #9b205c;
}
.team-section__content {
  color: #fff;
  text-align: center;
}
.team-section__title {
  font-size: 3rem;
  font-weight: 800;
  font-family: "Lora", serif;
  margin-bottom: 1.5rem !important;
}
.team-section__desc {
  line-height: 1.5;
  margin-bottom: 2rem !important;
  font-weight: 500;
}
.team-section__image {
  width: 100%;
}
.team-section__image-contents {
  position: relative;
  transition: 0.3s;
}
.team-section__image-contents img {
  width: 100%;
  height: 450px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.team-section__image-contents:hover .team-section__text {
  opacity: 1;
}
.team-section__text {
  opacity: 0;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 2em 1.5em;
  background: linear-gradient(0deg, rgba(183, 33, 81, 0.431372549), rgba(72, 14, 90, 0.4784313725));
  color: #fff;
  transition: 0.3s;
}
.team-section__text h4 {
  font-weight: 700;
  margin-bottom: 0.5rem !important;
}
.team-section__text h6 {
  font-weight: 600;
  margin-bottom: 1rem !important;
}
.team-section__text p {
  font-size: 0.8rem;
  margin-bottom: 2rem !important;
}
.team-section__phone {
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 0.5rem;
}
.team-section__phone svg {
  margin-right: 10px;
}
.team-section__phone a {
  color: #fff !important;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 0.5rem !important;
}
.team-section__phone a p {
  font-family: "Lora", serif;
  margin-bottom: 0 !important;
}
.team-section .explore {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 5px 10px;
}
.team-section .explore a {
  text-decoration: none;
  color: #fff;
  font-size: 0.8rem;
}

/********** media query *********/
@media (min-width: 320px) and (max-width: 575px) {
  .team-section__desc {
    text-align: justify;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .team-section {
    padding: 3em 0em;
  }
  .team-section__title {
    font-size: 1.5rem;
    margin-bottom: 1rem !important;
  }
  .team-section__desc {
    margin-bottom: 1.5rem !important;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .team-section {
    padding: 4em 0em;
  }
  .team-section__title {
    font-size: 2.5rem;
    margin-bottom: 1rem !important;
  }
  .team-section__desc {
    margin-bottom: 1.5rem !important;
  }
}
@media (min-width: 320px) and (max-width: 991px) {
  .team-section__image-contents img {
    height: 100% !important;
  }
}
@media (min-width: 320px) and (max-width: 375px) {
  .team-section__image-contents img {
    height: 450px !important;
  }
}
.btn {
  border: none !important;
  border-radius: 4px !important;
  text-transform: uppercase !important;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  font-family: "Raleway", sans-serif !important;
  padding: 7px 15px !important;
}

.btn__quote-btn {
  color: #9b205c !important;
  background-color: #fff !important;
  border: 1px solid #3f51b5 !important;
  margin: auto 5px auto 10px;
}

.btn__quote-btn a {
  color: #9b205c;
  text-decoration: none;
}

.btn__contact-btn {
  background-color: #fff !important;
  color: #241648 !important;
  font-weight: 800 !important;
  letter-spacing: 0.5px !important;
}

.btn__contact-btn a {
  color: #241648;
  text-decoration: none;
}

.btn__about-contact-btn {
  background: linear-gradient(0deg, #b72151, #480e5a) !important;
  color: #fff !important;
}

.btn__about-contact-btn a {
  color: #fff;
  text-decoration: none;
}

.btn__submitBtn {
  padding: 10px 25px !important;
}

.free-section {
  padding: 5em 0em;
}
.free-section__content {
  color: #000;
  text-align: center;
}
.free-section__title {
  font-size: 3rem;
  font-weight: 800;
  font-family: "Lora", serif;
  margin-bottom: 1.5rem !important;
  background: linear-gradient(0deg, #b72151, #480e5a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.free-section__desc {
  line-height: 1.5;
  margin-bottom: 2rem !important;
  color: #808080;
}
.free-section__form-div {
  border-radius: 5px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.free-section__form-div img {
  width: 100%;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.free-section__form-div .form-section {
  padding: 0em 1em;
}
.free-section__form-div .form-section input,
.free-section__form-div .form-section select,
.free-section__form-div .form-section textarea {
  width: 100%;
  font-size: 0.8rem;
  padding: 10px 10px;
  margin-bottom: 1rem;
  border: none;
  border-bottom: 1px solid #f0f0f0;
}
.free-section__form-div .form-section input:focus-visible,
.free-section__form-div .form-section select:focus-visible,
.free-section__form-div .form-section textarea:focus-visible {
  outline: 0;
}
.free-section .invalid {
  border-bottom: 1px solid #b81111 !important;
}
.free-section .valid {
  border-bottom: 1px solid #2e8555 !important;
}
.free-section .just-validate-error-label {
  display: none;
}

/********** media query *********/
@media (min-width: 320px) and (max-width: 575px) {
  .free-section__desc {
    text-align: justify;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .free-section {
    padding: 3em 0em;
  }
  .free-section__title {
    font-size: 1.5rem;
    margin-bottom: 1rem !important;
  }
  .free-section__desc {
    margin-bottom: 1.5rem !important;
  }
  .free-section__form-div .form-section {
    margin-top: 10px;
  }
  .free-section__form-div .btn__submitBtn {
    margin-bottom: 3em;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .free-section {
    padding: 4em 0em;
  }
  .free-section__title {
    font-size: 2.5rem;
    margin-bottom: 1rem !important;
  }
  .free-section__desc {
    margin-bottom: 1.5rem !important;
  }
}
.btn {
  border: none !important;
  border-radius: 4px !important;
  text-transform: uppercase !important;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  font-family: "Raleway", sans-serif !important;
  padding: 7px 15px !important;
}

.btn__quote-btn {
  color: #9b205c !important;
  background-color: #fff !important;
  border: 1px solid #3f51b5 !important;
  margin: auto 5px auto 10px;
}

.btn__quote-btn a {
  color: #9b205c;
  text-decoration: none;
}

.btn__contact-btn {
  background-color: #fff !important;
  color: #241648 !important;
  font-weight: 800 !important;
  letter-spacing: 0.5px !important;
}

.btn__contact-btn a {
  color: #241648;
  text-decoration: none;
}

.btn__about-contact-btn {
  background: linear-gradient(0deg, #b72151, #480e5a) !important;
  color: #fff !important;
}

.btn__about-contact-btn a {
  color: #fff;
  text-decoration: none;
}

.btn__submitBtn {
  padding: 10px 25px !important;
}

.services-banner {
  margin-top: 8em;
  padding: 5em 0em;
  background: linear-gradient(358deg, rgba(24, 24, 24, 0.76), rgba(25, 26, 26, 0.41)), url(../img/acc-services.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.services-banner h1 {
  color: #fff;
  margin-bottom: 1.5rem !important;
  font-weight: 800;
}
.services-banner h1 span {
  color: #9b205c !important;
}
.services-banner .breadcrumb {
  color: #fff;
  justify-content: center;
}
.services-banner .breadcrumb h5 {
  font-size: 1rem;
}
.services-banner .breadcrumb a {
  text-decoration: none;
  color: #fff;
  transition: 0.3s;
}
.services-banner .breadcrumb a:hover {
  color: #9b205c;
}

@media (min-width: 320px) and (max-width: 767px) {
  .services-banner {
    margin-top: 13em;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .services-banner {
    margin-top: 9em;
  }
}
.btn {
  border: none !important;
  border-radius: 4px !important;
  text-transform: uppercase !important;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  font-family: "Raleway", sans-serif !important;
  padding: 7px 15px !important;
}

.btn__quote-btn {
  color: #9b205c !important;
  background-color: #fff !important;
  border: 1px solid #3f51b5 !important;
  margin: auto 5px auto 10px;
}

.btn__quote-btn a {
  color: #9b205c;
  text-decoration: none;
}

.btn__contact-btn {
  background-color: #fff !important;
  color: #241648 !important;
  font-weight: 800 !important;
  letter-spacing: 0.5px !important;
}

.btn__contact-btn a {
  color: #241648;
  text-decoration: none;
}

.btn__about-contact-btn {
  background: linear-gradient(0deg, #b72151, #480e5a) !important;
  color: #fff !important;
}

.btn__about-contact-btn a {
  color: #fff;
  text-decoration: none;
}

.btn__submitBtn {
  padding: 10px 25px !important;
}

.ourservices-section {
  padding: 5em 0em 5em;
  background-color: #f0f0f0;
}
.ourservices-section__content {
  color: #000;
}
.ourservices-section__title {
  font-size: 1.8rem;
  font-weight: 800;
  font-family: "Lora", serif;
  margin-bottom: 1.5rem !important;
  background: linear-gradient(0deg, #b72151, #480e5a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ourservices-section__desc {
  line-height: 1.5;
  text-align: justify;
  margin-bottom: 2rem !important;
}
.ourservices-section__img {
  padding: 10px 10px;
  text-align: center;
}
.ourservices-section__img img {
  width: 100%;
  height: 400px;
  max-width: 400px;
  border-radius: 10px;
  box-shadow: rgba(149, 157, 165, 0.6) 0px 8px 24px;
}
.ourservices-section__list ul {
  list-style: none;
}
.ourservices-section__list ul li {
  position: relative;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}
.ourservices-section__list ul li:nth-child(odd)::before {
  position: absolute;
  content: "";
  left: -30px;
  top: 4px;
  background: url("../icons/PhTagChevronFill.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 15px;
  height: 15px;
}
.ourservices-section__list ul li:nth-child(even)::before {
  position: absolute;
  content: "";
  left: -30px;
  top: 4px;
  background: url("../icons/PhTagChevronFillviolet.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 15px;
  height: 15px;
}

/********** media query **********/
@media (min-width: 320px) and (max-width: 575px) {
  .ourservices-section__title {
    text-align: center;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .ourservices-section {
    padding: 4em 0em;
  }
  .ourservices-section__title {
    font-size: 1.5rem;
    margin-bottom: 1rem !important;
  }
  .ourservices-section__desc {
    margin-bottom: 1rem !important;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .ourservices-section {
    padding: 3em 0em 3em;
  }
  .ourservices-section__title {
    font-size: 1.5rem;
    margin-bottom: 1rem !important;
  }
  .ourservices-section__desc {
    margin-bottom: 1rem !important;
  }
}
.btn {
  border: none !important;
  border-radius: 4px !important;
  text-transform: uppercase !important;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  font-family: "Raleway", sans-serif !important;
  padding: 7px 15px !important;
}

.btn__quote-btn {
  color: #9b205c !important;
  background-color: #fff !important;
  border: 1px solid #3f51b5 !important;
  margin: auto 5px auto 10px;
}

.btn__quote-btn a {
  color: #9b205c;
  text-decoration: none;
}

.btn__contact-btn {
  background-color: #fff !important;
  color: #241648 !important;
  font-weight: 800 !important;
  letter-spacing: 0.5px !important;
}

.btn__contact-btn a {
  color: #241648;
  text-decoration: none;
}

.btn__about-contact-btn {
  background: linear-gradient(0deg, #b72151, #480e5a) !important;
  color: #fff !important;
}

.btn__about-contact-btn a {
  color: #fff;
  text-decoration: none;
}

.btn__submitBtn {
  padding: 10px 25px !important;
}

.audit-section {
  padding: 5em 0em;
}
.audit-section__content {
  color: #000;
  text-align: center;
}
.audit-section__title {
  font-size: 1.8rem;
  font-weight: 800;
  font-family: "Lora", serif;
  margin-bottom: 4rem !important;
  background: linear-gradient(0deg, #b72151, #480e5a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.audit-section__desc {
  line-height: 1.5;
  text-align: justify;
  margin-bottom: 2rem !important;
}
.audit-section__submit-details {
  position: relative;
}
.audit-section__submit-details .card {
  border-top: 2px solid #9b205c;
  border-radius: 0px;
  text-align: center;
  height: 150px;
  transition: 0.3s !important;
}
.audit-section__submit-details .card:hover {
  background: linear-gradient(0deg, #b72151, #480e5a);
}
.audit-section__submit-details .card:hover .card-body .card-title {
  color: #fff;
}
.audit-section__submit-details .card .card-body {
  padding: 5em 1em 1.5em;
  box-shadow: 0px 7px 10px -6px rgb(102, 98, 102);
}
.audit-section__submit-details .card .card-body .card-title {
  color: #000;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0rem !important;
}
.audit-section__img-position {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -35%);
}
.audit-section__imgs {
  border: 2px solid #9b205c;
  border-radius: 15px;
  background-color: #fff;
  padding: 15px 15px;
  transform: rotate(45deg);
}
.audit-section__imgs img {
  width: 40px;
  height: 40px;
  transform: rotate(315deg);
}

@media (min-width: 768px) and (max-width: 991px) {
  .audit-section__submit-details .card {
    height: 175px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .audit-section {
    padding: 4em 0em;
  }
  .audit-section__title {
    font-size: 1.5rem;
    margin-bottom: 3rem !important;
  }
  .audit-section__desc {
    margin-bottom: 1rem !important;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .audit-section {
    padding: 3em 0em;
  }
  .audit-section__title {
    font-size: 1.5rem;
    margin-bottom: 3rem !important;
  }
  .audit-section__desc {
    margin-bottom: 1rem !important;
  }
}
.btn {
  border: none !important;
  border-radius: 4px !important;
  text-transform: uppercase !important;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  font-family: "Raleway", sans-serif !important;
  padding: 7px 15px !important;
}

.btn__quote-btn {
  color: #9b205c !important;
  background-color: #fff !important;
  border: 1px solid #3f51b5 !important;
  margin: auto 5px auto 10px;
}

.btn__quote-btn a {
  color: #9b205c;
  text-decoration: none;
}

.btn__contact-btn {
  background-color: #fff !important;
  color: #241648 !important;
  font-weight: 800 !important;
  letter-spacing: 0.5px !important;
}

.btn__contact-btn a {
  color: #241648;
  text-decoration: none;
}

.btn__about-contact-btn {
  background: linear-gradient(0deg, #b72151, #480e5a) !important;
  color: #fff !important;
}

.btn__about-contact-btn a {
  color: #fff;
  text-decoration: none;
}

.btn__submitBtn {
  padding: 10px 25px !important;
}

.management-section {
  padding: 5em 0em;
  background-color: #f0f0f0;
}
.management-section__content {
  color: #000;
  text-align: center;
}
.management-section__title {
  font-size: 1.8rem;
  font-weight: 800;
  font-family: "Lora", serif;
  margin-bottom: 1.5rem !important;
  background: linear-gradient(0deg, #b72151, #480e5a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.management-section__desc {
  line-height: 1.5;
  text-align: center;
  margin-bottom: 2rem !important;
}
.management-section__image-card .card {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  height: 330px;
}
.management-section__image-card .card img {
  width: 100%;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.management-section__image-card .card .card-body {
  padding: 10px 10px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.management-section__image-card .card .card-body h6 {
  font-size: 0.9rem;
  font-weight: 600;
}
.management-section .management {
  width: 100%;
  margin-bottom: 0px;
}
.management-section .slick-slide {
  margin: 0px 10px;
}
.management-section .slick-slide img {
  width: 100%;
}
.management-section .slick-prev:before,
.management-section .slick-next:before {
  color: black;
}
.management-section .slick-slide {
  transition: all ease-in-out 0.3s;
  opacity: 1;
}
.management-section .slick-active {
  opacity: 1;
}
.management-section .slick-current {
  opacity: 1;
}
.management-section .slick-prev {
  left: 0px !important;
  padding-right: 5px;
  z-index: 111;
}
.management-section .slick-next {
  right: 15px !important;
  padding-left: 5px;
  z-index: 111;
}
.management-section .slick-prev:before {
  background: url("../icons/MaterialSymbolsChevronLeftRounded.svg") no-repeat;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #fff;
  padding: 5px 15px;
  opacity: 1 !important;
  content: "" !important;
  border-radius: 50%;
}
.management-section .slick-next:before {
  background: url("../icons/MaterialSymbolsChevronRightRounded.svg") no-repeat;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #fff;
  padding: 5px 15px;
  opacity: 1 !important;
  content: "" !important;
  border-radius: 50%;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .management-section {
    padding: 4em 0em;
  }
  .management-section__title {
    font-size: 1.5rem;
    margin-bottom: 1rem !important;
  }
  .management-section__desc {
    margin-bottom: 1rem !important;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .management-section {
    padding: 3em 0em;
  }
  .management-section__title {
    font-size: 1.5rem;
    margin-bottom: 1rem !important;
  }
  .management-section__desc {
    margin-bottom: 1rem !important;
  }
}
.btn {
  border: none !important;
  border-radius: 4px !important;
  text-transform: uppercase !important;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  font-family: "Raleway", sans-serif !important;
  padding: 7px 15px !important;
}

.btn__quote-btn {
  color: #9b205c !important;
  background-color: #fff !important;
  border: 1px solid #3f51b5 !important;
  margin: auto 5px auto 10px;
}

.btn__quote-btn a {
  color: #9b205c;
  text-decoration: none;
}

.btn__contact-btn {
  background-color: #fff !important;
  color: #241648 !important;
  font-weight: 800 !important;
  letter-spacing: 0.5px !important;
}

.btn__contact-btn a {
  color: #241648;
  text-decoration: none;
}

.btn__about-contact-btn {
  background: linear-gradient(0deg, #b72151, #480e5a) !important;
  color: #fff !important;
}

.btn__about-contact-btn a {
  color: #fff;
  text-decoration: none;
}

.btn__submitBtn {
  padding: 10px 25px !important;
}

.financial-section {
  padding: 5em 0em;
}
.financial-section__content {
  color: #000;
}
.financial-section__title {
  font-size: 1.8rem;
  font-weight: 800;
  font-family: "Lora", serif;
  margin-bottom: 1.5rem !important;
  background: linear-gradient(0deg, #b72151, #480e5a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.financial-section__desc {
  line-height: 1.5;
  text-align: justify;
  margin-bottom: 2rem !important;
}
.financial-section__list ul {
  list-style: none;
  padding-left: 10px;
}
.financial-section__list ul li {
  position: relative;
  background: linear-gradient(0deg, #b72151, #480e5a);
  color: white;
  padding: 10px 15px;
  margin: 0px auto 8px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 2px;
}
.financial-section__img {
  padding: 10px 10px;
  text-align: center;
}
.financial-section__img img {
  width: 100%;
  height: 400px;
  max-width: 400px;
  border-radius: 10px;
  box-shadow: rgba(149, 157, 165, 0.6) 0px 8px 24px;
}

/********** media query **********/
@media (min-width: 320px) and (max-width: 575px) {
  .financial-section__title {
    text-align: center;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .financial-section {
    padding: 4em 0em;
  }
  .financial-section__title {
    font-size: 1.5rem;
    margin-bottom: 1rem !important;
  }
  .financial-section__desc {
    margin-bottom: 1rem !important;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .financial-section {
    padding: 3em 0em;
  }
  .financial-section__title {
    font-size: 1.5rem;
    margin-bottom: 1rem !important;
  }
  .financial-section__desc {
    margin-bottom: 1rem !important;
  }
}
.btn {
  border: none !important;
  border-radius: 4px !important;
  text-transform: uppercase !important;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  font-family: "Raleway", sans-serif !important;
  padding: 7px 15px !important;
}

.btn__quote-btn {
  color: #9b205c !important;
  background-color: #fff !important;
  border: 1px solid #3f51b5 !important;
  margin: auto 5px auto 10px;
}

.btn__quote-btn a {
  color: #9b205c;
  text-decoration: none;
}

.btn__contact-btn {
  background-color: #fff !important;
  color: #241648 !important;
  font-weight: 800 !important;
  letter-spacing: 0.5px !important;
}

.btn__contact-btn a {
  color: #241648;
  text-decoration: none;
}

.btn__about-contact-btn {
  background: linear-gradient(0deg, #b72151, #480e5a) !important;
  color: #fff !important;
}

.btn__about-contact-btn a {
  color: #fff;
  text-decoration: none;
}

.btn__submitBtn {
  padding: 10px 25px !important;
}

.tax-section {
  padding: 5em 0em;
  background-color: #f0f0f0;
}
.tax-section__content {
  color: #000;
}
.tax-section__title {
  font-size: 1.8rem;
  font-weight: 800;
  font-family: "Lora", serif;
  margin-bottom: 1.5rem !important;
  background: linear-gradient(0deg, #b72151, #480e5a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.tax-section__desc {
  line-height: 1.5;
  margin-bottom: 2rem !important;
}
.tax-section__img {
  padding: 10px 10px;
  text-align: center;
}
.tax-section__img img {
  width: 100%;
  height: 400px;
  max-width: 400px;
  border-radius: 10px;
  box-shadow: rgba(149, 157, 165, 0.6) 0px 8px 24px;
}
.tax-section__list ul {
  list-style: none;
}
.tax-section__list ul li {
  position: relative;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}
.tax-section__list ul li:nth-child(odd)::before {
  position: absolute;
  content: "";
  left: -30px;
  top: 4px;
  background: url("../icons/PhTagChevronFill.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 15px;
  height: 15px;
}
.tax-section__list ul li:nth-child(even)::before {
  position: absolute;
  content: "";
  left: -30px;
  top: 4px;
  background: url("../icons/PhTagChevronFillviolet.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 15px;
  height: 15px;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .tax-section {
    padding: 4em 0em;
  }
  .tax-section__title {
    font-size: 1.5rem;
    margin-bottom: 1rem !important;
  }
  .tax-section__desc {
    margin-bottom: 1rem !important;
  }
}
/********** media query **********/
@media (min-width: 320px) and (max-width: 575px) {
  .tax-section__title {
    text-align: center;
  }
  .tax-section__desc {
    text-align: center;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .tax-section {
    padding: 3em 0em;
  }
  .tax-section__title {
    font-size: 1.5rem;
    margin-bottom: 1rem !important;
  }
  .tax-section__desc {
    margin-bottom: 1rem !important;
  }
}
.btn {
  border: none !important;
  border-radius: 4px !important;
  text-transform: uppercase !important;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  font-family: "Raleway", sans-serif !important;
  padding: 7px 15px !important;
}

.btn__quote-btn {
  color: #9b205c !important;
  background-color: #fff !important;
  border: 1px solid #3f51b5 !important;
  margin: auto 5px auto 10px;
}

.btn__quote-btn a {
  color: #9b205c;
  text-decoration: none;
}

.btn__contact-btn {
  background-color: #fff !important;
  color: #241648 !important;
  font-weight: 800 !important;
  letter-spacing: 0.5px !important;
}

.btn__contact-btn a {
  color: #241648;
  text-decoration: none;
}

.btn__about-contact-btn {
  background: linear-gradient(0deg, #b72151, #480e5a) !important;
  color: #fff !important;
}

.btn__about-contact-btn a {
  color: #fff;
  text-decoration: none;
}

.btn__submitBtn {
  padding: 10px 25px !important;
}

.registration-section {
  padding: 5em 0em;
}
.registration-section__content {
  color: #000;
}
.registration-section__title {
  font-size: 1.8rem;
  font-weight: 800;
  font-family: "Lora", serif;
  margin-bottom: 1.5rem !important;
  background: linear-gradient(0deg, #b72151, #480e5a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.registration-section__desc {
  line-height: 1.5;
  text-align: justify;
  margin-bottom: 2rem !important;
}
.registration-section__img {
  padding: 10px 10px;
  text-align: center;
}
.registration-section__img img {
  width: 100%;
  height: 400px;
  max-width: 400px;
  border-radius: 10px;
  box-shadow: rgba(149, 157, 165, 0.6) 0px 8px 24px;
}
.registration-section__list {
  display: flex;
}
.registration-section__list ul {
  list-style: none;
  width: 50%;
  padding-left: 10px;
}
.registration-section__list ul li {
  position: relative;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  background: linear-gradient(0deg, #b72151, #480e5a);
  color: #fff;
  padding: 10px 15px;
  margin: 0px auto 8px;
  border-radius: 20px;
}

/********** media query **********/
@media (min-width: 320px) and (max-width: 575px) {
  .registration-section__title {
    text-align: center;
  }
  .registration-section__desc {
    text-align: center;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .registration-section {
    padding: 4em 0em;
  }
  .registration-section__title {
    font-size: 1.5rem;
    margin-bottom: 1rem !important;
  }
  .registration-section__desc {
    margin-bottom: 1rem !important;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .registration-section {
    padding: 3em 0em;
  }
  .registration-section__title {
    font-size: 1.5rem;
    margin-bottom: 1rem !important;
  }
  .registration-section__desc {
    margin-bottom: 1rem !important;
  }
  .registration-section__list {
    display: block;
  }
  .registration-section__list ul {
    width: 100%;
  }
}
.btn {
  border: none !important;
  border-radius: 4px !important;
  text-transform: uppercase !important;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  font-family: "Raleway", sans-serif !important;
  padding: 7px 15px !important;
}

.btn__quote-btn {
  color: #9b205c !important;
  background-color: #fff !important;
  border: 1px solid #3f51b5 !important;
  margin: auto 5px auto 10px;
}

.btn__quote-btn a {
  color: #9b205c;
  text-decoration: none;
}

.btn__contact-btn {
  background-color: #fff !important;
  color: #241648 !important;
  font-weight: 800 !important;
  letter-spacing: 0.5px !important;
}

.btn__contact-btn a {
  color: #241648;
  text-decoration: none;
}

.btn__about-contact-btn {
  background: linear-gradient(0deg, #b72151, #480e5a) !important;
  color: #fff !important;
}

.btn__about-contact-btn a {
  color: #fff;
  text-decoration: none;
}

.btn__submitBtn {
  padding: 10px 25px !important;
}

.outsourcing-section {
  padding: 5em 0em;
  background-color: #f0f0f0;
}
.outsourcing-section__content {
  color: #000;
  text-align: center;
}
.outsourcing-section__title {
  font-size: 1.8rem;
  font-weight: 800;
  font-family: "Lora", serif;
  margin-bottom: 1.5rem !important;
  background: linear-gradient(0deg, #b72151, #480e5a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.outsourcing-section__desc {
  line-height: 1.5;
  margin-bottom: 2rem !important;
}
.outsourcing-section__img {
  padding: 10px 10px;
  text-align: center;
}
.outsourcing-section__img img {
  width: 100%;
  height: 400px;
  max-width: 400px;
  border-radius: 10px;
  box-shadow: rgba(149, 157, 165, 0.6) 0px 8px 24px;
}
.outsourcing-section__image-card .card {
  height: 350px;
  text-align: center;
}
.outsourcing-section__image-card .card h6 {
  font-size: 0.9rem;
  font-weight: 600;
}
.outsourcing-section__image-card .card .card-body {
  padding: 10px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.outsourcing-section__image-card .card:hover .card-body {
  background: linear-gradient(0deg, #b72151, #480e5a);
  color: #fff;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .outsourcing-section {
    padding: 4em 0em;
  }
  .outsourcing-section__title {
    font-size: 1.5rem;
    margin-bottom: 1rem !important;
  }
  .outsourcing-section__desc {
    margin-bottom: 1rem !important;
  }
  .outsourcing-section__image-card .card {
    height: 300px;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .outsourcing-section {
    padding: 3em 0em;
  }
  .outsourcing-section__title {
    font-size: 1.5rem;
    margin-bottom: 1rem !important;
  }
  .outsourcing-section__desc {
    margin-bottom: 1rem !important;
  }
  .outsourcing-section__img img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    border-radius: 10px;
    box-shadow: rgba(149, 157, 165, 0.6) 0px 8px 24px;
  }
  .outsourcing-section__image-card .card {
    height: 100%;
  }
}
.btn {
  border: none !important;
  border-radius: 4px !important;
  text-transform: uppercase !important;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  font-family: "Raleway", sans-serif !important;
  padding: 7px 15px !important;
}

.btn__quote-btn {
  color: #9b205c !important;
  background-color: #fff !important;
  border: 1px solid #3f51b5 !important;
  margin: auto 5px auto 10px;
}

.btn__quote-btn a {
  color: #9b205c;
  text-decoration: none;
}

.btn__contact-btn {
  background-color: #fff !important;
  color: #241648 !important;
  font-weight: 800 !important;
  letter-spacing: 0.5px !important;
}

.btn__contact-btn a {
  color: #241648;
  text-decoration: none;
}

.btn__about-contact-btn {
  background: linear-gradient(0deg, #b72151, #480e5a) !important;
  color: #fff !important;
}

.btn__about-contact-btn a {
  color: #fff;
  text-decoration: none;
}

.btn__submitBtn {
  padding: 10px 25px !important;
}

.form-banner {
  margin-top: 8em;
  padding: 5em 0em;
  background: linear-gradient(358deg, rgba(24, 24, 24, 0.76), rgba(25, 26, 26, 0.41)), url(../img/contact-banner.avif);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.form-banner h1 {
  color: #fff;
  margin-bottom: 1.5rem !important;
  font-weight: 800;
}
.form-banner h1 span {
  color: #9b205c !important;
}
.form-banner .breadcrumb {
  color: #fff;
  justify-content: center;
}
.form-banner .breadcrumb h5 {
  font-size: 1rem;
}
.form-banner .breadcrumb a {
  text-decoration: none;
  color: #fff;
  transition: 0.3s;
}
.form-banner .breadcrumb a:hover {
  color: #9b205c;
}

@media (min-width: 320px) and (max-width: 767px) {
  .form-banner {
    margin-top: 13em;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .form-banner {
    margin-top: 9em;
  }
}
/* css */
.location-number {
  background: #9b205c;
  padding: 80px 0 30px;
}

.contact-box {
  position: relative;
}

.info {
  background: #fff;
  padding: 30px 15px;
  text-align: center;
  margin: 35px 0;
  border-radius: 8px;
  height: 150px;
  display: grid;
  align-content: center;
}

.info h6 {
  font-size: 18px;
  color: #9b205c;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  margin: 5px;
}

.info p {
  font-size: 16px;
  color: #000;
  font-family: "Poppins", sans-serif;
  margin: 0;
}

.info a {
  text-decoration: none;
  color: #000;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  display: block;
}

.icon {
  width: 70px;
  height: 70px;
  text-align: center;
  position: absolute;
  right: 0;
  left: 0;
  top: -55px;
  margin: 0 auto;
  background: #fff;
  border-radius: 45px;
  border: 3px solid #ddd;
  padding: 6px 0;
}

.icon img {
  width: 50px;
  height: 50px;
}

@media screen and (max-width: 767px) {
  .contact-form {
    margin: 0 0 40px;
  }
  .input-two {
    width: 100%;
  }
  .input-two input {
    width: 100%;
  }
  .input-two select {
    margin: 0;
  }
}
.btn {
  border: none !important;
  border-radius: 4px !important;
  text-transform: uppercase !important;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  font-family: "Raleway", sans-serif !important;
  padding: 7px 15px !important;
}

.btn__quote-btn {
  color: #9b205c !important;
  background-color: #fff !important;
  border: 1px solid #3f51b5 !important;
  margin: auto 5px auto 10px;
}

.btn__quote-btn a {
  color: #9b205c;
  text-decoration: none;
}

.btn__contact-btn {
  background-color: #fff !important;
  color: #241648 !important;
  font-weight: 800 !important;
  letter-spacing: 0.5px !important;
}

.btn__contact-btn a {
  color: #241648;
  text-decoration: none;
}

.btn__about-contact-btn {
  background: linear-gradient(0deg, #b72151, #480e5a) !important;
  color: #fff !important;
}

.btn__about-contact-btn a {
  color: #fff;
  text-decoration: none;
}

.btn__submitBtn {
  padding: 10px 25px !important;
}

.footer-section {
  background: linear-gradient(0deg, #b72151, #480e5a);
  padding: 3em 0em 0em;
}
.footer-section .row {
  padding-bottom: 2em !important;
}
.footer-section h2 {
  line-height: 1.5;
  margin-bottom: 1rem !important;
}
.footer-section p {
  line-height: 1.5;
  font-size: 0.8rem;
}
.footer-section__one {
  color: #fff;
  text-align: justify;
  padding-right: 2.3em;
}
.footer-section__one h2 {
  line-height: 1;
}
.footer-section__one p {
  margin-bottom: 1rem !important;
}
.footer-section__social-icons i {
  color: #fff;
  background-color: #241648;
  padding: 10px 10px;
  border-radius: 4px;
  transition: 0.3s;
  cursor: pointer;
}
.footer-section__social-icons i:hover {
  color: #000;
  background-color: #fff;
}
.footer-section__two {
  color: #fff;
  padding-left: 2.3em;
}
.footer-section__two h2 {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 24px;
}
.footer-section__two h6 {
  font-size: 0.8rem;
  margin-bottom: 0.5rem !important;
}
.footer-section__first-post {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-section__first-post img {
  width: 75px;
  height: 75px;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 15px;
}
.footer-section__first-post i {
  font-family: "Lora", serif;
  color: #fff;
}
.footer-section__three {
  color: #fff;
  width: 36%;
  margin: auto;
}
.footer-section__three h2 {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 24px;
}
.footer-section__three ul {
  list-style: none;
  padding-left: 0px;
}
.footer-section__three ul li {
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.footer-section__four {
  color: #fff;
}
.footer-section__four h2 {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 24px;
}
.footer-section__message {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.footer-section__message svg {
  margin-right: 15px;
}
.footer-section__message a {
  color: #fff;
  text-decoration: none;
}
.footer-section .phone p {
  margin-bottom: 0.5rem !important;
}
.footer-section .copyright {
  text-align: center;
  background-color: #fff;
  padding: 0.5em 0em;
}
.footer-section .copyright p {
  color: #9b205c;
  font-weight: 500;
}
.footer-section .copyright a {
  text-decoration: none;
  color: #9b205c;
  font-weight: 700;
}

/********** media query **********/
@media (min-width: 320px) and (max-width: 575px) {
  .footer-section__three {
    width: auto;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .footer-section h2 {
    font-size: 1rem;
  }
  .footer-section__first-post {
    justify-content: left;
  }
  .footer-section__one {
    padding-right: initial;
  }
  .footer-section__two {
    padding-left: initial;
  }
}
@media (min-width: 320px) and (max-width: 991px) {
  .footer-section h2 {
    font-size: 1rem;
  }
  .footer-section__one {
    padding-right: initial;
  }
  .footer-section__two {
    padding-left: initial;
  }
}/*# sourceMappingURL=main.css.map */