/*-------------------------------------------------------------------
[Table of contents]

01. Setup
	* Variables
	* html, body
	* Scrollbar
	* Container Heading
	* Cover
	* Button

02. Preloader

03. Navbar

04. Homepage(index.aspx)
	01. Cover
	02. Vision Mission Value
	03. About
		* Introduction
		* Brands
		* Counters
	04. Team
	05. Services
	06. Works/Projects
	07. Pricing
	08. News/Blog
	09. Contact

05. Footer
	* Newsletter
	* Footer Objectives
	* Copyright

06. Service Single(service_single.html)
	* Cover(Styled in Setup section)
	* Service Detail
	* Sidebar
	* Projects(Styled in Homepage section)

07. Project detail(project_single.html)
	* Cover(Styled in Setup section)
	* Project Detail
	* Sidebar
	* Projects(Styled in Homepage section)

08. Blog Page(blog_full.html)
	* Cover(Styled in Setup section)
	* Blog Container

09. Blog Article(blog_article.html)
	* Cover(Styled in Setup section)
	* Article Container
	* Sidebar


==================================================================*/

/* ==================================================

01 - SETUP

=====================================================*/

/*--Variables--*/
:root {
    --color-white: #FEFEFE;
    --color-lite: #ACACAC;
    --bg-dark: #101010;
    --bg-dark-cnt: #181818;
    --bg-dark-hl: #202022;
    --color-sec: #FF1744;
    --color-border: rgba(255,255,255,0.1);
}

html[data-color-scheme="light"] {
    --color-white: #000;
    --color-lite: #616161;
    --bg-dark: #fefefe;
    --bg-dark-cnt: #f5f5f5;
    --bg-dark-hl: #e0e0e0;
    --color-sec: #FF1744;
    --color-border: rgba(0,0,0,0.1);
}

/*--Html, Body--*/
* {
    -webkit-font-smoothing: antialiased !important;
    font-smoothing: antialiased !important;
}

body {
    position: relative;
    background: var(--bg-dark);
    color: var(--color-white);
}

    /*--Scrollbar--*/
    body::-webkit-scrollbar {
        width: 1em;
        background: var(--bg-dark-hl);
    }

    body::-webkit-scrollbar-track {
        -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    }

    body::-webkit-scrollbar-thumb {
        background-color: rgba(66,66,66,1);
        outline: 1px solid slategrey;
    }

    body::scrollbar {
        width: 1em;
        background: var(--bg-dark-hl);
    }

    body::scrollbar-track {
        box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    }

    body::scrollbar-thumb {
        background-color: rgba(66,66,66,1);
        outline: 1px solid slategrey;
    }

/*--Container Heading--*/
.cnt_head {
    padding-top: 50px;
    padding-bottom: 50px;
    font-family: 'Poppins',sans-serif;
}

.s_head {
    font-size: 48px;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 10px;
}

.sub_head {
    font-size: 16px;
    font-weight: 500;
    font-family: 'Inter',sans-serif;
    color: var(--color-sec);
}

.h_body {
    font-size: 16px;
    font-family: 'Inter',sans-serif;
    font-weight: 400;
    color: var(--color-lite);
}

/*--Cover--*/
#cover {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    /*background: -webkit-linear-gradient(180deg,rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.65) 5%,rgba(0,0,0,0.1) 100%),url(../images/cover.jpg);
	background: linear-gradient(180deg,rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.65) 5%,rgba(0,0,0,0.1) 100%),url(../images/cover.jpg);
	background-position: center;
	background-size: cover;*/
}

    #cover .cover_wrapper {
        padding-top: 200px;
        padding-bottom: 100px;
    }

        #cover .cover_wrapper .wrapper_head {
            font-weight: 600;
        }

        #cover .cover_wrapper .wrapper_nav {
            font-family: 'Inter',sans-serif;
            font-size: 16px;
            font-weight: 500;
            text-transform: uppercase;
        }

        #cover .cover_wrapper .wrapper_nav_link {
            color: var(--color-sec);
            text-decoration: none;
        }
/*--Button--*/
.button_main {
    color: var(--color-white) !important;
    background: transparent !important;
    border: 2px solid var(--color-sec) !important;
    padding: 12px 36px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
}

    .button_main:hover {
        text-decoration: none;
        background: var(--color-sec);
        color: #fefefe;
        -webkit-box-shadow: 2px 2px 20px rgba(255, 23, 68,0.7);
        box-shadow: 2px 2px 20px rgba(255, 23, 68,0.7);
    }

    .button_main:focus {
        outline: none;
        -webkit-box-shadow: 0 0 0;
        box-shadow: 0 0 0;
    }

    .button_main .arrow_go {
        -webkit-transition: 0.3s;
        transition: 0.3s;
    }

    .button_main:hover > .arrow_go {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }

.button_mainnn {
    color: var(--color-white) !important;
    background: #ff1744 !important;
    border: 2px solid var(--color-sec) !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
}

    .button_mainnn:hover {
        text-decoration: none;
        background: var(--color-sec);
        color: #fefefe;
        -webkit-box-shadow: 2px 2px 20px rgba(255, 23, 68,0.7);
        box-shadow: 2px 2px 20px rgba(255, 23, 68,0.7);
    }

/* ==================================================

02 - Preloader

=====================================================*/
#pre_loader {
    font-family: 'Poppins',sans-serif;
    position: fixed;
    height: 100vh;
    background: var(--bg-dark);
    width: 100%;
    z-index: 999999;
}

    #pre_loader .pre_cnt {
        font-weight: 600;
        font-size: 30px;
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%,-50%);
        transform: translate(-50%,-50%);
        -webkit-transition: 0.5s;
        transition: 0.5s;
    }

    #pre_loader .pre_spn {
        line-height: 18px;
    }

    #pre_loader .spinner-grow {
        color: var(--color-sec) !important;
        width: 70px;
        height: 70px;
    }

/* ==================================================

03 - Navbar

=====================================================*/

.navbar {
    font-family: 'Poppins', sans-serif;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    padding-bottom: 20px;
    padding-top: 20px;
    z-index: 999;
    background-color: #000;
    position:relative;
}
.navbar-light.fixed-top.scroll {
    position:fixed !important;
}

@media (max-width: 575.98px) {
    .navbar {
        padding-top: 25px;
        padding-bottom: 25px;
    }
}

.navbar .navbar-brand {
    font-weight: 600;
    font-size: 20px;
    color: #fefefe;
}

    .navbar .navbar-brand:hover {
        color: #fefefe;
    }

    .navbar .navbar-brand:focus {
        color: #fefefe;
    }

@media (max-width: 300px) {
    .navbar .navbar-brand {
        font-size: 16px;
        font-weight: 600;
    }

        .navbar .navbar-brand img {
            height: 40px;
        }
}

.navbar-nav .nav-item {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    font-size: 14px;
    font-weight: 600;
    position: relative;
    margin: 0px 0px 0px 5px;
    align-self: center;
}

    .navbar-nav .nav-item .nav-link {
        color: #fefefe;
        -webkit-transition: 0.5s;
        transition: 0.5s;
    }

        .navbar-nav .nav-item .nav-link:hover {
            color: #ff1744;
        }

        .navbar-nav .nav-item .nav-link:focus {
            color: #fefefe;
        }

    .navbar-nav .nav-item .drop-link {
        color: #fefefe;
        -webkit-transition: 0.5s;
        transition: 0.5s;
    }

        .navbar-nav .nav-item .drop-link:hover {
            color: #ff1744;
        }

        .navbar-nav .nav-item .drop-link:focus {
            color: #fefefe;
        }

.navbar .navbar-nav .active {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    color: #fefefe !important;
}

    .navbar .navbar-nav .active:before {
        content: '';
        /*background: var(--color-sec);*/
        height: 2px;
        width: 60%;
        display: block;
        -webkit-transition: 0.5s;
        transition: 0.5s;
        -webkit-transform: translateY(41px);
        transform: translateY(41px);
        position: absolute;
        top: -20%;
        left: 10%;
        -webkit-animation: wdth 0.5s;
        animation: wdth 0.5s;
    }

@keyframes wdth {
    0% {
        width: 0px;
    }

    100% {
        width: 60%;
    }
}

@-webkit-keyframes wdth {
    0% {
        width: 0px;
    }

    100% {
        width: 60%;
    }
}

.navbar .navbar-nav .active:hover {
    color: var(--color-sec) !important;
}

.navbar-toggler .fa-bars {
    color: #fff;
    outline: none;
}

.navbar-toggler:focus {
    outline: none;
}

.scroll {
    background: rgba(0,0,0,0.9);
    /*overflow: hidden;*/
    overflow: inherit;
    padding-top: 10px;
    z-index:999;
    padding-bottom: 10px;
}

@media (max-width: 991.98px) {
    .navbar {
        background: rgba(0,0,0,0.9);
        overflow: hidden;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .navbar-nav li a {
        text-align: center;
        margin-top: 5px;
        margin-bottom: 5px;
    }

    .navbar .navbar-collapse .navbar-nav .nav-item {
        border-top: 1px solid rgba(66,66,66,0.3);
    }

    .navbar .navbar-collapse .navbar-nav .active:before {
        display: none;
    }

    .navbar .navbar-nav .active {
        /*text-decoration: underline var(--color-sec);*/
    }
}

@media (max-height: 500px) {
    .collapse {
        /*overflow-y: scroll !important;*/
        max-height: 250px !important;
    }
}

@media (max-width: 769px) {
    #navbarNav {
        overflow-y: scroll !important;
        max-height: 400px !important;
    }
}
/* ==================================================

04 - Homepage(index.aspx)

=====================================================*/

/*--cover--*/
#cover .cvr_cnt {
    padding-top: 100px;
}

#cover .cvr_row {
    padding-top: 15vmin;
}

@media (max-width: 767.98px) {
    #cover .cvr_row {
        padding-top: 15vmin;
    }
}

.cvr-ttl h5 {
    font-weight: 300;
    margin-bottom: 20px;
}

.cvr-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 40px;
    color: #fefefe;
    margin-bottom: 0;
}

    .cvr-title .cvr-title-tp {
        font-weight: 900;
        background: -webkit-linear-gradient(145deg,#f81f01,#ee076e);
        background: linear-gradient(145deg,#f81f01,#ee076e);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        text-fill-color: transparent;
    }

@media (max-width: 767.98px) {
    .cvr-title {
        font-size: 40px;
    }

    .cvr-subtitle {
        font-size: 20px;
    }
}

@media (max-width: 500.98px) {
    .cvr-title {
        font-size: 33px;
    }

    .cvr-subtitle {
        font-size: 20px;
    }

    #cover .cvr_row {
        padding-top: 100px;
    }
}

.cvr-body {
    font-family: 'Inter',sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(256,256,256,0.9);
    margin-bottom: 15px;
    margin-top: 20px;
    padding-top: 0;
}

.cvr-btns {
    margin-top: 35px;
    padding: 0 10px;
}

    .cvr-btns a {
        text-decoration: none;
        color: #fefefe;
    }

@media(max-width: 300px) {
    .cvr-btns {
        justify-content: center !important;
    }

        .cvr-btns a {
            width: 100% !important;
            text-align: center;
        }

    .km-btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .gs-btn .gs-txt {
        display: none;
    }
}

.cvr-btns .col-xs-6 {
    margin: 0 !important;
    padding: 0 !important;
}

.cvr-btns .gs-btn {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    font-family: 'Poppins',sans-serif;
    font-weight: 500;
    font-size: 14px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
    border-radius: 40px;
}

@keyframes shadow {
    0% {
        -webkit-box-shadow: 0 0 0 0px rgba(255, 23, 68,1);
        box-shadow: 0 0 0 0px rgba(255, 23, 68,1);
    }

    100% {
        -webkit-box-shadow: 0 0 0 15px rgba(255, 23, 68,0.0);
        box-shadow: 0 0 0 15px rgba(255, 23, 68,0.0);
    }
}

.cvr-btns .gs-btn i {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    color: #fff;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    padding: 11px 12px;
    background: var(--color-sec);
    animation: shadow 1s infinite;
    border: 2px solid transparent;
}

.cvr-btns .gs-btn:hover {
    color: #fefefe;
    text-decoration: none;
}

    .cvr-btns .gs-btn:hover > i {
        background: transparent;
        border: 2px solid var(--color-sec);
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

.cvr-btns .gs-btn:focus {
    outline: none;
    -webkit-box-shadow: 0 0 0;
    box-shadow: 0 0 0;
}

#cover .cvr_cnt .cvr_row {
    padding-bottom: 5%;
}

#cover .cvr-ftr {
    /*margin-top: 12vmin;*/
    /*margin-top: -18vmin;*/

        margin-top: -8%;
}

@media (min-width: 576px) and (max-width: 767.98px) {
    #cover .cvr-ftr {
        margin-top: 100px !important;
    }
}

@media (max-width: 350px) {

    #cover .cvr_row {
        padding-top: 15vmin;
    }
}

#cover .cvr-ftr a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-family: 'Inter',sans-serif;
    font-weight: 400;
    font-size: 14px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

    #cover .cvr-ftr a:hover {
        /*color: var(--color-sec);*/
        color: #ffffff !important;
    }

