@charset "UTF-8";
.flex-column {
  display: flex;
  flex-direction: column;
}

.flex-center, .flex-center-column {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-align-center {
  display: flex;
  align-items: center;
}

.flex-between, .flex-between-center {
  display: flex;
  justify-content: space-between;
}

.flex-between-center {
  align-items: center;
}

.flex-between-start {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.flex-end, .flex-end-column {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.flex-start {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.flex-center-column {
  flex-direction: column;
}

.flex-end-column {
  flex-direction: column;
}

.flex-center-vert {
  display: flex;
  align-items: center;
}

.flex-center-horiz {
  display: flex;
  justify-content: center;
}

.flex-evenly {
  display: flex;
  justify-content: space-evenly;
}

* {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  border-radius: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  font-family: "Outfit", sans-serif;
  line-height: 1.5;
  font-weight: 400;
  font-size: 14px;
  overflow-x: hidden;
  color: #000;
}
@media only screen and (min-width: 1200px) {
  body {
    font-size: 16px;
  }
}
@media only screen and (min-width: 1400px) {
  body {
    font-size: 18px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  margin-bottom: 0;
}

h1 {
  font-size: 40px;
}
@media only screen and (min-width: 1900px) {
  h1 {
    font-size: 50px;
  }
}
@media only screen and (max-width: 991px) {
  h1 {
    font-size: 29px;
  }
}

h2 {
  font-size: 28px;
}
@media only screen and (max-width: 991px) {
  h2 {
    font-size: 22px;
  }
}
h2.font-large {
  font-size: 40px;
}
@media only screen and (max-width: 1899px) {
  h2.font-large {
    font-size: 32px;
  }
}
h2.font-medium {
  font-size: 25px;
  font-weight: 500;
}
@media only screen and (min-width: 1900px) {
  h2.font-medium {
    font-size: 44px;
  }
}

h3 {
  font-size: 18px;
}
@media only screen and (min-width: 1900px) {
  h3 {
    font-size: 22px;
  }
}

h4 {
  font-size: 16px;
}

h5 {
  font-size: 19px;
}

h6 {
  font-size: 15px;
  font-family: "Outfit", sans-serif;
}

a {
  cursor: pointer;
}
a:hover {
  text-decoration: none;
}

p {
  font-size: 14px;
}
@media only screen and (min-width: 1900px) {
  p {
    font-size: 18px;
  }
}

img {
  max-width: 100%;
  height: auto;
}

.py-65 {
  padding: 40px 0px;
}
@media only screen and (min-width: 1200px) {
  .py-65 {
    padding: 65px 0px;
  }
}

.py-100 {
  padding: 50px 0px;
}
@media only screen and (min-width: 1200px) {
  .py-100 {
    padding: 70px 0px;
  }
}

.py-40 {
  padding: 20px 0px;
}
@media only screen and (min-width: 1200px) {
  .py-40 {
    padding: 40px 0px;
  }
}

.pt-100 {
  padding-top: 50px;
}
@media only screen and (min-width: 1200px) {
  .pt-100 {
    padding-top: 100px;
  }
}

.px-112 {
  padding-right: 3rem;
  padding-left: 3rem;
}
@media only screen and (min-width: 1200px) {
  .px-112 {
    padding-right: 7rem;
    padding-left: 7rem;
  }
}

.gap1 {
  gap: 4px;
}
.gap2 {
  gap: 8px;
}
.gap3 {
  gap: 12px;
}
.gap4 {
  gap: 16px;
}

.know-more {
  text-align: center;
  margin-top: 30px;
  font-weight: 600;
}
.know-more a {
  text-decoration: none;
}

.hr {
  width: 100%;
  height: 1px;
  background: #e0e0e0;
}

.blur-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 8;
  backdrop-filter: blur(3px);
  background: rgba(0, 0, 0, 0.2);
  display: none;
}

.login-open .blur-bg {
  display: block;
}

.text-primary2 {
  color: #000;
}
.text-green {
  color: #000;
}

.custooltip-wrap .custooltip {
  display: none;
  text-align: center;
  white-space: nowrap;
  position: absolute;
  bottom: 150%;
  left: 50%;
  border-radius: 5px;
  padding: 8px;
  transform: translateX(-50%);
  background-color: #fff;
  box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  box-shadow: 0px 1.33px 3.33px 0px rgba(0, 0, 0, 0.102);
}
.custooltip-wrap:hover .custooltip {
  display: block;
}

.logo {
  background: url(../img/logo-bg.png);
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  width: 324px;
  height: 148px;
  background-size: contain;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
}
@media only screen and (max-width: 991px) {
  .logo {
    height: 77px;
    width: auto;
    padding: 10px;
    background-size: cover;
  }
}
@media only screen and (max-width: 991px) {
  .logo img {
    max-width: 77%;
    margin-top: -23px;
  }
}

.topbar {
  background: #f1f2f7;
  height: 50px;
  display: flex;
  align-items: center;
  clip-path: polygon(1% 0, 100% 0, 100% 100%, 0 100%);
}
.topbar p {
  color: #000;
  font-size: 16px;
}
.topbar a {
  color: #000;
  text-decoration: none;
}
.topbar a i {
  font-size: 16px;
}
@media only screen and (max-width: 991px) {
  .topbar {
    display: none;
  }
}
@media only screen and (max-width: 1899px) {
  .topbar .social-media-top {
    margin-left: 16rem;
  }
}
@media (max-width: 1680px) {
  .topbar .social-media-top {
    margin-left: 10rem;
  }
}
@media (max-width: 1550px) {
  .topbar .social-media-top {
    margin-left: 13rem;
  }
}

header {
  padding-bottom: 0;
  width: 100%;
}
@media only screen and (min-width: 992px) {
  header {
    padding: 19px 0;
  }
}
header .container {
  display: flex;
  align-items: center;
  justify-content: end;
}
@media only screen and (min-width: 1900px) {
  header .container {
    justify-content: space-between;
  }
}
header .logo img {
  height: 55px;
}
header nav.navbar {
  margin-left: 0;
}
header nav ul {
  display: flex;
  gap: 60px;
  list-style: none;
  margin-bottom: 0;
}
@media only screen and (max-width: 1199px) {
  header nav ul {
    gap: 25px;
  }
}
@media only screen and (max-width: 991px) {
  header nav ul {
    flex-direction: column;
    padding-left: 20px;
  }
}
header nav ul a.nav-link {
  text-decoration: none;
  font-size: 17px;
  color: #7d7f85;
  transition: 0.3s;
  position: relative;
}
@media only screen and (max-width: 991px) {
  header nav ul a.nav-link {
    color: #d5d5d5;
  }
}
header nav ul a.nav-link:hover, header nav ul a.nav-link:focus {
  color: #97362C;
  font-weight: 600;
}
header nav ul a.nav-link.active {
  color: #97362C;
  font-weight: 600;
}
header nav ul a.nav-link.active::before {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 5px;
  width: -webkit-fill-available;
  width: -moz-available;
  width: fill-available;
  height: 6px;
  background: #97362c;
  transition: width 0.3s ease;
  border-radius: 10px;
}
@media only screen and (max-width: 991px) {
  header nav ul a.nav-link.active::before {
    display: none;
  }
}
header nav ul a.nav-link.active::after {
  width: 100%;
}
header nav ul a.nav-link.dropdown-toggle::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f078";
  display: inline-block;
  margin-left: 0.5em;
  vertical-align: middle;
  font-size: 0.75em;
  border: 0;
}
header nav ul .dropdown-menu-large {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  transform: translateX(0%);
  font-size: 15px;
  top: 33px !important;
}
@media only screen and (min-width: 992px) {
  header nav ul .dropdown-menu-large {
    width: 502px;
    font-size: 18px;
    top: 52px !important;
  }
}
header nav ul .dropdown-menu-large li a.dropdown-item {
  padding: 12px 20px;
  text-wrap: auto;
}
header nav ul .dropdown-menu-large li a.dropdown-item:hover, header nav ul .dropdown-menu-large li a.dropdown-item:active {
  background: #ffeeee;
  color: #7b1e1e;
}
@media (min-width: 992px) {
  header nav ul .navbar .dropdown:hover .dropdown-menu {
    display: block;
    visibility: visible;
    opacity: 1;
    transition: all 0.3s ease;
    margin-top: 0;
  }
}
header .actions {
  display: flex;
  align-items: center;
  gap: 25px;
}
@media only screen and (max-width: 1899px) {
  header .actions {
    margin-left: 6rem;
  }
}
@media only screen and (max-width: 1199px) {
  header .actions {
    margin-left: 3rem;
  }
}
@media only screen and (max-width: 991px) {
  header .actions {
    display: none;
  }
  header .actions.contact-mobile {
    display: block !important;
    margin-left: 39px;
  }
}
header .actions .search-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #ccc;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .actions .search-btn i {
  font-size: 17px;
  color: #8d8d8d;
}
header .actions .btn-contact {
  background: #b63a2c;
  color: #fff;
  padding: 10px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}
header .actions .btn-contact:hover {
  background: #912f24;
}
@media (max-width: 767px) {
  header .navbar .navbar-collapse.collapsing {
    height: auto !important;
  }
  header .navbar .lateral-left {
    left: -100%;
    animation: slide-out-left 200ms forwards;
  }
  header .navbar .lateral-left.open {
    animation: slide-in-left 200ms forwards;
  }
  header .navbar .lateral-right {
    right: -100%;
    animation: slide-out-right 200ms forwards;
  }
  header .navbar .lateral-right.open {
    animation: slide-in-right 200ms forwards;
  }
  header .navbar .navbar-collapse {
    top: 0px;
    bottom: 0px;
    position: fixed;
    width: 80%;
    width: calc(100% - 60px);
    max-width: 320px;
    height: auto !important;
    /* Optional styling */
    background: #f8f8f8;
    padding: 30px;
    top: 52px;
  }
  header .navbar .lateral-left.open,
  header .navbar .lateral-right.open {
    display: block !important;
    overflow-y: auto;
  }
}
@keyframes slide-in-left {
  0% {
    left: -100%;
  }
  100% {
    left: 0px;
  }
}
@keyframes slide-out-left {
  0% {
    left: 0px;
  }
  100% {
    left: -100%;
  }
}
@keyframes slide-in-right {
  0% {
    right: -100%;
  }
  100% {
    right: 0px;
  }
}
@keyframes slide-out-right {
  0% {
    right: 0px;
  }
  100% {
    right: -100%;
  }
}

.offcanvas-start.custom-offcanvas {
  width: 400px;
  background-color: #121111;
  color: white;
}
.offcanvas-start .offcanvas-header h5 img {
  width: 200px;
}
@media (max-width: 992px) {
  .offcanvas-start .offcanvas-body {
    overflow-y: visible !important;
    min-height: 235px;
    flex-grow: inherit;
  }
}

.banner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  min-height: 77vh;
  overflow: hidden;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .banner {
    min-height: 60vh;
  }
}
.banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, rgba(114, 122, 140, 0) 0%, rgba(0, 0, 0, 0.5) 26.92%, #000000 111.85%);
  z-index: 1;
}
.banner video {
  position: absolute;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner video.tabvideo {
  display: none;
}
@media only screen and (max-width: 767px) {
  .banner video.tabvideo {
    display: block;
  }
}
.banner video.mobilevideo {
  display: none;
}
@media only screen and (max-width: 559px) {
  .banner video.mobilevideo {
    display: block;
  }
}
.banner h1 {
  color: #fff;
  padding-right: 0;
}
@media only screen and (min-width: 992px) {
  .banner h1 {
    padding-right: 39rem;
  }
}
.banner p {
  color: #fff;
  font-weight: 400;
  padding-right: 0;
}
@media only screen and (min-width: 992px) {
  .banner p {
    padding-right: 28rem;
  }
}
.banner .welcome-tag {
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  padding: 10px 25px;
  border-radius: 4px 0 0 4px;
  position: relative;
}
.banner .welcome-tag h4 {
  color: #97362C;
  text-transform: uppercase;
  font-weight: 500;
}
.banner .welcome-tag .dot {
  width: 10px;
  height: 10px;
  background: #97362c;
  border-radius: 50%;
  margin-right: 10px;
}
.banner .welcome-tag::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 0;
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 20px solid #ffffff;
}

