/*
*******************************************
*******************************************

@File: Midland Theme Styles

* This file contains the styling for the actual theme, this
is the file you need to edit to change the look of the
theme.

This files contents are outlined below>>>>>

*******************************************
*******************************************

==== Midland Theme CSS

01 - Default CSS
02 - Preloader CSS
03 - Background CSS
04 - Header CSS
05 - Hero Area CSS
06 - About CSS
07 - Counter CSS
08 - Service CSS
09 - Testimonial CSS
10 - Protfolio CSS
11 - Pricing Table CSS
12 - Team CSS
13 - News Letter CSS
14 - Blog CSS
15 - Contact CSS
16 - Google Map CSS
17 - Scroll Top CSS
18 - Footer CSS
*/
/* Default CSS - 01 */
@import url('https://fonts.googleapis.com/css?family=Montserrat:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i|Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i');
html, body {
    line-height: 25px;
    font-size: 15px;
    font-family: 'Open Sans', sans-serif;
    

}

@media screen and (max-width:600px){
    html, body {

    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    overflow-x: hidden; 
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;        
    font-family: 'Montserrat', sans-serif;
}
a {
    color: #333;
    text-decoration: none;
}
.nav>li>a:focus,
.nav>li>a:hover {
    background-color: transparent;
}
a:hover,
a:focus,
a:active {
    text-decoration: none;
}
img {
    max-width: 100%;
}
input[type="text"],
input[type="email"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="password"],
textarea {
    padding: 10px 15px;
    width: 100%;
}
input[type="submit"] {
    background: #f90 none repeat scroll 0 0;
    border: medium none;
    color: #fff;
    padding: 10px 25px;
    text-transform: uppercase;
    -webkit-transition: .3s;
    transition: .3s;
}
ul {
    margin: 0;
    padding: 0;
}
p {
    margin: 0;

}

.padding {
    padding: 80px 0;
}
/*background: #0db8ca none repeat scroll 0 0;*/
.section-title:after {
    background: #f90 none repeat scroll 0 0;
    bottom: -20px;
    content: "";
    height: 2px;
    left: 50%;
    margin-left: -68px;
    position: absolute;
    width: 135px;
}
.white-title {
    color: #fff;
}
.section-content p {
    padding: 0 105px;
}
.section-content {
    margin: 0 0 50px;
}
/*border: 7px solid #0db8ca;*/
.section-title:before {
    background: #fff none repeat scroll 0 0;
    border: 7px solid #f90;
    bottom: -25px;
    content: "";
    height: 12px;
    left: 50%;
    margin-left: -8px;
    position: absolute;
    width: 12px;
    z-index: 1;
}


/*added preloader*/
.title_align{
    padding: 200px 0;

    border: none;
    text-align: center;
    font-family: Trebuchet MS;

}
.title_align h1{
   margin-bottom: 100px;
   

}

.page-content ul {
    padding-left: 20px; /* Remove default left padding */
}



/* Preloader CSS - 02 */
.spinner {
  width: 40px;
  height: 40px;
  margin: 40px auto;
  /*
   * Spinner positions
   * 1 2 3
   * 4 5 6
   * 7 8 9
   */ }
   .spinner .sk-cube {
    width: 33.33%;
    height: 33.33%;
    background-color: #333;
    float: left;
    -webkit-animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
            animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out; }
  .spinner .sk-cube1 {
    -webkit-animation-delay: 0.2s;
            animation-delay: 0.2s; }
  .spinner .sk-cube2 {
    -webkit-animation-delay: 0.3s;
            animation-delay: 0.3s; }
  .spinner .sk-cube3 {
    -webkit-animation-delay: 0.4s;
            animation-delay: 0.4s; }
  .spinner .sk-cube4 {
    -webkit-animation-delay: 0.1s;
            animation-delay: 0.1s; }
  .spinner .sk-cube5 {
    -webkit-animation-delay: 0.2s;
            animation-delay: 0.2s; }
  .spinner .sk-cube6 {
    -webkit-animation-delay: 0.3s;
            animation-delay: 0.3s; }
  .spinner .sk-cube7 {
    -webkit-animation-delay: 0.0s;
            animation-delay: 0.0s; }
  .spinner .sk-cube8 {
    -webkit-animation-delay: 0.1s;
            animation-delay: 0.1s; }
  .spinner .sk-cube9 {
    -webkit-animation-delay: 0.2s;
            animation-delay: 0.2s; }

@-webkit-keyframes sk-cubeGridScaleDelay {
  0%, 70%, 100% {
    -webkit-transform: scale3D(1, 1, 1);
            transform: scale3D(1, 1, 1); }
  35% {
    -webkit-transform: scale3D(0, 0, 1);
            transform: scale3D(0, 0, 1); } }

@keyframes sk-cubeGridScaleDelay {
  0%, 70%, 100% {
    -webkit-transform: scale3D(1, 1, 1);
            transform: scale3D(1, 1, 1); }
  35% {
    -webkit-transform: scale3D(0, 0, 1);
            transform: scale3D(0, 0, 1); } }





/*--------------------------------------------*/
/*
.spinner {
    width: 40px;
    height: 40px;
    margin: 100px auto;
    background-color: #333;
    border-radius: 100%;
    -webkit-animation: sk-scaleout 1.0s infinite ease-in-out;
    animation: sk-scaleout 1.0s infinite ease-in-out;
}
@-webkit-keyframes sk-scaleout {
    0% {
        -webkit-transform: scale(0)
    }
    100% {
        -webkit-transform: scale(1.0);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
}
@keyframes sk-scaleout {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    100% {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
}
*/
.rimpido-preloader-wrapper {
    background: #ffc42d none repeat scroll 0 0;
    height: 100%;
    position: fixed;
    width: 100%;
    z-index: 999;
}



.rimpido-preloader-wrapper .spinner{
    left: 50%;
    margin: -20px 0 0 -20px;
    position: absolute;
    top: 50%;
}






/* Backgorund CSS - 03 */
/*
.parallax-bg-1 {
    background-image: url(assets/img/8.jpg)
}
*/
.parallax-bg-2 {
    
    background-size: cover;
    background-repeat: no-repeat;
}
/*
.parallax-bg-3 {
    background-image: url(assets/img/testimonial.jpg);
}
*/
.parallax-bg-4 {
    
    background-size: cover;
    background-repeat: no-repeat;
}
/*
.parallax-bg-5 {
    background-image: url(assets/img/newsletter.jpg);
}
*/
.parallax-bg-6 {
    background-image: url(images/river-ds-bg-min.jpg);

}

.parallax-bg-7 {
   
    background-size: cover;

}
.parallax-bg-8 {
    
    background-size: cover;
}
.parallax-bg-9 {
    
    background-size: cover;
}
.parallax-bg-10 {
    
    background-size: cover;
}
/*
.pricing-bg {
    background-image: url(assets/img/pricing-bg.jpg);
}

.parallax-bg-11 {
    background-image: url(assets/img/twitter-bg.jpg);
}
*/
.parallax-bg-style {
    background-position: center center;
    background-size: cover;
    position: relative;
    z-index: 1
}

/*added*/

/*added*/


.parallax-bg-style:after {
    background: #000 none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.5;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
}
/* Header CSS - 04 */

.logo a {
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
}
@media screen and (min-width:601px){
    .logo a {
        font-size: 20px;
        margin-left: -76px;
    }
}

@media screen and (max-width:600px){
    .logo a {
        font-size: 5px;
        margin-left:2%;
    }
}
.is-sticky .logo a {
    color: #333;
    font-size: 17px;
}
.sticky-wrapper {
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}
.is-sticky .header-area {
    background: #fff none repeat scroll 0 0;
    box-shadow: 0 8px 6px -9px #999;
}
@media screen and (max-width:600px){
    .is-sticky .header-area {
    background: rgba(255,255,255,0) none repeat scroll 0 0;
}
}

.is-sticky .mainmenu ul li a {
    color: #000;
}
.is-sticky .header-area {
    padding: 0;
}
/*Top an buttom*/
.is-sticky .logo h1 {
    margin: -10px 0 0;
}

.header-area {
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 2;
}
.lang-wp{
    position: relative;
}
@media screen and (max-width:600px){
    .is-sticky .header-area {
    background: rgba(255,255,255,0) none repeat scroll 0 0;
    }
}

.mainmenu ul li a {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 10px 15px;
    text-transform: uppercase;
}

/*0db8cc*/
.is-sticky .mainmenu ul li a:hover {
    color: #ffc42d;
}
/*0db8ca*/
.mainmenu ul li a:hover {
    color: #ffc42d;
}
.mainmenu ul li {
    position: relative;
}
/*#0db8ca*/
body .mainmenu ul li.active a {
    color: #ffc42d !important;
    background: none !important;
}
.header-area,
.logo a,
.mainmenu ul li a,
.header-area:after,
.logo h1 {
    -webkit-transition: .4s;
    transition: .4s;
}
/* Hero Area CSS - 05 */

.rimpido-hero {
    /*from100vh
    /*height: 70vh;*/
    height:100vh;
}
/*all rimpido-hero2 added*/
.rimpido-hero-error{
    /*height: 100vh; 1-11-19*/
    height: 100vh;
}

.rimpido-hero-error h1{
     color: #fff;
    font-size: 44px;
    font-weight: 800;
    margin: 0 0 25px;
    text-transform: uppercase;
}

.rimpido-hero-error p {
    color: #fff;
    margin: 0 0 25px;
}
/*all rimpido-hero2 added*/

.rimpido-hero-table {
    height: 100%;
    text-align: center;
    width: 100%;
    display: table;
}
.rimpido-hero-table-cell {
    display: table-cell;
    vertical-align: middle;
}
.rimpido-hero h1 {
    color: #fff;
    font-size: 44px;
    font-weight: 800;
    margin: 0 0 25px;
    text-transform: uppercase;
}
/*0db8ca*/
.rimpido-btn.hero-btn {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    border: 2px solid #f90;
    border-radius: 0;
    color: #f90;
    font-weight: 700;
    text-transform: uppercase;
}
.rimpido-hero p {
    color: #fff;
    margin: 0 0 25px;
}
.rimpido-btn {
    background: #f90 none repeat scroll 0 0;
    border-bottom: 2px solid #f90;
    border-radius: 5px;
    color: #fff;
    display: inline-block;
    padding: 10px 30px;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.rimpido-btn.hero-btn:hover {
    background: #f90 none repeat scroll 0 0;
    color: #fff;
}
.rimpido-btn:hover {
    border-radius: 40px;
    color: #fff;
}
/*border: 2px solid #0db8ca;*/
.rimpido-hero-area .owl-nav div {
    border: 2px solid #f90;
    border-radius: 50%;
    color: #fff;
    font-size: 25px;
    height: 40px;
    left: 0;
    line-height: 32px;
    margin-top: -20px;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    position: absolute;
    text-align: center;
    top: 50%;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    visibility: hidden;
    width: 40px;
}
.c-hero-area .owl-nav div.owl-next {
    left: auto;
    right: 0;
}
.rimpido-hero-area:hover .owl-nav div {
    left: 30px;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    visibility: visible;
}
.rimpido-hero-area:hover .owl-nav div.owl-next {
    left: auto;
    right: 30px;
}


/*greetings*/

.xmass-greetings img{
    display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
}

.new-year-greetings img{
     display: block;
  margin-left: auto;
  margin-right: auto;
    margin-top: 20px;
}
.greetings{
    

}
.top-greetings{

}
.controls-area audio{
  margin: 0 auto;
  display: table;
  margin-top: 30px;
}


/*end*/









/* About CSS - 06 */

.about_pos {
text-align: justify;
}


.feature-item:last-child {
    margin-bottom: 0;
}
.feature-item i.fa {
    background: #f6f6f6 none repeat scroll 0 0;
    border-radius: 50%;
    font-size: 20px;
    height: 60px;
    line-height: 58px;
    text-align: center;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    width: 60px;
}
.feature-item {
    margin: 0 0 33px;
}
/*background: #0db8ca none repeat scroll 0 0;*/
.feature-item:hover i.fa {
    background: #ffc42d none repeat scroll 0 0;
    color: #fff;
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
}
.feature-item h4 {
    margin: 0 0 10px;
}
.about-left .owl-dots {
    bottom: 10px;
    left: 0;
    position: absolute;
    text-align: center;
    width: 100%;
}
.about-left .owl-dots div {
    background: #fff none repeat scroll 0 0;
    border-radius: 50%;
    display: inline-block;
    height: 10px;
    margin: 0 5px;
    width: 10px;
}
.about-left .owl-dots div.active {
    background: #ffc42d none repeat scroll 0 0;
}
.about-left {
    padding-right: 15px;
}
/* Counter CSS - 07 */

.count-itme i.fa {
    color: #0db8ca;
    display: block;
    font-size: 40px;
    margin: 0 0 20px;
}
.count-itme span {
    display: block;
    font-size: 50px;
    font-weight: 900;
    margin: 0 0 20px;
}
.count-itme {
    color: #fff;
    font-size: 18px;
}
/* Service CSS - 08 */

.single-service-item {
    background: #faf8f3;
    margin-bottom: 30px;
    padding: 45px 20px;
}
.service-content h3 {
    font-weight: normal;
    margin: 0 0 15px;
}
.service-icon i.fa {
    font-size: 25px;
    margin: 0 0 15px;
}
/*background: #0db8ca none repeat scroll 0 0;*/
.single-service-item:hover {
    background: #F7F2DF none repeat scroll 0 0;
    transition: 0,2s ;
}
.single-service-item:hover .service-icon {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
}
.service-icon {
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.section-title {
    font-weight: 900;
    margin: 0 0 35px;
    position: relative;
    text-transform: uppercase;
}
/* Testimonial CSS - 09 */

.testimonial-img {
    height: 65px;
    margin: 0 auto;
    width: 65px;
}
.testimonial-img img {
    border-radius: 50%;
}
/*background: #0db8ca none repeat scroll 0 0;*/
.testimonial-text {
    background: #ffd454 none repeat scroll 0 0;
    color: #fff;
    margin: 30px 0 0;
    padding: 25px;
    position: relative;
}
/*border-bottom: 16px solid #0db8ca;*/
.testimonial-text:before {
    border-bottom: 16px solid #ffd454;
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    content: "";
    height: 0;
    left: 50%;
    margin-left: -17px;
    position: absolute;
    top: -16px;
    width: 0;
}
.testimonial-text span {
    color: #f1f1f1;
    display: block;
    font-size: 13px;
    font-weight: normal;
    margin: 10px 0 0;
}
.testimonial-text h4 {
    margin: 15px 0 0;
}
 /*background: #0db8ca none repeat scroll 0 0;*/
 /*border: 2px solid #0db8ca;*/
.testimonial-wraper .owl-nav div {
    background: #ffc42d none repeat scroll 0 0;
    border: 2px solid #ffc42d ;
    color: #fff;
    display: inline-block;
    font-size: 20px;
    height: 35px;
    line-height: 27px;
    margin: 20px 5px 0;
    text-align: center;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    width: 35px;
}
.testimonial-wraper .col-md-4 {
    width: 100%;
}

/* Protfolio CSS - 10 */

.protfolio-img {
    position: relative;
}
/*background: #0db8ca none repeat scroll 0 0;*/
.protfolio-btn a {
    background: #ffc42d none repeat scroll 0 0;
    border-radius: 50%;
    color: #fff;
    height: 40px;
    left: 96%;
    line-height: 40px;
    margin-left: -20px;
    margin-top: -20px;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    position: absolute;
    text-align: center;
    top: 93%;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    visibility: hidden;
    width: 40px;
    z-index: 1;
}
.single-protfolio-item:hover .protfolio-img:after {
    opacity: 0.6;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
    visibility: visible;
}
.single-protfolio-item:hover .protfolio-btn a {
    left: 50%;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    top: 50%;
    visibility: visible;
}
.protfolio-text {
    background: #fff none repeat scroll 0 0;
    padding: 15px;
}
.single-protfolio-item {
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    display: block;
    margin-bottom: 30px;
}
.protfolio-img:after {
    background: #000 none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    position: absolute;
    top: 0;
    width: 100%;
    visibility: hidden;
    -webkit-transition: .5s;
    transition: .5s;
}
/*border: 1px solid #0db8ca;*/
.protfolio-menu ul li {
    border: 1px solid #ffc42d;
    cursor: pointer;
    display: inline-block;
    margin: 0 2px;
    padding: 3px 16px;
}
.protfolio-menu {
    margin-bottom: 35px;
}
#protfolio-wrapper .mix {
    display: none
}
/*color: #0db8ca;*/
.protfolio-menu ul li.active {
    color: #ffc42d;
}
/*color: #0db8ca;*/
.protfolio-menu ul li:hover {
    color: #ffc42d;
}
/* Pricing Table CSS - 11 */

.pricing-table-item {
    box-shadow: 0 0 10px #f2f2f2;
    position: relative;
    z-index: 1;
}
.pricing-table-item:after {
    background: #000 none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.5;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
}
.pricing-head h2 {
    border-bottom: 1px solid #222;
    padding: 8px 0;
}
.plan-price {
    border-bottom: 1px solid #222;
    padding: 20px 0;
}
.plan-price h1 {
    font-size: 45px;
    font-weight: 900;
}
.plan-price span {
    font-size: 20px;
}
.pricing-table-item ul {
    list-style: outside none none;
    margin: 0;
    padding: 0;
}
.pricing-table-item li {
    border-bottom: 1px solid #222;
    color: #fff;
    display: block;
    padding: 10px 0;
}
.price_btn {
    padding: 20px;
}
.pricing-head,
.pricing-head h1,
.pricing-head h2 {
    color: #fff;
}
/* Team CSS - 12 */

.team-icon {
    bottom: 0;
    height: 100%;
    left: 0;
    margin-top: -30px;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    position: absolute;
    right: 0 !important;
    text-align: center;
    top: -40px;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    visibility: hidden;
    width: 100%;
    z-index: 1;
}
/*background: #0db8ca none repeat scroll 0 0;*/
/*border: 2px solid #0db8ca;*/
.team-icon a {
    background: #ffc42d none repeat scroll 0 0;
    border: 2px solid #ffc42d;
    color: #fff;
    display: inline-block;
    font-size: 17px;
    height: 35px;
    line-height: 34px;
    margin: 0 0 5px;
    text-align: center;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    width: 35px;
}
.team-icon:hover .team-icon {
    left: 0;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    visibility: visible;
}
.single-team-item:hover .team-icon {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    top: 50%;
    visibility: visible;
}
.team-img {
    position: relative;
}
.team-info span {
    display: block;
    font-size: 12px;
    font-weight: normal;
    margin: 5px 0 0;
}
.team-info {
    margin: 10px 0 0;
}
.team-icon a:hover {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
}
.team-wrap .col-md-3 {
    width: 100%;
}
.team-info {
    bottom: 0;
    left: 0;
    margin-bottom: -60px;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    position: absolute;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    visibility: hidden;
    width: 100%;
    z-index: 1;
}
.single-team-item:hover .team-info {
    bottom: 50%;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    visibility: visible;
}
.team-img:after {
    background: #000 none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    position: absolute;
    top: 0;
    visibility: hidden;
    width: 100%;
}
.single-team-item:hover .team-img:after {
    opacity: 0.5;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
    visibility: visible;
}
.team-info h3 {
    color: #fff;
}
/* Newsletter CSS - 13 */

.newsletter-from input[type="email"] {
    border: 3px solid #0db8ca;
    margin: 0 0 21px;
}
.newsletter-from h2 {
    color: #fff;
    margin: 15px 0;
    text-transform: uppercase;
}
.newsletter-from input[type="submit"]:hover {
    border-radius: 40px;
}
/* Blog CSS - 14 */

.blog-img {
    position: relative;
    padding-top: 50px;

}
.blog-meta {
    bottom: 0;
    left: 0;
    padding: 10px 0;
    position: absolute;
    width: 100%;
    z-index: 1;
}
/*background: #0db8ca none repeat scroll 0 0;*/
.blog-meta:after {
    background: #0db8ca none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.5;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
}
.blog-meta a {
    color: #fff;
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    padding: 0 8px;
}
/*border: 1px solid #0db8ca;*/
.blog-text {
    border: 1px solid #0db8ca;
    padding: 15px;
}
.blog-text h3 {
    margin: 0 0 15px;
}
.blog-text p {
    margin: 0 0 15px;
}
.blog-img img {
    -webkit-transition: all 1s ease 0s;
    transition: all 1s ease 0s;
}
.blog-item:hover .blog-img img {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
}
.blog-img {
    overflow: hidden;
}
.blog-text a:hover {
    color: #0db8ca;
}

.blog_fb_pos{
    position: relative;
    max-width: 100%;
    vertical-align: middle;
    border: 0;

}

.blog_post h2 {
text-align: center;

}

.blog_post p {
text-align: justify;
}



/* Contact CSS - 15 */

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    border: 2px solid #d6d6d6;
    color: #fff;
    margin: 0 0 30px;
}
.contact-form textarea {
    height: 200px;
    resize: none;
}
.contact-area.parallax-bg-style:after {
    opacity: 0.7;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";

}
.contact-single-info {
    margin-bottom: 30px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    padding: 30px 0;
    min-height: 220px;
}
.contact-single-info:after {
    background: #fff none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.7;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
}
/*color: #0db8ca;*/
.contact-single-info i.fa {
    color: #ffcc00;
    font-size: 30px;
    margin: 0 0 10px;
}
/*Google Map CSS - 16*/

.map {
    height: 400px;
}
/*Scroll Top CSS - 17 */

.scroll-up {
    background: #ffc42d none repeat scroll 0 0;
    bottom: 35px;
    color: #fff;
    display: inline-block;
    font-size: 25px;
    height: 40px;
    line-height: 37px;
    position: fixed;
    right: 25px;
    text-align: center;
    width: 40px;
    z-index: 2;
    cursor: pointer;
}
/* Footer CSS - 18 */

.footer-area {
    background: #081228 none repeat scroll 0 0;
    color: #fff;
    padding: 15px 0;
}
.social-profile a {
    border: 2px solid #0db8ca;
    color: #fff;
    display: inline-block;
    height: 30px;
    line-height: 27px;
    margin: 0 3px;
    text-align: center;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    width: 30px;
}
.social-profile a:hover {
    background: #0bd8ca none repeat scroll 0 0;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
}

.rimpido_link{
    color: yellow;
}

/*page not found*/
.page_not_found h1 {
font-size: 48px;
color: #ffbb0f;
background-color: orange;
color: black;

}

.page_not_found a{
color: yellow;
font-size: 20px;

}

.our-team {
    padding: 20px 15px 30px;
    background: #fff;
    border-radius: 15px;
    text-align: center;
 }

 .our-team .pic {
    display: inline-block;
    width: 100%;
    height: 100%;
    background: #fff;
    padding: 10px;
    margin-bottom: 25px;
    transition: all 0.5s ease 0s;
 }

 .our-team:hover .pic {
    background: orange;
    border-radius: 50%;
 }

 .pic img {
    width: 100%;
    height: auto;
    border-radius: 50%;
 }

 .our-team .title {
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: #2e282a;
    text-transform: uppercase;
    margin: 0 0 7px 0;
 }

 .our-team .post {
    display: block;
    font-size: 15px;
    color: orange;
    text-transform: capitalize;
    margin-bottom: 15px;
 }

 .our-team .social {
    padding: 0;
    margin: 0;
    list-style: none;
 }

 .our-team .social li {
    display: inline-block;
    margin-right: 5px;
 }

 .our-team .social li a {
    display: block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    font-size: 15px;
    color: orange;
    border: 1px solid orange;
    transition: all 0.5s ease 0s;
 }

 .our-team:hover .social li a {
    background: orange;
    color: #fff;
 }

 .logo-rep-sticky {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
    /* Adjust the duration and timing function as needed */
 }

 .is-sticky .logo-rep-sticky {
    display: block;
    opacity: 1;
 }

 .is-sticky .logo-rep-def {
    display: none;
 }

 .expert-list .card {
    margin: 13px 0;
	background: #faf8f3;
    padding: 10px 10px 0px 10px;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
 }

 .expert-list .card:hover {
    background: #F7F2DF none repeat scroll 0 0 !important;
    transition: 0,2s ;
}

 /*expert-list .card:hover {
    transform: translateY(-10px);
    box-shadow: rgba(29, 58, 83, 0.15) 0px 10px 30px 0px;
 }*/

 .expert-list h5 {
    font-size: 21px;
    font-weight: bold;
    color: #000;
 }
.expert-list a{
    text-decoration: none !important;
}
 .expert-list p {
    font-size: 15px;
    color: #666;
    margin-bottom: 6px;
 }

 .expert-list img {
    width: 100%;
 }

 .rounded-3 {
    border-radius: 10px;
 }

 .service-content {
    min-height: 170px;
	p {
	 text-align: justify;
	}
 }

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

 /* Custom Styles */
 .navbar {
    background-color: transparent;
    border: none !important;
    margin: 0 !important;
    min-height: auto !important;
    padding: 10px 0;
 }

 .navbar .navbar-nav>li>a {
    color: #fff;
    /* White text */
 }
 .navbar-brand{
    height: auto !important;
    width: 160px;
    display: inline-block;
    padding: 0 !important;
 }
.footer-text{
    background: #474747;
    color:#fff;
    text-align: center;
}
.foot-t-w{
    padding: 10px 0;
}
.contact-form-bot label{
    color: #ffffff !important;
}

.contact-form-bot .wpcf7-text, 
.contact-form-bot .wpcf7-textarea{
    display: block;
    width: 100%;
}

.wpcf7-submit{
    color: #f90;
    border: 0;
    color: #fff;
    border-radius: 6px;
}
.wpcf7-form-control{
    color: #333;
}

#services a{
    color: #333;
    text-decoration: none;
}
.about-area img{
    margin-bottom: 20px;
}

