/* Icons by Font Awesome - https://fontawesome.com */
/* Icons by Lucide - https://lucide.dev/ */

:root {
    --dark-background0: #22252a;
    --dark-background1: #171D25;
    --dark-background2: #0D1117;
    --dark-background2-min: #0c0e0f;
    --dark-background2-hover: #090a0c;
    --dark-primary: #D8D4CE;
    --dark-hover: #bbb7b2;
    --dark-h: #E0DCD7;
    --white: #FFFFFF;
    --yellow: #FFBD00;
    --yellow-hover: #DBA200;
    --yellow-disabled: #ac8008;
    --gray: #8B8E92;
    --dark-primary-test: #8B8E92;
    --green: #44b821;
    --red: #ff5740;
    --input-background: #151e25;
    --input-background-hover: #10161b;
    --input-border: #5f6064;
    --input-placeholder: #8b8a87;
}

html {
    scroll-behavior: smooth;
    background-color: var(--dark-background1);
}

body {
    font-family: Verdana, sans-serif;
    font-size: 15px;
    background-color: var(--dark-background1);
}

.bg-dark0 {
    background-color: var(--dark-background0);
    color: var(--dark-primary);
}

.bg-dark1 {
    background-color: var(--dark-background1);
    color: var(--dark-primary);
}

.bg-dark2 {
    background-color: var(--dark-background2);
    color: var(--dark-primary);
}

.bg-yellow {
    background-color: var(--yellow);
    color: var(--dark-background1);
}

a {    
    color: var(--dark-primary);  
}

a:hover,
a:focus,
a:active {
    color: var(--dark-hover);
    outline: none;
}

.img-boards {
    border-radius: 2px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.img-boards:focus {
    outline: none;
}

@media (min-width: 992px) {
    .img-boards-sm {    
        .img-boards {
            max-width: 85%;
            display: block;
            margin: 0 auto !important;
        }
    }
}

.img-rounded {
    border-radius: 50%;
}

.tagline {
    font-size: 16px;
}

.extra-text {
    font-family: Arial, sans-serif;
    color: var(--dark-primary-test);
    font-size: 18px;
    text-transform: uppercase;
}

.highlight {
    width: fit-content;
    color: var(--dark-h);
    font-size: 14px;
    font-weight: 500;
    padding: 0.25rem 1rem;
}

.btn.highlight:hover, .btn.highlight:focus, .btn.highlight:active {
    border: 1px solid var(--yellow-hover) !important;
}

.action-btn {
    background: var(--yellow);
    color: var(--dark-background2);
    border: 1px solid var(--yellow);
}

.action-btn:hover, .action-btn:focus, .action-btn:active {
    background: var(--yellow-hover) !important;
    color: var(--dark-background2) !important;
    border: 1px solid var(--yellow-hover) !important;
}

.action-btn:disabled {
    background: var(--yellow-disabled);
    color: var(--dark-background2);
    border:1px solid var(--yellow-disabled);
}

.action-btn-outline {
    background: none;
    color: var(--yellow);
    border: 1px solid var(--yellow);
}

.action-btn-outline:hover, .action-btn-outline:focus, .action-btn-outline:active {
    background: var(--yellow) !important;
    color: var(--dark-background2) !important;
    border: 1px solid var(--yellow) !important;
}

.social-btn {
    border: none;
}

.social-btn:hover path,
.social-btn:focus path,
.social-btn:active path {
    transition: .5s;
    fill: var(--yellow-hover);
}

.fade-in {
    opacity: 0;
}

.fade-in.visible {
    animation: fadeIn 0.75s forwards;
    animation-timing-function: ease;
    animation-delay: 0.25s;
}

.text-yellow {
    color: var(--yellow);
}

.text-justify {
    text-align: justify;
}

.icon-1x {
    width: 14px;
    height: 16px;
    box-sizing: content-box;
}

.icon-15x {
    width: 21px;
    height: 24px;
    box-sizing: content-box;
}

.icon-2x {
    width: 30px;
    height: 30px;
}

.icon-3x {
    width: 34px;
    height: 34px;
}

.icon-dark path {
    fill: rgba(255, 255, 255, .5);
}

.icon-yellow path {
    fill: var(--yellow);
}

.icon-dark-primary path {
    fill: var(--dark-primary);
}

.icon-dark2 path {
    fill: var(--dark-background2);
}

.icon-pb2 {
   padding-bottom: 2px; 
}

.icon-pb3 {
   padding-bottom: 3px; 
}

.font-heading {
    font-family: Arial, sans-serif;
}

.font-18 {
    font-size: 18px;
}

.font-italic {
    font-style: italic;
}

.back-to-top-hidden {
    display: none !important;
}

.back-to-top {
    position: fixed;
    right: 45px;
    bottom: 45px;
    z-index: 99;
    border: none;
}

.back-to-top:hover, .back-to-top:focus, .back-to-top:active {
    background-color: var(--yellow-hover) !important;
}


/*** Heading ***/
h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
    color: var(--dark-h);
    font-family: Arial, sans-serif;
}

