@import url(https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap);
@font-face {
  font-family: RoboBold;
  src: url(/fonts/Roboto_Condensed-Bold.ttf?7355e0f1610347bb9d0adc50c05e985c);
}
@font-face {
  font-family: RoboMedium;
  src: url(/fonts/Roboto_Condensed-Medium.ttf?3f0c73dab4957c24485924c974ec1501);
}
a {
  text-decoration: none;
}

body,
html {
  overflow-x: hidden;
}

.trans_nav {
  font-family: RoboBold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 35px 50px;
  background-color: rgba(0, 0, 0, 0);
  transition: all 0.6s ease-in;
}
.trans_nav.scrolled {
  background-color: #050506;
  padding: 15px 50px;
}
.trans_nav.scrolled .logo {
  background-color: #fff;
}
.trans_nav.inside {
  background-color: #050506 !important;
  position: sticky !important;
}
.trans_nav.inside .logo {
  background-color: #fff;
}
.trans_nav .logo {
  width: 180px;
  -o-object-fit: contain;
     object-fit: contain;
  background-color: rgba(255, 255, 255, 0);
  transition: all 0.6s ease-in;
}
.trans_nav .right-icons {
  display: flex;
  align-items: center;
}
.trans_nav .search-form {
  background-color: #fff;
  border-radius: 50px;
  padding: 10px 17px;
  width: 300px;
  max-width: 100%;
}
.trans_nav .search-form input {
  color: #221e1f;
  font-size: 12px;
  background-color: transparent;
  padding: 0;
  border: 0;
}
.trans_nav .search-form input::-moz-placeholder {
  color: #221e1f;
}
.trans_nav .search-form input::placeholder {
  color: #221e1f;
}
.trans_nav .search-form input:focus {
  border: 0;
  box-shadow: none;
}
.trans_nav .search-form button {
  background-color: transparent;
  border: 0;
  display: flex;
}
.trans_nav .btn-product {
  color: #221e1f;
  font-size: 12px;
  padding: 10px 40px;
  background-color: #fff;
  border-radius: 50px;
  margin-left: 30px;
}
.trans_nav .btn-menu {
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: all 0.6s ease-in;
  border: 1px solid rgba(255, 19, 19, 0);
  padding: 7px;
  border-radius: 50%;
}
.trans_nav .btn-menu span {
  width: 20px;
  height: 3px;
  border-radius: 50px;
  background-color: #fff;
  opacity: 1;
  transition: all 0.6s ease-in;
  transform: translateY(0);
}
.trans_nav .btn-menu.open {
  border: 1px solid #ff1313;
}
.trans_nav .btn-menu.open span:first-child {
  transform: translateY(9px) rotate(-45deg);
}
.trans_nav .btn-menu.open span:nth-child(2) {
  opacity: 0;
  width: 0;
  transform: translateX(-100%);
}
.trans_nav .btn-menu.open span:last-child {
  transform: translateY(-9px) rotate(45deg);
}

.fire_header {
  background-color: #221e1f;
  height: 100vh;
}
.fire_header .carousel-item {
  height: 100%;
}
.fire_header .carousel-item video,
.fire_header .carousel-item img {
  height: 100vh;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.fire_header::before {
  content: "";
  z-index: 1;
  background-color: #000000;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  position: absolute;
}
.fire_header .carousel-captions {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) !important;
  width: 50%;
  padding: 50px;
  font-family: "RoboBold";
  z-index: 99;
}
.fire_header .carousel-captions a {
  color: #fff;
}
.fire_header .carousel-captions .blur {
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  background-color: rgba(0, 0, 0, 0.13);
  padding: 21px;
}
.fire_header .carousel-captions h1 {
  color: rgb(255, 255, 255);
  width: -moz-fit-content;
  width: fit-content;
  font-size: 40px;
  margin-bottom: 10px;
  padding: 7px;
}
.fire_header .carousel-captions p {
  width: -moz-fit-content;
  width: fit-content;
  color: rgb(255, 255, 255);
  padding: 7px;
  font-size: 20px;
}
.fire_header .carousel-indicators {
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 20px;
  bottom: auto;
  left: auto;
  z-index: 2;
  margin-right: auto;
  margin-bottom: auto;
  margin-left: auto;
}
.fire_header .carousel-indicators div {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  gap: 4px;
  font-family: RoboBold;
}
.fire_header .carousel-indicators div span {
  font-size: 10px;
  opacity: 0.6;
  color: #fff;
}
.fire_header .carousel-indicators button {
  width: 25px;
  height: 3px;
  background-color: #ffffff;
  opacity: 0.6;
  border-radius: 50px;
  border: 0;
  right: 0;
}
.fire_header .carousel-indicators button.active {
  opacity: 1;
}
.fire_header .carousel-indicators button.active + span {
  opacity: 1;
}

