* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/*   
    font-family: "Antonio", sans-serif;
    font-family: "Rubik", sans-serif;
*/
body {
  font-family: "Rubik", sans-serif;
  background: #fff;
  transition: 0.3s;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #0f110cf0;
}
a {
  text-decoration: none;
  background: transparent;
  color: #fff;
  transition: 0.4s all ease;
}
a:hover {
  color: #fff;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Antonio", sans-serif;
  color: #0f110cf0;
  font-weight: 700;
}
p {
  margin-top: 0;
  font-size: 15px;
  margin-bottom: 0rem;
  color: #0f110cf0;
  font-weight: 400;
  font-family: "Rubik", sans-serif;
}
section {
  padding: 100px 0;
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.titleBar h3 {
  font-size: 45px;
  font-weight: 800;
  color: var(--s-primary);
  margin-bottom: 25px;
  text-transform: uppercase;
}
.titleBar h3 span {
  color: var(--s-secondary);
}
.bg {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
:root {
  --s-primary: #010080;
  --s-secondary: #02025b;
  --s-white: #ffffff;
  --s-black: #0f110cf0;
}
.bg-s-primary {
  background-color: var(--s-primary) !important;
}
.text-s-primary {
  color: var(--s-primary) !important;
}
.bg-s-secondary {
  background-color: var(--s-secondary);
}
.text-s-secondary {
  color: var(--s-secondary);
}
.text-s-black {
  color: var(--s-black);
}

.lowWidth {
  max-width: 1200px;
}
.mb-20 {
  margin-bottom: 20px;
}
/*=========================================  
                HOME PAGE CSS START HERE 
        ============================================*/
/* Sticky Header CSS Start */
header .header-scrolled {
  transition: all 0.5s linear;
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  top: 0;
  background-color: var(--s-white);
  z-index: 99999;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
/* .header-scrolled .nav-link {
  color: var(--s-white) !important;
} */
/* HEADER CSS START HERE */
header {
  background-color: transparent;
  position: relative;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  z-index: 99;
  transition: all 0.5s linear;
}
/* TOP SECTION CSS */
.top-section {
  padding: 15px 0;
  background-color: var(--s-primary);
}
.top-location ul li {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.8;
  margin-right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.top-location ul li a i {
  margin-right: 8px;
  color: var(--s-white);
}
/* .header-info ul li {
  padding: 0 12.5px;
} */
.header-info ul li a {
  color: var(--s-white);
  font-weight: 500;
  transition: 0.3s;
  background-color: transparent;
  border-radius: 100px;
  width: 35px;
  height: 35px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 5px;
}
.header-info ul li a:hover {
  color: var(--s-black);
  background-color: var(--s-white);
}

/* Bottom Header Start Here */
.dropdown-menu {
  left: 15px;
  border-radius: 0;
  border: none;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
  rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}
.dropdown-item:hover {
  background-color: var(--s-primary);
  color: #fff;
}
@media (min-width: 992px) {
  .dropdown-hover:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}
.bottom-header {
  background-color: var(--s-white);
  position: relative;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 999999;
  /* overflow: hidden; */
}
.bottom-header nav .navbar-brand {
  font-size: 25px;
  font-weight: 700;
  color: var(--s-primary);
  margin: 0;
}
.bottom-header nav .navbar-nav .nav-item .nav-link.active::after {
  transform: scale(1);
}
.bottom-header nav .navbar-nav .nav-item .nav-link {
  text-transform: capitalize;
  font-size: 15px;
  font-weight: 500;
  color: var(--s-primary);
  padding: 3px 2px;
  margin: 0 15px;
  border-radius: 50px;
  position: relative;
  /* text-transform: uppercase; */
}
.bottom-header nav .navbar-nav .nav-item .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0%;
  left: 0%;
  right: 0%;
  height: 1px;
  border-radius: 0px;
  border: 0 !important;
  background: currentColor;
  z-index: 1;
  transform: scale(0);
  transition: transform 0.8s cubic-bezier(0.16, 1.08, 0.38, 0.98);
}
.bottom-header nav .navbar-nav .nav-item .nav-link:hover::after {
  transform: scale(1);
}
.site-btn {
  padding: 18px 40px 16px 40px;
  margin-left: 20px;
  font-weight: 500;
  background-color: var(--s-primary);
  text-transform: capitalize;
  line-height: 1;
  border-radius: 5px;
  font-size: 16px;
  border: 1px solid var(--s-secondary);
  color: var(--s-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(0px);
  transition-duration: 0.3s;
}
.site-btn:hover {
  border-color: var(--s-secondary);
  background-color: var(--s-secondary);
  color: var(--s-white);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
    rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  transform: translateY(-5px);
}
.revSite-btn {
  background-color: #fff;
  color: var(--s-primary);
  border-color: #fff;
}

/* Banner Section Start Here */
/* BANNER */
.Mainbanner {
  position: relative;
}
#banner {
  /* background-image: url(https://bmrefrigerations.com/wp-content/uploads/2024/12/banner.jpg); */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  width: 100%;
  height: 750px;
  min-height: 750px;
  display: block;
}
#banner::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: #0000008a;
}
#banner .container .row {
  height: 750px;
  min-height: 750px;
}
#banner .banner-text {
  position: relative;
  z-index: 2;
  margin-top: 0px;
}
#banner .banner-text h5 {
  display: block;
  margin-bottom: 15px;
  color: var(--s-white);
  font-weight: 400;
  font-size: 25px;
  text-transform: uppercase;
}
#banner .banner-text h2 {
  font-size: 60px;
  display: block;
  margin-bottom: 20px;
  color: var(--s-white);
  font-weight: 800;
  text-transform: uppercase;
}
#banner .banner-text h2 span {
  color: var(--s-secondary);
}
#banner .banner-text p {
  margin-bottom: 35px;
  color: var(--s-white);
}
.site-btn-2 {
  background-color: var(--s-white);
  color: var(--s-primary);
}

