/*-------------------
****CSS Indexing****
---------------------

1. Spacing-Classes
2. Section-padding
3. Button-Style
4. Middle-Row-Content
5. Text-Box
6. Title-Box
7. Service-Area
8. Youtube Video Card
9. Feature-Area
10. Price-box
11. Team-Box
12. Post-Carousel-Slider
----------------------------------*/
/*--------------------
1. Spacing-Classes
----------------------*/
[class|=space] {
    display: block;
    width: 100%;
    overflow: hidden
}

.space-5 {
    height: 5px;
}

.space-10 {
    height: 10px;
}

.space-15 {
    height: 15px;
}

.space-20 {
    height: 20px;
}

.space-25 {
    height: 25px;
}

.space-30 {
    height: 30px;
}

.space-35 {
    height: 35px;
}

.space-40 {
    height: 40px;
}

.space-45 {
    height: 45px;
}

.space-50 {
    height: 50px;
}

.space-55 {
    height: 55px;
}

.space-60 {
    height: 60px;
}

.space-65 {
    height: 65px;
}

.space-70 {
    height: 70px;
}

.space-75 {
    height: 75px;
}

.space-80 {
    height: 80px;
}

.space-85 {
    height: 85px;
}

.space-90 {
    height: 90px;
}

.space-95 {
    height: 95px;
}

.space-100 {
    height: 100px;
}

.space-105 {
    height: 105px;
}

.space-110 {
    height: 110px;
}

.space-115 {
    height: 115px;
}

.space-120 {
    height: 120px;
}

/*-------------------
2. Section-padding
--------------------*/
.section-padding {
    padding-top: 150px;
    padding-bottom: 150px;
}

.section-padding-top {
    padding-top: 150px;
}

.gray-bg {
    background-color: #F9FAFC;
}

/*-----------------
3. Button-Style
-------------------*/
.bttn-1 {
    padding: 20px 50px;
    display: inline-block;
    background-color: #ffffff;
    border-radius: 5px;
    text-align: center;
    border: 1px solid #ffffff;
    -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
    -webkit-transition: 0.6s;
    transition: 0.6s;
}

.bttn-1:focus,
.bttn-1:hover {
    color: #ffffff;
    background-color: transparent;
}

.bttn-2 {
    padding: 20px 50px;
    display: inline-block;
    background-color: transparent;
    border-radius: 5px;
    color: #ffffff;
    text-align: center;
    border: 1px solid #ffffff;
    -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
    -webkit-transition: 0.6s;
    transition: 0.6s;
}

.bttn-2:focus,
.bttn-2:hover {
    color: #1a1a1a;
    background-color: #ffffff;
}

.bttn-3 {
    padding: 15px 50px;
    display: inline-block;
    background-color: transparent;
    border-radius: 100px;
    color: #6E45E3;
    text-align: center;
    background-color: #ffffff;
    -webkit-box-shadow: 0 0 15px 0 #D7DBE7;
    box-shadow: 0 0 15px 0 #D7DBE7;
    border: none;
    -webkit-transition: 0.6s;
    transition: 0.6s;
}

.bttn-3:focus,
.bttn-3:hover {
    background-color: #6E45E3;
    color: #ffffff;
}

.bttn-4 {
    padding: 15px 50px;
    display: inline-block;
    background-color: transparent;
    border-radius: 100px;
    color: #ffffff;
    text-align: center;
    background-color: #6E45E2;
    border: 1px solid #6E45E2;
    -webkit-box-shadow: 0 0 15px 0 #D7DBE7;
    box-shadow: 0 0 15px 0 #D7DBE7;
    text-transform: capitalize;
    -webkit-transition: 0.6s;
    transition: 0.6s;
}

.bttn-4:focus,
.bttn-4:hover {
    background-color: #ffffff;
    color: #6E45E2;
}
.bttn-5 {
    padding: 20px 50px;
    display: inline-block;
    background-color: #6E45E2;
    border-radius: 5px;
    color: #ffffff;
    text-align: center;
    border: 1px solid #6E45E2;
    -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
    -webkit-transition: 0.6s;
    transition: 0.6s;
}

.bttn-5:focus,
.bttn-5:hover {
    color: #6E45E2;
    background-color: #ffffff;
    -webkit-box-shadow: 5px 5px 30px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 5px 5px 30px 0 rgba(0, 0, 0, 0.2);
}

.play-btn {
    display: inline-block;
    width: 100px;
    height: 100px;
    border-radius: 100%;
    border: 1px solid #cdcdcd;
    text-align: center;
    line-height: 100px;
    color: #ffffff;
    background-color: #6E45E3;
    -webkit-box-shadow: 0 0 15px 0 #D7DBE7;
    box-shadow: 0 0 15px 0 #D7DBE7;
}

.play-btn:focus,
.play-btn:hover {
    background-color: #ffffff;
    color: #6E45E3;
    -webkit-box-shadow: 0 0 30px 0 #D7DBE7;
    box-shadow: 0 0 30px 0 #D7DBE7;
}

/*-------------------
4. Middle-Row-Content
--------------------*/
.row-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

/*---------------------
5. Text-Box
-----------------------*/

.text-box .title {
    font-size: 60px;
    margin-bottom: 30px;
}

