
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
    --gray-color: #808080;
    --black-color: #000;
    --white-color: #fff;
    --white-color-1: #eee;
    --primary-color: #D92127;
    --secondary-color: #18509E;
    --light-blue: #64748b;
    --box-shadow: #36c5f011;
    --text-color: #242424;
    --form-bg: #F0F5F7;
    --title-font: 'Saira', sans-serif;
    --body-font: 'Poppins', sans-serif;
    --transition-figure: all 0.5s cubic-bezier(0.23, 0.03, 0, 1.08);
    --white-light-bg: #f8f9fa;
}

*{
    padding: 0;
    margin: 0;
}

html{
   overflow-x: hidden; 
}

body{
    font-family: var(--body-font);
    font-size: 18px;
    line-height: 32px;
    font-weight: 400;
    overflow-x: hidden;
    color: var(--text-color);
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5{
    font-family: var(--title-font);
}

a,
a:hover,
a:focus,
a:visited {
    text-decoration: none;
    box-shadow: none !important;
}

::-webkit-input-placeholder {
    color: inherit;
    opacity: 1;
}

::-moz-placeholder {
    color: inherit;
    opacity: 1;
}

:-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::placeholder {
    color: inherit;
    opacity: 1;
}

p{
    color: var(--gray-color);
}

dl,
ol,
ul {
    margin-top: 0;
    padding: 0;
}

li{
    list-style: none;
}

input, button{
  outline: 0 !important;
  box-shadow: none !important;
  border: 0;
}
.list-inline {
  padding-left: 0;
  list-style: none;
}
/* ===== Scrollbar CSS ===== */
/* Firefox */
* {
    scrollbar-width: auto;
    scrollbar-color: #8f8f8f #8f8f8f;
  }
  
  /* Chrome, Edge, and Safari */
  *::-webkit-scrollbar {
    width: 5px;
    height: 5px;
  }
  
  *::-webkit-scrollbar-track {
    background: #ffffff0a;
  }
  
  *::-webkit-scrollbar-thumb {
    background-color: var(--gray-color);
    border-radius: 10px;
  }

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder { /* Edge */
    color: var(--gray-color);
    font-weight: 400;
  }
  
  input:-ms-input-placeholder, textarea:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: var(--gray-color);
    font-weight: 400;
  }
  
  input::placeholder, textarea::placeholder {
    color: var(--gray-color);
    font-weight: 400;
  }

  input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

  .select2-container--default .select2-selection--single .select2-selection__placeholder{
    color: var(--gray-color);
    font-weight: 400;
    font-size: 16px;
  }

  .light-white-bg{
    background-color: var( --white-light-bg);
  }

  /*Section heading style-1*/
.section__heading h2 {
  color: var(--secondary-color);
  font-size: 34px;
  font-weight: 600;
  font-style: normal;
  letter-spacing: -1px;
  line-height: 44px;
  margin-bottom: 25px;
}

@media (min-width: 480px) {
  .section__heading h2 {
    font-size: 38px;
    line-height: 48px;
  }
}

@media (min-width: 768px) {
  .section__heading h2 {
    font-size: 48px;
    line-height: 58px;
  }
}

.section__heading p {
  opacity: 0.7;
  color: var(--gray-color);
  font-size: 17px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: normal;
  line-height: 30px;
  margin-bottom: 0;
}

/*Section heading style-2*/
.section__heading-2 h2 {
  color: var(--secondary-color);
  font-size: 34px !important;
  font-weight: 700;
  font-style: normal;
  letter-spacing: -1px;
  line-height: 42px;
  margin-bottom: 30px;
}

@media (min-width: 480px) {
  .section__heading-2 h2 {
    font-size: 38px !important;
    line-height: 45px;
  }
}

@media (min-width: 768px) {
  .section__heading-2 h2 {
    font-size: 48px;
    line-height: 55px;
  }
}

@media (min-width: 992px) {
  .section__heading-2 h2 {
    font-size: 54px !important;
    line-height: 66px;
  }
}

@media (min-width: 1600px) {
  .section__heading-2 h2 {
    font-size: 60px !important;
    line-height: 66px;
  }
}

.tp-title-sm {
  font-size: 50px;
  letter-spacing: 0;
  font-weight: 700;
  letter-spacing: -2px;
  margin-bottom: 40px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-title-sm {
    font-size: 38px;
  }
}


.fancybox__container{
  z-index: 99999 !important;
}


.footer-main{
  padding-top: 30px;
}

