:root {
    --main_background: #0f0f0f;
    --main_string_color: #fff;
    --secondary_text_color: #1652bf;
}

body {
    margin: 0;
    padding: 0;
    font-size: 14px;
    line-height: 1.5;
    font-family: "Open Sans", sans-serif;
    background: var(--main_background);
    color: var(--main_string_color);
}

iframe,
video,
img {
    max-width: 100%;
}

a {
    transition: 0.5s all ease;
}

a:hover {
    text-decoration: none;
}

.custom-container {
    width: 60%;
    max-width: 60%;
    margin-right: auto;
    margin-left: auto;
}

.large-container {
    width: 70%;
    max-width: 70%;
    margin-right: auto;
    margin-left: auto;
}

header {
    position: relative;
    z-index: 5;
    width: 100%;
    transition: 0.2s all ease;
    min-height: 65vh;
}

header .section-menu {
    background: #0a0a0a;
    transition: all 1s ease;
    position: relative;
    z-index: 5;
}

header .section-menu.sticky {
    position: fixed;
    top: 0;
    z-index: 9999;
    background: white;
    width: 100%;
    box-shadow: 0 0 40px 5px rgb(0 0 0/5%);
}

.section-menu .navbar .navbar-nav .nav-item {
    padding: 8px 20px;
    text-transform: uppercase;
}

.section-menu .navbar .navbar-brand img {
    max-width: 80px;
    object-fit: cover;
}

.section-menu .navbar .navbar-nav .nav-item a {
    transition: 0.2s all ease;
    font-weight: 500;
    font-family: "Open Sans";
    font-size: 14px;
    line-height: 24px;
    color: var(--main_string_color);
}

.section-menu .navbar .navbar-nav .nav-item a:hover {
    color: #fcc236;
}
.section-menu .navbar .social {
    display: block;
    position: relative;
    top: 5px;
}

.section-menu .navbar .social .info-wrap {
    display: flex;
    align-items: center;
}

.section-menu .navbar .social .info-wrap .icon {
    float: left;
    line-height: 1;
    font-size: 30px;
    padding-right: 20px;
    color: #333;
}

.section-menu .navbar .social .info-wrap .info {
    float: left;
    line-height: 1.4;
}

.section-menu .navbar .social .info-wrap .info span {
    display: block;
    color: #333;
    font-size: 16px;
    font-weight: 400;
}

.section-menu .navbar .social .info-wrap .info a {
    text-decoration: none;
    font-weight: 700;
    font-size: 20px;
    color: #333;
}

.section-menu .navbar-expand-lg .navbar-nav {
    padding-left: 50px;
}

.section-menu .navbar .navbar-collapse {
    justify-content: space-between;
    align-items: center;
}

header .header-content {
    position: relative;
    padding-top: 11%;
    padding-bottom: 11%;
}

