@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  /* font-family: "Open Sans", sans-serif; */
  display: block;
  font-family: 'Poppins', sans-serif!important;
  /* font-family: 'Montserrat',Helvetica,Arial,Lucida,sans-serif!important; */
  color: #808080;
  background-color: #f9f9f9 !important;
  /* -webkit-user-select: none;  Chrome all / Safari all */
  -moz-user-select: none;     /* Firefox all */
  -ms-user-select: none;      /* IE 10+ */
   /* user-select: none;    */

}

body p {
  font-size: 14px;
  font-family: 'Poppins', sans-serif!important;
}

section {
  padding: 60px 0px;
}
.section-bg {
  background-color: #f7f8f9;
}

.inmed-color {
  color: #f5832e;
}

a {
  color: #ea5420;
  text-decoration: none!important;
}

a:hover {
  color: #45beff;
  text-decoration: none;
}
::selection{
  background-color:#ff856859;
}
input::placeholder{
  color: #989898!important;
  pointer-events: none;
}
label,
p,
h1,
h2,
h3,
h4,
h5,
h6,
.font-primary {
  font-family: 'Poppins', sans-serif!important;
  color:#808080;
}
ul li{
  list-style-type: none;
}

.loader-wrapper{
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #242f3f;
  opacity: 0.8;
  display:flex;
  justify-content: center;
  align-items: center;
  z-index: 1100;
}
.loader,
.loader:after {
  border-radius: 50%;
  width: 6em;
  height: 6em;
}
.loader {
  margin: 60px auto;
  font-size: 10px;
  position: relative;
  text-indent: -9999em;
  border-top: 1.1em solid rgba(255, 255, 255, 0.2);
  border-right: 1.1em solid rgba(255, 255, 255, 0.2);
  border-bottom: 1.1em solid rgba(255, 255, 255, 0.2);
  border-left: 1.1em solid #f5832e;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
}
@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.panamed-color{
  color:#ea5420;
  font-weight: bold;
}
.form-control:focus,.form-select:focus {
    border-color: transparent;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgb(13 110 253 / 0%)!important;
}
.mobile-nav-toggle {
  display: none;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: #ea5420;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
  z-index:99999;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #85b6cf;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
  position: fixed!important;
  bottom: 75px;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.7s;
  z-index: 997;
  /* background: #1e4356; */
  /* background: white; */
  /* position: relative; */
}

#header.header-transparent {
  background: white!important;
  padding: 25px 0;
  position: relative;
}

#header.header-scrolled {
  background: rgb(246 246 246);
  transition: all 0.5s;
  padding: 16px 0 !important;
  position: fixed;
  color: #666 !important;
}
#header .logo h1 {
  font-size: 28px;
  margin: 0;
  padding: 4px 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 50px;
}

#main {
  margin-top: 80px;
}

/*--------------------------------------------------------------
# Waves Effect
--------------------------------------------------------------*/


