/*------------------------------
Contents
   01. General Style
   02. Preloader
   03. Navigation - Menu
   04. Home Banner
   05. Screenshots
   06. Download
   07. FAQs
   08. Contact
   09. Footer         
------------------------------*/

/*------------------------------
    01. START GENERAL STYLE
------------------------------*/
@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i');
body {
    font-family: 'Open Sans', sans-serif;
    color: #2a3b71;
    font-size: 16px;
    position: relative;
    overflow-x: hidden;
}

::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    font-style: italic;
    color: #fff !important;
}

::-moz-placeholder {
    /* Firefox 19+ */
    font-style: italic;
    color: #fff !important;
}

:-ms-input-placeholder {
    /* IE 10+ */
    font-style: italic;
    color: #fff !important;
}

:-moz-placeholder {
    /* Firefox 18- */
    font-style: italic;
    color: #fff !important;
}

a:focus {
    outline: none;
    outline-offset: none;
}

a:hover {
    text-decoration: none;
}



.btn-default {
    border-radius: 50px;
    background: transparent;
    padding: 10px 20px;
    min-width: 170px;
    border: 2px solid #FFE012;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #fff;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.btn-default:hover {
    border-color: #bf095d;
    background: #bf095d;
    color: #fff;
}

.btn-default.colored {
    color: #bf095d;
    border-color: #bf095d;
}

.btn-default.colored:hover {
    color: #fff;
}

.btn-default.blue {
    color: #2a3b71;
    border-color: #2a3b71;
}

.btn-default.blue:hover {
    color: #fff;
    background: #2a3b71;
}
.float {
    bottom: 0;
    position: fixed;
     margin: 1em;
     right: 0;
     z-index: 998;
     border-radius: 50px;
    background: transparent;
    padding: 10px 20px;
    min-width: 170px;
    border: 2px solid #FFE012;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #fff;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    
}

.float:hover {
    border-color: #fff;
    background: #fff;
    color: #bf095d;
}
.mt-200 {
    margin-top: 200px;
}

.mt-250 {
    margin-top: 250px;
}

.space-25 {
    height: 25px;
}

.space-50 {
    height: 50px;
}

.padding-100 {
    padding: 100px 0;
}

.pt-100 {
    padding-top: 100px;
}

.pb-100 {
    padding-bottom: 100px;
}

.section-heade h3 {
    color: #2a3b71;
    margin: 0;
    text-transform: uppercase;
    font-size: 34px;
    font-weight: 300;
    letter-spacing: 5px;
}

.section-heade p {
    color: #2a3b71;
    margin: 0;
    font-weight: 400;
    line-height: 30px;
    font-size: 16px;
}

.section-heade.white h3,
.section-heade.white p {
    color: #fff;
}

ul.social-icons {
    margin-left: 0px;
}