.my_menu {
  position: fixed;
  z-index: 999;
  width: 100%;
  top: 0;
  font-family: "RoboBold";
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  background: linear-gradient(204deg, rgba(0, 0, 0, 0.33) 0%, rgba(0, 0, 0, 0.48) 100%);
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
  height: 100vh;
  transition: all 0.6s ease-in;
}
.my_menu .mynavs {
  list-style: none;
  padding: 150px;
  display: flex;
  justify-content: center;
  width: 73%;
  -moz-column-gap: 90px;
       column-gap: 90px;
  flex-wrap: wrap;
  row-gap: 59px;
}
.my_menu .mynavs li {
  overflow: hidden;
}
.my_menu .mynavs li a {
  transition: all 1.6s ease-in;
  transform: translateY(100%);
  color: #fff;
  font-size: 47px;
  position: relative;
}
.my_menu .mynavs li a::before {
  content: "";
  position: absolute;
  width: 0;
  bottom: 0px;
  height: 1px;
  background-color: #fff;
  transition: all 0.6s ease-in-out;
}
.my_menu .mynavs li a:hover::before {
  width: 100%;
}
.my_menu::before {
  content: "";
  height: 70vh;
  width: 100%;
  z-index: -1;
  top: 0;
  position: absolute;
  background-color: #050506;
}
.my_menu.open {
  transform: translateY(0);
  pointer-events: all;
  opacity: 1;
}
.my_menu.open li a {
  transform: translateY(0);
}

.categ_modals {
  position: fixed;
  background-color: #ffffff;
  width: 100%;
  height: 0vh;
  opacity: 0;
  z-index: 9999;
  padding: 50px;
  pointer-events: none;
  display: flex;
  overflow: hidden;
  transition: all 0.6s ease-in;
}
.categ_modals.opened {
  overflow: auto;
  height: 100vh;
  opacity: 1;
  pointer-events: all;
}
.categ_modals .cl-50 {
  display: flex;
  flex-wrap: wrap;
  width: 50%;
  align-items: center;
  height: 100%;
}
.categ_modals .cl-50 .cat_items {
  width: 100%;
  font-family: "RoboBold";
  color: #050506;
  margin-bottom: 50px;
  text-transform: uppercase;
  cursor: pointer;
}
.categ_modals .cl-50 .cat_items h3 {
  color: #050506;
}
.categ_modals .cl-50 .cat_items.active h2 {
  color: rgba(232, 0, 0, 0.9098039216);
}
.categ_modals .cl-50 .cat_items img {
  width: 100%;
  height: 150px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 30px;
}
.categ_modals .cl-20 {
  width: 20%;
}
.categ_modals .catitem {
  border-left: 2px solid red;
  padding-left: 15px;
  border-radius: 3px;
  width: 100%;
}
.categ_modals .catitem h3 {
  font-size: 40px;
  color: #050506;
}
.categ_modals .catitem p {
  font-size: 18px;
  margin-top: 25px;
  color: rgba(5, 5, 6, 0.6705882353);
  font-family: RoboMedium;
  display: -webkit-box;
  -webkit-line-clamp: 12;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.categ_modals .subcats {
  margin-top: 50px;
  padding-left: 50px;
}
.categ_modals .subcats .subitem {
  display: none;
}
.categ_modals .subcats .subitem h4 {
  font-size: 16px;
  color: #2c2c3a;
  margin-bottom: 15px;
  cursor: pointer;
}
.categ_modals .subcats .subitem.active h4 {
  color: rgba(232, 0, 0, 0.9098039216);
}
.categ_modals .finalsusubcat {
  max-width: 450px;
  width: 100%;
  margin: auto;
  text-align: center;
  background-color: #fbfbfb;
  padding: 50px 15px;
  border-radius: 3px;
  box-shadow: 0px 2px 22px rgba(0, 0, 0, 0.0392156863);
}
.categ_modals .finalsusubcat img {
  width: 100%;
  margin-bottom: 30px;
  height: 420px;
  -o-object-fit: contain;
     object-fit: contain;
}
.categ_modals .finalsusubcat a {
  display: block;
  background-color: #ff3737;
  padding: 11px 50px;
  border-radius: 3px;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  color: #fff;
}
.categ_modals .close {
  position: absolute;
  right: 25px;
  top: 25px;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  border: 0;
  background-color: rgba(255, 55, 55, 0.1098039216);
}

.about {
  background-color: #fafbff;
  padding: 100px 0;
}
.about h3 {
  font-size: 32px;
  margin-top: 25px;
  font-family: "Montserrat", sans-serif;
  color: #221e1f;
  margin-bottom: 30px;
}
.about h3 span {
  color: #d00e1f;
}
.about p {
  font-size: 15px;
  color: #221e1f;
  opacity: 0.9;
  text-transform: capitalize;
}
.about a {
  font-family: "RoboBold";
  border: 1px solid #d00e1f;
  color: #ef1010;
  padding: 14px 50px;
  display: inline-block;
  margin-top: 30px;
  border-radius: 4px;
  font-weight: bold;
}
.about .abcontent {
  padding: 30px;
}
.about .abcontent h2 {
  text-transform: uppercase;
  font-size: 13px;
  color: #6a6868;
}
.about .abcontent h2 span {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #d00e1f;
  margin-right: 12px;
  display: inline-block;
}
.about .guitsmall {
  --bs-gutter-x: 50px;
  --bs-gutter-y: 50px;
}
.about .contifn {
  min-height: 260px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  background-color: #b22222;
  flex-direction: column;
  padding: 36px;
  border-radius: 18px;
  border-right: 21px solid #ef1010;
  box-shadow: 26px 24px 31px rgba(32, 31, 31, 0.1411764706);
  transition: all 0.6s ease-in-out;
}
.about .contifn:hover {
  border-right: 30px solid #ef1010;
}
.about .contifn p {
  color: rgba(255, 255, 255, 0.9294117647);
  font-size: 26px;
  text-transform: uppercase;
  line-height: 1.2;
}
.about .contifn h3 {
  color: #fff;
  font-size: 85px;
  margin-bottom: 0;
}
.about .contifn.red {
  transform: translateY(120px);
}
.about .pattimg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  -o-object-fit: contain;
     object-fit: contain;
  background-color: #fff;
  padding: 10px;
  border-radius: 50%;
  outline: 6px solid rgba(255, 255, 255, 0.0705882353);
  outline-offset: 2px;
}