.waves-effect {
  position: relative;
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  vertical-align: middle;
  z-index: 3;
  will-change: opacity, transform;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.waves-effect .waves-ripple {
  position: absolute;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  margin-left: -10px;
  opacity: 0;
  background: rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.7s ease-out;
  -moz-transition: all 0.7s ease-out;
  -o-transition: all 0.7s ease-out;
  -ms-transition: all 0.7s ease-out;
  transition: all 0.7s ease-out;
  -webkit-transition-property: -webkit-transform, opacity;
  -moz-transition-property: -moz-transform, opacity;
  -o-transition-property: -o-transform, opacity;
  transition-property: transform, opacity;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  pointer-events: none;
}

/* .waves-effect.waves-light .waves-ripple {
  background-color: rgba(255, 255, 255, 0.45); */
  /* background-color: rgba(168, 168, 168, 0.45); */
/* } */

.waves-effect.waves-red .waves-ripple {
  background-color: rgba(255, 172, 167, 0.7);
}

.waves-effect.waves-yellow .waves-ripple {
  background-color: rgba(255, 235, 59, 0.7);
}

.waves-effect.waves-orange .waves-ripple {
  background-color: rgba(255, 152, 0, 0.7);
}

.waves-effect.waves-purple .waves-ripple {
  background-color: rgba(156, 39, 176, 0.7);
}

.waves-effect.waves-green .waves-ripple {
  background-color: rgba(76, 175, 80, 0.7);
}

.waves-effect.waves-teal .waves-ripple {
  background-color: rgba(0, 150, 136, 0.7);
}

/* Firefox Bug: link not triggered */
a.waves-effect .waves-ripple {
  z-index: -1;
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
  padding: 11px 30px;
    width: 100%;
}

.navbar a, .navbar a:focus {
  /* display: flex; */
  display: inline-block;
  align-items: center;
  justify-content: space-between;
  /* padding: 10px 0 10px 30px; */
  font-family: "poppins", sans-serif;
  font-size: 14px;
  /* color: #666; */
  white-space: nowrap;
  transition: 0.3s;
  /* padding: 11px 30px; */
  font-size: 15px;
    cursor: pointer;
}
.navbar a::after,.navbar a:visited {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  transition: width .3s;
  background-color: #ff813c;
}
.navbar .dropdown ul li a::after,.navbar .dropdown ul li a:visited{
  content: '';
  display: block;
  width: 0;
  height: 2px;
  transition: width .3s;
  background-color: transparent;
}
.navbar .dropdown ul .active{
  border-bottom: solid 2px transparent;
}
.navbar a:hover::after{
  width: 100%;
  transition: width .3s;
}
.active {
  font-weight: 700!important;
  /* color:#ea5420!important; */
  color: #f5832e !important;
  border-bottom: solid 2px #f5832e;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 0px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  /* width: 100%; */
  overflow: hidden!important;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  /* padding: 10px 20px; */
  padding: 0;
  font-size: 14px;
  text-transform: none;
  color: #808080;
}

.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: #ea5420;
}

.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;
}
.captchatext {
pointer-events: none !important;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  width: 100%;
  overflow: hidden;
  /* padding: 220px 0px; */
  position: relative;
}
.breadcrumbs .overlay {
  height: 100%;
  /* background: rgba(0, 0, 0, 0.3); */
  background: rgb(255 255 255 / 30%);
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2;
  background-size: cover !important;
}
.breadcrumbs img{
  background-repeat: no-repeat;
  z-index: 1;
  display: block;
  height: 250px;
  object-fit: cover;
}
.breadcrumbs .banner-overlay {
  top: 0;
  z-index: 3;
  text-align: left;
  position: absolute;
  padding: 77px 15px;
  margin: auto;
  width: 100%;
}
.breadcrumbs h1{
  color:#f5832e!important;
  font-weight:700;
}
.breadcrumbs li a{
  color:#2b2b2b!important;
}
/* ----------------------- Banner ----------------------*/
#banner {
  width: 100%;
  overflow: hidden;
  padding: 220px 0px;
  position: relative;
}
#banner::after {
  content: "";
  position: absolute;
  /* left: 50%; */
  top: 116px;
  width: 100%;
  height: 100%;
  background:url('../img/banner-bg.png') center top no-repeat;
  /*background-color:#f2f6f8;*/
  z-index: 1;
  background-size: cover !important;
}
#banner .overlay {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 3;
  background-size: cover !important;
}
#banner .overlay {
  height: 100%;
  /* background: rgba(0, 0, 0, 0.3); */
}
#banner .container {
  max-width: 1322px;
  margin: auto;
  z-index: 5;
  text-align: left;
}
#banner .bg-inmed {
  background-color: #ff8b1e !important;
}
#banner a button{
  padding: 10px 30px;
  color : white;
  font-weight: 600;
  margin-right: 2rem;
  letter-spacing: .5px;
  border-radius: 0px!important;
  width: 35%;

}
#banner h1 {
  /* color:#2b2b2b; */
  color:#ffffff;
  font-size: 3rem;
  /* text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1); */
  /* text-shadow: 2px 2px 2px rgb(0 0 0 / 20%); */
}
#banner p {
  letter-spacing: 0.5px;
  color:white;
}
#banner .quote-icon-left,#banner .quote-icon-right {
  /* color: #ff813c; */
    color: #ffffff;

}
#banner .btn-light {
  background-color: #f5832e;
  border: solid 1px #f5832e !important;
  /* border: solid 1px #ea5420 !important; */
  transition: 0.5s;
}
#banner .btn-light:hover {
  background-color:#ff6a36 ;
  /* background-color: transparent!important; */
  border: solid 1px #ff6a36 !important;
  color: white!important;
}
#banner .btn-outline-warning {
  /* border: solid 1px #ff6a36 !important; */
  /* color: #ff6a36!important; */
  background-color: #2b2b2b;
  border: solid 1px #2b2b2b
  
}
#banner .btn-outline-warning:hover {
  border: solid 1px #2b2b2b !important;
  background-color: #434343;
  color: white!important;
}
/*--------------------------------------------------------------
# card-info
--------------------------------------------------------------*/
.card-info{
color:#666;
}
.card-info .fw-bold {
  font-weight: 600 !important;
}
.card-info .icon {
  margin: 0 auto 15px auto;
  padding-top: 10px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  width: 72px;
  height: 72px;
}
.card-info .icon-pink .icon{
  background: #fceef3;
}
.card-info .icon-cyan .icon{
  background: #e6fdfc;
}
.card-info .icon-green .icon{
  background: #d8ffd2;
}
.card-info p{
  line-height: 24px;  
}
/*--------------------------------------------------------------
# Contact us
--------------------------------------------------------------*/
.contact-us .responsive-map{    
  overflow: hidden;
  padding-bottom: 40.25%;
  position: relative;
  height: 0;
}
.contact-us  .form-control {
  border: 1px solid #ebebeb!important;
  font-size: 14px;
  border-radius:0;
  transition: all .5s ease-in-out, .5s ease-in-out;
  background-color: #f9fafb;
  padding: .375rem 0.8rem;

}
.contact-us label{
  color:#6d6d6d;
  /* font-weight: 600; */
  font-size: 14px;
}
.contact-us .form-control:focus {
  box-shadow: 0 0 0 0.25rem rgb(255 255 255 / 0%)!important;
}
.contact-us .btn-warning {
  --bs-btn-bg: #f5832e;
  --bs-btn-border-color: #f5832e;
  --bs-btn-hover-bg: #ff9646;
  --bs-btn-hover-border-color: #ff9646;
  --bs-btn-active-bg: #f5832e;
  --bs-btn-active-border-color: #f5832e;
  color:white!important;
  border-radius: 0;
  width: 100%;

}

