body {
    font-family: nunito, sans-serif;
    color: #888d99
}

p:last-child {
    margin-bottom: 0
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    color: #444a57
}

button:focus {
    outline: none
}

.btn {
    padding: .575rem 2.8rem;
    border-radius: 100px;
    font-weight: 600;
    box-shadow: 0 15px 51px 0 rgba(0, 0, 0, .24);
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out
}

.btn:hover {
    box-shadow: none;
    -moz-transform: translateY(-5px);
    -webkit-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px)
}

.btn-green {
    color: #fff;
    background: linear-gradient(to right, #67d690 0%, #00a99d 100%);
    border-color: transparent
}

.btn-red {
    color: #fff;
    background: linear-gradient(to right, #ff8790 0%, #da5761 100%);
    border-color: transparent
}

.btn-orange {
    color: #fff;
    background: linear-gradient(to right, #f3ba09 0%, #f39309 100%);
    border-color: transparent
}

.btn-blue {
    color: #fff;
    background: linear-gradient(to right, #0bb2ff 0%, #0082be 100%);
    border-color: transparent
}

.btn-white {
    color: #46495c;
    background: #fff;
    border-color: transparent
}

.btn-green:hover, .btn-red:hover, .btn-orange:hover, .btn-blue:hover {
    color: #fff
}

.section {
    padding-top: 100px;
    padding-bottom: 100px
}

.img-animation {
    -webkit-animation: img-animation 2s infinite;
    animation: img-animation 2s infinite
}

@-webkit-keyframes img-animation {
    0% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px)
    }
    50% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px)
    }
    100% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px)
    }
}

@keyframes img-animation {
    0% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px)
    }
    50% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px)
    }
    100% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px)
    }
}

.navbar {
    padding: 15px;
    background: linear-gradient(135deg, rgba(22, 37, 43, 0) 0%, rgba(22, 37, 43, 0) 100%)
}

.navbar-brand img {
    height: 25px
}

.navbar .nav-item {
    padding: 0;
    margin: 0
}

.navbar .nav-item .nav-link, .footer-nav a {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    padding: 13px 0;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out
}

.navbar .nav-item .nav-link:hover, .footer-nav a:hover {
    color: #0cda78
}

.hero-section {
    background: url(../images/background/slider.png) left bottom no-repeat;
    background-size: cover;
    min-height: 100vh
}

.clients {
    background: #f0ebf5
}

.clients .item {
    cursor: pointer;
    filter: grayscale(.9);
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out
}

.clients .item img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: auto
}

.clients .item:hover {
    filter: grayscale(0)
}

.features .box {
    background: #fff;
    box-shadow: 1px 1px 25px 0 rgba(0, 0, 0, .06);
    border-radius: 10px;
    padding: 40px;
    height: 100%;
}

.features .box h2 {
    font-size: 20px;
    font-weight: 600;
    color: #4b5260;
    margin-top: 20px;
    margin-bottom: 10px
}

.features .box p {
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    margin: 0
}

.features .box:hover img {
    animation: pulse 1s infinite
}

@keyframes pulse {
    0% {
        transform: scale(1.02)
    }
    50% {
        transform: scale(1.1)
    }
    100% {
        transform: scale(1.01)
    }
}

.started {
    background: url(../images/background/started.jpg) center center no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative
}

.started:before {
    content: '';
    background: linear-gradient(135deg, rgb(59, 36, 114) 0%, rgb(113, 64, 145) 100%);
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: block;
    opacity: .9
}

.testimonials {
    background: url(../images/background/testimonials.jpg) center center no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative
}

.testimonials:before {
    content: '';
    background: linear-gradient(135deg, rgb(59, 36, 114) 0%, rgb(113, 64, 145) 100%);
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: block;
    opacity: .9
}

.testimonials .box {
    background: #fff;
    box-shadow: 1px 1px 25px 0 rgba(0, 0, 0, .06);
    border-radius: 10px;
    padding: 50px 100px
}

.team .box {
    background: #fff;
    box-shadow: 1px 1px 25px 0 rgba(0, 0, 0, .06);
    border-radius: 10px;
    padding-top: 40px;
    padding-bottom: 175px;
    position: relative
}

.team .box .img-team {
    display: block;
    width: 220px;
    height: 220px;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
    padding: 10px;
    border: 1px solid #3b2472;
    border-radius: 50%
}

.team .box .img-team img {
    border-radius: 50%;
    padding: 0
}

.team .box .info {
    background: linear-gradient(to right, #714091 0%, #3b2472 100%);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    -webkit-clip-path: polygon(0 48%, 100% 0, 100% 100%, 0% 100%);
    clip-path: polygon(0 48%, 100% 0, 100% 100%, 0% 100%);
    padding: 40px 0;
    padding-top: 90px;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out
}

.team .box .info h3 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0
}