.btn.btn-red2 {
  background: #97362C;
  padding: 13px 26px;
  color: #fff;
  border: 0;
  font-weight: 500;
}
.btn.btn-red2:hover {
  background: #c55347;
  color: #fff;
}
.btn.btn-red2 a {
  color: #fff;
  text-decoration: none;
}

.features {
  background: url(../img/red-bg.jpg);
  background-repeat: no-repeat;
  background-size: auto;
}
.features h5 {
  text-transform: uppercase;
  color: #fff;
  font-weight: 500;
  text-align: center;
}
.features h2 {
  color: #fff;
  text-align: center;
}
.features .info-card {
  margin: 18px auto;
  background: #f3f4f8;
  border-radius: 5px;
  padding: 40px 16px 60px;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
  border-bottom: 5px solid #97362C;
  height: auto;
}
@media only screen and (min-width: 1400px) {
  .features .info-card {
    height: 280px;
  }
}
@media only screen and (min-width: 1900px) {
  .features .info-card {
    height: 334px;
  }
}
.features .info-card h3 {
  font-weight: 500;
  color: #1f2126;
  margin-bottom: 15px;
}
.features .info-card p {
  color: #7d7f85;
  line-height: 1.6;
  margin: 0 auto;
}
.features .info-card .icon-wrapper {
  position: absolute;
  bottom: -38px;
  left: 50%;
  transform: translateX(-50%);
}
.features .info-card .icon-wrapper .icon {
  width: 86px;
  height: 86px;
}

