/* ----------------------------------------------------------------
[Table of contents]
01. Fonts settings
02. Default styles
03. Sidebar styles
04. Content styles
05. Slider styles
06. Section styles
07. Heading styles
08. Blog & Post styles
09. Project styles
10. Footer styles
11. Contact styles
12. Services styles
13. Navigation styles
14. Team styles
------------------------------------------------------------------- */


/*** 01. Fonts settings (Hind, Oswald, Poppins) ***/

@import url('https://fonts.googleapis.com/css?family=Hind:300,400,500,600,700|Oswald:300,400,500,600,700|Poppins:300,400,500,600,700');

/*** 02. Default styles ***/

.wrap-section #sidebar{
    background: #BA2025 !important;
}
.wrap-section #sidebar .toggle-btn{
     background: #BA2025 !important;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #F5F5F5;
}

::-webkit-scrollbar {
    width: 0px;
    background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb {
    background-color: #BA2025;
    background-image: -webkit-linear-gradient(45deg,
            rgba(255, 255, 255, .2) 25%,
            transparent 25%,
            transparent 50%,
            rgba(255, 255, 255, .2) 50%,
            rgba(255, 255, 255, .2) 75%,
            transparent 75%,
            transparent)
}

html,
body {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    font-smoothing: antialiased;
    font-family: 'Hind', sans-serif;
    font-size: 15px;
    line-height: 1.75em;
    font-weight: 400;
    color: #777;
}


/*** typography ***/


/* headings */

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #101010;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    line-height: 1.5em;
    margin: 0 0 20px 0;
}


/* paragraph */

p {
    font-family: 'Hind', sans-serif;
    font-size: 16px;
    line-height: 1.5em;
    margin: 0 0 20px;
    color: #888;
}


/* lists */

ul {
    list-style-type: none;
}


/* links */

a {
    color: #101010;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

a:hover,
a:active,
a:focus {
    color: #101010;
    outline: none;
    text-decoration: none !important;
}

a:link {
    text-decoration: none;
}

a:focus {
    outline: none;
}

img {
    width: 100%;
    height: auto;
}

.mb-30 {
    margin-bottom: 30px;
}

.small,
small {
    font-size: 80%;
}

b,
strong {
    color: #101010;
}


/*** form element ***/



/*** 03. Sidebar styles ***/

/* #doro-page {
    width: 100%;
    overflow: hidden;
    position: relative;
} */

#doro-aside {
    padding: 20px 30px;
    width: 23%;
    /* position: fixed; */
    bottom: 0;
    top: 0;
    right: 0;
    z-index: 1001;
    background: #101010;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
    scrollbar-width: none;
    /* overflow-y: scroll; */
    scroll-behavior: smooth;
    float: right;
    /* height: 100vh; */
    position: relative;
}

#doro-main-menu {
    /* overflow-y: scroll; */
    scroll-behavior: smooth;
    /* height: 320px; */
}

#doro-main-menu::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #F5F5F5;
}

#doro-main-menu::-webkit-scrollbar {
    width: 8px;
    background-color: #F5F5F5;
}

#doro-main-menu::-webkit-scrollbar-thumb {
    background-color: #f40000;
    background-image: -webkit-linear-gradient(45deg,
            rgba(255, 255, 255, .2) 25%,
            transparent 25%,
            transparent 50%,
            rgba(255, 255, 255, .2) 50%,
            rgba(255, 255, 255, .2) 75%,
            transparent 75%,
            transparent)
}

@media screen and (max-width: 1200px) {
    #doro-aside {
        width: 30%;
    }
}

@media screen and (max-width: 768px) {
    #doro-aside {
        width: 100%;
        -moz-transform: translateX(-100%);
        -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        -o-transform: translateX(-100%);
        transform: translateX(-100%);
        padding-top: 4em;
    }
}

#doro-aside #doro-logo {
    text-align: center;
    font-weight: 500;
    font-size: 40px;
    line-height: 1em;
    text-transform: uppercase;
    margin-bottom: 0px;
    display: block;
    width: 100%;
}

#doro-aside #doro-logo .logo-img {
    width: 200px;
    height: 100%;
    /* background: #fff; */
    border-radius: 6px;
}

#doro-aside #doro-logo span {
    text-align: center;
    font-size: 13px;
    text-transform: uppercase;
    color: #888;
    font-weight: 400;
    letter-spacing: 3px;
}

#doro-logo-footer {
    text-align: center;
    font-weight: 400;
    font-size: 22px;
    text-transform: uppercase;
    margin-bottom: 0;
    display: block;
    width: 100%;
}