.serti {
  padding: 90px;
}
.serti .heading {
  font-size: 20px;
  font-family: RoboBold;
  color: #1b1c25;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 30px;
}
.serti p {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  color: #221e1f;
  opacity: 0.9;
  text-transform: capitalize;
  margin-bottom: 50px;
}
.serti img {
  width: 80px;
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
}
.serti .icons {
  display: flex;
  justify-content: space-between;
}

.whayfirecps {
  padding: 50px 0;
  font-family: "Montserrat", sans-serif;
}
.whayfirecps h2 {
  font-size: 34px;
  margin-bottom: 50px;
  color: #221e1f;
}

.mywawe {
  position: relative;
  padding: 50px 0;
  font-family: "Montserrat", sans-serif;
  background-color: #1d1f27;
}
.mywawe::before {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  height: 100%;
  background-color: rgba(20, 21, 27, 0.74);
  bottom: 0;
  z-index: 0;
}
.mywawe .textbox {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.mywawe .textbox h3 {
  font-size: 4rem;
  margin-top: 25px;
  color: #fff;
  margin-bottom: 30px;
}
.mywawe .textbox h3,
.mywawe .textbox p {
  color: #fff;
}
.mywawe .linksbox a {
  display: inline-block;
  background-color: #d00e1f;
  color: #fff;
  font-family: "RoboBold";
  padding: 14px 50px;
  border-radius: 4px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 50px 7px 0;
  text-align: center;
}

.service {
  margin-top: 60px;
  position: relative;
}
.service .heading {
  text-transform: uppercase;
  font-size: 13px;
  color: #6a6868;
  margin-bottom: 15px;
}
.service .heading span {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #d00e1f;
  margin-right: 12px;
  display: inline-block;
}
.service h4 {
  font-size: 32px;
  margin-top: 25px;
  font-family: "Montserrat", sans-serif;
  color: #221e1f;
  margin-bottom: 50px;
}
.service .serv_card {
  padding: 104px;
  font-family: RoboBold;
  background-color: #fbfbfb;
}
.service .serv_card img {
  margin-bottom: 30px;
}
.service .serv_card p {
  color: #666565;
  font-size: 16px;
}
.service .serv_card h1 {
  font-family: RoboMedium;
  font-size: 36px;
  color: #000;
}
.service .sers {
  font-family: RoboBold;
  background-color: #fff;
  overflow: hidden;
  margin-bottom: 30px;
  border-radius: 12px;
  border: 2px solid #f0f0f0;
}
.service .sers h1 {
  font-family: RoboMedium;
  font-size: 25px;
  color: #000;
  text-transform: uppercase;
  margin-bottom: 25px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  display: -webkit-box;
}
.service .sers p {
  color: #666565;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  display: -webkit-box;
}
.service .sers .textbody {
  padding: 40px;
}
.service .sers .icon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 40px;
}
.service .sers .icon::before {
  content: "";
  height: 134%;
  aspect-ratio: 1/1;
  background-color: #ebebeb;
  border-radius: 100% 0 12px;
  display: block;
  right: 0;
  position: absolute;
  z-index: -1;
}
.service .sers .icon img {
  width: 75px;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 1/1;
}
.service .sers .icon a {
  color: #675e5e;
  font-size: 15px;
}
.service .sers .icon a i {
  display: inline-flex;
  width: 40px;
  transition: all 0.3s ease-in;
  height: 40px;
  background-color: #ffffff;
  box-shadow: 2px 4px 11px rgba(19, 18, 18, 0.0901960784);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
}
.service .sers .icon a:hover i {
  transform: translateX(7px);
}