@media (max-width: 410px) {
    #cover .cvr-ftr .ftr-pr, #cover .cvr-ftr .ftr-sc {
        width: auto !important;
    }

}

#cover .cvr-ftr .ftr-sc a i {
    font-size: 16px;
    width: 35px;
    height: 35px;
    line-height: 32px;
    text-align: center;
    border: 2px solid var(--color-sec);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    color: #fefefe;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

#cover .cvr-ftr .ftr-sc a:hover i {
    background: var(--color-sec);
    -webkit-box-shadow: 2px 2px 20px rgba(255, 23, 68,0.7);
    box-shadow: 2px 2px 20px rgba(255, 23, 68,0.7);
}

/*--Vision Mission Value--*/

#vmv {
    background: var(--bg-dark);
    color: var(--color-lite);
    font-family: 'Poppins',sans-serif;
}

    #vmv .row_vmv .vmv_cnt .p-2 h6 {
        font-size: 18px;
        -webkit-transition: 0.5s ease;
        transition: 0.5s ease;
        font-weight: 700;
        color: var(--color-white);
    }

    #vmv .row_vmv .vmv_cnt:hover > .p-2 h6 {
        color: var(--color-sec);
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }

    #vmv .row_vmv .vmv_cnt .p-2 i {
        font-size: 20px;
    }

    #vmv .row_vmv .vmv_cnt .p-2:nth-child(2) {
        font-family: 'Inter',sans-serif;
        font-size: 15px;
    }

    #vmv .row_vmv .vmv {
        /*======Empty=====*/
    }

    #vmv .row_vmv .vmv_cnt {
        background: var(--bg-dark);
        padding: 50px;
        -webkit-transition: 0.5s ease;
        transition: 0.5s ease;
        border-top: 2px solid var(--color-border);
        height: 100% !important;
    }

        #vmv .row_vmv .vmv_cnt:hover {
            border-top: 2px solid var(--color-sec);
            background: var(--bg-dark-hl);
        }

@media (max-width: 767.98px) {
    #vmv .row_vmv .vmv_cnt {
        padding: 20px;
    }
}

/*--About--*/

/*--About --> Introduction--*/
#introduction {
    font-family: 'Poppins', sans-serif;
    padding-top: 100px;
    padding-bottom: 65px;
    background: var(--bg-dark);
    color: var(--color-white);
    overflow: hidden;
}

    #introduction .icont .in_img {
        width: 100%;
        z-index: 1;
    }

@media (min-width: 992px) {
    #introduction .icont .in_img {
        padding-right: 50px;
    }
}

@media (max-width: 991.98px) {
    #introduction .icont .in_img {
        margin-bottom: 40px;
    }
}

#introduction .icont .in_img:before {
    content: '';
    background: url( data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAJklEQVQoU2M0MDD4z4AFXLhwgRFZmHFYKcTmY2xiKEGATxP1FQIARG4YC57xwkQAAAAASUVORK5CYII= ) repeat;
    height: 150px;
    width: 150px;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    -webkit-transform: translate(-15px,-30px);
    transform: translate(-15px,-30px);
}

#introduction .icont .in_img:after {
    content: '';
    border: 5px solid;
    -webkit-border-image-source: -webkit-linear-gradient(145deg,#f81f01,#ee076e);
    border-image-source: linear-gradient(145deg,#f81f01,#ee076e);
    border-image-slice: 1;
    height: 90%;
    width: 90%;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    -webkit-transform: translate(-5px,20px);
    transform: translate(-5px,20px);
    z-index: -1;
}

#introduction .icont .in_img img {
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
    border-radius: 0px;
}

#introduction .icont .icard {
    /*padding-left: 60px;
	padding-right: 60px;*/
    margin-top: 15px;
    margin-bottom: 15px;
}

    #introduction .icont .icard .card {
        overflow: hidden;
        border: 2px solid transparent;
        background: var(--bg-dark-cnt);
        -webkit-transition: 0.5s;
        transition: 0.5s;
        padding: 10px 10px;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0;
        border-radius: 0;
        height: 100%;
    }

        #introduction .icont .icard .card:hover {
            border-bottom: 2px solid var(--color-sec);
            background: var(--bg-dark-hl);
        }

        #introduction .icont .icard .card .crd_cnt {
            transition: 0.5s;
            -webkit-transition: 0.5s;
        }

        #introduction .icont .icard .card:hover .crd_cnt {
            -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
        }

@media (min-width: 768px) and (max-width: 991.98px) {
    #introduction .icont .icard .card {
        margin: 10px 10px;
    }
}

#introduction .icont .icard .card-title {
    font-family: 'Poppins', sans-serif;
    color: var(--color-white);
    margin-bottom: 0 !important;
}

    #introduction .icont .icard .card-title i {
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        -ms-border-radius: 10px;
        -o-border-radius: 10px;
        border-radius: 10px;
        font-size: 30px;
        padding: 13px;
    }

#introduction .icont .icard .card .crd_bdy {
    max-width: 100%;
}

#introduction .icont .c1 .card-title i {
    color: #FF2525;
}

#introduction .icont .c2 .card-title i {
    color: #43e97b;
}

#introduction .icont .c3 .card-title i {
    color: #21D4FD;
}

#introduction .icont .c4 .card-title i {
    color: #7F00FF;
}

#introduction .icont .icard .card span:nth-child(2) {
    font-weight: 700;
}

#introduction .icont .icard .card span:nth-child(3) {
    font-weight: 400;
    font-size: 20px;
}

#introduction .icont .icard .card .card-text {
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-white);
    font-family: 'Poppins',sans-serif;
}

/*--About --> Brands--*/
#brand-area {
    font-family: 'Montserrat',sans-serif;
    background: var(--bg-dark);
}

    #brand-area .brcnt {
        border-top: 1px solid rgba(66,66,66,0.3);
        padding-top: 40px;
        padding-bottom: 40px;
    }

        #brand-area .brcnt .brnd_img {
            padding: 10px;
        }

        #brand-area .brcnt .brnd {
            -webkit-transition: 0.5s;
            transition: 0.5s;
            -webkit-border-radius: 5px;
            -moz-border-radius: 5px;
            -ms-border-radius: 5px;
            -o-border-radius: 5px;
            border-radius: 5px;
            padding: 10px 25px;
            background: var(--bg-dark);
            opacity: 0.7;
        }

            #brand-area .brcnt .brnd:hover {
                opacity: 1;
                -webkit-box-shadow: -5px -5px 10px rgba(255, 255, 255, 0.1), 0 0 10px 8px rgba(255, 255, 255, 0.005), 7px 7px 10px rgba(0, 0, 0, 1);
                box-shadow: -5px -5px 10px rgba(255, 255, 255, 0.1), 0 0 10px 8px rgba(255, 255, 255, 0.005), 7px 7px 10px rgba(0, 0, 0, 1);
            }

            #brand-area .brcnt .brnd img {
                -webkit-border-radius: 15px;
                -moz-border-radius: 15px;
                -ms-border-radius: 15px;
                -o-border-radius: 15px;
                border-radius: 15px;
            }

@media (min-width: 768px) and (max-width: 991.98px) {
    #brand-area .brcnt .brnd_img {
        padding: 30px;
    }
}

@media (min-width: 500px) and (max-width: 575.98px) {
    #brand-area .brcnt .brnd_img {
        padding: 25px;
    }
}

@media (max-width: 300px) {
    #brand-area .brcnt .brnd {
        padding: 5px 10px;
    }
}

/*--About --> Counters--*/
#counter_up {
    /*padding-top: 100px;
	padding-bottom: 100px;*/
    background: -webkit-linear-gradient(90deg,rgba(14,14,14,0.6),rgba(14,14,14,0.6)),url(../images/about/counter.jpg);
    background: linear-gradient(90deg,rgba(14,14,14,0.6),rgba(14,14,14,0.6)),url(../images/about/counter.jpg);
    background-size: cover;
    background-position: center;
    color: #fefefe;
    font-family: 'Inter',sans-serif;
    background-attachment: fixed;
}

    #counter_up .count {
        font-size: 35px;
        font-weight: 600;
        font-family: 'Poppins',sans-serif;
    }

    #counter_up .count_bdy {
        color: #ACACAC;
        font-size: 14px;
    }

    #counter_up .count_txt {
        font-size: 18px;
        font-weight: 600;
        font-family: 'Poppins',sans-serif;
    }

@media (max-width: 768px) {
    #counter_up .cocnt {
        margin-top: 20px;
        margin-bottom: 20px;
    }
}


/*--Team--*/

#team {
    background: var(--bg-dark);
    padding-top: 50px;
    padding-bottom: 50px;
}

    #team .team_cnt .team_crd .card {
        background: transparent;
        color: var(--color-white);
        padding: 15px;
        padding-top: 30px;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        -ms-border-radius: 10px;
        -o-border-radius: 10px;
        border-radius: 10px;
        border: 0;
        font-family: 'Poppins',sans-serif;
        -webkit-transition: 0.7s;
        transition: 0.7s;
        overflow: hidden;
    }

        #team .team_cnt .team_crd .card:hover {
            -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
            background: var(--bg-dark-cnt);
        }

    #team .team_cnt .team_crd .team_img_cnt {
        position: relative;
        margin-bottom: 15px;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
        border-radius: 50%;
        overflow: hidden;
    }

    #team .team_cnt .team_crd .card .team_img_cnt img {
        margin-bottom: 0 !important;
    }

@media (max-width: 992px) {
    #team .team_cnt .team_crd .card {
        margin-top: 15px;
        margin-bottom: 15px;
    }
}

#team .team_cnt .team_crd .card .m_name {
    font-size: 16px;
    font-weight: 500;
}

#team .team_cnt .team_crd .card .m_dsc {
    font-size: 14px;
    color: #ACACAC;
    font-family: 'Inter',sans-serif;
}

#team .team_cnt .team_crd .card .team_img_cnt .m_sci {
    width: 100%;
    opacity: 0;
    display: none;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: -webkit-linear-gradient(145deg,rgba(248,31,1,0.7),rgba(238,7,110,0.7));
    background: linear-gradient(145deg,rgba(248,31,1,0.7),rgba(238,7,110,0.7));
    animation: fade-sci 1s;
}

#team .team_cnt .team_crd .card:hover .team_img_cnt .m_sci {
    opacity: 1;
    display: block;
}

@keyframes fade-sci {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

#team .team_cnt .team_crd .card .m_sci a {
    color: var(--color-white);
    text-decoration: none;
}

    #team .team_cnt .team_crd .card .m_sci a:hover > i {
        background: var(--color-sec);
        -webkit-box-shadow: 2px 2px 20px rgba(255, 23, 68,0.7);
        box-shadow: 2px 2px 20px rgba(255, 23, 68,0.7);
    }

    #team .team_cnt .team_crd .card .m_sci a i {
        font-size: 16px;
        width: 35px;
        height: 35px;
        background: var(--bg-dark);
        line-height: 32px;
        text-align: center;
        border: 2px solid transparent;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
        border-radius: 50%;
        color: var(--color-white);
        -webkit-transition: 0.5s;
        transition: 0.5s;
    }

/*--Services--*/
#services {
    /*background: var(--bg-dark);*/
    color: var(--color-white);
    font-family: 'Poppins',sans-serif;
    padding-top: 50px;
    padding-bottom: 50px;
}

    #services .ser_cnt .serv {
        margin-bottom: 30px;
    }

        #services .ser_cnt .serv .card {
            /*background: var(--bg-dark-cnt);*/
            padding: 40px;
            border: 1px solid #272727;
            -webkit-border-radius: 5px;
            -moz-border-radius: 5px;
            -ms-border-radius: 5px;
            -o-border-radius: 5px;
            border-radius: 5px;
            height: 100%;
            -webkit-transition: 0.7s;
            transition: 0.7s;
        }

            #services .ser_cnt .serv .card:hover {
                -webkit-transform: translateY(-10px);
                transform: translateY(-10px);
                background: var(--bg-dark-hl);
            }

@media (max-width: 240px) {
    #services .ser_cnt .serv .card {
        padding: 30px;
    }
}

#services .ser_cnt .serv .ser_ttl {
    /*color: var(--color-white);*/
    background: -webkit-linear-gradient(145deg,#f81f01,#ee076e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
    font-size: 19px;
    margin-top: 10px;
}

#services .ser_cnt .serv .ser_dsc {
    font-size: 16px;
    font-weight: 400;
    font-family: 'Inter',sans-serif;
    color: #ffffff;
    margin-top: 10px;
}

#services .ser_cnt .serv .ser_lnk {
    color: var(--color-sec);
    text-decoration: none;
    font-size: 14px;
    margin-top: 10px;
    /*margin-right: 15px;*/
    -webkit-transition: 0.3s;
    transition: 0.3s;
    font-weight: 600;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    text-decoration: underline;
}

    #services .ser_cnt .serv .ser_lnk:hover i {
        transform: translateX(5px);
    }

    #services .ser_cnt .serv .ser_lnk i {
        transition: 0.5s;
    }

#services .ser_cnt .serv .ser_ico {
    padding-bottom: 20px;
}

    #services .ser_cnt .serv .ser_ico i {
        font-size: 40px;
        color: var(--color-sec);
    }

