/*default style */
img {
    max-width: 100%;
    height: auto;
}

.rb-text-left {
    text-align: left;
}

.rb-text-right {
    text-align: right;
}

.rb-text-center {
    text-align: center;
}

.rb-container {
    width: calc(100% + 20px);
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    background: #fff;
    box-sizing: border-box;
    margin-left: -20px;
    overflow-x: hidden;
}

.rb-row {
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;   
    margin-right: -15px;
    margin-left: -15px;
} 

.rb-small-row {
    max-width: 1100px;
    margin: auto;
}

.rb-align-items-center {
    align-items: center;
}

.rb-col-6,
.rb-col-3 {
    position: relative;
    width: 100%;
}

.rb-inner-padding {
    padding: 15px;
}

.rb-py-6 {
    padding-top: 60px;
    padding-bottom: 60px;
}
.rb-pl-6,
.rb-px-6 {
    padding-left: 60px;
}

.rb-px-6 {   
    padding-right: 60px;
}

@media screen and (max-width: 767px) {
    .rb-py-6 {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .rb-pl-6,
    .rb-px-6 {
        padding-left: 30px;
        padding-right: 30px;
    }
    
    .order-1 {
        order: 1;
    }
    .order-2 {
        order: 2;
    }
}

@media (min-width: 560px) {
    .rb-col-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .rb-col-3 {
        -ms-flex: 0 0 33.33334%;
        flex: 0 0 33.33334%;
        max-width: 33.33334%;
    }
}

/* intro section */

.rb-image-logo {
    margin-bottom: 25px;
}

.rb-image-logo img {
    max-width: 50px;
}

.rb-heading-label {
    color: #1d409e;
    font-family: "Poppins";
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 8px;
    display: block;
}

.rb-heading {
    font-size: 38px;
    font-family: "Poppins";
    color: #121c36;
    font-weight: bold;
    margin: 0;
    line-height: 1.6;
    letter-spacing: 1px;
  }

.rb-heading.rb-heading-small {
    font-size: 31px;
}
  
.rb-description {    
    font-size: 16px;
    font-family: "Lato";
    color: #8b8b8b;
    line-height: 1.941;
    text-align: left;
    margin: 30px 0 50px;
    font-weight: 300;
}


.rb-btn-wrap {
    padding: 12px 0 52px;
    position: relative;
}

.rb-btn-wrap > a {
    border-radius: 3px;
    background-color: rgb(55, 97, 207);
    z-index: 26;
    color: #fff;
    text-decoration: none;
    padding: 15px 20px 17px 20px;
    vertical-align: middle;
    position: relative;
    transition: all .3s;
    font-size: 15px;
    font-family: "Lato";
}

.rb-btn-wrap > a span {
    margin-left: 6px;
    font-size: 16px;
}

.rb-btn-wrap.with-icon > a {
    padding-right: 50px;
}



.rb-btn-wrap.with-icon > a:after {
    position: absolute;
    background-size: 20px;
    height: 9px;
    width: 20px;
    background-repeat: no-repeat;
    top: 50%;
    transform: translate(0, -50%);
    margin-left: 14px;
    content: '';

}

  
.rb-btn-wrap.with-icon > a:hover {
    background-color: rgb(20, 74, 214);
}

.rb-btn-wrap.with-icon > .rb-icon-arrow:after {
    background-image: url(./img/arrow.png);
    
}

.rb-btn-wrap.with-icon > .rb-icon-fav:after {
    background-image: url(./img/fav.png);
    background-size: 11px;
    height: 11px;
    
}

.rb-btn-wrap.with-icon > .rb-icon-dnl:after {
    background-image: url(./img/dnl.png);
    background-size: 16px;
    height: 13px;
    
}

.rb-btn-wrap.with-icon > .rb-icon-dnl.marketplace:after{
    background-image: url(./img/arrow.png);
    top:  56%;
}

/* video-section */
.rb-video-box {
    padding-left: 70px;
    position: relative;
}

.rb-girl-img {
    position: absolute;
    top: 50%;
    left: calc(50% + 35px);
    transform: translate(-50%, -50%);
    max-width: 550px;
    width: 100%;
}

.rb-dots-img {
    position: absolute;
    right: 15px;
    bottom: 15px;
}

.rb-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 999;
    border-radius: 50%;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 0px 9px rgba(255, 255, 255, 0.21);
    height: 70px;
    width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(0, -50%);
    transition: all .3s;
    
}
.rb-play-btn:hover {
    background: rgb(8, 41, 118);
}


