body {
    font-family: 'Roboto';
    overflow-y: scroll;
    font-size: 16px;
    color: #333;
    position: relative;
    background: #eee;
}

h1, h2, h3, h4, h5 {
    display: block;
    width: 100%;
    color: #fff;
}

h2 {
    text-align: center;
    color: #607496;
    font-weight: bold;
    font-size: 48px;
    padding: 5px;
    margin-bottom: 50px;
    text-transform: uppercase;
}
@media (max-width: 768px) {
    h2 { font-size: 40px; }
}


img { display: block; }
img.img-centred { margin: 0 auto; }
img.img-flex { max-width: 100%; }
img.img-full-width { width: 100%; }

a,
a:visited {
    color: #5393DA;
    text-decoration: none;
}

a:hover,
a:focus,
a:active {
    color: #ff6400;
    text-decoration: none;
}

div {
    display: block;
}

section {
    margin: 0;
    padding: 70px 0;
}

form.form {
    overflow: hidden;
    margin: 0;
}

.btn.btn-primary {
    display: block;
    width: 100%;
    color: #000;
    border: none;
    border-radius: 4px;
    margin: 15px 0;
    position: relative;
    z-index: 0;
    background: #5393DA;
}

.btn.btn-primary:hover {
    color: #fff;
}

.btn.btn-primary:focus {
    box-shadow: none;
}

.btn.btn-primary:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00c521;
    z-index: -1;
    opacity: 0;
    transform: scale3d(0.7, 1, 1);
    transition: 0.3s all;
    border-radius: 4px;
}

.btn.btn-primary:hover:before {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
    background: #00c521;
    transition: 0.3s all;
}

/* =============== */



/* ===== SCROLL TO TOP ===== */

#topcontrol {
    z-index: 9999;
    margin: 0 10px 135px 0;
    width: 42px;
    height: 26px;
    display: block;
    background: url('../images/up.png') no-repeat left 0px;
}

#topcontrol:hover {
    background-position: 0 bottom;
}

/* ===== Cookie ===== */

#Cookies {
    position: fixed;
    color: #fff;
    width: 100%;
    bottom: 0;
    z-index: 1000;
    background: #1f2a52dd;
    padding: 20px 40px;
}

#Cookies h4 {
    color: #fff;
}

#Cookies .btn {
    height: 40px;
    margin: 10px 5px;
    text-align: center;
    font-weight: bold;
    min-width: 130px;
    line-height: 30px;
}

/* ===== Cookie (The End) ===== */

.mob-only-inline {
    display: inline;
}
@media (min-width: 768px) { .mob-only-inline { display: none; } }

.mob-only-block {
    display: flex;
    justify-content: space-between;
}
@media (min-width: 768px) { .mob-only-block { display: none; } }

.nomob {
    display: none;
}
@media (min-width: 768px) { .nomob { display: block; } }

/* =============== */



/* ===== Panel ===== */

.panel {
    box-shadow: 0 1px 2px 0 rgba(0,0,0,0.14);
    border-radius: 4px;
    color: #333;
    background-color: #fff;
    padding: 40px;
    margin: 0 0 30px 0;
}

.panel h3, .panel h4, .panel h5 { color: #fff; }

/* =============== */



/* ===== Main Menu ===== */

#menu.nav {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 50;
}
#menu.nav:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #18171c;
    z-index: 2;
}

#menu .nav-container {
    width: 100%;
    margin: 0 auto;
}
@media (min-width: 1200px) {
    #menu .nav-container { width: 1170px; }
}
@media (min-width: 1400px) {
    #menu .nav-container { width: 1320px; }
}
@media (min-width: 1600px) {
    #menu .nav-container { width: 1520px; }
}


.nav-body {
    position: relative;
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 60px;
    align-items: center;
}

a.nav-logo {
    flex: 0 0 260px;
    display: flex;
    padding: 0 0 0 15px;
    color: #f9c032;
    position: relative;
    z-index: 3;
}

.nav-logo img {
    max-width: 100%;
    max-height: 60px;
    display: block;
}

.nav-logo span {
    width: 185px;
    height: 60px;
    padding: 0 15px;
    font-size: 24px;
    font-weight: bold;
    vertical-align: middle;
    display: flex;
    align-items: center;
}

.nav-text {
    z-index: 2;
    display: block;
    padding: 0 15px;
}

.nav-burger {
    display: none;
}

.nav-burger:before,
.nav-burger:after {
    transition: 0.3s all;
}

.nav-burger span {
    transition: 0.3s all;
}

.nav-burger.active:before {
    transform: rotate(45deg);
    top: 9px;
    transition: 0.3s all;
}

.nav-burger.active:after {
    transform: rotate(-45deg);
    bottom: 9px;
    transition: 0.3s all;
}

.nav-burger.active span {
    transform: scale(0);
    transition: 0.3s all;
}

.nav-menu {
    height: 100%;
    display: flex;
}

.nav-list {
    display: flex;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 2;
}

.nav-list li {
    list-style: none;
    margin: 0;
    height: 100%;
}

.nav-list li span.toggle,
.nav-list li a,
.nav-list li a:visited {
    color: #f9c032;
    background: transparent;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 0px 20px;
    height: 100%;
    transition: 0.3s all;
    cursor: pointer;
}