h3, .h3 {
    font-size: 24px;
}

h1,
h2,
h3,
.fw-bold {
    font-weight: 700 !important;
}

h4,
h5,
h6,
.fw-medium {
    font-weight: 500 !important;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn-rounded {
    width: 38px;
    height: 38px;
}

.btn-lg-rounded {
    width: 48px;
    height: 48px;
}

.btn-rounded,
.btn-lg-rounded {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}


/*** Header ***/
.header {
    position: sticky;
    top: 0;
    z-index: 10;
}
.header a {
    text-decoration: none;
}
.navbar {
    padding: 11px 0 !important;
    height: 75px;
    --bs-navbar-toggler-focus-width: 1px;
}
.navbar-nav {
    height: inherit;
    align-items: center;
}
.navbar .navbar-nav .nav-link {
    padding: 0;
    font-weight: 600;
    color: var(--white);
    outline: none;
    border: none;
}
.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link:focus,
.navbar .navbar-nav .nav-link.active {
    color: var(--yellow);
    box-shadow: none;
}
.header-github {
    color: var(--dark-primary);
    path {
        fill: var(--gray);
    }
    white-space: nowrap;
}
.header-github:hover, .header-github:focus, .header-github:active {
    outline: none;
    color: var(--yellow);

    path {
        fill: var(--yellow);
    }
}
.mobile-hide {
    display: none;
}
.mobile-show {
    display: block;
}
.navbar-custom .big-menu-col {
    display: flex;
    flex-direction: column;
    width: auto;
    min-width: 90px;
}
.navbar-custom .big-menu-item {
    margin-right: 0 !important;
    height: auto !important;
    align-self: center;
}
.navbar-custom .navbar-collapse {
    box-shadow:rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}
.navbar-custom .navbar-nav {
    background: var(--dark-background0);
    padding: 0 15px 16px 15px;
}
.navbar-custom .nav-link {
    padding: 10px 0;
    margin-right: 0;
}
.navbar-custom .dropdown {
    height: 100%;
}
.navbar-custom .nav-dropdown:after {
    display: inline-block;
    margin-left: 0.255em;
    margin-top: 0.2em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}

/* Hide Navbar mobile button */
@media (min-width: 992px) {
    .navbar-custom {
      flex-wrap: nowrap;
      justify-content: flex-start;
    }
    .navbar-custom .navbar-nav {
      flex-direction: row;
    }
    .navbar-custom .navbar-nav .big-menu {
      position: absolute;
    }
    .navbar-custom .navbar-nav .nav-link {
      padding-right: var(--bs-navbar-nav-link-padding-x);
      padding-left: var(--bs-navbar-nav-link-padding-x);
    }
    .navbar-custom .navbar-collapse {
      display: flex !important;
      flex-basis: auto;
      height: 100%;
    }
    .navbar-custom .navbar-toggler {
      display: none;
    }
    .navbar-custom .navbar-collapse {
        box-shadow: none;
    }
    .navbar-custom .navbar-nav {
        background: none;
        padding: 0;
    }
    .navbar-custom .nav-item {
        margin-right: 25px;
        padding: 0;
        height: 100%;
        display: flex;
        align-items: center; 
        white-space: nowrap;
    }
    .navbar-custom .big-menu {
        display: none;
        opacity: 0;
        visibility: hidden;
    }
    .navbar-custom .dropdown:hover .big-menu {
        display: flex;
        opacity: 1;
        visibility: visible;
        background: var(--dark-background0);
        padding: 16px 15px;
        transform: translate(-36%, 0);
        box-shadow:rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
        z-index: 11;
        gap: 30px;
    }
    .navbar-custom .big-menu-col {
        gap: 12px;
    }
    .navbar-custom .big-menu-item {
        align-self: auto;
    }
    .mobile-hide {
        display: block;
    }
    .mobile-show {
        display: none !important;
    }
}


/*** Home ***/
.hero-header-text {
    font-family: Verdana, sans-serif !important;
    font-size: 44px;
}


/*** Intro ***/


/*** Benefits ***/


/*** Features - Home ***/
.feat-item {
    position: relative;
    padding: 45px 30px;
    background: var(--dark-background1);
    transition: .5s;
    border: none;
}

.feat-item:hover, .feat-item:focus, .feat-item:active {
    background: var(--yellow) !important;
}

.feat-item .feat-icon {
    margin: 0 auto 20px auto;
    width: 130px;
    height: 130px;
    background: var(--dark-background1);
    transition: .5s;
}

.feat-item:hover .feat-icon,
.feat-item:focus .feat-icon,
.feat-item:active .feat-icon {
    background: var(--dark-background1); 
}

.feat-item h3 {
    color: var(--dark-h);
}

.feat-item p {
    color: var(--dark-primary);
}

.feat-item h3,
.feat-item p {
    transition: .5s;
}

.feat-item:hover h3,
.feat-item:focus h3,
.feat-item:active h3,
.feat-item:hover p,
.feat-item:focus p,
.feat-item:active p {
    color: var(--dark-background2);
}

.feat-item .feat-icon svg {
    fill: var(--yellow);
    width: 90px;
    height: 90px;
    overflow: visible;

    path {
        filter: drop-shadow(0 0 0.3rem var(--yellow));
    }
}

/* Features - Page */
.features-item {
    position: relative;
    padding: 45px 30px;

    .features-icon {
        margin: 0 auto 20px auto;
        width: 130px;
        height: 130px;
        background: var(--dark-background2);
        border: 1px solid var(--yellow);
        filter: drop-shadow(0 0 0.3rem var(--yellow));

        svg {
            fill: var(--yellow);
            width: 90px;
            height: 90px;
            overflow: visible;
        
            path {
                filter: drop-shadow(0 0 0.3rem var(--yellow));
            }
        }
    }
}

.features-tag-soon {
    display: block;
    width: fit-content;
    background: none;
    color: var(--yellow);
    font-weight: bold;
    border: 1px solid var(--yellow);
    box-shadow: 0 0 4px var(--yellow);
    padding: 4px 10px;
}

.features-tag-enhance {
    display: block;
    width: fit-content;
    background: none;
    color: #55c016;
    font-weight: bold;
    border: 1px solid #55c016;
    box-shadow: 0 0 4px #55c016;
    padding: 4px 10px;
}

.features-tag-hosted {
    display: block;
    width: fit-content;
    background: none;
    color: #b06fff;
    font-weight: bold;
    border: 1px solid #b06fff;
    box-shadow: 0 0 4px #b06fff;
    padding: 4px 10px;
}


/*** Solutions ***/
.solution-item {
    position: relative;
    padding: 25px 30px 15px 30px;
    background: var(--dark-background1);
    border: 1px solid var(--yellow);
    box-shadow: 0 0 5px var(--yellow);
    height: 100%;
}

.solution-item h3 {
    font-family: Verdana, sans-serif;
    font-size: 26px;
    font-weight: 500 !important;
    color: var(--dark-h);
}

.solution-item p {
    color: var(--dark-primary);
}

.solution-item div {
    margin-top: auto;
}


/*** Pricing ***/
.pricing-item {
    position: relative;
    padding: 25px 30px 15px 30px;
    background: var(--dark-background2);
    border: 1px solid var(--yellow);
}

.pricing-item-highlighted {
    box-shadow: 0 0 5px var(--yellow);
}

.pricing-item h3 {
    font-family: Verdana, sans-serif;
    font-size: 26px;
    font-weight: 500 !important;
    color: var(--dark-h);
}

.pricing-item li {
    color: var(--dark-primary);
}

.pricing-item hr {
    border-color: var(--yellow);
    margin: 0.75rem 0 0.5rem 0;
}

.pricing-feats {
    list-style: none;
    text-align: left;
}

ul.pricing-feats {
    padding-left: 0 !important;
}

.pricing-feats li {
    position: relative;
    padding-left: 24px;
    text-indent: -27px;
}

.pricing-feats li::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background: no-repeat center center;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="%23FFBD00" d="M438.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L160 338.7 393.4 105.4c12.5-12.5 32.8-12.5 45.3 0z"/></svg>');
    margin-right: 8px;
    vertical-align: text-top;
}

