body {
    background: rgba(54, 196, 206, 0.05);
    font-family: Roboto;
    position: relative;
}

section {
    height: 100vh;
    padding: 60px 0px;
    position: relative;
}


/*menu */
.menu-icon {
    width: 25px;
    margin: -0.5rem -0.5rem;
}

.navbar-nav .nav-item .custom-link,
.nav-item .custom-link {
    padding: .5rem .7rem;
    color: rgb(143, 143, 143);
}
.navbar-nav .nav-item .btn-custom{
    color:white;
    padding: .5rem .7rem;
}
.navbar-nav .nav-item .btn-custom:hover{
    color:white;
}
.place-holder {
    background: white;
    box-shadow: 0px 0px 20px rgba(0,0,0,0.1);
    max-width: 100%;
    min-height: 400px;
    border: 1px solid rgba(54, 196, 206, 1);
}

/* helpers */
.transparent {
    background: transparent;
}

.card-config{
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    display: block;
}
.bold {
    font-weight: bold;
}

.no-border {
    border: none;
}

.no-shadow {
    box-shadow: none;
}

/*form */
.form-section{
    margin-bottom: 2em;
}
.phone-label {
    background: rgba(201, 201, 201, 1);
    color: rgba(0, 0, 0, 1);
    padding: 10px 30px;
    font-weight: bold;
    font-size: 1.3em;
}

.custom-form-control {
    border: none;
    border-bottom: 1px solid #ddd;
    border-radius: 0;
    color: rgba(54, 196, 206, 1);
    position: relative;
    background: transparent;
    width: 100%;
    outline: none;
    font-size: 16px;
    padding: 0px;
}

.sm-input {
    width: 50px;
    margin-bottom: 5px;
    display: inline;
    background: #C9C9C9;
    border: none;
}

.sm-input::placeholder {
    color: white;
}

.custom-form-control::placeholder {
    color: rgba(54, 196, 206, 1);
}

label.custom-form-label {
    font-size: 12.5px;
    color: #000;
    opacity: .8;
    font-weight: 400;
}

.custom-form-field input {
    font-size: 16px;
    padding: 20px 0px;
    height: 56px;
    border: none;
    border-bottom: solid 1px rgba(0, 0, 0, 0.1);
    background: #fff;
    box-sizing: border-box;
    transition: all .3s linear;
    color: #2c2c2c;
    font-weight: 400;
    -webkit-appearance: none;
}

.custom-form-field input:focus {
    border-bottom: solid 1px rgba(54, 196, 206, 1);
    outline: 0;
    box-shadow: 0 2px 6px -8px rgba(54, 196, 206, 1);
}

.custom-form-field {
    position: relative;
    margin-bottom: 30px;
}

.custom-form-field label {
    position: absolute;
    top: calc(50% - 7px);
    left: 0;
    opacity: 0;
    transition: all .3s ease;
}

.custom-form-field input:not(:placeholder-shown) {
    padding: 28px 0px 12px 0px;
}

.custom-form-field input:not(:placeholder-shown) + label {
    -webkit-transform: translateY(-12px);
    transform: translateY(-12px);
    opacity: .7;
    color: rgba(54, 196, 206, 1);
}

/*header*/
.header {
    padding: 0px 0px 10px;
}
.secondary-header-text{
    font-weight: bold;
    font-size: 1.2rem;
}
.header-text {
    color: #060a34;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 20px 0px;
    border-bottom: 1px solid rgba(54, 196, 206, 1);
    text-align: center;

}

/*place holder*/
.place-holder p {
    color: #060a34;
    font-size: 1em;
    font-weight: normal;
    margin-top: 15px;
}

.place-holder p a {
    color: #e7062d;
    text-decoration:none;
    transition:all .2s ease-in;
}
.place-holder p a:hover{
    color: #a10520;
    text-decoration:none;

}
.place-holder-text p {
    vertical-align: middle;
}

.place-holder-text {
    padding: 25px 50px 50px;
}

.place-holder-heading {
    margin-bottom: 25px;
}

/*service card*/
.service-info {
    max-width: 300px;
    margin: 0px auto 30px;
}