.nav-list li i {
    display: inline-block;
    padding: 0 10px 0 0 ;
    color: #fff;
}

.nav-list li span.toggle:hover,
.nav-list li a:hover,
.nav-list li a:active,
.nav-list li a:focus {
    color: #fff;
    background: rgba(255,255,255,0.1);
    transition: 0.3s all;
    cursor: pointer;
}

.nav-list li.dropdown span.toggle:after {
    display: inline-block;
    margin-left: .5em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
}

.nav-list li.dropdown ul {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 10rem;
    padding: .5rem 0;
    margin: 0;
    color: #f9c032;
    text-align: left;
    list-style: none;
    background: rgb(24 23 28 / 80%);
    background-clip: padding-box;
    border-radius: 0 0 .25rem .25rem;
}

.nav-list li.dropdown ul li a,
.nav-list li.dropdown ul li a:visited {
    display: block;
    width: 100%;
    padding: .25rem 3rem;
    clear: both;
    font-weight: 400;
    color: #f9c032;
    white-space: nowrap;
    background: transparent;
    border: 0;
    text-align: left;
    text-transform: none;
    transition: all 0.3s;
}
@media (min-width: 1200px) {
    .nav-list li.dropdown ul li a { padding: .25rem 1.5rem; }
}

.nav-list li.dropdown ul li a:hover,
.nav-list li.dropdown ul li a:active,
.nav-list li.dropdown ul li a:focus {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

@media (max-width: 1200px) {
    body.lock {
        overflow: hidden;
    }
    .nav-burger {
        display: block;
        position: relative;
        width: 30px;
        height: 20px;
        z-index: 4;
        margin: 10px 15px;
    }
    .nav-burger:before,
    .nav-burger:after {
        content: '';
        background: #f9c032;
        position: absolute;
        width: 100%;
        height: 2px;
        left: 0;
    }
    .nav-burger:before {
        top: 0;
    }
    .nav-burger:after {
        bottom: 0;
    }
    .nav-burger span {
        position: absolute;
        background: #f9c032;
        width: 100%;
        height: 2px;
        left: 0;
        top: 9px;
    }
    .nav-menu {
        position: fixed;
        display: block;
        width: 100%;
        height: 100%;
        overflow: auto;
        top: -100%;
        left: 0;
        background: #18171cee;
        padding: 60px 0px 10px 0px;
        transition: 0.3s all;
    }
    .nav-menu.active {
        top: 0;
        transition: 0.3s all;
    }
    .nav-list {
        display: block;
        width: 100%;
    }
    .nav-list li {
        margin: 0;
        height: auto;
    }
    .nav-list li a,
    .nav-list li span.toggle {
        display: block;
        padding: 10px 20px;
        font-size: 18px;
        text-align: center;
    }
    .nav-list li.dropdown ul {
        position: relative;
        display: none;
        float: none;
        width: 100%;
        background: #4e486377;
        border-left: none;
        border-right: none;
        border-radius: 0;
    }
    .nav-list li.dropdown ul li a {
        text-align: center;
    }
}

#menu .social {
    display: flex;
    height: 60px;
}

#menu .social a {
    text-align: center;
    text-decoration: none;
    color: #f9c032;
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    margin: 0 20px;
    height: 100%;
}
#menu .social a:hover {
    color: #fff;
}

#menu .social a.op {
    transition: 0.3s all;
}
#menu .social a:hover {
    transition: 0.3s all;
}

#menu .social a.so {
    width: 40px;
    margin: 0;
    transition: 0.3s all;
}

#menu .social a i {
    font-size: 30px;
    color: #f9c032;
    transition: 0.3s all;
    display: block;
    margin: 0 auto;
}

#menu .social a:hover {
    transition: 0.3s all;
}

#menu #aEU { padding: 15px 0; }
#menu #aUS { padding: 15px 0; }

#menu .currency {
    padding: 15px 0;
    filter: grayscale(1);
    opacity: 0.6;
}

#menu .currency:hover,
#menu .currency.selected {
    filter: grayscale(0);
    opacity: 1;
}

#menu #aGoogle img {
    display: inline-block;
}

#menu .social a.odnoklassniki:hover i { color: #f7971c; }
#menu .social a.vkontakte:hover i { color: #4A76A8; }
#menu .social a.instagram:hover i { color: #BB337A; }
#menu .social a.skype:hover i { color: #0178CA; }
#menu .social a.discord:hover i { color: #404EED; }
#menu .social a.email:hover i { color: #fff; }

#menu .social a.btn {
    height: 40px;
    display: flex;
    margin: 10px 5px;
    color: #000;
    width: 130px;
    line-height: 30px;
}
#menu .social a.btn:hover {
    color: #fff;
}

#menu .social a.btn i {
    color: #000;
    font-size: 16px;
    margin: 0 4px;
}
#menu .social a.btn:hover i {
    color: #fff;
}

@media (max-width: 1200px) {
    #menu .social { 
        display: block;
        text-align: center;
    }
    #menu .social a { display: block; }
    #menu .social a.op { display: inline-block; }
    #menu .social a.so { display: inline-block; }
    #menu .social a.btn {
        display: block;
        margin: 0 auto;
        width: 90%;
        max-width: 300px;
        line-height: 30px;
    }
    #menu .social a.btn i { display: inline; }
}

/* ===== Main Menu (The End) ===== */



