@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: #1A1818;
  --secondary: #1D2844;
  --bg-light: #f9f9f9;
  --link-color: #1D242E;
  --heading-color: #212121;
  --dark: #1A1818;
  --dark2: #2B2B2B;
  --black: #000000;
  --grey: #313131;
  --border-color: rgba(112, 112, 112, 0.2);
  --br: .875rem;
  --body-text-color: #464646;
  --radius: .875rem;
  --white: #ffffff;
  --body-font: "Poppins", sans-serif;
  --shadow: 0 8px 12px rgba(0, 0, 0, 0.12);
}

* {
  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: var(--white);
  text-rendering: optimizeLegibility;
  font-family: var(--body-font);
  color: var(--body-text-color);
}

b, strong {
  font-weight: 600;
}

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

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

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

.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: #F8F8F8 !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;
}

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

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

.round {
  border-radius: 0.875rem;
}

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

.ff-poppins {
  font-family: var(--secend-font);
}

.fw-extrabold {
  font-weight: 800;
}

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

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

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

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

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

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

.text-justify {
  text-align: justify;
}

.bg-primary-gradient {
  background: linear-gradient(#308080 0%, #004E4F 100%);
}

.bg-light-primary {
  background-color: rgba(44, 116, 116, 0.06);
}

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

.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: 1rem;
}

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