/* Hero Banner Section Start here */
.heroSection
{

  position: relative;
  z-index: 1;
}
.services-item {
  border-style: solid;
  border-width: 0px 0px 0px 0px;
  border-color: var(--s-white);
  border-radius: 15px;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.185);
  transition: all ease 0.3s;
  position: relative;
  z-index: 85;
  background-color: var(--s-white);
  padding: 40px 20px 40px 30px;
  position: relative;
}
.services-item:hover {
  transform: translateY(-10px);
  background-color: var(--s-primary);
  transition: all ease 0.3s;
}
.services-item:hover .services-icon i
{
  color: var(--s-white);
  transition: all ease 0.3s;
}
.services-item:hover .services-content h3
{
  color: var(--s-white);
  transition: all ease 0.3s;
}
.services-item:hover .services-content p
{
  color: var(--s-white);
  transition: all ease 0.3s;
}
.services-icon i {
  font-size: 30px;
  color: var(--s-primary);
}
.services-content {
  padding: 20px 0px 0px 0px;
}
.services-content h3 {
  font-size: 22px;
  line-height: 30px;
  font-weight: 700;
  color: var(--s-primary);
  margin: 0px 0px 11px 0px;
  text-transform: uppercase;
}
.services-content p {
  margin: 0;
}

/* Services Section Start Here */
.servicesBox {
    border-style: solid;
    border-width: 0px 0px 0px 0px;
    border-color: var(--s-white);
    border-radius: 15px;
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.185);
    transition: all ease 0.3s;
    position: relative;
    z-index: 85;
    background-color: var(--s-white);
    padding: 40px 20px 40px 30px;
    position: relative;
}
.servicesBox:hover {
    transform: translateY(-10px);
    transition: all ease 0.3s;
}

/* WHy CHoose US Section STart Here */
.whyImage
{
    background-image: url(https://bmrefrigerations.com/wp-content/uploads/2024/12/whyImage.jpg);
    border-radius: 10px;
}
.whyText h2
{
    text-transform: uppercase;
}

/* showcase Section */
.showcaseSection {
    border-radius: 8px;
    padding-top: 4rem;
    padding-bottom: 4rem;
    padding-left: 4rem;
    padding-right: 4rem;
    position: relative;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;

}
.showcaseSection h2
{
    font-size: 45px;
    text-transform: uppercase;
}
.showcaseSection p
{
    font-size: 18px;
}
.showcaseSection a
{
    background-color: #fff;
    color: var(--s-secondary);
    padding: 18px 50px;
    border-radius: 8px;
    font-weight: 500;
    display: inline-block;
}

/* Contact Section Start Here */
.iconbg {
    background: #fff;
    border-radius: 100px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Footer Section Start Here */
footer {
  background-color: #e6e6e6;
}
.footer-box h2 {
  font-weight: 700;
  font-size: 25px;
  margin-bottom: 17px;
  color: var(--s-primary);
}
.footer-box p {
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 25px;
  color: var(--s-primary);
}
.footer-box h3 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 25px;
  color: var(--s-primary);
}
.footer-box ul li {
  margin-bottom: 10px;
}

.footer-box ul li a {
  font-size: 15px;
  color: var(--s-primary);
}
.footer-box ul li a:hover {
  color: var(--s-secondary);
  letter-spacing: 1px;
}
.footer1stRow {
  padding: 5rem 0 1.5rem 0;
}
.socialmediaicon ul li a i {
  background-color: var(--s-primary);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-right: 8px;
  padding: 0;
  color: var(--s-white);
  transition: 0.3s;
  border-radius: 50px;
}
.socialmediaicon ul li a i:hover {
  transform: rotate(360deg);
  background-color: var(--s-secondary);
}
.SocialIcon h3 {
  font-size: 16px;
  margin-bottom: 15px;
  display: block;
  font-weight: 400;
}
.copyRight {
  border-top: 1px solid #02174c4f;
  padding: 20px 0;
}

/* Back To Top CSS Start Here */
.button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--s-primary);
  border: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 0px 4px rgba(224, 122, 95, 0.253);
  cursor: pointer;
  transition-duration: 0.3s;
  overflow: hidden;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999999999;
}
.svgIcon {
  width: 12px;
  transition-duration: 0.3s;
}
.svgIcon {
  color: white;
}
.button:hover {
  width: 140px;
  border-radius: 0 10px 0 10px;
  transition-duration: 0.3s;
  background-color: var(--s-secondary);
  align-items: center;
}
.button:hover .svgIcon {
  /* width: 20px; */
  transition-duration: 0.3s;
  transform: translateY(-200%);
}
.button::before {
  position: absolute;
  bottom: -20px;
  content: "Back to Top";
  color: white;
  transition-duration: 0.3s;
  font-size: 0px;
}
.button:hover::before {
  font-size: 13px;
  opacity: 1;
  bottom: unset;
  /* transform: translateY(-30px); */
  transition-duration: 0.3s;
}






