/* Colors */
:root {
  --color-default: #f7e120;
  --color-primary: #dc3545;
  --color-black: rgb(12, 12, 12);
  --color-white: #fff;
}

/* =====scrol-top====== */
.scrolltop {
  position: fixed;
  bottom: 30px;
  right: 14px;
  font-size: 20px;
  background-color: transparent;
  color: var(--color-white);
  cursor: pointer;
  transition: all 0.5s ease;
  z-index: 999;
  text-align: center;
  padding: 5px 10px;
  border-radius: 5px;
  /* border: 1px solid black; */
  background-color: var(--color-primary);

}

.scrolltop:hover {
  color: var(--color-primary);
  background-color: var(--color-black);
  /* border: 1px solid var(--color-primary); */
  transition: 0.5s ease-in-out all;
}

/* ===================================social-media ========================= */

.cont-icon {
  width: 40px;
  height: 40px;
  position: fixed;
  bottom: 220px;
  left: 10px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: all 0.5s ease;
  z-index: 999;

}

.cont-icon img {
  width: 100%;
  margin-top: 10px;
}

.cont-icon a {
  text-decoration: none;

}

.top-bar {
  background-color: var(--color-black);
}

.top-bar p {
  color: var(--color-white);
  font-family: 'Times New Roman', Times, serif;
  text-align: justify;
}

.top-bar a {
  color: var(--color-white);

}

.top-bar span {
  color: var(--color-primary);
}
.add-info {
  float: inline-end;
}
.social-info{
  float: inline-end;
}

.social-icons a i:hover {
  background-color: var(--color-primary);
}

/* =============================================responsive top =========================================== */

.top-bar-1 {
  background-color: var(--color-black);
}

.top-bar-1 a {
  color: var(--color-white);
}

.top-bar-1 span {
  color: var(--color-white);
  margin-left: 5px;
  font-family: 'Times New Roman', Times, serif;
}


/*===================================================== Navbar=============================================== */
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  z-index: 999;
  /* position: absolute; */
  padding: 15px 0;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--color-white);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.header .logo img {
  width: 140px;
  margin-right: 6px;
}

.header .logo h1 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0;
  font-family: var(--font-primary);
}

.header .logo h1 span {
  color: var(--color-primary);
}

/*--------------------------------------------------------------
  # Desktop Navigation
  --------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar a {
    text-decoration: none;
    margin: 0px 15px;

  }

  .navbar>ul>li {
    white-space: nowrap;
    margin: 10px 0 10px 10px;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-black);
    text-transform: uppercase;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
    margin-left: 30px;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--color-default);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navbar a:hover:before,
  .navbar li:hover>a:before,
  .navbar .active:before {
    visibility: visible;
    width: 100%;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: var(--color-black);
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 28px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    line-height: 2;
    margin-top: 10px;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 4px 10px;
    font-size: 15px;
    text-transform: none;
    color: var(--color-primary);
    font-weight: 400;
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: var(--color-default);
  }

  .navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }

  .header .navbar .theme-btn {
    border: var(--color-primary) !important;
    background-color: var(--color-primary);
    transition: 1s ease-in-out;
    color: var(--color-white);
  }
  .header .navbar .theme-btn:hover{
    background-color: var(--color-black) !important;
    color: var(--color-white);
  }
}

@media (min-width: 1280px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

/*--------------------------------------------------------------
  # Mobile Navigation
  --------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    top: 60px;
    background: rgba(0, 0, 0, 0.8);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar ul li a {
    text-decoration: none;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    text-transform: uppercase;
    transition: 0.3s;

  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: var(--color-primary);
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    border: 1px solid #222428;
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    position: relative;
    color: var(--color-black);
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    padding-right: 10px;
  }

  .mobile-nav-hide {
    color: var(--color-black);
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
    background-color: var(--color-white);
  }

  .mobile-nav-active {
    overflow: hidden;

  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    /* position: fixed; */
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9996;
  }
}

@media screen and (max-width: 767px) {
  .header {
    padding: 10px 0px;
  }

  .header .logo img {
    max-height: 40px;
    margin-right: 4px;
  }
}


#carouselExampleCaptions {
  top: auto;
}


/* =======================about =================================== */

h1 {
  color: #2c3145;
  font-family: 'Times New Roman', Times, serif
}

