/* ----------------------------------

Name: main.css
Version: 1.0

-------------------------------------

Table of contents
        
    01. Navbar
    02. Slider
    03. Features
    04. Some Facts
    05. Project
    06. Video
    07. Portfolio
    08. Benifits
    09. Team
    10. Get Started
    11. Testimonials
    12. Project-2
    13. Our Price
    14. Clients
    15. Contact Us
    16. Footer
    17. Page Loading
    18. Media Query
*/

body {
    font-family: 'Nunito', sans-serif;
    background: #ad1714;
}

/*--------------------------------------------------
[1. Start Navbar]
--------------------------------------------------*/
.navbar {
    padding: 15px 0;
    background: linear-gradient(to right, #ffffff 0%,#ffffff 100%);
}
.navbar .nav-item {
    padding: 0;
    margin: 0;
}
.navbar .nav-item .nav-link {
    padding: 0;
    margin: 0 0 0 45px;
    font-size: 15px;
    color: #ffffff;
    font-weight: 600;
    transition: all 0.4s ease-in-out;
}
.navbar .nav-item .nav-link:hover {
    color: #ad1714;
}
.navbar .btn-1 {
    background: #ad1714;
    box-shadow: 1px 1px 30px 0 rgba(0,0,0,0.2);
    border: 1px solid rgba(0,0,0,0);
    text-decoration: none;
    color: #ffffff;
    border-radius: 65px;
    padding: 10px 45px;
    font-size: 15px;
    font-weight: 600;
    margin-left: 45px;
    transition: all 0.2s ease-in;
}
.navbar .btn-1:hover {
    background: transparent;
    border: 1px solid #507bf5;
    box-shadow: 1px 1px 30px 0 rgba(0,0,0,0);
    color: #575265;

}

/*--------------------------------------------------
[2. Start Slider]
--------------------------------------------------*/
.slider {
    background: linear-gradient(to right, #ad1714 0%,#ad1714 100%);
    height: 100vh;
}
.slider .content {
    margin-top: 50px;
}
.slider .content .left h1 {
    font-size: 45px;
    font-weight: 400;
    color: #ffffff;
    line-height: 55px;
    margin: 0;
    padding: 0;
}
.slider .content .left p {
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    line-height: 26px;
    padding: 0;
    margin: 10px 0 30px;
}
.slider .content .left .btn-1 {
    background: #ad1714;
    box-shadow: 1px 1px 30px 0 rgba(0,0,0,0.2);
    text-decoration: none;
    color: #ffffff;
    border-radius: 65px;
    padding: 10px 45px;
    font-size: 15px;
    font-weight: 600;
    display: inline-block;
}
.slider .content .left .btn-2 {
    background: #ad1714;
    border: 1px solid #ffffff;
    text-decoration: none;
    color: #ffffff;
    border-radius: 65px;
    padding: 10px 45px;
    margin-left: 15px;
    font-size: 15px;
    font-weight: 600;
    display: inline-block;
}

/*--------------------------------------------------
[3. Start Features]
--------------------------------------------------*/
.features {
    background:#ad1714 top center no-repeat;
    background-size: cover;
    padding: 120px 0;
}
.features .heading {
    font-size: 30px;
    color: #ad1714;
    font-weight: 700;
    margin-bottom: 15px;
    padding: 0;
}
.features .line {
    background: linear-gradient(to right, #ad1714 0%,#ad1714 100%);
    height: 2px;
    width: 50px;
    margin-bottom: 50px;
    display: inline-block;
}
.features .box {
    background: #ad1714;
    box-shadow: 1px 1px 25px 0 rgba(0,0,0,0.05);
    border-radius: 15px;
    padding: 60px 30px;
    transition: all .4s ease-in-out;
}
.features .box:hover {
    transform: translateY(-15px);
    box-shadow: 1px 1px 25px 0 rgba(0,0,0,0.09);
}
.features .box h3 {
    font-size: 20px;
    color: #3b566e;
    font-weight: 600;
    margin: 25px 0 15px;
    padding: 0;
}
.features .box p {
    font-size: 15px;
    font-weight: 400;
    color: #919aaf;
    line-height: 26px;
    margin: 0;
    padding: 0;
}

/*--------------------------------------------------
[4. Start Some Facts]
--------------------------------------------------*/
.some-facts {
    background: url("../img/bg/some-facts.png") center center no-repeat;
    background-size: cover;
    padding: 120px 0;
}
.some-facts .items h3 {
    color: #ffffff;
    font-size: 30px;
    font-weight: 800;
    padding: 0;
    margin: 20px 0 2px;
}
.some-facts .items h4 {
    font-size: 17px;
    font-weight: 500;
    color: #ffffff;
    padding: 0;
    margin: 0;
}

/*--------------------------------------------------
[5. Start Project]
--------------------------------------------------*/
.project {
    padding: 30px 0;
}
.project .right span {
    font-size: 16px;
    color: #557ff5;
    font-weight: 600;
}
.project .right h2 {
    font-size: 25px;
    color: #3b566e;
    font-weight: 600;
    line-height: 32px;
}
.project .right p {
    font-size: 16px;
    font-weight: 400;
    color: #919aaf;
    line-height: 26px;
    margin: 0;
    padding: 0;
    margin-top: 15px;
    margin-bottom: 40px;
}
.project .right .btn-1 {
    background: #10d596;
    text-decoration: none;
    color: #ffffff;
    border-radius: 65px;
    padding: 10px 45px;
    font-size: 15px;
    font-weight: 600;
}

/*--------------------------------------------------
[6. Start Video]
--------------------------------------------------*/
.video {
    background: url("../img/bg/video-bg.png") center center no-repeat;
    background-size: cover;
    padding: 120px 0;
}
.video-icon .icon {
    background: #ffffff;
    color: #10d596;
    display: inline;
    font-size: 20px;
    padding: 22px 28px;
    border-radius: 200px;
    position: relative;
}

/* Pulse Animation */
.pulse {
    animation: pulse 1s infinite;
    animation-duration: 2s;
}

/* Keyframes */
@keyframes pulse {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
    }
    70% {
        -moz-box-shadow: 0 0 0 50px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 50px rgba(255, 255, 255, 0);
    }
    100% {
        -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/*--------------------------------------------------
[7. Start Portfolio]
--------------------------------------------------*/
.portfolio .single-portfolio-item {
    position: relative;
    padding: 0;
}

.portfolio .single-portfolio-item .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    color: #333333;
    opacity: 0;
    transition: all 0.7s ease-in-out;
}

.portfolio .single-portfolio-item .overlay .content {
    font-size: 20px;
    position: absolute;
    text-decoration: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: #ffffff;
    transition: all 0.2s ease-in;

}

.portfolio .single-portfolio-item .overlay .content h3 {
    font-size: 18px;
    font-weight: 500;
    color: #444444;
    padding: 0;
    margin: 0;
}

.portfolio .single-portfolio-item .overlay .content p {
    font-size: 14px;
    font-weight: 400;
    color: #507bf5;
    margin: 0;
    padding: 0;
    margin-top: 5px;
}

.portfolio .single-portfolio-item .overlay .content a {
    color: #555555;
    text-decoration: none;
    font-size: 20px;
    padding: 0;
    margin: 0;
}

.portfolio .single-portfolio-item:hover .overlay {
    opacity: 0.95;
}

/*--------------------------------------------------
[8. Start Benefits]
--------------------------------------------------*/
.benefits {
    padding: 120px 0;
    background: #f1f7ff;
}
.benefits .heading {
    font-size: 30px;
    color: #3b566e;
    font-weight: 700;
    margin-bottom: 15px;
    padding: 0;
}

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
}
