/* base styles
================================================== */
* {
    margin: 0;
    padding: 0;
    outline: 0;
}

body,
html {
    height: 100%;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: .6px;
}

:focus {
    outline: 0
}

img {
    max-width: 100%;
    height: auto;
    display: inline-block;
    vertical-align: middle;
    border: none;
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px white inset;
}

.form-group {
    margin: 0 0 20px 0;
}

.form-control-icon {
    position: relative;
}

.form-control-icon i {
    position: absolute;
    top: 14px;
    left: 17px;
    color: #8bc75d;
    font-size: 17px;
}

.form-control:disabled, 
.form-control[readonly] {
    color: #333;
}

.form-control {
    width: 100%;
    letter-spacing: 1px;
    font-size: 13px;
    height: 46px;
    padding: 0 20px 0 40px;
    border-radius: 30px;
    border: 2px solid #ddd;
    background-color: transparent;
    color: #333;
}

.form-control:hover {
    border-color: #d0d0d0;
}

.form-control:focus {
    background-color: transparent;
    color: #333;
    box-shadow: none;
    border-color: #8bc75d !important;
}

.form-control::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #d2d2d2;
    opacity: 1; /* Firefox */
}

.form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #d2d2d2;
}

.form-control::-ms-input-placeholder { /* Microsoft Edge */
    color: #d2d2d2;
}

/* breadcrumb */
.breadcrumb {
    background-color: transparent;
    border-bottom: 1px solid #e1e7ec;
    margin: 10px 0 10px 0;
    padding: 5px 0;
    border-radius: 0;
}

.breadcrumb li a {
    color: #666;
}

.breadcrumb li a:hover {
    color: #8bc75d;
}

label {
    font-weight: normal;
    margin: 0 0 5px 0;
}

.space {padding: 60px 0;}

/* btn
================================================== */
.btn {
    border-radius: 30px;
    padding: 0 30px;
    font-size: 12px;
    height: 40px;
    line-height: 38px;
    position: relative;
    z-index: 2;
    overflow: hidden;

    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}

.btn:focus {
    outline: none;
    box-shadow: none !important;
}

.btn i {
    margin-right: 0px;
    font-size: 24px;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    top: -1px;
}

