/*==========================
CSS INDEX
============================
1. Helpar-Classes
==========================*/

/*-- 1. Helpar-Classes --*/
.flex-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.item-centered {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.no-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

body .fixed-top {
    position: absolute;
    top: 0;
    left: 0;
    background-color: transparent;
}

.section-padding {
    padding-top: 120px;
    padding-bottom: 120px;
}


blockquote {
    padding: 60px !important;
    border-radius: 10px;
    background-color: #f3f5ff;
    border-left: none;
    text-align: center;
    font-size: 14px;
    line-height: 24px;
    color: #0a0c19;
    text-align: center;
    position: relative;
    z-index: 1;
    margin: 30px 0;
    overflow: hidden;
}

blockquote:before {
    content: "\f10d";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 185px;
    line-height: 185px;
    z-index: -1;
    color: #e4e8ff;
    opacity: 0.5;
}

blockquote h1,
blockquote h2,
blockquote h3,
blockquote h4,
blockquote h5,
blockquote h6 {
    font-weight: 300;
    line-height: 1.6em
}

/*-- Contact-Form-Sytle --*/
.contact-form .submit-form {
    color: #ffffff;
    display: inline-block;
    background-color: #ff3d46;
    border: 1px solid #ff3d46;
    border-radius: 100px;
    padding: 16px 50px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 3px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.contact-form .submit-form:hover {
    background-color: #ffffff;
    color: #ff3d46;
}

.contact-form .form-control-item {
    background-color: #ffffff;
    border: 1px solid #e0deff;
    padding: 18px 50px 18px 30px;
    font-size: 14px;
    line-height: 24px;
    color: #a7a7c1;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    margin-bottom: 30px;
    min-height: 60px;
}

.contact-form textarea.form-control-item {
    height: 120px;
}

.contact-form .form-control-item:focus {
    border: 1px solid #ff3d46;
}

label.label-control {
    color: #6b6e85;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
}

/*--Play-Button--*/
.text-play {
    display: inline-block;
    position: relative;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    color: #b2a7ff;
    font-family: "Rubik";
    font-weight: 500;
}

.text-play .icon {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background-color: #6a5fd2;
    color: #b2a7ff;
    border-radius: 100%;
    margin-right: 10px;
    padding-left: 3px;
    -webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.text-play:hover {
    color: #ffffff;
}

.text-play:hover .icon {
    background-color: #ffffff;
}