.team .box .info span {
    font-size: 14px;
    font-weight: 300;
    color: #fff
}

.team .box .info .social {
    margin-bottom: -60px;
    opacity: 0;
    -webkit-transition: all .6s ease-in-out;
    -moz-transition: all .6s ease-in-out;
    -ms-transition: all .6s ease-in-out;
    -o-transition: all .6s ease-in-out;
    transition: all .6s ease-in-out
}

.team .box .info .social .icon {
    background: #fff;
    display: inline-block;
    height: 50px;
    width: 50px;
    margin: 0 2px;
    border-radius: 50%;
    font-size: 20px;
    color: #604ae6;
    box-shadow: 0 5px 21px 0 rgba(0, 0, 0, .11);
    position: relative;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out
}

.team .box .info .social .icon:hover {
    -moz-transform: translateY(-7px);
    -webkit-transform: translateY(-7px);
    -o-transform: translateY(-7px);
    -ms-transform: translateY(-7px);
    transform: translateY(-7px)
}

.team .box .info .social .icon i {
    position: absolute;
    top: 50%;
    left: 50%;
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.team .box:hover .social {
    margin-bottom: 0;
    margin-top: 25px;
    opacity: 1
}

.team .box:hover .info {
    padding-top: 120px;
    opacity: .98
}

.team .box .img-team {
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out
}

.team .box:hover .img-team {
    -moz-transform: scale(1.03);
    -webkit-transform: scale(1.03);
    -o-transform: scale(1.03);
    -ms-transform: scale(1.03);
    transform: scale(1.03)
}

.some-fact {
    background: url(../images/background/some-facts.jpg) center center no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative
}

.some-fact:before {
    content: '';
    background: linear-gradient(135deg, rgb(59, 36, 114) 0%, rgb(113, 64, 145) 100%);
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: block;
    opacity: .9
}

.price .box {
    background: #fff;
    box-shadow: 1px 1px 25px 0 rgba(0, 0, 0, .06);
    border-radius: 10px;
    padding: 40px
}

.price .box h3 {
    font-size: 20px;
    font-weight: 600;
    color: #475254;
    margin: 0;
    margin-bottom: 25px
}

.price .box .number {
    background: #fff;
    width: 115px;
    height: 115px;
    box-shadow: 1px 1px 25px 0 rgba(143, 85, 85, .1);
    border-radius: 50%
}

.price .box .number .red {
    font-size: 50px;
    font-weight: 700;
    color: #eb6d77;
    margin: 0
}

.price .box .number span {
    font-size: 16px;
    font-weight: 400
}

.price .box h5 {
    font-size: 16px;
    font-weight: 600;
    color: #475254;
    margin-top: 20px;
    margin-bottom: 20px
}

.price .box .orange {
    font-size: 50px;
    font-weight: 700;
    margin: 0;
    color: #f39309
}

.price .box .blue {
    font-size: 50px;
    font-weight: 700;
    margin: 0;
    color: #028ac8
}

.price .box .options {
    background: #fff;
    padding: 30px 40px;
    box-shadow: 1px 1px 25px 0 rgba(0, 0, 0, .06);
    border-radius: 5px;
    position: relative
}

.price .box .options ul {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-bottom: 28px;
    text-align-last: left
}

.price .box .options ul li {
    margin: 15px 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

.price .box .options ul li i {
    font-size: 18px;
    margin-right: 10px
}

.price .box .options .btn {
    width: 70%;
    position: absolute;
    left: 50%;
    bottom: -20px;
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out
}

.price .box .options .btn:hover {
    bottom: -10px
}

.price .box h6 {
    font-size: 15px;
    font-weight: 600;
    color: #475254;
    margin: 0;
    margin-top: 60px
}

.contact {
    background-color: #f0ebf5
}

.contact .form-control {
    padding: 25px;
    font-size: 13px;
    background: #fff;
    border: 0;
    border-radius: 10px
}

.contact .help-block {
    font-size: 12px
}

.footer {
    background: linear-gradient(to right, #714091 0%, #3b2472 100%);
    padding: 40px 0
}

@media (max-width: 1199.98px) {
    .navbar {
        background: linear-gradient(to right, #714091 0%, #3b2472 100%) !important
    }
}

@media (max-width: 991.98px) {
    .navbar-nav {
        padding: 12px 0
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .nav-link {
        margin-right: 40px
    }
}

/* */
h1{
    font-size: 38px;
}

.recaptcha{
    font-size: 12px;
}

.grecaptcha-badge {
    visibility: hidden;
}

.company-details{
    font-size: 16px;
}


.modal {
    padding: 0 !important; // override inline padding-right added from js
}
.modal .modal-dialog {
    width: 100%;
    max-width: none;
    height: 100%;
    margin: 0;
}
.modal .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
}
.modal .modal-body {
    overflow-y: auto;
}