/* ===== HEADER ===== */

header {
    background: url('../images/bg-header.jpg') top center no-repeat #556771;
    background-size: cover;
    overflow: hidden;
    margin: 0;
    padding: 70px 0;
    min-height: 520px;
    text-align: center;
    box-sizing: border-box;
    color: #fff;
    position: relative;
}

header .row {
    margin-bottom: 30px;
}

header img {
    max-width: 100%;
    display: block;
    margin: 0;
}

header h1 {
    text-align: left;
    margin: 0;
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    text-shadow: 0 2px 10px #000;
}

header p {
    text-align: left;
    padding: 20px;
    margin: 0;
    color: #fff;
    border-radius: 4px;
    background: rgb(0 0 0 / 50%);
}

header button.btn.btn-primary {
    display:inline-block;
    width: auto;
    min-width: 280px;
    padding: 10px 30px;
    font-size: 36px;
    font-weight: bold;
}

header .col {
    margin-bottom: 30px;
}

header .feature {
    background: rgba(0,0,0,0.5);
    padding: 15px;
    border-radius: 4px;
    overflow: hidden;
    margin: 0 0 30px 0;
}

header .feature .icon {
    width: 25%;
    float: left;
    text-align: center;
    padding: 5px;
}
@media (max-width: 768px) {
    header .feature .icon {
        width: 100%;
        float: none;
        margin: 0 0 5px 0;
    }
}

header .feature .icon i {
    font-size: 60px;
    color: #fff;
}

header .feature .info {
    width: 75%;
    float: left;
    padding: 0 0 0 20px;
}
@media (max-width: 768px) {
    header .feature .info {
        width: 100%;
        float: none;
        margin: 0;
        padding: 0;
    }
}

header h2 {
    text-align: left;
    margin: 10px 0;
}

header h3 {
    text-align: left;
    color: #f9c032;
    margin: 0;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 22px;
}

header h4 {
    text-align: left;
    color: #fff;
    margin: 0;
    font-size: 20px;
}

header h5 {
    text-align: left;
    color: #ccc;
    margin: 0;
    font-size: 18px;
}

@media (max-width: 768px) {
    header h3,
    header h4,
    header h5 {
        text-align: center;
        margin: 0;
        padding: 0;
    }
}

/* ===== HEADER (The End) ===== */



/* ===== FOG ===== */

header::before,
header::after,
header div.fog::before, 
header div.fog::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: repeat-x;
}
header div.fog::before, 
header div.fog::after    {
    left: 100%;
}
header::before, 
header div.fog::before {
    background-image: url("../images/fog-1.png");
    animation: fogmove 20s linear 0s infinite;
}
header::after, 
header div.fog::after {
    background-image: url("../images/fog-2.png");
    animation: fogmove 10s linear 0s infinite;
}
@keyframes fogmove {
    from {
        transform: translate3d(0, 0, 0);
    }
    to {
        transform: translate3d(-100%, 0, 0);
    }
}

/* ===== FOG (The End) ===== */



/* ===== Hot Offers ===== */

#HotOffers {
    background: url('../images/border.png') top center repeat-x #dedede;
}

#HotOffers .cards {
    text-align: center;
}

#HotOffers .card {
    display: inline-block;
    text-align: center;
    transition: 0.3s all;
    margin: 0 10px 50px;
    width: 300px;
    border: 4px solid #fff;
    border-radius: 0;
    box-shadow: 0 0 0 4px #0003;
}

@media (max-width: 468px) {
    #HotOffers .card {
        margin: 0 5px 20px;
        width: 280px;
    }
}

#HotOffers .card:hover {
    box-shadow: 0 0 0 4px #0003, 0 15px 20px 5px rgb(0 0 0 / 15%);
    transition: 0.3s all;
}

#HotOffers .card .card-title {
    margin-bottom: 1rem;
    font-size: 24px;
    line-height: 24px;
    height: 48px;
    color: #5393DA;
}

#HotOffers .card .card-img,
#HotOffers .card .card-img-top {
    border-radius: 0;
}

#HotOffers .card .card-body {
    padding: 2rem 1rem;
}

#HotOffers .card .card-body ul {
    margin: 10px 0;
    padding: 0 0 0 40px;
    min-height: 170px;
}

#HotOffers .card .card-body ul li {
    text-align: left;
    font-size: 24px;
    line-height: 14px;
    color: #5393DA; 
    margin: 0 0 10px 0;
}

#HotOffers .card .card-body ul li span {
    color: #333; 
    font-size: 14px;
}

#HotOffers .card .card-price {
    font-size: 20px;
    font-weight: bold;
    color: #333;
}

#HotOffers .card .card-price .price {
    font-size: 36px;
    color: #f9c032;
}


#HotOffers .btn {
    display: block;
    height: 40px;
    margin: 10px auto;
    text-align: center;
    font-weight: bold;
    max-width: 200px;
    line-height: 30px;
}

/* ===== Hot Offers (The End) ===== */



/* ===== Hot Offers ===== */

#Categories {
    background: url('../images/bg-offers.jpg') top center no-repeat #d4e4ff;
    background-size: cover;
}

#Categories .cards {
    text-align: center;
}

#Categories .card {
    border: none;
    position: relative;
    min-height: 300px;
    background: transparent;
    text-align: center;
    transition: 0.3s all;
    border: none;
    border-radius: 0;
    overflow: hidden;
}

