@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root {
  --brand: #bb0b0b;
  --bg-light-blue: #D7E9F3;
  --link-color: #1D242E;
  --heading-color: #212121;
  --black: #252525;
  --dark: #0a0a0a;
  --grey: #7B7B7B;
  --border-color: rgba(112, 112, 112, 0.431);
  --br: .875rem;
  --body-text-color: #454545;
  --border-radius: .35rem;
  --white: #ffffff;
  --body-font: "Poppins", sans-serif;
}

* {
  margin: 0%;
  padding: 0%;
  box-sizing: border-box;
}
*::after, *::before {
  margin: 0%;
  padding: 0%;
}

html {
  font-size: 100%;
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: #fff;
  text-rendering: optimizeLegibility;
  font-family: var(--body-font);
  font-display: swap;
  line-height: 1.65;
  color: var(--body-text-color);
  font-weight: 400;
  font-style: normal;
  font-size: 1.125rem;
  padding-right: 0 !important;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  width: 100%;
  object-fit: cover;
}

.lead-lg {
  font-size: 1.375rem;
}

.lead-sm {
  font-size: 1.125rem;
}

.fs-12 {
  font-size: 12px;
}

.fs-13 {
  font-size: 13px;
}

.fs-15 {
  font-size: 0.937rem;
}

.btn {
  font-size: 0.937rem;
}

.bg-light {
  background-color: #F5F5F5 !important;
}

.bg-primary {
  background-color: var(--brand) !important;
}

.bg-dark {
  background-color: var(--dark) !important;
}

.bg-gradient {
  background-color: rgba(215, 233, 243, 0.24) !important;
}

.z-index {
  z-index: 99;
  position: relative;
}

.round {
  border-radius: 0.875rem;
}

.transition {
  transition: all 0.3s ease-in-out;
}

.text-primary {
  color: var(--brand) !important;
}

.text-dark {
  color: var(--dark) !important;
}

.object-cover {
  object-fit: cover;
  object-position: center center;
}

.spacing-x {
  letter-spacing: 2px;
}

.spacing-x-1 {
  letter-spacing: 1px;
}

strong {
  font-weight: 700;
}

.link {
  color: var(--brand);
  cursor: pointer;
  word-wrap: break-word;
  text-decoration: none;
}
.link:hover {
  color: var(--dark);
}

a {
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  color: var(--dark);
}
a:hover {
  color: var(--brand);
}

ul {
  padding-left: 0;
  margin-bottom: 0;
}
ul li {
  list-style-type: none;
}

.btn:focus, .form-control:focus, .form-select:focus, .form-check-input:focus {
  box-shadow: none;
}

.btn {
  font-weight: 500;
  font-display: swap;
  color: var(--dark);
  font-size: 1rem;
  border-radius: var(--border-radius);
  padding: 0.75rem 1.5rem;
  justify-content: center;
  align-items: center;
  display: inline-flex;
  gap: 0.625rem;
  transition: all 0.4s ease-in-out;
}

.btn-primary {
  background-color: var(--brand);
  border-color: var(--brand);
  color: var(--white);
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  background-color: var(--brand);
  border-color: var(--brand);
}

.btn-outline-primary {
  border-color: var(--brand);
  color: var(--brand);
}
.btn-outline-primary:hover, .btn-outline-primary:focus, .btn-outline-primary:active {
  background-color: var(--brand);
  border-color: var(--brand);
  color: var(--white) !important;
}

.btn-outline-white {
  border-color: var(--white);
  color: var(--white);
}
.btn-outline-white:hover, .btn-outline-white:focus, .btn-outline-white:active {
  background-color: var(--white);
  border-color: var(--white);
  color: var(--brand) !important;
}

.btn-dark {
  background-color: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}
.btn-dark:hover, .btn-dark:focus {
  background-color: var(--brand);
  border-color: var(--brand);
  color: var(--white);
}
.btn-dark:hover svg, .btn-dark:focus svg {
  color: var(--white);
}