/*--------------------------------------------------------------
# Who we are
--------------------------------------------------------------*/
.who-we-are p{
  line-height: 24px;
}
/*--------------------------------------------------------------
# About-us
--------------------------------------------------------------*/
.about {
  background-color: #ffffff;;
}
.about-us h4 {
  letter-spacing: 0.5px;
}
.about-us .text-dark {
  color:#3c3c3c!important;
}
.about .content ul i {
  padding-right: 4px;
  color: #28a745;
}
.about .content ul li{
  font-family: 'Poppins', sans-serif!important;
  font-size: 14px;
  color: #808080;
}
.text-dark {
  color:#3c3c3c!important;
}
/*--------------------------------------------------------------
# Careers
--------------------------------------------------------------*/
.careers .text-dark {
  color:#3c3c3c!important;
}
.careers .card {
  border-left-style: solid !important;
  border-left: solid #f5832e;
  border-bottom: transparent;
  border-right: transparent;
  border-top: transparent;
  border-radius: 0;
}
.careers ul li {
  color:#808080!important;
}
.careers .offer{
  margin-top:3rem;
}
.careers .form-control {
  border-radius: 0;
  font-size: 14px;
}
.careers .btn-warning:hover,.careers .btn-warning:focus,.careers .btn-warning:active {
  color:white!important;
  background-color: #ff6646!important;
  border: 1px solid #ff6646!important;
}
.careers .accordion-button:focus {
    z-index: 3;
    border-color: none!important;
    outline: 0;
    box-shadow: none!important;
}
.careers .btn-warning {
  color:white;
  background-color: #f5832e;
  border-color: #f5832e;
  border-radius: 0;
  font-weight: 600;
  transition: 0.5s;
}
.careers .form-control:focus {
  box-shadow: 0 0 0 0.25rem rgb(255 255 255 / 0%) !important;
  border-color: #ff813c;
}
.careers label {
  color: #6d6d6d;
  font-size: 14px;
}
.warning-message {
  /* display:none; */
  color: #dc3545;
  transition: fade 0.5s infinite;
  font-size: 14px;
  display: block;
}
/*--------------------------------------------------------------
#warranty
--------------------------------------------------------------*/
.warranty .text-dark{
  color:#3c3c3c!important;
}
.warranty .form-control,.warranty .form-select{
  padding: 10px 16px;
  border-radius: 0;
  border: 1px solid #c6c6c6;
}
.warranty label {
  color:#3c3c3c!important;
  font-weight: 600;
}
.warranty ::placeholder{
  color:#c6c6c6!important;
}
.warranty .form-control:focus {
  border-color: #c6c6c6!important;
}
.warranty .btn-warning {
  background-color: #f5832e;
  border:solid 1px #f5832e;
  border-radius: 0;
  color:white;
  font-weight:700;
  padding:10px 15px!important;
  transition: 0.3s;
}
.warranty .btn-warning:hover,.warranty .btn-warning:focus,.warranty .btn-warning:active {
  background: #db772d!important;
  border: solid 1px #db772d!important;
  border-radius: 0;
  color:white!important;
  font-weight:700;
  padding:10px 15px!important;
}
@media only screen and (max-width:425px) {
  .empty-label{
    display: none!important;
  }
  .warranty input{
    margin-top:12px;
  }
  .warranty .p-5:nth-child(1){
    padding: 1rem!important;
  }
  .warranty .card {
    background-color: transparent!important;
  }
  
}
/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  margin: 0;
  background: #fff;
  box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
  transition: all 0.3s ease-in-out;
  border-radius: 4px;
  text-align: center;
  border-bottom: 3px solid #fff;
}