.about p {
  color: #3d4c5e;
}

.stats-section {
  display: flex;
  gap: 60px;
  padding: 10px 10px;
}
.stats-section .stat-box {
  text-align: center;
}
.stats-section .stat-box .stat-number {
  font-size: 42px;
  font-weight: 700;
  color: #a03a2c;
}
.stats-section .stat-box .plus {
  font-size: 32px;
  font-weight: 700;
  color: #a03a2c;
  margin-left: 2px;
}
.stats-section .stat-box p {
  font-size: 14px;
  margin-top: 6px;
  line-height: 1.3;
  color: #333;
}

.offer {
  background-color: #ffefee;
  margin-right: 0;
  border-radius: 10px;
}
@media only screen and (min-width: 992px) {
  .offer {
    margin-right: 2rem;
  }
}
.offer .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  padding: 50px 0 10px;
}
.offer .services-grid .service-card {
  padding: 20px 20px 20px 0;
  position: relative;
  background: url(../img/offer.png) no-repeat;
  background-size: contain;
  background-position: right;
}
.offer .services-grid .service-card h3 {
  font-weight: 500;
  margin-bottom: 6px;
  color: #000;
}
.offer .services-grid .service-card p {
  line-height: 1.4;
  color: #000000;
  margin-top: 14px;
}
.offer .services-grid .service-card img {
  max-width: -moz-max-content;
  max-width: max-content;
}
.offer {
  /* Responsive */
}
@media (max-width: 992px) {
  .offer .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .offer .services-grid {
    grid-template-columns: 1fr;
  }
}

