@charset "UTF-8";

:root {
    --font-family-sans-serif: sans-serif;
    --font-family-monospace: monospace;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-family: sans-serif;
    line-height: 1.15;
    scroll-behavior: smooth;
}


body {
    margin: 0;
    font-family: "Open Sans", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left;
    background-color: #fff;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 500;
    font-family: 'Baloo Paaji', cursive;
    color: #695aa6;
    margin-top: 0;
}

.bg-primary {
    background-color: #695aa6 !important;
}

.my-font {
    font-family: 'Baloo Paaji', cursive;
}

a {
    color: #695aa6;
    text-decoration: none !important;
}

p {
    font-size: calc(13px + (15 - 13) * ((100vw - 300px) / (1300 - 300)));
    font-weight: 100;
    opacity: 1;
    color: #111;
    letter-spacing: .6px;
}

.container {
    padding: 0 8%;
}

.btn-outline-primary {
    color: #695aa6;
    border-color: #695aa6;
}

.btn-outline-primary:hover {
    color: #fff;
    background-color: #695aa6;
    border-color: #695aa6;
}

.btn-outline-primary:focus,
.btn-outline-primary.focus {
    box-shadow: 0 0 0 0.2rem rgba(105, 90, 166, 0.5);
}

.btn-outline-primary.disabled,
.btn-outline-primary:disabled {
    color: #695aa6;
    background-color: transparent;
}

.btn-outline-primary:not(:disabled):not(.disabled):active,
.btn-outline-primary:not(:disabled):not(.disabled).active,
.show>.btn-outline-primary.dropdown-toggle {
    color: #fff;
    background-color: #695aa6;
    border-color: #695aa6;
}

.btn-outline-primary:not(:disabled):not(.disabled):active:focus,
.btn-outline-primary:not(:disabled):not(.disabled).active:focus,
.show>.btn-outline-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(105, 90, 166, 0.5);
}

.btn-primary {
    color: #fff;
    background-color: #695aa6;
    border-color: #695aa6;
}

.btn-primary:hover {
    color: #fff;
    background-color: #594c8d;
    border-color: #544885;
}

.btn-primary:focus,
.btn-primary.focus {
    box-shadow: 0 0 0 0.2rem rgba(128, 115, 179, 0.5);
}

.btn-primary.disabled,
.btn-primary:disabled {
    color: #fff;
    background-color: #695aa6;
    border-color: #695aa6;
}

.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active,
.show>.btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #544885;
    border-color: #4f437d;
}

.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn-primary:not(:disabled):not(.disabled).active:focus,
.show>.btn-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(128, 115, 179, 0.5);
}

.title {
    font-size: calc(15px + (20 - 15) * ((100vw - 300px) / (1300 - 300)));
    margin: 0 0 .5em;
}

.title.big {
    font-size: calc(17px + (25 - 17) * ((100vw - 300px) / (1300 - 300)));
}

.text-light {
    color: #fff;
}

.m-0 {
    margin: 0 !important;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -5px;
    margin-left: -5px;
}

.form-row>.col,
.form-row>[class*="col-"] {
    padding-right: 5px;
    padding-left: 5px;
}

textarea.form-control {
    height: auto;
}

.form-group {
    margin-bottom: 1rem;
}

.form-text {
    display: block;
    margin-top: 0.25rem;
}

.service-card {
    position: relative;
    min-height: 230px;
    border: 1px solid #dee2e6;
    overflow: hidden;
    border-radius: 3px;
    width: 25%;
}

.service-card .body {
    padding: 10px;
}

.service-card .body img.icon {
    margin-top: 40px;
    width: 55px;
    margin-bottom: 25px;
    transition: all, 0.3s;
}

@media(max-width:992px) {
    .service-card {
        width: 50%;
    }
}