ul.social-icons li {
    border-radius: 50%;
    border: 2px solid #fff;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 25px;
    margin-right: 10px;
    margin-bottom: 10px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

ul.social-icons li i {
    font-size: 14px;
    color: #fff;
}

ul.social-icons li.facebook:hover {
    border-color: #3B5A9A;
    background: #3B5A9A;
}

ul.social-icons li.google-plus:hover {
    border-color: #DD4B3E;
    background: #DD4B3E;
}

ul.social-icons li.pinterest:hover {
    border-color: #BE0719;
    background: #BE0719;
}

.page-head {
    position: relative;
    padding: 100px 0;
}

.page-head h2 {
    font-size: 50px;
    margin: 0;
    padding: 100px 0 10px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
}

.page-head .breadcrumb {
    background: transparent;
    padding: 0;
}

.page-head .breadcrumb a,
.page-head .breadcrumb {
    color: #fff;
}

.page-head .breadcrumb a:hover {
    text-decoration: none;
}

.page-head .breadcrumb>li+li:before {
    color: #fff;
}

.pagination {
    margin: 40px 0 20px;
}

.pagination>li>a,
.pagination>li>span {
    padding: 8px 15px;
    color: #bf095d;
    border-color: #bf095d;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.pagination>.active>a,
.pagination>.active>a:focus,
.pagination>.active>a:hover,
.pagination>.active>span,
.pagination>.active>span:focus,
.pagination>.active>span:hover,
.pagination>li>a:focus,
.pagination>li>a:hover,
.pagination>li>span:focus,
.pagination>li>span:hover {
    color: #ffffff;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background: -moz-linear-gradient( -29deg, rgb(193, 15, 65) 0%, rgb(35, 59, 136) 100%);
    background: -webkit-linear-gradient( -29deg, rgb(193, 15, 65) 0%, rgb(35, 59, 136) 100%);
    background: -ms-linear-gradient( -29deg, rgb(193, 15, 65) 0%, rgb(35, 59, 136) 100%);
    border-color: #bf095d;
}

.pagination>li:first-child>a,
.pagination>li:first-child>span {
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    padding: 8px 20px;
}

.pagination>li:last-child>a,
.pagination>li:last-child>span {
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    padding: 8px 20px;
}

@media (max-width: 991px) {
    .mt-250 {
        margin-top: 125px;
    }
    .mt-200 {
        margin-top: 100px;
    }
    .btn-default {
        padding: 10px 10px;
        min-width: 150px;
        font-size: 12px;
    }
    .section-heade h3 {
        font-weight: 300;
    }
}
/*------------------------------
    01. END GENERAL STYLE
------------------------------*/

/*------------------------------
    02. START PRELOADER STYLE
------------------------------*/
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: -moz-linear-gradient( -29deg, rgb(193, 15, 65) 0%, rgb(35, 59, 136) 100%);
    background: -webkit-linear-gradient( -29deg, rgb(193, 15, 65) 0%, rgb(35, 59, 136) 100%);
    background: -ms-linear-gradient( -29deg, rgb(193, 15, 65) 0%, rgb(35, 59, 136) 100%);
}

.preloader .spinner {
    margin: 0 auto;
    width: 40px;
    height: 40px;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.preloader .spinner .cube1,
.preloader .spinner .cube2 {
    background-color: #fff;
    width: 15px;
    height: 15px;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: sk-cubemove 1.8s infinite ease-in-out;
    animation: sk-cubemove 1.8s infinite ease-in-out;
}

.preloader .spinner .cube2 {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}

@-webkit-keyframes sk-cubemove {
    25% {
        -webkit-transform: translateX(42px) rotate(-90deg) scale(0.5)
    }
    50% {
        -webkit-transform: translateX(42px) translateY(42px) rotate(-180deg)
    }
    75% {
        -webkit-transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5)
    }
    100% {
        -webkit-transform: rotate(-360deg)
    }
}

@keyframes sk-cubemove {
    25% {
        transform: translateX(42px) rotate(-90deg) scale(0.5);
        -webkit-transform: translateX(42px) rotate(-90deg) scale(0.5);
    }
    50% {
        transform: translateX(42px) translateY(42px) rotate(-179deg);
        -webkit-transform: translateX(42px) translateY(42px) rotate(-179deg);
    }
    50.1% {
        transform: translateX(42px) translateY(42px) rotate(-180deg);
        -webkit-transform: translateX(42px) translateY(42px) rotate(-180deg);
    }
    75% {
        transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5);
        -webkit-transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5);
    }
    100% {
        transform: rotate(-360deg);
        -webkit-transform: rotate(-360deg);
    }
}
/*------------------------------
    02. End Preloader Style
------------------------------*/

/*------------------------------
    03. START NAV STYLE
------------------------------*/
.appy-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    border-radius: 0;
    border: none;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background: -moz-linear-gradient( -29deg, rgb(193, 15, 65) 0%, rgb(35, 59, 136) 100%);
    background: -webkit-linear-gradient( -29deg, rgb(193, 15, 65) 0%, rgb(35, 59, 136) 100%);
    background: -ms-linear-gradient( -29deg, rgb(193, 15, 65) 0%, rgb(35, 59, 136) 100%);
}