#Categories .card:hover {
    transition: 0.3s all;
}

#Categories .card .img {
    width: 95%;
    border: 1px solid #fff;
    border-radius: 0px;
    box-shadow: 0 0 0 4px #0003;
    margin: 10px auto;
    overflow: hidden;
    background: #000;
}

#Categories .card .card-img,
#Categories .card .card-img-top {
    width: 100%;
    border: none;
    border-radius: 0;
    transition: 0.6s all ease;
    opacity: 0.7;
}

@media (max-width: 375px) {
    #Categories .card .card-img,
    #Categories .card .card-img-top {
        height: 300px;
    }
}

#Categories .card:hover .card-img,
#Categories .card:hover .card-img-top {
    /* transform: scale(1.05); */
    opacity: 0.4;
    transition: 0.6s all ease;
}

#Categories .card .card-title {
    text-align: left;
    font-size: 30px;
    line-height: 30px;
    color: #5393DA;
}

#Categories .card .links a,
#Categories .card .card-title a {
    color: #fff;
}

#Categories .card .links a span,
#Categories .card .card-title a span {
	position: relative;
	display: inline-block;
	padding: 4px 20px;
	background: #2195de;
	-webkit-transition: -webkit-transform 0.3s;
	-moz-transition: -moz-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transform-origin: 50% 0;
	-moz-transform-origin: 50% 0;
	transform-origin: 50% 0;
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
}

#Categories .card .links a span::before,
#Categories .card .card-title a span::before {
	position: absolute;
    padding: 4px 20px;
	top: 100%;
	left: 0;
	width: 100%;
	height: 100%;
    color: #ccc;
	background: #0965a0;
	content: attr(data-hover);
	-webkit-transition: background 0.3s;
	-moz-transition: background 0.3s;
	transition: background 0.3s;
	-webkit-transform: rotateX(-90deg);
	-moz-transform: rotateX(-90deg);
	transform: rotateX(-90deg);
	-webkit-transform-origin: 50% 0;
	-moz-transform-origin: 50% 0;
	transform-origin: 50% 0;
}

#Categories .card .links a:hover span,
#Categories .card .links a:focus span,
#Categories .card .card-title a:hover span,
#Categories .card .card-title a:focus span {
	-webkit-transform: rotateX(90deg) translateY(-22px);
	-moz-transform: rotateX(90deg) translateY(-22px);
	transform: rotateX(90deg) translateY(-22px);
}

#Categories .card .links a:hover span::before,
#Categories .card .links a:focus span::before,
#Categories .card .card-title a:hover span::before,
#Categories .card .card-title a:focus span::before {
	background: #28a2ee;
    color: #fff;
}

#Categories .card .card-body {
    padding: 40px;
    position: absolute;
    top: 0;
    left: 0;
}

#Categories .card .card-body ul {
    margin: 0;
    padding: 0;
}

#Categories .card .card-body ul li {
    display: block;
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 8px 0;
    padding: 0;
    text-align: left;
}

#Categories .card .card-price .price {
    font-size: 36px;
    color: #f9c032;
}

#Categories .btn {
    display: block;
    height: 40px;
    margin: 10px auto;
    text-align: center;
    font-weight: bold;
    max-width: 200px;
    line-height: 30px;
}

/* ===== Hot Offers (The End) ===== */



/* ===== Power Leveling ===== */

#PowerLeveling h2 {
    margin-bottom: 50px;
}

#PowerLeveling img.pl-elves {
    display: block;
    margin: 0 auto;
    max-width: 100%;
}

#PowerLeveling form h5 {
    margin: 40px 0 0 0;
}

/* ===== Power Leveling (The End) ===== */



/* ===== How it works ===== */

#HowItWorks {
    background: url('../images/border.png') top center repeat-x transparent;
}

#HowItWorks h2 {
    text-align: center;
    margin-bottom: 50px;
}

#HowItWorks .cards {
    text-align: center;
}

#HowItWorks .card {
    display: inline-block;
    border: none;
    color: #fff;
    text-align: center;
    transition: 0.3s all;
    margin: 0 10px 50px;
    background: transparent;
    border-radius: 6px;
    overflow: hidden;
}

@media (max-width: 468px) {
    #HowItWorks .card {
        margin: 0 5px 20px;
    }
}

#HowItWorks .card:hover {
    transition: 0.3s all;
}

#HowItWorks .card .card-img,
#HowItWorks .card .card-img-top {
    display: block;
    border-radius: 50%;
    width: 170px;
    height: 170px;
    margin: 10px auto;
    box-shadow: 0 0 0 4px #0004;
}

@media (max-width: 375px) {
    #HowItWorks .card .card-img,
    #HowItWorks .card .card-img-top {
        width: 110px;
        height: 110px;
    }
}

#HowItWorks .card .card-title {
    margin-bottom: 1rem;
    font-weight: bold;
    font-size: 18px;
    color: #ff6400;
}

#HowItWorks .card .card-body {
    padding: 20px 5px;
    font-size: 16px;
    color: #666;
    background: transparent;
}

#HowItWorks .card .card-body p {
    min-height: 80px;
}

#HowItWorks .get-boosted {
    text-align: center;
}

#HowItWorks .get-boosted h2 {
    text-align: center;
    color: #f9c032;
}