.service-info p {
    clear: both;
}

.service-info .service-card {
    float: none;
    max-width: 100%;
    border-radius: 20px 20px 0px 0px ;
}

.service-card-detail p {
    margin-bottom: 5px;
    color: rgba(0,0,0,0.5);
}

.service-info p a {
    color: red;
}

.service-info .service-card .service-card-text {
    padding: 30px 0px;
}

.service-card {
    max-width: 100%;
    float: left;
    border-radius: 20px;
    box-shadow: 0px 10px 10px rgba(0,0,0,0.1);
    background: white;
    position: relative;
    top:0;
    margin: 40px 0px;
    transition: top .2s ease-in;
}
.service-card:hover {
    top:-10px;
}

.service-card.inactive {
    background: rgba(0,0,0,0.5);
}

.service-card button {
    position: absolute;
    font-size: 1em;
    color: white;
    border-radius: 5px;
    box-shadow: 0px 0px 5px rgba(0,0,0,0.3);
    padding: 5px 20px;
    bottom:0;
    margin-bottom: -20px;
    cursor: pointer;
    left: 50%;
    transform: translate(-50%);
    background: rgba(54, 196, 206, 1);
}

.service-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    margin-bottom: 20px;
}

.service-container .service-card {
    margin-bottom: 50px;
}

.service-card-image {
    border-radius: 20px;
    max-width: 100%;
}

.service-card .service-card-text {
    padding: 20px 0px;
    text-align: center;
    font-size: 1.3em;
}

/*button*/


.btn-custom {
    background: rgba(54, 196, 206, 1);
    color: white;
    border-radius: 4px;
    border: 2px solid rgba(54, 196, 206, 1);
    padding: 10px 30px;
    box-shadow: 0px 0px 5px rgba(0,0,0,0.3);
    transition: color .5s ease,background .5s ease,box-shadow .5s ease;
}

.btn-config{
    background: rgba(54, 196, 206, 1);
    color:#023054;
    border-radius: 0px;
    font-size: 2rem;
    padding:2rem 3rem;
}
.btn-config:hover,.btn-config:focus{
    background: rgb(45, 163, 173);
    color:white;
}
.btn-custom-inverse {
    background: transparent;
    color: white;
    border-radius: 4px;
    border: 2px solid rgba(54, 196, 206, 1);
    padding: 10px 30px;
    box-shadow: 0px 0px 5px rgba(0,0,0,0.3);
}

.btn-custom:hover,
.btn-custom:focus {
    background: rgb(37, 178, 188);

    border: 2px solid rgb(37, 178, 188);
    color: white;
}

.btn-custom-inverse:hover,
.btn-custom-inverse:focus {
    background: transparent;
    border: 2px solid rgb(37, 178, 188);
    color: white;
    outline: none;
}

.btn-search {
    border-top-right-radius: 30px ;
    border-bottom-right-radius: 30px ;
    background: rgb(37, 178, 188) ;
    text-align: center;
}

.btn-search img {
    width: 20px;
}

.custom-input {
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    padding-left: 20px;
    border-left: 1px solid gray  ;
    border-top: 1px solid gray  ;
    border-bottom: 1px solid gray  ;
    border-right: none  ;
}

.form-control.custom-input:focus {
    outline: none;
    border-left: 1px solid rgba(54, 196, 206, 1);
    border-top: 1px solid rgba(54, 196, 206, 1);
    border-bottom: 1px solid rgba(54, 196, 206, 1);
    border-right: none;
    box-shadow: none;
    transition: all .5s ease;
}

.place-holder-text .gray-link a {
    color: rgba(201, 201, 201, 1);
}
.place-holder-text .gray-link a:hover {
    color: rgb(152, 152, 152);
}
.place-holder-text h4 ~ p:first-of-type {
    color: rgb(133, 133, 133);
}

.place-holder-text h4 {
    margin-top: -20px;
}

.profile-select label {

}

.profile-select-group {
    margin-bottom: 5rem;
}

.profile-select-group h5 {
    margin-bottom: 1.3rem;
}