/*--Works/Projects--*/
#projects {
    background: var(--bg-dark);
    padding-top: 10px;
    padding-bottom: 50px;
}

    #projects .pr_cnt {
        color: #fefefe;
    }

        #projects .pr_cnt .item {
            height: 420.6px;
            -webkit-border-radius: 10px;
            -moz-border-radius: 10px;
            -ms-border-radius: 10px;
            -o-border-radius: 10px;
            border-radius: 10px;
            overflow: hidden;
            position: relative;
        }
/*Owl Carousel*/
.owl-theme .owl-dots {
    padding-top: 50px !important;
}

    .owl-theme .owl-dots span {
        background: transparent !important;
        border: 1px solid var(--color-sec) !important;
        height: 15px !important;
        width: 15px !important;
        -webkit-transition: 0.5s !important;
        transition: 0.5s !important;
    }

    .owl-theme .owl-dots button:focus {
        outline: none !important;
    }

    .owl-theme .owl-dots .active span,
    .owl-theme .owl-dots .owl-dot:hover span {
        background: var(--color-sec) !important;
    }

#projects .pr_cnt .pr_obj {
    position: absolute;
    bottom: 0;
    left: 0;
    padding-left: 20px;
}

    #projects .pr_cnt .pr_obj .pr_main {
        padding: 20px !important;
    }

    #projects .pr_cnt .pr_obj .pr_subhead {
        font-family: 'Inter',sans-serif;
        font-size: 16px;
        font-weight: 500;
        margin-bottom: 25px;
        color: #c6c9c8;
    }

    #projects .pr_cnt .pr_obj .pr_head {
        font-family: 'Poppins',sans-serif;
        font-size: 24px;
        font-weight: 600;
        margin-bottom: 45px;
    }

    #projects .pr_cnt .pr_obj .pr_lnk {
        margin-bottom: 40px;
    }

        #projects .pr_cnt .pr_obj .pr_lnk a {
            color: #fefefe;
        }

@media (max-width: 320px) {
    #projects .pr_cnt .pr_obj {
        padding-left: 0px;
    }

    #projects .pr_cnt .item {
        width: 280px !important;
    }

    #projects .pr_cnt .pr_obj .pr_lnk a {
        padding: 10px 18px !important;
    }
}

@media (max-width: 240px) {
    #projects .pr_cnt .item {
        width: 200px !important;
        height: 390px !important;
    }
}
/*--Pricing--*/
#pricing {
    background: var(--bg-dark);
    font-family: 'Poppins',sans-serif;
    color: var(--color-white);
    padding-top: 50px;
    padding-bottom: 50px;
}

    #pricing .pricing_container {
    }

        #pricing .pricing_container .pricing_section .pricing_plan {
            background: var(--bg-dark-cnt);
            padding: 30px;
            -webkit-transition: 0.7s;
            transition: 0.7s;
            border: 0;
            -webkit-border-radius: 10px;
            -moz-border-radius: 10px;
            -ms-border-radius: 10px;
            -o-border-radius: 10px;
            border-radius: 10px;
        }

            #pricing .pricing_container .pricing_section .pricing_plan:hover {
                -webkit-transform: translateY(-10px);
                transform: translateY(-10px);
                background: var(--bg-dark-hl);
            }

            #pricing .pricing_container .pricing_section .pricing_plan .pl_head {
                font-weight: 600;
                font-size: 30px;
            }

            #pricing .pricing_container .pricing_section .pricing_plan .price {
                border-bottom: 1px solid var(--color-border);
                padding-top: 5px;
                padding-bottom: 20px;
                line-height: 1;
                min-height: 100px;
            }

                #pricing .pricing_container .pricing_section .pricing_plan .price .pr1 {
                    font-size: 16px;
                }

                #pricing .pricing_container .pricing_section .pricing_plan .price .pr2 {
                    font-size: 35px;
                    font-weight: 600;
                }

                #pricing .pricing_container .pricing_section .pricing_plan .price .pr3 {
                    font-family: 'Poppins',sans-serif;
                    font-size: 16px;
                }

                #pricing .pricing_container .pricing_section .pricing_plan .price .pr4 {
                    font-family: 'Inter',sans-serif;
                    font-size: 14px;
                    margin-top: 20px;
                    color: var(--color-lite);
                    line-height: normal;
                }

            #pricing .pricing_container .pricing_section .pricing_plan .pl_ftr {
                padding-top: 10px;
            }

                #pricing .pricing_container .pricing_section .pricing_plan .pl_ftr .pl_ftr_hd {
                    font-family: 'Poppins',sans-serif;
                    font-size: 16px;
                    font-weight: 500;
                }

                #pricing .pricing_container .pricing_section .pricing_plan .pl_ftr .feature {
                    font-family: 'Inter',sans-serif;
                    font-size: 16px;
                    color: var(--color-lite);
                }

                    #pricing .pricing_container .pricing_section .pricing_plan .pl_ftr .feature i {
                        color: var(--color-sec);
                    }

            #pricing .pricing_container .pricing_section .pricing_plan .button_main {
                margin-top: 20px;
                text-align: center;
            }
        /*=======special==========*/
        #pricing .pricing_container .pricing_section .special {
            overflow: hidden;
            position: relative;
        }

            #pricing .pricing_container .pricing_section .special .pl_head:before {
                content: 'Popular';
                padding: 5px 0px;
                width: 150px;
                text-align: center;
                display: block;
                color: #fefefe;
                font-family: 'Poppins',sans-serif;
                font-size: 14px;
                background: -webkit-linear-gradient(145deg,#f81f01,#ee076e);
                background: linear-gradient(145deg,#f81f01,#ee076e);
                position: absolute;
                right: -45px;
                top: 15px;
                -webkit-transform: rotate(45deg);
                transform: rotate(45deg);
            }

@media (max-width: 992px) {
    #pricing .pricing_container .pricing_section {
        margin-top: 15px;
        margin-bottom: 15px;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    #pricing .pricing_container .pricing_section .pricing_plan .price .pr4 p {
        min-height: 60px;
    }

    #pricing .pricing_container .pricing_section .pricing_plan .pl_ftr {
        min-height: 100px !important;
    }
}

/*--News/Blog--*/
#news {
    background: var(--bg-dark);
    padding-top: 50px;
    padding-bottom: 50px;
}

    #news .bl_sec .card {
        border: 0 !important;
        background: var(--bg-dark-cnt);
        font-family: 'Poppins',sans-serif;
        color: var(--color-white);
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        -ms-border-radius: 10px;
        -o-border-radius: 10px;
        border-radius: 10px;
        overflow: hidden;
        -webkit-transition: 0.7s;
        transition: 0.7s;
    }

        #news .bl_sec .card:hover {
            -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
            background: var(--bg-dark-hl);
        }

    #news .bl_sec .bl_img {
        width: 100%;
        height: 200px;
        overflow: hidden;
    }

        #news .bl_sec .bl_img img {
            /*min-height: 100%;
            object-fit: cover !important;
            object-position: center !important;*/
            width:100%;
        }

    #news .bl_sec .bl_body {
        padding: 15px;
    }

        #news .bl_sec .bl_body a {
            color: var(--color-white);
            text-decoration: none;
        }

        #news .bl_sec .bl_body .bl_header .bl_date {
            font-size: 12px;
            font-family: 'Inter',sans-serif;
            color: rgba(255,255,255,0.5);
        }

        #news .bl_sec .bl_body .bl_main {
            /*=====Empty=====*/
        }

            #news .bl_sec .bl_body .bl_main .bl_title {
                font-size: 15px;
                font-weight: 600;
            }

                #news .bl_sec .bl_body .bl_main .bl_title a {
                    color: var(--color-white);
                    text-decoration: none;
                    -webkit-transition: 0.5s;
                    transition: 0.5s;
                }

                    #news .bl_sec .bl_body .bl_main .bl_title a:hover {
                        color: var(--color-sec);
                    }

            #news .bl_sec .bl_body .bl_main .bl_text {
                font-size: 14px;
                font-family: 'Inter',sans-serif;
                color: var(--color-lite);
                margin-top: 10px;
                margin-bottom: 15px;
            }

            #news .bl_sec .bl_body .bl_main .bl_btn a:hover {
                background: var(--color-sec);
            }

    #news .bl_ftr {
        padding-top: 15px;
        border-top: 1px solid var(--color-border);
    }

        #news .bl_ftr a {
            text-decoration: none;
            -webkit-transition: 0.5s;
            transition: 0.5s;
        }

            #news .bl_ftr a span {
                -webkit-transition: 0.5s;
                transition: 0.5s;
            }

        #news .bl_ftr .ln1:hover .lns2 .usr_name {
            color: var(--color-sec);
        }

        #news .bl_ftr .ln1 .usr_name {
            font-size: 14px;
            color: var(--color-white);
            font-weight: 500;
            font-family: 'Poppins',sans-serif;
        }

        #news .bl_ftr .ln1 .usr_name, #news .bl_ftr .ln1 .usr_date {
            display: block;
        }

        #news .bl_ftr .ln1 .lns2 .usr_date {
            font-size: 12px;
            font-family: 'Inter',sans-serif;
            text-decoration: none;
            color: var(--color-lite );
        }

        #news .bl_ftr .ln2 .usr_cmt {
            color: rgba(255,255,255,0.5);
            font-size: 14px;
            color: var(--color-white);
        }

            #news .bl_ftr .ln2 .usr_cmt:hover {
                color: var(--color-sec);
            }

    #news .bl_full_ln {
        color: var(--color-white);
        font-family: 'Poppins',sans-serif;
        text-align: center;
        font-size: 14px;
        padding-top: 50px;
        padding-bottom: 50px;
    }

        #news .bl_full_ln a {
            color: var(--color-sec);
            text-decoration: none;
            -webkit-transition: 0.5s;
            transition: 0.5s;
            font-weight: 500;
        }

            #news .bl_full_ln a:hover {
                text-decoration: underline;
            }

/*--Contact--*/

#contact {
    background-color: var(--bg-dark);
    color: var(--color-white);
    font-family: 'Poppins',sans-serif;
    color: var(--color-white);
    padding-bottom: 50px;
}

    #contact .cnt_head {
        padding-bottom: 60px !important;
    }

    #contact .cntc_info .cntc_info_e {
        max-width: 50%;
        padding: 15px;
    }

        #contact .cntc_info .cntc_info_e .cntc_info_head {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 7px;
        }

        #contact .cntc_info .cntc_info_e .cntc_info_b {
            font-size: 14px;
            color: var(--color-lite);
            font-family: 'Inter',sans-serif;
        }

            #contact .cntc_info .cntc_info_e .cntc_info_b i {
                color: var(--color-white);
            }

    #contact .cntc_form {
        padding: 50px 50px;
    }

        #contact .cntc_form form textarea, #contact .cntc_form form input {
            background: var(--bg-dark-cnt);
            border: 2px solid transparent;
            -webkit-transition: 0.5s;
            transition: 0.5s;
            -webkit-border-radius: 5px;
            -moz-border-radius: 5px;
            -ms-border-radius: 5px;
            -o-border-radius: 5px;
            border-radius: 5px;
            color: var(--color-white);
        }

            #contact .cntc_form form textarea::placeholder, #contact .cntc_form form input::placeholder {
                font-size: 14px;
                font-family: 'Inter',sans-serif;
                color: var(--color-lite);
            }

            #contact .cntc_form form textarea:focus, #contact .cntc_form form input:focus {
                -webkit-box-shadow: 0 0 0;
                box-shadow: 0 0 0;
                border: 2px solid var(--color-sec);
                background: var(--bg-dark);
            }

        #contact .cntc_form form label {
            font-size: 16px;
            font-weight: 500;
        }

@media(max-width: 767.98px) {
    #contact .cnt_head {
        padding-bottom: 0;
    }
}

@media(max-width: 430px) {
    #contact .cntc_info .cntc_info_e {
        max-width: 100%;
        padding: 15px;
    }

    #contact .cntc_form {
        padding: 30px 30px;
    }
}

#contact .button_main {
    margin-top: 10px;
}


#Design-Neon {
    background-color: transparent;
    color: var(--color-white);
    font-family: 'Poppins',sans-serif;
    color: var(--color-white);
    padding-bottom: 50px;
    padding-top: 60px;
}

    #Design-Neon .cnt_head {
        padding-bottom: 60px !important;
    }

    #Design-Neon .cntc_info .cntc_info_e {
        max-width: 50%;
        padding: 15px;
    }

        #Design-Neon .cntc_info .cntc_info_e .cntc_info_head {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 7px;
        }

        #Design-Neon .cntc_info .cntc_info_e .cntc_info_b {
            font-size: 14px;
            color: var(--color-lite);
            font-family: 'Inter',sans-serif;
        }

            #Design-Neon .cntc_info .cntc_info_e .cntc_info_b i {
                color: var(--color-white);
            }

    #Design-Neon .cntc_form {
        padding: 40px 40px 15px 40px;
    }

        #Design-Neon .cntc_form form textarea, #Design-Neon .cntc_form form input {
            background: #020202;
            border: 2px solid transparent;
            -webkit-transition: 0.5s;
            transition: 0.5s;
            -webkit-border-radius: 5px;
            -moz-border-radius: 5px;
            -ms-border-radius: 5px;
            -o-border-radius: 5px;
            border-radius: 5px;
            color: var(--color-white);
        }

            #Design-Neon .cntc_form form textarea::placeholder, #Design-Neon .cntc_form form input::placeholder {
                font-size: 14px;
                font-family: 'Inter',sans-serif;
                color: var(--color-lite);
            }

            #Design-Neon .cntc_form form textarea:focus, #Design-Neon .cntc_form form input:focus {
                -webkit-box-shadow: 0 0 0;
                box-shadow: 0 0 0;
                border: 2px solid var(--color-sec);
                background: var(--bg-dark);
            }

        #Design-Neon .cntc_form form label {
            font-size: 16px;
            font-weight: 500;
        }

