/*////////////////////// PARTIALS //////////////////////*/
/*////////////////////// FONTS //////////////////////*/
@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,600&display=swap");
@import url("https://fonts.googleapis.com/css?family=Raleway:300,400,500,800");
/*////////////////////// GENERAL //////////////////////*/
* {
    outline: none !important;
    margin: 0px auto;
    padding: 0px;
}

html {
    direction: ltr;
    height: 100%;
}

body {
    direction: ltr;
    font-family: "Poppins", Tahoma, sans-serif;
    overflow-x: hidden;
    height: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover,
a:focus,
a:visited {
    text-decoration: none;
    color: inherit;
}

li {
    list-style-type: none;
}

i {
    vertical-align: middle;
}

/*////////////////////// VARIABLES //////////////////////*/
/*////////////////////// MIXINS //////////////////////*/
/*////////////////////// COMPONENTS //////////////////////*/
.section {
    padding-top: 100px;
    padding-bottom: 100px;
}

@media only screen and (max-width: 992px) {
    .section {
        padding-top: 80px;
        padding-top: 80px;
    }
}

@media only screen and (max-width: 768px) {
    .section {
        padding-top: 60px;
        padding-bottom: 80px;
    }
}

.btn-site {
    background-image: linear-gradient(-300deg, #cb0035 0%, #e06a00 85%);
    color: #ffffff !important;
    border-radius: 8px;
    padding: 15px 30px;
    -webkit-box-shadow: 0px 10px 30px -8px #cb0035;
    box-shadow: 0px 10px 30px -8px #cb0035;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.btn-site:hover {
    -webkit-box-shadow: 0px 10px 30px -8px #cb0035;
    box-shadow: 0px 5px 20px -8px #cb0035;
}

.btn-main {
    margin-top: 40px;
    margin-right: 10px;
    background: transparent;
    border-radius: 10px;
    border: 2px solid #ffffff;
    color: #ffffff;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    min-width: 180px;
    display: inline-block;
    text-align: center;
}

.btn-main .inner {
    color: #ffffff;
    padding: 10px 20px;
    display: block;
}

@media only screen and (max-width: 576px) {
    .btn-main .inner {
        padding: 10px;
    }
}

.btn-main:hover {
    background: #ffffff;
    -webkit-box-shadow: 0px 3px 3px 3px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 3px 3px 3px rgba(0, 0, 0, 0.1);
}

.btn-main:hover .inner {
    background-image: -webkit-gradient(linear, left top, right top, from(#cb0035), to(#e06a00));
    background-image: linear-gradient(to right, #cb0035 0%, #e06a00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media only screen and (max-width: 576px) {
    .btn-main {
        font-size: 14px;
        display: inline-block;
        min-width: auto;
        width: 45%;
        margin-top: 20px;
    }
}

.title-site {
    text-align: center;
}

.title-site.title-white .title-main {
    background-image: -webkit-gradient(linear, left top, right top, color-stop(40%, #ffffff), color-stop(60%, #ddd));
    background-image: linear-gradient(to right, #ffffff 40%, #ddd 60%);
}

.title-site.title-white .title-subtitle {
    color: #ddd !important;
}

.title-site .title-main {
    position: relative;
    font-weight: bold;
    background-image: -webkit-gradient(linear, left top, right top, color-stop(40%, #cb0035), color-stop(60%, #e06a00));
    background-image: linear-gradient(to right, #cb0035 40%, #e06a00 60%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 25px;
}

@media only screen and (max-width: 768px) {
    .title-site .title-main {
        font-size: 22px;
        margin-bottom: 2px;
    }
}

.title-site .title-main:after {
    content: "";
    position: absolute;
    top: 130%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 40px;
    height: 1px;
    background: #ddd;
}

.title-site .title-subtitle {
    /* max-width: 500px; */
    color: #999;
}

@media only screen and (max-width: 768px) {
    .title-site .title-subtitle {
        font-size: 14px;
    }
}

.gradient-bg {
    position: relative;
    background-image: linear-gradient(-300deg, #cb0035 0%, #e06a00 85%);
}

.dots-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-image: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.3),
        rgba(255, 255, 255, 0.3) 1px,
        transparent 0px,
        transparent
    );
    background-size: 50px 50px;
}

/*////////////////////// NAVBAR //////////////////////*/
nav {
    color: #ffffff;
    padding-top: 18px !important;
    padding-bottom: 0px !important;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    display: none;
}

@media only screen and (max-width: 1200px) {
    nav {
        padding-top: 0px !important;
    }
}

@media only screen and (max-width: 992px) {
    nav {
        padding-top: 10px !important;
        padding-bottom: 10px !important;
        color: #000000;
        background: #ffffff;
    }
}

@media only screen and (max-width: 992px) {
    nav {
        color: #000000;
        background: rgba(255, 255, 255, 0.97);
        -webkit-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.07);
        box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.07);
    }
}

nav.in {
    padding-top: 0px !important;
    color: #000000;
    background: rgba(255, 255, 255, 0.97);
    -webkit-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.07);
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.07);
}

nav.in .navbar-nav {
    margin-right: 0;
}

nav.in .navbar-nav .nav-item .nav-link:after {
    background: #000000;
}

nav.in .navbar-brand .logo {
    background-image: url("../images/logo-footer.png");
    color: #000000;
    /* -webkit-filter: brightness(0%);
    filter: brightness(0%); */
}

nav .navbar-brand {
    padding: 0 !important;
}

nav .navbar-brand .logo {
    width: 120px;
    height: 30px;
    padding-left: 110px;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    background-size: 120px 30px;
    background-image: url("../images/logo-header.png");
    /* -webkit-filter: brightness(0%) invert(1); */
    /* filter: brightness(0%) invert(1); */
    max-width: 120px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

@media only screen and (max-width: 992px) {
    nav .navbar-brand .logo {
        /* -webkit-filter: brightness(0%) !important; */
        /* filter: brightness(0%) !important; */
        background-image: url("../images/logo-footer.png");
        max-width: 120px;
        color: #000000;
    }
}

@media only screen and (max-width: 992px) {
    nav .navbar-brand {
        margin-right: auto;
        margin-left: 1rem;
    }
}

nav .navbar-toggler {
    color: #000000;
    font-size: 24px;
}

nav .navbar-nav {
    margin-right: 0;
}

nav.in .navbar-nav .nav-item .nav-link {
    color: #000000;
    /* background-image: url('../images/logo-footer.png'); */
    /* -webkit-filter: brightness(0%);
    filter: brightness(0%); */
}

nav .navbar-nav .nav-item .nav-link {
    position: relative;
    padding: 0;
    color: #ffffff;
    padding-top: 20px !important;
    padding-bottom: 20px !important;
    margin-right: 10px;
    margin-left: 10px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

@media only screen and (max-width: 992px) {
    nav .navbar-nav .nav-item .nav-link {
        color: #000000;
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }
}

nav .navbar-nav .nav-item .nav-link:after {
    content: "";
    position: absolute;
    bottom: 20%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 0%;
    height: 2px;
    background: #ffffff;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

@media only screen and (max-width: 992px) {
    nav .navbar-nav .nav-item .nav-link:after {
        background: #000000 !important;
    }
}

nav .navbar-nav .nav-item .nav-link:hover:after {
    width: 100%;
}

/*////////////////////// MAIN //////////////////////*/
.main {
    position: relative;
    background-color: #cb0035;
    background-image: linear-gradient(-300deg, #cb0035 0%, #e06a00 85%);
    position: relative;
    background-size: cover;
    background-position: center center;
    height: 100vh;
}

.main:before {
    content: "";
    position: absolute;
    bottom: 0%;
    right: 0%;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 600px 3500px;
    border-color: transparent transparent #ffffff transparent;
}

@media only screen and (max-width: 2300px) {
    .main:before {
        border-width: 0 0 400px 3000px;
    }
}

@media only screen and (max-width: 1920px) {
    .main:before {
        border-width: 0 0 400px 2500px;
    }
}

@media only screen and (max-width: 1600px) {
    .main:before {
        border-width: 0 0 300px 2500px;
    }
}
@media only screen and (max-width: 1280px) {
    .main:before {
        border-width: 0 0 265px 2500px;
    }
}

@media only screen and (max-width: 992px) {
    .main:before {
        border-width: 0 0 250px 1500px;
    }
}

@media only screen and (max-width: 768px) {
    .main:before {
        border-width: 0 0 200px 1500px;
    }
}

@media screen and (max-height: 570px) {
    .main:before {
        display: none;
    }
}

.main .main-box {
    text-align: center;
    position: absolute;
    top: 40%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #ffffff;
    width: 1110px;
    text-align: left;
}

@media screen and (max-height: 500px) {
    .main .main-box {
        top: 55%;
    }
}

@media only screen and (max-width: 1200px) {
    .main .main-box {
        max-width: 960px;
        padding: 0 15px;
    }
}

@media only screen and (max-width: 992px) {
    .main .main-box {
        max-width: 90%;
    }
}

@media only screen and (max-width: 992px) {
    .main .main-box .phone {
        display: none;
    }
}

@media screen and (max-height: 820px) {
    .main .main-box .phone {
        display: none;
    }
}

.main .main-box .phone.phone-1 .bezel {
    position: absolute;
    top: -55%;
    right: 2%;
    max-width: 350px;
}

.main .main-box .phone.phone-1 .screen {
    position: absolute;
    top: -25%;
    right: 4%;
    max-width: 305px;
}

.main .main-box .phone.phone-2 .bezel {
    position: absolute;
    top: -120px;
    right: 15px;
    max-width: 350px;
}

.main .main-box .phone.phone-2 .screen {
    position: absolute;
    top: -100px;
    right: 37px;
    max-width: 305px;
}

.main .main-box .first-text {
    font-weight: bold;
    font-size: 54px;
    margin: 0;
    margin-bottom: 20px;
    min-height: 65px;
}

@media only screen and (max-width: 1200px) {
    .main .main-box .first-text {
        font-size: 44px;
        min-height: 55px;
    }
}

@media only screen and (max-width: 992px) {
    .main .main-box .first-text {
        font-size: 34px;
        margin-bottom: 10px;
    }
}

@media only screen and (max-width: 576px) {
    .main .main-box .first-text {
        min-height: 35px;
        font-size: 28px;
    }
}

.main .main-box .second-text {
    font-size: 20px;
    max-width: 500px;
    font-family: "Raleway", Tahoma, sans-serif;
    font-weight: lighter;
    line-height: 30px;
    margin: 0;
}

@media only screen and (max-width: 1200px) {
    .main .main-box .second-text {
        font-size: 16px;
    }
}

@media only screen and (max-width: 576px) {
    .main .main-box .second-text {
        font-size: 16px;
    }
}

.main .scroll {
    position: absolute;
    top: 90%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border: 2px solid #cb0035;
    border-radius: 30px;
    width: 30px;
    height: 48px;
}

@media screen and (max-height: 570px) {
    .main .scroll {
        border: 2px solid #ffffff;
    }
}

@media screen and (max-height: 500px) {
    .main .scroll {
        display: none;
    }
}

@media only screen and (max-width: 768px) {
    .main .scroll {
        border-radius: 6px;
    }
}

@media only screen and (max-width: 576px) {
    .main .scroll {
        top: 85%;
    }
}

.main .scroll:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 2px;
    height: 10px;
    background: #cb0035;
    -webkit-animation: animate 2s ease-in-out infinite;
    animation: animate 2s ease-in-out infinite;
}

@media only screen and (max-width: 768px) {
    .main .scroll:after {
        width: 6px;
        height: 6px;
        border-radius: 6px;
    }
}

@media screen and (max-height: 570px) {
    .main .scroll:after {
        background: #ffffff;
    }
}

@-webkit-keyframes animate {
    0% {
        top: 30%;
    }
    50% {
        top: 70%;
    }
    100% {
        top: 30%;
    }
}

@keyframes animate {
    0% {
        top: 30%;
    }
    50% {
        top: 70%;
    }
    100% {
        top: 30%;
    }
}

/*////////////////////// FEATURES //////////////////////*/
.features .f-box {
    text-align: center;
    margin-top: 30px;
    padding: 25px 30px;
    border-radius: 20px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.features .f-box .icon-wrap {
    background-image: linear-gradient(-300deg, #cb0035 0%, #e06a00 85%);
    display: inline-block;
    margin-bottom: 15px;
    padding: 2px;
    border-radius: 50%;
}

.features .f-box .icon-wrap .icon-inner {
    min-width: 90px;
    background: #ffffff;
    border-radius: 50%;
    padding: 25px;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

@media only screen and (max-width: 576px) {
    .features .f-box .icon-wrap .icon-inner {
        min-width: 55px;
        padding: 15px;
    }
}

.features .f-box .icon-wrap .icon-inner i {
    font-size: 40px;
    background-image: linear-gradient(-300deg, #cb0035 0%, #e06a00 85%);
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

@media only screen and (max-width: 576px) {
    .features .f-box .icon-wrap .icon-inner i {
        font-size: 25px;
    }
}

.features .f-box:hover {
    -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
}

.features .f-box:hover .icon-wrap .icon-inner {
    background-image: linear-gradient(-300deg, #cb0035 0%, #e06a00 85%);
}

.features .f-box:hover .icon-wrap .icon-inner i {
    background: #ffffff;
}

.customerservice {
    right: 24px;
    bottom: 120px;
    width: 56px;
}
.customerservice .icon-btn {
    text-decoration: none;
    font-size: 28px;
    display: block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background-color: #bc0f0f;
    border-radius: 25px;
    color: #fff;
    box-shadow: 0 0.375rem 1rem 0 rgba(0, 0, 0, 0.08), 0 0.1875rem 0.375rem -0.25rem rgba(0, 0, 0, 0.12),
        0 0.5625rem 1.75rem 0.5rem rgba(0, 0, 0, 0.05);
}
@media only screen and (max-width: 768px) {
    .features .f-box {
        padding: 15px 30px;
    }
}

@media only screen and (max-width: 576px) {
    .features .f-box {
        padding: 18px 8px;
        margin-top: 30px;
        font-size: 13px;
    }

    .features .f-box .description {
        text-align: left;
        min-height: 180px;
    }
    /* .features .f-box:hover {
        -webkit-box-shadow: none;
        box-shadow: none;
    } */
}

.features .f-box .title {
    margin-bottom: 10px;
    background-image: linear-gradient(-300deg, #cb0035 40%, #e06a00 60%);
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent;
}

@media only screen and (max-width: 576px) {
    .features .f-box .title {
        font-size: 14px;
        font-weight: bolder;
    }
}

.features .f-box .description {
    font-weight: lighter;
    margin-bottom: 0;
    color: #999;
}

/*////////////////////// ABOUT //////////////////////*/
.about {
    background: #eee;
}

@media only screen and (max-width: 992px) {
    .about .about-img {
        text-align: center;
        margin-bottom: 20px;
    }
}

.about .about-img img {
    border-radius: 5px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-box-shadow: 0 30px 60px -12px rgba(50, 50, 93, 0.25), 0 18px 36px -18px rgba(0, 0, 0, 0.3),
        0 -12px 36px -8px rgba(0, 0, 0, 0.025);
    box-shadow: 0 30px 60px -12px rgba(50, 50, 93, 0.25), 0 18px 36px -18px rgba(0, 0, 0, 0.3),
        0 -12px 36px -8px rgba(0, 0, 0, 0.025);
}

.about .about-img img:hover {
    margin-top: -5px;
    margin-bottom: 5px;
}

@media only screen and (max-width: 992px) {
    .about .about-text {
        text-align: center;
    }
}

.about .about-text .about-heading h2 {
    margin: 0;
}

@media only screen and (max-width: 992px) {
    .about .about-text .about-heading h2 {
        font-size: 30px;
    }
}

@media only screen and (max-width: 768px) {
    .about .about-text .about-heading h2 {
        font-size: 25px;
    }
}

.about .about-text .about-heading span {
    color: #bbbbbb;
    margin-bottom: 30px;
    display: block;
    font-size: 18px;
}

@media only screen and (max-width: 1200px) {
    .about .about-text .about-heading span {
        margin-bottom: 15px;
    }
}

@media only screen and (max-width: 992px) {
    .about .about-text .about-heading span {
        font-size: 16px;
    }
}

@media only screen and (max-width: 768px) {
    .about .about-text .about-heading span {
        font-size: 14px;
    }
}

@media only screen and (max-width: 992px) {
    .about .about-text p {
        font-size: 14px;
    }
}

.about .about-text .icons {
    margin: 45px 0;
}

@media only screen and (max-width: 1200px) {
    .about .about-text .icons {
        margin: 25px 0 35px 0;
    }
}

.about .about-text .icons i {
    font-size: 35px;
    margin-right: 15px;
    -webkit-transition: 0.1s;
    transition: 0.1s;
}

.about .about-text .icons i:hover {
    color: #cb0035;
}

@media only screen and (max-width: 992px) {
    .about .about-text .icons i {
        margin: 0 10px;
    }
}

/*////////////////////// SCREENSHOTS //////////////////////*/
.screens .phone {
    position: absolute;
    top: 54.25%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) scale(1.41);
    transform: translate(-50%, -50%) scale(1.41);
    z-index: 99;
    width: 199px;
    -webkit-box-shadow: 0px 25px 25px -20px rgba(0, 0, 0, 0.7);
    box-shadow: 0px 25px 25px -20px rgba(0, 0, 0, 0.7);
    border-radius: 30px;
}

@media only screen and (max-width: 1200px) {
    .screens .phone {
        top: 53.1%;
        -webkit-transform: translate(-50%, -50%) scale(1.158);
        transform: translate(-50%, -50%) scale(1.158);
    }
}

@media only screen and (max-width: 992px) {
    .screens .phone {
        top: 52.1%;
    }
}

@media only screen and (max-width: 768px) {
    .screens .phone {
        top: 50.8%;
    }
}

@media only screen and (max-width: 576px) {
    .screens .phone {
        display: none;
    }
}

.screens .screens-list {
    margin-top: 30px;
    padding: 50px 0 0 0;
}

@media only screen and (max-width: 1200px) {
    .screens .screens-list {
        margin-top: 0px;
        padding: 0;
    }
}

.screens .screens-list .owl-prev,
.screens .screens-list .owl-next {
    border: 1px solid #e2e2e2 !important;
    position: absolute;
    top: 40%;
    border-radius: 10px;
}

.screens .screens-list .owl-prev:hover,
.screens .screens-list .owl-next:hover {
    background: #e2e2e2;
}

.screens .screens-list .owl-prev:hover i,
.screens .screens-list .owl-next:hover i {
    color: #cb0035;
}

.screens .screens-list .owl-prev i,
.screens .screens-list .owl-next i {
    font-size: 20px;
    color: #e2e2e2;
    padding: 8px 15px 10px 15px !important;
}

.screens .screens-list .owl-prev {
    left: 350px;
}

@media only screen and (max-width: 1200px) {
    .screens .screens-list .owl-prev {
        left: 300px;
    }
}

@media only screen and (max-width: 992px) {
    .screens .screens-list .owl-prev {
        left: 50px;
    }
}

@media only screen and (max-width: 768px) {
    .screens .screens-list .owl-prev {
        left: 15px;
    }
}

.screens .screens-list .owl-next {
    right: 350px;
}

@media only screen and (max-width: 1200px) {
    .screens .screens-list .owl-next {
        right: 300px;
    }
}

@media only screen and (max-width: 992px) {
    .screens .screens-list .owl-next {
        right: 50px;
    }
}

@media only screen and (max-width: 768px) {
    .screens .screens-list .owl-next {
        right: 15px;
    }
}

.screens .screens-list .owl-dots {
    text-align: center;
    margin-top: 100px;
}

@media only screen and (max-width: 1200px) {
    .screens .screens-list .owl-dots {
        margin-top: 50px;
    }
}

@media only screen and (max-width: 576px) {
    .screens .screens-list .owl-dots {
        margin-top: 0px;
    }
}

.screens .screens-list .owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    background: #ffffff;
    margin: 0 5px;
    border-radius: 3px;
    opacity: 0.3;
}

.screens .screens-list .owl-dots .owl-dot.active {
    opacity: 1;
}

.screens .screens-list .owl-stage {
    padding: 80px 0;
}

@media only screen and (max-width: 576px) {
    .screens .screens-list .owl-stage {
        padding: 15px 0 0 0;
    }
}

.screens .screens-list .owl-item.center img {
    -webkit-transform: scale(1.22);
    transform: scale(1.22);
    -webkit-transition: 0.5s;
    transition: 0.5s;
    opacity: 1;
    -webkit-box-shadow: none;
    box-shadow: none;
}

@media only screen and (max-width: 1200px) {
    .screens .screens-list .owl-item.center img {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@media only screen and (max-width: 576px) {
    .screens .screens-list .owl-item.center img {
        -webkit-box-shadow: 0px 15px 15px -10px rgba(0, 0, 0, 0.4);
        box-shadow: 0px 15px 15px -5px rgba(0, 0, 0, 0.4);
    }
}

@media only screen and (max-width: 576px) {
    .screens .screens-list .owl-item.center {
        padding: 0 0 40px 0;
    }
}

.screens .screens-list .screens-item img {
    top: 17px;
    width: 206px;
    opacity: 0.4;
    position: relative;
    -webkit-box-shadow: 0px 25px 25px -10px rgba(0, 0, 0, 0.7);
    box-shadow: 0px 25px 25px -5px rgba(0, 0, 0, 0.7);
}

@media only screen and (max-width: 576px) {
    .screens .screens-list .screens-item img {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-box-shadow: 0none;
        box-shadow: none;
    }
}

/*////////////////////// STATS //////////////////////*/
.stats {
    position: relative;
    padding-top: 160px;
    padding-bottom: 160px;
}

@media only screen and (max-width: 992px) {
    .stats {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

@media only screen and (max-width: 768px) {
    .stats {
        padding-top: 40px;
        padding-bottom: 70px;
    }
}

.stats:before {
    content: "";
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7) 1px, #323232 0px, #323232);
    background-size: 50px 50px;
}

.stats .stat {
    position: relative;
    color: #ffffff;
    text-align: center;
    margin-top: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 50px 5px;
    border-radius: 20px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    overflow: hidden;
}

@media only screen and (max-width: 992px) {
    .stats .stat {
        margin-top: 15px;
        margin-bottom: 15px;
    }
}

@media only screen and (max-width: 768px) {
    .stats .stat {
        background: none;
        padding: 40px 0 0 0;
        margin-bottom: 0px;
    }
}

@media only screen and (max-width: 576px) {
    .stats .stat {
        padding: 20px 0 0 0;
    }
}

.stats .stat:before {
    content: "";
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(-300deg, #cb0035 0%, #e06a00 85%);
    opacity: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

@media only screen and (max-width: 768px) {
    .stats .stat:before {
        display: none;
    }
}

.stats .stat:after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: #323232;
    border-radius: 50%;
}

@media only screen and (max-width: 768px) {
    .stats .stat:after {
        display: none;
    }
}

.stats .stat:hover:before {
    opacity: 1;
}

.stats .stat:hover span:after {
    width: 125%;
    height: 125%;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.stats .stat:hover span i {
    background-image: linear-gradient(-300deg, #cb0035 0%, #e06a00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stats .stat span {
    display: inline-block;
    position: relative;
    margin-bottom: 40px;
    line-height: 40px;
    background: #ffffff;
    border-radius: 50%;
    width: 90px;
    height: 90px;
    vertical-align: middle;
}

@media only screen and (max-width: 768px) {
    .stats .stat span {
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 576px) {
    .stats .stat span {
        width: 70px;
        height: 70px;
    }
}

.stats .stat span:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 115%;
    height: 115%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.stats .stat span i {
    font-size: 40px;
    background: #323232;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 90px;
}

@media only screen and (max-width: 576px) {
    .stats .stat span i {
        line-height: 70px;
        font-size: 30px;
    }
}

.stats .stat .counter {
    position: relative;
    color: inherit;
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 5px;
    font-weight: 300;
}

@media only screen and (max-width: 576px) {
    .stats .stat .counter {
        font-size: 25px;
    }
}

.stats .stat p {
    position: relative;
    font-size: 18px;
    text-transform: capitalize;
    margin-bottom: 0;
    font-family: "Raleway", Tahoma, sans-serif;
}

@media only screen and (max-width: 576px) {
    .stats .stat p {
        font-size: 14px;
    }
}

/*////////////////////// CUSTOMERS //////////////////////*/
.clients {
    padding-bottom: 150px;
}

@media only screen and (max-width: 768px) {
    .clients {
        padding-bottom: 60px;
    }
}

.clients .clients-list {
    margin-top: 40px;
}

.clients .clients-list .client {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    padding-top: 10px;
}

.clients .clients-list .client:hover {
    margin-top: -7px;
}

.clients .clients-list .client img {
    max-width: 160px;
}

@media only screen and (max-width: 768px) {
    .clients .clients-list .client img {
        max-width: 80%;
    }
}

/*////////////////////// QUOTES //////////////////////*/
.quotes {
    position: relative;
    background: #eee;
}

.quotes .quotes-list .owl-prev,
.quotes .quotes-list .owl-next {
    background: #e2e2e2 !important;
    position: absolute;
    top: 50%;
    border-radius: 10px;
}

@media only screen and (max-width: 768px) {
    .quotes .quotes-list .owl-prev,
    .quotes .quotes-list .owl-next {
        top: 40%;
    }
}

.quotes .quotes-list .owl-prev:hover,
.quotes .quotes-list .owl-next:hover {
    background-image: linear-gradient(-300deg, #cb0035 0%, #e06a00 85%) !important;
    color: #ffffff;
}

.quotes .quotes-list .owl-prev i,
.quotes .quotes-list .owl-next i {
    font-size: 20px;
    padding: 8px 15px 10px 15px !important;
}

.quotes .quotes-list .owl-prev {
    left: 15px;
}

.quotes .quotes-list .owl-next {
    right: 15px;
}

.quotes .quote {
    margin-top: 60px;
    padding-top: 50px;
    padding-bottom: 40px;
    border-top: 6px double #e4e4e4;
    border-bottom: 6px double #e4e4e4;
}

@media only screen and (max-width: 768px) {
    .quotes .quote {
        margin-top: 30px;
        padding-top: 40px;
    }
}

.quotes .quote .avatar {
    display: block;
    width: 130px;
    border-radius: 50%;
    margin-bottom: 20px;
}

@media only screen and (max-width: 768px) {
    .quotes .quote .avatar {
        width: 110px;
    }
}

.quotes .quote .name {
    display: block;
    text-align: center;
    background-image: -webkit-gradient(linear, left top, right top, color-stop(40%, #cb0035), color-stop(60%, #e06a00));
    background-image: linear-gradient(to right, #cb0035 40%, #e06a00 60%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
}

.quotes .quote .company {
    display: block;
    text-align: center;
    color: #999;
    font-weight: lighter;
    margin-bottom: 30px;
}

.quotes .quote .comment {
    display: block;
    text-align: center;
    color: #666;
    font-weight: lighter;
    line-height: 30px;
    max-width: 70%;
    font-size: 19px;
}

@media only screen and (max-width: 768px) {
    .quotes .quote .comment {
        font-size: 14px;
        line-height: 25px;
        max-width: 90%;
    }
}

.quotes .quote i {
    display: block;
    text-align: center;
    font-size: 72px;
    background-image: -webkit-gradient(linear, left top, right top, color-stop(40%, #cb0035), color-stop(55%, #e06a00));
    background-image: linear-gradient(to right, #cb0035 40%, #e06a00 55%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media only screen and (max-width: 768px) {
    .quotes .quote i {
        font-size: 40px;
    }
}

/*////////////////////// PLANS //////////////////////*/
.plans {
    position: relative;
}

.plans:before {
    content: "";
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7) 1px, #323232 0px, #323232);
    background-size: 50px 50px;
}

.plans .plan {
    position: relative;
    background: #ffffff;
    text-align: center;
    margin-top: 70px;
    border-radius: 20px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-box-shadow: -20px 25px 25px -20px #000000;
    box-shadow: -20px 25px 25px -20px #000000;
}

.plans .plan:hover {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

@media only screen and (max-width: 992px) {
    .plans .plan {
        margin-top: 30px;
    }
    .plans .plan:hover {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@media only screen and (max-width: 576px) {
    .plans .plan {
        width: 350px;
    }
}

@media only screen and (max-width: 450px) {
    .plans .plan {
        width: 93%;
    }
}

.plans .plan .plan-price {
    background: #e7e7e7;
    border-radius: 20px 20px 0 0;
    padding: 30px 5px 15px 5px;
}

.plans .plan .plan-price .price-wrap {
    background-image: linear-gradient(-300deg, #cb0035 0%, #e06a00 85%);
    display: inline-block;
    margin-bottom: 15px;
    padding: 2px;
    border-radius: 50%;
}

.plans .plan .plan-price .price-wrap .price-inner {
    display: inline-block;
    position: relative;
    background: #ffffff;
    border-radius: 50%;
    width: 130px;
    height: 130px;
    font-size: 40px;
    background: #e7e7e7;
    border-radius: 50%;
    padding: 25px;
}

.plans .plan .plan-price .price-wrap .price-inner h5 {
    position: relative;
    display: inline-block;
    background-image: linear-gradient(-300deg, #cb0035 0%, #e06a00 85%);
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent;
    font-size: 40px;
    vertical-align: middle;
    margin: 0;
}

.plans .plan .plan-price .price-wrap .price-inner h5:after {
    content: "¥";
    position: absolute;
    top: 6px;
    left: -13px;
    background-image: linear-gradient(-300deg, #cb0035 0%, #e06a00 85%);
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent;
    z-index: 99;
    font-size: 16px;
}

.plans .plan .plan-price .price-wrap .price-inner h6 {
    background-image: linear-gradient(-300deg, #cb0035 0%, #e06a00 85%);
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent;
    font-size: 12px;
    vertical-align: middle;
    margin: 0;
}

.plans .plan .plan-price p {
    background-image: linear-gradient(-300deg, #cb0035 0%, #e06a00 85%);
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent;
    position: relative;
    color: inherit;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 5px;
    font-weight: 300;
    font-family: "Raleway", Tahoma, sans-serif;
}

@media only screen and (max-width: 1200px) {
    .plans .plan .plan-price p {
        font-size: 25px;
    }
}

.plans .plan .plan-features {
    position: relative;
    background: #ffffff;
    padding: 30px 5px 110px 5px;
    border-radius: 0 0 20px 20px;
    min-height: 420px;
}

@media only screen and (max-width: 576px) {
    .plans .plan .plan-features {
        padding: 15px 5px 90px 5px;
        border-radius: 0 0 10px 10px;
        min-height: auto;
    }
}

.plans .plan .plan-features ul {
    margin: 0;
}

.plans .plan .plan-features ul li {
    color: #999;
    font-weight: lighter;
    line-height: 30px;
}

@media only screen and (max-width: 1200px) {
    .plans .plan .plan-features ul li {
        font-size: 14px;
    }
}

@media only screen and (max-width: 992px) {
    .plans .plan .plan-features ul li {
        font-size: 16px;
    }
}

@media only screen and (max-width: 768px) {
    .plans .plan .plan-features ul li {
        font-size: 14px;
    }
}

.plans .plan .plan-features .order {
    position: absolute;
    top: 85%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #ffffff;
    background-image: linear-gradient(-300deg, #cb0035 0%, #e06a00 85%);
    padding: 2px;
    width: 65%;
    border-radius: 10px;
}

@media only screen and (max-width: 576px) {
    .plans .plan .plan-features .order {
        top: auto;
        bottom: 0px;
    }
}

.plans .plan .plan-features .order .inner {
    background: #ffffff;
    padding: 10px 5px;
    width: 100%;
    display: block;
    border-radius: 8px;
}

.plans .plan .plan-features .order .inner p {
    background-image: linear-gradient(-300deg, #cb0035 0%, #e06a00 85%);
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent;
    margin: 0 !important;
}

.plans .plan .plan-features .order:hover .inner {
    background-image: linear-gradient(-300deg, #cb0035 0%, #e06a00 85%);
}

.plans .plan .plan-features .order:hover .inner p {
    background-image: #ffffff;
    -webkit-text-fill-color: #ffffff;
}

.plans .plan.recommended {
    background-image: linear-gradient(-300deg, #cb0035 0%, #e06a00 85%);
    border-radius: 0 0 20px 20px;
}

@media only screen and (max-width: 992px) {
    .plans .plan.recommended {
        border-radius: 20px;
    }
}

.plans .plan.recommended .plan-price {
    background-image: linear-gradient(-300deg, #cb0035 0%, #e06a00 85%);
    position: relative;
    border-radius: 10px 10px 0 0;
}

@media only screen and (max-width: 992px) {
    .plans .plan.recommended .plan-price {
        border-radius: 20px 20px 0 0;
    }
}

.plans .plan.recommended .plan-price:after {
    content: "推荐购买";
    position: absolute;
    bottom: 95%;
    left: 0%;
    width: 100%;
    font-size: 14px;
    background-image: linear-gradient(-300deg, #d42e1e 0%, #dc550b 50%, #e06a00 80%);
    border-radius: 20px 20px 0 0;
    color: #e7e7e7;
    padding: 15px 0 0 0;
    font-weight: lighter;
}

@media only screen and (max-width: 992px) {
    .plans .plan.recommended .plan-price:after {
        display: none;
    }
}

.plans .plan.recommended .plan-price .price-wrap {
    background: #e7e7e7;
}

.plans .plan.recommended .plan-price .price-wrap .price-inner {
    background-image: linear-gradient(-300deg, #cb0035 0%, #e06a00 85%);
}

.plans .plan.recommended .plan-price .price-wrap .price-inner h5 {
    position: relative;
    display: inline-block;
    background: #e7e7e7;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: #e7e7e7;
}

.plans .plan.recommended .plan-price .price-wrap .price-inner h5:after {
    background: #e7e7e7;
    -webkit-text-fill-color: #e7e7e7;
}

.plans .plan.recommended .plan-price .price-wrap .price-inner h6 {
    background: #e7e7e7;
    -webkit-text-fill-color: #e7e7e7;
}

.plans .plan.recommended .plan-price p {
    background-image: #e7e7e7;
    -webkit-text-fill-color: #e7e7e7;
}

.plans .plan.recommended .order {
    background-image: linear-gradient(-300deg, #cb0035 0%, #e06a00 85%) !important;
}

/*////////////////////// FAQ //////////////////////*/
.faq {
    position: relative;
}

.faq .accordion {
    margin-top: 50px;
}

@media only screen and (max-width: 768px) {
    .faq .accordion {
        margin-top: 30px;
    }
}

.faq .accordion .card {
    margin-bottom: 20px;
    border: none;
    background: #f3f3f3;
    border-radius: 20px !important;
}

@media only screen and (max-width: 768px) {
    .faq .accordion .card {
        margin-bottom: 15px;
    }
}

.faq .accordion .card .card-header {
    position: relative;
    display: block;
    width: 100%;
    background: transparent;
    cursor: pointer;
    border: none;
    padding: 40px 40px 40px 85px;
    color: #575757;
}

@media only screen and (max-width: 768px) {
    .faq .accordion .card .card-header {
        padding: 18px 25px 18px 55px;
    }
}

.faq .accordion .card .card-header:after {
    content: "\f055";
    font-family: "FontAwesome";
    position: absolute;
    font-size: 37px;
    top: 23px;
    left: 35px;
    padding: 2px;
    background-image: linear-gradient(-300deg, #cb0035 0%, #e06a00 85%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

@media only screen and (max-width: 768px) {
    .faq .accordion .card .card-header:after {
        font-size: 30px;
        top: 5px;
        left: 15px;
    }
}

.faq .accordion .card .card-header[aria-expanded="true"]:after {
    content: "\f056";
}

.faq .accordion .card .card-body {
    padding: 0px 50px 40px 85px;
    color: #575757;
    font-weight: lighter;
}

@media only screen and (max-width: 768px) {
    .faq .accordion .card .card-body {
        padding: 0px 25px 18px 55px;
        font-size: 14px;
    }
}

@media only screen and (max-width: 576px) {
    .faq .accordion .card .card-body {
        padding: 0px 20px 18px 20px;
    }
}

/*////////////////////// NEWS //////////////////////*/
.news {
    position: relative;
    background: #f2f2f2;
}

.news .news-list {
    margin-top: 30px;
}

@media only screen and (max-width: 576px) {
    .news .news-list {
        margin-top: 20px;
        padding: 0;
    }
}

.news .news-list .news-item {
    margin-left: -15px;
    margin-right: -15px;
}

.news .news-list .news-item .inner {
    border-radius: 10px;
    overflow: hidden;
    margin: 30px 30px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

@media only screen and (max-width: 768px) {
    .news .news-list .news-item .inner {
        margin: 0px 30px 20px 30px;
    }
}

.news .news-list .news-item .inner:hover {
    -webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}

.news .news-list .news-item .inner:hover .news-img img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.news .news-list .news-item .inner .news-img {
    position: relative;
    overflow: hidden;
}

.news .news-list .news-item .inner .news-img img {
    display: block;
    width: 100%;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.news .news-list .news-item .inner .news-content {
    padding: 30px 15px 15px 15px;
    background: #ffffff;
}

@media only screen and (max-width: 576px) {
    .news .news-list .news-item .inner .news-content {
        padding: 15px;
    }
}

.news .news-list .news-item .inner .news-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #222;
    margin-bottom: 15px;
    min-height: 50px;
}

@media only screen and (max-width: 768px) {
    .news .news-list .news-item .inner .news-content h3 {
        min-height: auto;
    }
}

@media only screen and (max-width: 576px) {
    .news .news-list .news-item .inner .news-content h3 {
        margin-bottom: 10px;
        font-size: 16px;
    }
}

.news .news-list .news-item .inner .news-content p {
    padding-bottom: 20px;
    border-bottom: 1px solid #f7f7f7;
    margin-bottom: 0;
    color: #748182;
    min-height: 120px;
}

@media only screen and (max-width: 768px) {
    .news .news-list .news-item .inner .news-content p {
        min-height: auto;
    }
}

@media only screen and (max-width: 576px) {
    .news .news-list .news-item .inner .news-content p {
        min-height: auto;
        font-size: 14px;
    }
}

.news .news-list .news-item .inner .news-content .news-meta {
    padding-top: 15px;
}

@media only screen and (max-width: 576px) {
    .news .news-list .news-item .inner .news-content .news-meta {
        padding-top: 10px;
    }
}

.news .news-list .news-item .inner .news-content .news-meta .read-more {
    background-image: linear-gradient(-300deg, #cb0035 0%, #e06a00 85%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.news .news-list .news-item .inner .news-content .news-meta .read-more:hover {
    -webkit-text-fill-color: #cb0035;
}

.news .news-list .news-item .inner .news-content .news-meta .date {
    float: right;
    font-size: 11px;
    padding-top: 7px;
}

.news .news-list .news-item .inner .news-content .news-meta span {
    font-size: 13px;
    color: #748182;
}

.news .more {
    text-align: center;
    padding: 40px 15px 0 15px;
}

@media only screen and (max-width: 576px) {
    .news .more {
        padding: 20px 15px 0 15px;
    }
}

/*////////////////////// PLANS //////////////////////*/
.download {
    position: relative;
    background-image: linear-gradient(-300deg, #cb0035 0%, #e06a00 85%);
    padding-bottom: 150px;
}

@media only screen and (max-width: 768px) {
    .download {
        padding-bottom: 80px;
    }
}

.download .newsletter {
    position: relative;
    padding: 0;
}

@media only screen and (max-width: 576px) {
    .download .newsletter {
        padding: 0px;
    }
}

.download .newsletter input {
    width: 100%;
    padding: 25px 130px 25px 25px;
    border-radius: 10px;
    border: none;
    background: #ffffff;
    -webkit-box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.1);
    -webkit-transition: 0.2s;
    transition: 0.2s;
    border: none;
}

@media only screen and (max-width: 768px) {
    .download .newsletter input {
        padding: 20px;
        font-size: 16px;
    }
}

.download .newsletter input:focus {
    -webkit-box-shadow: 0px 13px 13px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 13px 13px 0px rgba(0, 0, 0, 0.2);
}

.download .newsletter button {
    position: absolute;
    top: 50%;
    right: 8px;
    height: 80%;
    -webkit-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
    background-image: linear-gradient(-300deg, #cb0035 0%, #e06a00 85%);
    font-size: 16px;
    color: #ffffff;
    border-radius: 8px;
    padding: 0 15px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    overflow: hidden;
    text-align: center;
    border: none;
}

.download .newsletter button:hover {
    background-image: linear-gradient(-300deg, #cb0035 25%, #e06a00 100%);
}

@media only screen and (max-width: 768px) {
    .download .newsletter button {
        position: relative;
        top: auto;
        right: auto;
        -webkit-transform: none;
        transform: none;
        padding: 20px 15px;
        width: 100%;
        border: 0px solid #fff;
        margin-top: 15px;
        -webkit-box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.1);
        box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.1);
    }
}

.download .newsletter button i {
    margin-left: 10px;
}

.download .buttons {
    text-align: center;
    margin: 70px 0 50px 0;
}

@media only screen and (max-width: 768px) {
    .download .buttons {
        display: block;
        margin: 30px 0 50px 0;
    }
}

.download .buttons .btn-main {
    min-width: 170px;
    margin: 0px 8px;
    border-radius: 10px;
}

.download .buttons .btn-main .inner {
    /* padding: 12px 30px 10px 30px; */
}

@media only screen and (max-width: 768px) {
    .download .buttons .btn-main {
        min-width: 200px;
        display: block;
        margin: 10px auto;
        font-size: 16px;
    }
}

.download .buttons .btn-main i {
    font-size: 23px;
    vertical-align: top;
    margin-right: 10px;
}

/*////////////////////// CONTACT //////////////////////*/
.contact {
    position: relative;
}

.contact .info .part {
    margin-top: 25px;
}

@media only screen and (max-width: 992px) {
    .contact .info .part {
        margin-top: 0px;
    }
}

.contact .info .sub {
    display: inline-block;
}

.contact .info .sub.icon {
    min-width: 45px;
    margin-right: 45px;
    text-align: center;
    font-size: 40px;
}

@media only screen and (max-width: 1200px) {
    .contact .info .sub.icon {
        margin-right: 15px;
    }
}

@media only screen and (max-width: 576px) {
    .contact .info .sub.icon {
        min-width: 30px;
        font-size: 30px;
    }
}

.contact .info .sub.icon i {
    margin-top: -15px;
    background-image: linear-gradient(-300deg, #cb0035 0%, #e06a00 85%);
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent;
}

.contact .info .sub .contact-title {
    background-image: linear-gradient(-300deg, #cb0035 0%, #e06a00 85%);
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    margin-bottom: 0;
    font-size: 18px;
}

@media only screen and (max-width: 992px) {
    .contact .info .sub .contact-title {
        font-size: 15px;
    }
}

.contact .info .sub .contact-subtitle {
    color: #9e9e9e;
}

@media only screen and (max-width: 576px) {
    .contact .info .sub .contact-subtitle {
        font-size: 14px;
    }
}

.contact .contact-form .form-control {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    height: 50px;
    border: none;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    background: #f1f1f1;
    padding: 15px 20px;
}

.contact .contact-form .form-control:focus {
    -webkit-box-shadow: 0px 10px 30px -8px #cb0035 !important;
    box-shadow: 0px 10px 20px -20px #666 !important;
}

.contact .contact-form textarea {
    height: auto !important;
}

.contact .contact-form .btn-holder {
    margin-top: 20px;
    text-align: right;
}

@media only screen and (max-width: 992px) {
    .contact .contact-form .btn-holder {
        text-align: center;
    }
}

/*////////////////////// FOOTER //////////////////////*/
footer {
    background: #191919;
    color: #ccc;
}

footer .top {
    text-align: left;
    padding: 60px 0 45px 0;
}

footer .top .footer-about {
    padding-right: 75px;
}

@media only screen and (max-width: 992px) {
    footer .top .footer-about {
        padding-right: 15px;
    }
}

footer .top .footer-about .logo {
    max-width: 200px;
    margin-bottom: 15px;
}

@media only screen and (max-width: 992px) {
    footer .top .footer-about .logo {
        max-width: 150px;
        margin-bottom: 10px;
        display: block;
    }
}

footer .top p {
    font-weight: lighter;
    font-size: 15px;
    margin-top: 15px;
}

footer .top p b {
    font-weight: 900;
}

@media only screen and (max-width: 992px) {
    footer .top p {
        text-align: center;
    }
}

footer .top h5 {
    color: #eee;
    font-size: 18px;
    font-weight: bolder;
    line-height: 2;
}

@media only screen and (max-width: 992px) {
    footer .top h5 {
        text-align: center;
    }
}

footer .top ul li a {
    font-size: 16px;
    line-height: 2;
    color: #ffffff;
    font-weight: lighter;
}

footer .top ul li a:hover {
    color: #ffffff;
}

@media only screen and (max-width: 992px) {
    footer .top ul li {
        text-align: center;
    }
}

footer .top .newsletter {
    position: relative;
    margin-top: 25px;
}

@media only screen and (max-width: 576px) {
    footer .top .newsletter {
        padding: 0px;
    }
}

footer .top .newsletter input {
    width: 100%;
    padding: 15px 120px 15px 15px;
    border-radius: 10px;
    border: none;
    background: #ffffff;
    -webkit-box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.1);
    -webkit-transition: 0.2s;
    transition: 0.2s;
    border: none;
}

@media only screen and (max-width: 576px) {
    footer .top .newsletter input {
        padding: 10px;
        font-size: 16px;
        border-radius: 8px;
    }
}

footer .top .newsletter input:focus {
    -webkit-box-shadow: 0px 13px 13px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 13px 13px 0px rgba(0, 0, 0, 0.2);
}

footer .top .newsletter button {
    position: absolute;
    top: 50%;
    right: 8px;
    height: 80%;
    -webkit-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
    background-image: linear-gradient(-300deg, #cb0035 0%, #e06a00 85%);
    font-size: 14px;
    color: #ffffff;
    border-radius: 8px;
    padding: 0 15px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    overflow: hidden;
    text-align: center;
    border: none;
}

footer .top .newsletter button:hover {
    background-image: linear-gradient(-300deg, #cb0035 25%, #e06a00 100%);
}

@media only screen and (max-width: 576px) {
    footer .top .newsletter button {
        position: relative;
        top: auto;
        right: auto;
        -webkit-transform: none;
        transform: none;
        padding: 10px 15px;
        width: 100%;
        border: 0px solid #fff;
        margin-top: 15px;
        -webkit-box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.1);
        box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.1);
        font-size: 16px;
    }
}

footer .bottom {
    position: relative;
}

footer .bottom:after {
    content: "";
    position: absolute;
    top: 0;
    left: 15px;
    width: calc(100% - 30px);
    height: 1px;
    background: #666;
}

footer .bottom p {
    margin-top: 20px;
    margin-bottom: 60px;
    color: #aaa;
    font-size: 14px;
}

@media only screen and (max-width: 768px) {
    footer .bottom p {
        text-align: center;
        margin-top: 10px;
        margin-bottom: 10px;
    }
}

footer .bottom .social {
    text-align: right;
    margin-top: 15px;
}

@media only screen and (max-width: 768px) {
    footer .bottom .social {
        text-align: center;
        margin-top: 0px;
        margin-bottom: 20px;
    }
}

footer .bottom .social ul li {
    display: inline-block;
}

footer .bottom .social ul li a {
    position: relative;
    display: inline-block;
    margin-left: 20px;
    font-size: 20px;
}

@media only screen and (max-width: 768px) {
    footer .bottom .social ul li a {
        margin-left: 10px;
        margin-right: 10px;
    }
}

footer .bottom .social ul li a:hover {
    color: #ffffff;
}