.contact .contact-left {
  width: 95%;
  margin-left: 16px;
  margin-right: 0;
}
@media only screen and (min-width: 1400px) {
  .contact .contact-left {
    margin-left: 2rem;
  }
}
@media only screen and (min-width: 1900px) {
  .contact .contact-left {
    width: 70%;
    margin-left: 17rem;
    margin-right: 0;
  }
}
.contact .contact-left h2 {
  font-size: 32px;
  margin: 10px 0;
}
.contact .contact-left p {
  color: #555;
  margin-bottom: 20px;
}
.contact .contact-left form input,
.contact .contact-left textarea {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #dddddd;
  font-size: 14px;
}
.contact .contact-left textarea {
  height: 130px;
  resize: none;
}
.contact .contact-left .custom-select {
  height: 48px;
  font-size: 15px;
  color: #909090;
}
.contact .contact-left .custom-select:focus {
  box-shadow: none;
  border-color: #bdbdbd;
}
.contact {
  /* RIGHT SIDE */
}
.contact .contact-right {
  position: relative;
  display: flex;
}
.contact .contact-right .info-card {
  width: 470px;
  background: url(../img/contact-bg.png);
  background-repeat: no-repeat;
  padding: 40px;
  z-index: 2;
  position: relative;
  color: #fff;
  height: auto;
}
@media only screen and (min-width: 1400px) {
  .contact .contact-right .info-card {
    height: 584px;
  }
}
.contact .contact-right .info-card .info-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 30px;
}
.contact .contact-right .info-card .info-box h4 {
  margin: 0;
  font-size: 15px;
}
.contact .contact-right .info-card .info-box .icon {
  width: 45px;
  height: 45px;
  background: #a2392e;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
}
.contact .contact-right .info-card .info-box p {
  margin: 3px 0 0 0;
  font-size: 18px;
  color: #ddd;
}
.contact .contact-right .info-card .info-box p a {
  color: #ddd;
  text-decoration: none;
}
.contact {
  /* MAP */
}
.contact .contact-right iframe {
  flex-grow: 1;
  border: none;
  border-radius: 10px;
}
.contact {
  /* RESPONSIVE */
}
@media (max-width: 900px) {
  .contact .contact-right {
    flex-direction: column;
  }
  .contact .contact-right iframe {
    margin-left: 0;
    margin-top: 20px;
    height: 300px;
  }
  .contact .contact-right .info-card {
    width: 100%;
    background: #330808;
  }
}