@media(max-width: 767.98px) {
    #Design-Neon .cnt_head {
        padding-bottom: 0;
    }
}

@media(max-width: 430px) {
    #Design-Neon .cntc_info .cntc_info_e {
        max-width: 100%;
        padding: 15px;
    }

    #Design-Neon .cntc_form {
        padding: 30px 30px;
    }
}

#Design-Neon .button_main {
    margin-top: 10px;
}

@media screen and (max-width: 768px) {
    #Design-Neon .button_main {
        margin-top: 10px;
        height: 50px;
        width: 200px;
        margin-left: 20px;
    }
}

#Design-Neon .dyn_bdy {
    background: #181818;
    padding: 30px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
}





#Design-Your-Neon {
    background-color: transparent;
    color: var(--color-white);
    font-family: 'Poppins',sans-serif;
    color: var(--color-white);
    padding-bottom: 50px;
}

    #Design-Your-Neon .cnt_head {
        padding-bottom: 60px !important;
    }

    #Design-Your-Neon .cntc_info .cntc_info_e {
        max-width: 50%;
        padding: 15px;
    }

        #Design-Your-Neon .cntc_info .cntc_info_e .cntc_info_head {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 7px;
        }

        #Design-Your-Neon .cntc_info .cntc_info_e .cntc_info_b {
            font-size: 14px;
            color: var(--color-lite);
            font-family: 'Inter',sans-serif;
        }

            #Design-Your-Neon .cntc_info .cntc_info_e .cntc_info_b i {
                color: var(--color-white);
            }

    #Design-Your-Neon .cntc_form {
        padding: 50px 50px 15px 50px;
    }

        #Design-Your-Neon .cntc_form form textarea, #Design-Your-Neon .cntc_form form input {
            background: #020202;
            border: 2px solid transparent;
            -webkit-transition: 0.5s;
            transition: 0.5s;
            -webkit-border-radius: 5px;
            -moz-border-radius: 5px;
            -ms-border-radius: 5px;
            -o-border-radius: 5px;
            border-radius: 5px;
            color: var(--color-white);
        }

            #Design-Your-Neon .cntc_form form textarea::placeholder, #Design-Your-Neon .cntc_form form input::placeholder {
                font-size: 14px;
                font-family: 'Inter',sans-serif;
                color: var(--color-lite);
            }

            #Design-Your-Neon .cntc_form form textarea:focus, #Design-Your-Neon .cntc_form form input:focus {
                -webkit-box-shadow: 0 0 0;
                box-shadow: 0 0 0;
                border: 2px solid var(--color-sec);
                background: var(--bg-dark);
            }

        #Design-Your-Neon .cntc_form form label {
            font-size: 16px;
            font-weight: 500;
        }

@media(max-width: 767.98px) {
    #Design-Your-Neon .cnt_head {
        padding-bottom: 0;
    }
}

@media(max-width: 430px) {
    #Design-Your-Neon .cntc_info .cntc_info_e {
        max-width: 100%;
        padding: 15px;
    }

    #Design-Your-Neon .cntc_form {
        padding: 30px 30px;
    }
}

#Design-Your-Neon .button_main {
    margin-top: 10px;
}

#Design-Your-Neon .dyn_bdy {
    background: #181818;
    padding: 30px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
}

/* ==================================================

05 - Footer

=====================================================*/

#footer {
    background: #101010;
    color: #fefefe;
    font-family: 'Poppins',sans-serif;
}

    #footer .ftr_main {
        padding-top: 100px;
        padding-bottom: 100px;
        border-top: 1px solid var(--color-border);
    }

@media (max-width: 575.98px) {
    #footer .ftr_main {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
}

/*--Newsletter--*/
#footer .ftr_brand a {
    font-size: 26px;
    color: #fefefe;
    font-weight: 600;
    text-decoration: none;
}

#footer .ftr_intro {
    font-family: 'Inter',sans-serif;
    font-size: 16px;
    color: #acacac;
    padding-top: 20px;
}

#footer .ftr_nwsltr label {
    font-size: 16px;
    font-weight: 600;
}

#footer .ftr_nwsltr form .form-group {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
}

#footer .ftr_nwsltr form input {
    background: #181818;
    border: 2px solid transparent;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    color: #fefefe;
}

    #footer .ftr_nwsltr form input::placeholder {
        font-size: 14px;
        font-family: 'Inter',sans-serif;
        color: rgba(255,255,255,0.5);
    }

    #footer .ftr_nwsltr form input:focus {
        -webkit-box-shadow: 0 0 0;
        box-shadow: 0 0 0;
        background: #101010;
        border: 2px solid var(--color-sec);
        outline: none;
    }

@media (max-width: 1200px) {
    #footer .ftr_nwsltr form input {
        margin-bottom: 15px;
    }

    #footer .ftr_nwsltr form .btn_sub {
        margin-bottom: 15px;
    }
}

@media (max-width: 380px) {
    #footer .ftr_nwsltr form input {
        margin-right: 0 !important;
    }

    #footer .ftr_nwsltr form input, #footer .ftr_nwsltr form .btn_sub {
        width: 100%;
    }
}

#footer .ftr_nwsltr form .btn_sub {
    color: #fefefe;
    border: 2px solid var(--color-sec);
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
}

    #footer .ftr_nwsltr form .btn_sub:hover {
        background: var(--color-sec);
        -webkit-box-shadow: 2px 2px 20px rgba(255, 23, 68,0.7);
        box-shadow: 2px 2px 20px rgba(255, 23, 68,0.7);
    }

@media (min-width: 768px) and (max-width: 991.98px) {
    #footer .ftr_brand a {
        font-size: 23px;
    }
}

@media (max-width: 250px) {
    #footer .ftr_brand a {
        font-size: 23px;
    }
}

/*--Footer objective--*/
#footer .ftr_bdy {
    background: #181818;
    padding: 30px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
}

@media (max-width: 575.98px) {
    #footer .ftr_bdy {
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0;
        border-radius: 0;
    }
}

#footer .ftr_bdy .ftr_clb {
    max-width: 60%;
}

    #footer .ftr_bdy .ftr_clb .btn {
        color: #fefefe !important;
    }

@media (max-width: 768px) {
    #footer .ftr_bdy .ftr_clb {
        max-width: 50%;
    }
}

@media (max-width: 575.98px) {
    #footer .ftr_bdy .ftr_clb {
        max-width: 100%;
        margin-bottom: 30px;
    }
}

#footer .ftr_bdy .ftr_clb .ftr_clb_t1 {
    font-size: 12px;
}

#footer .ftr_bdy .ftr_clb .ftr_clb_t2 {
    font-size: 24px;
    font-weight: 600;
}

#footer .ftr_bdy .ftr_clb .button_main {
    margin-top: 20px;
}

#footer .ftr_bdy .ftr_clb .ftr_dsc {
    font-family: 'Inter',sans-serif;
    font-size: 14px;
    color: #ACACAC;
}

    #footer .ftr_bdy .ftr_clb .ftr_dsc a {
        color: var(--color-sec);
        text-decoration: none;
    }

    #footer .ftr_bdy .ftr_clb .ftr_dsc i {
        color: var(--color-sec);
    }

#footer .ftr_bdy .ftr_cnt .ftr_lnk .ftr_lnk_cmp .ftr_lnk_head {
    font-size: 16px;
    font-weight: 600;
}

#footer .ftr_bdy .ftr_cnt .ftr_lnk .ftr_lnk_cmp .ftr_lnk_bdy a {
    text-decoration: none;
    font-family: 'Inter',sans-serif;
    font-size: 14px;
    color: #ACACAC;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

    #footer .ftr_bdy .ftr_cnt .ftr_lnk .ftr_lnk_cmp .ftr_lnk_bdy a:hover {
        color: #d60a5c;
    }

@media (max-width: 575.98px) {
    #footer .ftr_bdy .ftr_cnt .ftr_lnk .ftr_lnk_cmp {
        margin-left: 0 !important;
    }
}

#footer .ftr_bdy .ftr_cnt .ftr_lnk_sc a {
    color: #fefefe;
    text-decoration: none;
    font-size: 20px;
    margin: 20px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

    #footer .ftr_bdy .ftr_cnt .ftr_lnk_sc a:hover {
        color: var(--color-sec);
    }

#footer .ftr_bdy .ftr_cnt .ftr_lnk .ftr_lnk_lpt .ftr_lnk_lpt_l {
    color: #ACACAC;
    font-family: 'Inter',sans-serif;
}

    #footer .ftr_bdy .ftr_cnt .ftr_lnk .ftr_lnk_lpt .ftr_lnk_lpt_l a {
        text-decoration: none;
        color: #ACACAC;
        font-size: 14px;
        -webkit-transition: 0.5s;
        transition: 0.5s;
    }

        #footer .ftr_bdy .ftr_cnt .ftr_lnk .ftr_lnk_lpt .ftr_lnk_lpt_l a:hover {
            color: #fefefe;
        }

#footer .ftr_bdy .ftr_cnt .ftr_lnk .ftr_lnk_lpt .ftr_lnk_lpt_dot {
    font-size: 20px;
    font-family: 'Poppins',sans-serif;
    color: rgba(255,255,255,0.5);
    font-weight: 600;
}

@media (max-width: 575.98px) {
    #footer .ftr_bdy .ftr_cnt .ftr_lnk .ftr_lnk_lpt {
        margin-left: 0 !important;
        margin-top: 20px !important;
    }
}

/*--Copyright--*/
#footer .ftr_btm {
    background: #000;
}

    #footer .ftr_btm h6 {
        background: #000;
        margin-bottom: 0 !important;
        padding-top: 25px;
        padding-bottom: 25px;
        font-family: 'Inter',sans-serif;
        font-size: 16px;
        color: rgba(255,255,255,0.5);
    }

    #footer .ftr_btm a {
        color: #d60a5c;
        text-decoration: none;
    }

/* ==================================================

06 - Service Single(service_single.html)

=====================================================*/

/*--Service Detail--*/
#service_detail {
    padding: 100px 15px 0px 15px;
}

    #service_detail h2, #service_detail h3 {
        font-family: 'Poppins',sans-serif;
        font-weight: 600;
    }

    #service_detail p {
        margin-top: 30px;
        margin-bottom: 30px;
        font-family: 'Inter',sans-serif;
        color: var(--color-lite);
        font-size: 16px;
    }

    #service_detail blockquote {
        margin-top: 30px;
        margin-bottom: 60px;
    }

        #service_detail blockquote p {
            color: var(--color-white);
            font-family: 'Poppins',sans-serif;
            font-size: 18px;
            font-weight: 600;
        }

    #service_detail .quote_footer {
        font-family: 'Inter',sans-serif;
        color: var(--color-white);
        font-size: 14px;
        margin-top: 30px;
    }

    #service_detail .fa-ul {
        list-style-type: none;
        margin: 0;
        font-family: 'Inter',sans-serif;
        color: var(--color-lite);
        margin-top: 30px;
    }

        #service_detail .fa-ul li {
            margin-top: 15px;
            margin-bottom: 15px;
        }

    #service_detail .sd_inner_cnt {
        padding-top: 40px;
        padding-bottom: 40px;
    }

        #service_detail .sd_inner_cnt img {
            min-height: 100%;
            object-fit: cover;
            object-position: center;
        }

        #service_detail .sd_inner_cnt .fa-ul {
            padding-left: 25px;
        }

            #service_detail .sd_inner_cnt .fa-ul .fa-check-square {
                color: var(--color-sec);
            }

@media (max-width: 991.98px) {
    .sd_inner_cnt .sd_inner_list {
        margin-top: 50px;
    }
}

/*--Sidebar--*/
#service_detail .sd_sidebar {
    padding-left: 30px;
    padding-right: 30px;
}

@media (max-width: 991.98px) {
    #service_detail .sd_sidebar {
        padding-left: 15px;
        padding-right: 15px;
        margin-top: 20px;
    }
}

@media (max-width: 767.98px) {
    #service_detail .sd_sidebar {
        margin-top: 20px;
    }
}

#service_detail .sd_sidebar li {
    padding-top: 10px;
    padding-bottom: 10px;
    margin: 0;
}

#service_detail .sd_sidebar a {
    text-decoration: none;
    color: var(--color-lite);
    transition: 0.5s;
    -webkit-transition: 0.5s;
}

    #service_detail .sd_sidebar a:hover {
        color: var(--color-sec);
    }

/* ==================================================

07 - Project detail(project_single.html)

=====================================================*/

/*--Project Detail--*/