.white-box .title {
    color: #ffffff;
}

.white-box .desc {
    color: #ffffff;
}


/*-----------------------
6. Title-Box
------------------------*/
.title-box {
    text-align: center;
}

.title-box.box-white {
    color: #ffffff;
}

.title-box.left {
    text-align: left;
}

.title-box.box-white .title {
    color: #ffffff;
}

.title-box .top-title {
    text-transform: capitalize;
    font-weight: 600;
    font-size: 16px;
    opacity: 0.9;
}

.title-box.box-white .top-title {
    color: #ffffff;
}

.title-box .top-title:before,
.title-box .top-title:after {
    content: "";
    width: 15px;
    height: 2px;
    display: inline-block;
    background-color: #6E45E3;
    margin: 0 10px;
    position: relative;
    top: -5px;
    border-radius: 2px;
}

.title-box.box-white .top-title:before,
.title-box.box-white .top-title:after {
    background-color: #fafafa;
}

.title-box.left .top-title:after {
    display: none;
}

.title-box .title {
    color: #4F506F;
    font-size: 40px;
    margin-bottom: 30px;
}

/*---------------------------
7. Service-Area
----------------------------*/
.service-box {
    position: relative;
    margin-bottom: 30px;
    padding: 50px 30px;
    border-radius: 6px;
    text-align: center;
    background-color: #ffffff;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.2);
}

.service-box:hover {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
    -webkit-box-shadow: 0 20px 60px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 20px 60px 0 rgba(0, 0, 0, 0.2);
}

.service-box .title {
    color: #4F506F;
    font-size: 20px;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.service-box .title:after {
    content: "";
    position: absolute;
    left: calc(50% - 30px);
    bottom: 0;
    width: 60px;
    height: 1px;
    background-color: #6E45E3;
}


.service-box .box-icon {
    font-size: 50px;
    line-height: 50px;
    margin-bottom: 20px;
    background: -webkit-linear-gradient(#b224ef, #7579ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.service-box .desc {
    margin-bottom: 0;
}

.zoom-image {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
}

/*-------------------------
8. Youtube Video Card
--------------------------*/

.videoWrapper {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    background-color: #000000;
    -webkit-box-shadow: 0 0 15px 0 #D7DBE7;
    box-shadow: 0 0 15px 0 #D7DBE7;
}

.videoWrapper .videoIframe {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    border: 0
}

.videoWrapper .videoPoster {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    cursor: pointer;
    border: 0;
    outline: none;
    background-position: 0 50%;
    background-size: cover;
    overflow: hidden;
    opacity: 1;
    -webkit-transition: opacity 800ms, height 0s;
    transition: opacity 800ms, height 0s;
    -webkit-transition-delay: 0s, 0s;
    transition-delay: 0s, 0s;
    z-index: 1
}

.videoWrapper.videoWrapperActive .videoPoster {
    opacity: 0;
    -webkit-transition-delay: 0s, 800ms;
    transition-delay: 0s, 800ms;
    height: 0
}

/*------------------------
9. Feature-Area
------------------------*/
.feature-box {
    position: relative;
    padding-left: 80px;
    color: #ffffff;
    margin-bottom: 40px;
}

.feature-box .box-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    color: #6E45E3;
    background-color: #ffffff;
    text-align: center;
    line-height: 60px;
    border-radius: 100%;
    -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.feature-box:hover .box-icon {
    background-color: #6E45E3;
    color: #ffffff;
}

.feature-box .title {
    color: #ffffff;
    font-size: 22px;
}

/*------------------------
10. Price-box
-------------------------*/
.price-box {
    text-align: center;
    -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, .1);
    border-radius: 5px;
    padding: 50px 30px;
    background-color: #ffffff;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}


.price-box:hover {
    -webkit-box-shadow: 0 15px 50px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 15px 50px 0 rgba(0, 0, 0, .1);
}

.price-box .title {
    font-size: 18px;
    margin-bottom: 15px;
}

.price-box .icon {
    font-size: 50px;
    margin-bottom: 15px;
}

.price-box .rate {
    font-size: 86px;
    font-weight: 700;
    margin-bottom: 0;
    background-image: url('../images/post-18.jpg');
    background-position: center center;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 70px;
    -webkit-transform: translateX(-7px);
    transform: translateX(-7px)
}

.price-box .rate span {
    font-size: 18px;
    margin-right: 5px;
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
}



.price-box .content {
    padding-top: 25px;
    padding-bottom: 40px;
}

.price-box .content ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/*-------------------------
11. Team-Box
--------------------------*/

.team-slider {
    margin-top: -15px;
}

.team-slider .team-box {
    margin: 15px;
}

.team-box {
    border-radius: 5px;
    margin-bottom: 30px;
    text-align: center;
    overflow: hidden;
}

.team-box .team-photo {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.team-box .team-content {
    padding: 20px 20px 0 20px;
}

.team-box .team-content .title {
    font-size: 18px;
}

.team-box .team-content .position {
    margin-bottom: 0;
    color: #757575;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 0;
}

/*-----------------------
12. Post-Carousel-Slider
------------------------*/
.post-carousel {
    margin-top: -15px;
}

.post-carousel .post-single {
    margin: 15px;
    background-color: #ffffff;
}