.ossr-footer {
  background: #0e0e0e;
  color: #fff;
  padding-top: 60px;
  position: relative;
  overflow: hidden;
}
.ossr-footer:before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, #7b1e1e, #300808);
  border-radius: 50%;
  left: -150px;
  bottom: -150px;
  opacity: 0.4;
  z-index: 0;
}
.ossr-footer:after {
  content: "";
  position: absolute;
  width: 325px;
  height: 325px;
  background: radial-gradient(circle, #7b1e1e, #300808);
  border-radius: 50%;
  right: 420px;
  top: -130px;
  opacity: 0.6;
  z-index: 0;
}
.ossr-footer .footer-main {
  display: flex;
  gap: 5rem;
  margin: auto;
  z-index: 2;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .ossr-footer .footer-main {
    flex-direction: column;
  }
}
.ossr-footer .footer-main .footer-left {
  width: 100%;
}
@media only screen and (min-width: 992px) {
  .ossr-footer .footer-main .footer-left {
    width: 35%;
  }
}
.ossr-footer .footer-main .footer-left .footer-text {
  color: #fff;
}
.ossr-footer .footer-main .footer-left .footer-social {
  margin-top: 20px;
}
.ossr-footer .footer-main .footer-left .footer-social span::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 100%;
  height: 5px; /* thickness of border */
  background: linear-gradient(90deg, #ffffff 0%, #97362c 109.29%);
}
.ossr-footer .footer-main .footer-left .footer-social a {
  color: #fff;
  margin-right: 12px;
  font-size: 18px;
}
.ossr-footer .footer-main .footer-left .footer-social a:hover {
  color: #c34534;
}
.ossr-footer .footer-main .footer-links {
  display: flex;
  gap: 70px;
}
@media only screen and (max-width: 991px) {
  .ossr-footer .footer-main .footer-links {
    flex-wrap: wrap;
  }
}
.ossr-footer .footer-main .footer-links .footer-column h5 {
  margin-bottom: 31px;
  position: relative;
}
.ossr-footer .footer-main .footer-links .footer-column h5::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -19px;
  width: 100%;
  height: 5px; /* thickness of border */
  background: linear-gradient(90deg, #ffffff 0%, #97362c 109.29%);
}
.ossr-footer .footer-main .footer-links .footer-column a {
  display: block;
  margin-bottom: 8px;
  color: #ccc;
  text-decoration: none;
}
.ossr-footer .footer-main .footer-links .footer-column a:hover {
  color: #df4c3b;
}
.ossr-footer .newsletter-bar {
  margin: 30px auto;
  background-color: #581313;
  padding: 42px 40px;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #581313 url(../img/newsletter.png) no-repeat;
  background-size: cover;
}
@media only screen and (max-width: 991px) {
  .ossr-footer .newsletter-bar {
    flex-wrap: wrap;
    padding: 25px 16px;
  }
}
.ossr-footer .newsletter-bar h2 {
  color: #fff;
}
@media only screen and (max-width: 991px) {
  .ossr-footer .newsletter-bar h2 {
    margin-bottom: 15px;
  }
}
.ossr-footer .newsletter-bar .newsletter-box {
  display: flex;
  position: relative;
}
.ossr-footer .newsletter-bar .newsletter-box input {
  padding: 12px 15px;
  border: none;
  border-radius: 3px;
  width: 360px;
}
@media only screen and (max-width: 559px) {
  .ossr-footer .newsletter-bar .newsletter-box input {
    width: 100%;
  }
}
.ossr-footer .footer-offices {
  display: flex;
  justify-content: space-between;
  margin: 35px auto;
  gap: 25px;
}
@media only screen and (max-width: 991px) {
  .ossr-footer .footer-offices {
    flex-direction: column;
  }
}
.ossr-footer .footer-offices .office-item {
  display: flex;
  align-items: start;
  gap: 11px;
  z-index: 1;
}
.ossr-footer .footer-offices .office-item img {
  max-width: 24px;
}
.ossr-footer .footer-offices .office-item h4 {
  margin: 0px 0 9px;
  font-size: 17px;
  font-weight: 600;
}
@media only screen and (min-width: 1900px) {
  .ossr-footer .footer-offices .office-item h4 {
    font-size: 24px;
  }
}
.ossr-footer .footer-offices .office-item h5 {
  margin-bottom: 5px;
  font-weight: 500;
}
.ossr-footer .footer-offices .office-item span {
  font-size: 13px;
  opacity: 0.7;
  line-height: 1.5;
}
.ossr-footer .footer-bottom {
  text-align: center;
  padding: 20px 0;
  font-size: 15px;
  border-top: 1px solid #fff;
}
.ossr-footer .btn.btn-red2 {
  background: #97362c;
  padding: 11px 25px;
  color: #fff;
  border: 0;
  font-weight: 500;
  position: absolute;
  right: 3px;
  top: 3px;
  border-radius: 0;
}
@media only screen and (max-width: 991px) {
  .ossr-footer .btn.btn-red2 {
    padding: 8px 22px;
  }
}
@media only screen and (max-width: 559px) {
  .ossr-footer .btn.btn-red2 {
    position: static;
  }
}
.ossr-footer .btn.btn-red2:hover {
  background: #97362c;
  color: #fff;
}

.banner-about {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  min-height: 160px;
  overflow: hidden;
  background: url(../img/about-banner.png);
  background-repeat: no-repeat;
  color: #fff;
}
@media only screen and (min-width: 1400px) {
  .banner-about {
    min-height: 300px;
    align-items: center;
  }
}
@media only screen and (min-width: 1900px) {
  .banner-about {
    min-height: 399px;
    align-items: center;
  }
}
.banner-about h3 {
  color: #97362C;
  text-transform: uppercase;
}
.banner-about h1 {
  color: #fff;
  padding-right: 39rem;
  font-weight: 600;
}
@media only screen and (max-width: 991px) {
  .banner-about h1 {
    padding-right: 0;
  }
}
.banner-about p {
  color: #fff;
  font-weight: 400;
  padding-right: 28rem;
}

.red-color {
  color: #97362C;
}

.about-sec {
  background: url(../img/about-sec.png);
  background-repeat: no-repeat;
  background-position: top right;
}
@media only screen and (max-width: 1199px) {
  .about-sec {
    background-size: 67%;
  }
}
@media only screen and (max-width: 991px) {
  .about-sec {
    background: none;
  }
}
.about-sec p {
  padding-right: 0;
}
@media only screen and (max-width: 1899px) {
  .about-sec p {
    padding-right: 13rem;
  }
}
@media only screen and (max-width: 1399px) {
  .about-sec p {
    padding-right: 14rem;
  }
}
@media only screen and (max-width: 991px) {
  .about-sec p {
    padding-right: 0;
  }
}
.about-sec .custom-tabs {
  border-bottom: 0;
}
.about-sec .custom-tabs .nav-link {
  background: #f2f2f2;
  border-radius: 0;
  color: #000;
  padding: 10px 16px;
}
.about-sec .custom-tabs .nav-link.active {
  background: #000;
  color: #fff;
  border-radius: 4px;
}

.director {
  background: #09131b;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  margin-left: 2rem;
}
@media only screen and (max-width: 1199px) {
  .director {
    margin-left: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
}
.director h2 {
  font-weight: 600;
  color: #97362C;
}
.director p {
  color: #ffffff;
}

.features-section h2 {
  margin: 3rem 0;
}
.features-section .features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
}
@media (max-width: 1200px) {
  .features-section .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .features-section .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .features-section .features-grid {
    grid-template-columns: 1fr;
  }
}
.features-section .feature-box h2 {
  color: #97362c;
  font-weight: 700;
  margin-bottom: 10px;
}
.features-section .feature-box h4 {
  color: #000;
  font-weight: 600;
  margin-bottom: 8px;
}
.features-section .feature-box p {
  color: #444;
}

.presence {
  background: #010101;
  position: relative;
  overflow: hidden;
}
.presence::before {
  content: "";
  position: absolute;
  width: 427px;
  height: 427px;
  background: linear-gradient(0deg, rgba(72, 15, 10, 0.1) 5.02%, #480f0a 85.52%);
  border-radius: 50%;
  left: -90px;
  bottom: -150px;
  z-index: 0;
}
@media only screen and (max-width: 991px) {
  .presence::before {
    content: none;
  }
}
.presence h2,
.presence h3 {
  color: #fff;
  text-align: center;
}

.services {
  display: flex;
  align-items: start;
  justify-content: center;
  position: relative;
  width: 100%;
  min-height: 570px;
  overflow: hidden;
  background: url(../img/networking-banner.png);
  background-repeat: no-repeat;
  color: #fff;
  padding-top: 3rem;
}
@media only screen and (min-width: 480px) {
  .services {
    min-height: 605px;
    align-items: center;
    padding-top: 0;
  }
}
.services.field-force {
  background: url(../img/field-force-banner.png);
}
.services.utility-meter {
  background: url(../img/utility-meter-reading-banner.png);
}
.services.utility-mgn {
  background: url(../img/utility-meter-mgn-banner.png);
}
.services.bulk-veriable {
  background: url(../img/bulk-veriable-banner.png);
}
.services.consumer-indexing {
  background: url(../img/consumer-indexing-banner.png);
}
.services.harware {
  background: url(../img/IT-hardware-banner.png);
}
.services.drive-test {
  background: url(../img/drive-test-banner.png);
}
.services.doc-mgn {
  background: url(../img/document-mgn-banner.png);
}
.services h1 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 1rem;
}
.services p {
  color: #fff;
  font-weight: 400;
  padding-right: 0;
}
@media only screen and (min-width: 992px) {
  .services p {
    padding-right: 28rem;
  }
}

.network-img {
  margin-top: -8rem;
}

.services-section {
  margin-top: 0;
}
@media only screen and (min-width: 992px) {
  .services-section {
    margin-top: -30rem;
    padding: 25px 6px 10px;
  }
}

.services-card {
  background: #fff;
  padding: 25px 25px 10px;
  border-radius: 10px;
}
.services-card h2 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 20px;
}