#project_detail {
    padding: 100px 15px 35px 15px;
}

    #project_detail h2, #project_detail h3 {
        font-family: 'Poppins',sans-serif;
        font-weight: 600;
    }

    #project_detail p {
        margin-top: 30px;
        margin-bottom: 30px;
        font-family: 'Inter',sans-serif;
        color: var(--color-lite);
        font-size: 16px;
    }

    #project_detail .pd_inner_cnt .img-fluid {
        width: 100%;
        object-fit: cover !important;
        object-position: center !important;
    }

    /*--Sidebar--*/

    #project_detail .pd_sidebar {
        padding-left: 30px;
        padding-right: 30px;
    }

@media (max-width: 991.98px) {
    #project_detail .pd_sidebar {
        padding-left: 15px;
        padding-right: 15px;
        margin-top: 25px;
    }
}

@media (max-width: 767.98px) {
    #project_detail .pd_sidebar {
        margin-top: 25px;
    }
}

#project_detail .pd_sidebar .fa-ul {
    margin-left: 0 !important;
}

#project_detail .pd_sidebar li {
    padding-top: 10px;
    padding-bottom: 10px;
    margin: 0;
}

#project_detail .pd_sidebar .pd_name {
    font-family: 'Poppins',sans-serif;
    font-size: 16px;
    font-weight: 600;
}

#project_detail .pd_sidebar .pd_value {
    font-family: 'Inter',sans-serif;
    font-size: 16px;
    color: var(--color-lite);
}

#project_detail .pd_sidebar .fa-ul a {
    color: var(--color-sec);
}


/* ==================================================

08 - Blog Page(blog_full.html)

=====================================================*/

/*Blog Container*/

#blog_container {
    padding: 0px 15px 100px 15px;
}

.blog_main_head {
    margin-top: 75px;
    margin-bottom: 75px;
}

#blog_container .blog_main_head h2 {
    font-family: 'Poppins',sans-serif;
    font-weight: 600;
}

#blog_container .blog_post_container {
    transition: 0.5s;
}

    #blog_container .blog_post_container:hover {
        background: var(--bg-dark-cnt);
    }

    #blog_container .blog_post_container a {
        color: var(--color-white);
        transition: 0.5s;
        text-decoration: none;
    }

        #blog_container .blog_post_container a:hover {
            color: var(--color-sec);
        }

    #blog_container .blog_post_container .blog_image_container {
        max-height: 100%;
        overflow: hidden;
    }

        #blog_container .blog_post_container .blog_image_container img {
            width: 100%;
            object-fit: cover;
            object-position: center;
            transition: 0.5s;
        }

#blog_container .blog_featured_large .blog_image_container {
    height: 100%;
}

    #blog_container .blog_featured_large .blog_image_container img {
        height: 100%;
    }

#blog_container .blog_post_container:hover .blog_image_container .img_link img {
    transform: scale(1.1);
}

#blog_container .blog_post_container .blog_body {
    padding: 15px 15px 10px 15px;
}

    #blog_container .blog_post_container .blog_body .blog_tag {
        font-size: 14px;
        font-family: 'Inter',sans-serif;
        font-weight: 500 !important;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        color: var(--color-sec);
    }

    #blog_container .blog_post_container .blog_body .blog_head {
        margin-top: 10px;
        font-size: 18px;
        font-weight: 600;
        font-family: 'Poppins',sans-serif;
    }

    #blog_container .blog_post_container .blog_body .blog_text {
        margin-top: 15px;
        margin-bottom: 10px;
        font-size: 16px;
        font-family: 'Inter',sans-serif;
        color: var(--color-lite);
    }

    #blog_container .blog_post_container .blog_body .blog_date {
        margin-top: 10px;
    }

#blog_container .blog_post_container .blog_date {
    padding: 0px 15px 15px 15px;
    font-family: 'Inter',sans-serif;
    font-size: 14px;
    color: var(--color-lite);
}

#blog_container .blog_featured_large {
    position: relative;
}

    #blog_container .blog_featured_large .blog_body {
        position: absolute;
        bottom: 0;
        left: 0;
        padding: 30px;
        background: -webkit-linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.5) 70%, rgba(0,0,0,0) 100%);
        background: -webkit-linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.5) 70%, rgba(0,0,0,0) 100%);
    }

/* ==================================================

09 - Blog Article(blog_article.html)

=====================================================*/

#article_container {
    padding: 100px 15px;
}

    /*--Article Container--*/

    #article_container .article_head h2 {
        font-family: 'Poppins',sans-serif;
        font-weight: 600;
        margin-bottom: 15px;
    }

    #article_container .article_content {
        font-size: 16px;
    }

        #article_container .article_content p {
            padding: 15px 0;
            color: var(--color-lite);
            font-family: 'Inter',sans-serif;
        }

        #article_container .article_content .img-fluid {
            margin: 25px 0;
        }

        #article_container .article_content blockquote {
            font-family: 'Poppins',sans-serif;
            margin: 25px 0;
        }

            #article_container .article_content blockquote h3 {
                font-weight: 600;
            }

            #article_container .article_content blockquote p {
                font-family: 'Poppins',sans-serif;
                font-size: 18px;
                color: var(--color-white);
                font-weight: 600;
                margin-bottom: 20px !important;
            }

            #article_container .article_content blockquote .quote_footer {
                font-family: 'Inter',sans-serif;
                font-size: 16px;
            }

    /*--Sidebar--*/

    #article_container .article_sidebar {
        padding: 15px 0;
    }

        #article_container .article_sidebar ul {
            list-style-type: none;
        }

            #article_container .article_sidebar ul li {
                margin-bottom: 25px;
            }

                #article_container .article_sidebar ul li .article_datatype {
                    font-family: 'Inter',sans-serif;
                    font-size: 16px;
                    color: var(--color-sec);
                    margin-bottom: 15px;
                }

                #article_container .article_sidebar ul li .article_datavalue {
                    font-family: 'Inter',sans-serif;
                    font-size: 16px;
                    color: var(--color-lite);
                    margin-bottom: 15px;
                }

.copyright .copyright-left {
    text-align: left;
}

.copyright .copyright-right {
    text-align: right;
}

@media (max-width: 769px) {
    .copyright .copyright-left {
        text-align: center;
    }

    .copyright .copyright-right {
        text-align: center;
    }

    .services-left {
        text-align: center;
    }

    .services-right {
        text-align: center;
    }
}

.services-left {
    text-align: left;
}

.services-right {
    text-align: right;
}

.numbering-backgroung {
    border: 1px solid;
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 34px;
    border: 2px solid #ee076e;
    border-radius: 50%;
    text-align: center;
    font-weight: 700;
    /*background: linear-gradient(#ee076e,#f81f01);*/
}

.dropdown-menu {
    background-color: #020104;
    font-size: 14px;
}

.dropdown-item {
    color: #ffffff;
}

    .dropdown-item:hover {
        border-bottom: 1px solid #ef0966;
        border-top: 1px solid #ef0966;
        background-color: transparent;
        background: -webkit-linear-gradient(#f81f01, #ee076e);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-weight: 700;
    }

.carousel-caption {
    text-align: inherit;
    bottom: 15%;
}

@media (min-width: 1850px) {
    .carousel-caption {
        text-align: inherit;
        bottom: 25%;
    }
}

@media (max-width: 1025px) {
    #introduction {
        padding-top: 20px;
    }

    #services {
        padding-top: 0px;
    }

    #footer .ftr_bdy .ftr_cnt .ftr_lnk_sc a {
        margin: 20px;
    }

    #footer .ftr_brand a {
        font-size: 24px;
    }

    #vmv .row_vmv .vmv_cnt {
        padding: 20px;
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 5px;
        padding-left: 5px;
    }

    .navbar-nav .nav-item {
        font-size: 12px;
    }
}

@media (max-width: 769px) {
    .navbar-nav .nav-item {
        font-size: 16px;
    }

    #footer .ftr_bdy .ftr_cnt .ftr_lnk_sc a {
        margin: 52px;
    }

    .ftr_bdy {
        margin-bottom: 20px;
    }

    #footer .ftr_main {
        padding-top: 60px;
        padding-bottom: 20px;
    }

    #footer .ftr_btm .copyright-left h6 {
        padding-top: 25px;
        padding-bottom: 5px;
    }

    #footer .ftr_btm .copyright-right h6 {
        padding-top: 5px;
        padding-bottom: 25px;
    }

    .grid-item.gallery-title .form-group {
        bottom: 60% !important;
    }
    /*.grid-item.gallery-title{
        margin: 0px 20px 30px 20px !important;
    }*/
}

.carousel-indicators {
    z-index: 9999;
}

.banner-bg-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
}

.dropdown-item.active {
    background-color: transparent;
}

.navbar .navbar-nav .dropdown-item.active:before {
    width: 0%;
    transform: none;
}

@media (max-width: 425px) {
    .banner-bg-image {
        background-size: auto;
        background-position: initial;
        background-repeat: no-repeat;
        height: 100vh;
    }

    #footer .ftr_bdy .ftr_cnt .ftr_lnk_sc a {
        margin: 19px;
    }

    #footer .ftr_brand a {
        font-size: 18px;
    }

    .navbar .navbar-brand {
        font-size: 15px;
    }

        .navbar .navbar-brand img {
            width: 30px;
            height: 30px !important;
        }

    .cvr-title {
        font-size: 27px;
        line-height: 35px;
    }

    #cover .cvr-ftr {
        /*margin-top: -10vmin;*/
        margin-top: 0;
    }

    .carousel-caption {
        /*bottom: 10%;*/
        top: 45%;
        padding: 0;
        bottom: 0;
    }
}

@media (max-width: 424px) {

    .banner-bg-image {
        /*height: 70vh;*/
        height: 430px;
        background-size: cover;
        background-position: center;
    }

    #cover .cvr_row {
    padding-top: 0;
}
}

@media (max-width: 376px) {
    #footer .ftr_bdy .ftr_cnt .ftr_lnk_sc a {
        margin: 16px;
    }

    .banner-bg-image {
        height: 100vh;
    }
}

@media (max-width: 321px) {
    #footer .ftr_bdy .ftr_cnt .ftr_lnk_sc a {
        margin: 12px;
    }
}

.grid-item.gallery-title {
    text-align: end !important;
    /*margin: -100px 20px 30px 20px;*/
    padding: 0px 30px 0px 150px;
}

    .grid-item.gallery-title .form-group {
        position: relative;
        bottom: -60%;
    }

    .grid-item.gallery-title span {
        border: 2px solid #ff1744;
        padding: 5px 20px;
    }

@media (max-width: 426px) {
    .grid-item.gallery-title {
        text-align: center !important;
    }

        .grid-item.gallery-title .form-group {
            bottom: 60% !important;
        }

    .grid-item.gallery-title {
        padding: 0px 15px !important;
    }
}

.form-control.selector {
    color: #ffffff;
    background-color: #101010;
    border: 2px solid #ff1744;
}

.imgHolder img {
    border: 1px solid #272727;
}

.imgClass img {
    border: 1px solid #272727 !important;
}

.Lights-dropdown {
    border: 2px solid transparent;
    border-radius: 5px;
    color: #ffffff;
    background-color: #020202;
}

.form-control.Lights-dropdown:focus {
    color: #ffffff;
    background-color: #020202;
    border-color: transparent;
    border: 2px solid #ff1744;
}

.radio-input-style {
    background: #020202;
    border: 2px solid transparent;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    color: var(--color-white);
    /* margin-bottom: 0px; */
    padding: 10px 15px;
}











.drop-link {
    display: block;
    padding: .5rem 1rem;
    color: #ffffff;
}

    .drop-link:focus, .drop-link:hover {
        text-decoration: none;
    }

    .drop-link.disabled {
        color: #6c757d;
        pointer-events: none;
        cursor: default;
    }


.nav-tabs .drop-link {
    border: 1px solid transparent;
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
}

    .nav-tabs .drop-link:focus, .nav-tabs .drop-link:hover {
        border-color: #e9ecef #e9ecef #dee2e6;
    }

    .nav-tabs .drop-link.disabled {
        color: #6c757d;
        background-color: transparent;
        border-color: transparent;
    }

    .nav-tabs .nav-item.show .drop-link, .nav-tabs .drop-link.active {
        color: #495057;
        background-color: #fff;
        border-color: #dee2e6 #dee2e6 #fff;
    }

.nav-pills .drop-link {
    border-radius: .25rem;
}

    .nav-pills .drop-link.active, .nav-pills .show > .drop-link {
        color: #ff1744;
        background-color: #007bff;
    }

.navbar-nav .drop-link {
    padding-right: 0;
    padding-left: 0;
}

.navbar-expand-sm .navbar-nav .drop-link {
    padding-right: .5rem;
    padding-left: .5rem;
}

.navbar-expand-md .navbar-nav .drop-link {
    padding-right: .5rem;
    padding-left: .5rem;
}

.navbar-expand-lg .navbar-nav .drop-link {
    padding-right: .5rem;
    padding-left: .5rem;
}

.navbar-expand .navbar-nav .drop-link {
    padding-right: .5rem;
    padding-left: .5rem;
}