.search-select-group {
    margin-bottom: 60px;
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
}

/* user choice select */
.selections {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 20px;
}

.choice-box {
    width: 150px;
    height: 150px;
    border-radius: 20px;
    background-size: cover;
    position: relative;
    display: inline-block;
    margin: 0px 10px 20px ;
    overflow: hidden;
    box-shadow: 0px 5px 5px rgba(0,0,0,0.1);
}

.choice-box-fade {
    background-color: rgba(0,0,0,0.7);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.choice-box-text {
    text-align: center;
    position: absolute;
    bottom: 0px;
    left: 50%;
    font-size: 1em;
    transform: translateX(-50%);
    color: white;
    width: 100%;
}

.choice-box-icon {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 25px;
    border-radius: 50%;
}

.choice-box .unselected {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 25px;
    height: 25px;
    background: white;
    border-radius: 50%;
}

/*file upload */
.upload-btn-wrapper {
    position: relative;
    overflow: hidden;
    display: inline-block;
    height: 100px;
    box-shadow: 0 0px 3px rgba(0,0,0,0.16),0 0px 3px rgba(0,0,0,0.23);
}

.file-btn:focus,
.file-btn:hover {
    border: 5px solid black ;
}

.upload-btn-wrapper ~ p {
    margin: 0px 0px 1em;
    font-weight: bold;
}

.file-btn {
    border: 2px solid gray;
    color: white;
    font-size: 20px;
    font-weight: bold;
    background: gray;
    width: 100px;
    height: 100px;
    text-align: center;
    margin: 0px auto;
    border-radius: 0px;
}

.upload-btn-wrapper input[type=file] {
    font-size: 100px;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}

.file-btn img {
    width: 30px;
}

.form-check-holder {
    margin-bottom: 10px;
}

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

input[type="number"] {
    -moz-appearance: textfield;
}

.pop-up {
    background: rgba(0,0,0,0.8);
    z-index: 1000;
    position: fixed;
    top: 0;
    left: 0;
    text-align: center;
    height: 100%;
    width: 100%;
}

.pop-up .pop-up-content {
    width: 70%;
    color: white;
    margin: 0px auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.pop-up .pop-up-content a {
    margin-right: 10px;
}

.pop-up-content-header {
    margin-bottom: 40px;
}

/*navigation*/
.custom-nav {
    background-color: transparent;
    padding: 30px 8% 0px ;
}
.white-link{
    color:white;
    font-size: 1.5rem;
}
.nav-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #666666;
    background-size: cover;
    box-shadow: 0px 0px 5px rgba(0,0,0,0.3);
}

/*subcription container*/
.subscription-container {
    padding-top: 30px;
    padding-bottom: 30px;
}

.inactive {
    background: #D8D8D8 !important;
    border-color: #D8D8D8 !important;
}

/* Radios and checkboxes */

/*input[type="radio"]:checked,*/
/*input[type="radio"]:not(:checked) {*/
    /*!*position: absolute;*!*/
    /*!*left: -9999px;*!*/
/*}*/

/*input[type="radio"]:checked + label,*/
/*input[type="radio"]:not(:checked) + label {*/
    /*position: relative;*/
    /*padding-left: 28px;*/
    /*cursor: pointer;*/
    /*line-height: 20px;*/
    /*display: inline-block;*/
    /*color: #666;*/
/*}*/

/*input[type="radio"]:checked + label:before {*/
    /*content: '';*/
    /*position: absolute;*/
    /*left: 0;*/
    /*top: 0;*/
    /*width: 18px;*/
    /*height: 18px;*/
    /*border-radius: 50%;*/
    /*border: 1px solid rgb(37, 178, 188);*/
    /*background: #fff;*/
/*}*/

/*input[type="radio"]:not(:checked) + label:before {*/
    /*content: '';*/
    /*position: absolute;*/
    /*left: 0;*/
    /*top: 0;*/
    /*width: 18px;*/
    /*height: 18px;*/
    /*border-radius: 50%;*/
    /*border: 1px solid #ddd;*/
    /*background: #fff;*/
/*}*/

/*input[type="radio"]:checked + label:after,*/
/*input[type="radio"]:not(:checked) + label:after {*/
    /*content: '';*/
    /*width: 8px;*/
    /*height: 8px;*/
    /*background: rgb(37, 178, 188);*/
    /*position: absolute;*/
    /*border-radius: 50%;*/
    /*top: 5px;*/
    /*left: 5px;*/
    /*-webkit-transition: all 0.2s ease;*/
    /*transition: all 0.2s ease;*/
/*}*/

/*input[type="radio"]:checked + label {*/
    /*color: rgb(37, 178, 188);*/
/*}*/

/*input[type="radio"]:not(:checked) + label:after {*/
    /*opacity: 0;*/
    /*-webkit-transform: scale(0);*/
    /*transform: scale(0);*/
/*}*/

/*input[type="radio"]:checked + label:after {*/
    /*opacity: 1;*/
    /*-webkit-transform: scale(1);*/
    /*transform: scale(1);*/
/*}*/

/* custom check box */

.styled-checkbox input[type='checkbox']{
    display: none;
}

.styled-checkbox label {
    display: block;
    position: relative;
    margin: 10px;
    cursor: pointer;
}

.styled-checkbox label:before {
    color: white;
    content: " ";
    display: block;
    border-radius: 30px;
    position: absolute;
    top: 20px;
    right: 30px;
    width: 25px;
    height: 25px;
    text-align: center;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
    line-height: 28px;
    transition-duration: 0.2s;
    transform: scale(0);
    z-index: 1000;
}

.styled-checkbox label img {
    height: 180px;
    width: 180px;
    filter: brightness(50%);
    transition-duration: 0.2s;
    transform-origin: 50% 50%;
    border-radius: 30px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}

.styled-checkbox label span {
    position: absolute;
    bottom: 20px;
    left:50%;
    transform: translateX(-50%);
    color: white;
    z-index:2000;
    transition: all .2s ease;
    font-size: 1.2rem;
    text-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}


.styled-checkbox input:checked + label {
    border-color: #ddd;
}

.styled-checkbox input + label:after{
    content: '';
    display: block;
    position: absolute;
    top:20px;
    right:20px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: white;
    transform: scale(1);
}
.styled-checkbox input:checked + label:after{
    content: '';
    display: none;
}
.styled-checkbox input:checked + label:before {
    content: url("images/png/selected@2x.png");
    transform: scale(0.3);
}

.styled-checkbox input:checked + label img {
    transform: scale(0.9);
    filter: brightness(30%);
    z-index: -1;
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}
.styled-checkbox input:checked + label span {
    bottom: 15px;
    left:50%;
    transform: translateX(-50%);
    color: white;
    z-index:2000;
}




/*media queries*/
@media (max-width:574.98px) {
    .place-holder-text {
        padding: 5px;
    }

    .service-card {
        margin-bottom: 10px;
    }

    .place-holder-text h4 {
        margin-top: 10px;
    }
}


/*drop down menu*/
.link-dropdown-menu{
    position: absolute;
    right: 0;
    box-shadow: 1px 3px 6px rgba(0,0,0,0.07);
    width: 200px;
    background-color: #f9f9f9;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    z-index: 1000;
    padding: 0px;
}
.has-dropdown{
    position: relative;
    
}
.link-dropdown-menu{
    overflow: hidden;
}
.link-dropdown-menu li{
    list-style: none;
    padding: 10px 20px;

}
.link-dropdown-menu li a{
    color: #7c7c7c;
}
.link-dropdown-menu li:hover {
    background-color: rgba(54, 196, 206, 1);
    color: #f4f4f4;
}
.link-dropdown-menu li:hover a {
    color: #f4f4f4;
}
.link-dropdown-menu li a:hover{
    text-decoration: none;
}
.link-dropdown-menu li:not(:last-child) {
    border-bottom: 1px solid rgba(54, 196, 206, 1);
}
.radio{
    width: initial;
    height: inherit;
    font-size: 12px;
}

.logo-hr {
    margin-top: 20px;
    width: 200px;
    height: auto;
    margin-left: 50px;
}
  