@media(max-width:768px) {
    .service-card {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .service-card .body img.icon {
        transition: none;
    }
}

.service-card .body .subtitle {
    position: absolute;
    bottom: -100%;
    opacity: 0;
    visibility: hidden;
    transition: all, 0.3s;
}

@media (prefers-reduced-motion: reduce) {
    .service-card .body .subtitle {
        transition: none;
    }
}

.service-card:hover .body img.icon {
    margin-top: 5px;
    width: 45px;
    margin-bottom: 15px;
}

.service-card:hover .body .subtitle {
    bottom: 7px;
    opacity: 1;
    visibility: visible;
}

/*/ portfolio wrapper */
.portfolio-card {
    display: block;
    position: relative;
    overflow: hidden;
    width: 33.33%;
}

@media(max-width:768px) {
    .portfolio-card {
        width: 100%;
    }
}

.portfolio-card .portfolio-card-img {
    width: 100%;
}

.portfolio-card .portfolio-card-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    visibility: hidden;
    opacity: 0;
    background-image: linear-gradient(to top, #e1dfed 0%, rgba(225, 223, 237, 0.7) 99%, rgba(225, 223, 237, 0.8) 100%);
    transition: all, 0.3s;
    width: 0;
    height: 0;
    border-radius: 50%;
    overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
    .portfolio-card .portfolio-card-overlay {
        transition: none;
    }
}

.portfolio-card .portfolio-card-overlay .portfolio-card-caption {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.portfolio-card:hover .portfolio-card-overlay {
    opacity: 1;
    visibility: visible;
    width: 100%;
    height: 100%;
    border-radius: 0;
}

@media (max-width: 767.98px) {
    .portfolio-card {
        margin-bottom: 30px;
    }

    .service-card {
        margin-bottom: 30px;
    }
}

/* Pricing card */
.pricing-wrapper {
    display: flex;
}

.pricing-wrapper .pricing-card {
    display: block;
    border: 1px solid #dee2e6;
    padding: 30px 15px;
    flex-grow: 1;
    flex-basis: 0;
    background: #fff;
    transition: all, 0.3s;
}

@media (prefers-reduced-motion: reduce) {
    .pricing-wrapper .pricing-card {
        transition: none;
    }
}

.pricing-wrapper .pricing-card-header .pricing-card-icon {
    width: 70px;
    margin-bottom: 25px;
}

.pricing-wrapper .pricing-card-footer {
    margin: 15px 0;
}

.pricing-wrapper .pricing-card-footer span {
    font-size: calc(18px + (35 - 18) * ((100vw - 300px) / (1300 - 300)));
    font-weight: 600;
    opacity: .8;
}

.pricing-wrapper .pricing-card-footer span:first-child {
    position: relative;
    right: -6px;
    top: -6px;
    font-size: calc(15px + (25 - 15) * ((100vw - 300px) / (1300 - 300)));
}

.pricing-wrapper .pricing-card-title {
    margin-bottom: 15px;
    font-size: calc(18px + (35 - 18) * ((100vw - 300px) / (1300 - 300)));
}

.pricing-wrapper .pricing-card-list p {
    margin-bottom: 12px;
    font-weight: 500;
    opacity: .6;
}

.pricing-wrapper .pricing-card-list p i {
    color: #ec185d;
}

.pricing-wrapper .pricing-card:hover {
    transform: translateY(-5px);
    border-radius: 0 !important;
}

.pricing-wrapper .pricing-card:first-child {
    border-radius: 0 0 0 0;
}

.pricing-wrapper .pricing-card:nth-child(2) {
    margin-left: -1px;
    margin-right: -1px;
}

.pricing-wrapper .pricing-card:last-child {
    border-radius: 0 0 0 0;
}

@media (max-width: 767.98px) {
    .pricing-wrapper {
        flex-direction: column;
    }

    .pricing-card {
        border-radius: 0 !important;
        margin: 0 0 15px 0 !important;
        width: 100%;
    }
}

/* testmonial card */
.testimonial-card {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    width: 50%;
}

.testimonial-card-img-holder {
    min-width: 45px;
    max-width: 45px;
    z-index: 999;
}

.testimonial-card-img {
    background: #fff;
    padding: 4px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
}

.testimonial-card-body {
    text-align: left;
    border: 1px solid #dee2e6;
    background: #fff;
    padding: 20px 20px 20px 60px;
    border-radius: 0;
}

.testimonial-card-title {
    margin-top: 20px;
    font-size: calc(14px + (18 - 14) * ((100vw - 300px) / (1300 - 300)));
}

@media(max-width:768px) {
    .testimonial-card {
        width: 100%;
    }
}

/* blog wrapper */
.blog-card {
    display: flex;
    text-align: left;
    border: 1px solid #dee2e6;
    margin-bottom: 30px;
    border-radius: 0;
    overflow: hidden;
}

.blog-card-header {
    min-width: 350px;
    max-width: 350px;
}

.blog-card-img {
    border-radius: 0 0 0 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.blog-card-body {
    padding: 30px 20px 30px 30px;
}

.blog-card-title {
    font-weight: 100;
}

.blog-card-caption {
    margin: 15px 0 15px !important;
}

.blog-card-caption i {
    display: inline-block;
    width: 15px;
}

.blog-card-caption a {
    margin-right: 10px;
    color: #444;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    opacity: .7;
    font-size: 13px;
}

.blog-card-link {
    text-decoration: none;
    margin-top: 20px;
    display: block;
    font-size: 13px;
}

.blog-card-link i {
    position: relative;
    top: 1px;
}

.btn {
    padding: .65em 1.5em;
    border-radius: .25em;
}

.text-center {
    text-align: center !important;
}

.pt-0 {
    padding-top: 0 !important;
}

.flexContainer {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}


@media (max-width: 991.98px) {
    .blog-card {
        flex-direction: column;
    }

    .blog-card .blog-card-header {
        width: 100%;
        max-width: 100%;
        min-width: 100%;
    }
}

pre {
    border: 2px solid #dee2e6;
    padding: 15px;
    border-radius: 0.25rem;
    background: #f8f9fa;
}

pre code,
pre .code {
    color: #6c757d;
}

.dropdown-menu.form {
    width: 300px;
}

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
/* hamburger */
/*
   * Elastic
   */
.hamburger {
    display: inline-block;
    cursor: pointer;
    transition-property: opacity, filter;
    transition-duration: 0.9s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
}

.hamburger:hover {
    opacity: 0.7;
}

.hamburger-box {
    width: 30px;
    height: 21px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -1.5px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 30px;
    height: 3px;
    background-color: #444;
    border-radius: 10px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.3s;
    transition-timing-function: ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: "";
    display: block;
}

.hamburger-inner::before {
    top: -9px;
}

.hamburger-inner::after {
    bottom: -9px;
}

.hamburger--elastic .hamburger-inner {
    top: 1.5px;
    transition-duration: 0.45s;
    transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic .hamburger-inner::before {
    top: 9px;
    transition: opacity 0.43s 0.275s ease;
}

.hamburger--elastic .hamburger-inner::after {
    top: 18px;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic.is-active .hamburger-inner {
    transform: translate3d(0, 9px, 0) rotate(135deg);
    transition-delay: 0.075s;
}

.hamburger--elastic.is-active .hamburger-inner::before {
    transition-delay: 0s;
    opacity: 0;
}

.hamburger--elastic.is-active .hamburger-inner::after {
    transform: translate3d(0, -18px, 0) rotate(-270deg);
    transition-delay: 0.075s;
}

.custom-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: all, 0.3s;
    padding: 2em 0;
    font-family: 'Baloo Paaji', cursive;
}

.custom-navbar.active {
    background-color: #695aa6;
    padding: 1em 0;
}

@media(min-width:992px) {

    .custom-navbar.active .nav .item .link:hover,
    .custom-navbar.active .nav .item .link.active {
        color: #ced4da;
    }
}

@media (prefers-reduced-motion: reduce) {
    .custom-navbar {
        transition: none;
    }
}

.custom-navbar .logo {
    font-size: calc(20px + (30 - 20) * ((100vw - 300px) / (1300 - 300)));
    text-decoration: none;
    color: #fff;
}

.custom-navbar .container {
    flex-grow: 1;
    display: flex;
    align-items: center;
    transition: all, 0.3s;
}

@media (prefers-reduced-motion: reduce) {
    .custom-navbar .container {
        transition: none;
    }
}

.custom-navbar .hamburger {
    margin-left: 20px;
    padding-top: 5px;
}

.custom-navbar .hamburger .hamburger-inner,
.custom-navbar .hamburger .hamburger-inner::before,
.custom-navbar .hamburger .hamburger-inner::after {
    background: #fff;
}

.custom-navbar .nav {
    list-style-type: none;
    padding-left: 0;
    display: flex;
    align-items: center;
    margin: 0;
    margin-left: auto;
}

.custom-navbar .nav .item {
    margin: 0 10px;
}

.custom-navbar .nav .item .link {
    color: #fff;
    font-weight: 500;
    text-decoration: none;
}

.custom-navbar .nav .item .link:hover,
.custom-navbar .nav .item .link.active {
    color: #695aa6;
}

.custom-navbar.affix {
    background: #fff;
    border-bottom: 1px solid rgba(222, 226, 230, 0.34);
}

.custom-navbar.affix .logo {
    color: #695aa6;
}

.custom-navbar.affix .container {
    min-height: 65px;
}

.custom-navbar.affix .nav .item .link {
    color: #6c757d;
}

.custom-navbar.affix .hamburger-inner,
.custom-navbar.affix .hamburger-inner::before,
.custom-navbar.affix .hamburger-inner::after {
    background: #6c757d;
}

.w-100 {
    width: 100% !important;
}

@media (min-width: 768px) {
    .custom-navbar .nav .item {
        opacity: 0;
        visibility: hidden;
        transform: translateY(-50px);
    }

    .custom-navbar .nav .item:nth-child(9) {
        transition: all, 0.1s;
        transition-delay: 0s;
    }
}

@media (min-width: 768px) and (prefers-reduced-motion: reduce) {
    .custom-navbar .nav .item:nth-child(9) {
        transition: none;
    }
}

@media (min-width: 768px) {
    .custom-navbar .nav .item:nth-child(8) {
        transition: all, 0.2s;
        transition-delay: .05s;
    }
}

@media (min-width: 768px) and (prefers-reduced-motion: reduce) {
    .custom-navbar .nav .item:nth-child(8) {
        transition: none;
    }
}

@media (min-width: 768px) {
    .custom-navbar .nav .item:nth-child(7) {
        transition: all, 0.3s;
        transition-delay: .1s;
    }
}

@media (min-width: 768px) and (prefers-reduced-motion: reduce) {
    .custom-navbar .nav .item:nth-child(7) {
        transition: none;
    }
}

@media (min-width: 768px) {
    .custom-navbar .nav .item:nth-child(6) {
        transition: all, 0.4s;
        transition-delay: .15s;
    }
}

@media (min-width: 768px) and (prefers-reduced-motion: reduce) {
    .custom-navbar .nav .item:nth-child(6) {
        transition: none;
    }
}

@media (min-width: 768px) {
    .custom-navbar .nav .item:nth-child(5) {
        transition: all, 0.5s;
        transition-delay: .2s;
    }
}

@media (min-width: 768px) and (prefers-reduced-motion: reduce) {
    .custom-navbar .nav .item:nth-child(5) {
        transition: none;
    }
}

@media (min-width: 768px) {
    .custom-navbar .nav .item:nth-child(4) {
        transition: all, 0.6s;
        transition-delay: .25s;
    }
}

@media (min-width: 768px) and (prefers-reduced-motion: reduce) {
    .custom-navbar .nav .item:nth-child(4) {
        transition: none;
    }
}

@media (min-width: 768px) {
    .custom-navbar .nav .item:nth-child(3) {
        transition: all, 0.7s;
        transition-delay: .3s;
    }
}

@media (min-width: 768px) and (prefers-reduced-motion: reduce) {
    .custom-navbar .nav .item:nth-child(3) {
        transition: none;
    }
}

@media (min-width: 768px) {
    .custom-navbar .nav .item:nth-child(2) {
        transition: all, 0.8s;
        transition-delay: .35s;
    }
}

@media (min-width: 768px) and (prefers-reduced-motion: reduce) {
    .custom-navbar .nav .item:nth-child(2) {
        transition: none;
    }
}

@media (min-width: 768px) {
    .custom-navbar .nav .item:nth-child(1) {
        transition: all, 0.9s;
        transition-delay: .4s;
    }
}

@media (min-width: 768px) and (prefers-reduced-motion: reduce) {
    .custom-navbar .nav .item:nth-child(1) {
        transition: none;
    }
}

@media (min-width: 768px) {
    .custom-navbar .nav.show .item {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
}

@media (max-width: 991.98px) {
    .custom-navbar .hamburger {
        margin-left: auto;
    }

    .custom-navbar .nav {
        position: absolute;
        top: calc(100% + 1px);
        left: 0;
        background: #fff;
        border-radius: 0 0 0 0;
        flex-direction: column;
        width: 100%;
        margin: auto;
        display: block;
        border-bottom: 1px solid #dee2e6;
        padding: 13px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(6px);
        transition: all, 0.3s;
    }
}

@media (max-width: 991.98px) and (prefers-reduced-motion: reduce) {
    .custom-navbar .nav {
        transition: none;
    }
}

@media (max-width: 991.98px) {
    .custom-navbar .nav.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .custom-navbar .nav .item .link {
        padding: 7px 12px;
        display: block;
        color: #6c757d;
    }
}

.inputContainer {
    width: calc(50% - .5em);
    padding-right: .5em;
}

.text-end {
    text-align: end;
}

@media(max-width:576px) {

    .inputContainer {
        width: 100%;
    }
}

.footer {
    display: flex;
    min-height: 70px;
    border-top: 1px solid #dee2e6;
    align-items: center;
}

.footer p,
.footer .social-links {
    flex-grow: 1;
    flex-basis: 0;
}

.footer a,
.footer p {
    color: #393e46;
    padding: 4px 0;
    display: inline-block;
    margin: 0;
}

.footer .brand {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 6px;
}

.footer .social-links {
    margin-left: auto;
}

.footer .social-links a {
    padding: 0;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    line-height: 40px;
    text-align: center;
    border: 2px solid #6c757d;
    color: #6c757d;
}

.footer .social-links a:hover {
    background: #695aa6;
    border-color: #695aa6;
    color: #fff;
    text-decoration: none;
}

@media (max-width: 767.98px) {
    .footer {
        padding: 15px 0;
        flex-direction: column;
    }

    .footer .social-links {
        margin-top: 15px;
    }
}

.header {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(./imgs/header.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to top, #fff 0%, rgba(105, 90, 166, 0.35) 99%, rgba(105, 90, 166, 0.5) 100%);
}

.header .header-content {
    margin-top: 20px;
    flex-grow: 1;
}

.header .header-content .header-title .up {
    font-size: calc(30px + (60 - 30) * ((100vw - 300px) / (1300 - 300)));
    font-weight: 500;
    color: #444;
    margin-bottom: 5px;
    position: relative;
    display: block;
}

.header .header-content .header-title .down {
    font-size: calc(30px + (75 - 30) * ((100vw - 300px) / (1300 - 300)));
    margin-bottom: 0;
    position: relative;
    display: block;
}

.header .header-content .header-subtitle {
    font-size: calc(10px + (22 - 10) * ((100vw - 300px) / (1300 - 300)));
    letter-spacing: calc(1px + (7 - 1) * ((100vw - 300px) / (1300 - 300)));
    opacity: .8;
    margin-top: -10px;
    margin-bottom: 20px;
}

.header .header-content .btn {
    position: relative;
    margin-top: 20px;
    font-size: 1.15em;
    border-radius: 20px;
    padding: .75em 2em;
}

.header-title {
    font-size: 2.4rem;
    font-weight: bold;
    opacity: .8;
    color: #212529;
}

.header-mini {
    min-height: 24rem;
    height: 24rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
    background: #a59cca;
}

@media (max-width: 991.98px) {
    .header {
        background-size: cover;
    }

    .header-content {
        padding-left: calc(100% / 5) !important;
    }
}

.about {
    display: flex;
    align-items: center;
    text-align: left;
}

.about-img-holder {
    min-width: 400px;
    max-width: 400px;
    margin-right: 20px;
}

.about-img-holder .about-img {
    width: 100%;
    margin-bottom: 15px;
}

.about-caption {
    flex-grow: 1;
}

@media (max-width: 767.98px) {
    .about {
        flex-direction: column;
        text-align: center;
    }

    .about-img-holder {
        max-width: 220px;
        min-width: 100%;
        width: 100%;
        margin: auto;
        margin-bottom: 20px;
    }
}

.section {
    padding: 70px 10px;
}

.section .section-title {
    font-size: calc(20px + (35 - 20) * ((100vw - 300px) / (1300 - 300)));
}

.section .section-subtitle {
    margin-bottom: 6px;
    font-weight: 400;
    opacity: .6;
}

.section-sm {
    padding: 40px 0 !important;
}

.section-md {
    padding: 60px 0 !important;
}

.section-lg {
    padding: 100px 0 !important;
}

.form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: rgba(0, 0, 0, 0.01);
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}