:root {
    --primary-color: #FFC200;
    --secondary-color: #0A1A3F;
    --till-color: #3317FF;
    --black-color: #292929;
    --light-black-color: #343536;
    --dark-color: #313131;
    --body-color: #5A5A5A;
    --gray-color: #777F81;
    --light-color: #fdfdfd;
    --bs-gray-100: #F6F6F6;
    --bs-gray-300: #DCDCDC;
    --bs-primary-text-emphasis: var(--primary-color);
    --bs-body-color-rgb: 90, 90, 90;
    --bs-light-rgb: rgba(255, 255, 255, 1);
    --bs-dark-rgb: 41, 41, 41;
    --bs-primary-rgb: 178, 142, 113;
    --bs-link-hover-color-rgb: 255, 190, 0
}

:root {
    --heading-font: "Poppins", sans-serif;
    --body-font: "Poppins", sans-serif
}

*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

html {
    box-sizing: border-box
}

body {
    background-color: var(--light-color);
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 164%;
    letter-spacing: .32px;
    color: var(--body-color);
    margin: 0;
    position: relative
}

p {
    color: var(--body-color)
}

.bg-secondary p {
    color: #DCDCDC;
    font-size: smaller
}

footer a {
    font-size: smaller;
    display: block
}

a {
    color: inherit;
    text-decoration: none;
    transition: 0.3s ease-in-out
}

a:hover {
    color: var(--primary-color)
}

.text-light {
    color: var(--light-color) !important
}

.text-primary {
    color: var(--primary-color) !important
}

.text-black {
    color: var(--black-color) !important
}

.bg-light {
    background-color: var(--light-color) !important
}

.bg-primary {
    background-color: var(--primary-color) !important
}

.bg-secondary {
    background-color: var(--secondary-color) !important
}

.bg-gray {
    background-color: var(--bs-gray-100) !important
}

.padding-small {
    padding-top: 8em;
    padding-bottom: 8em
}

.padding-medium {
    padding-top: 10em;
    padding-bottom: 10em
}

.padding-large {
    padding-top: 12em;
    padding-bottom: 12em
}

@media only screen and (max-width:990px) {
    .padding-small {
        padding-top: 6em;
        padding-bottom: 6em
    }
}

.margin-small {
    margin-top: 8.125em;
    margin-bottom: 8.125em
}

.margin-medium {
    margin-top: 10em;
    margin-bottom: 10em
}

.margin-large {
    margin-top: 12em;
    margin-bottom: 12em
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--dark-color);
    font-family: var(--heading-font);
    text-transform: capitalize;
    font-weight: 600;
    letter-spacing: .84px;
    line-height: 115%
}

h6 {
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .3rem
}

.container-md {
    max-width: 1465px
}

.container-lg {
    max-width: 1750px
}

@media (min-width:200px) {
    .animate {
        animation-duration: 0.3s;
        -webkit-animation-duration: 0.3s;
        animation-fill-mode: both;
        -webkit-animation-fill-mode: both
    }
}

@keyframes slide {
    0% {
        transform: translateY(1rem);
        opacity: 0
    }

    100% {
        transform: translateY(0rem);
        opacity: 1
    }

    0% {
        transform: translateY(1rem);
        opacity: 0
    }
}

@-webkit-keyframes slide {
    0% {
        -webkit-transform: transform;
        -webkit-opacity: 0
    }

    100% {
        -webkit-transform: translateY(0);
        -webkit-opacity: 1
    }

    0% {
        -webkit-transform: translateY(1rem);
        -webkit-opacity: 0
    }
}

.slide {
    -webkit-animation-name: slide;
    animation-name: slide
}

.btn {
    --bs-btn-padding-x: 2rem;
    --bs-btn-padding-y: 1rem;
    --bs-btn-font-size: 1rem;
    --bs-btn-font-weight: 500;
    text-transform: uppercase;
    border-radius: 0;
    transition: all 0.5s ease-in-out
}

.btn-primary {
    --bs-btn-color: var(--light-color);
    --bs-btn-bg: var(--primary-color);
    --bs-btn-border-color: var(--primary-color);
    --bs-btn-hover-color: var(--light-color);
    --bs-btn-hover-bg: var(--primary-color);
    --bs-btn-hover-border-color: var(--primary-color);
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: var(--light-color);
    --bs-btn-active-bg: var(--primary-color);
    --bs-btn-active-border-color: var(--primary-color);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: var(--light-color);
    --bs-btn-disabled-bg: var(--primary-color);
    --bs-btn-disabled-border-color: var(--primary-color)
}

.btn-slide.btn-bg {
    background-color: var(--light-color)
}