@media screen and (max-width: 768px) {
    #doro-aside #doro-logo {
        margin-bottom: 60px;
    }
}

#doro-aside #doro-logo a {
    display: inline-block;
    text-align: center;
    color: #fff;
    letter-spacing: 3px;
}

#doro-logo-footer a {
    display: inline-block;
    text-align: center;
    color: #fff;
}

#doro-aside #doro-logo a span {
    display: block;
    margin-top: 0px;
    text-align: center;
}

#doro-aside #doro-main-menu ul {
    text-align: left;
    margin: 0;
    padding: 0;
}

@media screen and (max-width: 768px) {
    #doro-aside #doro-main-menu ul {
        margin: 0 0 30px 0;
    }
}

#doro-aside #doro-main-menu ul li {
    margin: 15px 0 15px 0;
    padding: 0 0 10px 0;
    list-style: none;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5em;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 1px solid #202120;
    position: relative;
}

#doro-aside #doro-main-menu ul li a {
    color: #888;
    text-decoration: none;
    /* display: -webkit-box; */
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;

    /* padding: 0; */
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

#doro-aside #doro-main-menu ul li a:hover {
    text-decoration: none;
    color: #fff;
}

#doro-aside #doro-main-menu ul li.doro-active a {
    color: #fff;
}

#doro-aside #doro-main-menu ul li.doro-active a:after {
    visibility: visible;
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -o-transform: scaleX(1);
    transform: scaleX(1);
}

#doro-aside .doro-footer {
    /* position: absolute; */
    bottom: 30px;
    right: 0;
    left: 0;
    font-size: 15px;
    text-align: center;
    font-weight: 400;
    color: #777;
    /* padding: 30px; */
}


/* footer */

.doro-footer p {
    margin-bottom: 0;
    color: #999;
}

.doro-footer a {
    color: #fff;
}

@media screen and (max-width: 768px) {
    #doro-aside .doro-footer {
        position: relative;
        padding-top: 90px;
    }
}

#doro-aside .doro-footer span {
    display: block;
}

#doro-aside .doro-footer ul {
    padding: 0 0 5px 0;
    margin: 0 0 5px 0;
}

#doro-aside .doro-footer ul li {
    padding: 0;
    margin: 0;
    display: inline;
    list-style: none;
}

#doro-aside .doro-footer ul li a {
    color: #101010;
    padding: 2px;
}

#doro-aside .doro-footer ul li a:hover,
#doro-aside .doro-footer ul li a:active,
#doro-aside .doro-footer ul li a:focus {
    text-decoration: none;
    outline: none;
    color: #101010;
}


/*** 04. Content styles ***/

#doro-main {
    width: 100%;
    float: left;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    position: fixed;
}

@media screen and (max-width: 1200px) {
    #doro-main {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    #doro-main {
        width: 100%;
    }
}

#doro-hero {
    min-height: 560px;
    background: #fff url(../images/loader.gif) no-repeat center center;
    width: 100%;
    float: left;
    margin-bottom: 0;
    clear: both;
}

#doro-hero .btn {
    font-size: 24px;
}

#doro-hero .btn.btn-primary {
    padding: 15px 30px !important;
}


/*** 05. Slider styles ***/

#doro-hero .flexslider {
    border: none;
    z-index: 1;
    margin-bottom: 0;
}

#doro-hero .flexslider .slides {
    position: relative;
    /* overflow: hidden; */
}

#doro-hero .flexslider .slides li {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom center;
    position: relative;
    min-height: 400px;
}

#doro-hero .flexslider .flex-control-nav {
    bottom: 20px;
    z-index: 1000;
    right: 20px;
    float: right;
    width: auto;
}

#doro-hero .flexslider .flex-control-nav li {
    display: block;
    margin-bottom: 6px;
}

#doro-hero .flexslider .flex-control-nav li a {
    background: #fff;
    -webkit-box-shadow: none;
    box-shadow: none;
    width: 8px;
    height: 8px;
    cursor: pointer;
}

#doro-hero .flexslider .flex-control-nav li a.flex-active {
    cursor: pointer;
    background: #101010;
}

#doro-hero .flexslider .flex-direction-nav {
    display: none;
}

#doro-hero .flexslider .slider-text {
    display: table;
    opacity: 0;
    min-height: 500px;
    padding: 0;
    z-index: 9;
}

#doro-hero .flexslider .slider-text>.slider-text-inner {
    display: table-cell;
    vertical-align: middle;
    min-height: 700px;
    padding: 20px;
    position: relative;
}

#doro-hero .flexslider .slider-text>.slider-text-inner .desc {
    position: absolute;
    bottom: 0px;
    left: 0;
    padding: 20px;
    background: transparent;
}

