:root {
  --font-inter-tight: "Inter Tight", sans-serif;
  --font-akaya: "Inter", sans-serif;
  --font-inter: "Inter", sans-serif;
  --th-001: #232323;
  --th-002: #cea95f;
  --th-003: #946c1c;
  --th-004: #faf1df;
  --th-005: #FFFFFF;
}

html {
  font-size: 16px;
}

body {
  font-family: var(--font-inter-tight);
  padding-top: 7rem;
}

a {
  text-decoration: none;
}

.float-btn {
  position: fixed;
  bottom: 3rem;
  right: 3rem;
  z-index: 999999999;
  background: var(--th-003);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  font-size: 2rem;
  color: var(--th-005);
  border-radius: 0.5rem;
}

.main-heading-size {
  font-size: 4rem;
}

.small-heading-size {
  font-size: 3rem;
}

.ex-small-heading-size {
  font-size: 1.4rem;
}

.para-size {
  font-size: 1.2rem;
}

.btn {
  font-size: 1.2rem;
}

.website-navbar {
  border-bottom: 1px solid var(--th-002);
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 99999;
  background: var(--th-005);
}
.website-navbar .navbar-brand {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 0.5rem;
}
.website-navbar .navbar-brand img {
  width: 100px;
}
.website-navbar .navbar-brand .title span {
  color: var(--th-003);
  font-size: 2rem;
  font-weight: 700;
  display: block;
  font-family: var(--font-akaya);
  line-height: 2rem;
}
.website-navbar .navbar-nav {
  margin-left: 5rem;
}
.website-navbar .navbar-nav .nav-item:hover .nav-link, .website-navbar .navbar-nav .nav-item.active .nav-link {
  color: var(--th-003);
  font-weight: 500;
}
.website-navbar .navbar-nav .nav-item .nav-link {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--th-001);
  padding: 0.8rem 2rem;
}
.website-navbar .navbar-nav .nav-item .nav-link.btn {
  background: var(--th-003);
  color: var(--th-005);
  border-radius: 2rem;
}

.hero-section {
  position: relative;
}
.hero-section::before {
  content: "";
  display: block;
  min-width: 50rem;
  height: 50rem;
  background: url(/assets/images/body-top-left.png);
  position: fixed;
  top: 0rem;
  left: 0;
  z-index: -1;
  background-position: top left;
  background-repeat: no-repeat;
  background-size: 40%;
}
.hero-section .info {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  row-gap: 2rem;
  margin-top: 2rem;
}
.hero-section .info .tag-button {
  background: var(--th-004);
  color: var(--th-003);
  font-weight: 500;
  padding: 1rem 2rem;
  border-radius: 2rem;
}
.hero-section .info h1,
.hero-section .info h2 {
  color: var(--th-001);
  font-weight: 800;
  font-family: var(--font-akaya);
}
.hero-section .info p {
  color: var(--th-001);
  font-weight: 400;
}
.hero-section .info .btn {
  background: var(--th-003);
  color: var(--th-005);
  padding: 1rem 2rem;
  border-radius: 2rem;
}
.hero-section .info ul {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  row-gap: 1rem;
  column-gap: 1rem;
  margin: 0;
  padding: 0;
  text-align: center;
  margin-bottom: 3rem;
}
.hero-section .info ul li {
  list-style: none;
  max-width: 18%;
  min-width: 18%;
}
.hero-section .info ul li img {
  width: 100%;
  border-radius: 2rem;
  margin-bottom: 0.5rem;
}
.hero-section .info ul li .title {
  color: var(--th-001);
  font-weight: 600;
}
.hero-section .card {
  border-radius: 0;
  border: none;
  margin-bottom: 3rem;
}

.about-section {
  background: var(--th-004);
  padding-top: 3rem;
  padding-bottom: 3rem;
  margin-bottom: 3rem;
}
.about-section .info h2 {
  color: var(--th-001);
  font-weight: 800;
  font-family: var(--font-akaya);
  margin-bottom: 3rem;
}
.about-section .info .card {
  border: none;
  border-radius: 0;
  margin-bottom: 3rem;
  background: transparent;
}
.about-section .info .card img {
  width: 60%;
}
.about-section .info p {
  color: var(--th-001);
  font-weight: 400;
}
.about-section .info .list-group {
  border-radius: 0;
  border: none;
}
.about-section .info .list-group .list-group-item {
  border: none;
  margin-bottom: 1rem;
  color: var(--th-001);
  font-weight: 400;
  border-bottom: 0.6rem double var(--th-003);
}
.about-section .info .list-group .list-group-item strong {
  color: var(--th-001);
  margin-bottom: 1rem;
  font-weight: 600;
}