.btn-slide {
    position: relative;
    display: inline-block;
    border: none;
    cursor: pointer;
    background-color: var(--secondary-color)
}

.btn-slide.hover-slide-right::before {
    top: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 3%;
    position: absolute;
    content: "";
    background-color: var(--primary-color);
    transition: 0.3s ease-in-out
}

.btn-slide span {
    position: relative;
    display: inline-block;
    top: 0;
    left: 0;
    width: 100%;
    transition: 0.3s;
    font-weight: 600
}

.btn-slide.hover-slide-right:hover::before {
    width: 100%
}

.btn-slide.hover-slide-right:hover span {
    color: var(--till-color)
}

.dropdown-item {
    text-transform: uppercase;
    font-weight: 500;
    color: var(--dark-color);
    font-family: var(--heading-font)
}

.dropdown-item.active,
.dropdown-item:hover,
.dropdown-item:active {
    color: var(--dark-color);
    background-color: var(--bs-gray-300)
}

.dropdown-toggle::after {
    border: none;
    margin-left: 0em;
    vertical-align: 0em
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--bs-light);
    position: relative
}

.pagination {
    --bs-pagination-color: var(--black-color);
    --bs-pagination-hover-color: #fff;
    --bs-pagination-hover-bg: var(--primary-color);
    --bs-pagination-hover-border-color: var(--primary-color);
    --bs-pagination-focus-color: #fff;
    --bs-pagination-focus-bg: var(--primary-color);
    --bs-pagination-focus-box-shadow: none;
    --bs-pagination-active-bg: var(--primary-color);
    --bs-pagination-active-border-color: var(--primary-color)
}

.accordion {
    --bs-accordion-btn-icon: url(https://api.iconify.design/ion/caret-down.svg?color=%23F2B821&width=30);
    --bs-accordion-btn-active-icon: url(https://api.iconify.design/ion/caret-down.svg?color=%23F2B821&width=30);
    --bs-accordion-border-radius: 0px
}

.accordion-button:focus {
    box-shadow: none
}

.accordion-button:not(.collapsed) {
    background-color: #fff0;
    box-shadow: none
}

.form-control:focus {
    border: 1px solid #acacac;
    box-shadow: none
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 8px);
    width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 12px));
    height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 12px))
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--dark-color)
}

.modal-dialog {
    max-width: 800px;
    margin: auto;
    height: 100vh;
    display: flex;
    align-items: center
}

.modal-content {
    padding: 0;
    background-color: #f5f3ef;
    border: none;
    border-radius: 0
}

a.nav-link {
    margin-top: 16px;
    text-transform: capitalize;
    font-weight: 500;
    color: var(--dark-color);
    font-family: var(--heading-font);
    transition: all 0.3s ease-in-out
}

a.nav-link::after {
    margin-top: 10px;
    content: "";
    text-align: center;
    display: block;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.9s
}

a.nav-link.active::after,
a.nav-link:focus::after,
a.nav-link:hover::after {
    width: 100%;
    transition: width 0.9s
}

#primary-header .dropdown .search::after {
    content: none
}

#primary-header .search-dropdown .dropdown-menu {
    width: 260px
}

#primary-header .search-dropdown .dropdown-menu input {
    min-width: 100%
}

#primary-header .search-dropdown .dropdown-menu button {
    padding: 0 12px;
    min-height: -webkit-fill-available;
    border-radius: .25rem
}

@media only screen and (max-width:990px) {
    a.nav-link {
        font-size: 1.5rem
    }

    a.nav-link.active::after,
    a.nav-link:focus::after,
    a.nav-link:hover::after {
        width: 0%
    }

    a.nav-link.active,
    a.nav-link:focus,
    a.nav-link:hover {
        color: var(--primary-color) !important
    }
}

img.brand-image {
    filter: contrast(0);
    transition: all 0.3s ease-in
}

img.brand-image:hover {
    filter: contrast(1)
}

svg.play-icon {
    animation: play 1.5s alternate infinite ease-in
}

@keyframes play {
    0% {
        transform: scale(.8)
    }

    100% {
        transform: scale(1.1)
    }
}

.jarallax {
    min-height: 350px;
    transition: all 0.5s ease-in-out;
    opacity: .6
}

.service-block {
    transition: all 0.5s ease-in-out
}

.service-block:hover .jarallax {
    opacity: 0
}

.service-btn {
    margin-top: 20px;
    transition: all 0.5s ease-in-out;
    color: var(--secondary-color);
    border-color: var(--secondary-color)
}