.btn {
  font-weight: 500;
  border-radius: var(--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__icon__box {
  width: 2rem;
  height: 2rem;
}

.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(--dark);
  border-color: var(--dark);
}
.btn-primary:hover .btn__icon__box, .btn-primary:focus .btn__icon__box, .btn-primary:active .btn__icon__box {
  background-color: var(--white);
}

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

.btn-outline-primary {
  border-color: 0;
  color: var(--brand);
  border: 0;
}
.btn-outline-primary:hover, .btn-outline-primary:focus, .btn-outline-primary:active {
  background-color: transparent;
  border-color: 0;
  color: var(--brand) !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-white {
  background-color: #fff;
  border-color: #fff;
  color: var(--dark);
  border-width: 2px;
}
.btn-white:hover, .btn-white:focus, .btn-white:active {
  background-color: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn-white:hover svg path, .btn-white:focus svg path, .btn-white:active svg path {
  fill: 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: 10px;
  height: 10px;
  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;
}

.check__list {
  padding-left: 0;
}
.check__list li {
  padding-left: 1.7rem;
  position: relative;
}
.check__list li::before {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  display: block;
  position: absolute;
  top: 0.6rem;
  left: 0%;
  background: var(--check-icon) no-repeat center center/contain;
}

.arrow__list {
  padding-left: 0;
}
.arrow__list li {
  padding-left: 1.25rem;
  position: relative;
  list-style-type: none;
}
.arrow__list li::before {
  content: "";
  width: 1rem;
  height: 0.5rem;
  display: block;
  position: absolute;
  top: 0.625rem;
  left: 0;
  background: var(--arrow-icon) no-repeat center center/contain;
}

.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;
}

.pagination .page-item {
  margin: 0.2rem;
}
.pagination .page-item .page-link {
  border: 1px solid #E5E5E5;
  font-weight: 600;
  color: var(--body-text-color);
  border-radius: 0%;
  line-height: 1;
  padding: 0.75rem 0.75rem;
  min-width: 2.5rem;
  text-align: center;
}
.pagination .page-item .page-link img {
  width: 1.125rem;
}
.pagination .page-item .page-link.active {
  background-color: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}
.pagination .page-item.active .page-link {
  background-color: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}

@media (max-width: 991.99px) {
  html {
    font-size: 93.75%;
  }
}
@media (max-width: 575.99px) {
  html {
    font-size: 87.5%;
  }
  .btn {
    font-size: 0.937rem;
  }
  .container {
    max-width: calc(100% - 10px);
  }
  .mobile__fill {
    padding: 0%;
    width: calc(100% + 30px);
  }
}
@media (min-width: 2000px) {
  .container-fluid {
    max-width: 1920px;
  }
}
.dropdown-item.active,
.dropdown-item:active {
  background-color: var(--brand);
}

.navigation__menu {
  z-index: 999;
  transition: all 0.3s ease-in-out;
}
.navigation__menu .social__links li a {
  background-color: var(--black);
  border: 1px solid var(--black);
  border-radius: 0.35rem;
}
.navigation__menu .social__links li a svg path {
  fill: var(--white);
}
.navigation__menu .social__links li a:hover, .navigation__menu .social__links li a:focus {
  background-color: var(--white);
  color: var(--white);
}
.navigation__menu .social__links li a:hover svg path, .navigation__menu .social__links li a:focus svg path {
  fill: var(--dark);
}
.navigation__menu .top__nav .links a {
  padding: 0.875rem 1.25rem;
  font-weight: 500;
}
@media (min-width: 992px) {
  .navigation__menu .top__nav .links a {
    border-right: 1px solid var(--border-color);
  }
}
.navigation__menu .top__nav .links a:hover {
  background-color: var(--brand);
  color: var(--white);
}
.navigation__menu .top__nav .links a.connect__btn {
  background-color: var(--dark);
  color: var(--white);
}
.navigation__menu .top__nav .links a.connect__btn:hover {
  background-color: var(--black);
  color: var(--white);
}
.navigation__menu.fixed {
  background-color: var(--dark);
}

.navbar {
  --bs-dropdown-link-active-bg: var(--brand);
  padding: 0%;
}
.navbar .nav-link {
  font-weight: 500;
  color: var(--dark);
  padding: 2rem 1.25rem !important;
}
.navbar .nav-link.active {
  background-color: var(--brand);
  color: var(--white);
}
.navbar .dropdown .nav-link.show {
  color: var(--brand);
}
.navbar.fixed-top {
  position: fixed;
  border-radius: 0%;
  background-color: var(--white);
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease-in-out;
}
.navbar .nav__btn {
  background-color: #f2f2f2;
  border-radius: 0.35rem;
  padding: 0.25rem 0.5rem;
}

.offcanvas {
  --bs-offcanvas-width: 600px;
  background: rgba(236, 236, 236, 0.7764705882);
  backdrop-filter: blur(10px);
}
.offcanvas .close__btn {
  width: 3.5rem;
  height: 3.5rem;
  background-color: rgba(255, 255, 255, 0.7294117647);
}
.offcanvas .offcanvas-body .collapse-icon {
  transition: transform 0.3s ease;
}
.offcanvas .offcanvas-body a[aria-expanded=true] .collapse-icon {
  transform: rotate(180deg);
}
.offcanvas .offcanvas-body .nav-link {
  font-size: 1.35rem;
}
.offcanvas .offcanvas-body .links__list > li {
  border-bottom: 1px solid #dad9d9;
  padding-bottom: 1rem;
}
.offcanvas .offcanvas-body .links__list .sub__menu li:not(:last-child) {
  padding-bottom: 0.25rem;
  border-bottom: 1px solid #eeeeee;
}
.offcanvas .offcanvas-body .links__list .sub__menu li .child__menu li {
  border: 0;
}
.offcanvas .offcanvas-body .contact__list li .icon {
  width: 3.5rem;
  height: 3.5rem;
  background-color: var(--brand);
}
.offcanvas .offcanvas-footer .social__links.justify-content-lg-start {
  justify-content: center !important;
}
.offcanvas .offcanvas-footer .social__links.justify-content-lg-start li a {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  border: 2px solid var(--dark) !important;
}
.offcanvas .offcanvas-footer .social__links.justify-content-lg-start li a:hover {
  background-color: var(--brand);
}

@media (max-width: 576px) {
  .navbar {
    padding: 0.875rem 0;
  }
  .navbar .navbar-brand img {
    height: 4.5rem;
  }
}
.social__links li a {
  width: 2.5rem;
  background-color: #fff;
  height: 2.5rem;
  border-radius: 50%;
}
.social__links li a svg {
  width: 1.25rem;
  height: 1.25rem;
}
.social__links li a svg path {
  fill: var(--dark);
}
.social__links li a:hover, .social__links li a:focus {
  background-color: var(--white);
  color: var(--white);
}

footer {
  --borderColor: #44515e !important;
  background-color: var(--black);
}
footer .logo {
  height: 8rem;
}
footer a {
  font-size: 0.937rem;
  color: var(--white);
}
footer a:hover {
  text-decoration: underline;
  color: var(--white);
  opacity: 0.7;
}
@media (max-width: 767px) {
  footer {
    padding-bottom: 6rem !important;
  }
}
footer .copyright__box {
  background-color: #242424;
}

/*---------------------- 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: 575.99px) {
  .backTop {
    bottom: 2rem;
    right: 1rem;
  }
  .backTop svg {
    width: 1.5rem;
    height: 1.5rem;
  }
}
@media (min-width: 992px) {
  .border-lg-start {
    border-left: 1px solid var(--borderColor) !important;
  }
  .border-lg-end {
    border-right: 1px solid var(--borderColor) !important;
  }
}
@media (min-width: 768px) {
  .border-md-end {
    border-right: 1px solid var(--borderColor) !important;
  }
}
.phone__btn {
  background-color: #81d654;
  z-index: 999;
  left: 2rem;
  bottom: 11rem;
  width: 4rem;
  height: 4rem;
}
.phone__btn svg {
  width: 1.5rem;
  height: 1.5rem;
}
.phone__btn svg path {
  fill: var(--white);
}
.phone__btn:hover, .phone__btn:focus, .phone__btn:active {
  background-color: #65a742;
  color: var(--white);
}

.whatsapp {
  background-color: #2eb843;
  z-index: 999;
  left: 2rem;
  bottom: 5rem;
  -webkit-box-shadow: 0 0 0 #0568A8;
  box-shadow: 0 0 0 #0568A8;
  -webkit-animation: pulse 1.5s infinite;
  animation: pulse 1.5s infinite;
  width: 4rem;
  height: 4rem;
  color: var(--white);
}
.whatsapp svg {
  width: 2rem;
  height: 2rem;
}
.whatsapp:hover, .whatsapp:focus, .whatsapp:active {
  background-color: #149a28;
  color: var(--white);
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 #2eb843;
  }
  70% {
    -webkit-box-shadow: 0 0 0 1.25rem rgba(5, 103, 168, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(5, 103, 168, 0);
  }
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 #2eb843;
    box-shadow: 0 0 0 0 #2eb843;
  }
  70% {
    -moz-box-shadow: 0 0 0 1.25rem rgba(5, 103, 168, 0);
    box-shadow: 0 0 0 1.25rem rgba(5, 103, 168, 0);
  }
  100% {
    -moz-box-shadow: 0 0 0 0 rgba(5, 103, 168, 0);
    box-shadow: 0 0 0 0 rgba(5, 103, 168, 0);
  }
}
@media (max-width: 576px) {
  .phone__btn {
    left: 1rem;
    bottom: 7rem;
    width: 3.5rem;
    height: 3.5rem;
  }
  .phone__btn svg {
    width: 1.5rem;
    height: 1.5rem;
  }
  .whatsapp {
    left: 1rem;
    bottom: 2rem;
    width: 3.5rem;
    height: 3.5rem;
  }
  .whatsapp svg {
    width: 1.5rem;
    height: 1.5rem;
  }
}
.owl-carousel .owl-stage {
  display: flex;
}
.owl-carousel .owl-item {
  display: flex;
  padding: 1px;
}
.owl-carousel .owl-item img {
  width: auto;
}
.owl-carousel .owl-item img.w-100 {
  width: 100% !important;
}

.owl-nav {
  margin-top: 1.5rem;
  text-align: center;
}
.owl-nav .owl-prev,
.owl-nav .owl-next {
  width: 3rem;
  height: 3rem;
  border-radius: 50% !important;
  margin: 0.25rem;
  background-color: var(--white) !important;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
.owl-nav .owl-prev span,
.owl-nav .owl-next span {
  display: none;
}
.owl-nav .owl-prev.disabled,
.owl-nav .owl-next.disabled {
  opacity: 0.6;
  pointer-events: none;
}
.owl-nav .owl-prev {
  background: var(--chevron-left) no-repeat center center/1.5rem !important;
  background-color: #fff !important;
}
.owl-nav .owl-prev:hover,
.owl-nav .owl-next:hover {
  background-color: #e0e0e0 !important;
}

.nav__primary .owl-nav .owl-prev, .nav__primary .owl-nav .owl-next {
  background-color: var(--brand) !important;
}
.nav__primary .owl-nav .owl-prev svg path, .nav__primary .owl-nav .owl-next svg path {
  stroke: var(--white);
}
.nav__primary .owl-nav .owl-prev:hover, .nav__primary .owl-nav .owl-next:hover {
  background-color: var(--dark) !important;
}

.owl-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
}
.owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0 0.2rem;
  justify-content: center;
  align-items: center;
  background-color: rgba(124, 124, 124, 0.3176470588) !important;
}
.owl-dots .owl-dot.active {
  background-color: var(--brand) !important;
  width: 16px;
  border-radius: 8px;
}

.header__wrapper {
  min-height: calc(100vh - 8rem);
  padding-top: 4rem;
}
@media (min-width: 2000px) {
  .header__wrapper {
    min-height: calc(1080px - 10rem);
  }
}
@media (max-width: 991px) {
  .header__wrapper {
    min-height: 600px;
  }
}
@media (max-width: 575px) {
  .header__wrapper {
    min-height: 500px;
    padding-top: 6rem;
  }
}
.header__wrapper .title {
  max-width: 35rem;
}
@media (max-width: 991px) {
  .header__wrapper .title {
    max-width: 30rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.header__wrapper .overlay {
  background: transparent linear-gradient(90deg, #000 0%, #000 100%) 0% 0% no-repeat padding-box;
  width: 100%;
  opacity: 0.7;
}

.top__title {
  display: inline-block;
  position: relative;
  font-size: 1.25rem;
  font-weight: 300;
  letter-spacing: 0.2em;
}
.top__title::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 80%;
  background-color: rgba(26, 24, 24, 0.0901960784);
  bottom: 5px;
  left: 0;
  transition: all 0.3s ease-in-out;
}

@media (min-width: 768px) {
  .position-md-absolute {
    position: absolute;
  }
}
.know__more__link svg {
  transition: all 0.3s ease-in-out;
}
.know__more__link:hover, .know__more__link:focus {
  text-decoration: underline;
}
.know__more__link:hover svg, .know__more__link:focus svg {
  transform: translateX(10px);
}
.know__more__link:hover svg path, .know__more__link:focus svg path {
  fill: var(--dark);
}
.know__more__link:not(.large) svg {
  width: 1.25rem;
}

.service__card {
  transition: all 0.3s ease-in-out;
  background-color: #fff;
  border: 1px solid var(--border-color);
}
.service__card .icon {
  width: 5rem;
  height: 5rem;
  background-color: var(--brand);
}
.service__card .icon svg, .service__card .icon img {
  width: 3rem;
  height: auto;
  filter: contrast(0) brightness(10);
}
.service__card .title {
  min-height: 4rem;
}
.service__card .title a {
  color: var(--dark);
}
.service__card .title a:hover {
  color: var(--brand);
}
.service__card:hover, .service__card:focus {
  background-color: var(--light);
  box-shadow: var(--shadow);
}

.shadow__cutoff .owl-stage-outer {
  height: calc(100% + 30px);
  margin: -15px;
  padding: 15px;
  width: calc(100% + 30px);
}

.step__wrapper {
  position: relative;
}
.step__wrapper .slider__line {
  height: 3px;
  z-index: 99;
  top: 1.5rem;
  width: 150vw;
  left: -50vw;
}
.step__wrapper .owl-carousel .owl-item {
  padding-top: 4rem;
  position: relative;
}
.step__wrapper .owl-carousel .owl-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 2rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: var(--white);
}

.step__card {
  position: relative;
}
.step__card .card {
  width: calc(100% - 2.5rem);
}
.step__card.right__align::before {
  left: -1.5rem;
  right: auto;
}
@media (max-width: 991px) {
  .step__card.right__align::before {
    left: 0.25rem;
    right: auto;
  }
}
.step__card.right__align .card {
  margin-left: auto;
  margin-right: 0;
}
@media (max-width: 991px) {
  .step__card .title__box {
    flex-direction: column-reverse;
  }
  .step__card::before {
    top: 0;
    left: 0.25rem;
    width: 2.5rem;
    height: 2.5rem;
  }
  .step__card .card {
    margin-left: auto;
    margin-right: 0 !important;
  }
}

.brand__card img {
  height: 8rem;
  width: auto;
  object-fit: contain;
}
@media (max-width: 991px) {
  .brand__card img {
    height: 6rem;
  }
}

.whychoose__us__slider .owl-item {
  padding: 0 0;
}
.whychoose__us__slider .owl-item:first-child .why__choose__card {
  border-left: var(--border-color) solid 1px;
}
.whychoose__us__slider .owl-item .why__choose__card {
  border-top: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  position: relative;
  padding-bottom: 5rem !important;
  margin-bottom: 3rem;
  transition: all 0.3s ease-in-out;
}
.whychoose__us__slider .owl-item .why__choose__card .icon__box {
  width: 5rem;
  height: 5rem;
  transition: all 0.3s ease-in-out;
  background-color: var(--white);
  position: absolute;
  bottom: -2.5rem;
  left: 50%;
  transform: translateX(-50%);
}
.whychoose__us__slider .owl-item .why__choose__card .icon__box svg, .whychoose__us__slider .owl-item .why__choose__card .icon__box img {
  width: 2.5rem;
  height: auto;
  transition: all 0.3s ease-in-out;
}
.whychoose__us__slider .owl-item .why__choose__card:hover, .whychoose__us__slider .owl-item .why__choose__card:focus {
  background-color: var(--bg-light);
}
.whychoose__us__slider .owl-item .why__choose__card:hover .icon__box, .whychoose__us__slider .owl-item .why__choose__card:focus .icon__box {
  border-radius: 1rem !important;
  background-color: var(--brand);
}
.whychoose__us__slider .owl-item .why__choose__card:hover .icon__box img, .whychoose__us__slider .owl-item .why__choose__card:focus .icon__box img {
  transform: scale(1.2);
}

.test_quote_1 {
  position: absolute;
  top: 9rem;
  left: -1rem;
  width: 3rem;
  height: auto;
  z-index: 1;
}

.test_quote_2 {
  right: -2rem;
  width: 9rem;
  height: auto;
}

.testimonial__card .rating {
  height: 2.5rem;
}
.testimonial__card.__text {
  color: var(--dark2);
}
.testimonial__card .author__thumb {
  width: 5rem;
  height: 5rem;
}

.contact__list .icon {
  width: 3rem;
  position: relative;
  top: 0.5rem;
}
.contact__list .icon svg {
  width: 2rem;
  height: auto;
}

.blog__card .more__link svg {
  transition: all 0.3s ease-in-out;
}
.blog__card .more__link:hover {
  text-decoration: underline;
}
.blog__card .more__link:hover svg {
  transform: translateX(5px) translateY(-5px);
}
.blog__card .more__link:hover svg path {
  fill: var(--brand);
}

.contact__form {
  margin-top: -8rem;
  position: relative;
  z-index: 99;
}
.contact__form .icon__box {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
}
.contact__form .icon__box svg {
  fill: var(--dark);
}

html[dir=rtl] .border-start {
  border-left: 0 !important;
  border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color);
}
html[dir=rtl] .border-start.department__box {
  border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
  border-right: 0;
}
html[dir=rtl] .text-start {
  text-align: right !important;
}
@media (min-width: 992px) {
  html[dir=rtl] .ps-lg-5 {
    padding-left: 0 !important;
    padding-right: 3rem !important;
  }
}/*# sourceMappingURL=style.css.map */