.service-item {
  background: #f7f7f7;
  border: 1px solid #eee;
  padding: 14px 16px;
  margin-bottom: 12px;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
}
.service-item:hover {
  background: #efefef;
}
.service-item p {
  font-weight: 400;
  color: #000;
  margin-bottom: 0;
}
.service-item i {
  transform: rotateZ(45deg);
  color: #000;
}

.service-list .service-box {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 35px;
}
.service-list .icon img {
  max-width: 54px;
}
.service-list .text h3 {
  font-weight: 600;
  color: #020202;
  margin-bottom: 6px;
}
.service-list .text p {
  color: #615959;
  font-weight: 400;
}

.why-choose {
  color: #615959;
  line-height: 37px;
}

.contact-page {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  min-height: 160px;
  overflow: hidden;
  background: url(../img/contact.png);
  background-repeat: no-repeat;
  color: #fff;
}
@media only screen and (min-width: 1400px) {
  .contact-page {
    min-height: 300px;
    align-items: center;
  }
}
@media only screen and (min-width: 1900px) {
  .contact-page {
    min-height: 455px;
    align-items: center;
  }
}
.contact-page h1 {
  color: #fff;
  font-weight: 600;
}

.contact-bg {
  background: #f1f1f1;
  border-radius: 10px;
}
.contact-bg h2 {
  font-weight: 500;
}
.contact-bg p {
  color: #031031;
  font-weight: 500;
}
.contact-bg p.value, .contact-bg p a {
  font-weight: 400;
  color: #000;
  text-decoration: none;
}
.contact-bg .contact-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid #e5e5e5;
}
.contact-bg .contact-box:last-child {
  border-bottom: 0;
}
.contact-bg .contact-box .icon img {
  max-width: 42px;
  height: 42px;
}
.contact-bg .info label {
  font-weight: 400;
  color: #555555;
}

