@import url("https://fonts.googleapis.com/css2?family=Saira:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Saira", sans-serif !important;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
:root {
  --primary: #fe002a;
  --seacondry: #d80c2c;
  --gray: #e9e9e9;
  --black: #010101;
  --white: #ffffff;
}
h2 span{
  color: var(--primary);
}
.testi h6 h2 span {
  color: var(--primary);
}
p {
  font-size: 15px;
  line-height: 25px;
  font-weight: 400;
  color: var(--black);
  margin: 0 !important;
}
img {
  max-width: 100%;
}
ul li {
  list-style: none;
}
.logo img {
  max-width: 170px;
}
.top_bar {
  background: var(--gray);
  padding: 8px 0;
  text-align: right;
}
.top_bar i {
  color: var(--primary);
  transition: all 0.5s ease;
}
.top_bar span {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: var(--primary);
}
.social_icon {
  float: right;
}
.social_icon ul {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}
.social_icon ul li a:hover i {
  color: var(--black);
  margin-top: -5px;
}

.buttons a {
  padding: 10px 25px;
  display: inline-block;
  background: linear-gradient(45deg, var(--primary), var(--seacondry));
  font-size: 15px;
  font-weight: 500;
  line-height: 25px;
  color: var(--white);
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.5s ease-in;
}
.buttons a:hover {
  background: linear-gradient(45deg, var(--black), var(--black));
  color: var(--white);
}
.header .whatsapp {
  position: fixed;
  right: 20px;
  bottom: 15px;
  z-index: 30;
}
.header .calling {
  position: fixed;
  right: 26px;
  bottom: 68px;
  z-index: 999;
}
.header {
  position: sticky;
  top: -127px;
  background: #fff;
  z-index: 999;
}
.calling i {
  color: #fe002a;
  font-size: 25px;
  line-height: 35px;
  transition: all 0.5s ease;
}
.whatsapp i {
  color: #1e8a00;
  font-size: 35px;
  background: #fff;
  border-radius: 5px;
  padding: 5px;
  line-height: 35px;
  transition: all 0.5s ease;
}
.whatsapp:hover {
  transform: skewX(10deg);
}
.head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.head_content {
  display: inline-flex;
  gap: 20px;
  align-items: center;
}
.navbar-toggler{
  border: none !important;
}
.nav-item .nav-link {
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  color: #000;
  transition: all 0.5s ease;
}
.nav-item .nav-link:hover {
  color: #000;
}
.navbar-nav {
  gap: 70px;
}
.navbar-nav .nav-link.active {
  color: #000 !important;
}

.navbar-toggler {
  width: 20px;
  height: 20px;
  position: relative;
  transition: 0.5s ease-in-out;
}
.navbar-toggler,
.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
  outline: none;
  box-shadow: none;
  border: 0;
}
.toggler-icon {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background-color: #000000;
  border-radius: 1px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: all 0.25s ease-in;
}
.middle-bar {
  margin-top: 0px;
}
.navbar-toggler .top-bar {
  margin-top: 0;
  transform: rotate(135deg);
}