a,
a:hover,
a:focus,
a:active {
  text-decoration: none;
  outline: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.section_all {
  position: relative;
  padding-top: 40px;
  padding-bottom: 20px;
  min-height: 100vh;
}

.section-title {
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: 1px;
}

.section-subtitle {
  letter-spacing: 0.4px;
  line-height: 28px;
  max-width: 550px;
}

.section-title-border {
  background-color: #000;
  height: 1 3px;
  width: 44px;
}

.section-title-border-white {
  background-color: #fff;
  height: 2px;
  width: 100px;
}

.text_custom {
  color: var(--color-primary);
}

.about_icon i {
  font-size: 22px;
  height: 65px;
  width: 65px;
  line-height: 65px;
  display: inline-block;
  background: #fff;
  border-radius: 35px;
  color: var(--color-primary);
  box-shadow: 0 8px 20px -2px rgba(158, 152, 153, 0.5);
}

.about_header_main .about_heading {
  max-width: 450px;
  font-size: 24px;

}
.about_header_main p{
  text-align: justify;
}

.about_icon span {
  position: relative;
  top: -10px;
}

.about_content_box_all {
  padding: 28px;
  box-shadow: rgba(0, 0, 0, 0.09) 0px 3px 12px;
  min-height: 276px;
}

.about_content_box_all a {
  color: var(--color-primary);
}
.img_about{
  transform: translateY(-52px);
}


/*--------------------------------------------------------------
#Products Section
--------------------------------------------------------------*/
 .services .section-header h1{
  text-transform: uppercase;
  margin-top: 40px;
} 
/* .services .section-header h1:before{
  position:absolute;
  content:'';
  top: 45px;
  width:70px;
  height:3px;
  background-color:var(--color-primary);
  } */

.services .service-item {
  padding: 10px;
  background: #fff;
  height: 100%;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em, rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em, rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;
}

.services .service-item:hover {
  box-shadow: rgb(204, 219, 232) 3px 3px 6px 0px inset, rgba(255, 255, 255, 0.5) -3px -3px 6px 1px inset;
}

.services .service-item .icon {
  width: 0px;
  height: 0px;
  position: relative;
  /* margin-bottom: 50px; */
}

/* .services .service-item .icon i {
  color: var(--color-secondary);
  font-size: 40px;
  transition: ease-in-out 0.3s;
  z-index: 2;
  position: relative;
  line-height: 1.8;
} */
.services .service-item img {
  z-index: 2;
  aspect-ratio: 2/1;
  object-fit: contain;
}

.services .service-item img:hover {
  transform: scale(1);

}

.services .service-item .icon:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: #f0f1f2;
  border-radius: 50px;
  /* z-index: 1; */
  top: 10px;
  right: -15px;
  transition: 0.3s;
}

.services .service-item h3 {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 18px;
  position: relative;
  text-align: center;
  /* display: inline-block; */
  border-bottom: 4px solid #ebebed;
  transition: 0.3s;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  text-align: justify;
}

.services .service-item .readmore {
  display: inline-block;
  color: var(--color-primary);
}
.services .service-item .readmore:hover{
  color: var(--color-primary);
}

.services .service-item:hover .icon:before {
  background: var(--color-primary);
}

.services .service-item:hover h3 {
  border-color: var(--color-primary);
}

.btn-box a {
  margin-top: 50px;
  padding: 10px;
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
  transition: 0.5s ease-in-out;
}

.btn-box a:hover {
  background-color: var(--color-black);

}

/* ==================================testimonial =============================== */


.testimonial_section {
  display: block;
  overflow: hidden;
}

.testimonial_section:after {
  display: block;
  clear: both;
  content: "";
}

.testimonial_section .about_content {
  background-color: var(--color-black);
  padding-top: 77px;
  padding-right: 210px;
  padding-bottom: 62px;
  position: relative;
}