.pricing-feats-i {
    padding-left: 22px;
    text-align: left;
}

.pricing-popular {
    position: absolute;
    top: -1px;
    right: -1px;
    color: var(--yellow);
    background: none;
    border-bottom: 1px solid var(--yellow);
    border-left: 1px solid var(--yellow);
    box-shadow: 0 0 4px var(--yellow);
}

.pricing-price {
    color: var(--yellow);
    font-size: 26px;

    span {
        font-size: 14px;
    }
}


/*** Resources ***/
.resource-item {
    background: var(--dark-background1);
    border: 1px solid var(--yellow);
    box-shadow: 0 0 5px var(--yellow);
    padding: 0;
    min-height: 140px;

    h3 {
        font-family: Verdana, sans-serif !important;
        font-size: 26px;
        font-weight: 500 !important;
        border-radius: 4px 4px 0 0;
        padding: 2px;
        background: var(--yellow);
        color: var(--dark-background1);
        margin: 0;
    }

    svg {
        fill: var(--dark-background1);
        width: 20px;
        height: 20px;
        vertical-align: baseline;
        margin-right: 6px;
    }
}

.resource-item:hover,
.resource-item:focus,
.resource-item:active {
    border: 1px solid var(--yellow) !important;
    box-shadow: 0 0 5px var(--yellow);
}


