:root {
    --blue: #2f55d4;
    --black: #3c4858;
    --color3: #2eca8b;
    --color4: #8492a6;
    --shadow: 0 0 3px rgb(60 72 88 / 15%);
}

@font-face {
    font-family: Nunito;
    src: url(../fonts/nunito-200.woff2);
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: Nunito;
    src: url(../fonts/nunito-600.woff2);
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: Nunito;
    src: url(../fonts/nunito-700.woff2);
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

::selection {
    background: rgba(47, 85, 212, 0.9);
    color: #fff;
}

::marker {
    font-size: 0.9em;
}

section {
    width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.5;
    font-weight: 600;
}

h3,
h2 {
    letter-spacing: 0.5px;
    font-size: 30px;
    margin-bottom: 1.5rem;
}

ul {
    list-style: none;
}
ul li.active a {
    color: var(--blue);
}
ul.list li::before {
    content: url(../img/circle.svg);
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
    top: 2px;
    position: relative;
}
ul.list-2 {
    margin-bottom: 20px;
}
ul.list-2 li {
    color: #161c2d;
    font-size: 1.15rem;
    margin-bottom: 0.7rem;
}
ul.list-2 li::before {
    content: url(../img/circle-2.svg);
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
    top: 2px;
    position: relative;
}
ul ul.list-3 li::before {
    content: url(../img/circle-3.svg);
}
ul.list-4 li {
    color: var(--color4);
    line-height: 2.5rem;
}
ul.list-4 li a {
    color: var(--color4);
    line-height: 2.5rem;
}
ul.list-4 li::before {
    content: url(../img/circle-4.svg);
    margin-right: 3px;
}
ul.tabs {
    display: flex;
    margin-bottom: 60px;
    background: #f4f6fa;
    border-radius: 6px;
}
ul.tabs li {
    flex-grow: 1;
    text-align: center;
}
ul.tabs li a {
    display: block;
    color: #495057;
    padding: 0.7rem 0.5rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.5s;
}
ul.tabs li.selected-tab a {
    background-color: var(--blue);
    color: #fff;
}
@media screen and (max-width: 900px) {
    ul.tabs {
        flex-direction: column;
    }
}

a {
    text-decoration: none;
    color: #007bff;
}
a.active {
    color: var(--blue);
}
a:hover {
    color: var(--blue);
}

code[class*="language-"], pre[class*="language-"] {
    font-size: 0.9em;
}

pre, code {
    word-wrap: break-word !important;
    white-space: pre-wrap !important;
    word-break: break-all;
    overflow: auto;
}

body {
    font-size: 18px;
    font-family: Nunito, sans-serif;
    line-height: 1.6;
    color: #161c2d;
}

video {
    max-width: 100%;
}

hr {
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

ul.list li {
    line-height: 2rem;
}

ol li {
    line-height: 2.3rem;
}

article ol {
    margin-left: 15px;
}

.row.projects-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.row.projects-wrapper > div {
    width: 33%;
    margin: 0 5px 5px 0;
}
.row.projects-wrapper img {
    border-radius: 6px;
}

/***********************************************/
main {
    display: flex;
}
main img {
    height: auto !important;
    max-width: 100% !important;
}

body > main {
    max-width: 1600px;
    justify-content: space-between;
}
@media screen and (max-width: 900px) {
    body > main {
        display: block;
    }
}
body.index-page > main {
    display: block;
}
body.index-page > footer::before {
    content: '';
    clip-path: polygon(100% 69%, 0% 100%, 100% 100%);
    background: #202942;
    height: 280px;
    position: absolute;
    width: 95%;
    right: 0;
    top: -279px;
}
body > footer {
    display: block;
    background: #202942;
    padding: 60px 0;
    position: relative;
    color: #adb5bd;
    margin-top: 80px;
}
body > footer .footer-1 {
    max-width: 1600px;
    display: flex;
    justify-content: space-between;
    padding-bottom: 80px;
}
body > footer .footer-1 > div {
    width: 20%;
    display: flex;
    justify-content: center;
}
body > footer .footer-1 > div:first-child, body > footer .footer-1 > div:last-child {
    width: 30%;
}
body > footer a.logo-footer {
    display: block;
    background: #fff;
    padding: 3px;
    border-radius: 4px;
    text-align: center;
}
body > footer a.logo-footer img {
    width: 100%;
    max-width: 300px;
}
body > footer h5 {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 20px;
    font-weight: 500;
}
body > footer li {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #adb5bd;
}
body > footer li::before {
    content: url(../img/chevron-right.svg);
    display: inline-block;
    top: 5px;
    left: -5px;
    position: relative;
    color: red;
}
body > footer a {
    color: #adb5bd;
    transition: all 0.5s;
}
body > footer a:hover {
    color: #fff;
}
body > footer .footer-2 {
    padding: 30px 0 0 0;
    border-top: 1px solid #283353;
}
body > footer .footer-2 p {
    max-width: 95%;
    margin: 0 auto;
}
@media screen and (max-width: 792px) {
    body > footer::before {
        clip-path: polygon(100% 79%, 0% 100%, 100% 100%);
    }
    body > footer .footer-1 {
        flex-wrap: wrap;
    }
    body > footer .footer-1 > div {
        width: 49% !important;
        margin-bottom: 40px;
    }
    body > footer .footer-1:nth-child(3) {
        justify-content: left;
    }
}

/**************************  HEADER 2 ****************************************/
.header2-info {
    background-color: #f8f9fc;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-bottom: 75px;
}
.header2-info h1 {
    margin-bottom: 40px;
    padding: 0 20px;
    display: flex;
    align-items: center;
}
.header2-info h1 svg {
    margin-right: 7px;
    fill: var(--blue);
    margin-top: -11px;
}
.header2-info svg {
    width: 40px;
    height: 40px;
    margin-right: 7px;
    fill: var(--blue);
}
.header2-info::after {
    content: '';
    background-color: #f8f9fc;
    clip-path: ellipse(52% 32% at 50% 50%);
    position: absolute;
    bottom: -42px;
    height: 75px;
    width: 100%;
}
@media screen and (max-width: 600px) {
    .header2-info h1 {
        font-size: 1.2rem;
    }
}
@media screen and (max-width: 480px) {
    .header2-info h1 {
        font-size: 0.95rem;
    }
}
@media screen and (max-width: 792px) {
    .header2-info {
        padding-top: 100px;
    }
}

/***********************************************************************/
article.news {
    font-family: "ProximaNova", Nunito, sans-serif;
    font-size: 1.15rem;
    margin-bottom: 20px;
    line-height: 1.72857143;
}
article.news img {
    max-width: 100%;
    height: auto;
}
article.news hr {
    margin: 20px 0;
}
article.news p {
    margin-bottom: 1rem;
}
article.news ul li {
    line-height: 2.3rem;
}
article.news ul li::before {
    background-image: url(../img/circle-3.svg);
    background-size: 15px 20px;
    display: inline-block;
    width: 20px;
    height: 17px;
    content: "";
    margin-right: 5px;
    background-repeat: no-repeat;
}
article > header > h3 {
    font-size: 1.17em;
    color: #222;
    padding: 9px 3px;
    background: #f7f7f9;
    border-radius: 0;
    text-align: center;
    margin-top: 0;
    margin-bottom: 23px;
}

/***************** SECTIONS  ******************************/
aside.sidebar {
    flex-basis: 28%;
    padding: 1.5rem;
    border-radius: 6px;
    height: fit-content;
}

section.content {
    flex-basis: 70%;
    max-width: 70%;
    height: fit-content;
}
@media screen and (max-width: 900px) {
    section.content {
        flex-basis: 100%;
        max-width: 100%;
    }
}
section.translations tbody td:nth-child(3) {
    display: flex;
    justify-content: center;
}
section.translations tbody td:nth-child(3) .btn {
    margin-right: 5px;
}
section.downloads {
    transition: all 0.3s ease;
    border-radius: 6px;
    padding: 4.5rem 1.5rem 0.5rem 1.5rem;
    text-align: center;
}
section.sitemap section {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: solid 1px rgba(0, 0, 0, 0.1);
}
section.sitemap section:last-child {
    border: none;
    padding-bottom: 0;
}
section.sitemap section h4 {
    font-size: 1.5rem;
    margin-bottom: 1.1rem;
}
section.extensions {
    transition: all 0.3s ease;
    border-radius: 6px;
    padding: 1.5rem 1.5rem 0.5rem 1.5rem;
}

.section-404 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #8492a6;
    text-align: center;
}
.section-404 p {
    width: 100%;
    max-width: 600px;
    margin-bottom: 30px;
}
.section-404 img {
    height: 100px;
}
.section-404 h4 {
    font-size: 2.5rem;
    letter-spacing: 1px;
    color: #3c4858;
    margin: 20px 0;
}

.footer-banners {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.footer-banners > div {
    width: 49%;
}
.footer-banners > div img {
    max-width: 100%;
    height: auto;
    aspect-ratio: attr(width)/attr(height);
}

.breadcrumb {
    display: inline-block;
    width: fit-content;
    margin: 0 auto;
    letter-spacing: 0.5px;
    padding: 4px 24px 8px 24px;
    display: block;
    box-shadow: var(--shadow);
    border-radius: 6px;
    top: -75px;
    position: relative;
    background: #fff;
}
.breadcrumb li {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    padding-left: 0;
    display: inline-block;
}
.breadcrumb li a {
    color: inherit;
}
.breadcrumb li a:hover {
    color: var(--blue);
}
.breadcrumb li a:after {
    content: url(../img/chevron-right.svg);
    font-size: 14px;
    color: #3c4858;
    padding-left: 5px;
    position: relative;
    top: 7px;
}
.breadcrumb li.active {
    color: var(--blue);
}

/*******************************  FAQ ****************************************/
.faq-list > li {
    display: flex;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    border-radius: 6px;
    padding: 1rem;
    align-items: center;
    font-size: 1.2rem;
    cursor: pointer;
}
.faq-list > li:hover {
    transform: scale(1.04);
    box-shadow: 0 5px 13px --shadow;
}
@media screen and (max-width: 900px) {
    .faq-list > li {
        font-size: 1.1rem;
    }
}

.faq-feature-icon {
    background: linear-gradient(45deg, transparent, rgba(47, 85, 212, 0.15));
    margin-right: 1rem;
    border-radius: 50px;
    height: 45px;
    width: 45px;
    display: flex;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
}

.faq-counter {
    position: absolute;
    font-size: 11px;
    color: #2f55d4;
    width: 45px;
    text-align: center;
    font-weight: 700;
}

.faq_1 a {
    color: orangered;
}

.faq_2 a {
    color: chocolate;
}

.faq_3 a {
    color: darksalmon;
}

/*******************************  FAQ END ****************************************/
.search-form input {
    padding: 18px 20px;
    width: 100%;
    color: #3c4858;
    border: none;
    outline: none;
    padding-right: 160px;
    padding-left: 30px;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow);
    border: 1px solid #e9ecef;
    border-radius: 50rem;
    background-color: #fff;
    font-size: 0.9rem;
}
.search-form button {
    position: absolute;
    top: 6px;
    right: 6px;
    outline: none;
    font-weight: 200;
}

.btn.btn-pills {
    border-radius: 30px;
    cursor: pointer;
    line-height: 1.6rem;
}

.tabs-sections {
    padding: 0 2rem;
    font-size: 1.05em;
    font-weight: normal;
}

.video-tutorials ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.video-tutorials ul li {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 32%;
    padding: 4px;
    margin-bottom: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: border .2s ease-in-out;
    text-align: center;
}
.video-tutorials ul li > * {
    align-self: center;
}
.video-tutorials ul li img {
    display: block;
    width: 100%;
    height: auto;
}
.video-tutorials ul li h3 {
    display: block;
    margin: 40px 0;
    font-size: 1.4em;
    flex-shrink: 1;
}
.video-tutorials ul li .btn {
    padding-left: 40px;
}
.video-tutorials ul li .btn::before {
    content: url(../img/video.svg);
    display: inline-block;
    width: 20px;
    height: 20px;
    position: absolute;
    left: 12px;
}
@media screen and (max-width: 900px) {
    .video-tutorials ul li {
        width: 49%;
    }
}
@media screen and (max-width: 600px) {
    .video-tutorials ul li {
        width: 100%;
    }
}

p.presentation {
    color: var(--color4);
    width: 100%;
    max-width: 600px;
    margin: 0 auto 90px auto;
}

.blue-columns {
    text-align: left;
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding-bottom: 20px;
}
.blue-columns > div {
    width: 49%;
    box-shadow: var(--shadow);
    border-radius: 6px;
    background-color: #f8f9fc;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 15px;
}
.blue-columns > div header {
    background-color: var(--blue);
    color: #fff;
    font-size: 1.15rem;
    text-align: center;
    padding: 1.5rem;
    position: relative;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}
.blue-columns > div header > * {
    font-size: 1.5rem;
}
.blue-columns > div > div {
    padding: 1.5rem 1.5rem 0.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.blue-columns .btn {
    text-align: center;
}
.blue-columns .price {
    font-size: 3.2rem;
    color: var(--blue);
    font-weight: 700;
    text-align: center;
    padding-bottom: 1.5rem;
    display: block;
}
.blue-columns .price sup {
    font-size: 1.5rem;
    font-weight: 600;
}
.blue-columns strong {
    text-transform: uppercase;
    font-size: 1rem;
    color: #161c2d;
}
@media screen and (max-width: 900px) {
    .blue-columns {
        flex-direction: column;
    }
    .blue-columns > div {
        width: 100%;
    }
}
@media screen and (max-width: 600px) {
    .blue-columns strong {
        font-size: 0.6rem;
    }
}

/*************************** DECORATION CLASSES *******************************************/
.the-notice {
    border: solid 1px #0090cb;
    background: #e7f3f7;
    padding: 9px;
    font-size: .8em;
    margin-bottom: 9px;
    overflow-x: auto;
}

.tabs-sections-col {
    display: flex;
    width: 24%;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-align: center;
}
.tabs-sections-col .btn {
    width: 100%;
}
.tabs-sections-col h4 {
    margin: 1rem 0;
}
.tabs-sections-col > div {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
@media screen and (max-width: 900px) {
    .tabs-sections-col {
        display: flex;
        width: 32%;
    }
}
@media screen and (max-width: 600px) {
    .tabs-sections-col {
        display: flex;
        width: 49%;
    }
}
@media screen and (max-width: 480px) {
    .tabs-sections-col {
        display: flex;
        width: 100%;
    }
}

.woot-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.woot-gallery div {
    width: 31%;
    max-height: 200px;
    overflow: hidden;
    margin-bottom: 11px;
    border-radius: 8px;
    margin-right: 11px;
}
.woot-gallery div img {
    width: 100%;
}
@media screen and (max-width: 900px) {
    .woot-gallery div {
        width: 48%;
    }
}
@media screen and (max-width: 600px) {
    .woot-gallery div {
        width: 100%;
    }
}

.woot-modal-inner-footer .btn-big {
    margin-bottom: 0;
}

.wp-video {
    width: 100% !important;
}

.text-primary {
    color: var(--blue);
}

.center {
    text-align: center;
}

.hidden {
    display: none;
}

.text-center {
    text-align: center;
}

.shadow {
    box-shadow: var(--shadow);
}

.section-bordered {
    padding: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    border-radius: 6px;
}

.at-custom-sidebar {
    width: 39px !important;
}
.at-custom-sidebar .at-icon {
    margin: 0 !important;
}
.at-custom-sidebar.atss-left {
    left: auto !important;
    right: 0 !important;
}

.at-icon-wrapper {
    width: 35px !important;
    height: 35px !important;
}

a.social-icon {
    color: #adb5bd;
    border: solid 1px #adb5bd;
    display: inline-block;
    width: fit-content;
    padding: 7px;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
}
a.social-icon:hover {
    color: #fff;
    background-color: var(--blue);
    border-color: var(--blue);
}

.back-to-top {
    z-index: 99;
    position: fixed;
    bottom: 50px;
    right: 30px;
    opacity: 0;
    transition: all 0.5s ease;
}

.widget {
    position: relative;
    margin-bottom: 30px;
}
.widget img {
    max-width: 100%;
}
.widget h3 {
    font-size: 1.3rem;
    color: #222;
    padding: 9px 3px;
    background: #f7f7f9;
    border-radius: 0;
    text-align: center;
    margin-top: 0;
    margin-bottom: 23px;
}
.widget:last-child {
    margin-bottom: 0;
}

h2.entry-title,
h3.entry-title {
    font-size: 1.3rem;
    color: #222;
    padding: 9px 3px;
    background: #f7f7f9;
    border-radius: 0;
    text-align: center;
    margin-top: 0;
    margin-bottom: 23px;
}

.pn-plugins-adv {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.pn-plugins-adv img {
    width: 95%;
}

.flag {
    width: 65px;
    box-shadow: var(--shadow);
    border-radius: 6px;
}

.max-width-900 {
    max-width: 900px;
    margin: 0 auto;
}

.width-95 {
    width: 95%;
    margin: 0 auto;
}

/*# sourceMappingURL=styles.css.map */


.alert-info {
    background-color: rgba(0, 123, 255, 0.9);
    color: #fff;
    border-color: #e43f52;
}

.alert {
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 14px;
}