.btn-primary:before {
    content: "";
    background-color: #82b957;
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 100%;
    height: 100%;
    z-index: -1;
    -webkit-transform: translate(-150%, -50%) scale(1);
    -moz-transform: translate(-150%, -50%) scale(1);
    -o-transform: translate(-150%, -50%) scale(1);
    -ms-transform: translate(-150%, -50%) scale(1);
    transform: translate(-150%, -50%) scale(1);
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.btn-primary:hover:before {
    -webkit-transform: translate(-50%, -50%) scale(1);
    -moz-transform: translate(-50%, -50%) scale(1);
    -o-transform: translate(-50%, -50%) scale(1);
    -ms-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
}

.btn-primary.disabled,
.btn-primary:disabled,
.btn-primary {
    background-color: #8bc75d;
    border-color: #8bc75d;
    font-size: 14px;
    color: #fff;
    outline: none;
    box-shadow: none !important;
}

.btn-primary:hover {
    background-color: #8bc75d;
    border-color: #8bc75d;
}

.btn-primary:visited,
.btn-primary:focus,
.btn-primary:active {
    background-color: #8bc75d !important;
    border-color: #8bc75d !important;
}

.btn-primary-outline {
    background-color: transparent;
    border: 2px solid #8bc75d;
    color: #333;
}

.btn-primary-outline:hover {
    background-color: #8bc75d;
    color: #fff;
}

.btn-secondary-outline:before {
    content: "";
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 100%;
    height: 100%;
    z-index: -1;
    -webkit-transform: translate(-50%, -150%) scale(1);
    -moz-transform: translate(-50%, -150%) scale(1);
    -o-transform: translate(-50%, -150%) scale(1);
    -ms-transform: translate(-50%, -150%) scale(1);
    transform: translate(-50%, -150%) scale(1);
    -webkit-transition: all .1s ease-in-out;
    -moz-transition: all .1s ease-in-out;
    -o-transition: all .1s ease-in-out;
    -ms-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out;
}

.btn-secondary-outline:hover:before {
    -webkit-transform: translate(-50%, -50%) scale(1);
    -moz-transform: translate(-50%, -50%) scale(1);
    -o-transform: translate(-50%, -50%) scale(1);
    -ms-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
}

.btn-secondary-outline {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn-secondary {
    background-color: #fff;
    border-color: #fff;
    font-size: 14px;
    color: #333;
}

.btn-secondary:hover {
    background-color: #fff;
    border-color: #fff;
    color: #17a2b8;
}

.btn-secondary:focus,
.btn-secondary:active {
    background-color: #fff !important;
    border-color: #fff !important;
    box-shadow: none !important;
}

.btn-dark {
    color: #d2d2d2;
    font-size: 14px;
    background-color: #333;
    outline: none;
}

.btn-dark:hover {
    color: #fff;
    background-color: #333;
}

/* typography
================================================== */
h1, h2, h3, h4, h5, h6 {font-family: 'PT Sans'; color: #212529;}

h1 {font-size: 26px; line-height: 32px;}
h2 {font-size: 22px; line-height: 28px;}
h3 {font-size: 18px; line-height: 28px;}
h4 {font-size: 18px; line-height: 28px;}
h5 {font-size: 16px; line-height: 24px;}
h6 {font-size: 14px; line-height: 20px;}

strong {font-weight: 700;}

a {
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}

a:hover {
    color: #8bc75d;
    outline: 0;
    text-decoration: none;
}

p {
    margin-bottom: 20px;
    color: #444444;
    font-size:110%;
}

.heading {
    margin: 0 0 15px 0;
    font-size: 34px;
    line-height: 38px;
    letter-spacing: 1px;
}


/* header */
header {
    padding: 15px 0;
    position: absolute;
    top: 0;
    width: 100%;
}

header .header-right {
    text-align: right;
}

header .logo {
    display: inline-block;
}

header .logo img {
    height: 65px;
}

header .header-phone {
    display: inline-block;
    color: #fff;
    margin-right: 25px;
    margin-top: 9px;
}

header .header-phone .phone-icon {
    display: inline-block;
    position: relative;
}

header .header-phone .phone-icon i {
    font-size: 33px;
    color: #fff
}

header .header-phone .phone-label {
    display: inline-block;
    text-align: left;
    text-transform: uppercase;
    line-height: 16px;
    font-size: 10px;
    padding: 0 0 0 8px;
}

header .header-phone span {
    display: block;
    font-weight: bold;
    font-size: 20px;
    color:#fff;
}

header .btn {
    float: right;
    margin-top: 4px;
    margin-left: 30px;
}


.intro {    
    background: url(../imgs/intro-bgr-11.png) top right no-repeat;
    background-size: cover;
    padding: 100px 0 0 0;
    padding: 85px 0 0 0;
}

.intro h1 {
    padding: 140px 0 0 0;
    margin: 0 0 20px 0;
    font-size: 42px;
    line-height: 42px;
}

.intro h1 span {
    font-size: 60px;
    color: #8bc75d;
    font-weight: bold;
    margin-left: 3px;
    position: relative;
    top: 10px;
}

.intro h1 span sup {
    font-size: 32px;
    margin-left: 7px;
}

.intro h2 {
    margin: 0 0 35px 0;
    font-size: 14px;
    line-height: 20px;
}

.intro .order {
    width: 300px;
}

.intro .order .btn {
    /*border-radius: 0 0 30px 30px;*/
    width: 100%;
}

.intro .order .br-tl-tr {
    border-radius: 30px 30px 0 0;
}

.intro .order .border-radius-0 {
    border-radius: 0;
}

.intro .order .form-group {
    margin: 0 0 10px 0;
}

.intro img {
    height: 550px;
    margin: 0 auto;
    display: block;
}


.mission {
    background-color: #f5f5f5;
    padding-top: 90px;
}

.mission p {
    position: relative;
    text-align: center;
    font-size: 18px;
    letter-spacing: 1px;
    color: #333;
}

.mission p:before {
    content: "";
    height: 4px;
    width: 60px;
    position: absolute;
    top: -25px;
    left: 50%;
    margin-left: -30px;
    background-color: #8bc75d;
}


.about {
    position: relative;
    background: url('../imgs/about-bgr5.jpg') center right no-repeat;
    background-size: cover;
}

.about .about-text ul {
    margin: 0 0 20px 0;
    padding: 0 0 0 20px;
}

.about .about-text ul li {
    list-style-type: circle;
    list-style-position: inside;
    color: #444444;
    font-size:110%;
}

.about .about-text {
    background-color: #fff;
    border-top: 5px solid #8bc75d;
    padding: 30px;
}

.about .container {
    position: relative;
    z-index: 6;
}


.bust {
    padding-bottom: 40px;
    background-color: #e4f1fd;
    border-top: 10px solid #fff;
}

.bust-implants img {
    max-height: 430px;
}

.bust h3 {
    font-size: 34px;
    line-height: 38px;
    margin: 0 0 20px 0;
    padding-right: 8px;
    font-weight: lighter;
    color: #17a2b8;
}

.bust-steps {
    background-color: #17a2b8;
    padding: 20px 30px;
    border-radius: 10px;
}

.bust-steps h3 {
    text-align: center;
    color: #fff;
    font-size: 20px;
    line-height: 26px;
    margin: 0 0 25px 0;
    padding: 0;
    font-weight: normal;
}

.bust-steps .step {
    border-right: 1px dashed #68cede;
}

.bust-steps .step .step-img {
    padding: 10px;
    border-radius: 100%;
    margin: 5px 30px 12px 30px;
}

.bust-steps .step .step-img img {
    border-radius: 100%;
    border: 5px solid #fff;
}

.bust-steps .step h4 {
    color: #fff;
    font-size: 14px;
    line-height: 16px;
    text-align: center;
    margin: 0 0 5px 0;
    padding: 0 25px;
}


.why {
    border-top: 10px solid #fff;
    background: url('../imgs/why-bgr.jpg') top center no-repeat;
    background-size: cover;
}

.why .heading {
    margin-bottom: 35px;
}

.why .why-text {
    background-color: #fff;
    border-top: 5px solid #8bc75d;
    padding: 30px;
}



.home-team .heading {
    margin-bottom: 35px;
}

.home-team .team-item {
    text-align: center;
    margin: 0 0 50px 0;
}

.home-team .team-item .item-title {
    font-size: 16px;
    line-height: 26px;
    font-weight: bold;
}

.home-team .team-item .item-subtitle {
    color: #7d7d7d;
}

.home-team .team-item a {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0 0 20px 0;
}

.home-team .team-item a span {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -20px;
    margin-left: -75px;
    z-index: 5;
    height: 40px;
    line-height: 40px;
    width: 150px;
    text-align: center;
    color: #fff;
    border: 2px solid #fff;
    opacity: 0;

    -webkit-transition: opacity 1s ease-in-out;
    -moz-transition: opacity 1s ease-in-out;
    -ms-transition: opacity 1s ease-in-out;
    -o-transition: opacity 1s ease-in-out;
    transition: opacity 1s ease-in-out;
}

.home-team .team-item a span:hover {
    background-color: #fff;
    color: #222;
}

.home-team .team-item a:hover span {
    opacity: 1;
}

.home-team .team-item a:hover:before {
    bottom: 0;
}

.home-team .team-item a:before {
    content: "";
    position: absolute;
    bottom: -100%;
    left: 0;
    background-color: rgba(0, 0, 0, 0.3);
    width: 100%;
    height: 100%;

    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}

.home-team .team-info {
    font-size: 14px;
    letter-spacing: 1px;
    background-color: #17a2b8;
    padding: 31px 30px;
    margin-right: 30px;
    color: #fff;
}


.testimonials {
    position: relative;
}

.testimonials .heading {
    text-align: center;
}

.testimonials .owl-item {
    padding: 50px 0;
}

.testimonials .owl-item.center {
    opacity: 1;
}

.testimonials .owl-item.center .testimonials-text-container {
    box-shadow: 3px 3px 6px #ececec;
}

.testimonials .item img {
    height: 15px;
    margin: 20px 0 0 10px;
    width: inherit;
}

.testimonials .item .testimonials-text-container {
    display: table;
    margin: 0;
    font-style: italic;
    color: #333;
    padding: 10px 15px;
    min-height: 130px;
}

.testimonials .item .testimonials-text-container p {
    display: table-cell;
    vertical-align: middle;
}

.testimonials .author {
    font-size: 16px;
    margin: 35px 0 0 0;
    position: relative;
    font-weight: bold;
}

.testimonials .author:after {
    content: "";
    height: 40px;
    width: 2px;
    position: absolute;
    top: -51px;
    left: 50px;
    background-color: #ddd;
}

.testimonials .owl-item.center .author:after {
    background-color: #17a2b8;
}

.testimonials .owl-nav button {
    outline: none;
    margin: 0 !important;
    position: absolute;
    top: 45%;
    font-size: 70px !important;
}

.testimonials .owl-nav button span {
    line-height: 40px;
    display: block;
    color: #fff;
}

.testimonials .owl-nav .owl-prev {
    left: -45px;
}

.testimonials .owl-nav .owl-next {
    right: -45px;
}

.owl-theme .owl-nav [class*=owl-]:hover {
    background: none;
    color: inherit;
}


.faq {
    background-color: #F7F7F5;
}

.faq .heading {
    margin-bottom: 35px;
    text-align: center;
}

.faq .card {
    border: 0;
    background-color: transparent;
    margin: 0 0 10px 0;
}

.faq .card .card-header {
    background-color: transparent;
    border-bottom: 0;
    padding: 0;
    border-radius: 0;
}

.faq .card .card-header button {
    display: block;
    width: 100%;
    background-color: #fff;
    border: 0;
    outline: none;
    text-align: left;
    padding: 12px 20px;
    cursor: pointer;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);

    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}

.faq .card .card-header button:hover {
    color: #17a2b8;
}

.faq .card .card-body {
    padding: 15px 20px;
    line-height: 22px;
    border-left: 5px solid #17a2b8;
    margin-top: 10px;
    margin-left: 20px;
}


.action-line {
    text-align: center;
    background-color: #8bc75d;
}

.action-line .heading {
    margin: 0 0 20px 0;
    color: #fff;
}


footer {
    padding: 35px 0 28px;
}

footer .copyright {
    margin: 10px 0 0 0;
    text-align: center;
}

footer .copyright a {
    color: #8bc75d;
}

footer .copyright a:hover {
    text-decoration: underline;
}

footer .footer-nav {
    text-align: center;
}

footer .footer-nav li {
    display: inline-block;
    margin: 0 10px;
}

footer .footer-nav li a {
    display: block;
    color: #333;
}

footer .footer-nav li a:hover {
    color: #8bc75d;
}

footer .footer-social {
    margin: 10px 0 0 0;
}

footer .footer-social ul {
    text-align: center;
    margin: 0 0 15px 0;
}

footer .footer-social ul li {
    display: inline-block;
    margin: 0 10px;
}

footer .footer-social ul li a {
    display: block;
    font-size: 20px;
    color: #212529;
}

footer .footer-social ul li a:hover {
    color: #8bc75d;
}

footer .footer-logo {    
    display: table;
    margin: 6px auto 0px;
}

footer .footer-logo img {
    height: 45px;
}

footer .cookie-consent {
    padding: 1rem 2rem 1rem 4rem;
    border-radius: 0;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    opacity: 0;
    color:#fff;
    transform: translateY(100%);
    background: #8bc75d;
    transition: all .5s ease-out
}

footer .cookie-consent a{
    color:#fff;
    text-decoration:underline;
}

footer .cookie-consent.show {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1s
}

footer .cookie-consent button {
    box-shadow: none;
    outline: none
}
footer .cookie-consent button:hover {
    color:#8bc75d;
}
#contactForm .modal-header h5 {
    font-size: 18px;
    line-height: 22px;
    font-weight: bold;
}

#contactForm label {
    margin-bottom: 4px;
    display: inline-block;
}

#contactForm .form-control {
    border-radius: 0;
    border-width: 1px;
    padding: 10px 15px;
}

#contactForm .modal-content {
    border-radius: 3px;
}