.navbar-toggler .middle-bar {
  opacity: 0;
  filter: alpha(opacity=0);
}
.navbar-toggler .bottom-bar {
  margin-top: 0px;
  transform: rotate(-135deg);
}
.navbar-toggler.collapsed .top-bar {
  margin-top: -10px;
  transform: rotate(0deg);
}
.navbar-toggler.collapsed .middle-bar {
  opacity: 1;
  filter: alpha(opacity=100);
}
.navbar-toggler.collapsed .bottom-bar {
  margin-top: 10px;
  transform: rotate(0deg);
}
.navbar ul li a {
  padding: 0;
  margin: 0;
}
.navbar {
  background-color: var(--primary);
  padding: 10px 0;
}
.navbar-expand-lg .navbar-collapse {
  justify-content: center;
}
.navbar-nav .nav-link {
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  color: var(--white);
}
.sub_menu {
  width: 100%;
  background-color: var(--white);
  position: absolute;
  z-index: 999;
  float: left;
  left: 0;
  padding: 20px;
  display: none;
  transition: all 0.5s ease-in;
}
.sub_itm {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
}
.sub_drop:hover .sub_menu {
  display: block;
}
.sub_menu li a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  color: var(--black);
  display: inline-block;
  position: relative;
  transition: all 0.5s ease;
}
.sub_menu li a:hover {
  color: var(--primary);
}
.sub_menu li a::after {
  content: "";
  width: 7px;
  height: 7px;
  border-left: solid 4px var(--black);
  border-bottom: solid 4px var(--seacondry);
  transform: rotate(225deg);
  border-right: solid 4px var(--black);
  position: absolute;
  border-top: solid 4px var(--seacondry);
  left: -13px;
  top: 9px;
}
.sub_drop{
    position: relative;
}
.sub_drop::after {
  content: "";
  width: 7px;
  height: 7px;
  border-left: solid 3px var(--black);
  border-bottom: solid 3px var(--black);
  transform: rotate(315deg);
  position: absolute;
  top: 10px;
  right: -5%;
}
.pop-upP {
  background: transparent;
}
.paper_plate {
  position: relative;
}
.paper_plate::after {
  content: "";
  width: 7px;
  height: 7px;
  border-left: solid 3px var(--primary);
  border-bottom: solid 3px var(--primary);
  transform: rotate(315deg);
  position: absolute;
  top: 18px;
}
.call a {
  font-size: 15px;
  font-weight: 500;
  line-height: 25px;
  color: var(--primary);
  text-decoration: none;
}
.paper_plate .paper_sub {
  display: none;
  transition: all 0.5s ease;
  position: absolute;
  background-color: var(--black);
  top: 24px;
  padding: 10px 20px 10px 30px;
  border: solid 1px var(--primary);
  border-radius: 5px;
  z-index: 999;
  width: auto;
}
.paper_plate .paper_sub li a {
  color: var(--white);
}
.paper_plate .paper_sub li a:hover {
  color: var(--seacondry);
}
.paper_plate:hover .paper_sub {
  display: block;
}
.head_content form {
  border: solid 1px var(--primary);
  border-radius: 5px;
}
.head_content input {
  border: none;
}
.head_content button {
  background-color: var(--primary);
  border-radius: 0 5px 5px 0;
}
.btn:hover {
  background-color: var(--black) !important;
}
.form-control:focus {
  box-shadow: none !important;
}
.logo_track {
  display: flex;
  gap: 12px;
  overflow: hidden;
  width: 100%;
}
.logo_item img {
  width: 120px;
  height: 60px;
  animation: scroll 20s linear infinite;
}

.banner .carousel-caption .sec_2_slide {
  font-size: 58px;
  line-height: 68px;
  font-weight: 700;
  color: var(--white);
  bottom: 5.25rem !important;
  right: -4% !important;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  text-align: left !important;
  position: absolute;
  text-shadow: 2px 2px 3px var(--black);
}
.banner .carousel-caption .sec_1_slide {
  font-size: 58px;
  line-height: 68px;
  font-weight: 700;
  color: var(--white);
  bottom: 6.25rem !important;
  right: 10% !important;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  text-align: left !important;
  position: absolute;
  text-shadow: 2px 2px 3px var(--black);
}
.banner .carousel-caption .sec_slide {
  font-size: 58px;
  line-height: 68px;
  font-weight: 700;
  color: var(--white);
  bottom: 6.25rem ;
  right: -9% ;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  text-align: left !important;
  position: absolute;
  text-shadow: 2px 2px 3px var(--black);
}
.banner .carousel-caption .sec_sub {
  font-size: 40px;
  line-height: 50px;
  font-weight: 600;
  color: var(--white);
  bottom: 1.25rem !important;
  right: 49px !important;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  text-align: left !important;
  position: absolute;
  text-shadow: 2px 2px 1px var(--black);
}

