.logo {
    margin-right: 30px;
}
.logo-text {
    font-size: 2em;
    line-height: 0.8;
    /*border-left: 15px dotted #2c7ae7;
    padding-left: 5px;*/
}
.mnu-slider-item div {
    background: rgba(0,0,0,0.6);
    padding: 10px;
    border-radius: 6px;
}
.intro-content {
    background: rgba(0,0,0,0.7);
    padding: 20px;
    border-radius: 6px;
    border: 1px solid #333;
}
.section-heading {
    margin-bottom: 3.5rem;
}

.section-heading h1, .section-heading h2, .section-heading h3 {
    position: relative;
    font-size: 2.5rem;
    margin: 0;
    color: var(--main-color);
}

.section-heading.shm-none {
    margin-bottom: 0;
}

.section-heading .wrap-btn {
    margin-top: 2rem;
}

.heading-center {
    text-align: center;
}

.section-subheading {
    font-size: 1rem;
    margin-bottom: 0.3125rem;
    text-transform: uppercase;
    color: var(--main-color);
}

.section-desc {
    margin: 1.25rem auto 0 auto;
    max-width: 35rem;
    color: var(--primary-color);
}

.footer-info{
    padding: 2rem 0;
    background: var(--main-color);
    border-top: 1px dashed rgba(var(--primary-color-rgb),0.5);
    color: var(--secondary-color);
}
.footer-info a {
    color: var(--secondary-color);
}
.footer-info a:hover {
    color: var(--text-primary);
}
/* -----------------------------------
	[13] PRELOADER
-------------------------------------*/
.load-for-js {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}
/*lds-dual-ring*/
.lds-dual-ring {
    display: inline-block;
    width: 80px;
    height: 80px;
}
.lds-dual-ring:after {
    content: " ";
    display: block;
    width: 64px;
    height: 64px;
    margin: 8px;
    border-radius: 50%;
    border: 6px solid #fff;
    border-color: #fff transparent #fff transparent;
    animation: lds-dual-ring 1.2s linear infinite;
}
@keyframes lds-dual-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/*lds-ring*/
.lds-ring {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}
.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 8px;
    border: 8px solid #fff;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #fff transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
}
@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}