.project {
  background-color: #1d1f27;
  margin: 30px 0 0 0;
  padding: 50px 0;
}
.project .row,
.project .container-fluid {
  --bs-gutter-x: 0;
}
.project .heading {
  padding: 24px;
  background-color: #d00e1f;
  color: #fff;
  font-family: RoboBold;
  font-size: 40px;
  width: -moz-fit-content;
  width: fit-content;
}
.project .col-lg-6:nth-child(1) .object_card:nth-child(1) {
  margin-top: 108px;
  min-height: 450px;
}
.project .col-lg-6:nth-child(1) .object_card:nth-child(2) {
  min-height: 650px;
}
.project .object_card {
  position: relative;
  aspect-ratio: 3/4;
  font-family: RoboMedium;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 50px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  row-gap: 35px;
  flex-direction: column;
  background-color: rgba(26, 17, 17, 0.4588235294);
  background-blend-mode: multiply;
}
.project .object_card::before {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.031372549);
  bottom: 0;
  box-shadow: inset 0px -149px 89px rgba(0, 0, 0, 0.9);
}
.project .object_card h1 {
  font-size: 24px;
  color: #fff;
  position: relative;
}
.project .object_card a {
  color: #fff;
  position: relative;
  padding: 20px 30px;
}
.project .object_card a svg {
  margin-left: 30px;
}
.project .object_card a svg path {
  fill: #fff;
}