.address-main > div.col-lg-4 {
  border-bottom: dotted 1px var(--light-blue);
}
.address-box {
padding: 30px 0 0;
margin-bottom: 30px;
display: flex;
justify-content: left;
gap: 10px;
align-items: center;
}
.add-icon{
  width: 60px;
  display: inline-block;
  padding: 0px 5px;
}
.address-box .add-icon {
  background: var(--secondary-color);
  height: 75px;
  line-height: 75px;
  width: 75px;
  min-width: 75px;
  margin-right: 20px;
  text-align: center;
}
.add-icon img{
  width: 100%;
}
.address-box .add-icon{
  font-size: 35px;
  color: var(--white-color);
}
.address-box .add-icon img {
  max-width: 40px;
}
footer .add-content h5 {
  font-size: 17px;
  color: var(--white-color);
  padding: 0;
  font-weight: 500;
  margin-bottom: 10px;
}
footer .add-content p {
  font-size: 14px;
  color: var(--white-color);
  font-weight: 300;
  line-height: 1.8;
  word-wrap: anywhere;
}
footer .add-content p a{
  font-size: 14px;
  color: var(--white-color);
  font-weight: 300;
  word-wrap: anywhere;
}
footer .add-content p a:hover{
  color: var(--white-color);
}


footer .btn-outline-light{
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

footer a.text-secondary{
  color: var(--light-blue) !important;
}

.breadcrumb {
  position: relative;
  background: url(../images/breadcrumb-bg.jpg);
  padding: 60px 10px;
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}

.breadcrumb h1 {
  text-align: center;
  margin: 0 auto;
  color: var(--black-color); 
  text-transform: uppercase;
  word-spacing: 1px;
  position: relative;
}
.breadcrumb h1 b{
  color: var(--primary-color);
}
.breadcrumb h1:after, .breadcrumb h1:before {
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 45px;
  height: 4px;
  content: "";
  right: 45px; 
  margin:auto;
  background-color: var(--primary-color);
}
.breadcrumb h1:before { 
background-color:var(--secondary-color);
  left:45px; width:90px;
}

@media(max-width:767px){
  .breadcrumb{
    padding: 60px 10px;
  }
}


@media (min-width: 992px){
  .side-sticky {
    position: sticky;
    top: 14%;
    right: auto;
    left: 0;
    height: 100%;
    z-index: 1;
}
}


.irs--square .irs-from, .irs--square .irs-to, .irs--square .irs-single, .irs--square .irs-bar{
  background-color: var(--secondary-color);
}
.irs--square .irs-handle{
  border-color: var(--secondary-color);
  background-color: var(--secondary-color) !important;
  border-radius: 50rem !important;
}

.active>.page-link, .page-link.active{
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}


.select2-container{
  width: 100% !important;
}

.select2-container--default .select2-selection--single{
  height: 45px;
}


.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: var(--black-color);
  line-height: 42px;
  font-size: 16px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 8px !important;
  right: 5px !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected]{
  background-color: var(--secondary-color) !important;
  color: var(--white-color) !important;
}

.select2-container--default .select2-results__option[aria-selected=true]{
  background-color: var(--primary-color) !important;
  color: var(--white-color) !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field{
  font-size: 16px;
}

.select2-dropdown{
  max-height: 400px;
  overflow: auto;
}

.terms-content ul{
  padding-left : 20px;
}


.terms-content ul li{
  list-style-type: disc;
}


.terms-content p, .terms-content{
  color: var(--text-color);
  font-size: 12px;
  line-height: 1.6;
}



.scroll-to-top {
  display: flex;
 align-items: center;
 justify-content: center;
  width: 45px;
  height: 45px;
  background: var(--primary-color);
  position: fixed;
  bottom: 40px;
  right: 30px;
  z-index: 99;
  text-align: center;
  border-radius: 50%;
  transition: background-color .3s, 
    opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  color: var(--white-color);
}

.scroll-to-top i {
  color: #ffffff;
  font-size: 18px;
  line-height: 45px;
}

.scroll-to-top:hover {
  background-color: var(--black-color);
}

.scroll-to-top:hover i {
  color: #fff;
}


.scroll-to-top.show {
 
 opacity: 1;
  visibility: visible;
}






.form-label {
  font-size: 14px;
  display: block;
  margin-bottom: 3px;
  color: var(--label-color);
}

.form-input-1{
  font-size: 16px;
    width: 100%;
    padding: 10px 20px;
    border: 1.5px solid var(--form-bg) !important;
    border-radius: 6px;
    transition: all 0.3s ease-in-out;
    color: var(--black-color) !important;
    background-color: var(--form-bg) !important;
    background: var(--form-bg) !important;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
  font-weight: 500;
  height: 45px;
}


.dark-bg-form .form-input-1{
  background-color: var(--white-color) !important;
  border-color: var(--white-color) !important;
  color: var(--dark-color) !important;
  }

  

  textarea {
    font-size: 16px;
    width: 100%;
    padding: 10px 20px;
    border: 1.5px solid var(--form-bg);
    border-radius: 6px;
    -webkit-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
    min-height: 100px;
    color: var(--black-color);
    resize: none;
    background-color: var(--form-bg) !important;
    background: var(--form-bg) !important;
}

.form-input-1:focus, textarea:focus {
  outline: 0;
  border-color: var(--secondary-color) !important;
  background-color: var(--white-color) !important;
    background: var(--white-color) !important;
  }

  .ml-auto{
    margin-left: auto;
  }

  .w-320{
    width: 320px !important;
  }

  .remove-item{
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 5px;
  }


  table{
    white-space:nowrap;
  }



  .radio-buttons-container {
    display: flex;
    /* align-items: center; */
    gap: 10px;
    flex-direction: column;
  }
  
  .radio-button {
    display: inline-block;
    position: relative;
    cursor: pointer;
    width: fit-content;
  }
  
  .radio-button__input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  .radio-button__label {
    display: inline-block;
    padding-left: 30px;
    margin-bottom: 0;
    position: relative;
    font-size: 16px;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
  }
  
  .radio-button__custom {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--light-blue);
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
  }
  
  .radio-button__input:checked + .radio-button__label .radio-button__custom {
    transform: translateY(-50%) scale(0.9);
    border: 5px solid var(--secondary-color);
    color: var(--secondary-color);
  }
  
  .radio-button__input:checked + .radio-button__label {
    color: var(--secondary-color);
  }
  
  .radio-button__label:hover .radio-button__custom {
    transform: translateY(-50%) scale(1.2);
    border-color: var(--secondary-color);
    box-shadow: 0 0 10px #4c8bf580;
  }
  
  .hide{
    display: none;
  }
  
  .single-contact {
  display: flex;
  margin-bottom: 40px;
}

