
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

body {
  /* font-family: "Roboto", sans-serif; */
  /* overflow-x: hidden; */
}

.container{
	max-width: 1200px;
	margin:auto;
}

.logo{
  width: 120px;
}
@media (max-width: 575.98px) {
  .logo{
    margin-left: 9rem !important;
  }
}

/* Navigation  */


/* hero title section  */
.title-wrap{
  background-color: #ededed;
  padding: 2rem;
  font-size: 40px;
  font-weight: 100;
  text-align: center;
  text-transform: uppercase;
}


/* Breadcrumb Section  */
.bread-cum{
  display: flex;
  align-items: center;
  gap: 14px;
  list-style-type: none;
  margin-top: 1.2rem;
}
.bread-cum li a{
  color: #000;
  font-size: 14px;
  font-weight: 200;
}




/* Version section  */
.version-col-bg{
  background-color: #ededed;
  height: 375px;
  padding: 3rem;
}

@media (max-width: 575.98px) {
  .v-img{
    width: 100%;
  }
}

/* Social icon wrap  */
.social-icon-wrap{
  display: flex;
  align-items: center;
  justify-content: center;
  list-style-type: none;
  gap: 24px;
}

.social-icon-wrap li a{
  color: #fff;
  transition: all 0.5s ease;
}
.social-icon-wrap li a:hover{
  color: #cf750f;
}



/* Footer  */
.footer-wrap{
  padding: 3rem 0 2rem 0;
}
.f-title{
  text-transform: uppercase;
  font-size: 17px;
  font-weight: 400;
}

.f-ul{
  list-style-type: none;
  padding: 0.6rem 0;

}
.f-ul li{
  margin: 0.50rem 0;
}

.f-ul li a{
  color: #000;
  font-size: 16px;
  font-weight: 200;
  transition: all 0.5s ease;
}
.f-ul li a:hover{
  color: #cf750f;
}

.f-hr{
  margin: 0;
  opacity: 100;
}


/* Footer last part  */
.f-last-wrap{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0rem;
}
.f-logo{
  width: 120px;
}
.f-last-list{
  display: flex;
  align-items: center;
  gap: 18px;
}

@media (max-width: 575.98px) {
  .f-last-wrap{
    display: block;
    align-items: center;
    justify-content: space-between;
    margin-top: 3rem;
  }

  .f-last-list{
    display: block;
    align-items: center;
    gap: 18px;
  }

}



.floating_btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
  }


  @keyframes pulsing {
    to {
      box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
    }
  }

  .contact_icon {
    background-color: #42db87;
    color: #fff;
    width: 60px;
    height: 60px;
    font-size: 30px;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translatey(0px);
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 0 0 #42db87;
    -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    font-weight: normal;
    font-family: sans-serif;
    text-decoration: none !important;
    transition: all 300ms ease-in-out;
  }


  .text_icon {
    margin-top: 8px;
    color: #707070;
    font-size: 13px;
  }