.service-block:hover .service-btn {
    color: var(--dark-color);
    background-color: var(--primary-color);
    border-color: var(--primary-color)
}

.swiper-slide.swiper-width {
    width: auto !important
}

.project-content {
    cursor: pointer
}

.project-content .portfolio-img {
    transition: all 0.5s ease-in-out
}

.project-content:hover .portfolio-img,
.project-content.active .portfolio-img {
    opacity: .3
}

.portfolio-description {
    opacity: 0;
    transition: all 0.5s ease-in-out
}

.project-content:hover .portfolio-description,
.project-content.active .portfolio-description {
    opacity: 1
}

.border-dotted {
    border: 2px dashed rgb(255 255 255 / .5)
}

button.filter-button {
    border: 0;
    background: #fff0;
    text-transform: uppercase;
    transition: all 0.5s ease-in-out;
    border-radius: 20px
}

button.filter-button.active,
button.filter-button:hover {
    color: var(--bs-light);
    background: var(--primary-color)
}

.plan-post {
    border: 1px solid var(--secondary-color)
}

span.price-tick {
    color: var(--primary-color)
}

.price-option {
    height: 300px
}

.orbitron {
    font-family: "Orbitron", serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal
}

.hero-image {
    height: 800px;
    width: 100%;
    overflow: hidden;
    object-fit: cover;
    object-position: top
}

@media only screen and (max-width:900px) {
    .project-content .portfolio-img {
        height: 40vh
    }
}

@media only screen and (max-width:600px) {
    .hero-image {
        height: 55vh;
        overflow: hidden;
        object-fit: cover;
        object-position: top
    }
}

.text-secondary {
    color: var(--secondary-color) !important
}

h6 {
    font-family: orbitron, "Popins";
    letter-spacing: 2px !important
}

#header {
    background-color: #F6F6F6;
    position: sticky;
    top: 0;
    overflow: hidden;
    z-index: 100
}

.bg-secondary .widget-title {
    color: white !important
}

#footer a {
    color: #bbb9b9
}

.service-card {
    flex-wrap: wrap;
    display: flex;
    box-shadow: 0 4px 21px -12px rgb(5 1 53 / .301);
    border-radius: 0;
    margin: 0 0 2rem 0;
    overflow: hidden;
    position: relative;
    color: #fff
}

.service-card.dark {
    background-color: #18151f
}

.service-card.light {
    background-color: #fff
}

.service-card .t-dark {
    color: #18151f
}

.service-card h1,
.service-card .h1 {
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2
}

.service-card .small {
    font-size: 80%
}

.service-card .service-card-title {
    font-size: 1.75rem;
    color: var(--secondary-color)
}

.service-card .service-card-img {
    max-height: 180px;
    width: 100%;
    object-fit: cover;
    position: relative
}

.service-card .service-card-img_link {
    display: contents
}

.service-card .service-card-bar {
    width: 50px;
    height: 10px;
    margin: 10px 0;
    border-radius: 0;
    background-color: #424242;
    transition: width 0.2s ease
}

.service-card .service-card-text {
    padding: 1.5rem;
    position: relative;
    display: flex;
    flex-direction: column
}

.service-card .service-card-preview-txt {
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: justify;
    height: 100%
}

.service-card .service-card-tagbox {
    display: flex;
    flex-flow: row wrap;
    font-size: 14px;
    margin: 20px 0 0 0;
    padding: 0;
    justify-content: center
}

.service-card .service-card-tagbox .tag__item {
    display: inline-block;
    background: rgb(83 83 83 / .4);
    border-radius: 0;
    padding: 2.5px 10px;
    margin: 0 5px 5px 0;
    cursor: default;
    user-select: none;
    transition: background-color 0.3s
}

.service-card .service-card-tagbox .tag__item:hover {
    background: rgb(83 83 83 / .8)
}

.service-card:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(-70deg, #424242, transparent 50%);
    opacity: 1;
    border-radius: 0
}

.service-card:hover .service-card-bar {
    width: 100px
}

@media screen and (min-width:769px) {
    .service-card {
        flex-wrap: inherit
    }

    .service-card .service-card-title {
        font-size: 2rem
    }

    .service-card .service-card-tagbox {
        justify-content: start
    }

    .service-card .service-card-img {
        max-width: 300px;
        max-height: 100%;
        transition: transform 0.3s ease
    }

    .service-card .service-card-text {
        padding: 3rem;
        width: 100%
    }

    .service-card .media.service-card-text:before {
        content: "";
        position: absolute;
        display: block;
        background: #18151f;
        top: -20%;
        height: 130%;
        width: 55px
    }

    .service-card:hover .service-card-img {
        transform: scale(1.1)
    }

    .service-card:nth-child(2n+1) {
        flex-direction: row
    }

    .service-card:nth-child(2n+0) {
        flex-direction: row-reverse
    }

    .service-card:nth-child(2n+1) .service-card-text::before {
        left: -12px !important;
        transform: rotate(4deg)
    }

    .service-card:nth-child(2n+0) .service-card-text::before {
        right: -12px !important;
        transform: rotate(-4deg)
    }
}