.banner .carousel-caption {
  left: 0 !important;
}
.abts {
  padding: 40px 0;
  background-color: var(--gray);
}
.prdts {
  padding: 40px 0;
}
.prds_colm {
  padding: 25px;
  box-shadow: 6px 0px 15px 2px #8383833c;
  margin-top: 30px;
  text-align: center;
  border-radius: 5px;
  overflow: hidden;
  transition: all .5s ease;
}
.prds_colm img {
  width: 245px;
  transition: all .5s ease;
}
.prds_colm:hover.prds_colm img {
transform: translate(20px);
}
.prds_colm h3 {
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  color: var(--black);
  margin: 0 !important;
  text-transform: capitalize;
  padding: 15px 0;
}
.prds_colm a {
  padding: 10px 25px;
  display: inline-block;
  background: linear-gradient(45deg, var(--primary), var(--seacondry));
  font-size: 15px;
  font-weight: 500;
  line-height: 25px;
  color: var(--white);
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.5s ease-in;
}
.prds_colm a:hover {
  background: linear-gradient(45deg, var(--black), var(--black));
}
.str_up {
  padding: 40px 0;
}
.str_up p {
  width: 70%;
  margin: 0 auto !important;
  padding-bottom: 20px;
}
.up_img{
  overflow: hidden;
}
.up_img img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  filter: brightness(0.5);
  transition: all.5s ease;
  border: solid 1px var(--gray);
}
.up_img img:hover {
  filter: none;
  transform: scale(1.1);
}
.testi {
  padding: 40px 0;
  background: var(--gray);
}
.testi h6 {
  font-size: 22px;
  line-height: 32px;
  font-weight: 500;
  color: var(--black);
  margin: 0 !important;
  text-align: left;
}
.testi h2,
.testi {
  text-align: left;
}
.testi a {
  padding: 10px 25px;
  display: inline-block;
  background: linear-gradient(45deg, var(--primary), var(--seacondry));
  font-size: 15px;
  font-weight: 500;
  line-height: 25px;
  color: var(--white);
  text-decoration: none;
  margin-top: 20px;
  transition: all 0.5s ease;
  text-align: left;
}
.testi a:hover {
  background: var(--black);
  color: var(--white);
}
.revw {
  padding: 20px;
  background-color: #fff;
  border: solid 1px var(--black);
}
.rating {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.rating img {
  max-width: 50px;
}
.str img {
  max-width: 90px !important;
}
.revw p {
  margin: 20px 0 !important;
  border-bottom: solid 1px var(--gray);
  padding-bottom: 30px;
}
.rating h3 {
  font-size: 15px;
  font-weight: 500;
  line-height: 25px;
  text-align: center;
  padding: 10px 14px;
  background: var(--gray);
  border-radius: 50%;
  height: auto;
  color: var(--black);
}
.rating h4 {
  font-size: 15px;
  font-weight: 500;
  line-height: 25px;
  color: var(--black);
}
.book {
  padding: 40px 0;
  background: url(../images/Group\ 10.png) no-repeat;
  background-size: cover;
}
.book h3 {
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  color: var(--white);
  margin: 0 !important;
}
.book h2 {
  color: var(--white) !important;
  font-size: 45px !important;
  line-height: 55px !important;
}
.icon_box {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.icon_box span {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: var(--white);
}
.book a {
  display: inline-block;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: var(--white);
}
.adrs {
  border-top: solid 1px var(--gray);
  padding-top: 20px;
  margin-top: 20px;
}
.info {
  padding: 30px;
  background: #fe002a87;
  border-radius: 10px;
  width: 70%;
  float: right;
}
.info input {
  font-size: 12px;
  line-height: 22px;
  font-weight: 400;
  color: var(--black);
  background-color: var(--white);
  padding: 8px;
  margin-bottom: 10px;
  width: 100%;
  border: none;
}
.info input:focus-visible,
.info textarea:focus-visible {
  outline: none;
}
.info .in_flx {
  display: inline-flex;
  gap: 10px;
  width: 100%;
}
.info textarea {
  width: 100%;
  border: none;
  font-size: 12px;
  line-height: 22px;
  font-weight: 400;
  color: var(--gray);
  background-color: var(--white);
  padding: 8px;
}
.info button,
.modal_btn {
  padding: 10px 35px;
  border: none;
  background: var(--black);
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  color: var(--white);
  border-radius: 4px;
  margin-top: 20px;
}
.footer {
  padding: 30px 0 0 0;
  text-align: center;
  background-color: var(--black);
}
.footer_colm h3 {
  font-size: 25px;
  line-height: 45px;
  font-weight: 500;
  color: var(--white);
  text-align: left;
  border-bottom: solid 2px var(--seacondry);
  margin-bottom: 30px;
}
.footer_colm h4 {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: var(--white);
  text-align: left;
}
.footer_icon {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}
.footer_colm form {
  width: 100%;
}
.footer_colm form input {
  width: 100%;
  padding: 10px;
  border-radius: 4px;
  border: none;
}
.footer_colm form button {
  float: left;
  width: 100%;
  margin-top: 10px;
  background: #fe002a;
  border: none;
  padding: 5px;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  border-radius: 4px;
  transition: all 0.5s ease;
}
.footer_colm form button:hover {
  background: var(--white);
  color: var(--black);
}
.footer p {
  color: var(--white) !important;
  font-size: 14px;
  line-height: 24px;
  text-align: left;
  padding: 15px 0;
}
.copy {
  background-color: #000000e8;
  padding: 7px 0;
}
.copy p {
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  color: var(--white);
  margin: 0 !important;
}
.footer_icon ul {
  display: inline-flex;
  gap: 8px;
  margin-top: 10px;
  padding: 0;
}
.footer_icon ul li i {
  color: var(--primary);
  font-size: 25px;
  transition: all 0.5s ease;
}
.footer_icon ul li i:hover {
  color: var(--white);
}
.footer_colm ul li a {
  text-decoration: none;
  font-size: 16px;
  line-height: 35px;
  color: var(--white);
  font-weight: 400;
  transition: all 0.5s ease;
}
.footer_colm ul li a:hover {
  color: var(--primary);
}
.footer_colm ul {
  padding: 0;
}
.footer_colm {
  text-align: left;
}
/* about us start */
.abt {
  padding: 40px 0;
}
.abt img {
  max-width: 458px;
  border-radius: 10px;
  box-shadow: 0 0 10px var(--gray);
}
.ctmr {
  padding: 40px 0;
}
.countr {
  display: flex;
  justify-content: space-around;
  gap: 10px;
  flex-wrap: wrap;
}
.container_count {
  font-size: 16px;
  border-radius: 0.5em;
  background-color: var(--primary);
  border-bottom: 10px solid var(--black);
  padding: 20px;
  width: 200px;
  height: auto;
  margin-top: 20px;
}
.container_count i {
  color: var(--white);
  font-size: 2.5em;
  text-align: center;
}
.container_count span.num {
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 600;
  font-size: 30px;
}
.container_count span.text {
  color: var(--white);
  font-size: 1em;
  text-align: center;
  pad: 0.7em 0;
  font-weight: 400;
  line-height: 0;
}
/* about us end */

/* contact us start */

.contact_us {
  padding: 40px 0;
}
.details {
  padding: 20px;
  background-color: var(--seacondry);
  border-radius: 10px;
}
.details ul li {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--white);
  margin-bottom: 10px;
}
.details h3 {
  font-size: 25px;
  font-weight: 600;
  line-height: 35px;
  color: var(--white);
  text-transform: uppercase;
  border-bottom: solid 2px #fff;
  margin-bottom: 30px;
  padding-bottom: 10px;
}
.form_icon i {
  color: var(--white);
  font-size: 20px;
  transition: all 0.5s ease;
}
.form_icon i:hover {
  color: var(--black);
}
.form_icon ul {
  display: inline-flex;
  gap: 8px;
}
.contact_form input {
  width: 100%;
  border: solid 1px var(--gray);
  padding: 8px;
  margin-bottom: 10px;
  border-radius: 4px;
}
.contact_form textarea {
  width: 100%;
  border: solid 1px var(--gray);
  padding: 8px;
  margin-bottom: 10px;
  border-radius: 4px;
}
.contact_form button {
  padding: 10px 35px;
  border: none;
  background: var(--black);
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  color: var(--white);
  border-radius: 4px;
  margin-top: 20px;
  transition: all 0.5s ease;
}
.contact_form button:hover {
  background: var(--primary);
}
.map iframe {
  width: 100%;
}
.contact_form {
  padding: 25px;
  box-shadow: 0 0 18px var(--gray);
}
/* contact us end */

/* product page start */
.product {
  padding: 20px;
  box-shadow: 0 0 10px #ccc;
}

.product img {
  width: 100%;
  max-width: 300px;
  height: 250px;
  margin-bottom: 10px;
}

.product h3 {
  font-size: 22px;
  font-weight: 500;
  line-height: 32px;
  color: var(--black);
  margin: 15px 0;
}

.product a,  .signle_blog_cnt a {
  padding: 10px 25px;
  display: inline-block;
  background: linear-gradient(45deg, var(--primary), var(--seacondry));
  font-size: 15px;
  font-weight: 500;
  line-height: 25px;
  color: var(--white);
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.5s ease-in;
  margin-top: 20px;
}
/* product page end */

/* single_prodtct */
.single_page a {
  padding: 10px 25px;
  display: inline-block;
  background: linear-gradient(45deg, var(--primary), var(--seacondry));
  font-size: 15px;
  font-weight: 500;
  line-height: 25px;
  color: var(--white);
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.5s ease;
}
.single_page a:hover {
  background: var(--black);
  color: var(--white);
}
.single_img img {
  width: 100%;
  max-width: 450px;
  padding: 20px;
  box-shadow: 6px 11px 11px 1px #f4f4f482;
  border-radius: 10px;
}
.product-detail a {
  padding: 10px 25px;
  display: inline-block;
  background: linear-gradient(45deg, var(--primary), var(--seacondry));
  font-size: 15px;
  font-weight: 500;
  line-height: 25px;
  color: var(--white);
  text-decoration: none;
  margin-top: 20px;
  transition: all 0.5s ease;
  text-align: left;
}
.product-detail a:hover {
  background: linear-gradient(45deg, var(--black), var(--black));
  color: var(--white);
}
.single_prodtct img {
  width: 100%;
  max-width: 600px;
  height: auto;
  box-shadow: inset 0px 0px 18px #ccc1c1e0;
  border-radius: 10px;
  padding: 20px;
}
/* single_prodtct */

/* privacy policy */
.prv_banner {
  background: linear-gradient(45deg, var(--black), var(--seacondry));
  padding: 80px 0;
  background-size: cover;
  text-align: center;
}
.prv_text h1 {
  font-size: 50px;
  font-weight: 700;
  line-height: 60px;
  color: var(--white);
}
.pr_content p {
  padding-bottom: 20px;
  text-align: justify;
}
.pr_content h4 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  color: var(--seacondry);
  margin: 0;
}
.form-selects {
  transition: none;
  border-radius: 0;
  margin-bottom: 10px;
  width: 100%;
  padding: 6px;
}
.info .form-label {
  color: #fff;
}
.navbar-collapse{
  background-color: var(--primary)!important;
  padding: 10px;
}
.show{
  background: transparent;
}
.navbar-toggler:focus{
  box-shadow: none !important;
}