.appy-menu.sticky {
    background: -moz-linear-gradient( -29deg, rgb(193, 15, 65) 0%, rgb(35, 59, 136) 100%);
    background: -webkit-linear-gradient( -29deg, rgb(193, 15, 65) 0%, rgb(35, 59, 136) 100%);
    background: -ms-linear-gradient( -29deg, rgb(193, 15, 65) 0%, rgb(35, 59, 136) 100%);
    opacity: 0.9;
    box-shadow: 0 0 20px -10px rgba(0, 0, 0, 0.8);
    padding: 0;
}

.appy-menu ul li a {
    color: #fff !important;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
    position: relative;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.appy-menu ul li .dropdown-menu li a {
    font-size: 13px;
    letter-spacing: 2px;
    padding: 8px 15px;
    text-transform: capitalize;
}

.appy-menu ul li .dropdown-menu li.active a {
    background: #fff;
    color: #bf095d !important;
}

.appy-menu ul li.dropdown>a {
    background: transparent !important;
    /*color: #bf095d !important;*/
}

.appy-menu ul li .dropdown-menu>a:after {
    content: '';
    left: 0;
    right: 0;
    bottom: 13px;
    width: 90%;
    margin: 0 auto;
    position: absolute;
    height: 25px;
    border-radius: 20px;
    background: #ffffff;
    z-index: -1;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.appy-menu ul.nav>li.active>a:after,
.appy-menu ul.nav>li>a:hover:after {
    content: '';
    left: 0;
    right: 0;
    bottom: 13px;
    width: 90%;
    margin: 0 auto;
    position: absolute;
    height: 25px;
    border-radius: 20px;
    background: #ffffff;
    z-index: -1;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.appy-menu ul li .dropdown-menu {
    background: -moz-linear-gradient( -29deg, rgb(193, 15, 65) 0%, rgb(35, 59, 136) 100%);
    background: -webkit-linear-gradient( -29deg, rgb(193, 15, 65) 0%, rgb(35, 59, 136) 100%);
    background: -ms-linear-gradient( -29deg, rgb(193, 15, 65) 0%, rgb(35, 59, 136) 100%);
    padding: 0;
    border: 0;
    border-radius: 0;
}

.appy-menu .navbar-nav>.active>a,
.appy-menu .navbar-nav>.active>a:focus,
.appy-menu .navbar-nav>.active>a:hover {
    background: none;
    color: #bf095d !important;
}

.appy-menu .navbar-brand {
    color: #fff;
    font-size: 30px;
    font-weight: 300;
}

.appy-menu ul li a:hover {
    color: #bf095d !important;
}

.appy-menu .navbar-brand {
    height: auto;
    max-width: 280px;
    padding: 0px 0px 10px 18px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.appy-menu.sticky .navbar-brand {
    height: auto;
    max-width: 280px;
    padding: 18px 0px 10px 18px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}


.appy-menu.navbar-default .navbar-toggle {
    background: #fff;
    border-color: #fff;
    margin-top: 13px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.appy-menu.navbar-default .navbar-toggle .icon-bar {
    background-color: #bf095d;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.appy-menu.navbar-default .navbar-toggle.collapsed {
    background: none;
}

.appy-menu.navbar-default .navbar-toggle.collapsed .icon-bar {
    background-color: #fff;
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: 0px !important;
}

.dropdown-submenu:hover>.dropdown-menu {
    display: block;
}

.dropdown-submenu>a:after {
    display: block;
    content: " ";
    float: right;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-left-color: #ccc;
    margin-top: 5px;
    margin-right: -10px;
}

.dropdown-submenu:hover>a:after {
    border-left-color: #fff;
}

.dropdown-submenu.pull-left {
    float: none;
}

.dropdown-submenu.pull-left>.dropdown-menu {
    left: -100%;
    margin-left: 10px;
    -webkit-border-radius: 6px 0 6px 6px;
    -moz-border-radius: 6px 0 6px 6px;
    border-radius: 6px 0 6px 6px;
}


@media (max-width: 993px) {
    .appy-menu .navbar-brand {
        padding: 5px 0px 10px 16px;
        height: auto;
        max-width: 240px;
    }
   .appy-menu.sticky .navbar-brand {
        padding: 15px 0px 5px 16px;
        height: auto;
        max-width: 240px;
    }
}

 
@media (max-width: 867px) {
    .appy-menu .navbar-brand {
        padding: 15px 0px 0px 16px;
        height: auto;
        max-width: 220px;
    }
    .appy-menu.sticky .navbar-brand {
        padding: 15px 0px 0px 16px;
        height: auto;
        max-width: 220px;
    }
    .appy-menu ul li a {
        text-align: center;
    }
    .appy-menu ul li.active a:after,
    .appy-menu ul li a:hover:after {
        bottom: 8px !important;
    }
    .appy-menu ul li.open>a:after,
    .appy-menu ul li.open>a:hover:after {
        bottom: 8px !important;
    }
}


@media (min-width: 768px) {
    .appy-menu {
        padding: 30px 0;
        background: transparent;
    }
     
    .appy-menu.sticky .navbar-nav>li>a {
        padding: 20px 15px;
    }
    .appy-menu.sticky ul li.active a:after,
    .appy-menu.sticky ul li a:hover:after {
        bottom: 18px;
    }
    .appy-menu.sticky ul li.open>a:after,
    .appy-menu.sticky ul li.open>a:hover:after {
        bottom: 18px;
    }
    .appy-menu .nav li.dropdown:hover>.dropdown-menu {
        display: block;
    }
}
/*------------------------------
    03. END NAV STYLE
------------------------------*/

/*------------------------------
    04. HOME BANNER
------------------------------*/
#home_banner {
    position: relative;
    height: 100%;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-image: -moz-linear-gradient( -29deg, rgb(193, 15, 65) 0%, rgb(35, 59, 136) 100%);
    background-image: -webkit-linear-gradient( -29deg, rgb(193, 15, 65) 0%, rgb(35, 59, 136) 100%);
    background-image: -ms-linear-gradient( -29deg, rgb(193, 15, 65) 0%, rgb(35, 59, 136) 100%);
    opacity: 0.9;
}

#home_banner h3 {
    font-size: 36px;
    color: #fff;
    font-weight: 600;
    margin: 0px 50px 30px 30px;
    line-height: 60px;
}

#home_banner ul {
    font-size: 16px;
    color: #FFE012;
    font-weight: 100;
    margin: 10px 0 20px;
    line-height: 20px;
}

#home_banner p {
    font-size: 22px;
    color: #fff;
    font-weight: 300;
    margin: 20px 0 20px;
}



@media (max-width: 991px) {
    #home_banner h3 {
        font-size: 28px;
        line-height: 50px;
        margin: 125px 20px 0px 20px;
    }
    #home_banner p {
        font-size: 18px;
    }
    #home_banner .btn {
        margin: 0 20px 20px 0;
    }
}