.industr {
  background-color: #fafbff;
  padding: 50px 0;
}
.industr h3 {
  font-size: 32px;
  margin-top: 25px;
  font-family: "Montserrat", sans-serif;
  color: #221e1f;
  margin-bottom: 30px;
}
.industr h3 span {
  color: #d00e1f;
}
.industr p {
  font-size: 15px;
  color: #221e1f;
  opacity: 0.9;
  text-transform: capitalize;
}
.industr .indus_card {
  background-color: #221e1f;
  box-shadow: 0px 2px 22px rgba(0, 0, 0, 0.0392156863);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 30px;
  min-height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.industr .indus_card h4 {
  font-family: RoboBold;
  font-size: 18px;
  color: #f8f9fa;
  padding: 0 30px;
  margin-top: 20px;
  margin-bottom: 15px;
}

.projecta {
  display: block;
  background-color: #d00e1f;
  color: #fff;
  font-family: "RoboBold";
  padding: 14px 50px;
  border-radius: 4px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 50px auto 0;
  text-align: center;
}

.partners {
  position: relative;
  padding-bottom: 40px;
}
.partners .heading {
  font-size: 40px;
  color: #fff;
  font-family: RoboBold;
  padding: 40px 0;
}
.partners::before {
  content: "";
  top: 0;
  background-color: #d00e1f;
  position: absolute;
  width: 60%;
  height: 100%;
  z-index: -1;
}
.partners .partner {
  width: 170px;
  height: 170px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.partners .full-a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.partners .swbtn {
  background-color: transparent;
  border: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
}
.partners .swbtn.left {
  left: 0;
}
.partners .swbtn.right {
  right: 0;
}

footer {
  background-color: #181818;
  background-position: center 58%;
  background-size: 14%;
  background-repeat: no-repeat;
  background-blend-mode: color-burn;
}
footer .flogo {
  width: 250px;
  filter: grayscale(1);
  margin-bottom: 50px;
}
footer .row,
footer .container-fluid {
  --bs-gutter-x: 0;
}
footer .footlogo {
  background-color: #fff;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;
  border-right: 4px solid #d00e1f;
}
footer .footlogo img {
  width: 100%;
}
footer .footer-title h4 {
  font-family: RoboBold;
  color: #fff;
  font-size: 18px;
  margin-bottom: 30px;
}
footer .footmenu {
  display: flex;
  gap: 25px;
  align-items: center;
}
footer .footmenu a {
  text-transform: uppercase;
}
footer a:not(.cs, .footer-social a) {
  font-size: 14px;
  font-family: "RoboMedium";
  color: #ffffff;
  display: block;
}
footer .footcontent {
  padding: 50px 100px;
  margin-bottom: 22px;
}
footer .list-item {
  padding-left: 0;
  font-family: "RoboMedium";
  color: #ffffff;
}
footer .list-item i {
  margin-right: 12px;
}
footer .footer-social {
  margin-top: 50px;
}
footer .footer-social a {
  width: 50px;
  height: 50px;
  color: #fff;
}
footer .copy-right {
  color: #909090;
}

.mini-header {
  font-family: "RoboBold";
  min-height: 400px;
  background-position: center;
  background-size: cover;
  background-color: rgba(0, 0, 0, 0.5294117647);
  background-blend-mode: overlay;
  display: flex;
  align-items: center;
  padding: 50px;
}
.mini-header ul {
  margin-bottom: 0;
}
.mini-header .mini-menuli {
  font-size: 38px;
  text-transform: uppercase;
  font-family: "RoboBold";
}
.mini-header .mini-menuli a {
  color: #fff;
}
.mini-header span {
  font-size: 16px;
  color: #d8d8d8;
  display: flex;
  gap: 12px;
  align-content: center;
  font-family: "RoboMedium";
}

.categorylist {
  display: flex;
  align-items: center;
  padding: 50px;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}
.categorylist a {
  font-family: "RoboBold";
  color: #fff;
  padding: 7px 39px;
  background-color: #221e1f;
  border-radius: 50px;
}
.categorylist a.active {
  background-color: #d00e1f;
}

.cat-item {
  overflow: hidden;
}
.cat-item img {
  width: 100%;
  height: 330px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.6s ease-in;
}
.cat-item:hover img {
  transform: scale(1.1) rotate(3deg);
}
.cat-item h1 a {
  font-family: "RoboBold";
  font-size: 16px;
  color: #000000;
}

.mynavigation {
  width: 50%;
  margin-left: auto;
  transform: translateY(-50%);
  padding: 46px;
  background-color: #d00e1f;
  display: flex;
  align-items: center;
  gap: 17px;
  list-style: none;
}
.mynavigation.prods {
  width: 100%;
  transform: translateY(0);
}
.mynavigation.prods li,
.mynavigation.prods a {
  white-space: nowrap;
  max-width: 30%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mynavigation li,
.mynavigation a {
  font-family: "RoboMedium";
  color: #ffffff;
  font-size: 16px;
}

.sider {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 50px;
  gap: 15px;
  justify-content: center;
  background: rgba(142, 142, 142, 0.1607843137);
  margin-bottom: 50px;
}
.sider a {
  font-family: "RoboMedium";
  color: #fff;
  padding: 7px 25px;
  background-color: #221e1f;
  font-size: 12px;
  border-radius: 50px;
}
.sider a.active {
  background-color: #d00e1f;
}

.single-cont img {
  width: 100%;
  padding: 50px;
  height: 450px;
  -o-object-fit: contain;
     object-fit: contain;
}

.product_body {
  padding: 50px;
}
.product_body h1 {
  font-family: "RoboBold";
  font-size: 24px;
  color: #000000;
  margin: 50px 0;
}
.product_body .smaltx {
  font-family: "RoboMedium";
  font-size: 16px;
  color: #221e1f;
}

.files {
  display: flex;
  align-items: center;
}
.files a {
  font-family: "RoboBold";
  width: 50%;
  color: #fff;
}
.files a.ph {
  padding: 24px 100px;
  display: flex;
  font-size: 24px;
  justify-content: space-between;
  align-items: center;
  background-color: #d00e1f;
}
.files a.cata {
  padding: 30px;
  font-size: 16px;
  align-items: center;
  gap: 12px;
  display: flex;
  color: #d00e1f;
}

.product .row,
.product .container-fluid {
  --bs-gutter-x: 0;
}

.orderform,
.contact-form {
  padding: 35px 50px;
  background-color: #f9f9f9;
  border-radius: 32px;
  font-family: "RoboBold";
  margin: 50px 0;
}
.orderform input,
.orderform textarea,
.contact-form input,
.contact-form textarea {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 23px;
  margin-bottom: 30px;
  border: 0;
}
.orderform button,
.contact-form button {
  background-color: #d00e1f;
  padding: 14px 50px;
  border-radius: 12px;
  color: #fff;
}

.contact-form {
  background-color: transparent;
  margin: 0;
  padding: 0 50px;
}
.contact-form .row {
  --bs-gutter-x: 30px !important;
}

.roadpage {
  background-color: #fafbff;
}
.roadpage .row,
.roadpage .container-fluid {
  --bs-gutter-x: 0;
}

.page-lists {
  font-family: "RoboBold";
  background-color: #fff;
  padding: 50px 0;
}
.page-lists a:not(.catalogs a) {
  color: #000000;
  padding: 12px 41px;
  display: block;
  font-size: 20px;
}
.page-lists a:not(.catalogs a).active {
  color: #d00e1f;
  background-color: #fafbff;
  position: relative;
}
.page-lists a:not(.catalogs a).active::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 100%;
  right: 0;
  transform: translateX(100%);
  background-color: #000000;
  top: 0;
}

.our-cont {
  padding: 80px;
}

.catalogs {
  background-color: #f7f7f7;
}
.catalogs img {
  max-width: 100%;
  padding: 40px;
}
.catalogs a {
  display: block;
  font-family: "RoboMedium";
  color: #fff;
  background-color: #000;
  font-size: 20px;
  padding: 23px;
  text-align: center;
}
.catalogs a svg {
  margin-left: 20px;
}

#contmap {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 9;
  left: 0;
  top: 0;
}
#contmap iframe {
  width: 100%;
  height: 100%;
}