.contact-form {
  margin: 0;
  padding: 20px;
}
.contact-form h2 {
  font-weight: 500;
  color: #031031;
  margin-bottom: 5px;
}
.contact-form .subtext {
  color: #7d7f85;
  font-size: 20px;
  margin: 25px 0;
}
.contact-form form .form-input {
  padding: 14px 15px;
  border: 1px solid #e6e6e6;
  border-radius: 3px;
  font-size: 15px;
  outline: none;
  transition: 0.3s;
  background: #fff;
  width: 100%;
  margin-bottom: 20px;
}
.contact-form form .form-input::-moz-placeholder {
  color: #9b9b9b;
}
.contact-form form .form-input::placeholder {
  color: #9b9b9b;
}
.contact-form form .form-input:focus {
  border-color: #97362c;
}
.contact-form form .form-textarea {
  width: 100%;
  height: 140px;
  padding: 14px 15px;
  border: 1px solid #e6e6e6;
  background: #fafafa;
  border-radius: 6px;
  font-size: 15px;
  resize: none;
  margin-bottom: 25px;
  outline: none;
}
.contact-form form .form-textarea::-moz-placeholder {
  color: #9b9b9b;
}
.contact-form form .form-textarea::placeholder {
  color: #9b9b9b;
}
.contact-form form .form-textarea:focus {
  border-color: #97362c;
}
.contact-form form .btn.btn-red2:hover {
  background: #97362c;
  color: #fff;
}

.career {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  min-height: 160px;
  overflow: hidden;
  background: url(../img/career.png);
  background-repeat: no-repeat;
  color: #fff;
}
@media only screen and (min-width: 1400px) {
  .career {
    min-height: 300px;
    align-items: center;
  }
}
@media only screen and (min-width: 1900px) {
  .career {
    min-height: 455px;
    align-items: center;
  }
}
.career h1 {
  color: #fff;
  font-weight: 600;
}

.carrer-form {
  border: 1px solid #e1e1e1;
  box-shadow: -2px 2px 10px 0px rgba(0, 0, 0, 0.1019607843);
  border-radius: 20px;
  margin: 30px auto;
  padding: 25px;
  margin: -4rem auto 1rem auto;
  animation: slide-up 0.5s ease-out forwards;
  will-change: opacity, transform;
  background: #fff;
}
.carrer-form .inputs-row {
  display: flex;
  align-items: center;
  gap: 18px;
}
@media (max-width: 992px) {
  .carrer-form .inputs-row {
    flex-direction: column;
    gap: 12px;
  }
}
.carrer-form .field {
  flex: 1;
  width: 100%;
}
.carrer-form .field select,
.carrer-form .field input {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  font-size: 15px;
  background: #fafafa;
  outline: none;
  transition: border 0.2s;
}
.carrer-form .field select:focus,
.carrer-form .field input:focus {
  border-color: #97362c;
}
.carrer-form .field select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6'><path fill='%2397362C' d='M0 0l5 6 5-6z'/></svg>") no-repeat right 12px center;
  background-size: 12px;
}
.carrer-form .search-btn {
  background: #97362c;
  color: #fff;
  padding: 14px 26px;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}
.carrer-form .search-btn i {
  font-size: 15px;
}
.carrer-form .search-btn:hover {
  background: #7e2d25;
}