.inner-page{
    font-size: 16px;
}
.hero-banner {
    padding-top: 100px;
    background-size: cover;
    background-position: center;
    height: 300px;
    color: #fff;
    text-align: center;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 720px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}
.expert-entry{
    margin: 80px 0;
}
.e_portrait h3{
    font-weight: bold;
}
.page-content{
    font-size: 16px;
    line-height: 24px;
    padding-top: 50px;
    padding-bottom: 40px;
}
.divider
{
	position: relative;
	margin-top: 90px;
	height: 1px;
    opacity: 0.4;
}
.divider:last-child{
    display: none;
}

.div-transparent:before
{
	content: "";
	position: absolute;
	top: 0;
	left: 5%;
	right: 5%;
	width: 90%;
	height: 1px;
	background-image: linear-gradient(to right, transparent, rgb(48,49,51), transparent);
}

.div-arrow-down:after
{
	content: "";
	position: absolute;
	z-index: 1;
	top: -7px;
	left: calc(50% - 7px);
	width: 14px;
	height: 14px;
	transform: rotate(45deg);
	background-color: white;
	border-bottom: 1px solid rgb(48,49,51);
	border-right: 1px solid rgb(48,49,51);
}

.div-tab-down:after
{
	content: "";
	position: absolute;
	z-index: 1;
	top: 0;
	left: calc(50% - 10px);
	width: 20px;
	height: 14px;
	background-color: white;
	border-bottom: 1px solid rgb(48,49,51);
	border-left: 1px solid rgb(48,49,51);
	border-right: 1px solid rgb(48,49,51);
	border-radius: 0 0 8px 8px;
}

