/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/


/*Custom Border Radius for Images*/

.custom-radius img {
  border-radius: 0 60px 0 60px;
}

/*Faux button styling for the flip cards*/

.cta-text {
    color: #00AB8E !important;
    font-family: Kanit;
    font-size: 16px !important;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0px;
    text-transform: capitalize;
    padding: 10px 29px;
    /* -webkit-border-radius: 50px; */
    border-radius: 50px;
    background-color: rgba(255, 255, 255, 1.0);
}

/* Border radius for benefits sections */
.radius-top .row {
  border-radius: 15px 15px 0 0; 
}

.radius-bottom .row {
  border-radius: 0 0 15px 15px; 
}


/* Break for desktop but not mobile */
.desktop-break {
  display: none;
}

@media (min-width: 1025px) {
  .desktop-break {
    display: inline;
  }
}


/* Right align footer nav links */

.nav-col-2 {
  text-align: right; !important
}

.nav-col-3 {
  text-align: right;!important
}

.nav-col-4 {
  text-align: right;!important
}






@media (max-width: 575px) {
    .show-mobile {
        display: flex !important;
    }
}

@media (max-width: 575px) {
.foot-nav-title {
            display: inline-flex !important;
        align-items: flex-start;
  justify-content: space-evenly !important;
}
  
  .foot-nav-title:after {
  color: #ffffff;
      text-align: right;
    width: 100%;
    padding-right: 10px;
}

}