/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/


:root{
    --body-font: "Montserrat", sans-serif;
    --title-font: "Saira", sans-serif;
    --primary-color: #156B36;
    --light-primary-color: #ddf5ea;
    --black-color: #222222;
    --white-color: #fff;
    --white-color-1: #f8f7f7;
    --form-border-color: #ccc;
    --body-color: #444444;
}


/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

html{
  overflow-x: hidden;
}
body {
    font-family: var(--body-font);
    color: var(--body-color);
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings:"wdth" 100;
  }
  
  a {
    color: #1CA94A;
    text-decoration: none;
  }
  
  a:hover {
    color: #156B36;
    text-decoration: none;
  }
  
  h1,
  h2,
  h3,
  h4{
    font-family: var(--title-font);
  }

  h5,
  h6{
    font-family: var(--body-font);
  }


  .section-title .title{
    font-family: var(--title-font);
    margin-bottom: 10px;
    font-size: calc(1.315rem + .70vw);
    font-weight: 700;
    line-height: 30px;
    color: var(--primary-color);
    text-transform: capitalize;
  }


  

  @media (min-width:1300px) {
    .section-title .title {
      font-size: 2.5rem;
    }
  }


  .section-title .sub-title{
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--body-color);
  }

  @media (max-width:991px){
    .section-title .sub-title{
        font-size: 12px;
    }
  }


  /*--------------------------------------------------------------
# Form Fields
--------------------------------------------------------------*/

input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0; 
}

  .form-control {
    border-radius: 8px;
    border: 1.5px solid var(--form-border-color);
    box-shadow: none;
    font-size: 14px;
    height: 55px;
    outline: none;
    padding-left: 15px;
    /* box-shadow: none !important; */
    
}

.form-control:focus, .form-control:active{
    border-color: var(--light-primary-color) !important;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px !important;
}

textarea.form-control {
    border: 1.5px solid var(--form-border-color);
    border-radius: 8px;
    height: auto;
    width: 100%;
    padding: 25px 20px;
    /* box-shadow: none !important; */
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px !important;
}

textarea.form-control:focus, textarea.form-control:active{
  border-color: var(--light-primary-color) !important;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px !important;  
}



button{
  box-shadow: none !important;
}


.btn1 {
  display: inline-block;
  transition: all 0.2s ease-in;
  position: relative;
  overflow: hidden;
  z-index: 1;
  color: #090909;
  padding: 0.7em 1.7em;
  font-size: 18px;
  border-radius: 4px;
  background: var(--var(--white-color)-color);
  border: 1px solid var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  box-shadow: none !important;
}

.btn1:active {
  color: #666;
  box-shadow: inset 4px 4px 12px #c5c5c5,
             inset -4px -4px 12px #ffffff;
}

.btn1:before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scaleY(1) scaleX(1.25);
  top: 100%;
  width: 140%;
  height: 180%;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  display: block;
  transition: all 0.3s 0.05s cubic-bezier(0.33, 0.5, 0.75, 1);
  z-index: -1;
}

.btn1:after {
  content: "";
  position: absolute;
  left: 55%;
  transform: translateX(-50%) scaleY(1) scaleX(1.45);
  top: 180%;
  width: 160%;
  height: 190%;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: block;
  transition: all 0.3s 0.05s cubic-bezier(0.33, 0.5, 0.75, 1);
  z-index: -1;
}

.btn1:hover {
  color: #ffffff;
  border: 1px solid var(--primary-color);
}

.btn1:hover:before {
  top: -35%;
  background-color: var(--primary-color);
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

.btn1:hover:after {
  top: -45%;
  background-color: var(--primary-color);
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}


.middle_name{
  display: none;
}


input.parsley-success,
select.parsley-success,
textarea.parsley-success {
  color: #000;
  background-color: #fff !important;
  border: 1px solid #D6E9C6 !important;
}

input.parsley-error,
select.parsley-error,
textarea.parsley-error {
  color: #000;
  background-color: #fff !important;
  border: 1px solid #B94A48 !important;
}

.parsley-errors-list {
  margin: 10px 0 3px;
  padding: 0;
  list-style-type: none;
  font-size: 0.9em;
  line-height: 0.9em;
  opacity: 0;
  color: #B94A48;

  transition: all .3s ease-in;
  -o-transition: all .3s ease-in;
  -moz-transition: all .3s ease-in;
  -webkit-transition: all .3s ease-in;
}

.parsley-errors-list.filled {
  opacity: 1;
}





.btn2 {
  color: #fff;
  cursor: pointer;
  border: 1px solid var(--primary-color);
  border-radius: 4px;
  padding: 0.8em 2em;
  background: var(--primary-color);
  transition: 0.2s;
}

.btn2:hover {
  color: var(--white-color);
  background: var(--black-color);
  box-shadow: 0.25rem 0.25rem #0f0f0f52;
}

.copyright-txt p{
  font-size: 14px;
}

/* .address-main > div.col-lg-4 {
  border-bottom: dotted 1px var(--light-primary-color);
} */
.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(--primary-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;
}



.page-title-section {
  background-position: center;
  background-color: #f8f8f8;
  background-image: url(../images/breadcrumb.png);
  display: flex;
  align-items: end;
  min-height: 405px;
  position: relative;
  padding: 125px 0 105px 0;
}

.page-title-section:after {
  background: linear-gradient(360deg, #000000, #130c05);
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  opacity: 0.75;
  z-index: 1;
}

.page-title-section .breadcrumb-area {
  text-align: center;
  z-index: 2;
  position: relative;
}

.page-title-section .breadcrumb-area .page-title {
  color: var(--white-color);
  margin-bottom: 15px;
  font-family: var(--title-font);
  font-weight: 700;
  font-size: 44px;
}

.page-title-section .breadcrumb-area .breadcrumbs-link {
  display: inline-block;
  background: rgba(255, 255, 255, 0.07);
  padding: 8px 40px;
}

.page-title-section .breadcrumb-area .breadcrumbs-link li a {
  color: var(--white-color);
}

.page-title-section .breadcrumb-area .breadcrumbs-link li {
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  color: var(--white-color);
}

.page-title-section .breadcrumb-area .breadcrumbs-link li:after {
  display: inline-block;
  content: '\f061';
  font-family: 'Font Awesome 5 Pro';
  font-weight: 600;
  margin-left: 15px;
  margin-right: 12px;
  color: var(--white-color);
  font-size: 14px;
}

.page-title-section .breadcrumb-area .breadcrumbs-link li:last-child:after{
  display: none;
}

.page-title-section .breadcrumb-area .breadcrumbs-link li.active {
  color: #fff;
  text-decoration: underline;
  font-weight: 500;
}