.values-section {
  margin-bottom: 3rem;
}
.values-section h2 {
  color: var(--th-001);
  font-weight: 800;
  font-family: var(--font-akaya);
  margin-bottom: 3rem;
}
.values-section .card {
  border-radius: 0;
  border: none;
  background-color: var(--th-004);
  padding: 1.5rem;
}
.values-section .card img {
  width: 40%;
}
.values-section .card .card-body .card-title {
  color: var(--th-001);
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.values-section .card .card-body .card-text {
  color: var(--th-001);
  font-weight: 400;
}

.services-section {
  margin-bottom: 3rem;
}
.services-section h2 {
  color: var(--th-001);
  font-weight: 800;
  font-family: var(--font-akaya);
  margin-bottom: 3rem;
}
.services-section .services-rows {
  column-gap: 2rem;
}
.services-section .services-rows .card {
  border-radius: 0;
  padding: 1.5rem;
  border: 0.6rem double var(--th-003);
  max-width: calc(33.3333333333% - 1.5rem);
  min-width: calc(33.3333333333% - 1.5rem);
  margin-bottom: 2rem;
}
.services-section .services-rows .card .card-body .card-title {
  color: var(--th-001);
  margin-bottom: 0.5rem;
}
.services-section .services-rows .card .card-body .card-text {
  color: var(--th-001);
  font-weight: 400;
}

.contact-section {
  margin-bottom: 6rem;
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: url(/assets/images/contact-bar/left.png) no-repeat, url(/assets/images/contact-bar/right.png) no-repeat;
  background-position: left center, right center;
  background-size: auto 100%, 15% auto;
  background-color: var(--th-001);
}
.contact-section .card {
  border-radius: 0;
  border: none;
  background: transparent;
}
.contact-section .card .card-body .card-title-small {
  color: var(--th-002);
  font-weight: 500;
  margin-bottom: 1rem;
}
.contact-section .card .card-body .card-title {
  color: var(--th-005);
  font-weight: 800;
  margin-bottom: 1rem;
}
.contact-section .card .card-body .card-text {
  color: var(--th-004);
  font-weight: 400;
  margin-bottom: 1rem;
}
.contact-section .card .card-body .btn {
  background: var(--th-003);
  color: var(--th-005);
  padding: 1rem 2rem;
  border-radius: 2rem;
}

.reviewes-section {
  margin-bottom: 6rem;
}
.reviewes-section h2 {
  color: var(--th-001);
  font-weight: 800;
  font-family: var(--font-akaya);
  margin-bottom: 3rem;
}
.reviewes-section .swiper .swiper-wrapper .swiper-slide .card {
  padding: 1rem;
  border: 1px solid var(--th-002);
  background: var(--th-004);
  border-radius: 0.5rem;
  min-height: 15rem;
}
.reviewes-section .swiper .swiper-wrapper .swiper-slide .card .card-head {
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 1rem;
}
.reviewes-section .swiper .swiper-wrapper .swiper-slide .card .card-text {
  text-transform: lowercase;
}

.media-section {
  margin-bottom: 6rem;
}
.media-section h2 {
  color: var(--th-001);
  font-weight: 800;
  font-family: var(--font-akaya);
  margin-bottom: 3rem;
}
.media-section .swiper .swiper-wrapper .swiper-slide {
  border: 0.6rem double var(--th-003);
  padding: 1rem;
}
.media-section .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
}

.privacy-section {
  margin-top: 6rem;
  margin-bottom: 6rem;
}
.privacy-section h2 {
  color: var(--th-001);
  font-weight: 800;
  font-family: var(--font-akaya);
  margin-bottom: 3rem;
  text-align: center;
}
.privacy-section h3 {
  color: var(--th-001);
  font-weight: 600;
  margin-top: 2rem;
}
.privacy-section p {
  margin-bottom: 0;
}

.faq-section {
  margin-bottom: 6rem;
}
.faq-section h2 {
  color: var(--th-001);
  font-weight: 800;
  font-family: var(--font-akaya);
  margin-bottom: 3rem;
  text-align: center;
}
.faq-section .accordion {
  max-width: 70%;
  margin: 0 auto;
  border-radius: 0;
}
.faq-section .accordion .accordion-item {
  border: none;
  border-radius: 0;
  border-bottom: 0.2rem solid var(--th-002);
}
.faq-section .accordion .accordion-item .accordion-header {
  border: none;
}
.faq-section .accordion .accordion-item .accordion-header .accordion-button {
  background: transparent;
  box-shadow: none;
  color: var(--th-001);
  font-weight: 600;
  padding-left: 0;
  border-bottom: 1px solid var(--th-004);
}
.faq-section .accordion .accordion-item .accordion-collapse .accordion-body {
  color: var(--th-001);
  font-weight: 400;
  padding-left: 0;
}