header .header-content video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    -ms-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}
header .header-content:after {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 5;
    width: 100%;
    height: 200px;
    background: linear-gradient(180deg, rgba(14, 14, 14, 0) 0%, #0a0a0a 93.7%);
    content: "";
}
header .header-content .overlay {
    background-color: #000;
    opacity: 0.6;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    z-index: 5;
}

header .header-content .container {
    position: relative;
    z-index: 10;
}

header .header-content .main-title h1 {
    color: #fff;
    font-family: "Open Sans";
    font-weight: 600;
    font-size: 5em;
    margin-bottom: 0;
}

header .header-content .main-title h5 {
    color: #efefef;
    font-family: "Open Sans";
    font-weight: 500;
    font-size: 2em;
    text-transform: uppercase;
}

header .header-content .description {
    color: #fff;
    position: relative;
    margin: 10px 0;
    margin-bottom: 35px;
}

header .header-content .social-button {
    position: relative;
    margin: 0 auto;
    text-align: center;
}

section.about {
    position: relative;
    padding: 100px;
    background: #0a0a0a;
    background-image: url(../images/vertical-lines.png);
    z-index: 1;
    background-repeat: repeat;
    z-index: 5;
}

section.about .main-title h6 {
    color: #efefef;
}

section.about .main-title h1 {
    color: #fcc236;
}
section.about .about-right .col-md-12 p {
    font-size: 14px;
    color: #efefef;
    font-family: "Open Sans", sans-serif;
    font-weight: 500;
    line-height: 26px;
}
section.about .about-right .about-list {
    list-style: none;
}
section.about .about-right .about-list .icon {
    position: relative;
    display: inline-block;
}
section.about .about-right .about-list .icon span {
    font-size: 20px;
    color: #fcc236;
}
section.about .about-right .about-list .text {
    display: inline-block;
    margin-left: 15px;
}
section.about .about-right .about-list .text p {
    color: #efefef;
    margin: 0;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 1px solid #efefef;
    border-radius: 60px;
    position: relative;
    margin: 0 auto;
    &::before {
        content: "";
        width: 8px;
        height: 8px;
        position: absolute;
        top: 5px;
        left: 50%;
        transform: translateX(-50%);
        background-color: #efefef;
        border-radius: 50%;
        opacity: 1;
        animation: wheel 2s infinite;
        -webkit-animation: wheel 2s infinite;
    }
}

@keyframes wheel {
    to {
        opacity: 0;
        top: 50px;
    }
}

@-webkit-keyframes wheel {
    to {
        opacity: 0;
        top: 50px;
    }
}

section.about .about-right .solutions {
    position: relative;
    display: block;
    margin: 0 auto;
    text-align: center;
    align-items: center;
    border-top: 1px solid #333;
    margin-top: 40px;
    padding-top: 20px;
    padding-bottom: 39px;
}
section.about .about-right .solutions strong {
    font-size: 1.2em;
    font-weight: 600;
    color: #fcc236;
    margin: 0;
    line-height: 30px;
}

section.services {
    position: relative;
    padding: 100px;
    background: #131313;
    background-image: url(../images/bg-dotted.png);
    z-index: 1;
    background-repeat: repeat;
}

section.services .main-title h6 {
    color: #efefef;
}

section.services .main-title h1 {
    color: #fcc236;
}

section.services .services-list {
    margin-top: 80px;
    counter-reset: service-counter;
}

section.services .services-item {
    background: #0a0a0a url(../images/vertical-lines.png);
    border-radius: 5px;
    margin: 15px 4px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 40px 5px rgb(0 0 0/5%);
    transition: all 0.5s ease-in-out;
    min-height: 380px;
}

section.services .services-item:before {
    counter-increment: service-counter;
    content: "0" counter(service-counter) "";
    position: absolute;
    right: 30px;
    top: 35px;
    color: #fcc236;
    opacity: 0.2;
    font-size: 80px;
    line-height: 1;
    font-weight: bold;
    z-index: 1;
}

section.services .services-item:hover {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
}

section.services .services-img {
    position: relative;
}

section.services .services-img::before {
    content: "";
    position: absolute;
    z-index: 1;
    height: 80px;
    width: 105%;
    bottom: -10px;
    left: -5px;
    background: #fcc236;
    -webkit-clip-path: polygon(20% 73%, 100% 0, 100% 100%, 0 100%, 0 50%);
    clip-path: polygon(20% 73%, 100% 0, 100% 100%, 0 100%, 0 50%);
}

section.services .services-img::after {
    content: "";
    position: absolute;
    z-index: 1;
    height: 80px;
    width: 105%;
    bottom: -20px;
    left: -5px;
    background: #333;
    -webkit-clip-path: polygon(20% 73%, 100% 0, 100% 100%, 0 100%, 0 50%);
    clip-path: polygon(20% 73%, 100% 0, 100% 100%, 0 100%, 0 50%);
}

.section.services .services-img img {
    border-radius: 10px 10px 0 0;
}

section.services .services-icon {
    position: relative;
    background: transparent;
    box-shadow: 0 3px 24px rgb(0 0 0/10%);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    /*border-radius: 50%;*/
    padding: 1rem;
    font-size: 50px;
    color: #fcc236;
    text-align: center;
    margin: 0 auto;
    margin-top: 50px;
}

section.services .services-icon::before {
    content: "";
    position: absolute;
    border: 2px dashed #fcc236;
    width: 90px;
    height: 90px;
    border-radius: 50px;
    -webkit-animation: sticker-rotate 20s linear infinite;
    animation: sticker-rotate 20s linear infinite;
}

section.services .services-icon img {
    width: 80px;
}

section.services .services-content {
    color: #ccc;
    padding: 35px 20px 35px;
    text-align: center;
    margin-bottom: 50px;
}

section.services .services-title a {
    font-weight: bold;
    text-decoration: none;
    font-size: 25px;
    color: #fff;
    transition: all 0.5s ease-in-out;
}

.custom-tabs a {
    color: #efefef;
}

.custom-tabs a:hover {
    color: #fcc236;
}

.modal-dialog {
    max-width: 50%;
}

.btn-close {
    color: #efefef;
}

.modal-header,
.modal-footer {
    border-color: #000;
}
.modal-content {
    background: #333;
}

.custom-tabs .nav-link.active {
    color: #fcc236;
    background: #333;
    border: 1px solid #000;
}

section.services .services-title a:hover {
    color: #fff;
}

.service-info li {
    padding: 0.5rem;
    font-weight: 400;
}
.service-info li:not(:last-child) {
    border-bottom: 1px solid #333;
}
.service-info {
    list-style: none;
    margin: 10px 0;
}

section.contact {
    position: relative;
    padding: 100px;
    background: #0a0a0a;
    background-image: url(../images/vertical-lines.png);
    z-index: 1;
    background-repeat: repeat;
}

.large-container .form-control {
    box-shadow: 0 0 40px 5px rgb(0 0 0/5%);
    border: 1px solid #222;
    background: #131313;
    color: #efefef;
    border-radius: 4px;
    font-size: 15px;
    padding: 15px 20px;
}

.btn-custom {
    position: relative;
    overflow: hidden;
    background-color: #314cbb;
    background: linear-gradient(to left, #314cbb 50%, #333 50%) right;
    background-size: 200%;
    transition: 0.5s ease-out;
    color: #fff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 17px 50px;
    font-weight: 500;
    font-size: 16px;
    border: none;
    outline: none;
    width: 100%;
    line-height: 1.2;
    z-index: 2;
    transition: all 0.5s ease-out;
}
.btn-custom:hover {
    color: white;
    background-position: left;
}

.swiper-slide {
    background: transparent !important;
}
.custom-button {
    display: block;
    text-align: center;
    width: 250px;
    line-height: 60px;
    min-height: 60px;
    background: #333;
    color: var(--main_string_color);
    font-weight: bold;
    text-decoration: none;
    border-radius: 10px;
    background: #7165af;
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 10%);
    transition: 0.2s all ease;
}

.ctm-button {
    display: block;
    text-align: center;
    width: 180px;
    line-height: 50px;
    min-height: 50px;
    background: #333;
    color: var(--main_string_color);
    font-weight: bold;
    text-decoration: none;
    /*background-image: linear-gradient(
        to left top,
        #41a6e3,
        #1c92dd,
        #007ed6,
        #0068cc,
        #1652bf
    );*/
    background: #fcc236;
    transition: 0.2s all ease;
}

.ctm-button:hover {
    color: white;
    background: #287ff9;
}

.custom-button:hover {
    filter: brightness(120%);
    color: #333;
}

header .header-content .description .quick-info span {
    font-family: "Open Sans";
    font-weight: 400;
    font-size: 1.1em;
    position: relative;
}

header .header-content .description .quick-info span:not(:last-child) {
    padding-right: 10px;
}

header .header-content .description .quick-info span:not(:last-child):after {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid #fcc444;
    margin-left: 12.5px;
}

header .header-content .main-title span {
    color: #fcc236;
}

footer {
    position: relative;
    margin: 0 auto;
    display: block;
    padding: 50px 0;
    width: 100%;
    text-align: center;
    background: #0f0f0f;
}
footer:before {
    content: "";
    position: absolute;
    background: url(../images/slider-bottom-img.png) no-repeat;
    top: 0;
    left: 50%;
    margin-left: -325px;
    width: 650px;
    height: 29px;
}
footer .text-left {
    text-align: left;
}
footer .container {
    max-width: 90%;
}
footer .container .social-icons {
    display: block;
    width: 100%;
    text-align: left;
    padding-bottom: 20px;
    border-bottom: 1px solid #171717;
}
footer .container .social-icons a {
    transition: 0.2s all ease;
    display: inline-block;
    color: white;
    font-size: 24px;
    margin-right: 30px;
}
footer .container .row {
    margin-top: 30px;
}
footer .container .row ul {
    margin: 0;
    padding: 0;
}
footer .container .row ul li {
    display: inline-block;
    margin-right: 30px;
}
footer .container .row ul li a {
    font-weight: 700;
    font-size: 14px;
    line-height: 22px;
    color: #e0e0e0;
    text-transform: uppercase;
    transition: all 0.3s ease;
}
footer .container .row .col-md-6 img:not(:last-child) {
    margin-right: 20px;
}
footer .container .social-icons a:hover {
    filter: brightness(80%);
}
footer .copyright {
    display: block;
    text-align: left;
    margin-top: 10px;
}
footer .copyright p {
    margin-bottom: 0;
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    color: #625f67;
}
footer .img-fluid {
    max-height: 10vh;
}

.section-text {
    left: 5%;
    position: absolute;
    top: 50%;
    opacity: 0.3;
}

.section-text h2 {
    color: #efefef;
    font-family: Josefin Sans;
    font-size: 120px;
    font-weight: 700;
    letter-spacing: 15px;
    writing-mode: vertical-rl;
    transform: rotate(180deg) translateY(50%) translateX(0);
}

section.services .section-text h2 {
    color: #d3d3d3;
}
.theme-btn {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    padding: 11px 20px;
    text-transform: capitalize;
    position: relative;
    cursor: pointer;
    border-radius: 10px;
    text-align: center;
    overflow: hidden;
    z-index: 1;
    background-color: #314cbb;
    border: none;
    box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
    -webkit-transition: all 0.5s ease-in-out;
    text-decoration: none;
    transition: all 0.5s ease-in-out;
}

.theme-btn:hover {
    color: #fff;
    background-color: #333;
}

.toTop {
    background: #fcc236;
    width: 50px;
    height: 50px;
    line-height: 50px;
    color: var(--main_string_color);
    position: fixed;
    bottom: 150px;
    right: 44px;
    cursor: pointer;
    display: none;
    z-index: 9;
    font-size: 28px;
    text-align: center;
    border-radius: 50%;
    transition: 0.5s all ease;
}
.modal-body i.fa.fa-check-square {
    color: lightgreen;
}
.modal-body i.fa.fa-minus-square {
    color: red;
}
.toTop:hover {
    filter: brightness(120%);
}

.heading-divider {
    display: inline-block;
    position: relative;
    height: 3px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    background-color: #222;
    width: 90px;
    overflow: hidden;
}

.dc {
    width: 40px;
}

.heading-divider:after {
    content: "";
    position: absolute;
    left: 0;
    top: -1.1px;
    height: 7px;
    width: 12px;
    background-color: #fcc236;
    -webkit-animation: heading-move 5s infinite linear;
    animation: heading-move 5s infinite linear;
}

@-webkit-keyframes bounceInUp {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(10px);
    }
}

@keyframes bounceInUp {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(10px);
    }
}

.swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

@-webkit-keyframes heading-move {
    0% {
        transform: translateX(-1px);
    }
    50% {
        transform: translateX(85px);
    }
    100% {
        transform: translateX(-1px);
    }
}

@keyframes heading-move {
    0% {
        transform: translateX(-1px);
    }
    50% {
        transform: translateX(85px);
    }
    100% {
        transform: translateX(-1px);
    }
}

@-webkit-keyframes sticker-rotate {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes sticker-rotate {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
    }
}