@media screen and (min-width:1024px) {
    .service-card-text {
        padding: 2rem 3.5rem
    }

    .service-card-text:before {
        content: "";
        position: absolute;
        display: block;
        top: -20%;
        height: 130%;
        width: 55px
    }

    .service-card.dark .service-card-text:before {
        background: #18151f
    }

    .service-card.light .service-card-text:before {
        background: #fff
    }
}

.service-card .service-card-tagbox .yellow.play:hover {
    background: var(--primary-color);
    color: #000
}

.yellow .service-card-title:hover {
    color: var(--primary-color)
}

.yellow .service-card-bar {
    background-color: var(--primary-color)
}

.yellow::before {
    background-image: linear-gradient(-30deg, rgb(189 187 73 / .1), transparent 50%)
}

.yellow:nth-child(2n)::before {
    background-image: linear-gradient(30deg, rgb(189 187 73 / .1), transparent 50%)
}

.preloader-square-swapping {
    margin: 30px auto;
    width: 19px;
    height: 19px;
    transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg)
}

.preloader-square-swapping .cssload-square-part {
    position: absolute;
    width: 19px;
    height: 19px;
    z-index: 1;
    animation: cssload-part-anim 0.92s cubic-bezier(.445, .05, .55, .95) infinite alternate;
    -o-animation: cssload-part-anim 0.92s cubic-bezier(.445, .05, .55, .95) infinite alternate;
    -ms-animation: cssload-part-anim 0.92s cubic-bezier(.445, .05, .55, .95) infinite alternate;
    -webkit-animation: cssload-part-anim 0.92s cubic-bezier(.445, .05, .55, .95) infinite alternate;
    -moz-animation: cssload-part-anim 0.92s cubic-bezier(.445, .05, .55, .95) infinite alternate
}

.preloader-square-swapping .cssload-square-green {
    background: var(--primary-color);
    right: 0;
    bottom: 0;
    animation-direction: alternate-reverse;
    -o-animation-direction: alternate-reverse;
    -ms-animation-direction: alternate-reverse;
    -webkit-animation-direction: alternate-reverse;
    -moz-animation-direction: alternate-reverse
}

.preloader-square-swapping .cssload-square-pink {
    background: var(--secondary-color);
    left: 0;
    top: 0
}

.preloader-square-swapping .cssload-square-blend {
    background: #5e5530;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 2;
    animation: blend-anim 0.92s ease-in infinite;
    -o-animation: blend-anim 0.92s ease-in infinite;
    -ms-animation: blend-anim 0.92s ease-in infinite;
    -webkit-animation: blend-anim 0.92s ease-in infinite;
    -moz-animation: blend-anim 0.92s ease-in infinite
}

@keyframes blend-anim {
    0% {
        transform: scale(.01, .01) rotateY(0);
        -webkit-animation-timing-function: cubic-bezier(.47, 0, .745, .715);
        animation-timing-function: cubic-bezier(.47, 0, .745, .715)
    }

    50% {
        transform: scale(1, 1) rotateY(0);
        -webkit-animation-timing-function: cubic-bezier(.39, .575, .565, 1);
        animation-timing-function: cubic-bezier(.39, .575, .565, 1)
    }

    100% {
        transform: scale(.01, .01) rotateY(0)
    }
}

@-webkit-keyframes blend-anim {
    0% {
        -webkit-transform: scale(.01, .01) rotateY(0);
        -webkit-animation-timing-function: cubic-bezier(.47, 0, .745, .715)
    }

    50% {
        -webkit-transform: scale(1, 1) rotateY(0);
        -webkit-animation-timing-function: cubic-bezier(.39, .575, .565, 1)
    }

    100% {
        -webkit-transform: scale(.01, .01) rotateY(0)
    }
}

@keyframes cssload-part-anim {
    0% {
        transform: translate3d(-10px, -10px, 0)
    }

    100% {
        transform: translate3d(10px, 10px, 0)
    }
}

@-webkit-keyframes cssload-part-anim {
    0% {
        -webkit-transform: translate3d(-10px, -10px, 0)
    }

    100% {
        -webkit-transform: translate3d(10px, 10px, 0)
    }
}