#HowItWorks button.btn.btn-primary {
    display:inline-block;
    width: auto;
    min-width: 280px;
    padding: 10px 30px;
    font-size: 36px;
    font-weight: bold;
    background: #f9c032;
    box-shadow: 0 5px 10px 0 #000;
}

/* ===== How it works (The End) ===== */



/* ===== LFG - PROFESSIONAL CARRY SERVICE! ===== */

#LFG {
    background: #eee;
    background-image:
        url('../images/border.png'),
        url('../images/bg-lfg.jpg');
    background-position: top center, top center;
    background-repeat: repeat-x, no-repeat;
    background-size: auto, cover;
}

#LFG H2 {
    color: #fff;
}

#LFG .left { text-align: left; }
#LFG .right { text-align: right; }

#LFG .panel {
    box-shadow: 0 1px 2px 0 rgba(0,0,0,0.14);
    border-radius: 4px;
    color: #fff;
    background-color: #fff3;
    padding: 40px;
    margin: 0 0 30px 0;
}

#LFG img.lfg-dreanei {
    display: block;
    margin: 0 auto;
    margin-bottom: 40px;
    height: 300px;
    max-width: 100%;
}

#LFG img.lfg-elves {
    display: block;
    margin: 0 auto;
    margin-bottom: 40px;
    height: 300px;
    max-width: 100%;
}

/* ===== LFG - PROFESSIONAL CARRY SERVICE! (The End) ===== */



/* ===== Frequently Asked Questions ===== */

#FAQ {
    
}

#FAQ img.faq-rogue {
    display: block;
    margin: 0 auto;
    max-width: 100%;
}

/* ===== Frequently Asked Questions (The End) ===== */



/* ===== Custom Services ===== */

#CustomServices {
    font-size: 18px;
}

#CustomServices img {
    max-width: 100%;
}

#CustomServices .row {
    background: url('../images/custom-services.png') bottom right no-repeat transparent;
}

/* ===== Custom Services (The End) ===== */



/* ===== Joun Us ===== */

#JoinUs {
    background: #333;
    background-image:
        url('../images/border.png'),
        url('../images/bg-join-us.jpg');
    background-position: top center, top center;
    background-repeat: repeat-x, no-repeat;
    background-size: auto, cover;
    text-align: center;
}

#JoinUs img {
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

#JoinUs h2 {
    text-align: center;
    margin: 30px 0;
    color: #fff;
    font-size: 60px;
    font-weight: normal;
    text-shadow: 0 2px 10px #000;
    text-transform: none;
}

#JoinUs button {
    display: inline-block;
    width: auto;
    min-width: 280px;
    padding: 10px 30px;
    font-size: 36px;
    font-weight: bold;
}

/* ===== Join Us (The End) ===== */



/* ===== FOOTER ===== */

footer {
    margin: 0;
    padding: 50px 0;
    background: #18171c;
    min-height: 300px;
    color: #bbb;
}