.btn-white {
  background-color: #fff;
  border-color: #fff;
  color: var(--dark);
}
.btn-white:hover, .btn-white:focus {
  background-color: var(--brand);
  border-color: var(--brand);
  color: var(--white);
}
.btn-white:hover svg, .btn-white:focus svg {
  color: var(--white);
}

.modal-open {
  padding-right: 0 !important;
}

.scroller * {
  scrollbar-width: thin;
  scrollbar-color: #ddd #eee;
}

.scroller *::-webkit-scrollbar {
  width: 12px;
}

.scroller *::-webkit-scrollbar-track {
  background: #eee;
}

.scroller *::-webkit-scrollbar-thumb {
  background-color: #ddd;
  border-radius: 20px;
  border: 3px solid #eee;
}

/*------ Disc List Style ------------*/
.disc__list li {
  padding-left: 1.25rem;
  position: relative;
}
.disc__list li::before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  position: absolute;
  top: 0.5rem;
  left: 0%;
  background-color: var(--brand);
  border-radius: 50%;
}
.disc__list li:not(:last-child) {
  margin-bottom: 0.25rem;
}
.disc__list.lg li::before {
  width: 0.625rem;
  height: 0.625rem;
  top: 0.65rem;
}

.tooltip {
  opacity: 1;
}
.tooltip .tooltip-inner {
  padding: 0 0.5rem;
  min-height: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--dark);
  opacity: 1;
  line-height: 1.2;
}

.tooltip.show {
  opacity: 1 !important;
}

.arrow__list li {
  position: relative;
  padding-left: 3rem;
}
.arrow__list li::before {
  content: "";
  display: block;
  width: 2.5rem;
  height: 1.125rem;
  position: absolute;
  top: 0.5rem;
  left: 0%;
  background: var(--long-right-arrow) no-repeat center center/contain;
  border-radius: 50%;
}
.arrow__list li:not(:last-child) {
  margin-bottom: 0.25rem;
}
.arrow__list.sm li {
  padding-left: 2rem;
}
.arrow__list.sm li::before {
  width: 1.5rem;
  height: 1rem;
  top: 0.5rem;
  background: var(--sm-right-arrow) no-repeat center center/cover;
}

@media (max-width: 991.99px) {
  html {
    font-size: 93.75%;
  }
}
@media (max-width: 767.99px) {
  .h1 {
    font-size: 2rem;
  }
}
@media (max-width: 575.99px) {
  html {
    font-size: 87.5%;
  }
  .btn {
    font-size: 0.937rem;
  }
  .container {
    max-width: calc(100% - 20px);
  }
}
.social__links li {
  margin-bottom: 0;
}
.social__links li a {
  width: 1.5rem;
  border: 1px solid var(--white);
  height: 1.5rem;
  border-radius: 50%;
  color: var(--white);
}
.social__links li a svg {
  width: 1rem;
  height: 1rem;
}
.social__links li a svg path {
  fill: var(--white);
}
.social__links li a:hover, .social__links li a:focus {
  background-color: var(--dark);
  color: var(--white);
}

.top__nav::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: -1px;
  width: 55%;
  background: var(--brand);
  clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
  z-index: 0;
}
.navbar .navbar-brand img {
  max-height: 2.5rem;width: auto;
}
.navbar .nav-item .nav-link {
  font-size: 1rem;
  color: var(--dark);
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.navbar .nav-item .nav-link:hover {
  color: var(--brand);
}
.navbar .nav-item .nav-link:hover .caret {
  transform: rotate(-180deg);
}
.navbar .nav-item.active .nav-link {
  color: var(--brand);
}
.navbar .nav-item.active .nav-link::after {
  content: "";
  width: 100%;
  height: 3px;
  background-color: var(--brand);
  position: absolute;
  bottom: 0;
  left: 0%;
  border-radius: 20px;
}
.navbar .nav-item.active .nav-link.btn-primary {
  color: var(--white);
  background-color: var(--dark);
}
.navbar .inner__icon {
  position: relative;
}
.navbar .inner__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.25rem;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23222' d='m13.292 12l-4.6-4.6l.708-.708L14.708 12L9.4 17.308l-.708-.708z'/%3E%3C/svg%3E") no-repeat center center/1.75rem;
  transition: all 0.3s ease;
}
.navbar .navbar-toggler {
  width: 2.5rem;
  height: 2.5rem;
  position: relative;
  margin-left: 1rem;
}
.navbar .navbar-toggler svg {
  position: relative;
  left: 1px;
}
.navbar .navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}
.navbar.fixed-top {
  position: fixed;
  background-color: var(--white) !important;
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease-in-out;
  animation: mymove 1s ease-in-out;
}
.navbar.fixed-top .navbar-brand img {
  max-height: 3rem;
}