.div-stopper:after
{
	content: "";
	position: absolute;
	z-index: 1;
	top: -6px;
	left: calc(50% - 7px);
	width: 14px;
	height: 12px;
	background-color: white;
	border-left: 1px solid rgb(48,49,51);
	border-right: 1px solid rgb(48,49,51);
}

.div-dot:after
{
	content: "";
	position: absolute;
	z-index: 1;
	top: -9px;
	left: calc(50% - 9px);
	width: 18px;
	height: 18px;
	background-color: goldenrod;
	border: 1px solid rgb(48,49,51);
	border-radius: 50%;
	box-shadow: inset 0 0 0 2px white,
					0 0 0 4px white;
}

.linkedin-icon{
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: top;
    margin-right: 5px;
}

.action-btn {
    outline: 0;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    background: #FF9412;
    min-width: 200px;
    border: 0;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
    box-sizing: border-box;
    padding: 16px 20px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    overflow: hidden;
    cursor: pointer;
  }
  
  .action-btn:hover {
    opacity: .95;
    text-decoration: none;
    transform: scale(1.1);
    color: #fff;
  }
  
  .action-btn .animation {
    border-radius: 100%;
    animation: ripple 0.6s linear infinite;
  }
  
  #contact label{
    display: block; 
  }

  .heat-top{
    background: rgba(0, 0, 0, 0.3);
    padding: 10px 0;
  }
  .is-sticky .heat-top{
    background-color: #f90;
  }
  .heat-top a{
    font-size: 16px;
    color: #fff;
    text-decoration: none;
  }
  .heat-top a:hover{
    text-decoration: none;
    color: #fff;
  }

  .heat-top .gt_switcher a img{
    width: 16px !important;
    height: 16px !important;
  }
  .heat-top .gt_switcher .gt_selected a:after{
    height: 16px !important;
  }
  .heat-top .gtranslate_wrapper{
    position: absolute !important;
    right: 0;
  }

  .wpcf7 form.sent .wpcf7-response-output{
    background: #46b450;
    color: #fff;
    font-weight: bold;
  }

  .contact-single-info{
        min-height: 260px;
    }

    .foot-links{
        text-align: right;
        padding: 10px 0;
    }
    .foot-links a{
        color: #fff;
        padding-left: 20px;
    }
    .foot-links a:hover{
        color: #f90
    }

    .cvhtml table{
        width: 100%;
    
    }
    .cvhtml table tr td{
        vertical-align: text-top;
    }
    .cvhtml table tr td:first-child{
        width: 30%;
    }
    .cv-pic{
        border: 10px solid #fff;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
        border-radius: 10px;
        margin-bottom: 20px;
        max-width: 300px;
    }
    .btn-linkedin, .btn-cv{
        display: inline-block;
        border: 1px solid #0077B7;
        padding: 5px 10px;
        vertical-align: middle;
        border-radius: 6px;

    }
    .btn-linkedin:hover, .btn-cv:hover{
        text-decoration: none;
            }
    .cv-sec .hero-banner{
        height: 400px;
        padding-bottom: 100px;
    }
    .cv-sec .cvhtml{
        position: relative;
    }
    .cv-sec .cvhtml .cv-pic{
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -330px);
        border-radius: 100%;
        z-index: 1;
    }

    .cv-sec .page-content{
        padding-top: 150px;
    }

    .cv-sec .breadcrumb{
        display: inline-block;
    }
    .why-rimpido h5{
        font-size: 18px;
        font-weight: bold;
        color: #f90;
        text-transform: uppercase;
    }
    .alumni-section{
        margin-top: 50px;
    }
    .alumni-section h5{
        font-size: 16px;
        font-weight: bold;
        color: #f90;
    }
    .alumni-section .alumni{
        margin: 40px 0;
    }
    .alumni-section .alumni img{
        border-radius: 20px;
    }
    