.single-contact .contact-icon {
  font-size: 38px;
  margin-right: 30px;
  color: var(--secondary-color);
}

.single-contact .contact-icon.orange-color {
  color: #ffae4a;
}

.single-contact .contact-icon.blue-color {
  color: var(--primary-color);
}

.single-contact .contact-info .contact-label {
  font-size: 22px;
  margin-bottom: 5px;
}

.single-contact .contact-info .address {
  font-size: 20px;
  margin: 0;
  color: var(--black-color) !important;
}

.single-contact .contact-info .address:hover {
  color: var(--secondary-color);
}

/* Works on Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #D92127 #F5F5F5;
}

/* Works on Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 12px;
}

*::-webkit-scrollbar-track {
  background: #F5F5F5;
}

*::-webkit-scrollbar-thumb {
  background-color: #D92127;
  border-radius: 10px;
  border: 3px solid #F5F5F5;
}



.c-btn-mail,
.c-btn-phone,
.c-btn-whatsapp {
  position: fixed;
  cursor: pointer;
  height: 45px;
  width: 45px;
  line-height: 45px;
  text-align: center;
  background: #00b833;
  z-index: 300;
  right: 30px;
  border-radius: 50%;
}
.c-btn-phone {
  display: block;
  bottom: 125px;
  -ms-flex-pack: center;
  justify-content: center;
}
.c-btn-mail,
.c-btn-phone,
.c-btn-whatsapp,
.c-social-links ul {
  display: -ms-flexbox;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 3px;
}
.c-btn-mail::before,
.c-btn-phone::before,
.c-btn-whatsapp::before {
  background: rgba(0, 184, 51, 0.6);
  width: 55px;
  height: 55px;
  left: -5px;
  top: -5px;
}
.c-btn-phone::after,
.c-btn-phone::before {
  transition: 0.2s linear;
  position: absolute;
  display: block;
  content: "";
  border-radius: 50%;
  z-index: -1;
  animation: 1.5s infinite phonePulse;
}
@keyframes phonePulse {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  to {
    transform: scale(1.5);
    opacity: 0;
  }
}
@-webkit-keyframes phonePulse {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  to {
    transform: scale(1.5);
    opacity: 0;
  }
}
.c-btn-whatsapp {
  display: block;
  bottom: 185px;
  -ms-flex-pack: center;
  justify-content: center;
}
.c-btn-whatsapp::after,
.c-btn-whatsapp::before {
  transition: 0.2s linear;
  position: absolute;
  display: block;
  content: "";
  border-radius: 50%;
  z-index: -1;
  animation: 1.5s infinite whatsAppPulse;
}
@keyframes whatsAppPulse {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  to {
    transform: scale(1.5);
    opacity: 0;
  }
}
@-webkit-keyframes whatsAppPulse {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  to {
    transform: scale(1.5);
    opacity: 0;
  }
}
.c-btn-mail {
  display: block;
  bottom: 245px;
  -ms-flex-pack: center;
  justify-content: center;
}
.c-btn-mail::after,
.c-btn-mail::before {
  transition: 0.2s linear;
  position: absolute;
  display: block;
  content: "";
  border-radius: 50%;
  z-index: -1;
  animation: 1.5s infinite mailPulse;
}
@keyframes mailPulse {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  to {
    transform: scale(1.5);
    opacity: 0;
  }
}
@-webkit-keyframes mailPulse {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  to {
    transform: scale(1.5);
    opacity: 0;
  }
}

.c-btn-mail{
  background: var(--secondary-color);
}
.c-btn-mail::before{
      background: var(--secondary-color);
}

.c-btn-phone, .c-btn-phone::before{
  background: var(--primary-color);
}