.navbar-light .navbar-nav .drop-link {
    color: #ffffff;
}

    .navbar-light .navbar-nav .drop-link:focus, .navbar-light .navbar-nav .drop-link:hover {
        color: #ff1744;
    }

    .navbar-light .navbar-nav .drop-link.disabled {
        color: #ffffff;
    }

    .navbar-light .navbar-nav .active > .drop-link, .navbar-light .navbar-nav .drop-link.active, .navbar-light .navbar-nav .drop-link.show, .navbar-light .navbar-nav .show > .drop-link {
        color: #ffffff;
    }

.navbar-dark .navbar-nav .drop-link {
    color: rgba(255,255,255,.5);
}

    .navbar-dark .navbar-nav .drop-link:focus, .navbar-dark .navbar-nav .drop-link:hover {
        color: rgba(255,255,255,.75);
    }

    .navbar-dark .navbar-nav .drop-link.disabled {
        color: rgba(255,255,255,.25);
    }

    .navbar-dark .navbar-nav .active > .drop-link, .navbar-dark .navbar-nav .drop-link.active, .navbar-dark .navbar-nav .drop-link.show, .navbar-dark .navbar-nav .show > .drop-link {
        color: #fff;
    }

button.scroltop {
    background-color: transparent;
    border: 2px solid #d60a5c;
    border-radius: 50%;
    border-style: solid;
    bottom: 15px;
    box-shadow: 2px 2px 12px -5px #000;
    color: #d60a5c;
    cursor: pointer;
    /*display: none;*/
    height: 40px;
    line-height: 26px;
    margin: 0;
    position: fixed;
    right: 15px;
    text-align: center;
    width: 40px;
    z-index: 999;
}




/*
*****
11. portfolio
*************************
*/
.portfolio-area {
    padding-top: 90px;
    padding-bottom: 90px;
}