#home_banner.index-style-2 {
    min-height: 1000px;
    padding:30p;
}

#home_banner.index-style-2 .home-slider {
    position: absolute;
    top: 0;
    bottom: 0;
}

#home_banner.index-style-2 .owl-carousel div:not(.owl-dots):not(.owl-nav):not(.slide-content):not(.owl-prev):not(.owl-next) {
    height: 100%;
}


/*#home_banner.index-style-2 .owl-stage-outer,#home_banner.index-style-2 .owl-stage,#home_banner.index-style-2 .owl-item,#home_banner.index-style-2 .item{
    height: 100%;
}*/

#home_banner.index-style-2 .slide-content {
    position: absolute;
    top: 45%;
    left: 0;
    right: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media (min-width: 768px) {
    #home_banner.index-style-2 {
    min-height: 980px;
    padding:0px 10px 10px 0px;
}

}
@media (max-width: 993px) {
    #home_banner.index-style-2 {
    min-height: 1400px;
    padding:20px 0px 10px 0px;
    } 
 }
@media (max-width: 767px) {
   #home_banner.index-style-2 {
    min-height: 1450px;
    padding:0px 10px 10px 0px;
}
}
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translate3d(30px, 0, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translate3d(-30px, 0, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
/*------------------------------
    04. END HOME-BANNER
------------------------------*/


/*------------------------------
    05. START SCREENSHOTS SECTION
------------------------------*/
#screenshots {
    position: relative;
}

#screenshots .screenshots-slider {
    padding: 73px 14px 0px 14px;
    background: rgba(0, 0, 0, 0) no-repeat scroll top center;
    background-size: 100%;
    max-width: 293px;
    margin: 0 auto;
}