.expert-card-height-fix {
	height: 175px;
}

.expert-card-name-fix {
	white-space: nowrap;
	font-size: 15px;
}

  @keyframes ripple {
    0% {
      box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 40px rgba(255, 255, 255, 0.1), 0 0 0 60px rgba(255, 255, 255, 0.1);
    }
  
    100% {
      box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 40px rgba(255, 255, 255, 0.1), 0 0 0 60px rgba(255, 255, 255, 0.1), 0 0 0 80px rgba(255, 255, 255, 0);
    }
  }
 @media only screen and (max-width: 990px) {
    .our-team {
       margin-bottom: 30px;
    }
 }
 @media (max-width: 767px) {
    .is-sticky .header-area {
    background: #fff none repeat scroll 0 0;
    box-shadow: 0 8px 6px -9px #999;
    }
 }
.expert-list a{
  font-weight: 300;
  color: #000 !important;
  text-decoration: underline;
}
.expert-list:a:hover {
  text-decoration: underline;
}

.expert-img {
  width: 100%;
  max-width: 310px;
  height: auto;
  border-radius: 10px; 
  object-fit: cover;   
}

.expert-img-wrapper {
  position: relative;
  width: 100%;
  max-width: 310px;
  padding-top: calc(320 / 310 * 100%); 
  overflow: hidden;
  border-radius: 10px;
}

.expert-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.expert-list a:hover{
	color: #db6e00 !important;
}

/* === Expert Pages Header Layout === */
.expert-header {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  background-color: #faf8f3; 
  padding: 22px 28px;
  border-radius: 12px;
  margin-bottom: 30px;
}

.expert-photo img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.08);
}

.expert-info {
  flex: 1;
  min-width: 260px;
}

.expert-role {
  margin: 0;
  font-size: 16px;
  color: #444;
  font-weight: 500;
}

.expert-name {
  margin: 6px 0 14px 0;
  font-size: 28px;
  font-weight: 700;
  color: #000;
}

.expert-focus {
  margin: 0;
  font-size: 16px;
  color: #222;
  line-height: 1.5;
}

/* Mobile Anpassung */
@media (max-width: 600px) {
  .expert-photo img {
    width: 120px;
    height: 120px;
    margin-bottom: 12px;
  }

  .expert-name {
    font-size: 24px;
  }
}

.read-more {
  display: block;  
}