/*=========================================  
       ABOUT US PAGE CSS START HERE 
============================================*/
.innerPagesBanner {
  background-color: #000000;
  background-image: url(https://bmrefrigerations.com/wp-content/uploads/2024/12/innerservices.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.innerPagesBanner::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-color: #000000b4;
}
.innerpage-title {
  position: relative;
  z-index: 2;
  margin-top: 50px;
}
.innerpage-title h2 {
  font-size: 60px;
  font-style: normal;
  font-weight: 800;
  line-height: 78px;
  position: relative;
  display: block;
  color: var(--s-white);
  margin-bottom: 10px;
}
.breadcrumb-content ul li {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  color: var(--s-white);
  margin: 0 5px;
}
.breadcrumb-content ul li a {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  color: var(--s-white);
  margin-right: 5px;
}
.aboutImage
{
    background-image: url(https://bmrefrigerations.com/wp-content/uploads/2024/12/services-image-1.jpg);
}





/*============================================
     Inner Services Pages CSS STart Here 
=============================================*/
.innerServicesPage p
{
  margin-bottom: 20px;
}
.accordion-button:not(.collapsed)
{
    background-color: var(--s-primary);
    color: var(--s-white);
}
.accordion-button
{
    background-color: var(--s-primary);
    color: var(--s-white);
}
.innerServicesImage img
{
  height: 430px;
  object-fit: cover;
}




/*=========================================  
       Responsive CSS START HERE 
============================================*/
/* 991 Responsive CSS Start Here */
@media (max-width: 991px) {
    .top-section{
        display: none;
    }
    .navbar-brand img
    {
        width: 150px;
    }
}

/* 767 Responsive CSS Start Here */
@media (max-width: 767px) {
    .bottom-header nav .navbar-brand {
        font-size: 15px;
      }
      .navbar-nav {
        align-items: self-start !important;
        border-top: 1px solid #ffffff59;
        margin-top: 10px;
        padding: 8px 0;
      }
      .header-btn {
        display: none;
      }
      #banner {
        height: 550px;
        min-height: 550px;
        display: block;
        background-position: -525px 0;
      }
      #banner .container .row {
        height: 550px;
        min-height: 550px;
      }
      #banner .banner-text {
        position: relative;
        z-index: 2;
        width: 100%;
      }
      #banner .banner-text h5 {
        font-size: 13px;
      }
      #banner .banner-text h2 {
        font-size: 33px;
      }
      .titleBar h3 {
        font-size: 20px;
      }
      .titleBar p {
        font-size: 15px;
      }
      .showcaseSection {
        padding-top: 3rem;
        padding-bottom: 3rem;
        padding-left: 2rem;
        padding-right: 2rem;
    }
    .showcaseSection h2 {
        font-size: 25px;
    }
    .showcaseSection p {
        font-size: 15px;
    }
    .showcaseSection a {
        font-size: 15px;
        padding: 15px 30px;
        margin-top: 30px;
    }
    .content-box p
    {
        font-size: 12px;
    }
    .content-box h5
    {
        font-size: 15px;
    }
}