.mini-bgs {
  position: absolute;
  background: rgba(23, 22, 31, 0.4588235294);
  width: 100%;
  height: 100%;
  z-index: 99;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  padding: 50px;
}

.contact {
  background-color: #fafbff;
}
.contact .row,
.contact .container-fluid {
  --bs-gutter-x: 0;
}
.contact .continfo {
  background-color: #fff;
  padding: 35px;
  font-family: "RoboBold";
}
.contact .continfo h2 {
  font-size: 40px;
  color: #000000;
  margin-bottom: 20px;
}
.contact .cont-social {
  margin-bottom: 50px;
}
.contact .cont-social a {
  color: #d00e1f;
  font-size: 21px;
  margin-right: 15px;
}
.contact .cont-info {
  margin-bottom: 30px;
}
.contact .cont-info h4 {
  font-size: 24px;
  margin-bottom: 18px;
}
.contact .cont-info p {
  font-family: "RoboMedium";
  font-size: 14px;
  color: #5a5656;
}

.cont-logo {
  padding: 80px;
}
.cont-logo img {
  display: block;
  margin: auto;
  width: -moz-fit-content;
  width: fit-content;
}

.projs {
  position: relative;
  aspect-ratio: 3/4;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 44px;
  text-align: center;
  background-position: center;
  background-size: cover;
}
.projs h2 {
  font-weight: normal;
  font-size: 25px;
  font-family: "Montserrat", sans-serif;
}
.projs a {
  font-family: "RoboBold";
  font-size: 40px;
  color: #ffffff;
  position: relative;
  background-color: rgba(14, 13, 13, 0);
  -webkit-backdrop-filter: blur(13px);
          backdrop-filter: blur(13px);
  border-radius: 7px;
  display: block;
}
.projs::before {
  content: "";
  position: absolute;
  height: 40%;
  background: linear-gradient(174.69deg, rgba(14, 12, 12, 0) 23.58%, rgba(10, 8, 8, 0.9) 68.73%);
  bottom: 0;
  width: 100%;
  left: 0;
}

.jobs {
  background-color: #fff;
  padding: 50px;
  margin-top: 30px;
  align-items: center;
  font-family: "RoboBold";
  border-radius: 2px;
}
.jobs a {
  color: #000000;
}
.jobs .bdg {
  background-color: rgba(255, 191, 191, 0.37);
  color: #ff2626;
  padding: 6px 32px;
  border-radius: 50px;
  position: relative;
  font-size: 12px;
}
.jobs .bdg::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: block;
  top: 50%;
  left: 12px;
  background-color: #ff5858;
  position: absolute;
  transform: translateY(-50%);
}