.contact-us-section {
  margin-bottom: 6rem;
}
.contact-us-section .call-bar {
  border-radius: 0rem;
  background: var(--th-004);
  padding: 3rem;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.contact-us-section .call-bar h2 {
  color: var(--th-001);
  font-weight: 800;
  font-family: var(--font-akaya);
  text-align: left;
}
.contact-us-section .call-bar p {
  color: var(--th-001);
  font-weight: 400;
  margin-bottom: 0rem;
  text-align: left;
}
.contact-us-section .call-bar .contact.btn {
  margin-left: auto;
  padding: 1rem 2rem;
  border-radius: 1rem;
  color: var(--th-005);
  background: var(--th-003);
}
.contact-us-section .contacts {
  display: flex;
  justify-content: center;
  align-items: stretch;
  column-gap: 1rem;
  row-gap: 1rem;
  flex-wrap: wrap;
}
.contact-us-section .contacts .contact {
  padding: 1.5rem;
  border-radius: 0rem;
  color: var(--th-001);
  border: 2px solid var(--th-004);
  min-width: calc(25% - 0.8rem);
  max-width: calc(25% - 0.8rem);
  text-align: left;
}
.contact-us-section .contacts .contact .fa {
  margin-right: 10px;
  border: 1px solid var(--th-004);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  border-radius: 0.5rem;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--th-003);
}
.contact-us-section .contacts .contact .head {
  font-weight: 800;
  margin-top: auto;
}
.contact-us-section .contacts .contact:hover {
  background: var(--th-004);
  color: var(--th-001);
}

.footer {
  background: var(--th-001);
  padding-top: 3rem;
}
.footer img {
  width: 50%;
}
.footer h3 {
  color: var(--th-004);
  font-weight: 800;
  font-family: var(--font-akaya);
  margin-bottom: 1rem;
  font-size: 2rem;
}
.footer .info {
  color: var(--th-004);
  font-weight: 400;
  font-size: 1.2rem;
}
.footer h5 {
  color: var(--th-005);
  font-weight: 800;
  font-family: var(--font-akaya);
  margin-bottom: 1rem;
  font-size: 1.6rem;
}
.footer p {
  color: var(--th-005);
  font-weight: 400;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}
.footer p a {
  text-decoration: none;
  color: var(--th-002);
  font-weight: 600;
  font-size: 1.2rem;
}
.footer ul {
  margin: 0;
  padding: 0;
}
.footer ul li {
  color: var(--th-005);
  font-weight: 400;
  margin-bottom: 0.5rem;
  list-style: none;
  font-size: 1.2rem;
}
.footer ul li a {
  text-decoration: none;
  color: var(--th-002);
  font-weight: 600;
}
.footer ul li span {
  display: block;
}
.footer .footer-small {
  margin-top: 1rem;
  border-top: 1px solid var(--th-004);
  padding: 1rem 1.6rem;
  font-family: var(--font-akaya);
}