/*** About ***/
.team-item {
    transition: .5s;
    border: 1px solid transparent;
    background: var(--dark-background2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.team-item h3 {
    font-size: 20px;
    font-weight: 500 !important;
}

.team-item:hover {
    border-color: var(--yellow);
    box-shadow: 0 0 5px var(--yellow);
}

.rounded-logo {
    border-radius: 30px;
  }

/*** Trial ***/
.trial-item {
    background: var(--dark-background1);
    border: 1px solid var(--yellow);
    box-shadow: 0 0 5px var(--yellow);
    padding: 0;

    h3 {
        font-family: Verdana, sans-serif !important;
        font-size: 26px;
        font-weight: 500 !important;
        border-radius: 4px 4px 0 0;
        padding: 2px;
        background: var(--yellow);
        color: var(--dark-background1);
        margin: 0;
    }
}

.trial-item:hover,
.trial-item:focus,
.trial-item:active {
    border: 1px solid var(--yellow) !important;
    box-shadow: 0 0 5px var(--yellow);
}


/*** FAQ ***/
.accordion {
    background: var(--dark-background2);;
    color: var(--dark-primary);
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  
  .acc-active, .accordion:hover, .accordion:focus, .accordion:active {
    background-color: var(--dark-background2-hover);
  }
  
  .accordion:after {
    content: '\002B';
    color: var(--yellow);
    font-weight: bold;
    float: right;
    margin-left: auto; 
  }
  
  .acc-active:after {
    content: "\2212";
  }
  
  .accordion-panel {
    background-color: var(--dark-background2);
    max-height: 0;
    overflow: hidden;

    p {
        margin: 0;
        padding: 6px 18px 12px 18px;
    }
}

.accordion-panel.accp-active {
    max-height: fit-content;
}

/*** Blog  ***/
.blog-item {
    position: relative;
    padding: 0;
    background: var(--dark-background2);
}

.blog-item:hover, .blog-item:focus, .blog-item:active {
    background: var(--dark-background2-min);
}

.blog-item p {
    color: var(--dark-primary);
}

.blog-item .details {
    padding: 20px;
}

.blog-item .author-details {
    display: flex;
    justify-content: start;
    align-items: center;
}

.blog-item .excerpt {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    height: 72px;
}

.blog-item .title {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-clamp: 1;
    -webkit-line-clamp: 1;
}

.blog-item .author-details p {
    color: var(--gray);
}

/* Blog Post */
.blog-post .details {
    display: flex;
    flex-direction: column;
    color: var(--gray);
    padding: 10px 0;
    width: 100%;
}

/* Blog Post - Compare */
.blog-compare table {
    border-collapse: separate;
    width: 100%;
    border: 1px solid var(--yellow);
    border-radius: 10px;
    box-shadow: 0 0 0.3rem var(--yellow);
}
  
.blog-compare th,
.blog-compare td {
    text-align: center;
    padding: 16px;
}
  
.blog-compare th:first-child,
.blog-compare td:first-child {
    text-align: left;
}

.blog-compare tr:nth-child(even) {
    background: var(--dark-background0);
}

.blog-compare tr:nth-child(odd) {
    background: var(--dark-background2);
}

.blog-compare tr:nth-child(odd):first-child {
    background: var(--dark-background2-min);
}

.blog-compare th:first-child,
.blog-compare td:first-child {
  width: 60%;
}

.blog-compare th:nth-child(2),
.blog-compare th:nth-child(3),
.blog-compare td:nth-child(2),
.blog-compare td:nth-child(3) {
  width: 20%;
}

.blog-compare .icon-compare {
    width: 25px;
    height: 25px;
}
  
.blog-compare .check path {
    fill: var(--green);
}
  
.blog-compare .remove path {
    fill: var(--red);
}

.blog-compare .pay path {
    fill: var(--yellow);
}

.blog-compare br {
    margin-bottom: 0.5rem;
}

.blog-compare .br-0 br {
    margin-bottom: 0 !important;
}

.blog-compare .br-sm br {
    margin-bottom: 0.2rem !important;
}


/*** Contact/Order ***/
.g-recaptcha, .grecaptcha-badge {
    visibility: hidden;
}

.contact-status,
.order-status {
    display: block;
    width: fit-content;
    background: none;
    font-weight: bold;
    padding: 4px 10px;
    text-align: center;
}

.contact-success,
.order-success {
    color: var(--green);
    border: 1px solid var(--green);
}

.contact-failure,
.order-failure {
    color: var(--red);
    border: 1px solid var(--red);
}

.contact-form label,
.order-form label {
    width: 100%;
}

.contact-form .field,
.order-form .field {
    width: 100%;
    background: var(--input-background);
    color: var(--dark-primary);
    padding: 9.5px 8px;
    border: 1px solid var(--input-border);
    border-radius: 3px;
    
    &:focus {
        outline: none;
        border: 1px solid var(--yellow);
    }
    
    &::placeholder {
        color: var(--input-placeholder);
    }
}

.contact-form .field.error,
.contact-form textarea.error,
.contact-form select.error,
.contact-form .checkbox.error,
.contact-form .attachments.error,
.order-form .field.error,
.order-form textarea.error,
.order-form select.error,
.order-form .checkbox.error,
.order-form .attachments.error {
    color: var(--red);
    border: 1px solid var(--red);
    
    &::placeholder {
        color: var(--red);
    }
}

.contact-form textarea,
.order-form textarea {
    min-height: 200px;
}

.contact-form label,
.order-form label {
    display: flex;
    flex-direction: row;
}

.contact-form select option.default,
.order-form select option.default {
    color: var(--input-placeholder);
}

.contact-form input[type="file"],
.order-form input[type="file"] {
    display: none;
}

.contact-form .attachments,
.order-form .attachments {
    width: 100%;
    background: var(--input-background);
    color: var(--input-placeholder);
    padding: 9.5px 8px;
    border: 1px solid var(--input-border);
    border-radius: 3px;
    user-select: none;
}

.contact-form .checkbox,
.order-form .checkbox {
    appearance: none;
    background: var(--input-background);
    border-radius: 3px;
    border: 1px solid var(--input-border);
    display: flex;
    justify-content: center;
    padding-right: 2px;
    width: 20px;
    height: 20px;
    font-size: 16px;

    &:before {
        content: 'Г';
        color: var(--yellow);
        transform: rotate(-135deg);
        visibility: hidden;
    }
  
    &:checked:before {
        visibility: visible;
    }
  
    &:hover {
        background: var(--input-background-hover);
        cursor: pointer;
    }
}

.contact-form .required,
.order-form .required {
    font-family: Arial, sans-serif;
    color: var(--dark-primary-test);
    font-size: 10px;
    text-transform: uppercase;
    margin-right: 2px;
    line-height: 22.5px;
}

.contact-form .spinner,
.order-form .spinner {
    border: 4px solid var(--input-border); 
    border-top: 4px solid var(--yellow);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    align-self: center;
    animation: spin 2s linear infinite;
}

.contact-form .checkmark.visible,
.contact-form .xmark.visible,
.order-form .checkmark.visible, 
.order-form .xmark.visible {
    display: inline-block;
    opacity: 0;
    animation: fadeIn 0.5s forwards;
}

.contact-form .checkmark,
.order-form .checkmark {
    display: none;
    width: 30px;
    height: 30px;
    fill: var(--green);
}

.contact-form .xmark,
.order-form .xmark {
    display: none;
    width: 30px;
    height: 30px;
    fill: var(--red);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


/*** Footer ***/
.footer {
    background: url(/img/4ga_footer.png) center center no-repeat;
    background-color: var(--dark-background0);
    background-size: contain;

    a {
        text-decoration: none;
    }
}

.footer .copyright {
    padding: 25px 0;
    font-size: 14px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.img-footer:focus {
    outline: none;
}

.footer-github-btn {
    margin-left: -4px;
}


/*** Legal ***/
.legal h2 {
    font-family: Verdana, sans-serif;
    font-size: 18px;
    margin-top: 1.5rem;
    font-weight: 700;
}

.legal p {
    text-align: justify;
    text-justify: inter-word;
}

.legal ul {
    padding-left: 1rem;
}


/*** Contribute ***/
.contribute-payments {
    gap:0.5rem;

    img {
        height: 20px;
        width: auto;
    }
}

.contribute-payments-more {
    font-size: 0.75rem;
    color: var(--dark-background2);
}
