/* button styles start */
.btn-btn {
  display: inline-flex;
/*  max-height: 3rem;*/
  border: 2px solid #196A64;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  font-size: clamp(14px, 1.3vw, 28px);
  gap: 0.5rem;
  background: #196A64;
  padding: 4px 4px 4px 24px;
  letter-spacing: -0.2px;
  font-weight: 500;
  transition: all 300ms ease-in-out;
  align-items: center;
  justify-content: space-between;
}

.btn-btn .button-icon {
  background: #196A64;
  background: transparent;
  display: flex;
  width: 36px;
  height: 36px;
  border-radius: 9px;
  vertical-align: middle;
  justify-content: center;
  align-items: center;
}

.btn-btn:hover {
  background: transparent;
  color: #101123;
}

.btn-btn:hover .button-icon {
  background: #101123;
}
.btn-btn .button-icon svg {
  width: 16px;
  height: 16px;
  /*  color: #fff;*/
  transition: 0.3s;
  transform: rotate(0deg);
}

.btn-btn:hover .button-icon svg {
  /*  color: #fff;*/
  transform: rotate(45deg);
}

.btn-arr {
  padding: 4px;
}

.btn-btn:hover .button-icon {
  background: transparent;
}

.btn-arr-slider-right .button-icon svg {
  transition: 0.3s;
  transform: rotate(45deg);
}

.btn-arr-slider-left .button-icon svg {
  transition: 0.3s;
  transform: rotate(-135deg);
}

.btn-arr-slider-left:hover .button-icon svg {
  transition: 0.3s;
  transform: rotate(-135deg);
}
.btn-phone {
  font-size: 1.6rem;
  font-weight: 500;
  width: fit-content;
  height: 48px;
  padding: 4px 16px 4px 12px;
}
.btn-phone .button-icon {
  background-image: url(../img/icon-phone.svg);
  background-repeat: no-repeat;
  display: flex;
  width: 36px;
  height: 36px;
  border-radius: 9px;
  vertical-align: middle;
  justify-content: center;
  align-items: center;
}
.btn-phone:hover .button-icon {
  background-image: url(../img/icon-phone.svg);
  background-repeat: no-repeat;
}

.btn-phone .button-icon-mail {
  background-image: url(../img/icon-mail-at.svg);
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
}
.btn-phone:hover .button-icon-mail {
  background-image: url(../img/icon-mail-at.svg);
}
.btn-phone-mobile {
  width: 44px;
  height: 44px;
  padding: 4px 4px 4px 4px;
}
.btn-sq {
  width: 48px;
  padding: 10px;
} 
/* button styles end */
/* button colors*/
.button-green {
  background: #25746e;
  color: #fff;
  border: 2px solid #25746e;
}

.button-green:hover {
  background: #0f3230;
  color: #fff;
  border: 2px solid #0f3230;
}

.button-phone-green {
    background: #25746e;
    color: #fff;
    border: 2px solid #25746e;
}
.button-phone-green:hover {
    background: #1100FF;
    color: #fff;
    border: 2px solid #1100FF;
}

.button-dark-green {
  background: #0f3230;
  color: #fff;
  border: 2px solid #0f3230;
}

.button-dark-green:hover {
  background: #25746e;
  color: #fff;
  border: 2px solid #25746e;
}

.button-light-green {
  background: #2C8C85;
  color: #fff;
  border: 2px solid #2C8C85;
}

.button-light-green:hover {
  background: #25746e;
  color: #fff;
  border: 2px solid #25746e;
}

.button-light {
  background: #e6ebeb;
  color: #252529;
  border: 2px solid #CFCFCF;
}

.button-light:hover {
  background: #3B827D;
  color: #fff;
  border: 2px solid #3B827D;
}

.button-blue {
  background: #0E2B60;
  color: #fff;
  border: 2px solid #0E2B60;
}

.button-blue:hover {
  background: #25746e;
  color: #fff;
  border: 2px solid #25746e;
}

.button-white {
  background: #fff;
  color: #252529;
  border: 2px solid #fff;
}

.button-white:hover {
  background: #25746e;
  color: #fff;
  border: 2px solid #25746e;
}
.button-empty {
  background: transparent;
  color: #252529;
  border: 2px solid transparent;
  font-weight: 700;
  font-size: 1rem;
}
.button-empty span {
    border-bottom: 2px solid;
}
.button-empty .button-icon {
  border-bottom: none;
}
.button-empty:hover {
  background: #25746e;
  color: #fff;
  border: 2px solid #25746e;
}
@media (max-width: 992px) {
  .btn-btn {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    height: 3rem;!important;
  }
  .btn-phone {
    font-size: 1.2rem;
  }
}
/* button colors end*/