.services .icon-box:hover {
  transform: translateY(-5px);
}

.services .icon i {
  font-size: 48px;
  line-height: 1;
  margin-bottom: 15px;
}

.services .title {
  font-weight: 700;
  margin-top: 15px;
  margin-bottom: 0;
  font-size: 18px;
}

.services .title a {
  color: #111;
}

.services .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
  text-align: left;
}

.services .icon-box-pink .icon i {
  color: #ff689b;
}

.services .icon-box-pink:hover {
  border-color: #ff689b;
}

.services .icon-box-cyan .icon i {
  color: #3fcdc7;
}

.services .icon-box-cyan:hover {
  border-color: #3fcdc7;
}

.services .icon-box-green .icon i {
  color: #41cf2e;
}

.services .icon-box-green:hover {
  border-color: #41cf2e;
}

.services .icon-box-blue .icon i {
  color: #2282ff;
}

.services .icon-box-blue:hover {
  border-color: #2282ff;
}
/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients{
  background-color: #ffffff;
}
.clients .clients-wrap {
  border-top: 1px solid #eceff0;
  border-left: 1px solid #eceff0;
}

.clients .client-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid #eceff0;
  border-bottom: 1px solid #eceff0;
  overflow: hidden;
  background: #fff;
  height: 120px;
  padding: 40px;
}

.clients .client-logo img {
  max-width: 50%;
  filter: grayscale(100);
}

.clients .client-logo:hover img {
  filter: none;
  transform: scale(1.1);
}

.clients img {
  transition: all 0.4s ease-in-out;
}

/*--------------------------------------------------------------
# Thank-you
--------------------------------------------------------------*/
.thank-you .btn-warning {
  color:white;
  background-color: #f5832e;
  border-color: #f5832e;
  border-radius: 0;
  font-weight: 600;
  transition: 0.5s;
}
.thank-you .btn-warning:hover,.thank-you .btn-warning:focus,.thank-you .btn-warning:active {
  color:white!important;;
  background-color: #ff6646!important;;
  border-color: #ff6646!important;;
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
  background-color: #2b2b2b;
  margin: 0!important;
  color :white!important;
}
#footer h4{
  color: white;
}
#footer a,#footer p{
  color :white;
  text-decoration:none;
  font-size: 15px;
  letter-spacing: 0.5px;
  line-height: 1.8em;
}
#footer .fw-bold{
  font-weight: 600!important;
}
#footer .py-6{
  padding-top: 7rem !important;
  padding-bottom: 7rem !important;
}#footer ul{
  list-style: none;
  padding-left:0!important
}
#footer a:hover{
  color:#ea5420;
}
#footer ul li{
  padding:10px 0px;
  font-size: 14px;
}
#footer .social-links a {
  font-size: 23px;
  display: inline-block;
  /* background: #f4522cc7; */
  background: #454545;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 9%;
  text-align: center;
  width: 38px;
  height: 38px;
  transition: 0.3s;
}
.meta-footer p{
  font-size: 11px;
}