footer h2 {
    color: #5393DA;
    font-size: 20px;
    font-weight: bold;
    text-align: left;
    background: linear-gradient(#fde6bc,#5393DA);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

footer h3 {
    margin: 0 0 10px 0;
    padding: 0 15px;
    color: #5393DA;
    font-size: 20px;
    font-weight: bold;
    text-align: left;
    text-transform: uppercase;
    background: linear-gradient(#fde6bc,#5393DA);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

footer h3:after {
    content: '';
    display: block;
    width: 70px;
    height: 2px;
    background: #fff;
    left: 15px;
}

footer ul {
    margin: 0 0 20px 0;
    padding: 0;
    list-style: none;
}

footer ul li {
    display: block;
    padding: 0;
    margin: 0;
}

footer a,
footer a:visited {
    display: block;
    margin: 0;
    padding: 5px 15px;
    color: #bbb;
    line-height: 36px;
    text-decoration: none;
    background: transparent;
    border-radius: 4px;
    transition: 0.3s all;
}

footer a:hover,
footer a:active,
footer a:focus {
    color: #5393DA;
    text-decoration: none;
    background: rgba(255,255,255,0.03);
    transition: 0.3s all;
}

footer ul li a i {
    font-size: 20px;
    color: #fff;
}

footer ul.payments {
    padding: 0 10px;
}

footer ul.payments li {
    display: inline-block;
    margin: 5px;
}

footer ul.payments li a,
footer ul.payments li a:visited {
    display: block;
    margin: 0;
    padding: 0;
    color: #bbb;
    text-decoration: none;
    background: transparent;
    border-radius: 4px;
    transition: 0.3s all;
}

footer ul.payments li a:hover,
footer ul.payments li a:active,
footer ul.payments li a:focus {
    color: #5393DA;
    text-decoration: none;
    background: transparent;
    transition: 0.3s all;
}

footer ul.payments li a i {
    font-size: 60px;
    color: #fff;
}


footer ul.payments li a:hover i {
    font-size: 60px;
    color: #5393DA;
}

footer .copy {
    text-align: center;
    padding: 0;
    margin: 0 0 10px 0;
}

footer form {
    margin: 0 0 20px 0;
    padding-left: 15px;
}

footer form .form-group {
    margin: 0 0 10px 0;
}

footer form .form-control {
    border-radius: 2px;
    color: #fff;
    background-color: #1c2638;
    border-color: #2c4c84;
}

footer form .form-control:focus {
    color: #fff;
    background-color: #1c2638;
    border-color: #5393DA;
    outline: 0;
    box-shadow: 0 0 5px 0 #5393DA;
}

footer form .btn.btn-primary {
    font-weight: bold;
    text-transform: uppercase;
}

/* ===== Footer (The End) ===== */



/* ===== Check Box ===== */

label.checkbox {
    height: 30px;
    display: flex;
    color: #999;
    align-items: center;
    margin: 4px;
    padding: 0;
    line-height: 20px;
    font-size: 14px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

label.checkbox.active {
    color: #333;
}

label.checkbox input[type="checkbox"] {
    display: inline-block;
    visibility: hidden;
    width: 40px;
    height: 20px;
    margin: 0 15px 0 0;
}

label.checkbox:before {
    content: '';
    display: block;
    width: 40px;
    height: 20px;
    margin: 0;
    background: #ceced4;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s all;
    position: absolute;
    left: 0;
    top: 4px;
    z-index: 1;
}

label.checkbox.active:before {
    background: #5393DA;
    transition: 0.3s all;
}

label.checkbox:after {
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    background: #fff;
    border-radius: 7px;
    cursor: pointer;
    transition: 0.3s all;
    box-shadow: 0 0 1px 0 rgba(0,0,0,0.5) inset;
    position: absolute;
    left: 3px;
    top: 7px;
    z-index: 2;
}

label.checkbox.active:after {
    top: 7px;
    left: 23px;
    transition: 0.3s all;
}

/* ===== Check Box (The End) ===== */



/* ===== Radio Box NO SPAN ===== */

label.radio {
    height: 30px;
    display: flex;
    color: #999;
    align-items: center;
    margin: 4px;
    padding: 0;
    line-height: 20px;
    font-size: 14px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

label.radio input[type="radio"] {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin: 0 15px 0 0;
    visibility: hidden;
}

label.radio:before {
    content: '';
    position: absolute;
    display: block;
    margin: 0;
    width: 16px;
    height: 16px;
    background: #5f6368;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s all;
    top: 6px;
    left: 0;
    z-index: 1;
}

label.radio:after {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    position: absolute;
    left: 2px;
    top: 2px;
    background: #fff;
    border: 2px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s all;
    top: 8px;
    left: 2px;
    z-index: 2;
}

label.radio.active {
    color: #333;
}

label.radio.active:before {
    background: #5393DA;
    transition: 0.3s all;
}

label.radio.active:after {
    background: #5393DA;
    transition: 0.3s all;
}

/* ===== Radio Box (The End) ===== */



/* ===== Spoilers ===== */

.spoiler {
    margin: 0;
    padding: 10px 20px;
}
@media (max-width:768px) {
    .spoiler { padding: 10px 0; }
    .spoilers.panel { padding: 5px; }
}

.spoiler span.Q {
    color: #5393DA;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

.spoiler-title {
    font-size: 20px;
    color: #333;
    background: #eee;
    padding: 5px 15px 5px 45px;
    position: relative;
    cursor: pointer;
    border-radius: 4px;
    transition: 0.3s all;
}
@media (max-width:768px) {
    .spoiler-title { font-size: 16px; }
}


.spoiler-title.active {
    border-radius: 4px 4px 0 0;
    transition: 0.3s all;
}

.spoiler-title:before,
.spoiler-title:after {
    content: '';
    width: 10px;
    height: 10px;
    background-color: #333;
    position: absolute;
    height: 1px;
    top: 20px;
}

.spoiler-title:before {
    transform: rotate(40deg);
    left: 15px;
    transition: 0.3s all;
}

.spoiler-title:after {
    transform: rotate(-40deg);
    left: 22px;
    transition: 0.3s all;
}

.spoiler-title.active:before {
    transform: rotate(-40deg);
    transition: 0.3s all;
    background-color: #f00;
}

.spoiler-title.active:after {
    transform: rotate(40deg);
    transition: 0.3s all;
    background-color: #f00;
}

.spoiler-body {
    padding: 10px 15px;
    display: none;
    border: 1px solid #eee;
    border-top: none;
    border-radius: 0 0 4px 4px;
}

/* ===== Spoilers (The End) ===== */



/* ===== FAQ PAGE (The End) ===== */

#Timer {
    background: #fff;
    text-align: center;
}

#Timer .btn.btn-primary {
    display:inline-block;
    width: auto;
    min-width: 280px;
    padding: 10px 30px;
    font-size: 36px;
    font-weight: bold;
}

#Timer h2 {
    text-align: center;
}

#Timer h3 {
    text-align: center;
    color: #333;
}

#Timer h4 {
    text-align: center;
    color: #333;
}

#Timer .number {
    padding: 10px;
    margin: 0 0 15px 0;
    background: #f00;
    color: #fff;
    border-radius: 6px;
    text-align: center;
    box-shadow: 0 4px 8px 0 #000a;
}

.count-down-container {
    text-align: center;
    padding: 35px 10px 40px 10px
}

.count-down-container>span {
    display: block;
    text-transform: uppercase;
    font-weight: bold
}

.count-down {
    margin: 10px 0 20px 0
}

.count-down>div {
    display: inline-block;
    margin: 0 20px 0 20px;
    width: 100px;
    text-align: center
}

.count-down>div>div {
    font-size: 54px;
    font-weight: bold;
    text-shadow: 0 2.5px 0 #aaa, 0 0 5px rgb(0 0 0 / 80%);
}

.count-down>div>span {
    display: block;
    font-size: 16px;
    text-transform: uppercase
}

.count-down-container .button-pretty {
    margin-bottom: 15px
}



#content {
    padding: 100px 0;
    overflow: hidden;
}

