


/*--------------------------------------------------------------
# pitch Section
--------------------------------------------------------------*/
#pitch {
    width: 100%;
    height: 100vh;
    background: url("../../img/shades_bg.png") center center no-repeat;
    background-size: cover;
}

    #pitch .container, #pitch .container-fluid {
        padding-top: 84px;
    }

    #pitch h1 {
        margin: 0;
        font-size: 52px;
        font-weight: 700;
        line-height: 64px;
        color: #fff;
    }

    #pitch h2 {
        color: rgba(255, 255, 255, 0.8);
        margin: 10px 0 0 0;
        font-size: 20px;
    }

    #pitch .btn-get-started {
        font-family: "Poppins", sans-serif;
        font-weight: 500;
        font-size: 16px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 10px 28px;
        border-radius: 5px;
        transition: 0.5s;
        margin-top: 30px;
        color: #fff;
        border: 2px solid #fff;
        font-weight: 700;
    }

        #pitch .btn-get-started:hover {
            background: #fff;
            color: #2d4464;
        }

    #pitch .btn-get-started-order {
        font-family: "Poppins", sans-serif;
        font-weight: 500;
        font-size: 16px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 10px 28px;
        border-radius: 5px;
        transition: 0.5s;
        margin-top: 30px;
        color: #fff;
        border: 2px solid #fff;
        background: #008f75;
        font-weight: 700;
    }

        #pitch .btn-get-started-order:hover {
            background: #fff;
            color: #2d4464;
        }

    #pitch .animated {
        animation: up-down 2s ease-in-out infinite alternate-reverse both;
    }

@media (min-width: 1200px) {
    #pitch {
        background-attachment: fixed;
    }
}

@media (max-width: 1000px) {
    #pitch {
        text-align: center;
    }

        #pitch .container, #pitch .container-fluid {
            padding-top: 68px;
        }



        #pitch .pitch-img {
            text-align: center;
        }

            #pitch .pitch-img img {
                width: 60%;
            }
}

@media (max-width: 768px) {
    #pitch h1 {
        font-size: 26px;
        line-height: 36px;
    }

    #pitch h2 {
        font-size: 18px;
        line-height: 24px;
    }

    #pitch .pitch-img img {
        width: 40%;
    }
}

@media (max-width: 575px) {
    #pitch .pitch-img img {
        width: 40%;
    }
}

@media (max-width: 575px), (max-height: 600px) {
    #pitch {
        height: auto;
    }
}

@-webkit-keyframes up-down {
    0% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-10px);
    }
}

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-10px);
    }
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 70px 0;
    overflow: hidden;
}

.section-bg {
    background-color: #f9f8ff;
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
}

    .section-title h2 {
        font-size: 32px;
        font-weight: bold;
        text-transform: uppercase;
        margin-bottom: 20px;
        padding-bottom: 20px;
        position: relative;
    }

        .section-title h2::after {
            content: "";
            position: absolute;
            display: block;
            width: 50px;
            height: 3px;
            background: #44678d;
            bottom: 0;
            left: calc(50% - 25px);
        }

    .section-title p {
        margin-bottom: 0;
    }

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
    background-color: #fff;
    padding: 120px 0;
}

    .about .content h3 {
        font-weight: 600;
        font-size: 32px;
        color: #2c4964;
    }

    .about .content ul {
        list-style: none;
        padding: 0;
    }

        .about .content ul li {
            padding-bottom: 15px;
            font-size: 1.2rem;
        }

        .about .content ul i {
            font-size: 30px;
            padding-right: 10px;
            color: #44678d;
        }

    .about .content p:last-child {
        margin-bottom: 0;
    }

.read-more {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 50px 10px 28px;
    border-radius: 5px;
    transition: 0.5s;
    color: #fff;
    background: linear-gradient(45deg, #498ad0 0%, #44678d 100%);
    position: relative;
    text-align: center;
}

    .read-more:hover {
        background: linear-gradient(180deg, #44678d 0%, #498ad0 100%);
        color: #fff;
    }

    .read-more i {
        font-size: 22px;
        position: absolute;
        right: 10px;
        top: 12px;
    }


/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features {
    background-color: #fff;
}

.features .icon-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 5px 0 10px 60px;
}

.features .icon-box i {
    font-size: 48px;
    float: left;
    color: #44678d;
}

.features .icon-box p {
    font-size: 15px;
    color: rgba(28, 47, 65, 1);
    margin-left: 60px;
}

.features .icon-box a {
    font-size: 15px;
    width: 100%;
}


.features .image {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 400px;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
    padding-top: 150px;
}

    .contact .info-box {
        color: #F7F9FC;
        text-align: center;
        box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
        padding: 20px 0 30px 0;
        background: #fff;
    }

        .contact .info-box i {
            font-size: 32px;
            color: #44678d;
            border-radius: 50%;
            padding: 8px;
        }

        .contact .info-box h3 {
            font-size: 20px;
            color: #2c4964;
            font-weight: 700;
            margin: 10px 0;
        }

        .contact .info-box p {
            padding: 0;
            line-height: 24px;
            font-size: 14px;
            margin-bottom: 0;
            color: #44678d;
        }

    .contact .gvb-email-form {
        box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
        padding: 30px;
        background: #fff;
    }

        .contact .gvb-email-form .error-message {
            display: none;
            color: #fff;
            background: #ed3c0d;
            text-align: left;
            padding: 15px;
            font-weight: 600;
        }

            .contact .gvb-email-form .error-message br + br {
                margin-top: 25px;
            }

        .contact .gvb-email-form .sent-message {
            display: none;
            color: #fff;
            background: #18d26e;
            text-align: center;
            padding: 15px;
            font-weight: 600;
        }

        .contact .gvb-email-form .loading {
            display: none;
            background: #fff;
            text-align: center;
            padding: 15px;
        }

            .contact .gvb-email-form .loading:before {
                content: "";
                display: inline-block;
                border-radius: 50%;
                width: 24px;
                height: 24px;
                margin: 0 10px -6px 0;
                border: 3px solid #18d26e;
                border-top-color: #eee;
                -webkit-animation: animate-loading 1s linear infinite;
                animation: animate-loading 1s linear infinite;
            }

        .contact .gvb-email-form input, .contact .gvb-email-form textarea {
            border-radius: 5px;
            box-shadow: none;
            font-size: 14px;
        }

            .contact .gvb-email-form input:focus, .contact .gvb-email-form textarea:focus {
                border-color: #498ad0;
            }

        .contact .gvb-email-form input {
            padding: 10px 15px;
        }

        .contact .gvb-email-form textarea {
            padding: 12px 15px;
        }

        .contact .gvb-email-form button[type=submit] {
            background: #44678d;
            border: 0;
            padding: 10px 24px;
            color: #fff;
            transition: 0.4s;
            border-radius: 5px;
        }

            .contact .gvb-email-form button[type=submit]:hover {
                background: rgb(44, 116, 216, 0.80);
            }

@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