@media (max-width: 767px) {
    .portfolio-area {
        padding-top: 80px;
        padding-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .portfolio-st-2 {
        padding-top: 60px;
        padding-bottom: 55px;
    }
}

.single-portfolio {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    display: inline-block;
}

    .single-portfolio:hover .portfolio-content {
        bottom: 0;
    }

.portfolio-img {
    border-radius: 10px;
}

.portfolio-content {
    width: 250px;
    height: 90px;
    text-align: center;
    background: #f39100;
    border-radius: 40px 40px 0 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -120px;
    padding-top: 38px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

    .portfolio-content h5 {
        font-size: 18px;
        line-height: 22px;
        margin-bottom: 0;
    }

    .portfolio-content span {
        color: #040021;
        font-weight: 400;
    }

.p-link {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: #ffffff;
    border-radius: 50%;
    display: inline-block;
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 16px;
}

    .p-link:hover {
        background: #ff1744;
        color: #ffffff;
    }

/*.portfolio-item-img {
  border-radius: 10px;
  overflow: hidden;
  max-height: 250px;
}*/
.portfolio-item-img:hover .portfolio-hover-contnet {
    opacity: 1;
    visibility: visible;
    top: 0;
}

    .portfolio-item-img:hover .portfolio-hover-contnet:before {
        top: 0;
    }

.portfolio-item-img img {
    width: 100%;
}

.portfolio-hover-contnet {
    display: flex;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    z-index: 5;
}

    .portfolio-hover-contnet:before {
        position: absolute;
        content: "";
        top: 50%;
        left: 0;
        width: 100%;
        height: 100%;
        /*background: #ff1744;*/
        opacity: 0.8;
        z-index: -1;
    }

.portfolio-hover-inner {
    padding: 0 50px;
    width: 100%;
}

    .portfolio-hover-inner p {
        color: #ffffff;
    }

.p-h-icon {
    font-size: 16px;
    color: #ff1744;
    height: 50px;
    width: 50px;
    text-align: center;
    line-height: 50px;
    background: #101010;
    display: inline-block;
    border-radius: 50%;
}

    .p-h-icon:hover {
        color: #f39100;
    }

.portfolio-hover-heading {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    position: relative;
    margin-top: 10px;
    margin-bottom: 20px;
    padding-bottom: 5px;
}

    .portfolio-hover-heading:before {
        position: absolute;
        content: "";
        width: 86px;
        height: 2px;
        background: #ffffff;
        bottom: -7px;
        left: 50%;
        transform: translateX(-50%);
    }

    .portfolio-hover-heading a:hover {
        color: #f39100;
    }

.portfolio-button {
    text-align: center;
    margin-bottom: 70px;
}

    .portfolio-button button {
        font-size: 12px;
        font-weight: 500;
        padding: 0 17px;
        height: 35px;
        line-height: 35px;
        border-radius: 3px;
        margin: 5px 5px;
        border: 1px solid #ff1744;
        background: none;
        -webkit-transition: all 0.3s ease-out 0s;
        -moz-transition: all 0.3s ease-out 0s;
        -ms-transition: all 0.3s ease-out 0s;
        -o-transition: all 0.3s ease-out 0s;
        transition: all 0.3s ease-out 0s;
        position: relative;
    }

@media (max-width: 767px) {
    .portfolio-button button {
        margin-bottom: 5px;
    }
}
/*.portfolio-button button:before {
  position: absolute;
  content: "";
  background: #ff1744;
  width: 11px;
  height: 6px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}*/
/*@media (max-width: 767px) {
  .portfolio-button button:before {
    display: none;
  }
}*/
.portfolio-button button:hover {
    color: #ffffff;
    background: #ff1744;
}
/*.portfolio-button button:hover:before {
  opacity: 1;
  visibility: visible;
}*/
.portfolio-button button.active {
    color: #ffffff;
    background: #ff1744;
    border: 1px solid #ff1744;
    vertical-align: middle;
    border-radius: 5px;
}
/*.portfolio-button button.active:before {
  opacity: 1;
  visibility: visible;
}*/

.portfolio-see-all {
    text-align: center;
    margin-top: 35px;
}

@media (max-width: 767px) {
    .p-search-area {
        padding-top: 90px;
    }
}

.portfolio-search-form input {
    height: 60px;
    border: 1px solid #f2f2f2;
    color: #040021;
    padding: 0 20px;
    border-radius: 3px;
    width: calc(100% - 200px);
}

@media (max-width: 767px) {
    .portfolio-search-form input {
        width: 100%;
    }
}

.portfolio-search-form button {
    width: 170px;
    height: 60px;
    border: none;
    background: #ff1744;
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    border-radius: 3px;
    float: right;
}

@media (max-width: 767px) {
    .portfolio-search-form button {
        float: none;
        margin-top: 25px;
    }
}

.portfolio-search-form button i {
    margin-right: 15px;
}

.portfolio-main-buttons {
    margin-bottom: 50px;
}

.portfolio-main-items .portfolio-item-img {
    border-radius: 5px;
}

.portfolio-main-items .portfolio-hover-contnet:before {
    display: none;
}

.portfolio-main-items .portfolio-item {
    margin-bottom: 40px;
}

@media (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
    .portfolio-main-items .portfolio-item {
        margin-bottom: 70px;
    }
}

.portfolio-main-buttons.portfolio-button button::before {
    display: none;
}

.portfolio-main-buttons.portfolio-button button:hover {
    color: #ff1744;
    background: #f9f8ff;
}

.portfolio-main-buttons.portfolio-button button.active {
    color: #ff1744;
    background: #f9f8ff;
}

.p-h-icon.pm-s {
    font-size: 15px;
    font-weight: 500;
    color: #8f98a8;
    min-width: 110px;
    padding: 20px 0;
    border-radius: 3px;
    box-shadow: 0px 10px 30px rgba(16, 0, 71, 0.1);
    height: auto;
    line-height: 1;
}

    .p-h-icon.pm-s i {
        display: block;
        font-size: 28px;
        color: #ff1744;
        margin-bottom: 15px;
    }

.project-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 22px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px), (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
    .project-meta {
        display: inherit;
    }
}

.project-name h5 {
    font-size: 16px;
    margin-bottom: 0;
}

.project-like-view li {
    font-size: 16px;
    font-weight: 500;
    display: inline-block;
    float: left;
    margin: 0 10px;
    line-height: 1;
}

@media only screen and (min-width: 992px) and (max-width: 1200px), (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
    .project-like-view li {
        margin-top: 10px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px), (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
    .project-like-view li:first-child {
        margin-left: 0;
    }
}

.project-like-view li:last-child {
    margin-right: 0;
}

.project-like-view li i {
    margin-right: 10px;
}

@media (max-width: 767px) {
    .portfolio-details-area {
        padding-top: 90px;
        padding-bottom: 30px;
    }
}

.portfolio-details-content h5 {
    font-size: 18px;
    line-height: 25px;
    text-transform: uppercase;
}

.choosing__information.portfolio-w-p {
    background: none;
    padding: 0 40px 0 0;
    margin-left: 0;
    position: relative;
    z-index: 5;
}

    .choosing__information.portfolio-w-p ul li {
        align-items: flex-start;
        margin-bottom: 34px;
    }

        .choosing__information.portfolio-w-p ul li:hover .choosing__number span {
            border-color: #ff1744;
            color: #ff1744;
            background: none;
        }

    .choosing__information.portfolio-w-p .choosing__text h5 {
        font-size: 15px;
        color: #040021;
        text-transform: none;
        line-height: 1;
        margin-bottom: 12px;
    }

    .choosing__information.portfolio-w-p .choosing__text p {
        color: #8f98a8;
    }

    .choosing__information.portfolio-w-p .choosing__number span {
        border: 1px solid #ff1744;
        color: #ff1744;
        height: 50px;
        width: 50px;
        line-height: 48px;
        border-radius: 50%;
    }

        .choosing__information.portfolio-w-p .choosing__number span:before {
            display: none;
        }

    .choosing__information.portfolio-w-p .choosing__number {
        margin-right: 20px;
    }

.portfolio-details-title h4 {
    font-size: 20px;
    text-transform: uppercase;
    line-height: 1;
}

.portfolio-details-category {
    margin-right: 15px;
}

.portfolio-details-date {
    position: relative;
    padding-left: 20px;
}

    .portfolio-details-date:before {
        position: absolute;
        content: "";
        width: 5px;
        height: 5px;
        background: #ff1744;
        border-radius: 50%;
        left: 0;
        top: 6px;
    }

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .portfolio-details-meta .project-like-view {
        float: left;
        margin-bottom: 30px;
    }
}

.portfolio-details-meta .project-like-view li {
    font-size: 15px;
    font-weight: 500;
    color: #8f98a8;
    background: #f8f8f8;
    padding: 0 12px;
    border-radius: 3px;
    height: 40px;
    line-height: 40px;
}

    .portfolio-details-meta .project-like-view li i {
        margin-right: 10px;
    }

.portfolio-details-img {
    margin-bottom: 15px;
}

.portfolio-details-img-left {
    margin-right: -30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .portfolio-details-img-left {
        margin-right: 0;
    }
}

.portfolio-details-img-right {
    padding-left: 30px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .portfolio-details-img-right {
        padding-left: 15px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .portfolio-details-img-right {
        padding-left: 0;
    }
}

.portfolio-details-img-right .portfolio-details-single-img {
    border-radius: 5px;
}

.portfolio-details-single-img {
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .portfolio-details-single-img {
        margin-bottom: 20px;
    }
}

.portfolio-details-single-img img {
    width: 100%;
}

.p-sidebar-widget {
    background: #ffffff;
    border-radius: 5px;
    padding: 25px 30px;
    box-shadow: 0px 10px 20px rgba(16, 0, 71, 0.1);
    max-width: 500px;
}

.ps-widget-meta {
    margin-bottom: 35px;
}

    .ps-widget-meta h5 {
        font-size: 18px;
        text-transform: uppercase;
        margin-bottom: 8px;
    }

.used-tools li {
    margin: 0 3px;
    display: inline-block;
}

    .used-tools li a {
        width: 36px;
        height: 36px;
        text-align: center;
        line-height: 36px;
        color: #ffffff;
        font-size: 18px;
        font-weight: 500;
        border-radius: 5px;
        display: inline-block;
    }

.used-tools .ps {
    background: #4466d6;
}

.used-tools .ai {
    background: #e18e00;
}

.used-tools .xd {
    background: #aa2894;
}

.widget-meta-dt li {
    display: inline-block;
    position: relative;
    margin: 0 15px;
}

    .widget-meta-dt li:first-child {
        margin-left: 0;
    }

    .widget-meta-dt li:last-child {
        margin-right: 0;
    }

    .widget-meta-dt li:after {
        position: absolute;
        content: "";
        width: 1px;
        height: 10px;
        background: #e9e9e9;
        top: 5px;
        right: -16px;
    }

    .widget-meta-dt li:last-child::after {
        display: none;
    }

.clients-name {
    color: #040021;
    font-size: 15px;
}

    .clients-name span {
        font-weight: 500;
    }

.file-size {
    color: #040021;
}

.pd-hire-area::before {
    display: none;
}

.pd-hire-inner {
    padding: 85px 0 85px 0;
    background: #f4f1ff;
}

.pd-hire-btn .grb-btn {
    color: #ffffff !important;
}

.related-shots-inner > h3 {
    font-size: 36px;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 44px;
}

@media (max-width: 767px) {
    .related-shots-inner > h3 {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .portfolio-area-slide {
        padding-top: 60px;
        padding-bottom: 55px;
    }
}

.portfolio-slide-single {
    overflow: hidden;
    width: 270px;
    height: auto;
    border-radius: 10px;
    margin-right: 30px;
}

@media only screen and (min-width: 1201px) and (max-width: 1400px) {
    .portfolio-slide-single {
        width: 350px;
        height: 450px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .portfolio-slide-single {
        width: 290px;
        height: 376px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .portfolio-slide-single {
        width: 330px;
        height: 425px;
    }
}

@media (max-width: 767px) {
    .portfolio-slide-single {
        width: 100%;
        height: 100%;
    }
}

.portfolio-slide-single:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: #040021;
    opacity: 30%;
    top: 100%;
    left: 0;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.portfolio-slide-single:hover:before {
    top: 0;
}

.portfolio-slide-single:hover .portfolio-slide-single-content {
    top: 0;
}

.portfolio-slide-single-content {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 5;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
}

.cbg-shape {
    position: absolute;
    top: -20px;
    left: -45px;
    z-index: -1;
}

    .cbg-shape img {
        max-width: inherit;
    }

.portfolio-slide-inner {
    position: relative;
    min-width: 200px;
    margin-left: auto;
    margin-right: auto;
}

.icon-link a {
    display: inline-block;
    font-size: 18px;
    height: 50px;
    width: 50px;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    background: #ffffff;
    margin-bottom: 25px;
    color: #040021;
    font-weight: 700;
}

.portfolio-slide-single-text span {
    color: #ffffff;
    margin-bottom: 5px;
    display: inline-block;
}

.portfolio-slide-single-text h5 {
    font-size: 18px;
    margin-bottom: 0;
    color: #ffffff;
}

    .portfolio-slide-single-text h5 a:hover {
        opacity: 0.7;
    }

.portfolio-active .swiper-button-prev, .portfolio-active .swiper-button-next {
    font-size: 20px;
    color: #000000;
    height: 48px;
    width: 54px;
    text-align: center;
    line-height: 46px;
    background: #f2f2f2;
    display: inline-block;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    position: static;
    margin: 0 5px;
    border: 1px solid #ff1744;
}

.portfolio-active .swiper-button-prev {
    border-radius: 55% 45% 45% 55%/50% 50% 50% 50%;
}

    .portfolio-active .swiper-button-prev:hover {
        background: #ff1744;
        box-shadow: 0 -7px 15px rgba(16, 0, 71, 0.1);
        color: #ffffff;
    }

.portfolio-active .swiper-button-next {
    border-radius: 45% 55% 55% 45%/50% 50% 50% 50%;
}

    .portfolio-active .swiper-button-next:hover {
        background: #ff1744;
        box-shadow: 0 7px 15px rgba(16, 0, 71, 0.1);
        color: #ffffff;
    }

    .portfolio-active .swiper-button-prev:after, .portfolio-active .swiper-button-next:after {
        display: none;
    }

.portfolio-nav {
    display: inline-block;
    margin-left: -5px;
    padding-bottom: 20px;
    padding-top: 62px;
}

.portfolio-container {
    max-width: calc(((100% - 1170px) / 2) + 1170px);
    margin-left: auto;

}

@media only screen and (min-width: 1201px) and (max-width: 1400px) {
    .portfolio-container {
        max-width: calc(((100% - 1110px) / 2) + 1110px);
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .portfolio-container {
        max-width: calc(((100% - 930px) / 2) + 930px);
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .portfolio-container {
        max-width: calc(((100% - 690px) / 2) + 690px);
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .portfolio-container {
        max-width: 510px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 767px) {
    .portfolio-container {
        margin-left: 15px;
        margin-right: 15px;
        max-width: calc(100% - 30px);
    }
}

.portfolio-slide-nav .swiper-button-prev,
.portfolio-slide-nav .swiper-button-next {
    font-size: 30px;
    color: #040021;
    height: 60px;
    width: 60px;
    text-align: center;
    line-height: 50px;
    background: #f39100;
    display: inline-block;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    margin: 0 5px;
    border-radius: 50%;
    border: 5px solid #ffffff;
}

    .portfolio-slide-nav .swiper-button-prev.swiper-button-disabled,
    .portfolio-slide-nav .swiper-button-next.swiper-button-disabled {
        opacity: 0;
    }

.portfolio-slide-nav {
    display: block;
}

    .portfolio-slide-nav .swiper-button-prev:hover {
        background: #f39100;
        color: #040021;
    }

    .portfolio-slide-nav .swiper-button-next:hover {
        background: #f39100;
        color: #040021;
    }

    .portfolio-slide-nav .swiper-button-prev:after,
    .portfolio-slide-nav .swiper-button-next:after {
        display: none;
    }

.swipper-nav-arrow {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    left: -35px;
    background: #000;
    height: 60px;
    width: 60px;
}

@media (max-width: 767px) {
    .swipper-nav-arrow {
        position: static;
        transform: none;
    }
}

.swipper-nav-arrow.swiper-button-next {
    left: auto;
    right: -35px;
}

.mb-30 {
    margin-bottom: 30px;
}

.portfolio-item-img:hover .portfolio-hover-contnet:before {
    top: 0;
}

.portfolio-hover-contnet:before {
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: #ff1744;*/
    opacity: 0.8;
    z-index: -1;
}

.portfolio-button button {
    color: #ffffff;
}


.whatsapp-icon {
    position: fixed;
    bottom: 90px;
    right: 10px;
    overflow: auto;
}

.whatsApp {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 80px;
    right: 25px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    border: 1px #21D4FD;
    text-align: center;
    font-size: 30px;
    z-index: 100;
}

.sticky-text {
    position: fixed;
    bottom: 60px;
    right: 60px;
    overflow: hidden;
    background-color: black;
}

.text-glow {
    text-shadow: 0 0 8px #fff;
    color: white;
    font-size: 22px;
    text-align: center;
}

.text-container {
    background-color: transparent;
    height: 87px;
    width: 161px;
    padding: 30px;
    border: none;
    box-shadow: none;
}

.overlay-text {
    position: absolute;
    top: 60px;
    margin-left: 20px;
    color: #ffffff;
    width: 90%;
    color: rgb(255, 255, 255);
    font-size: 42px;
    font-family: Arial, sans-serif;
    padding: 3px;
    text-align: center;
    text-shadow: 0 0 5px #ffffff;
    letter-spacing: 2.4px;
}


 
  /*.overlay-texts {
	position: absolute;
	top: 60px;
	margin-left: 20px;
	background-image: linear-gradient(to right, 
  #ff0000, 
  #ff4000, 
  #ff7f00, 
  #ffb900, 
  #ffff00, 
  #bfff00, 
  #00ff00, 
  #00ff7f, 
  #00ffff, 
  #007fff, 
  #0000ff, 
  #4b0082, 
  #800080, 
  #ff00ff  
);

	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: move 80s linear infinite;
	width: 90%;
	font-size: 42px;
	font-family: Arial, sans-serif;
	padding: 3px;
	text-align: center;
	letter-spacing:2.4px;
  }*/
.overlay-texts-white {
    position: absolute;
	top: 60px;
	margin-left: 20px;
    color:#fff !important;
    width: 90%;
	font-size: 42px;
	font-family: Arial, sans-serif;
	padding: 3px;
	text-align: center;
	letter-spacing:2.4px;
    animation: neon 1s infinite;
}
@keyframes neon {
  0% {
    text-shadow: -1px -1px 1px , -1px 1px 1px #FF9E9E, 1px -1px 1px #FF9E9E, 1px 1px 1px #FF9E9E,
    0 0 3px #FF9E9E, 0 0 10px #FF9E9E, 0 0 20px #FF9E9E,
    0 0 30px white, 0 0 40px white, 0 0 50px white, 0 0 70px white, 0 0 100px white, 0 0 200px white;
  }
  50% {
    text-shadow: -1px -1px 1px #FF9E9E, -1px 1px 1px #FF9E9E, 1px -1px 1px #FF9E9E, 1px 1px 1px #FF9E9E,
    0 0 5px #FF9E9E, 0 0 15px #FF9E9E, 0 0 25px #FF9E9E,
    0 0 40px white, 0 0 50px white, 0 0 60px white, 0 0 80px white, 0 0 110px white, 0 0 210px white;
  }
  100% {
    text-shadow: -1px -1px 1px #FF9E9E, -1px 1px 1px #FF9E9E, 1px -1px 1px #FF9E9E, 1px 1px 1px #FF9E9E,
    0 0 3px #FF9E9E, 0 0 10px #FF9E9E, 0 0 20px #FF9E9E,
    0 0 30px white, 0 0 40px white, 0 0 50px white, 0 0 70px white, 0 0 100px white, 0 0 200px white;
  }
}
@keyframes move {
    to {
        background-position: 4500vh;
    }
}
.overlay-textn {
    position: absolute;
    top: 80px;
    margin-left: 20px;
    color: #ffffff;
    width: 90%;
    color: rgb(255, 255, 255);
    font-size: 42px;
    font-family: Arial, sans-serif;
    padding: 3px;
    text-align: center;
    text-shadow: 0 0 5px #ffffff;
    letter-spacing: 2.4px;
}

.overlay-textt {
    position: absolute;
    top: 80px;
    margin-left: 20px;
    color: #ffffff;
    width: 90%;
    color: rgb(255, 255, 255);
    font-size: 42px;
    font-family: Arial, sans-serif;
    padding: 3px;
    text-align: center;
    text-shadow: 0 0 5px;
    letter-spacing: 2.4px;
}

.circle-red {
    border-radius: 50%;
    width: 35px;
    height: 35px;
    background-color: red;
    border-color: rgb(0, 0, 0);
    text-shadow: 0 0 5px red;
}

.circle-pink {
    border-radius: 50%;
    width: 35px;
    height: 35px;
    background-color: rgb(255, 0, 238);
    border-color: rgb(0, 0, 0);
}

.circle-green {
    border-radius: 50%;
    width: 35px;
    height: 35px;
    background-color: rgb(34, 255, 0);
    border-color: rgb(0, 0, 0);
}

.circle-blue {
    border-radius: 50%;
    width: 35px;
    height: 35px;
    background-color: rgb(0, 17, 255);
    border-color: rgb(0, 0, 0);
}

.circle-purple {
    border-radius: 50%;
    width: 35px;
    height: 35px;
    background-color: rgb(204, 0, 255);
    border-color: rgb(0, 0, 0);
}

.circle-orange {
    border-radius: 50%;
    width: 35px;
    height: 35px;
    background-color: rgb(255, 106, 0);
    border-color: rgb(0, 0, 0);
}

.circle-white {
    border-radius: 50%;
    width: 35px;
    height: 35px;
    background-color: rgb(255, 255, 255);
    border-color: #000000;
}

.circle-yellow {
    border-radius: 50%;
    width: 35px;
    height: 35px;
    background-color: rgb(251, 255, 0);
    border-color: rgb(0, 0, 0);
}

.circle-iceblue {
    border-radius: 50%;
    width: 35px;
    height: 35px;
    background-color: #00bfff;
    border-color: rgb(0, 0, 0);
}

.circle-warmwhite {
    border-radius: 50%;
    width: 35px;
    height: 35px;
    background-color: #f3e7d3;
    border-color: rgb(0, 0, 0);
}

label {
    float: left;
    margin: 5px 0px;
}

input {
    float: right;
    margin: 5px 0px;
    width: 50px;
}

.clear {
    clear: both;
}

.quantity-button {
    display: flex;
    align-items: center;
}

input[type="number"] {
    width: 50px;
    text-align: center;
}

.quantity-button button {
    background-color: #181818;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 18px;
    cursor: pointer;
    margin: 0 5px;
}



    .quantity-button button:active {
        transform: scale(0.95);
    }


/*--CART--*/

.cart {
    margin: 20px 0;
    background-color: #181818;
    ;
    padding: 60px 0;
}

.total-price {
    padding-bottom: 15px;
}

.cart-item {
    background-color: #747272;
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 20px;
}

.center-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.cart-item img {
    width: 115px;
}

.cart-item h5 {
   padding:0px 10px 0px 10px
}

.cart-item .remove-item {
    width: 25px !important;
}

.btn-default {
    background-color: #333;
}

.cart-item .form-control {
    background-color: #333333;
    border: none;
    width: 65px;
    border-radius: 10px !important;
    font-weight: 600;
    font-size: 17px;
}

.input-group {
    width: unset;
    flex-wrap: nowrap;
}

.status {
    text-align: right;
}

.check-out {
    float: right;
    padding: 10px 30px;
    font-size: 19px;
    background-color: #ff1744;
    border: none;
}



/*--QUANTITY--*/


.counter-container {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ff1744;
    border-radius: 5px;
    width: 125px;
    height: 47px;
}


@media screen and (max-width: 768px) {
    .counter-container {
        display: flex;
        align-items: center;
        justify-content: center;
        border: 2px solid #ff1744;
        border-radius: 5px;
        height: 50px;
        width: 200px;
        margin-left: 20px;
    }
}


.counter-button {
    background-color: #181818;
    border: 1px solid #181818;
    border-radius: 5px;
    color: white;
    width: 30px;
    height: 30px;
    font-size: 20px;
}

.counter-value {
    font-size: 20px;
    margin: 0 10px;
}


.button_mainn {
    color: var(--color-white) !important;
    background: #ff1744 !important;
    border: 2px solid var(--color-sec) !important;
    padding: 12px 77px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
}

@media screen and (min-width: 768px) {
    .button_mainn {
        color: var(--color-white) !important;
        background: #ff1744 !important;
        border: 2px solid var(--color-sec) !important;
        padding: 12px 178px;
        font-family: 'Poppins', sans-serif;
        font-weight: 600;
        font-size: 14px;
    }
}

.button_mainn:hover {
    text-decoration: none;
    background: var(--color-sec);
    color: #fefefe;
    -webkit-box-shadow: 2px 2px 20px rgba(255, 23, 68,0.7);
    box-shadow: 2px 2px 20px rgba(255, 23, 68,0.7);
}

.button_mainn:focus {
    outline: none;
    -webkit-box-shadow: 0 0 0;
    box-shadow: 0 0 0;
}


.button_mai {
    color: var(--color-white) !important;
    background: #ff1744 !important;
    border: 2px solid var(--color-sec) !important;
    padding: 11px 20px;
    display:block;
    width:100%;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
}

@media screen and (min-width: 768px) {
    .button_mai {
        color: var(--color-white) !important;
        background: #ff1744 !important;
        border: 2px solid var(--color-sec) !important;
        padding: 11px 20px;
        font-family: 'Poppins', sans-serif;
        font-weight: 600;
        font-size: 14px;
        display:block;
        width:100%;
    }
}

.button_mai:hover {
    text-decoration: none;
    background: var(--color-sec);
    color: #fefefe;
    -webkit-box-shadow: 2px 2px 20px rgba(255, 23, 68,0.7);
    box-shadow: 2px 2px 20px rgba(255, 23, 68,0.7);
}

.button_mai:focus {
    outline: none;
    -webkit-box-shadow: 0 0 0;
    box-shadow: 0 0 0;
}


.button_mains {
    color: var(--color-white) !important;
    background: transparent !important;
    border: 2px solid var(--color-sec) !important;
    padding: 12px 46px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    height: 50px;
    width: 145px;
}


@media screen and (max-width: 768px) {
    .button_mains {
        color: var(--color-white) !important;
        background: transparent !important;
        border: 2px solid var(--color-sec) !important;
        padding: 12px 46px;
        font-family: 'Poppins', sans-serif;
        font-weight: 600;
        font-size: 14px;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        -ms-border-radius: 5px;
        -o-border-radius: 5px;
        border-radius: 5px;
        height: 50px;
        width: 200px;
        margin-left: 20px;
    }
}

.button_mains:hover {
    text-decoration: none;
    background: var(--color-sec);
    color: #fefefe;
    -webkit-box-shadow: 2px 2px 20px rgba(255, 23, 68,0.7);
    box-shadow: 2px 2px 20px rgba(255, 23, 68,0.7);
}

.button_mains:focus {
    outline: none;
    -webkit-box-shadow: 0 0 0;
    box-shadow: 0 0 0;
}



@media screen and (max-width: 768px) {
    .s1 {
        height: 50px;
        width: 300px;
        margin-left: 20px;
    }

    .carousel-item img {
        object-fit:cover;
        height:200px;
    }
}

.button_s {
    color: var(--color-white) !important;
    background: transparent !important;
    border: 2px solid var(--color-sec) !important;
    padding: 12px 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
}

    .button_s:hover {
        text-decoration: none;
        background: var(--color-sec);
        color: #fefefe;
        -webkit-box-shadow: 2px 2px 20px rgba(255, 23, 68,0.7);
        box-shadow: 2px 2px 20px rgba(255, 23, 68,0.7);
    }

    .button_s:focus {
        outline: none;
        -webkit-box-shadow: 0 0 0;
        box-shadow: 0 0 0;
    }

    .button_s .arrow_go {
        -webkit-transition: 0.3s;
        transition: 0.3s;
    }

    .button_s:hover > .arrow_go {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }
    
.field-validation-error {
    color: red;
}

.error-message {
    color: red;
    font-size: 12px;
    font-weight: bold;
    display: none;
}

.captcha-text input {
    background: rgb(255 252 252);
}
  .navbar .container .toggle .sigma-notification {
    background: #fcd462;
    color: #000;
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 10px;
    margin-right: 0;
    position: relative;
       top: -13px;
    left: 35px;

    margin-left: -20px;
}
  .navbar .container .toggle.dropdown-btn {
    position: static;
    margin-left:10px;
}
.navbar .container .toggle  a {
    width: 40px !important;
    height: 40px !important;
    
    text-align: center;
    line-height: 40px !important;
    padding: 0 !important;
    color: #fff !important;
}

.navbar .container .toggle {
    margin-right: 0;
}
.navbar .container .toggle i {
    font-size: 22px;
}


@media screen and (min-width:1200px){
    .xl-menu-container{
        max-width: 1260px;
    }
}

@media screen and (min-width:1400px){
    .xl-menu-container{
        max-width: 1370px;
    }
}

.navbar .container .toggle .cart-dropdown-menu .cart-items-box {
    display: block;
    height: 350px !important;
    width:auto !important;
    overflow-y: auto;
    max-height: 400px;
}

.navbar .container .toggle .cart-dropdown-menu .cart-item {
    border-bottom: 1px solid #565656;
    padding-bottom: 10px;
    margin-bottom: 10px;
   
    align-items: center;
    justify-content: space-between;
    width:360px;
}
/*.navbar .container .toggle .cart-dropdown-menu .cart-item .img {
    width: 80px;
    height: 80px;
    margin-right: 10px;
}*/

.navbar .container .toggle .cart-dropdown-menu .cart-item .content {
    width: calc(100% - 90px);
    position: relative;
    
}
.navbar .container .toggle .cart-dropdown-menu a {
    width: auto;
    height: auto;
    border: none;
    text-align: left;
    line-height: normal;
    color: inherit;
}

.navbar .container .toggle .cart-dropdown-menu .cart-item .content p {
 
    margin-bottom: 0;
   
}
.navbar .container .toggle .cart-dropdown-menu .cart-item p{
    color:#fff !important;
}
.remove-icon {
    position: absolute;
    right: 0px;
    bottom: 0;
}
.navbar .container .toggle .cart-dropdown-menu .cart-item span {
    font-weight: 600;
    color: #fff !important;    
    font-size: 14px;
}
.navbar .container .toggle .cart-dropdown-menu .cart-item i:hover {
    color:#ff1744 !important;
    transition:all 0.5s ease;
}

.navbar .container .toggle  .cart-dropdown-menu .cart-button .check-out-btn-border {
    background-color: transparent;
    border: 2px solid #40403b!important;
    margin-right: 5px !important;
    padding:10px  15px !important;
    color: #fff!important;
    line-height: 50px!important;
    height: 50px!important;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 15px;
    font-weight: 600;
}

.navbar .container .toggle  .cart-dropdown-menu .cart-button .check-out-btn {
    background-color: transparent;
    border: 2px solid #40403b!important;
    margin-right: 5px !important;
    padding:10px  15px !important;
    color: #fff!important;
    line-height: 50px!important;
    height: 50px!important;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 15px;
    font-weight: 600;
}

.navbar .container .toggle  .cart-dropdown-menu {
    border: none;
    padding: 0;
    margin: 0;
    border-radius: 0;
    padding: 15px;
    width: fit-content !important;
    box-shadow: 0 0 50px 0 rgba(0,0,0,0.1);
    right: 10px;
    left: auto;
    background-color: #353530;
}

.navbar .container .toggle  .cart-dropdown-menu .cart-item {
    border-bottom: 1px solid #bbbbb8;
    padding-bottom: 10px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar .container .toggle  .cart-dropdown-menu div.cart-items-box {
    height: auto;
    padding-top: 15px;
    overflow: hidden;
}
.navbar .container .toggle .cart-dropdown-menu .cart-items-box {
    display: block;
    height: 2500px !important;
    overflow-y: auto;
    max-height: 350px;    
    padding: 10px!important;

}

td.has-title {
    vertical-align: middle;
    border: 1px solid #eee;
    /*display: flex !important;
    justify-content: center !important;
    align-items: center !important;*/
}

td .product-thumbnail {
    width: auto;
    display:block;
    margin-right: 1rem;
}

 .has-title .product-thumbnail img {
   height:100px !important; 
   width:auto;
}

.table .cw-align {
    vertical-align: middle;
    text-align: -webkit-center;

}

.cw-qty-sec .quantity-box {
    /* width: 215px; */
    width: 160px;
    display: flex;
    border: 1px solid #a3a3a3;
    border-radius: 0;
}
.shop-detail-content .quantity-box button {
    border: 0px;
    padding: 0 20px;
    background: #272626;
    color: #fff;
    transition: .3s;
}
.shop-detail-content .quantity-box .input-qty {
    border: 0;
    height: auto;
    color: #fff;
    text-align: center;
    background-color: #272626;
    font-size: 15px;
    padding: 10px 20px;
    margin: 0px !important;
}

/*Added by vaishali*/
.pb-120 {
    padding-bottom: 120px;
}
.pt-120 {
    padding-top: 120px;
}
.table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
}
.table {
    width: 100%;
    margin-bottom: 1rem;
    color: #fff;
}
.table thead th, .table td {
    vertical-align: bottom;
    border: 1px solid #fff;
}
/*.table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #dee2e6;
}*/
.table td, .table th {
    padding: 0.75rem;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
}
th {
    text-align: inherit;
}
tbody {
    display: table-row-group;
    vertical-align: middle;
    border-color: inherit;
}
tr {
    display: table-row;
    vertical-align: inherit;
    border-color: inherit;
}

.table td{
    width:100px;
}


.form__input {
    display: inline-block;
    width: 100%;
    height: 50px;
    font-size: 14px;
    border: 1px solid #e2e2e2;
    margin-bottom: 20px;
    padding: 0 20px;
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.input-group label {
    /*width: 130px !important;*/
    height: auto;
    flex: 34%;
}
.form__textarea {
    padding: 13px 20px 13px 20px;
    height: 100px;
    resize: none;
}

.button--green {   
    background-color: transparent;
    border: 2px solid #40403b !important;
    margin-right: 5px !important;
    padding:0px 10px !important;
    color: #fff !important;
    line-height: 50px !important;
    height: 50px !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 15px;
    font-weight: 600;
}
.button--green:hover {
   
    text-decoration:underline !important;
}
 .check-out-btn {
    background-color: transparent;
    border: 2px solid #40403b !important;
    margin-right: 5px !important;
    padding: 10px 15px !important;
    color: #fff !important;
    line-height: 50px !important;
    height: 50px !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 15px;
    font-weight: 600;
}

.button {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.address-box {
    padding: 20px;
    border-left: 2px solid #eee;
    background: #3e3b3b;
    margin: 10px 0px;
    height: auto;
}
.checkout-bg {
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 2px;
    
}/*
.tab-content {
    padding: 30px;
    border: 2px solid #eee;
    border-radius: 2px;
}*/

table .has-title img {
    height: 50px;
    width: auto;
}

.checkout-table table .has-title img {
   margin:10px 10px;
}
table .products-name-td {
    padding-left: 20px;
}

.border-bottom {
    border-bottom:1px solid #eee;
    padding:15px 0px;
}

.view-payment .row span {
    float:right !important;
}

.show-address{
    margin:20px 0px;
}

#footer .ftr_btm a:hover {
   
    text-decoration: underline;
}

.nav-item .login-name {
    color: var(--color-sec);
}

.nav-item .login-btn i {
    color: var(--color-sec);
   
}

.nav-item .login-btn {
   
    margin: 0px 10px;
    font-size: 20px;
}

.account-tabs .nav-link {
    color: var(--color-sec);
}
.edit-add-btn a
{
text-align: right;
    font-size: 16px;
    color: #fcd462;
    width: fit-content;
    margin-top: 8px;
    padding: 0 4px;
    cursor: pointer;
}

.navbar .container .toggle .remove-icon i {
    font-size:15px;
}

.navbar .container .toggle .remove-icon a {
   
    text-align: center;
    line-height: 25px !important;
    padding: 0 !important;
    color: #fff !important;
}

.navbar .container .toggle .cart-dropdown-menu .cart-empty {
    text-align: center;
    padding: 0px 72px;
    margin: 0px;
    font-size: 20px;
    line-height: 70px;
    color:#fff;
}

.gradient-custom .sign-in-form {
    border-radius: 1rem;
    background: #181818;
    padding: 30px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
    border: 2px solid red;
    padding: 10px;
    margin-bottom: 10px;
}

    .gradient-custom .sign-in-form form input {
        background: #020202;
        font-size: 16px !important;
        border: 2px solid transparent;
        -webkit-transition: 0.5s;
        transition: 0.5s;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        -ms-border-radius: 5px;
        -o-border-radius: 5px;
        border-radius: 5px;
        color: var(--color-white);
    }

.gradient-custom .sign-in-form form label {
        font-size: 16px;
        font-weight: 500;
    }


    .gradient-custom .sign-in-form form .show-pwd {
        margin-top: 10px;
        float: left;
    }