.news-text {
  font-family: "RoboBold";
  color: #050506;
  padding: 50px;
}
.news-text h3 {
  font-size: 21px;
  margin-bottom: 25px;
}
.news-text p {
  font-size: 14px;
  opacity: 0.8;
}
.news-text a {
  background-color: #d00e1f;
  color: #fff;
  padding: 8px 23px;
  border-radius: 3px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 13px;
}
.news-text a svg {
  margin-left: 25px;
  width: 21px;
  position: relative;
  top: -1px;
}

.newsbg {
  position: relative;
  background-position: center;
  background-size: cover;
}
.newsbg span {
  position: absolute;
  right: 25px;
  top: 25px;
  background-color: rgba(0, 0, 0, 0.47);
  color: rgb(255, 254, 254);
  font-family: "RoboBold";
  padding: 10px 18px;
  -webkit-backdrop-filter: blur(7px);
          backdrop-filter: blur(7px);
  border-radius: 2px;
}

.marg-topmod {
  font-family: "RoboMedium";
}

.firepartners {
  font-family: "RoboMedium";
  background: #fcfcff;
  padding: 25px;
  border-radius: 7px;
}
.firepartners img {
  width: 100%;
  height: 150px;
  -o-object-fit: contain;
     object-fit: contain;
  text-align: center;
  margin-bottom: 50px;
}

.car {
  background-color: rgba(85, 85, 85, 0.04);
  padding: 25px;
  border-radius: 7px;
  text-align: center;
}
.car a {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}
.car button {
  background-color: rgba(255, 255, 255, 0);
  font-family: "RoboMedium";
  display: block;
  color: #d00e1f;
  padding: 7px 25px;
  border-radius: 4px;
  border: 1px solid #d00e1f;
}

.dropdown.opened {
  overflow: visible !important;
}

.dropdown-item {
  font-size: 16px !important;
  color: #000000 !important;
}
.dropdown-item::before {
  content: "";
  display: none;
}

.arrowsmy button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: transparent;
  border-radius: 50px;
  background-color: #d00e1f;
  color: #fff;
  z-index: 999;
  font-size: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.arrowsmy button.spans-next {
  right: 27px;
}
.arrowsmy button.spans-prev {
  left: 27px;
}

.linksec {
  display: flex;
  gap: 30px;
  margin-top: 35px;
}
.linksec a {
  border: 1px solid #ffffff;
  padding: 12px 31px;
  background-color: rgba(0, 0, 0, 0.13);
  -webkit-backdrop-filter: blur(9px);
          backdrop-filter: blur(9px);
  transition: all 0.6s ease-in;
}
.linksec a:hover {
  background-color: rgba(0, 0, 0, 0.5019607843);
}
.linksec button {
  padding: 12px 31px;
  background-color: #d00e1f;
  color: #fff;
  border: 0;
  transition: all 0.6s ease-in;
  box-shadow: 0px 0px 0px rgba(255, 255, 255, 0.9882352941);
}
.linksec button:hover {
  box-shadow: 7px 7px 0px rgba(255, 255, 255, 0.9882352941);
}

