/*==========================
CSS INDEX
============================
1. Headser-Area
2. Mainmenu-Area
2.1 DropDown-Menu
3. Button-Design
4. Page-Title
5. Service-Box
6. Feature-Box 
7. Testimonial-Area
8. Price-Box
9. Gallery-Area
10. FAQ-Box
11. Qustion-Box-v2
12. Footer-Area
12.1 Footer-Widget-Area
12.2 Social-Menu
12.3 Subscribe-Form
13. Sponsor-Area
14. Scroll-Button
==========================*/

/*-- 1. Headser-Area --*/

.header-area {
    width: 100%;
    min-height: 100vh;
    padding-top: 100px;
    background-size: 100% auto;
    background-position: bottom center;
    background-repeat: no-repeat;
    display: table;
    z-index: 1;
}

.header-area.v2 {
    background-size: 100% 100%;
}
.overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.overlay.blue {
    background: #5bb1ef;
    background: linear-gradient(45deg, #5bb1ef 0%, #0088ea 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5bb1ef', endColorstr='#0088ea', GradientType=1);
}

.overlay.dark-blue {
    background: #344998;
    background: linear-gradient(45deg, #344998 0%, #23A8E9 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#344998', endColorstr='#23A8E9', GradientType=1);

}

/*-- 2. Mainmenu-Area --*/

.navbar-brand {
    padding-top: 0px;
}

.mainmenu-area {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    padding: 20px 0;
    white-space: nowrap;
    z-index: 9999;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.mainmenu-area.affix {
    position: fixed;
    background-color: #35424b;
    padding: 10px 0;
}
.mainmenu-area.affix.menu2 {
    background-color: #833ce0;
}

.mainmenu-area ul.nav > li {
    padding: 0 15px;
}

.mainmenu-area ul.nav > li > i {
    display: inline-block;
    position: relative;
    top: 3px;
    color: #ffffff;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.mainmenu-area ul.nav > li:hover > i {
    top: -3px;
}

.mainmenu-area ul.nav > li > a {
    color: #cccccc;
    display: inline-block;
    position: relative;
    font-size: 16px;
    font-weight: 400;
    position: relative;
    padding: 15px 0;
}

.mainmenu-area ul.nav > li > a:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #1992ec;
    border-radius: 5px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.mainmenu-area ul.nav > li > a:focus,
.mainmenu-area ul.nav > li > a:hover {
    background: none;

}

.mainmenu-area ul.nav > li:hover > a:after {
    width: 50%
}

.mainmenu-area ul.nav > li.active > a:after {
    width: 100%;
}

/*-- 2.1 DropDown-Menu --*/

.mainmenu-area ul li {
    position: relative;
}

.mainmenu-area ul ul {
    list-style: none;
    margin: 0;
    padding: 10px;
    background-color: #ffffff;
    border-radius: 5px;
    border: 1px solid #e9f4fb;
}

.mainmenu-area ul ul li {
    display: block;
    min-width: 200px;
}

.mainmenu-area ul ul li i {
    position: absolute;
    right: 10px;
    top: 13px;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.mainmenu-area ul ul li:hover > i {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}

.mainmenu-area ul ul li a {
    display: block;
    padding: 5px 15px;
    font-size: 14px;
    font-weight: 700;
}

.mainmenu-area ul ul li:hover > a {
    color: #1892EB;
}

.mainmenu-area ul ul.sub-menu {
    position: absolute;
    left: 0;
    top: calc(100% + 30px);
    opacity: 0;
    visibility: hidden;
    z-index: 9;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.mainmenu-area ul ul.sub-menu ul.sub-menu {
    left: 100%;
    top: 30px;
}

.mainmenu-area ul li:hover > ul.sub-menu {
    top: 100%;
    opacity: 1;
    visibility: visible;
}

.mainmenu-area ul ul li:hover > ul.sub-menu {
    top: 0;
}

.mainmenu-area ul.nav > li:nth-last-child(3) ul.sub-menu ul.sub-menu,
.mainmenu-area ul.nav > li:nth-last-child(2) ul.sub-menu ul.sub-menu,
.mainmenu-area ul.nav > li:last-child ul.sub-menu ul.sub-menu {
    left: auto;
    right: 100%;
}

.mainmenu-area ul.nav > li:nth-last-child(3) ul.sub-menu > li:hover > i,
.mainmenu-area ul.nav > li:nth-last-child(2) ul.sub-menu > li:hover > i,
.mainmenu-area ul.nav > li:last-child ul.sub-menu > li:hover > i {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}


/*-- 3. Button-Design --*/

.bttn-1 {
    display: inline-block;
    padding: 10px 30px;
    background-color: #354a97;
    color: #ffffff;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
}

.bttn-1:hover {
    background-color: #1b254b;
    color: #ffffff;
}

.bttn-2 {
    display: inline-block;
    padding: 10px 30px;
    background-color: #daeffd;
    color: #1992ec;
    border-radius: 3px;
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
}

.bttn-2:hover {
    background-color: #1992ec;
    color: #ffffff;
}


.bttn-3 {
    display: inline-block;
    padding: 10px 10px;
    background-color: transparent;
    color: #0297f3;
    border-radius: 3px;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    border: 2px solid #0297f3;
}

.bttn-3:hover {
    background-color: #0297f3;
    color: #ffffff;
}


.bttn-4 {
    display: inline-block;
    padding: 10px 30px;
    background-color: #44bbff;
    color: #ffffff;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
}

.bttn-4:hover {
    background-color: #0091e6;
    color: #ffffff;
}


.bttn-5 {
    display: inline-block;
    padding: 10px 30px;
    background-color: #0ca675;
    color: #ffffff;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
}

.bttn-5:hover {
    background-color: #0ca675;
    color: #ffffff;
}

.bttn-add {
    display: inline-block;
    padding: 10px 10px;
    background-color: transparent;
    color: #10d596;
    border-radius: 3px;
    font-weight: 10;
    font-size: 20px;
    text-transform: uppercase;
    border: 2px solid #0297f3;
    width: 60%;
}

.bttn-add:hover {
    background-color: #0297f3;
    color: #ffffff;
}

.bttn-profile {
    display: inline-block;
    padding: 10px 10px;
    background-color: transparent;
    color: #0297f3;
    border-radius: 3px;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    border: 2px solid #0297f3;
}

.bttn-profile:hover {
    background-color: #0297f3;
    color: #ffffff;
}

.bttn-device-login {
    position: absolute;
    animation-name: example;
    animation-duration: 10s;
    top: 30%;
    left: 25%;
    width: 50%;
    height: 10%;
    padding: 20px 20px;
    background-color: #000000;
    color: #0297f3;
    border-radius: 3px;
    font-weight: 500;
    font-size: 36px;
    text-transform: uppercase;
    border: 2px solid #0297f3;
}

.bttn-device-login:hover {
    background-color: #0297f3;
    color: #ffffff;
}

/*-- 4. Page-Title --*/

.page-title .title {
    position: relative;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.page-title .title:before,
.page-title .title:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 8px;
    width: 60px;
    height: 2px;
    display: block;
    background-color: #1992ec;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    border-radius: 5px;
}

.page-title .title:before {
    width: 40px;
    bottom: 0;
}

.page-title .title.purple:before,
.page-title .title.purple:after {
    background-color: #833ce0;
}

.text-white .page-title .title:before,
.text-white .page-title .title:after {
    background-color: #ffffff;
}



/*-- 8. Price-Box ---*/

.price-box {
    border-radius: 5px;
    padding: 60px 30px;
    background-color: #35424b;
    text-align: center;
    -webkit-box-shadow: 0 0 50px 0 rgba(177, 177, 177, 0.2);
    box-shadow: 0 0 50px 0 rgba(177, 177, 177, 0.2);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform: translateY(0);
    transform: translateY(0)
}

.price-box:hover {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
    -webkit-box-shadow: 0 5px 50px 0 rgba(177, 177, 177, 0.4);
    box-shadow: 0 5px 50px 0 rgba(177, 177, 177, 0.4);
}

.price-box .title {
    color: #009ff5;
    margin-bottom: 5px;
    font-size: 18px;
    font-weight: 500;
}

.price-box .price-rate {
    color: #009ff5;
    font-size: 40px;
    line-height: 1.5em;
    font-weight: 500;
}

.price-box .price-time {
    color: #009ff5;
    font-size: 24px;
    font-weight: 500;
}

.price-box .price-content {
    margin-top: 30px;
    margin-bottom: 30px;
    color: #ffffff;
}

.price-box .price-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.price-box .price-content ul li {
    display: block;
}

.price-box.blue,
.price-box.purple {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.price-box.blue:hover *,
.price-box.purple:hover * {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    color: #ffffff;
}

.price-box.blue:hover a:hover,
.price-box.purple:hover a:hover {
    background-color: #ffffff;
    color: #21a8e8;
}

.price-box.blue:hover a,
.price-box.purple:hover a {
    border-color: #ffffff;
}

.price-box.blue:before,
.price-box.purple:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #b77cd4;
    background: linear-gradient(135deg, #b77cd4 0%, #7832e2 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b77cd4', endColorstr='#7832e2', GradientType=1);
    z-index: -1;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    opacity: 0;
}

.price-box.blue:before {
    background: #21a8e8;
    background: linear-gradient(135deg, #354a97 0%, #21a8e8 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#354a97', endColorstr='#21a8e8', GradientType=1);
}

.price-box.blue:hover:before,
.price-box.purple:hover:before {
    opacity: 1;
}

/*-- 8. green-Box ---*/

.green-box {
    border-radius: 5px;
    padding: 10px 10px;
    background-color: #35424b;
    text-align: center;
    -webkit-box-shadow: 0 0 50px 0 rgba(177, 177, 177, 0.2);
    box-shadow: 0 0 50px 0 rgba(177, 177, 177, 0.2);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform: translateY(0);
    transform: translateY(0)
}

.green-box:hover {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
    -webkit-box-shadow: 0 5px 50px 0 rgba(177, 177, 177, 0.4);
    box-shadow: 0 5px 50px 0 rgba(177, 177, 177, 0.4);
}

.green-box .title {
    color: #009ff5;
    margin-bottom: 5px;
    font-size: 18px;
    font-weight: 500;
}

.green-box .price-rate {
    color: #3dcc49;
    font-size: 40px;
    line-height: 1.5em;
    font-weight: 500;
}

.green-box .price-time {
    color: #3dcc49;
    font-size: 24px;
    font-weight: 500;
}

.green-box .price-content {
    margin-top: 30px;
    margin-bottom: 30px;
    color: #3dcc49;
}

.green-box .price-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.green-box .price-content ul li {
    display: block;
}

.green-box.blue,
.green-box.purple {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.green-box.blue:hover *,
.green-box.purple:hover * {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    color: #ffffff;
}

.green-box.blue:hover a:hover,
.green-box.purple:hover a:hover {
    background-color: #ffffff;
    color: #21a8e8;
}

.green-box.blue:hover a,
.green-box.purple:hover a {
    border-color: #ffffff;
}

.green-box.blue:before,
.green-box.purple:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #b77cd4;
    background: linear-gradient(135deg, #b77cd4 0%, #7832e2 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b77cd4', endColorstr='#7832e2', GradientType=1);
    z-index: -1;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    opacity: 0;
}

.green-box.blue:before {
    background: #21a8e8;
    background: linear-gradient(135deg, #354a97 0%, #21a8e8 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#354a97', endColorstr='#21a8e8', GradientType=1);
}

.green-box.blue:hover:before,
.green-box.purple:hover:before {
    opacity: 1;
}

/*-- 8. machine-Box ---*/

.machine-box {
    border-radius: 5px;
    padding: 10px 10px;
    background-color: #35424b;
    text-align: center;
    -webkit-box-shadow: 0 0 50px 0 rgba(177, 177, 177, 0.2);
    box-shadow: 0 0 50px 0 rgba(177, 177, 177, 0.2);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform: translateY(0);
    transform: translateY(0)
}

.machine-box:hover {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
    -webkit-box-shadow: 0 5px 50px 0 rgba(177, 177, 177, 0.4);
    box-shadow: 0 5px 50px 0 rgba(177, 177, 177, 0.4);
}

.machine-box .title {
    color: #009ff5;
    margin-bottom: 5px;
    font-size: 18px;
    font-weight: 500;
}

.machine-box .price-rate {
    color: #009ff5;
    font-size: 40px;
    line-height: 1.5em;
    font-weight: 500;
}

.machine-box .price-time {
    color: #009ff5;
    font-size: 24px;
    font-weight: 500;
}

.machine-box .price-content {
    margin-top: 30px;
    margin-bottom: 30px;
    color: #686b75;
}

.machine-box .price-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.machine-box .price-content ul li {
    display: block;
}

.machine-box.blue,
.machine-box.purple {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.machine-box.blue:hover *,
.machine-box.purple:hover * {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    color: #ffffff;
}

.machine-box.blue:hover a:hover,
.machine-box.purple:hover a:hover {
    background-color: #ffffff;
    color: #21a8e8;
}

.machine-box.blue:hover a,
.machine-box.purple:hover a {
    border-color: #ffffff;
}

.machine-box.blue:before,
.machine-box.purple:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #b77cd4;
    background: linear-gradient(135deg, #b77cd4 0%, #7832e2 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b77cd4', endColorstr='#7832e2', GradientType=1);
    z-index: -1;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    opacity: 0;
}

.machine-box.blue:before {
    background: #21a8e8;
    background: linear-gradient(135deg, #354a97 0%, #21a8e8 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#354a97', endColorstr='#21a8e8', GradientType=1);
}

.machine-box.blue:hover:before,
.machine-box.purple:hover:before {
    opacity: 1;
}

/*-- 12. Footer-Area --*/

.footer-area {
    padding-top: 100px;
    padding-bottom: 70px;
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-color: #000000;
}

.footer-area.v1 {
    padding-top: 160px;
}

.footer-area.v2 {
    background-image: url('images/footer-bg-2.png');
    background-size: 100% 100%;
    background-position: bottom center;
    padding-top: 350px;
}

.footer-area.v3 {
    background-image: url('images/footer-bg-3.png');
    background-size: 100% 100%;
}

/*-- 12.1 Footer-Widget-Area --*/

.footer-widget-area .widget {
    margin-bottom: 30px;
}

.footer-widget-area .widget .widget-title {
    font-size: 20px;
}

.footer-widget-area .widget ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-widget-area .widget ul li {
    margin-bottom: 5px;
}

.footer-widget-area .widget ul li:last-child {
    margin-bottom: 0;
}


.footer-widget-area .widget ul li a {
    color: #686b75;
}

.footer-widget-area .widget ul li a:hover {
    color: #0297f3;
}

.footer-widget-area .widget ul li a:before {
    content: "\f105";
    font-family: 'FontAwesome';
    margin-right: 10px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.footer-widget-area .widget ul li a:hover:before {
    margin-right: 15px;
}

.footer-area.v4 .footer-widget-area .widget ul li a:hover {
    color: #1cc9bd
}

/*-- 12.2 Social-Menu --*/

.social-menu a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
}


/*-- 14. Scroll-Button --*/

#scrollUp {
    right: 30px;
    bottom: 30px;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    background-color: #4C84FF;
    border-radius: 3px;
    color: #ffffff;
}

#scrollUp:hover {
    background-color: #1a62ff;
}


/*-- Preloader --*/

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background-color: #ffffff;
}

.preloader .icon {
    position: absolute;
    top: calc(50% - 15px);
    left: calc(50% - 15px);
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    border-radius: 100%;
    color: #ffffff;
    z-index: 2;
    opacity: 0.5;
    -webkit-animation: rotating 1s linear infinite;
    animation: rotating 1s linear infinite;
}

@keyframes rotating {
    from {
        transform: rotate(0deg);
        -o-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
        -o-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
    }
}

@-webkit-keyframes rotating {
    from {
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
    }
}

.preloader .waves-block .waves {
    background: rgba(91, 177, 239, 0.8);
}