/* ===== Catalog Menu ===== */

#catalog h2 {
    text-align: left;
    text-transform: none;
    color: #607496;
    font-weight: bold;
    font-size: 35px;
    padding: 5px;
    margin-bottom: 0px;
}

/* common */
#catalog ul {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
}

#catalog ul li {
    display: block;
    margin: 0;
    padding: 0;
    position: relative;
}

#catalog ul li a,
#catalog ul li a:visited {
    display: block;
    margin: 0;
    padding: 10px 50px 10px 15px;
    color: #444;
    text-decoration: none;
    transition: all 0.3s;
}

#catalog ul li a:hover,
#catalog ul li a:focus,
#catalog ul li a:active {
    color: #5a5a5a;
    text-decoration: none;
    transition: all 0.3s;
}

#catalog .body {
    padding: 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 6px 0px #0003;
}

#catalog ul li span {
    display: block;
    width: 10%;
    margin: 0;
    padding: 0;
    text-align: center;
    color: #444;
    transition: all 0.3s;
    position: absolute;
    top: 0;
    right: 0;
    width: 44px;
    height: 44px;
    line-height: 40px;
    cursor: pointer;
    background: url('../images/arrow-down.png') center no-repeat transparent;
}
#catalog ul > li > span:hover { background: url('../images/arrow-down.png') center no-repeat rgba(0,0,0,0.1); }

/* lvl 1 */
#catalog ul { background: #fff; }
#catalog ul > li { border-bottom: 1px solid #eee; }
#catalog ul > li:last-child { border-bottom: none; }
#catalog ul > li > a,
#catalog ul > li > a:visited { color: #444; border-left: 3px solid transparent; }
#catalog ul > li > a:hover,
#catalog ul > li > a:focus,
#catalog ul > li > a:active { color: #5393DA; border-left: 3px solid #5393DA; }
#catalog ul > li > a.sub,
#catalog ul > li > a.sub:visited {  }
#catalog ul > li > a.sub:hover,
#catalog ul > li > a.sub:focus,
#catalog ul > li > a.sub:active { color: #5393DA; padding-left: 20px; }
#catalog ul > li.active > a,
#catalog ul > li.active > a:visited { border-left: 3px solid transparent; }
#catalog ul > li.active > a:hover,
#catalog ul > li.active > a:focus,
#catalog ul > li.active > a:active { border-left: 3px solid #5393DA; padding-left: 20px; }
#catalog ul > li.active > a.sub,
#catalog ul > li.active > a.sub:visited {  }
#catalog ul > li.active > a.sub:hover,
#catalog ul > li.active > a.sub:focus,
#catalog ul > li.active > a.sub:active { padding-left: 20px; }

/* lvl 2 */
#catalog ul > li > ul { background: #f2fbff; border-top: 1px solid #eee; }
#catalog ul > li > ul > li { border-bottom: 1px dotted #aecfde; }
#catalog ul > li > ul > li:last-child { border-bottom: none; }
#catalog ul > li > ul > li > a,
#catalog ul > li > ul > li > a:visited { color: #666; padding-left: 25px; }
#catalog ul > li > ul > li > a:hover,
#catalog ul > li > ul > li > a:focus,
#catalog ul > li > ul > li > a:active { padding-left: 30px; }
#catalog ul > li > ul > li > a.sub,
#catalog ul > li > ul > li > a.sub:visited { padding-left: 25px; }
#catalog ul > li > ul > li > a.sub:hover,
#catalog ul > li > ul > li > a.sub:focus,
#catalog ul > li > ul > li > a.sub:active {  }
#catalog ul > li > ul > li.active > a,
#catalog ul > li > ul > li.active > a:visited { padding-left: 25px; }
#catalog ul > li > ul > li.active > a:hover,
#catalog ul > li > ul > li.active > a:focus,
#catalog ul > li > ul > li.active > a:active { padding-left: 30px; }
#catalog ul > li > ul > li.active > a.sub,
#catalog ul > li > ul > li.active > a.sub:visited { padding-left: 25px; }
#catalog ul > li > ul > li.active > a.sub:hover,
#catalog ul > li > ul > li.active > a.sub:focus,
#catalog ul > li > ul > li.active > a.sub:active { padding-left: 30px; }

