/*----------------------
# button common 2
------------------------------*/
.btn-common2 {
    border-style: none;
    font-family: var(--font-family-primary-bold);
    font-size: var(--font-size-5);
    display: inline-block;
    padding: 0px 44px;
    border-radius: 70px;
    line-height: 70px;
    color: white;
    margin-top: 6px;
    border: 3px solid transparent;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    height: 70px;
    width: inherit;
    text-align: center;
    display: table-cell;
    vertical-align: middle;
  }
  .btn-common2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-orange);
    z-index: -2;
  }
  .btn-common2::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: white;
    transition: all 0.3s;
    z-index: -1;
    border-radius: 32px;
  }
  .btn-common2:hover {
    background: white;
    color: var(--color-orange);
    text-decoration: none;
    border: 3px solid var(--color-orange);
    font-size: var(--font-size-6);    
  }
  .btn-common2:hover::before {
    width: 100%;
    height: 100%;
  }
  .btn-common2 i {
    position: absolute;
    right: 40px;
    font-size: 25px;
    top: 50%;
    transform: translateY(-50%);
  }
  .btn-common2:hover>i {
    right: 25px;
  }

  
/*----------------------
# button common 3
------------------------------*/
.btn-common3 {
    border-style: none;
    font-family: var(--font-family-primary-bold);
    display: inline-block;
    padding: 0px 44px;
    border-radius: 70px;
    line-height: 60px;
    color: white;
    margin-top: 6px;
    border: 3px solid transparent;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    width: 100%;
    height: 100%;
    text-align: left;
  }
  .btn-common3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #004EA8;
    z-index: -2;
  }
  .btn-common3::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: white;
    transition: all 0.3s;
    z-index: -1;
    border-radius: 32px;
  }
  .btn-common3:hover {
    background: white;
    color: #004EA8;
    text-decoration: none;
    border: 3px solid #004EA8;
  }
  .btn-common3:hover::before {
    width: 100%;
  }
  .btn-common3 i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
  .btn-common3:hover>i {
    right: 10px;
  }

  
/*----------------------
# button common 4
------------------------------*/
.btn-common4 {
  border-style: none;
  font-family: var(--font-family-primary-bold);
  display: inline-block;
  padding: 0px 44px;
  line-height: 60px;
  color: white;
  margin-top: 6px;  
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  width: 100%;
  height: 100%;
  text-align: left;
}
.btn-common4 i {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}
.btn-common4:hover>i {
  right: 20px;
}

.center-align{
  text-align: center;
}