#screenshots .screenshots-slider .owl-nav {
    margin-top: 100px;
}

#screenshots .screenshots-slider .animated {
    -webkit-animation-duration: 0.4s !important;
    animation-duration: 0.4s !important;
}

#screenshots .screenshots-slider.owl-carousel .owl-nav .owl-prev,
#screenshots .screenshots-slider.owl-carousel .owl-nav .owl-next {
    font-family: 'fontAwesome';
    font-size: 0;
    background: #2a3b71;
    border-radius: 0;
    width: 30px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

#screenshots .screenshots-slider.owl-carousel .owl-nav .owl-prev:hover,
#screenshots .screenshots-slider.owl-carousel .owl-nav .owl-next:hover {
    background: #bf095d;
}

#screenshots .screenshots-slider.owl-carousel .owl-nav .owl-prev:before {
    content: "\f053";
    font-size: 15px;
}

#screenshots .screenshots-slider.owl-carousel .owl-nav .owl-next:after {
    content: "\f054";
    font-size: 15px;
}
/*------------------------------
    05. END SCREENSHOTS SECTION
------------------------------*/

/*------------------------------
    06. START DOWNLOAD SECTION
------------------------------*/
#download {
    position: relative;
}
#download .btn-default:hover {
    background: #fff;
    color: #bf095d;
    border-color: #fff;
}

#download .btn-default span {
    position: relative;
    top: -3px;
    bottom: 5px;
}
@media (min-width: 768px) {
    #download p img {
    padding: 0px 60px 0px 0px;
    height: auto;
    max-width: 210px;
    } 
 
    #download .btn-default img {
    padding: 10px 10px;
    height: auto;
    max-width: 320px;
    } 
}
@media (max-width: 993px) {
    #download p img {
    padding: 0px 40px 0px 10px;
    height: auto;
    max-width: 180px;
    }
    #download .btn-default img {
    padding: 5px 5px;
    height: auto;
    max-width: 250px;
    } 
 }
@media (max-width: 767px) {
    #download p img {
    padding: 0px 30px 0px 10px;
    height: auto;
    max-width: 150px;
    }  
    #download .btn-default img {
    padding: 2px 2px;
    height: auto;
    max-width: 200px;
    } 
}

/*------------------------------
    06. END DOWNLOAD SECTION
------------------------------*/

/*------------------------------
    07. START FAQ SECTION
------------------------------*/
#faq .panel {
    box-shadow: none;
    border: none;
}

#faq .panel .panel-heading {
    padding: 0
    /*background: #bf095d/*f9f9f9*/
    ;
    background-image: -moz-linear-gradient( -29deg, rgb(193, 15, 65) 0%, rgb(35, 59, 136) 100%);
    background-image: -webkit-linear-gradient( -29deg, rgb(193, 15, 65) 0%, rgb(35, 59, 136) 100%);
    background-image: -ms-linear-gradient( -29deg, rgb(193, 15, 65) 0%, rgb(35, 59, 136) 100%);
    border-radius: 0;
}

#faq .panel .panel-heading .panel-title {
    font-size: 15px;
}