/* lvl 3 */
#catalog ul > li > ul > li > ul { background: #fafafa; border-top: 1px solid #aecfde; }
#catalog ul > li > ul > li > ul > li { border-bottom: 1px solid #ccc; }
#catalog ul > li > ul > li > ul > li:last-child { border-bottom: none; }
#catalog ul > li > ul > li > ul > li > a,
#catalog ul > li > ul > li > ul > li > a:visited { padding-left: 50px; }
#catalog ul > li > ul > li > ul > li > a:hover,
#catalog ul > li > ul > li > ul > li > a:focus,
#catalog ul > li > ul > li > ul > li > a:active {  }
#catalog ul > li > ul > li > ul > li > a.sub,
#catalog ul > li > ul > li > ul > li > a.sub:visited { padding-left: 50px; }
#catalog ul > li > ul > li > ul > li > a.sub:hover,
#catalog ul > li > ul > li > ul > li > a.sub:focus,
#catalog ul > li > ul > li > ul > li > a.sub:active {  }
#catalog ul > li > ul > li > ul > li.active > a,
#catalog ul > li > ul > li > ul > li.active > a:visited { padding-left: 50px; }
#catalog ul > li > ul > li > ul > li.active > a:hover,
#catalog ul > li > ul > li > ul > li.active > a:focus,
#catalog ul > li > ul > li > ul > li.active > a:active {  }
#catalog ul > li > ul > li > ul > li.active > a.sub,
#catalog ul > li > ul > li > ul > li.active > a.sub:visited { padding-left: 50px; }
#catalog ul > li > ul > li > ul > li.active > a.sub:hover,
#catalog ul > li > ul > li > ul > li.active > a.sub:focus,
#catalog ul > li > ul > li > ul > li.active > a.sub:active {  }

/* ===== Catalog Menu (The End) ===== */


h1.page-title {
    text-align: left;
    text-transform: none;
    color: #607496;
    font-weight: bold;
    font-size: 35px;
    padding: 5px 0;
    margin-bottom: 0px;
}


/* ===== Products ===== */

#products {
    margin: 0 0 20px 0;
    text-align: center;
}


#products .card {
    display: inline-block;
    text-align: center;
    transition: 0.3s all;
    margin: 5px 10px 30px;
    width: 290px;
    border: 4px solid #fff;
    border-radius: 0;
    box-shadow: 0 0 0 4px #0003;
}

@media (max-width: 468px) {
    #products .card {
        margin: 0 5px 20px;
        width: 280px;
    }
}

#products .card:hover {
    box-shadow: 0 0 0 4px #0003, 0 15px 20px 5px rgb(0 0 0 / 15%);
    transition: 0.3s all;
}

#products .card .image {
    display: block;
    height: 200px;
}

#products .card .card-img,
#products .card .card-img-top {
    border-radius: 0;
    display: block;
    margin: 0 auto;
    width: auto;
    max-width: 100%;
    max-height: 200px;
}

#products .card .card-title {
    margin-bottom: 1rem;
    font-size: 24px;
    line-height: 24px;
    height: 48px;
    color: #5393DA;
}

#products .card .card-body {
    padding: 2rem 1rem;
}

#products .card .card-body ul {
    margin: 10px 0;
    padding: 0 0 0 40px;
    min-height: 170px;
}

#products .card .card-body ul li {
    text-align: left;
    font-size: 24px;
    line-height: 14px;
    color: #5393DA; 
    margin: 0 0 10px 0;
}

#products .card .card-body ul li span {
    color: #333; 
    font-size: 14px;
}

#products .card .prices {
    display: flex;
    overflow: hidden;
    padding: 5px 0;
    line-height: 24px;
    justify-content: center;
}

#products .card .compare-price {
    display: inline-block;
    padding: 0 10px;
    font-weight: 300;
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
}

#products .card .price {
    display: inline-block;
    padding: 0 10px;
    font-size: 20px;
    font-weight: bold;
    color: #ff9900;
}

#products .card .price.red {
    color: #a85555;
}

#products .card .no-price {
    font-size: 16px;
    font-weight: normal;
    color: #a85555;
}

#products .card .price .currency {
    color: #666;
}

#products .btn {
    display: block;
    height: 40px;
    margin: 10px auto;
    text-align: center;
    font-weight: bold;
    max-width: 200px;
    line-height: 30px;
    text-transform: uppercase;
    transition: 0.3s all;
}

#products .btn:hover {
    background: #00c521;
    transition: 0.3s all;
}

/* ===== Products (The End) ===== */




/* ===== PAGINATION ===== */

.pagination {
    justify-content: center;
}

/* ===== Pagination (The End) ===== */



/* ===== Product Card ===== */

.product-card {

}

.product-card .image {
    display: block;
    overflow: hidden;
    background: #fff;
    width: 100%;
    margin: 0;
    padding: 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.product-card .image img {
    display: block;
    margin: 0 auto;
}

.product-card .product-information {
    padding: 0 10px;
}

.product-card .description p {
    text-align: justify;
}

.product-card .product-price {
    display: flex;
    overflow: hidden;
    padding: 5px 0;
    line-height: 24px;
}

.product-card .compare-price {
    display: inline-block;
    padding: 0 10px;
    font-weight: 300;
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
}

.product-card .price {
    display: inline-block;
    padding: 0 10px;
    font-size: 20px;
    font-weight: bold;
    color: #ff9900;
}

.product-card .price.red {
    color: #a85555;
}

.product-card .no-price {
    font-size: 16px;
    font-weight: normal;
    color: #a85555;
}

.product-card .price .currency {
    color: #666;
}

.product-card .btn {
    display: block;
    height: 40px;
    margin: 10px 0;
    text-align: center;
    font-weight: bold;
    max-width: 200px;
    line-height: 30px;
    text-transform: uppercase;
    transition: 0.3s all;
}

.product-card .btn:hover {
    background: #00c521;
    transition: 0.3s all;
}

/* ===== Product Card (The End) ===== */