:root{
    --primary-color:  #33cbfd; /*0BE6AF*/

}

/********************************
 ******Hero area*********
*********************************/


.home_area_wrap {
    position: relative;
}

.single-slide {
    height: 900px;
    background-position: center;
    -webkit-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-content-wrap {
    position: absolute;
    top: calc(100% - 70%);
    width: 100%;
    z-index: 999;
}


.home_area_wrap .owl-dots{
    position: absolute;
    bottom: 40px;
    left: calc(100% - 50%);

}
.home_area_wrap .owl-dot:first-child {
    margin-left: 0;
}
.home_area_wrap .owl-dot.active {
    background: var(--color-white);
}
.home_area_wrap .owl-dot {
    background: var(--primary-color);
    height: 10px;
    width: 10px;
    display: inline-block;
    margin-left: 10px;
    border-radius: 50%;
}

/*Welcome text box*/
.welcome-text-box ul li {
    list-style: none;
    position: relative;
    border-top: 1px dashed #5d4459;
    padding: 10px 0;
    line-height: 1.8;
}

.welcome-text-box ul li:last-child {
    border-bottom: 1px dashed #5d4459;
}

.welcome-text-box ul li a {
    color: #5d4459;
}

.welcome-text-box ul {
}

.welcome-text-box ul li:before {
    content: '\f05d';
    font-family: fontawesome;
    left: -25px;
    top: calc(100% - 90%);
    position: absolute;
    font-size: 22px;
    color: #694372;
}

.welcome-text-box h2 {
    color: #5d4459;
}


/********************************
  ***** Contact Form 7 *********
*********************************/

.bersurgery-form {
    margin: 0;
    padding: 0;
    list-style: none;
}
.bersurgery-form .heading-li {
    text-align: center;
    color: #fff;
    margin-bottom: 10px;
}

.bersurgery-form-wrap {
    /*background: var(--primary-color);*/
    background-color: rgba(13,77,147,.90) !important;
    padding: 20px 40px;
    border-radius: 5px;
}

.bersurgery-form .heading-li .from-title {
    font-weight: 600;
    font-size: 26px;
}

.bersurgery-form .form-list {
    margin-bottom: 15px;
    color: #fff;
}

.bersurgery-form .form-list input {
    line-height: 24px;
    background: #fff;
}

.bersurgery-form .form-list select {
    line-height: 40px;
    height: 40px;
    margin-left: 10px;
}

.bersurgery-form .form-list input[type=submit] {
    border: 1px solid #ddd;
    background: var(--color-white);
    border-radius: 5px;
    line-height: 34px;
    font-size: 15px;
    padding: 0 40px;
}



/********************************
 ***** Service Box Area*********
*********************************/


.service-box {
    margin-bottom: 30px;
}
.single-service {
    text-align: center;
    background: var(--primary-color);
    border-radius: 50%;
    transition: .4s;
    border: 1px solid var(--primary-color);
    height: 330px;
    width: 330px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
}

.single-service a {
    color: var(--color-white);
    display: inline-block;
}

.single-service img {
    width: 80px;
    line-height: 80px;
}

.single-service i {
    line-height: 80px;
    font-size: 65px;
}

.single-service h2 {
    margin-top: 10px;
    font-size: 28px;
}

.single-service span {
    /*background: #cf6aab;*/
    background: #0046bf;
    display: inline-block;
    padding: 0 20px;
    border-radius: 5px;
}

.single-service p {
    margin-bottom: 10px;
}

.single-service:hover {
    background: #ae4e940f;
}

.single-service:hover a {
    color: var(--primary-color);
}

.single-service:hover span {
    color: var(--color-white);
}



/*service box slide*/
.service-slide-wrapper {
    padding: 0 100px;
    overflow: hidden;
}
.single-service-slide-img {
    position: relative;
}
.single-service-slide-img img {
    background-size: cover;
    height: auto;
    width: 80% !important;
    border-radius: 50%;
    background-position: center;
    border: 15px solid #ddd;

}

.single-service-slide {
    position: relative;
}

.single-service-slide-content {
    background-image: linear-gradient(to right, #cac9c9, #f3f2f2, #dedddd);
    text-align: center;
    height: 130px;
    width: 130px;
    line-height: 130px;
    border-radius: 50%;
    position: absolute;
    bottom: 0;
    right: 25px;
    z-index: 9;

}

.single-service-slide-content a {
    display: inline-block;
    color: #233f8f;
    font-weight: 700;
    text-transform: uppercase;
}




.service-box-slide .owl-prev,.service-box-slide .owl-next {
    font-size: 50px;
    color: #fff;
    opacity: .6;
    position: absolute;
    z-index: 9;
    top: 50%;
    transform: translateY(-50%);
    left: -60px;
}

.service-box-slide .owl-next {
    left: auto;
    right: -60px;
}


@media only screen and (max-width: 600px) {
    .single-service-slide-content {
        position: inherit;
        border-radius: 0;
        height: auto;
        width: 100%;
        line-height: normal;
        padding: 10px;
        text-align: center;
        display: block;
        background: #ddd;
        right: 0;
    }

    .single-service-slide-img img {
        width: 100% !important;
        margin-bottom: 10px;
    }

    .service-slide-wrapper {
        padding: 0 60px;
    }
}