.job-filter-box {
  border-radius: 20px;
  padding: 15px;
  background: #ffeeec;
}
.job-filter-box .filter-section {
  padding: 12px 0;
}
.job-filter-box .filter-section h5 {
  margin-bottom: 8px;
  font-weight: 600;
  color: #000000;
}
.job-filter-box .input-box {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 8px 10px;
  border-radius: 12px;
}
.job-filter-box .input-box i {
  margin-right: 10px;
  color: #6c757d;
}
.job-filter-box .input-box input {
  border: none;
  outline: none;
  width: 100%;
  background: transparent;
}
.job-filter-box .select-box select {
  width: 100%;
  padding: 10px;
  border: 1px solid #e5e5e5;
  background: #fafafa;
  border-radius: 6px;
  font-size: 14px;
  outline: none;
}
.job-filter-box .filter-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.job-filter-box .filter-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 6px 0;
}
.job-filter-box .filter-list li label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  color: #000;
}
.job-filter-box .filter-list li span {
  font-size: 16px;
  color: #777;
  background: #fff;
  border-radius: 12px;
  padding: 2px 3px;
}
.job-filter-box .show-more {
  width: 100%;
  margin-top: 8px;
  padding: 8px;
  border: none;
  background: #97362c;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
}
.job-filter-box input[type=range] {
  width: 100%;
  margin: 10px 0;
}
.job-filter-box .custom-range {
  width: 100%;
  height: 6px;
  background: #97362C;
  border-radius: 5px;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.job-filter-box .custom-range::-webkit-slider-thumb {
  -webkit-appearance: none;
          appearance: none;
  height: 10px;
  width: 10px;
  background: #97362C;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(151, 54, 44, 0.75);
  cursor: pointer;
}
.job-filter-box .salary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 5px;
}
.job-filter-box .salary-row .apply {
  background: #97362c;
  color: #fff;
  padding: 6px 10px;
  font-size: 14px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.job-filter-box .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.job-filter-box .tags span {
  background: rgba(151, 54, 44, 0.1019607843);
  color: #97362c;
  padding: 5px 10px;
  border-radius: 12px;
  font-size: 16px;
}

.job-card {
  background: #f9f9f9;
  border: 1px solid #e7e7e7;
  border-radius: 20px;
  padding: 25px 30px;
  position: relative;
  margin-bottom: 25px;
  transition: 0.3s ease;
}
.job-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}
.job-card .job-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.job-card .job-card-header .posted-time {
  background: rgba(151, 54, 44, 0.1019607843);
  color: #c24a2c;
  font-size: 16px;
  padding: 4px 10px;
  border-radius: 8px;
  font-weight: 400;
}
.job-card .job-card-header .save-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: #999;
}
.job-card .job-card-header .save-btn:hover {
  color: #c24a2c;
}
.job-card .job-title {
  color: #1d1d1d;
  margin-bottom: 10px;
  font-weight: 600;
}
.job-card .job-description {
  color: #000;
  margin-bottom: 18px;
}
.job-card .job-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}
.job-card .job-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  color: #6c757d;
}
.job-card .job-meta .meta-item i {
  color: #c24a2c;
  font-size: 16px;
}
.job-card .job-meta .details-btn {
  margin-left: auto;
  background: #a13e25;
  color: #fff;
  padding: 8px 18px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s ease;
}
.job-card .job-meta .details-btn:hover {
  background: #882f1b;
}
.job-card .job-meta .details-btn a {
  text-decoration: none;
}

.job-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.job-card-header .posted-time {
  background: rgba(151, 54, 44, 0.1019607843);
  color: #c24a2c;
  font-size: 16px;
  padding: 4px 10px;
  border-radius: 8px;
  font-weight: 400;
}
.job-card-header .save-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: #999;
}
.job-card-header .save-btn:hover {
  color: #c24a2c;
}

.designation h2 {
  font-weight: 500;
}
.designation p {
  font-weight: 400;
  font-size: 24px;
}

.job-details {
  padding: 20px 0;
  color: #1a1a1a;
}
.job-details .job-tags {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}
.job-details .job-tags span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  color: #6c757d;
  font-weight: 600;
}
.job-details .job-tags span i {
  color: #b03d28;
  font-size: 16px;
}
.job-details .section-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 10px;
}
.job-details .job-text {
  color: #000000;
  margin-bottom: 25px;
}
.job-details .section-subtitle {
  font-size: 24px;
  margin: 30px 0;
  font-weight: 600;
}
.job-details .job-list {
  list-style: none;
  padding-left: 0;
  margin: 0 0 20px;
}
.job-details .job-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  color: #000;
  position: relative;
  padding-left: 18px;
}
.job-details .job-list li::before {
  content: "●";
  color: #111;
  font-size: 10px;
  position: absolute;
  left: 0;
  top: 7px;
}

.apply-btn {
  width: 100%;
  background: #a33d31;
  color: #fff;
  padding: 10px 0;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  cursor: pointer;
  margin-bottom: 15px;
}

.job-overview-card {
  background: #fdecea;
  padding: 18px 20px;
  border-radius: 12px;
}
.job-overview-card .title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 18px;
}
.job-overview-card .overview-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.job-overview-card .overview-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}
.job-overview-card .overview-list li label {
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  display: block;
}
.job-overview-card .overview-list li span {
  font-size: 18px;
  color: #6c757d;
}
.job-overview-card .map-box {
  width: 100%;
  margin-top: 10px;
  border: 1px solid #b7c3cd;
  border-radius: 12px;
}/*# sourceMappingURL=main.css.map */