#faq .panel .panel-heading .panel-title a {
    display: block;
    padding: 15px 15px 15px 0;
    color: #fff;
    text-transform: capitalize;
    margin-left: 40px;
    position: relative;
}

#faq .panel .panel-heading .panel-title a:hover {
    text-decoration: none;
}

#faq .panel .panel-heading .panel-title a:focus {
    text-decoration: none;
}

#faq .panel .panel-heading .panel-title a:after {
    content: "\f067";
    font: 18px fontAwesome;
    float: left;
    /*margin-right: 25px;*/
    margin-top: 2px;
}

#faq .panel .panel-heading .panel-title a:after {
    content: "\f068";
    font: 18px fontAwesome;
    float: left;
    color: #fff;
    height: 40px;
    width: 40px;
    margin-left: -56px;
    position: absolute;
    line-height: 45px;
    text-align: center;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
}

#faq .panel .panel-heading .panel-title a.collapsed:after {
    content: "\f067";
    font: 18px fontAwesome;
    float: left;
    color: #fff;
    height: 40px;
    width: 40px;
    margin-left: -56px;
    position: absolute;
    line-height: 45px;
    text-align: center;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
}

#faq .panel .panel-collapse .panel-body {
    font-size: 14px;
    line-height: 25px;
    font-weight: 400;
    background: #fdfdfd;
    color: #2a3b71;
    border-top: none;
    border-bottom: 5px solid #f9f9f9;
}

#faq img {
    max-width: 170px;
}
/*------------------------------
    07. END FAQ SECTION
------------------------------*/

/*------------------------------
    08. START CONTACT SECTION
------------------------------*/
#contact {
    position: relative;
}

#contact .form-control {
    height: 50px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 0;
    color: #fff;
    letter-spacing: 2px;
    font-weight: 300;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

#contact .form-control:focus {
    box-shadow: none;
    background: rgba(255, 255, 255, 0.4);
}

#contact textarea.form-control {
    height: auto;
}

#contact .btn-default {
    border-radius: 0;
    background: #bf095d;
    border: none;
    margin: 20px 0;
    font-weight: 600;
    width: 100%;
}

#contact .btn-default:hover {
    background: #fff;
    color: #bf095d;
}

#contact .contact-info li {
    position: relative;
    overflow-y: hidden;
    margin-bottom: 20px;
    color: #fff;
}

#contact .contact-info li .icon {
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    font-size: 20px;
    float: left;
}

#contact .contact-info li .text {
    padding: 5px 10px;
    margin-left: 30px;
}

#contact .contact-info li .text a {
    color: #fff;
    text-decoration: none;
}

div#contact_form input[type="text"],
div#contact_form input[type="email"] {
	margin-bottom: 13px;
}
div#contact_form textarea {
	height: 115px;
	margin-bottom: 13px;
    margin-right: 20px;
}
div#contact_form input[type="submit"] {
	float: right;
	margin-right: 25px;
	margin-bottom: 7px;
}
div#contact_form .error {
	border-color: #E01C46;
}
div#contact_form .validation,
div#contact_form .success {
	display: none;
	font-size: 14px;
	margin-bottom: 20px;
}
	div#contact_form .validation p  { color: #e01c46; }
	div#contact_form .success p	    { color: #65cf82; }
/*------------------------------
    08. END CONTACT SECTION
------------------------------*/

/*------------------------------
    09. START FOOTER SECTION
------------------------------*/
footer {
    background-image: -moz-linear-gradient( -29deg, rgb(193, 15, 65) 0%, rgb(35, 59, 136) 100%);
    background-image: -webkit-linear-gradient( -29deg, rgb(193, 15, 65) 0%, rgb(35, 59, 136) 100%);
    background-image: -ms-linear-gradient( -29deg, rgb(193, 15, 65) 0%, rgb(35, 59, 136) 100%);
}

footer p {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    padding: 25px 0;
}
/*------------------------------
    09. END FOOTER SECTION
------------------------------*/