.rb-play-btn img {
    max-width: 20px;
}

.rb-quick-play {
    position: absolute;
    left: calc(50% + 35px);
    top: 80%;
    transform: translate(-50%);
    z-index: 99;
    color: #fff;
    text-decoration: underline;
    font-size: 14px;
}


@media screen and (max-width: 767px) { 
    .rb-video-box {
        padding-left: 0;
        margin-top: 25px;
    }

    .rb-girl-img {        
        left: 0;
        transform: translate(0, -50%);       
    }   
    
    .rb-dots-img {
        display: none;
    }

    .rb-play-btn {
        transform: translate(-50%, -50%);
    }

    .rb-quick-play {
        left: calc(50% + 0px);
        top: 85%;       
    }

}
  
/* available blocks */
.rb-icon-box-section {
    padding: 60px;
    position: relative;
    background-image: -moz-linear-gradient( 90deg, rgb(193,207,247) 0%, rgb(255,255,255) 100%);
    background-image: -webkit-linear-gradient( 90deg, rgb(193,207,247) 0%, rgb(255,255,255) 100%);
    background-image: -ms-linear-gradient( 90deg, rgb(193,207,247) 0%, rgb(255,255,255) 100%);
    margin: 0 -15px 165px;
}



.rb-available-blocks-head {
    max-width: 390px;
    margin: auto;
    padding-bottom: 60px;
}

.rb-available-blocks-head p {
    margin: 0;
    font-size: 14px;
    font-style: italic;
    margin-top: 15px;
    color: #8b8b8b;
    font-family: "Lato";
    font-weight: 300;
}

.rb-available-icon-box-wrap {
    border-radius: 10px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 32px 0px rgba(0, 0, 0, 0.05);   
    padding: 40px 25px;
    position: relative;
    z-index: 99;
    transition: all .3s;
    overflow: hidden;
}

.rb-available-icon-box-wrap > * {
    position: relative;
    z-index: 99;
}

.rb-available-icon-box-wrap:after {
    content: "";
    background: transparent;
    position: absolute;
    height: 0;
    width: 0;
    left: 0;
    top: 0;
    opacity: 0;
    bottom: 0;
    transition: all .3s;
}


.rb-available-icon-box-wrap:hover:after {
    background: #c2c2c2;
    height: 100%;
    width: 100%;
    left: 0;
    z-index: 9;
    top: 0;
    opacity: 0.1;
}

.rb-available-icon-box-wrap h2 {
    font-size: 18px;
    font-family: "Lato";
    color: rgb(8, 34, 105);
    font-weight: bold;
    line-height: 2.619;  
    margin: 0;  
    text-transform: capitalize;
}
  

.rb-available-icon-box-wrap .rb-icon-description {
    text-align: center;
    margin: 15px 0 25px;
}
 
.rb-available-icon-box-wrap a {
    font-size: 14px;
    font-family: "Lato";
    color: rgb(29, 64, 158);
    text-decoration: underline;
    text-align: center;    
}

.rb-available-icon-box-wrap .icon-image {
    margin-bottom: 20px;
}

.rb-icon-image img {
    max-width: 65px;
}


.rb-polygon-img {
    position: absolute;
    left: 0;
}

.rb-polygon-img-1 {
    z-index: 9;
    top: -40px;
}

.rb-polygon-img-2 {
    top: 0;
}

.rb-polygon-img-1  img {
    height: 400px;
}

.rb-polygon-img-2  img {
    height: 375px;
}

.rb-first-svg {
    position: absolute;
    left: 0;
    width: 100%;
    top: 100%;
}

.rb-first-svg svg {    
    fill: rgb(193,207,247);
}

@media screen and (max-width: 767px) { 
    .rb-polygon-img {
        display: none;
    }
    .rb-icon-box-section {
        padding: 30px 15px 30px; 
        margin: 0 -15px 60px; 
    }

   

}

/* recomended theme */
.rb-recomended-theme-desc {
    margin: 25px 0;
}

.rb-recomended-theme-desc span {
    font-weight: 600;
    color: rgb(55, 97, 207);
    text-transform: uppercase;
}

.rb-rate-us {
    margin-bottom: 20px;
    margin-left: -4px;
}

.rb-rate-us img {
    max-width: 129px;
}


/* svg icons */
.rb-icon-image svg image,
.rb-icon-image svg {
    height: 40px;
    width: 40px;
}