.testimonial_section .about_content .background_layer {
  background-color: var(--color-black);
  width: auto;
  margin-left: -200px;
  right: 0;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

.testimonial_section .about_content .layer_content {
  position: relative;
  z-index: 9;
  height: 100%;
}

.testimonial_section .about_content .layer_content .section_title {
  margin-bottom: 24px;
  position: relative;
}

.testimonial_section .about_content .layer_content .section_title:after {
  display: block;
  clear: both;
  content: "";
}

.testimonial_section .about_content .layer_content .section_title h5 {
  color: #fff;
  font-family: "Open Sans";
  font-weight: 400;
  font-size: 15px;
  line-height: 28px;
  color: #818a8f;
  margin-top: -5px;
  margin-bottom: 6px;
}

.testimonial_section .about_content .layer_content .section_title h2 {
  font-family: "Titillium Web";
  font-weight: 300;
  font-size: 45px;
  line-height: 50px;
  padding-bottom: 51px;
  margin-bottom: 0px;
  color: #fff;
}

.testimonial_section .about_content .layer_content .section_title h2 strong {
  font-weight: 600 !important;
  width: 100%;
  display: block;
}

.testimonial_section .about_content .layer_content .section_title .heading_line {
  position: relative;
}

.testimonial_section .about_content .layer_content .section_title .heading_line span {
  transition: all 0.5s ease-in-out 0s;
  position: relative;
}

.testimonial_section .about_content .layer_content .section_title .heading_line span:after {
  content: "";
  right: auto;
  left: 69px;
  position: absolute;
  bottom: 28px;
  width: 17px;
  margin-left: 0;
  border-bottom-width: 3px;
  border-bottom-color: #cacaca;
  border-bottom-style: solid;
}

.testimonial_section .about_content .layer_content .section_title .heading_line:after {
  content: "";
  left: 1%;
  margin-left: 0;
  position: absolute;
  bottom: 28px;
  width: 59px;
  border-bottom-width: 3px;
  border-bottom-style: solid;
  border-bottom-color: var(--color-primary);
}

.testimonial_section .about_content .layer_content .section_title p {
  color: #fff;
  margin: 0 0 15px;
}

.testimonial_section .about_content .layer_content a {
  color: #fff;
  text-transform: capitalize;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.testimonial_section .about_content .layer_content a i {
  font-size: 18px;
  vertical-align: middle;
}

.testimonial_section .about_content .layer_content a:hover {
  color: var(--color-primary);
}

.testimonial_section .testimonial_box {
  margin-top: 60px !important;
  position: relative;
}

.testimonial_section .testimonial_box .testimonial_container {
  background-color: var(--color-primary);
  margin-left: -170px !important;
  position: relative;
}

.testimonial_section .testimonial_box .testimonial_container .background_layer {
  background-color: var(--color-primary);
  width: auto;
  margin-right: -200px;
  right: 0;
  background-image: url(../images/map.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
}

.testimonial_section .testimonial_box .testimonial_container .layer_content {
  position: relative;
  z-index: 9;
  height: 100%;
}

.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel {
  display: block;
  position: relative;
}

.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials {
  margin: 10px 0 10px 0;
  padding: 62px 0px 72px 50px;
  position: relative;
  text-align: center;
}

.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .testimonial_content {
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.13);
  margin-left: 150px;
  margin-top: 69px;
  padding: 45px 40px 45px 40px;
  z-index: 1;
  position: relative;
  background-color: #fff;
  transition: all 0.5s ease-in-out 0s;
}

.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .testimonial_content .testimonial_caption {
  margin-bottom: 15px;
  position: relative;
}

.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .testimonial_content .testimonial_caption:after {
  content: "";
  width: 30px;
  display: block;
  height: 2px;
  text-align: center;
  left: 46%;
  margin-top: 6px;
  background-color: var(--color-primary);
  position: absolute;
}

.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .testimonial_content .testimonial_caption h6 {
  padding-top: 0;
  margin-bottom: -5px;
  font-size: 19px;
  font-weight: 600;
  line-height: 24px;
  color: var(--color-black);
}

.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .testimonial_content .testimonial_caption span {
  font-size: 12px;
  color: #9f9f9f;
  margin: 0;
}

.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .testimonial_content p {
  padding: 0;
  margin: 0;
  padding-top: 10px;
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  color: #5d6576;
  font-style: italic;

}

.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .images_box .testimonial_img {
  border: none;
  position: absolute;
  top: 0;
  left: 55px;
  top: 80px;
}

.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .images_box .testimonial_img img {
  border: 5px solid #fff;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  width: 35%;
}

.testimonial_section .testimonial_box .testimonial_container .owl-nav .owl-prev {
  position: absolute;
  top: 165px;
  right: 42px;
  border-radius: 0;
  background: var(--color-primary);
  display: block;
  outline: 0;
  width: 34px;
  line-height: 34px;
  height: 34px;
  color: #fff;
  font-size: 23px;
  margin-top: -20px;
  transition: all 0.3s ease-in-out;
}

.testimonial_section .testimonial_box .testimonial_container .owl-nav .owl-prev:hover {
  background: black;
}

.testimonial_section .testimonial_box .testimonial_container .owl-nav .owl-next {
  position: absolute;
  top: 165px;
  right: 5px;
  border-radius: 0;
  display: block;
  background: var(--color-primary);
  outline: 0;
  width: 34px;
  text-align: center;
  line-height: 34px;
  height: 34px;
  color: #fff;
  font-size: 23px;
  margin-top: -20px;
  transition: all 0.3s ease-in-out;
}

.testimonial_section .testimonial_box .testimonial_container .owl-nav .owl-next:hover {
  background: var(--color-black);
}

.testimonial_section .testimonial_box .testimonial_container .testimonials .testimonial_content i {
  color: var(--color-default);
}

@media all and (max-width: 991px) {
  .testimonial_section .about_content {
    padding-right: 15px !important;
  }

  .testimonial_section .about_content .background_layer {
    width: 200% !important;
  }

  .testimonial_section .testimonial_box {
    margin-top: 0 !important;
  }

  .testimonial_section .testimonial_box .background_layer {
    width: 200% !important;
    margin-left: -200px;
  }

  .testimonial_section .testimonial_box .about_content {
    padding-left: 15px !important;
    padding-right: 15px !important;
    margin-top: 28% !important;
  }

  .testimonial_section .testimonial_box .testimonial_container {
    margin-left: -15px !important;
  }

  .testimonial_section .testimonial_box .testimonial_container .testimonials {
    margin: 0px 0 20px 0;
  }

  .testimonial_section .testimonial_box .testimonial_container .testimonials .testimonial_content {
    margin-left: -36px !important;
  }

  .testimonial_section .testimonial_box .testimonial_container .testimonials .images_box {
    display: none;
  }
}

/* MISSION */
.mission h1 {
  text-align: center;
  font-weight: 600;
  color: var(--color-black);


}

/* ========================================Enquiry ======================= */

.enq-sec {
  background-image: linear-gradient(#0b0b0b8d, #06060688), url(../images/logo_make_11_06_2023_114.jpg);
  width: 100%;
  height: 40vh;
  background-position-y: center;
  background-size: cover;

}

.enq-sec h1 {
  margin-top: 60px;
  color: var(--color-white);
  font-size: 60px;
  text-transform: uppercase;
}

.enq-sec a {
  color: var(--color-white);
  padding: 10px 25px;
  background-color: var(--color-primary);
  border-radius: 5px;
  margin-top: 10px;
  transition: 1s ease-in-out;
}

.enq-sec a:hover {
  background-color: var(--color-black);
}



/* =========================================footer ================================*/

.pdn-top-30 {
  padding-top: 60px;
}

.footer {
  background-color: var(--color-black);
  text-align: center;
  font-family: 'Times New Roman', Times, serif;
}

.footer .headinga h3 {
  font-size: 38px;
  display: block;
  color: var(--color-white);
  max-width: 850px;
  padding-bottom: 1px;
  border-bottom: var(--color-white) solid 1px;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 0px;
  margin-bottom: 30px;
}

.footer .headinga span {
  font-size: 17px;
  display: block;
  color: var(--color-white);
  padding-top: 10px;
  padding-bottom: 5px;
  font-family: 'Times New Roman', Times, serif;
}

.footer .headinga p {
  font-size: 17px;
  display: block;
  color: var(--color-white);
  line-height: 30px;
}

ul.link li {
  display: inline-block;
  padding: 8px 15px;
}

ul.link li a {
  color: var(--color-white);
  font-size: 17px;
}

ul.link li a:hover {
  color: var(--color-primary) !important;
}

ul.location_icon {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 5px;
}

ul.location_icon li {
  float: left;
  height: 60px;
  color: var(--color-white);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-right: 20px;
}

ul.location_icon li:last-child {
  padding-right: 0px;
}

ul.location_icon li a {
  color: var(--light);
  width: 40px;
  height: 40px;
  border: solid var(--color-white) 1px;
  float: left;
  text-align: center;
  line-height: 40px;
  border-radius: 100%;
  font-size: 18px;
}

ul.location_icon li a:hover {
  background: var(--color-primary);
  border: solid var(--color-primary) 1px;
  color: var(--light);
}

ul.location_icon span {
  font-size: 17px;
  font-weight: 400;
}

.copyright {
  background: var(--color-primary);
  padding: 20px 0px 20px 0;
  margin-top: 50px;
}

.copyright p {
  color: var(--color-white);
  font-size: 16px;
  text-align: center;
  text-align: center;
  margin: 0 auto;
}

.copyright a {
  color: var(--color-white);
  font-weight: bold;
}

.copyright a:hover {
  color: var(--color-default);
}