@media (max-width: 1200px) {
  .website-navbar .navbar-brand img {
    width: 80px;
  }
  .website-navbar .navbar-brand .title span {
    font-size: 1.6rem;
    line-height: 1.6rem;
  }
}
@media (max-width: 992px) {
  .main-heading-size {
    font-size: 3rem;
  }
  .small-heading-size {
    font-size: 2rem;
  }
  .ex-small-heading-size {
    font-size: 1.2rem;
  }
  .para-size {
    font-size: 1rem;
  }
  .btn {
    font-size: 1rem;
  }
  .website-navbar {
    background: var(--th-004);
  }
  .website-navbar .navbar-brand img {
    width: 60px;
  }
  .website-navbar .navbar-brand .title span {
    font-size: 1.4rem;
    line-height: 1.4rem;
  }
  .website-navbar .navbar-toggler {
    padding: 0px;
    border: none;
    box-shadow: none;
    margin-left: auto;
  }
  .website-navbar .navbar-toggler .bar {
    width: 40px;
    height: 4px;
    background-color: var(--th-003);
    margin: 6px 0;
    transition: 0.4s;
    border-radius: 5px;
    transform: translate3d(0, 0, 0);
    transform-origin: 0% 50%;
    transition: 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  .website-navbar .navbar-toggler .bar:last-child {
    width: 20px;
  }
  .website-navbar .navbar-toggler:not(.collapsed) .bar {
    width: 30px;
  }
  .website-navbar .navbar-toggler:not(.collapsed) .bar1 {
    transform: translate(4px, 18px) rotate(-45deg);
  }
  .website-navbar .navbar-toggler:not(.collapsed) .bar3 {
    transform: translate(4px, -23px) rotate(45deg);
  }
  .website-navbar .navbar-toggler:not(.collapsed) .bar2 {
    opacity: 0;
  }
  .hero-section .box {
    flex-direction: row-reverse;
    align-items: center;
  }
  .hero-section .card {
    margin-top: 0;
    margin-bottom: 0rem;
  }
  .hero-section .info .btn {
    margin: 0 auto;
  }
  .footer img {
    width: 6rem;
  }
  .hero-section .info ul li {
    max-width: 28%;
    min-width: 28%;
  }
  .services-section .card {
    padding: 1rem;
  }
  .faq-section .accordion {
    max-width: 90%;
  }
  .hero-section {
    position: unset;
  }
  .privacy-section {
    margin-top: 3rem;
  }
  .privacy-section,
  .contact-us-section,
  .faq-section,
  .media-section,
  .values-section,
  .hero-section .info ul {
    margin-bottom: 3rem;
  }
  .contact-section,
  .about-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
    margin-bottom: 3rem;
  }
  body {
    padding-top: 5rem;
  }
  .glightbox-clean .gclose {
    z-index: 99999999;
    top: 6rem;
  }
  .services-section .services-rows .card {
    max-width: calc(50% - 1.5rem);
    min-width: calc(50% - 1.5rem);
  }
  .values-section,
  .services-section {
    margin-bottom: 1rem;
  }
  .values-section .card {
    margin-bottom: 2rem;
  }
  .values-section .card:last-child {
    margin-bottom: 0rem;
  }
  .footer h5 {
    font-size: 1.2rem;
  }
  .footer h3 {
    font-size: 1.4rem;
  }
  .footer ul li,
  .footer p,
  .footer .info {
    font-size: 1rem;
  }
  .contact-us-section .call-bar {
    flex-direction: column;
  }
  .contact-us-section .call-bar .contact.btn {
    margin-left: 0;
    margin-top: 1rem;
  }
  .contact-us-section .contacts .contact {
    min-width: calc(50% - 0.8rem);
    max-width: calc(50% - 0.8rem);
  }
}
@media (max-width: 768px) {
  .main-heading-size {
    font-size: 2.5rem;
  }
  .small-heading-size {
    font-size: 1.8rem;
  }
  .hero-section .info ul li {
    max-width: 44%;
    min-width: 44%;
  }
  .para-size {
    font-size: 1rem;
  }
  .btn {
    font-size: 1rem;
  }
  .hero-section .info h2,
  .contact-section .card .card-body .card-title,
  .contact-us-section h2,
  .faq-section h2,
  .media-section h2,
  .services-section h2,
  .values-section h2,
  .about-section .info h2,
  .hero-section .info h1 {
    text-align: center;
  }
  .about-section .info {
    padding-left: calc(var(--bs-gutter-x) * 0.5) !important;
  }
  .faq-section .accordion {
    max-width: 100%;
  }
  .values-section .card {
    padding: 0.6rem;
    text-align: center;
  }
  .values-section .card img {
    width: 30%;
  }
  .hero-section .box {
    flex-direction: column-reverse;
    align-items: center;
  }
  .hero-section .info p {
    text-align: center;
  }
  .values-section .card img,
  .about-section .info .card img,
  .hero-section .info button.btn {
    margin: 0 auto;
  }
  .hero-section .info {
    row-gap: 1rem;
  }
  .contact-us-section,
  .faq-section,
  .media-section,
  .services-section,
  .values-section,
  .hero-section .info ul {
    margin-bottom: 2rem;
  }
  .contact-section,
  .about-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
  }
  .hero-section .info .tag-button {
    padding: 1rem 1.2rem;
    border-radius: 1rem;
    margin: 0 auto;
    text-align: center;
  }
  .contact-us-section p,
  .faq-section h2,
  .media-section h2,
  .services-section h2,
  .values-section h2 {
    margin-bottom: 2rem;
  }
  .services-section .services-rows .card {
    max-width: 100%;
    min-width: 100%;
  }
  .contact-us-section .contacts .contact {
    min-width: 100%;
    max-width: 100%;
  }
}
/*# sourceMappingURL=style.css.map */