@media screen and (max-width: 768px) {
    #doro-hero .flexslider .slider-text>.slider-text-inner {
        text-align: center;
    }
}

#doro-hero .flexslider .slider-text>.slider-text-inner h1,
#doro-hero .flexslider .slider-text>.slider-text-inner h1 {
    font-size: 40px;
    line-height: 1.5;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media screen and (max-width: 768px) {
    #doro-hero .flexslider .slider-text>.slider-text-inner h1 {
        font-size: 30px;
    }
}

#doro-hero .flexslider .slider-text>.slider-text-inner .heading-section {
    font-size: 50px;
}

@media screen and (max-width: 768px) {
    #doro-hero .flexslider .slider-text>.slider-text-inner .heading-section {
        font-size: 30px;
    }
}

#doro-hero .flexslider .slider-text>.slider-text-inner p {
    margin-bottom: 0;
}

@media screen and (max-width: 768px) {
    #doro-hero .flexslider .slider-text>.slider-text-inner .btn {
        width: 100%;
    }
}

body.offcanvason {
    /* overflow-x: hidden; */
}

body.offcanvason #doro-aside {
    -moz-transform: translateX(0);
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    width: 100%;
    z-index: 999;
    position: fixed;
}

body.offcanvason #doro-main,
body.offcanvason .doro-nav-toggle {
    top: 0;
    left: 45px;
    -moz-transform: translateX(-57%);
    -webkit-transform: translateX(-57%);
    -ms-transform: translateX(-57%);
    -o-transform: translateX(-57%);
    transform: translateX(-57%);
}

body.offcanvason .doro-nav-toggle1 {
    top: 0;
    -moz-transform: translateX(-61%);
    -webkit-transform: translateX(-61%);
    -ms-transform: translateX(-61%);
    -o-transform: translateX(-61%);
    transform: translateX(-61%);
}





/*** 13. Navigation styles ***/

.doro-nav-toggle {
    cursor: pointer;
    text-decoration: none;
}

.doro-nav-toggle.active i::before,
.doro-nav-toggle.active i::after {
    background: #fff;
}

.doro-nav-toggle.dark.active i::before,
.doro-nav-toggle.dark.active i::after {
    background: #101010;
}

.doro-nav-toggle:hover,
.doro-nav-toggle:focus,
.doro-nav-toggle:active {
    outline: none;
    border-bottom: none !important;
}

.doro-nav-toggle i {
    position: relative;
    display: -moz-inline-stack;
    display: inline-block;
    zoom: 1;
    width: 20px;
    height: 1px;
    left: 25%;
    color: #fff;
    font: bold 14px/.4 Helvetica;
    text-transform: uppercase;
    text-indent: -55px;
    background: #fff;
    -webkit-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;
    top: -2px;
}

.doro-nav-toggle i::before,
.doro-nav-toggle i::after {
    content: '';
    width: 20px;
    height: 1px;
    background: #fff;
    position: absolute;
    left: 0;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}

.doro-nav-toggle.dark i {
    position: relative;
    color: #101010;
    background: #101010;
    -webkit-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;
}

.doro-nav-toggle.dark i::before,
.doro-nav-toggle.dark i::after {
    background: #101010;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}

.doro-nav-toggle i::before {
    top: -7px;
}

.doro-nav-toggle i::after {
    bottom: -7px;
}

.doro-nav-toggle:hover i::before {
    top: -10px;
}

.doro-nav-toggle:hover i::after {
    bottom: -10px;
}

.doro-nav-toggle.active i {
    background: transparent;
}

.doro-nav-toggle.active i::before {
    top: 0;
    -webkit-transform: rotateZ(45deg);
    -moz-transform: rotateZ(45deg);
    -ms-transform: rotateZ(45deg);
    -o-transform: rotateZ(45deg);
    transform: rotateZ(45deg);
}

.doro-nav-toggle.active i::after {
    bottom: 0;
    -webkit-transform: rotateZ(-45deg);
    -moz-transform: rotateZ(-45deg);
    -ms-transform: rotateZ(-45deg);
    -o-transform: rotateZ(-45deg);
    transform: rotateZ(-45deg);
}

.doro-nav-toggle {
    position: fixed;
    left: 0px;
    top: 0px;
    z-index: 9999;
    cursor: pointer;
    opacity: 1;
    visibility: hidden;
    padding: 12px 10px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    background: #101010;
    margin: 15px 0;
    border-radius: 5px;
}

.doro-nav-toggle p {
    margin-bottom: unset;
}

@media screen and (max-width: 768px) {
    .doro-nav-toggle {
        opacity: 1;
        visibility: visible;
    }
    .doro-nav-toggle {
        padding: 7px 8px;
        border-radius: 0px 10px 10px 0px;
    }
}

.js .animate-box {
    opacity: 0;
}

:root {
    scroll-behavior: auto;
}

/* sticky style */

#sticky_item {
    overflow: hidden;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

#sticky_item.is_stuck {
    margin-top: 10px;
}