@keyframes mymove {
  0% {
    top: -100%;
  }
  100% {
    top: 0;
  }
}
@media (max-width: 1199px) {
  .navbar .navbar-brand img {
    max-height: 3.5rem;
  }
}
@media (max-width: 991px) {
  .navbar .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0%;
    padding: 1rem;
    background-color: #fff;z-index: 9999;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-radius: 0 0 1rem 1rem;
  }
  .navbar .navbar-collapse .nav-link {
    width: auto;
    display: inline-block;
  }
}
@media (max-width: 576px) {
  .navbar .navbar-brand img {
    max-height: 3rem;
    width: auto;
  }
}
footer {
  position: relative;
  z-index: 1;
}


footer a {
  color: var(--white);
  font-size: 1rem;
}
footer a:hover, footer a:focus, footer a:active {
  color: var(--brand);
  text-decoration: underline;
}
footer .copyright__wrapp {
  border-top: 1px solid var(--border-color);
}
footer .logo {
  max-height: 5rem;
}

/*---------------------- Back to Top Css --------------*/
.backTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3.5rem;
  min-height: auto;
  height: 3.5rem;
  z-index: 999;
  border: 2px solid var(--white);
  display: none;
}
.backTop svg {
  width: 1.875rem;
  height: 1.875rem;
}
.backTop svg path {
  fill: var(--white);
}
.backTop:hover, .backTop:focus, .backTop:active {
  background-color: var(--dark);
}
.backTop.show {
  display: flex;
}

@media (max-width: 767.99px) {
  footer .logo {
    max-height: 4rem;
    width: auto;
  }
}
@media (max-width: 575.99px) {

  footer .logo {
    max-height: 3.5rem;
    width: auto;
  }
}
.social__box a {
  width: 38px;
  height: 38px;
  background-color: var(--brand);
  color: var(--white);
}
.social__box a svg {
  width: 20px;
  height: 20px;
}
.social__box a:hover, .social__box a:focus {
  background-color: var(--brand);
}
.social__box a:hover svg path, .social__box a:focus svg path {
  fill: var(--white);
}
.social__box.footer a:hover, .social__box.footer a:focus {
  background-color: var(--link-color);
}
.social__box.header a { background-color: transparent; }
.social__box.header a:hover { color: var(--brand) !important; }

.logo__box img {
  width: 100%;
  height: 6rem;
  object-fit: contain;
  padding: 0.25rem;
  filter: grayscale(100%);
  transition: all 0.3s ease-in-out;
}
.logo__box:hover img {
  filter: none;
}

.curve__top {
  border-radius: 3rem 3rem 0 0;
}
.footer-widget-title {
    color: var(--white);text-transform:uppercase;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 30px;
  font-size: 21px;
  z-index: 1;
}
.footer-widget-title::before {
  position: absolute;
  content: '';
  z-index: -1;
  width: 90px;
  height: 3px;
  border-radius: 50px;
  background: var(--brand);
  bottom: 0;
  left: 0;
}

