@font-face {
    font-weight: 400;
    font-style: normal;
    font-family: AsGrammatikaNusx;
    src: url(../fonts/AsGrammatikaNusx.woff) format('woff'),
        url(../fonts/AsGrammatikaNusx.ttf) format('truetype');
}

@font-face {
    font-weight: 700;
    font-style: normal;
    font-family: AsGrammatikaMtavr;
    src: url(../fonts/AsGrammatikaMtavr-Bold.woff) format('woff'),
        url(../fonts/AsGrammatikaMtavr-Bold.ttf) format('truetype');
}

@font-face {
    font-weight: 400;
    font-style: normal;
    font-family: AsGrammatikaMtavrRegular;
    src: url(../fonts/AsGrammatika-Regular_Mtav_3.woff) format('woff');
}

.text-capitalize {
    font-family: AsGrammatikaMtavr;
}

.bg-primary {
    background-color: #00bc70 !important;
}

.bg-dark {
    background-color: #3c4858 !important;
}

.text-primary {
    color: #00bc70 !important;
}

.text-dark {
    color: #3c4858 !important;
}

.text-muted {
    color: #8492a6 !important;
}

.rounded {
    border-radius: 10px !important;
}

.btn {
    font-family: AsGrammatikaMtavrRegular !important;
    padding: 12px 20px 8px 20px;
    outline: 0;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 0.8px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    font-weight: 700;
    border-radius: 10px;
}

.btn:focus {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.btn.btn-sm {
    padding: 7px 16px;
    font-size: 10px;
}

.btn.btn-lg {
    padding: 14px 30px;
    font-size: 16px;
}

.btn.btn-dark,
.btn.btn-primary {
    color: #fff !important;
}

.btn.btn-dark:active,
.btn.btn-dark:focus,
.btn.btn-dark:hover,
.btn.btn-primary:active,
.btn.btn-primary:focus,
.btn.btn-primary:hover {
    color: #fff !important;
}

.btn.btn-dark-outline:active,
.btn.btn-dark-outline:focus,
.btn.btn-dark-outline:hover,
.btn.btn-primary-outline:active,
.btn.btn-primary-outline:focus,
.btn.btn-primary-outline:hover {
    color: #fff !important;
}

.btn.btn-primary {
    background: #00bc70;
    border: 1px solid #00bc70;
}

.btn.btn-primary:active,
.btn.btn-primary:focus,
.btn.btn-primary:hover {
    background-color: #00bc70 !important;
}

.btn.btn-primary-outline {
    border: 1px solid #00bc70;
    color: #00bc70;
    background-color: transparent;
}

.btn.btn-primary-outline:active,
.btn.btn-primary-outline:focus,
.btn.btn-primary-outline:hover {
    background-color: #00bc70;
    border-color: #00bc70;
}

.btn.btn-dark {
    background: #3c4858;
    border: 1px solid #3c4858;
}

.btn.btn-dark:active,
.btn.btn-dark:focus,
.btn.btn-dark:hover {
    background-color: #272f3a !important;
}

.btn.btn-dark-outline {
    border: 1px solid #3c4858;
    color: #3c4858;
    background-color: transparent;
}

.btn.btn-dark-outline:active,
.btn.btn-dark-outline:focus,
.btn.btn-dark-outline:hover {
    background-color: #3c4858;
    border-color: #3c4858;
}

body {
    font-family: AsGrammatikaNusx, sans-serif;
    overflow-x: hidden !important;
    font-size: 16px;
    color: #161c2d;
}

::-moz-selection {
    background: #4466d8;
    color: #fff;
}

::selection {
    background: #4466d8;
    color: #fff;
}

a {
    text-decoration: none !important;
}

p {
    line-height: 1.6;
}

.section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    position: relative;
}

.section-title .main-title {
    font-size: 35px;
    letter-spacing: 0.8px;
}

.section-title .title {
    letter-spacing: 0.5px;
    font-size: 30px;
}

.para-desc {
    max-width: 600px;
}

.mt-100 {
    margin-top: 100px;
}

.mb-60 {
    margin-bottom: 60px;
}

@-webkit-keyframes mover {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(5px);
        transform: translateY(5px);
    }
}

@keyframes mover {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(5px);
        transform: translateY(5px);
    }
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(45deg, #fff, #fff);
    z-index: 9999999;
}

#preloader #status {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

#preloader #status .spinner {
    width: 40px;
    height: 40px;
    position: relative;
    margin: 100px auto;
}

#preloader #status .spinner .double-bounce1,
#preloader #status .spinner .double-bounce2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #00bc70;
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: sk-bounce 2s infinite ease-in-out;
    animation: sk-bounce 2s infinite ease-in-out;
}

#preloader #status .spinner .double-bounce2 {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}

@-webkit-keyframes sk-bounce {
    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes sk-bounce {
    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.back-to-home {
    position: absolute;
    top: 4%;
    right: 2%;
    z-index: 1;
}

.back-to-home a {
    font-size: 22px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: #00bc70;
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .section-title .main-title {
        font-size: 28px;
    }

    .section-title .title {
        font-size: 24px;
    }

    .mt-60 {
        margin-top: 60px;
    }
}

.home-center {
    display: table;
    width: 100%;
    height: 100%;
}

.home-desc-center {
    display: table-cell;
    vertical-align: middle;
}

.bg-home {
    height: 100vh;
    background-size: cover;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    position: relative;
    background-position: center center;
}

@media (max-width: 767px) {
    .img-fluid {
        max-width: 80%;
        height: auto;
    }

    .bg-home {
        padding: 50px 0;
        height: auto;
    }
}

.page-title {
    font-size: 20px;
}

.error-page {
    font-size: 40px;
    letter-spacing: 1px;
}

@media (min-width: 200px) and (max-width: 767px) {
    .error-page {
        font-size: 26px;
    }
}

.error {
    margin: 8px 0;
    display: none;
    color: #e43f52;
}