@media screen and (max-width: 992px) {
    .sticky-parent {
        clear: both;
        height: inherit !important;
        float: left;
        padding-top: 30px;
    }
}


/*** 10. Footer styles ***/

#doro-footer2 {
    padding: 120px;
    background: #f6f6f6;
}

#doro-footer2 h2 {
    margin: 0 0 20px 0;
    color: #101010;
    font-size: 40px;
    line-height: 30px;
    letter-spacing: 3px;
}

@media screen and (max-width: 768px) {
    #doro-footer2 {
        padding: 100px 30px 80px 30px;
        background: #f6f6f6;
        text-align: center;
    }
}

.doro-lead {
    font-size: 13px;
    line-height: 2em;
}


/* .sub-dropdown-hover{
    position: absolute;
} */
.sub-dropdown-hover {
    height: 200px;
    width: 315px;
}

.crd-img {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 1s;
}

.crd-img img {
    width: 100%;
    height: 100%;
    overflow: hidden;
    transition: all 1s;
    transform: scale(1);
}

.crd-img:hover img {
    transform: scale(1.1);
}

/* .crd-img-p:hover .crd-img{
    transform: scale(1.1);
} */
/* .crd-img-p:hover .crd-img{
    transform: scale(1.1);
} */
.crd-img-p {
    width: 100%;
    height: 100%;
    background-color: #0000006b;
    text-align: center;
    padding-top: 20px;
    /* display:none; */
    position: absolute;
    top: 0;
    left: 0;
}

.crd-img-p h6 {
    color: #fff;
    font-size: 16px;
    margin: 0px;
    border-bottom: 1px solid #fff;
}

.crd-img-p p {
    color: #fff;
    font-size: 12px;
    margin-top: 5px;
    padding: 0 5px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.crd-img-p .read-more-btn {
    color: #fff !important;
    border: 1px solid #fff;
    padding: 4px 10px;
}

/* .crd-img:hover .crd-img-p{
    display: block;
} */
.sub-dropdown-hover {
    display: none;
    transition: all 2s;
}

.menu-list-name li:hover .sub-dropdown-hover {
    display: block;
}

.nav-top-div {
    position: relative;
}

.sub-dropdown-hover {
    position: absolute;
    left: -53%;
    z-index: 999;
    top: 50%;
    transform: translate(-53%, -50%);
    padding: 20px;
}

/* .sub-mr-tp2 {

}
.sub-mr-tp3 {

}
.sub-mr-tp4 {

}
.sub-mr-tp5 {
    margin-top: -80px;
}
.sub-mr-tp6 {
    margin-top: -240px;
}
.sub-mr-tp7 {
    margin-top: -260px;
}
.sub-mr-tp8 {
    margin-top: -280px;
} */
.side-bar-scroll-inner {
    display: none;
}
    
.offcanvason1 .side-bar-scroll {
    /* height: 100vh; */
    height: 100vh;
    overflow-y: scroll;
    z-index: 9;
    position: relative;
    display: block;
}

.offcanvason1 .side-bar-scroll::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #F5F5F5;
}

.offcanvason1 .side-bar-scroll::-webkit-scrollbar {
    width: 5px;
    background-color: #F5F5F5;
}

.offcanvason1 .side-bar-scroll::-webkit-scrollbar-thumb {
    background-color: #BA2025;
    background-image: -webkit-linear-gradient(45deg,
            rgba(255, 255, 255, .2) 25%,
            transparent 25%,
            transparent 50%,
            rgba(255, 255, 255, .2) 50%,
            rgba(255, 255, 255, .2) 75%,
            transparent 75%,
            transparent)
}

#doro-main-menu .login-btn {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-around;
    align-items: center;
}

.font-24px {
    font-size: 24px;
}

.font-35px {
    font-size: 35px;
}

.font-14px {
    font-size: 14px;
}

.gray-icon {
    color: #999;
    background: transparent;
    padding: 6px;
    border-radius: 50%;
}

.white-icon {
    color: #fff;
    background: transparent;
    padding: 6px;
    border-radius: 50%;
}


.black-icon {
    color: #777;
}

hr {
    margin-top: 0px;
    margin-bottom: -20px;
    border: 0;
}