.links__list li { position: relative; }
.links__list li::before { content: '';width: 1rem;height: 1rem;display: inline-block;background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23bb0b0b' stroke-dasharray='12' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M16 12l-7 -7M16 12l-7 7'%3E%3Canimate fill='freeze' attributeName='stroke-dashoffset' dur='0.4s' values='12;0'/%3E%3C/path%3E%3C/svg%3E") no-repeat center center/1.125rem;position:relative;top:3px;margin-right:.25rem;  }

.address__list { color: var(--white); }
.address__list li .icon { width: 1.25rem;height: 1.25rem; }

.go__top {
  margin-top: -4rem;
  position: relative;
  z-index: 2;
}

.itemHeight .carousel-item {
  min-height: 19rem;
}

.contact__list li .icon {
  width: 2rem;
}
.contact__list li .icon svg {
  width: 1.75rem;
  height: 1.75rem;
}

.form-control {
  background-color: #F5F5F5;
  border-color: rgba(227, 227, 227, 0.3921568627);
  height: 4.5rem;
  border-radius: 1rem;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 500;
}
.form-control::placeholder {
  color: #8D8D8D;
  font-size: 0.937rem;
  font-weight: 400;
  text-transform: uppercase;
}

textarea.form-control {
  height: auto;
}

.authore__avatar img {
  border-radius: 50% !important;width: 4rem;
  height: 4rem;
  object-fit: cover;
}

.post__detail__wrapper h2 { margin-top: 2.5em; }
.post__detail__wrapper h3 { margin-top: 1.75em; }
.post__detail__wrapper h4 { margin-top: 1em; }

h2, h3, h4, h5, h6 {
  font-family: var(--second-font);
}
.back__btn {
  left: -5rem;background-color: #fff;
}
.back__btn:hover, .back__btn:focus, .back__btn:active {
  background-color: #dcdcdc;
}
@media (max-width: 991px) {
  .back__btn {
    left: 3rem;position: fixed !important;top: 7rem !important;
  }
}
@media (max-width: 575px) {
  .back__btn {
    left: 2rem;top: 5rem !important;
  }
}

.blog__card {
    box-shadow: 0px 14px 30px rgba(0, 0, 0, 0.07);
}
.ellipsis > p {
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    white-space: normal;
}
.ellipsis > p:not(:first-child) { display:none; }
.widget {
    background-color: #f9f9f9;
}
.tagcloud a { background:#fff;display:inline-block;padding:.25rem .625rem;border-radius:2rem;border:1px solid #d5d5d5; }
.searchform div { display:flex;gap:0.5rem; }
.searchform div input[type='text'] { padding:.25rem .5rem;width:calc(100% - 6rem);border:1px solid var(--white);font-size:1rem; }
.searchform div input[type='text']:focus { outline:none; }
.searchform div input[type='submit'] { padding:.25rem .75rem;font-size:1rem;border:1px solid var(--brand);background-color:var(--brand);color:var(--white); }

.title-color {
  color: #0a0a0a !important;
}
.rs-breadcrumbs .breadcrumbs-inner2 {
  padding: 310px 0 180px;
  padding: 70px 0 0;
}
.rs-breadcrumbs .breadcrumbs-inner2 .page-title, .rs-breadcrumbs .breadcrumbs-inner .page-title {
  font-size: 48px;
  line-height: 56px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff;
  position: relative;
  z-index: 1;
  padding-top: 20px;
}
.rs-breadcrumbs .breadcrumbs-inner2 .page-title .watermark, .rs-breadcrumbs .breadcrumbs-inner .page-title .watermark {
  position: absolute;
  font-size: 170px;
  text-transform: uppercase;
  font-weight: 900;
  font-family: poppins, sans-serif;
  opacity: .05;
  width: 100%;
  left: 0;
  color: inherit;
  white-space: nowrap;
  vertical-align: middle;
}
@media (max-width:991px) {
    .rs-breadcrumbs .breadcrumbs-inner2 { padding-top:40px; }
    .rs-breadcrumbs .breadcrumbs-inner2 .page-title { font-size:32px; }
    .rs-breadcrumbs .breadcrumbs-inner2 .page-title .watermark { font-size:80px; }
}