@media (max-height: 600px) {
  .fire_header .carousel-captions {
    width: 88%;
  }
  .fire_header .carousel-captions h1 {
    font-size: 28px;
  }
  .fire_header .carousel-captions p {
    font-size: 14px;
  }
  .my_menu .mynavs {
    width: 90%;
    -moz-column-gap: 90px;
         column-gap: 90px;
    flex-wrap: wrap;
    row-gap: 13px;
    padding: 100px;
  }
}
@media (max-height: 450px) {
  .trans_nav:not(.scrolled) {
    background-color: #050506;
    padding: 15px 50px;
    position: sticky;
  }
}
@media (max-width: 1400px) {
  .about .contifn h3 {
    font-size: 60px;
  }
  .categ_modals h2 {
    font-size: 24px;
  }
  .categ_modals .cl-50 {
    width: 30%;
  }
  .categ_modals .cl-20 {
    width: 40%;
  }
  .partners::before {
    width: 70%;
  }
}
@media (max-width: 1200px) {
  footer .footmenu {
    gap: 16px;
  }
  .partners::before {
    width: 100%;
  }
  .categ_modals h2 {
    font-size: 18px;
  }
  footer .footcontent {
    padding: 25px;
  }
}
@media (max-width: 992px) {
  .mywawe {
    padding: 15px;
    background-image: url(/images/mywawe.svg?61aea0cb6ad5c6baff8b2c519544bd0a);
    background-position: center;
    background-size: cover;
  }
  .mywawe .textbox {
    position: static;
    left: 50%;
    top: 50%;
    transform: none;
    text-align: center;
  }
  .mywawe .textbox h3 {
    font-size: 2rem;
  }
  .mywawe svg {
    display: none;
  }
  .serti {
    padding: 15px;
  }
  .fire_header .carousel-captions {
    width: 80%;
  }
  .about a {
    margin: auto;
    display: block;
    width: -moz-fit-content;
    width: fit-content;
  }
  .about .contifn.red {
    transform: translateY(0);
  }
  footer {
    background-size: 80%;
  }
  footer .footmenu {
    flex-flow: column;
  }
  .project .object_card h1 {
    font-size: 19px;
  }
  .logo {
    background-color: #fff !important;
  }
  .finalsusubcat p {
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .categ_modals {
    padding: 15px;
  }
  .mynavigation {
    transform: translateY(0) !important;
    width: 100%;
  }
  .icons {
    flex-wrap: wrap;
  }
  .icons a {
    width: 50%;
    text-align: center;
    margin-bottom: 25px;
  }
  .heading {
    margin-bottom: 50px;
  }
  footer .footcontent {
    padding: 30px;
  }
  footer .col-md-4 {
    padding: 15px;
  }
  .footlogo {
    border-right: 0 !important;
  }
}
@media (max-width: 800px) {
  .cat_items {
    margin-bottom: 10px !important;
  }
  .cat_items h2 {
    font-size: 13px;
  }
  .categ_modals {
    padding: 15px !important;
    flex-wrap: wrap;
  }
  .categ_modals .subcats {
    margin-top: 10px;
    padding-left: 15px;
  }
  .categ_modals .subcats h4 {
    font-size: 10px !important;
  }
  .categ_modals .finalsusubcat {
    padding: 0;
  }
  .categ_modals .finalsusubcat img {
    height: 90px;
  }
  .categ_modals .finalsusubcat h3 {
    font-size: 12px !important;
  }
  .categ_modals .finalsusubcat p {
    font-size: 10px !important;
  }
  .categ_modals .finalsusubcat a {
    padding: 5px 34px;
    font-size: 10px;
  }
  .cl-50,
  .cl-20 {
    width: 100% !important;
  }
  .cl-50 .catitem,
  .cl-20 .catitem {
    display: none;
  }
  .cl-50 {
    height: auto !important;
  }
  .trans_nav {
    padding: 7px !important;
    background-color: #050506;
  }
  .trans_nav .logo {
    width: 90px;
  }
  .trans_nav .search-form {
    display: none;
  }
  .my_menu .mynavs {
    padding: 12px;
    justify-content: center;
    width: 100% !important;
    margin-top: 50px;
    -moz-column-gap: 0 !important;
         column-gap: 0 !important;
    flex-wrap: wrap;
    row-gap: 15px !important;
    flex-direction: column;
    align-items: center;
  }
  .fire_header {
    display: none;
  }
  .service .heading {
    text-align: center;
  }
  .service::before {
    width: 100%;
  }
  .service .serv_card,
  .service .sers {
    padding: 25px;
  }
  .service .serv_card img,
  .service .sers img {
    width: 45px;
  }
  .project .heading {
    padding: 25px;
    text-align: center;
  }
  .partners::before {
    content: "";
    display: none;
  }
  .partners .heading {
    text-align: center;
    color: #d00e1f;
    padding: 25px;
    margin-bottom: 0px !important;
  }
  .mynavigation {
    transform: translateY(0) !important;
    width: 100%;
  }
  .mynavigation a {
    font-size: 12px !important;
  }
  .roadpage .row {
    flex-direction: column-reverse;
  }
  .our-cont {
    padding: 25px;
  }
  .jobs {
    padding: 15px;
  }
  .jobs .col-md-8,
  .jobs .col-md-2 {
    padding: 15px;
  }
  .news-text {
    padding: 15px;
  }
  .newsbg {
    height: 150px !important;
  }
  .tptrans {
    transform: translateY(0) !important;
  }
  .cont-logo img {
    max-width: 100%;
  }
  .categorylist {
    flex-wrap: nowrap;
    overflow-y: scroll;
    justify-content: flex-start;
  }
  .categorylist a {
    white-space: nowrap;
  }
  .mynavigation.prods {
    width: 100;
    margin-left: auto;
    transform: translateY(0);
    padding: 6px;
    background-color: #d00e1f;
    display: flex;
    align-items: center;
    gap: 9px;
  }
  .files {
    flex-direction: column;
  }
  .files a {
    width: 100%;
  }
}

@media (min-width: 992px) {
  .mywawe .textbox {
    transform: translate(-50%, -50%) !important;
  }
}