

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Work+Sans:wght@300;400;500;600;700&display=swap');

html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    /*    font-family: 'Work Sans', sans-serif;*/
    font-weight: 400;
    color: #f30908;
    position: relative;
    overflow-x: hidden;
    font-size: 14px;
    line-height: 1.42857143;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

a,
a:visited,
a:focus,
a:active,
a:hover {
    text-decoration: none;
    outline: none;
}

a,
button {
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

button {
    cursor: pointer;
}

button:focus {
    outline: 0;
}

a {
    color: #000;
    font-size: 16px;
}
a:hover {
    color: #03bdf1;
}
h1 {
    font-size: 70px;
    line-height: 80px;
    color: #130F40;
}

h2 {
    font-size: 45px;
    line-height: 55px;
    color: #130F40;
}

h3 {
    font-size: 24px;
    line-height: 34px;
    color: #130F40;
}

h4 {
    font-size: 22px;
    line-height: 27px;
}

h5 {
    font-size: 18px;
    line-height: 28px;
}

h6 {
    font-size: 16px;
    line-height: 26px;
}
p {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    line-height: 26px;
    color: #3c3737;
}

.container {
    max-width: 1240px;
}

.btn-default a {
    display: inline-block;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    background-color: #f30908;
    padding: 14px 30px;
    border-radius: 4px;
    margin-top: 50px
}

.btn-default a:hover {
    background-color: #130f40
}

.overlay {
    position: relative
}

.overlay:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(19, 15, 64, 0.8)
}

.bg-gray {
    background-color: #f7f7f7 !important;
}

.shadow-none {
    -webkit-box-shadow: 0 0 !important;
    box-shadow: 0 0 !important
}

.bg-cover {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover
}


/*--------------------------------------------------------------------
    Preloader
---------------------------------------------------------------------*/
.preloader {
    background-color: #0e1215;
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999999;
}

.preloader .spinner {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 100%;
    -webkit-animation: sk-scaleout 1.0s infinite ease-in-out;
    animation: sk-scaleout 1.0s infinite ease-in-out;
}

@-webkit-keyframes sk-scaleout {
    0% {
        -webkit-transform: scale(0)
    }

    100% {
        -webkit-transform: scale(1.0);
        opacity: 0;
    }
}

@keyframes sk-scaleout {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    100% {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
        opacity: 0;
    }
}

.d-table {
    width: 100%;
    height: 100%
}

/*--------------------------------------------------------------------
    Scroll Area
---------------------------------------------------------------------*/
.scroll-area {
    position: fixed;
    bottom: 30px;
    right: 40px;
    z-index: 1;
    display: none;
}
    .scroll-area i {
        width: 55px;
        height: 55px;
        background-color: #f73859;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        cursor: pointer;
        color: #fff;
        font-size: 21px;
        border-radius: 50%;
        background: -o-linear-gradient(137deg, #f30908 0%, #f75958 100%);
        background: linear-gradient(-47deg, #f30908 0%, #f75958 100%);
    }
    .scroll-area::after, .scroll-area::before {
        content: "";
        left: -20px;
        right: -20px;
        top: -20px;
        bottom: -20px;
        opacity: 0;
        display: block;
        position: absolute;
        border-radius: 50%;
        border: 2px solid #f30908;
        -webkit-animation: iconPulse 1s linear infinite;
        animation: iconPulse 2s linear infinite;
    }
.scroll-area::after {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

@-webkit-keyframes iconPulse{
0% {
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
  opacity: 0;
}
50% {
  opacity: 1;
}
100% {
  opacity: 0;
  -webkit-transform: scale(1);
  transform: scale(1);
}
}

@keyframes iconPulse{
0% {
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
  opacity: 0;
}
50% {
  opacity: 1;
}
100% {
  opacity: 0;
  -webkit-transform: scale(1);
  transform: scale(1);
}
}

.scroll-area i:hover {
    background: #000;
}
/*-------------------------------------------------------------------------------------
    Header
---------------------------------------------------------------------------------------*/
.header-btm-area {
    padding: 20px 0;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    position: fixed;
    background: transparent;
    top: 0;
    right: 0;
    left: 0;
    z-index: 99;
    border-bottom: 1px solid #d0bcdd3d;
}

.main-menu-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.site-logo {
    -ms-flex-preferred-size: 20%;
    flex-basis: 20%;
}

.site-logo img {
    max-width: 160px;
}

.main-menu-area {
    -ms-flex-preferred-size: 55%;
    flex-basis: 55%;
    z-index: 99;
}

.header-cart {
    -ms-flex-preferred-size: 6%;
    flex-basis: 6%;
}

.header-log-reg {
    -ms-flex-preferred-size: 19%;
    flex-basis: 19%;
}

.main-menu-area ul li {
    display: inline-block;
    position: relative;
    padding: 0 10px;
}

    .main-menu-area ul li a {
        display: block;
        padding: 10px 5px;
        font-size: 15px;
        font-weight: 700;
        color: #ffffff;
    }

.main-menu-area ul li a.active {
    color: #fff;
}
        .main-menu-area ul li a:hover {
            color: #f30908;
        }

.main-menu-area .sub-menu {
    position: absolute;
    top: 40px;
    z-index: 1;
    background-color: #ffffff;
    width: 200px;
    text-align: left;
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    opacity: 0;
    visibility: hidden;
    border-top: 2px solid #f30908;
}

.main-menu-area .sub-menu li {
    border-bottom: 1px solid #e6f0fa;
    display: block;
}

.main-menu-area .sub-menu li:last-child {
    border-bottom: 0px;
}

.main-menu-area ul .sub-menu li a {
    font-size: 14px;
    color: #282828;
}

    .main-menu-area ul .sub-menu li a:hover {
        color: #970102;
    }
.main-menu-area ul li:hover ul {
    visibility: visible;
    opacity: 1;
}

.header-cart a {
    color: #130f40;
    font-size: 20px;
    position: relative;
}

.header-cart a:hover {
    color: #FF630E;
}

.header-cart a span {
    position: absolute;
    right: -15px;
    top: -6px;
    background-color: #FF630E;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    border-radius: 50%;
    padding: 1px 5px;
    font-size: 13px;
    width: 18px;
    height: 20px;
    line-height: 20px;
    text-align: center;
}

.header-log-reg ul {
    border-radius: 4px;
    display: inline-block;
    padding: 7px 20px;
    background: -webkit-gradient(linear, left top, left bottom, from(#970102), to(#f30908));
    background: -o-linear-gradient(top, #f53635 0%, #f30908 100%);
    background: linear-gradient(180deg, #f53635 0%, #f30908 100%);
}

.header-log-reg ul li {
    display: inline-block;
    color: #fff;
    padding: 7px 0;
}

.header-log-reg ul li small {
    padding: 0 10px;
}

.header-log-reg ul li a {
    color: #fff;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
}

.header-area.sticky {
    position: fixed;
    z-index: 99;
    width: 100%;
    background-color: #fff;
    top: 0;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    -webkit-box-shadow: 0 0 30px rgba(51, 51, 51, 0.1);
    box-shadow: 0 0 30px rgba(51, 51, 51, 0.1);
}

.header-area.sticky .header-top-area {
    display: none;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

    .header-area.sticky .header-btm-area {
        padding: 16px 0;
        background: #000;
        -webkit-box-shadow: 0 0 30px rgba(51, 51, 51, 0.1);
        box-shadow: 0 0 30px rgba(51, 51, 51, 0.1);
    }
        .header-area.sticky .header-btm-area .mainmenu ul li a {
            color: #00000;
        }
.sidebar-inner {
    position: relative;
    padding: 45px;
}

.sidebar-close {
    position: absolute;
    top: 48px;
    right: 45px;
}

.sidebar-logo {
    padding-bottom: 30px;
    border-bottom: 1px solid #f000;
}
s
.sidebar-logo img {
    max-width: 140px;
}

.sidebar-wrap {
    position: fixed;
    right: -485px;
    top: 0;
    width: 445px;
    height: 100%;
    background: #fff;
    overflow-y: scroll;
    -webkit-box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
    box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
    z-index: 9999999;
    -webkit-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
}

.sidebar-wrap.sidebar-opened {
    right: 0px;
}

.header-toggle-btn a {
    background: #fff;
    width: 30px;
    height: 30px;
    display: block;
    text-align: center;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    border-width: 5px;
    color: #130f40
}

.header-toggle-btn {
    display: none
}

.header-toggle-btn a::before {
    position: absolute;
    content: "";
    height: 46px;
    width: 46px;
    top: 50%;
    border-radius: 6px;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    border: 2px solid #fff;
    -webkit-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
}
.mean-container .mean-nav > ul {
    padding: 0;
    margin: 0;
    width: 100%;
    list-style-type: none;
    display: block !important;
}

.mean-container a.meanmenu-reveal {
    display: none !important;
}

.mean-container .mean-bar {
    padding: 0;
    min-height: auto;
    background: none;
}

.mean-container .mean-nav {
    background: transparent;
    margin-top: 0;
}

.mean-container .mean-nav ul li a {
    width: 100%;
    padding: 10px 0;
    color: #130F40;
    border-top: 1px solid #ebebeb !important;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 700;
}

.mean-container .mean-nav > ul > li:first-child > a {
    border-top: 0 !important;
}

.mean-container .mean-nav ul li a.mean-expand:hover {
    background: transparent;
}

.sidebar-close-btn {
    width: 40px;
    height: 40px;
    border: 1px solid;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    font-size: 16px;
}

.mean-container .mean-nav ul li li a {
    opacity: 1;
}

.mean-container .mean-nav ul li a.mean-expand {
    margin-top: -6px;
    font-size: 24px !important;
}

.mobile-menu.mean-container {
    overflow: hidden;
}

.sidebar-content .search-form {
    margin: 20px 0 25px;
}

.sidebar-content .search-form span {
    position: absolute;
    right: 20px;
    top: 14px;
    font-size: 20px;
    color: #a19e9e;
}

.sidebar-content .contact-info {
    padding: 0;
}

.sidebar-content .contact-info li {
    margin: 0;
    padding: 6px 0
}

.sidebar-content .social-icon li {
    display: inline-block;
}

.sidebar-content .social-icon li a {
    margin: 0 10px 0 0;
}

.sidebar-content .social-icon {
    margin: 20px 0 30px;
}

.sidebar-content .social-icon li span {
    font-family: 'Poppins', sans-serif;
    margin-right: 10px;
    font-size: 16px
}

.sidebar-content .header-log-reg {
    margin-bottom: 30px;
}

.default-btn {
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    background: none;
    border: none;
    position: relative;
    padding: 18px 29px;
    border-radius: 13px;
    font-weight: 500;
    font-size: 16px;
}
.default-btn:hover{ 
    color: #fff; 
}
.default-btn:before,
.default-btn:after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    -webkit-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.default-btn:hover:before{
    background: rgba(255, 255, 255, 0.7);
    left: 60%;
    right: 60%;
}
.default-.btn:hover:after{
  background: rgba(255, 255, 255, 0.7);
    top: 60%;
    bottom: 60%;
}

.default-btn2{
    border: 1px solid #fff;
}

/*-------------------------------------------------------------------------------------
    banner
---------------------------------------------------------------------------------------*/
.hero-area{
    position: relative;
    display: block;
    z-index: 1;
    overflow: hidden;
}
.hero-area .container {
    padding-top: 322px;
    padding-bottom: 220px;
}
 .main-slider__content {
    position: relative;
    display: block;
    text-align: left;
}
 .main-slider__content h2 {
    font-size: 70px;
    color: #fff;
    line-height: 70px;
    font-weight: 700;
    margin-bottom: 32px;
}
.main-slider__content p{
    color:#fff;
    margin-bottom: 30px;
}
.main-slider-three-bg {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-blend-mode: color-burn;
    background-color: #970102;
    z-index: -1;
}
.main-slider-three__shape-1 {
    position: absolute;
    bottom: 0;
    right: 0;
    mix-blend-mode: color-dodge;
    -webkit-animation: fa-spin 10s ease infinite;
    animation: fa-spin 10s ease infinite;
}
.main-slider-three__img {
    position: absolute;
    bottom: -14px;
    right: 125px;
    opacity: 1;
}
.main-slider-three__shape-1 img {
    width: auto;
}
@-webkit-keyframes fa-spin{
    0% {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
100% {
  -webkit-transform: rotate(1turn);
  transform: rotate(1turn);
}
}
@keyframes fa-spin{
    0% {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
100% {
  -webkit-transform: rotate(1turn);
  transform: rotate(1turn);
}
}

.main-slider-three__shadow {
    position: absolute;
    bottom: 0;
    right: 0;
    mix-blend-mode: color-dodge;
}
.main-slider-three__shadow img {
    width: auto;
}
.zoominout-2 {
    -webkit-animation-name: zoomInOut;
            animation-name: zoomInOut;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    -webkit-animation-name: zoomInOut2;
    -webkit-animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease-in-out;
    -moz-animation-name: zoomInOut2;
    -moz-animation-duration: 3s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: ease-in-out;
    -ms-animation-name: zoomInOut2;
    -ms-animation-duration: 3s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: ease-in-out;
    -o-animation-name: zoomInOut2;
    -o-animation-duration: 3s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: ease-in-out;
}
@-webkit-keyframes zoomInOut{
 0% {
  -webkit-transform: rotate(0deg) scale(0.7);
  transform: rotate(0deg) scale(0.7);
  opacity: 0;
}
50% {
  -webkit-transform: rotate(0deg) scale(1);
  transform: rotate(0deg) scale(1);
  opacity: 1;
}
100% {
  -webkit-transform: rotate(0deg) scale(0.7);
  transform: rotate(0deg) scale(0.7);
  opacity: 0;
}
}
@keyframes zoomInOut{
 0% {
  -webkit-transform: rotate(0deg) scale(0.7);
  transform: rotate(0deg) scale(0.7);
  opacity: 0;
}
50% {
  -webkit-transform: rotate(0deg) scale(1);
  transform: rotate(0deg) scale(1);
  opacity: 1;
}
100% {
  -webkit-transform: rotate(0deg) scale(0.7);
  transform: rotate(0deg) scale(0.7);
  opacity: 0;
}
}

@-webkit-keyframes zoomInOut2{
 0% {
  -webkit-transform: rotate(0deg) scale(0.7);
  transform: rotate(0deg) scale(0.7);
  opacity: 0;
}
50% {
  -webkit-transform: rotate(0deg) scale(1);
  transform: rotate(0deg) scale(1);
  opacity: 1;
}
100% {
  -webkit-transform: rotate(0deg) scale(0.7);
  transform: rotate(0deg) scale(0.7);
  opacity: 0;
}
}

@keyframes zoomInOut2{
 0% {
  -webkit-transform: rotate(0deg) scale(0.7);
  transform: rotate(0deg) scale(0.7);
  opacity: 0;
}
50% {
  -webkit-transform: rotate(0deg) scale(1);
  transform: rotate(0deg) scale(1);
  opacity: 1;
}
100% {
  -webkit-transform: rotate(0deg) scale(0.7);
  transform: rotate(0deg) scale(0.7);
  opacity: 0;
}
}

.social-media {
    position: absolute;
    right: -100px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    z-index: 1;
}
.social-media .social-list {
    list-style: none;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
        transform: rotate(-90deg);
}
.social-media .social-list li {
    display: inline-block;
}
.social-media .social-list li a {
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.02em;
    text-transform: capitalize;
    color: #FFFFFF;
    display: inline-block;
    line-height: 1;
    padding: 0 24px;
    border-right: 1px solid white;
    -webkit-transition: all .5s ease-out 0s;
    -o-transition: all .5s ease-out 0s;
    transition: all .5s ease-out 0s;
}
.social-media .social-list li:last-child a {
    border: none;
}
/*-------------------------------------------------------------------------------------
    clientSection
---------------------------------------------------------------------------------------*/
.clientSection {
    position: relative;
    background: #ff4800;
    margin-left: 225px;
    padding-right: 225px;
    padding-top: 63px;
    padding-bottom: 53px;
    border-radius: 100px 0 0 100px;
    margin-top: -80px;
    z-index: 2;
    background: -webkit-gradient(linear, left top, right top, color-stop(50%, #000000), to(#1b0102));
    background: -o-linear-gradient(left, #000000 50%, #1b0102 100%);
    background: linear-gradient(90deg, #000000 50%, #1b0102 100%);
}
.clientSection .client-slider.owl-carousel a img{
   max-width: 175px;
}



/*-------------------------------------------------------------------------------------
   service-area
---------------------------------------------------------------------------------------*/

.services-area3.sec-mar {
    padding-top: 110px;
    padding-bottom: 80px;
    background: -webkit-gradient(linear, left top, left bottom, from(#f8fcff), to(white));
    background: -o-linear-gradient(top, #f8fcff 0%, white 100%);
    background: linear-gradient(180deg, #f8fcff 0%, white 100%);
}
.techzi-service {
    position: relative;
    padding: 40px;
    background-color: #fff;
    -webkit-box-shadow: 0 0 50px rgba(53,51,83,.06);
            box-shadow: 0 0 50px rgba(53,51,83,.06);
    z-index: 1;
    margin-bottom: 30px;
}
.techzi-service::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    height: 0%;
    width: 0%;
    border: 1px solid rgb(0, 149, 225);
    -webkit-transition: all 1s ease-out 0s;
    -o-transition: all 1s ease-out 0s;
    transition: all 1s ease-out 0s;
    opacity: 0;
    z-index: -1;
}
.techzi-service.border {
    border: 1px solid rgb(0, 149, 225) !important;
    -webkit-transition: all 1s ease-out 0s;
    -o-transition: all 1s ease-out 0s;
    transition: all 1s ease-out 0s;
}
.techzi-service span {
    font-weight: 700;
    font-size: 60px;
    opacity: .5;
    -webkit-text-stroke: 1px #b3b3b3;
    -webkit-text-fill-color: transparent;
    line-height: 60px;
    position: absolute;
    right: 40px;
    top: 30px;
    -webkit-transition: all 1s ease-out 0s;
    -o-transition: all 1s ease-out 0s;
    transition: all 1s ease-out 0s;
}
.techzi-service .techzi-icon {
    margin-bottom: 30px;
}
.techzi-service .techzi-icon i img {
    height: 70px;
    -webkit-filter: grayscale(100%);
            filter: grayscale(100%);
    -webkit-transition: all 1s ease-out 0s;
    -o-transition: all 1s ease-out 0s;
    transition: all 1s ease-out 0s;
}
.techzi-service p {
    font-size: 16px;
    color: #454545;
    margin-bottom: 15px;
}
.techzi-service a {
    font-weight: 600;
    font-size: 18px;
    display: inline-block;
    color: #454545;
    -webkit-transition: all 1s ease-out 0s;
    -o-transition: all 1s ease-out 0s;
    transition: all 1s ease-out 0s;
}
.techzi-service:hover::before {
    height: 100%;
    width: 100%;
    opacity: 1;
}
.techzi-service:hover.border::before {
    opacity: 0;
}


/*work-procss*/
.work-process-area{
    padding-top: 100px;
    padding-bottom: 110px;
    position: relative;
    overflow: hidden;
    background: #f9f9f9;
}
.work-process-line {
    margin-bottom: -95px;
}
.work-process-item {
    margin-bottom: 30px;
}
    .work-process-item .number {
        width: 80px;
        height: 80px;
        color: white;
        font-size: 24px;
        -webkit-transition: 0.5s;
        -o-transition: 0.5s;
        transition: 0.5s;
        font-weight: 700;
        line-height: 60px;
        margin-left: 40px;
        text-align: center;
        border-radius: 50%;
        margin-bottom: 30px;
        -webkit-box-shadow: 3px 0 60px rgba(103, 77, 243, 0.2);
        box-shadow: 3px 0 60px rgba(103, 77, 243, 0.2);
        border: 10px solid #fff;
        font-family: "Poppins", sans-serif;
        background: #f30908;
    }
.work-process-item .content {
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    position: relative;
    background: #EAEAF0;
    padding: 35px 28px 16px 30px;
    background: white;
    -webkit-box-shadow: 3px 0 60px rgba(103, 77, 243, 0.1);
    box-shadow: 3px 0 60px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
}
.work-process-item .content p{
    font-size: 14px;
    color: #000;
}
.work-process-item .content::before {
    position: absolute;
    content: '';
    left: 33px;
    bottom: 100%;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    border-right: 22px solid transparent;
    border-bottom: 15px solid white;
}
    .work-process-item:hover .content::before {
        border-bottom-color: #970102;
    }
    .work-process-item:hover .content {
        background: #970102;
        color: #ffff;
    }
.work-process-item:hover .content p{
    color: #fff;
}
.work-process-item:hover .number {
    color: #fff;
    background: #282d28;
}
.mt-40, .my-40 {
    margin-top: 40px;
}
.mt-10, .my-10 {
    margin-top: 10px;
}
.mt-50, .my-50 {
    margin-top: 50px;
}
.section-title {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-bottom: 72px;
}
    .section-title h2 {
        position: relative;
        display: inline-block;
        font-weight: 500;
        font-size: 15px;
        line-height: .9;
        text-transform: uppercase;
        margin-bottom: 8px;
        padding: 6px 16px;
        border-radius: 18px;
        color: #f30908;
    }
    .section-title p {
        font-size: 45px;
        line-height: 60px;
        margin: 0 0 33px;
        color: #141414;
        font-weight: bold;
    }
    .section-title h2::before, .section-title h2::after {
        content: '';
        width: 34px;
        height: 2px;
        position: absolute;
        top: 11.5px;
        background: #f30908;
    }
    .section-title h2::before {
        border-left-color: #f30908;
        right: -22px;
    }
.section-title h2::after {
    border-right-color: #0095FF;
    left: -22px;
}
/***********************************************************
  Contact Section
************************************************************/
.contact__top {
  padding-top: 120px;
  padding-bottom: 60px;
  background: #fff;
}
.contact__top .address {
    background: #FFF;
    border-radius: 10px;
    padding: 50px 30px;
    text-align: center;
    border: 1px solid #fff;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-box-shadow: 0 0 50px rgba(53,51,83,.06);
            box-shadow: 0 0 50px rgba(53,51,83,.06);
}
.contact__top .address:hover .ion__outer {
    background: #2a2928;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.contact__top .address .ion__outer {
  width: 75px;
  height: 75px;
  background: #0095FF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto 35px;
  border-radius: 50%;
  color: #FFFFFF;
  font-size: 25px;
}

.contact__top .address .address__text span {
    font-weight: 700;
    font-size: 17px;
    line-height: 19px;
    color: #0e1215;
}
.contact__top .address .address__text p {
    padding-top: 15px;
    position: relative;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 29px;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    color: #0e1215;
}
.contact__top .address .address__text p a {
    color: #0e1215;
}

.mn-contact-area {
    overflow: hidden;
    position: relative;
    padding-top: 95px;
    padding-bottom: 100px;
}
.mn-contact-bg {
    position: absolute;
    right: 390px;
    top: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
}

.mn-contact-head-icon {
    position: absolute;
    top: 0;
    right: 188px;
    background: #f30908;
    width: 190px;
    height: 180px;
    display: -ms-grid;
    display: grid;
    place-items: center;
}
.mn-contact-head-icon img {
    max-width: 103px;
    width: 100%;
}
.mn-contact-img-icon {
    position: absolute;
    right: 0;
    bottom: 30px;
    width: 160px;
    height: 160px;
    display: -ms-grid;
    display: grid;
    place-items: center;
    background: #f30908;
}
.mn-contact-img {
    position: absolute;
    right: 0;
    top: 180px;
    border: 10px solid #fff;
    border-right: 0;
}
.mn-contact-img-icon img{
    max-width: 90px;
    width: 100%;
}
.form-control {
    display: block;
    width: 100%;
    padding: 15px 15px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #fff;
    background-color: #0e1215;
    border: 1px solid #ced4da;
    border-radius: 6px;
}
.form-control:focus {
    color: #fff;
    background-color: #171819;
    border: 1px solid #0095FF;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.icon-box i{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #0095FF;
    line-height: 60px;
    text-align: center;
    color: #fff;
    margin-right: 24px;
    font-size: 24px;
}
.contact-single {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.contact-single a {
  color: #615978;
  text-transform: initial;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.content-wrapper h4{
    color:#fff;
}
.content-wrapper a{
    color:#fff;
}
.current ul li h6 i {
    color: #b70c17;
}
.contact-single address {
  margin-bottom: 0;
}
.contact-single h3 {
  font-size: 36px;
  margin-bottom: 48px;
}
.contact_add a {
    font-weight: bold;
    color: #f30908;
}
/***********************************************************
*testimonail
************************************************************/

.newsletter {
    background-image: url(../img/banner/sb.jpg);
    background-size: cover;
    background-position: center center;
    position: relative;
    z-index: 1;
    padding: 195px 0;
}
.newsletter::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background: -o-linear-gradient(193.69deg,#2704ac 0.87%,#000 88.66%);
    background: linear-gradient(256.31deg,#2704ac 0.87%,#000 88.66%);
    opacity: .9;
    z-index: -1;
}
.subscribes {
    max-width: 590px;
    margin: 0 auto;
    text-align: center;
}
.subscribes span {
    font-weight: 600;
    font-size: 20px;
    text-align: center;
    text-transform: capitalize;
    color: #fff;
    display: block;
    margin-bottom: 15px;
}
.subscribes h1 {
    font-weight: 700;
    font-size: 65px;
    text-align: center;
    text-transform: uppercase;
    color: #e4e4e4;
    margin-bottom: 20px;
    line-height: 1;
}
.subscribes h2 {
    font-weight: 700;
    font-size: 55px;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    -webkit-text-stroke: 1px #fff;
    -webkit-text-fill-color: transparent;
    margin-bottom: 30px;
}
.subscribe-form {
    position: relative;
}
.subscribe-form form input {
    width: 100%;
    height: 70px;
    background: #fff;
    border-radius: 48px;
    border: none;
    color: #4f4f4f;
    font-size: 14px;
}
.subscribe-form form input[type="email"] {
    padding: 0 160px 0 30px;
}
.subscribe-form form input[type="submit"] {
    position: absolute;
    right: 5px;
    height: 60px;
    top: 5px;
    width: 150px;
    border-radius: 48px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 1.1px;
    background-color: #6e11c8;
    -webkit-transition: all .5s ease-out 0s;
    -o-transition: all .5s ease-out 0s;
    transition: all .5s ease-out 0s;
    cursor: pointer;
}
a:focus, input:focus, textarea:focus, button:focus {
    outline: 0 solid;
}
/***********************************************************
*testimonail-area
************************************************************/

.testimonail-area {
    background-color: #f8fcff;
    overflow: hidden;
}
.our-clients {
    padding-left: 40px;
}
.test-title {
    padding-bottom: 39px;
}
.test-title span {
    padding-bottom: 8px;
    display: inline-block;
    color: #6e11c8;
    position: relative;
}
.test-title span::before {
    position: absolute;
    left: 0;
    bottom: 0;
    content: '';
    width: 83px;
    height: 2px;
    background: #6e11c8;
}
.test-title h2 {
    color: #201c1c;
    font-family: 'Work Sans', sans-serif;
}
.testimonial-single{
    position: relative;
}
.testimonial-single h5 {
    font-size: 17px;
    color: #1e1840;
    font-weight: 600;
    margin: 0 0 7px;
}
.quotation {
    font-size: 17px;
    line-height: 30px;
    color: #6a6a6a;
    font-weight: 300;
    font-style: italic;
    margin: 0 0 40px;
    width: 80%;
}
.testimonila_author {
    position: relative;
    padding-top: 23px;
    padding-left: 138px;
    min-height: 105px;
}
.testimonila_author img {
    height: 105px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0;
    max-width: 105px;
    width: 100%;
}
.testimonila_author span {
    display: block;
    line-height: .8;
    font-size: 14.77px;
    color: #828282;
}
.g-0, .gy-0 {
    --bs-gutter-y: 0;
}
.g-0, .gx-0 {
    --bs-gutter-x: 0;
}
.container-testimonial {
  margin-left: auto;
  margin-right: auto;
  padding-left: .75rem;
  padding-left: var(--bs-gutter-x,.75rem);
  padding-right: .75rem;
  padding-right: var(--bs-gutter-x,.75rem);
  width: 100%;
}
.p-0{
    padding: 0;
}
.testimonial-slider.owl-carousel .owl-nav {
    text-align: start;
    margin-top: 45px;
}
.testimonial-slider.owl-carousel .owl-nav .owl-prev, 
.testimonial-slider.owl-carousel .owl-nav .owl-next {
    text-align: center;
    font-size: 13.49px;
    line-height: 48px;
    width: 48px;
    height: 48px;
    margin-right: 10px;
    background: #fff;
    border: 1px solid #ededed;
    border-radius: 26%;
    color: #6e11c8;
    outline: none;
    z-index: 1;
    display: inline-block;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    font-size: 19px;
}
/***********************************************************
*tabs
************************************************************/

.tabSection01 {
    position: relative;
    padding: 0 0 96px;
    margin-top: -23px;
    z-index: 2;
}
.choose-img img{
    width: 100%;
    height: auto;
}
.chooseTab {
    position: relative;
    margin: 0 0 60px;
    padding: 0;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.chooseTab li {
    width: 33.333333%;
}
.chooseTab li a {
    display: inline-block;
    width: 100%;
    background: #eef4fc;
    position: relative;
    text-align: center;
    font-family: 'Work Sans', sans-serif;
    font-size: 22px;
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    padding: 43px 20px;
}
.chooseTab li a:hover, .chooseTab li a.active {
    background: #fff;
    -webkit-box-shadow: 0 10px 32px 0 rgba(0,0,0,.07);
    box-shadow: 0 10px 32px 0 rgba(0,0,0,.07);
}
    .chooseTab li a::after {
        position: absolute;
        left: 60px;
        bottom: 0;
        width: 2px;
        height: 60px;
        background: #970102;
        content: '';
        visibility: hidden;
        opacity: 0;
        -webkit-transition: all ease .3s;
        -o-transition: all ease .3s;
        transition: all ease .3s;
    }
.chooseTab li a:hover::after, .chooseTab li a.active::after {
    visibility: visible;
    opacity: 1;
    bottom: -44px;
}
.tab-content > .tab-pane {
    -webkit-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
    -webkit-transform: scale(.9,.9) translate(0px);
        -ms-transform: scale(.9,.9) translate(0px);
            transform: scale(.9,.9) translate(0px);
}
.tab-content > .tab-pane.show.active {
    -webkit-transform: scale(1) translateY(0px);
        -ms-transform: scale(1) translateY(0px);
            transform: scale(1) translateY(0px);
}
.chooseTabCon {
    position: relative;
}
.chooseTabCon .secTitle {
    line-height: 65px;
    margin: 82px 0 19px;
}
.chooseTabCon p {
    margin-bottom: 52px;
    color: #5f5f5f;
    padding-right: 60px;
}
/***********************************************************
about area
************************************************************/

.about-area{
    padding-top: 80px;
    padding-bottom: 70px;

}

.about-section-subtitle {
    display: inline-block;
    font-size: 19px;
    font-weight: 500;
    color:#282828;
    padding-left: 27px;
    position: relative;
    margin-bottom: 8px;
    text-transform: uppercase;
}
    .about-section-subtitle::before {
        position: absolute;
        content: "";
        top: 50%;
        left: 0;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        width: 12px;
        height: 12px;
        background-color: #f30908;
        border-radius: 50%;
    }
.about-section-title {
    font-size: 40px;
    font-weight: 700;
    color: #141414;
    text-transform: capitalize;
    margin-bottom: 15px;
}
.about-content-list {
    margin-bottom: 15px;
}
    .about-content-list ul li {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        line-height: 1;
        margin-bottom: 20px;
        gap: 12px;
        font-size: 17px;
        color: #141414;
    }
    .about-content-list ul li i {
        color: #970102;
    }

.service-item {
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    padding: 10px 21px 7px;
    -webkit-box-shadow: 3px 0 60px rgba(80, 70, 136, 0.1);
            box-shadow: 3px 0 60px rgba(80, 70, 136, 0.1);
    border: 1px solid #6e11c830;
}
.service-item .icon {
    margin-bottom: 25px;
}
.service-item .icon {
    margin-bottom: 4px;
}
.service-item p{
    color: #000;
}
.about-info-inner {
    padding: 14px 20px 32px;
    background: #f4f5f9;
    position: relative;
}
.section-text{
    font-size: 16px;
    margin-bottom: 0;
    color: #282828;
}
.about-info-inner-btn {
    position: absolute;
    left: 20px;
    bottom: -20px;
    width: 40px;
    height: 40px;
    background: #6E11C8;
    text-align: center;
    line-height: 40px;
    color: #fff;
    border-radius: 50%;
}
.about-content-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
    border-top: 1px solid #dddddd;
    padding-top: 20px;
}
.about-content-admin {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 30px;
}
.about-content-admin-img {
    width: 80px;
    height: 80px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 80px;
            flex: 0 0 80px;
    border: 4px solid #0095FF;
}
.about-content-admin-info .ns-about-admin-title {
    font-size: 22px;
    margin-bottom: 7px;
}
.about-content-admin-info span {
    font-size: 17px;
    display: inline-block;
}
.about-content-admin-signature img {
    max-width: 216px;
    width: 100%;
}
.icon-img {
    max-width: 86px;
    width: 100%;
    height: auto;
    position: absolute;
    top: 17%;
    right: 36%;
}
.pt-20{
    padding-top:30px;
}
.mb-20{
    margin-bottom:30px;
}
.about-content-info {
    margin-bottom: 27px;
}
.hotline {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #f5f5f5;
    margin-bottom: 12px;
    padding: 9px 17px;
    border-radius: 15px;
}
    .hotline > i {
        width: 55px;
        height: 55px;
        line-height: 51px;
        border-radius: 50%;
        text-align: center;
        margin-right: 15px;
        color: #fff;
        border: 2px solid #f30908;
        background: #f30908;
    }
.hotline .content {
    line-height: 1.65;
}
.hotline .content span {
    font-weight: 500;
}
.hotline .content a {
    font-size: 14px;
    font-weight: 700;
    color: #282828;
}
.about-left img{
    width: 100%;
} 
.about-left-text {
    position: absolute;
    top: 95px;
    right: 10%;
}
    .about-left-text h5 {
        font-weight: bold;
        text-align: start;
        color: #ffff;
        text-shadow: #130f40 1px 0px 2px;
        font-size: 22px;
    }
    .about-left-text h4 {
        font-size: 26px;
        background-color: #970102;
        color: #fff;
        font-weight: 700;
        display: inline-block;
        position: relative;
        z-index: 1;
        margin-bottom: 0;
        padding: 12px 38px;
    }
        .about-left-text h4::after {
            position: absolute;
            content: "";
            top: 0;
            right: -20px;
            -webkit-clip-path: polygon(0 0, 0 100%, 100% 50%);
            clip-path: polygon(0 0, 0 100%, 100% 50%);
            width: 20px;
            height: 51px;
            background-color: #970102;
            z-index: 1;
        }
/*-------------------------------------------------------------------------------------
    Page Title Area
---------------------------------------------------------------------------------------*/

.page-banner-area {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 245px 0 160px;
    position: relative;
}

.page-banner-area:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color:#0036d8;
    opacity: 0.7;
}
.breadcrumb-shape {
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 225px;
    background-color: transparent;
}
.breadcrumb-section::after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-color: #0036d8;
    opacity: 0.6;
    content: '';
}


.breadcrumb-shape svg {
    width: calc(125% + 1.3px);
    height: 225px;
    display: block;
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
        transform: translateX(-50%);
}
 .breadcrumb-shape svg path {
    fill: #ffffff;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
        transform-origin: center;
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
}
.page-content h1 {
    font-size: 60px;
    line-height: 70px;
    margin-bottom: 25px;
    color: #fff;
    font-weight: 700;
}

.page-content p {
    color: #fff;
}

.page-content a {
    color: #fff;
    padding-right: 10px;
}

.page-content span {
    padding-right: 10px;
}
.page-content span {
    padding-right: 10px;
}

/*team area********************************/
.section-padding{
    padding: 80px 0;
}
.team-area-top {
    position: relative;
    padding: 92px 0 267px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}
.page-banner-area::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #0036d8;
    opacity: 0.3;
}
.team-bottom {
    position: relative;
    margin: -294px 0 0;
    padding: 0 0 120px;
    z-index: 9;
}
.team-item {
    position: relative;
    overflow: hidden;
}
.team-item .team-img img {
    min-height: 350px;
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
}
.team-content {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
}
.team-content-info {
    background-color: rgb(255, 255, 255);
    opacity: 0.89;
    padding: 20px 40px 20px 40px;
    border-top: 3px solid #0095FF;
    position: absolute;
    left: 0;
    bottom: -105px;
    right: 0;
    z-index: 1;
    -webkit-transition: all 0.4s linear 0s;
    -o-transition: all 0.4s linear 0s;
    transition: all 0.4s linear 0s;
    border-top-right-radius: 100px;
    margin-right: 50px;
}
.team-item:hover .team-content-info {
    bottom: 0;
}
.team-content-info h4 a {
    color: #292c33;
    font-family: 'Work Sans', sans-serif;
    font-weight: 500;
}
.team-content-info h4 a:hover {
    color: #0095FF;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.team-content-btn {
    position: absolute;
    right: -210px;
    bottom: -100px;
    width: 200px;
    height: 200px;
    background: #0095FF;
    border-radius: 50%;
    z-index: 2;
    -webkit-transition: all 0.4s linear 0s;
    -o-transition: all 0.4s linear 0s;
    transition: all 0.4s linear 0s;
}
.team-item:hover .project-content-btn {
    right: -95px;
}
.team-content-btn a {
    position: absolute;
    top: 40px;
    left: 45px;
    z-index: 3;
    width: 40px;
    height: 40px;
    background-color: #fff;
    display: inline-block;
    border-radius: 50%;
    line-height: 40px;
    text-align: center;
    font-size: 18px;
    -webkit-transition: all 0.4s linear 0s;
    -o-transition: all 0.4s linear 0s;
    transition: all 0.4s linear 0s;
    color: #3307d9;
}
.team-item:hover .team-content-btn a {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
}
.team-item:hover .team-content-btn {
    right: -95px;
}
.project-shape {
    position: absolute;
    content: "";
    width: 330px;
    height: 330px;
    border-radius: 50%;
}
.team-shape-1 {
    background-color:#0095FF;
    opacity: 0.922;
    top: -245px;
    top: -350px;
    right: -120px;
    z-index: 2;
    -webkit-transition: all 0.4s linear 0s;
    -o-transition: all 0.4s linear 0s;
    transition: all 0.4s linear 0s;
}
.team-item:hover .team-shape-1 {
    top: -245px;
}
.team-shape-2 {
    background-color: #0095FF;
    opacity: 0.922;
    top: -170px;
    right: -350px;
    z-index: 1;
    -webkit-transition: all 0.4s linear 0s;
    -o-transition: all 0.4s linear 0s;
    transition: all 0.4s linear 0s;
}
.team-item:hover .team-shape-2 {
    right: -210px;
}
.team-social {
    position: absolute;
    bottom: 32px;
    left: 94px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.team-social li a {
    padding: 5px 8px;
    color: #fff;
}
.team-slider.owl-carousel .owl-nav{
    text-align: center;
    display: none;
}
/*
.team-slider.owl-carousel .owl-nav .owl-prev, 
.team-slider.owl-carousel .owl-nav .owl-next {
    text-align: center;
    font-size: 13.49px;
    line-height: 48px;
    width: 48px;
    height: 48px;
    margin-right: 10px;
    background: #fff;
    border: 1px solid #ededed;
    border-radius: 26%;
    color: #6e11c8;
    outline: none;
    z-index: 1;
    display: inline-block;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    font-size: 19px;
}
.team-slider.owl-carousel .owl-nav .owl-prev:hover, .team-slider.owl-carousel .owl-nav .owl-next:hover {
    background: #33065b;
    border: 1px solid #33065b;
    color: #fff;
}
.team-slider.owl-carousel .owl-nav .owl-prev {
    position: absolute;
    left: -6%;
    top: 23%;
}
.team-slider.owl-carousel .owl-nav .owl-next {
    position: absolute;
    right: -6%;
    top: 23%;
}*/
.team-slider .owl-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 30px;
}
.team-slider .owl-dots .owl-dot {
    margin: 2px 8px;
    border: 0;
    background: none;
    cursor: pointer;
}
.team-slider .owl-dots .owl-dot span {
    display: block;
    border-radius: 50%;
    background-color: #0095FF;
    width: 12px;
    height: 12px;
    position: relative;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.team-slider .owl-dots .owl-dot span::after {
    position: absolute;
    content: "";
    top: -5px;
    left: -5px;
    border: 1px solid #0095FF;
    border-radius: 50%;
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.team-slider .owl-dots .owl-dot.active span::after {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
/*blog-post*/
.blog-area-main  {
    background: #F6F6F6;
    position: relative;
}
.blog-bg .bg1{
    position: absolute;
    top: 0;
    right: 0;
    content:'' ;
}
.blog-bg .bg2{
    position: absolute;
    bottom: 0;
    left: 0;
    content:'' ;
}
.blog-single {
  position: relative;
  margin-bottom: 30px;
   -webkit-transition: 0.5s ease-in-out;
   transition: 0.5s ease-in-out;
    -ms-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    position: relative;
}
.count-text {
    font-size: 41px;
    font-weight: 700;
    -webkit-text-stroke: 2px rgba(51, 6, 91, 0.1);
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
    position: absolute;
    left: 10px;
    top: 50%;
    line-height: 1;
    -webkit-transition: all .5s ease-out 0s;
    -o-transition: all .5s ease-out 0s;
    transition: all .5s ease-out 0s;
}
.blog-single.type-blog {
  padding-top: 40px;
  -webkit-transform: translateY(0px);
      -ms-transform: translateY(0px);
          transform: translateY(0px);
  position: relative;
}
.blog-single.type-blog:hover {
    -webkit-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
            transform: translateY(-10px);
}
.image_box .blog-ani {
    position: absolute;
    content: "";
    width: 25%;
    height: 100%;
    left: 0;
    background: #f30908;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    -ms-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    bottom: -50%;
    -webkit-transform: translateY(50%);
    -ms-transform: translateY(50%);
    transform: translateY(50%);
    opacity: 0;
}
.blog-single:hover .image_box .blog-ani {
    opacity: 0.7;
    bottom: 0;
    -webkit-transform: translateY(0%);
        -ms-transform: translateY(0%);
            transform: translateY(0%);
}
.image_box .blog-ani.ani_2 {
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    -ms-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    left: 25%;
    -webkit-transform: translateY(40%);
        -ms-transform: translateY(40%);
            transform: translateY(40%);
}
.image_box .blog-ani.ani_3 {
    -webkit-transition: 0.7s ease-in-out;
    transition: 0.7s ease-in-out;
    -ms-transition: 0.7s ease-in-out;
    -moz-transition: 0.7s ease-in-out;
    -o-transition: 0.7s ease-in-out;
    left: 50%;
    -webkit-transform: translateY(20%);
        -ms-transform: translateY(20%);
            transform: translateY(20%);
}
.image_box .blog-ani.ani_4 {
    -webkit-transition: 0.9s ease-in-out;
    transition: 0.9s ease-in-out;
    -ms-transition: 0.9s ease-in-out;
    -moz-transition: 0.9s ease-in-out;
    -o-transition: 0.9s ease-in-out;
    -webkit-transform: translateY(30%);
        -ms-transform: translateY(30%);
            transform: translateY(30%);
    left: 75%;
}
.blog-single.type-blog .vertical_text_1 {
  position: absolute;
  top: 30px;
  left: 20px;
}
.vertical_text_1 {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
}
.blog-single.type-blog .vertical_text_1 .date_tm {
    font-size: 22px;
    color: #282828;
    line-height: 30px;
    font-weight: 700;
}
    .blog-single.type-blog .vertical_text_1 .date_tm i {
        top: -5px;
        color: #f30908;
        position: relative;
    }
.blog-single.type-blog .blog-content {
  position: relative;
  padding-left: 70px;
  background:#fff;
  -webkit-box-shadow: 0 5px 22px 0px rgba(15 ,53 ,103 , 0.05);
          box-shadow: 0 5px 22px 0px rgba(15 ,53 ,103 , 0.05);
  border-radius: 20px;
}
.blog-single.type-blog .blog-content .image_box {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  height: 270px;
  top: -40px;
}

.blog-single.type-blog .blog-content .image_box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
 .blog-content .content {
  position: relative;
  top: -15px;
  padding: 10px 20px 20px 0px;
}
 .blog-content .content .authour {
  position: relative;
  margin-bottom: 15px;
}
 .blog-content .content .authour img {
  width: 32px;
  height: 32px;
  border-radius: 50px;
  margin-right: 10px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
  object-position: top;
}
 .blog-content .content .blog-title a {
    margin-bottom: 15px;
}

    .blog-content .content a.read_more {
        color: white;
        background: #f30908;
        padding: 6px 12px;
        border-radius: 5px;
        display: inline-block;
    }
.blog-content .content a.read_more i {
    background: #fff;
    color: #33065b;
    width: 20px;
    height: 20px;
    text-align: center;
    border-radius: 50%;
    line-height: 19px;
    margin-left: 7px;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.blog-content .content a.read_more:hover i{
    margin-left: 10px;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.blog-single.type-blog:hover {
  -webkit-transform: translateY(-10px);
      -ms-transform: translateY(-10px);
          transform: translateY(-10px);
}
 .blog-content {
  border-radius: 0px;
}
 .blog-content .image_box {
  border-radius: 0px;
}
.comment-message .form-control, .comment-form .form-control {
    border: 1px solid transparent;
    padding: 10px 20px;
    background: #F3F4F5;
    color: black;
}
.comment-message .form-control:focus,
.comment-form .form-control:focus {
    -webkit-box-shadow: none;
            box-shadow: none;
    border: 1px solid #0095FF;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.page-pagination {
    padding-top: 60px;
}


.page-pagination .pagination li {
    margin-right: 12px;
}
.page-pagination .pagination li a {
    width: 40px;
    height: 40px;
    line-height: 38px;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    color: #212832;
    border: 1px solid rgba(48,146,85,0.2);
    display: block;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    border-radius: 13px;
}
.page-pagination .pagination li a.active, .page-pagination .pagination li a:hover {
    color: #fff;
    background-color: #0095FF;
    border-color: #0095FF;
}
/*counter-area*/
.statistics-inner.bg-cover {
    padding: 80px 80px 35px 80px;
    margin-block-end: 300px;
}

.statistics-inner {
     margin-top: -140px;
    -webkit-transform: translateY(140px);
    -ms-transform: translateY(140px);
    transform: translateY(140px);
    z-index: 1;
    position: relative;
    border-radius: 75px;
}
.statistics-inner::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    z-index: -1;
    top: 0;
    left: 0;
    opacity: 0.9;
    background-color: #0095FF;
    border-radius: 75px;
}
.counter-title span{
    font-size: 20px;
    font-weight: 500;
    display: inline-block;
    color: #fff;
}
.counter-title h2{
    font-size: 30px;
    color:#fff;
    font-weight: 600;
    font-family: 'Work Sans', sans-serif;
}
.counter-item {
    margin-bottom: 50px;
}
.counter-item .counter-text {
    font-size: 35px;
    font-weight: 700;
    color: #fff;
    display: block;
}
.counter-item .counter-title {
    text-transform: capitalize;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    margin: 0;
}
.counter-text-wrap .counter-text.plus::after {
    content: '+';
}
.counter-text-wrap .counter-text.percent::after {
    content: '%';
}
.counter-item > i {
    font-size: 30px;
    margin-bottom: 25px;
    display: inline-block;
    width: 80px;
    height: 80px;
    background: white;
    line-height: 80px;
    border-radius: 50%;
    text-align: center;
    color: #0095FF;
}
.more-btn {
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    font-family: 'Work Sans', sans-serif;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.more-btn i{
    margin-left:7px;
     -webkit-transition: all 0.3s ease-in-out;
     -o-transition: all 0.3s ease-in-out;
     transition: all 0.3s ease-in-out;
}
.more-btn:hover{
    color:#fff;
}
.more-btn:hover i{
    margin-left: 10px;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
 }
/*
Services Details Page Style
======================================================*/
.service-details-card {
  background-color: #f8f8f8;
  border-radius: 10px;
  padding: 33px 29px;
  margin-bottom: 30px;
}
.service-details-card h4 {
  font-size: 20px;
  margin-bottom: 40px;
  position: relative;
}
.service-details-card h4::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -17px;
  width: 100%;
  height: 3px;
  background-color: #e0e0e0;
  border-radius: 40px;
}
.service-details-card h4::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -17px;
    width: 115px;
    height: 3px;
    background: #0095FF;
    border-radius: 40px;
}
.service-details-card ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.service-details-card ul li {
  position: relative;
  margin-bottom: 15px;
  background-color: #ffffff;
  padding: 16px 16px 16px 13px;
  -webkit-transition: all ease 0.5s;
  -o-transition: all ease 0.5s;
  transition: all ease 0.5s;
  border-radius: 5px;
}
.service-details-card ul li a {
  -webkit-transition: all ease 0.5s;
  -o-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
.service-details-card ul li:last-child {
  margin-bottom: 0;
}
.service-details-card ul li i {
    position: absolute;
    top: 18px;
    right: 15px;
    font-size: 18px;
    color: #0095FF;
    -webkit-transition: all ease 0.5s;
    -o-transition: all ease 0.5s;
    transition: all ease 0.5s;
}
.service-details-card ul li:hover {
    background-color: #0095FF;
}
.service-details-card ul li:hover a {
  color: #ffffff;
}
.service-details-card ul li:hover i {
  color: #ffffff;
}

.banner-offer {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.banner-offer .service-img-1 {
  border-radius: 10px;
  position: relative;
}
.banner-offer .service-img-1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 17, 49, 0.82);
  border-radius: 10px;
  z-index: -1;
}
.banner-offer .info {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    text-align: start;
    z-index: 1;
    padding-top: 60px;
    padding-left: 45px;
    padding-right: 83px;
}
.banner-offer .info span {
  display: block;
  color: #F8912F;
  margin-bottom: 10px;
}
.banner-offer .info h4 {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 40px;
}
.banner-offer .info .pricing-btn {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  padding: 12px 28px;
  background: -o-linear-gradient(12.09deg, #FD754D 23.21%, #F63A93 85.96%);
  background: linear-gradient(77.91deg, #FD754D 23.21%, #F63A93 85.96%);
  border-radius: 5px;
  cursor: pointer;
  z-index: 2;
}
.banner-offer  img{
    width: 100%;
    height: auto;
}

.development {
  margin-bottom: 40px;
}
.development img {
    margin-bottom: 35px;
    border-radius: 20px;
    width: 100%;
    height: auto;
}
.development h4 {
    font-size: 32px;
    margin-bottom: 17px;
    line-height: 47px;
}
.development p {
    font-size: 15px;
}
  

.development-to {
  margin-bottom: 45px;
}
.development-to h5 {
  font-size: 24px;
  margin-bottom: 20px;
}
.development-to p {
  font-size: 15px;
}
.development-to .project-info {
  margin-top: 50px;
}
.project-img img{
    width: 100%;
    height: auto;
}
.project-image img{
    width: 100%;
    height: auto;
}
.development-to .project-info .project ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.development-to .project-info .project ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}
.development-to .project-info .project ul li:last-child {
  margin-bottom: 0;
}
.development-to .project-info .project ul li i {
    position: absolute;
    top: 2px;
    left: 0;
    font-size: 18px;
    color: #0095FF;
}
.development-to .project-info .project-image img {
  border-radius: 10px;
}

/*-------------------------------------------------------------------------------------
    Blog Page
---------------------------------------------------------------------------------------*/

.blog-area {
    background-color: #fff;
    padding: 90px 0 100px;
}

.blog-post-single {
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.10);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.10);
    border-radius: 5px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.blog-post-single:hover {
    -webkit-box-shadow: 0 10px 40px rgba(0, 0, 0, 0.10);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.10);
}

.blog-post-content {
    padding: 30px 20px 15px;
}

.blog-post-content h3 a {
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 10px;
    text-transform: capitalize;
    color: #130F40;
}

.blog-post-content h3 a:hover {
    color: #FF630E;
}

.post-meta {
    margin-bottom: 15px;
}

.post-media img {
    border-radius: 5px 5px 0 0;
}

.post-meta li {
    display: inline-block;
    margin-right: 15px
}

.post-meta li a i {
    font-size: 15px;
    color: #FF630E;
}

.post-meta span {
    margin-left: 8px;
    text-transform: uppercase;
    font-family: "Rajdhani", Sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 1px;
    color: #696969;
}

.post-meta span:hover {
    color: #FF630E;
}

.blog-area.two {
    padding: 100px 0;
}

.widget {
    padding: 30px 40px 40px;
    margin-bottom: 30px;
    border-radius: 10px;
    -webkit-box-shadow: 0 0 15px rgba(51, 51, 51, 0.10);
    box-shadow: 0 0 15px rgba(51, 51, 51, 0.10);
}

.search-form {
    position: relative
}

.search-form input {
    width: 100%;
    height: 55px;
    border: 0;
    background-color: #f1f1f1;
    padding-left: 20px;
    border-radius: 5px;
    font-family: 'Rubik';
}

.search-form button {
    position: absolute;
    right: 40px;
    top: 30px;
    height: 55px;
    width: 60px;
    border: 0;
    background-color: #0095FF;
    font-size: 20px;
    padding: 0 20px;
    border-radius: 0 5px 5px 0;
    color: #fff;
}
.search-form button:hover {
    background-color: #130f40;
}

.widget h4 {
    color: #242429;
    padding-bottom: 15px;
    font-weight: 700;
    font-size: 24px;
}

.latest-post.widget {
    padding-bottom: 20px;
}

.recent-post-single {
    overflow: hidden;
    margin-bottom: 20px;
}

.recent-post-thumb.two img {
    margin: 0;
    border-radius: 5px;
}

.recent-post-cont.two {
    padding: 0 0 0 20px;
}
.recent-post-thumb {
    float: left;
    width: 30%;
}
.recent-post-cont {
    float: left;
    width: 70%;
    padding: 0 20px 0 10px;
}
.recent-post-cont.two a {
    color: #130f40;
    font-weight: 700;
    font-size: 14px;
}
.recent-post-cont.two a:hover {
    color: #4b0c8f;
}
.recent-post-cont.two span {
    color: #696969;
}

.menu-services-icon.two {
    margin: 0 0 0 15px;
}

.widget-list li {
    padding: 0 0 15px;
}

.widget-list li a {
    color: #696969;
}

.widget-list li i {
    color: #33065B;
    padding-right: 5px;
}

.menu-list.widget {
    padding-bottom: 20px;
}

.widget-list li a:hover {
    color: #33065B;
}

.all-posts-wrap {
    padding-right: 40px
}

.blog-posts {
    margin: 0 0 100px;
}

.blog-posts h3 {
    margin-bottom: 15px;
}

.blog-post-thumb img {
    margin-bottom: 30px;
    border-radius: 5px;
    overflow: hidden;
}

.blog-posts-meta {
    padding-bottom: 10px;
}

.blog-posts-meta ul li i {
    margin-right: 6px;
    font-size: 14px;
    color: #0095FF;
}

.blog-posts-meta ul li {
    display: inline-block;
}

.blog-posts-meta ul li a {
    color: #696969;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 14px;
    margin-right: 15px;
}

.blog-posts-meta ul li a:hover {
    color: #FF630E;
}

.blog-posts h3 a {
    color: #130f40;
    font-weight: 700;
    font-size: 36px;
    line-height: 46px;
}

.blog-posts-meta ul li a:hover {
    color: #360F59;
}

.blog-area.two p {
    line-height: 1.8;
}

.blog-posts.two {
    margin: 0 30px 0 0;
}

.admin-post-btn{
   margin-top: 40px;
}



.blog-pagination li {
    display: inline-block;
}

.blog-pagination li a,
.blog-pagination li span {
    width: 55px;
    height: 55px;
    background-color: #f7f7f7;
    display: block;
    border: 1px solid #e6f0fa;
    border-radius: 5px;
    font-weight: 500;
    line-height: 55px;
    font-size: 16px;
    margin: 0 5px;
}

.blog-pagination li i {
    font-size: 20px;
}

.blog-pagination li a:hover,
.blog-pagination li span {
    border-color: #FF630E;
    background-color: #FF630E;
    color: #fff;
}

.feature-page.two {
    margin: 0 250px;
}

.entry-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin: 30px 0 15px;
}

.block-quote {
    background-color: #f5f5f5;
    border: 0;
    padding: 25px 30px 35px;
    margin: 35px 0;
}

.block-quote i {
    color: #dedede;
    font-size: 30px;
    font-style: italic;
    line-height: 40px;
}

.block-quote p {
    margin: 0 0 8px;
    font-style: italic;
    line-height: 1.8;
}

.block-quote h6 {
    color: #f30908;
    font-size: 18px;
    font-weight: 700;
}
.blog-post-thumb.two {
    margin: 0 30px 0 0;
}

.blog-post-thumb.two ul li {
    padding-bottom: 8px;
    line-height: 28px;
    font-weight: 400;
    font-size: 16px;
    color: #696969;
}

.entry-footer {
    margin-top: 15px;
    padding-top: 30px;
    border-top: 1px solid #ddd;
    position: relative;
}

.post-tags {
    font-size: 16px;
    font-weight: 500;
    color: #130f40;
    padding-right: 20px;
}

.post-tag a {
    display: inline-block;
    background-color: #0095FF;
    color: #fff;
    font-size: 13px;
    padding: 0px 12px;
    border-radius: 4px;
    margin-right: 0;
    margin-left: 8px;
}

.entry-footer ul {
    position: absolute;
    top: 26px;
    left: 56px;
}

.entry-footer ul li {
    display: inline-block;
    margin-right: 10px;
}

.entry-footer ul li a {
    display: inline-block;
    background-color: #0095FF;
    color: #fff;
    font-size: 13px;
    padding: 6px 12px;
    border-radius: 4px;
}

.comment-form input {
    height: 50px;
}

.comment-respond {
    margin-top: 60px;
}

.comment-respond h4 {
    font-size: 24px;
    font-weight: 700;
    color: #130f40;
}

.comment-respond p {
    margin-bottom: 28px;
}

.comment-respond form {
    font-size: 16px;
    line-height: 28px;
    color: #696969;
}
/*video-area*/
.video-area{
    background:#f9f9f9;
}
 .video-inner {
    position: relative;
   
}
 .video-inner .video-img {
    position: absolute;
    bottom: 0;
    left: 15px;
    z-index: 1;
}
    .video-inner .vdo-text {
        background-color: #f30908;
        padding-top: 90px;
        padding-bottom: 170px;
        -webkit-clip-path: polygon(0 0, 100% 50px, 100% 100%, 0 100%);
        clip-path: polygon(0 0, 100% 70px, 100% 100%, 0 100%);
    }

.video-content{
    position: relative;
}
.video-content .text span{
    color:#fff;
    position: relative;
}
.video-content .text span::before {
    position: absolute;
    content: "";
    top: 50%;
    left: -17px;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background-color: #FFF;
    border-radius: 50%;
}
.video-content .text h2{
    color: #fff;
}
.pq-video-icon span{
    display: none;
}
.pq-video-icon a {
    margin: auto;
    position: absolute;
    top: 100%;
    left: 0;
    /* transform: translate(-50%, -50%); */
    text-decoration: none;
    color: #970102;
    font-size: 28px;
    width: 90px;
    height: 90px;
    line-height: 90px;
    text-align: center;
    display: inline-block;
    background-color: white;
    border-radius: 90%;
    -webkit-animation: video 1s linear infinite;
    animation: video 1s linear infinite;
}


@-webkit-keyframes video{
    0% {
  -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2), 0 0 0 10px rgba(255, 255, 255, 0.2), 0 0 0 20px rgba(255, 255, 255, 0.2), 0 0 0 40px rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2), 0 0 0 10px rgba(255, 255, 255, 0.2), 0 0 0 20px rgba(255, 255, 255, 0.2), 0 0 0 40px rgba(255, 255, 255, 0.2);
}
100% {
  -webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.2), 0 0 0 20px rgba(255, 255, 255, 0.2), 0 0 0 40px rgba(255, 255, 255, 0.2), 0 0 0 70px rgba(255, 255, 255, 0);
  box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.2), 0 0 0 20px rgba(255, 255, 255, 0.2), 0 0 0 40px rgba(255, 255, 255, 0.2), 0 0 0 70px rgba(255, 255, 255, 0);
}
}


@keyframes video{
    0% {
  -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2), 0 0 0 10px rgba(255, 255, 255, 0.2), 0 0 0 20px rgba(255, 255, 255, 0.2), 0 0 0 40px rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2), 0 0 0 10px rgba(255, 255, 255, 0.2), 0 0 0 20px rgba(255, 255, 255, 0.2), 0 0 0 40px rgba(255, 255, 255, 0.2);
}
100% {
  -webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.2), 0 0 0 20px rgba(255, 255, 255, 0.2), 0 0 0 40px rgba(255, 255, 255, 0.2), 0 0 0 70px rgba(255, 255, 255, 0);
  box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.2), 0 0 0 20px rgba(255, 255, 255, 0.2), 0 0 0 40px rgba(255, 255, 255, 0.2), 0 0 0 70px rgba(255, 255, 255, 0);
}
}

/*protfolio area*/
 .portfolio-box {
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    z-index: 1;
    margin-bottom: 30px;
}

 .portfolio-box::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #757a89;
    opacity: 0;
    content: '';
    -webkit-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
    visibility: hidden;
    z-index: -2;
}

.portfolio-box .images img{
    width: 100%;
    height: auto;
}

 .portfolio-box .portfolio-desc {
    position: absolute;
    left: -80px;
    bottom: 0;
    background-color: #fff;
    padding: 30px 40px;
    -webkit-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
    visibility: hidden;
    opacity: 0;
    z-index: 2;
}
.portfolio-box:hover .portfolio-desc {
    left: 0;
    visibility: visible;
    opacity: 1;
    border-left: 4px solid #0095FF;
}
.portfolio-box .portfolio-desc .portfolio-cat {
    position: relative;
    display: inline-block;
    font-weight: 700;
    color: #33065b;
    text-transform: uppercase;
    margin-bottom: 5px;
}
/*protfolio-area*/
.portfolio-info-box {
    display: inline-block;
    width: 100%;
}
.porfolio-info-header h5 {
    font-size: 40px;
    line-height: 48px;
    margin-bottom: 10px;
}
.porfolio-info .info-list li {
    list-style: none;
    float: none;
    margin: 0 0 15px;
    padding: 0 0 15px;
    display: inline-block;
    width: 100%;
    border-bottom: 1px solid #e8e8e8;
}
.porfolio-info .info-list li h5 {
    display: inline-block;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
}
.porfolio-info .info-list li span {
    float: right;
    color: #480e80;
    font-weight: 500;
}
.social-media-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.social-media-grid a {
    background: #0095FF;
    border-radius: 5px;
    font-size: 20px;
    line-height: 25px;
    padding: 10px;
    margin: 0 5px;
    text-align: center;
    color: #fff;
}
.social-media-grid a:first-child {
    margin-left: 0;
}
.portfolio-single-title {
    color: #000;
    font-size: 36px;
    font-weight: 600;
    font-style: normal;
    margin-top: 30px;
}
.side-img img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}
.project-nav {
    margin: 26px 0;
}
.project-nav ul li{
    margin-bottom: 20px;
}

/*-------------------------------------------------------------------------------------
    login-form-2
---------------------------------------------------------------------------------------*/
.login-form-2 {
  max-width: 470px;
  margin: 0 auto;
}
.form-container {
    padding: 40px;
    -webkit-box-shadow: 0px 5px 15px rgba(189, 187, 187, 0.5);
            box-shadow: 0px 5px 15px rgba(189, 187, 187, 0.5);
    background: #fff;
    border-radius: 12px;
}
.form-container .form-icon {
    color: #522CDB;
    font-size: 55px;
    text-align: center;
    line-height: 100px;
    width: 100px;
    height: 100px;
    margin: 0 auto 15px;
    border-radius: 50px;
    -webkit-box-shadow: 7px 7px 10px #d0d0d0, -7px -7px 10px #d9d5d5;
            box-shadow: 7px 7px 10px #d0d0d0, -7px -7px 10px #d9d5d5;
}
.form-container .title {
  color: #919191;
  font-size: 25px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  margin: 0 0 20px;
}
.form-container .form-horizontal .form-group {
  margin: 0 0 14px 0;
}
.form-container .form-horizontal .form-group label {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  color: #919191;
  padding-bottom: 8px;
}
.form-container .form-horizontal .form-control {
    color: #000;
    background: #e6e6e6;
    font-size: 15px;
    height: 50px;
    padding: 20px;
    letter-spacing: 1px;
    border: none;
    border-radius: 50px;
    -webkit-box-shadow: inset 6px 6px 6px #ccc, inset 6px 6px 6px #c8c1c1;
            box-shadow: inset 6px 6px 6px #ccc, inset 6px 6px 6px #c8c1c1;
    display: inline-block;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.form-container .form-horizontal .btn {
    color: #fff;
    background-color: #0095FF;
    font-size: 15px;
    font-weight: bold;
    text-transform: uppercase;
    width: 100%;
    padding: 12px 15px 11px;
    border-radius: 20px;
    border: none;
    -webkit-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    font-family: 'Poppins', sans-serif;
}
.form-container .form-horizontal .btn:hover, 
.form-container .form-horizontal .btn:focus {
  color: #fff;
  letter-spacing: 3px;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}
.forgot p a{
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  color: #919191;
  padding-bottom: 8px;
}
.forgot p a:hover{
  color: #B85033;
}



/*-------------------------------------------------------------------------------------
    Footer
---------------------------------------------------------------------------------------*/
.container_footer{
   max-width: 1600px;
}
.footer-area {
    background: #000000;
    padding: 50px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}
.footer__bg {
    position: absolute;
    width: 45%;
    height: 100%;
    top: 0;
    left: 0;
    background: #2d2d2d;
}
.footer-about-description h3 {
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px #ffff;
    text-transform: capitalize;
    word-break: break-word;
    font-size: 66px;
    font-family: sans-serif;
    font-weight: 700;
    z-index: 1;
    margin: 1em 0 .5em 0;
}
.footer-about-description h2 {
    font-size: 2.5em;
    font-weight: 300;
    color: #ffffff;
}
.footer-about-description h2 span {
    display: block;
    font-weight: 600;
}
.footer-about-description p {
    font-weight: 400;
    font-size: 16px;
    color: #fff;
}
.address-info{
    padding: 0 0 0 7em;
    position: relative;
}
.address-info::before {
    content: "";
    position: absolute;
    width: 5em;
    height: 2px;
    background-color: #fff;
    top: 1em;
    left: 0;
}
.address-info .num {
    margin-top: 10px;
}
    .address-info .num a,
    .address-info .mail a {
        color: #ffffff;
    }
.footer-widget h4 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 700;
    position: relative;
    padding-bottom: 13px;
}
.footer-widget h4::before {
    position: absolute;
    left: 0;
    bottom: 0;
    content: '';
    width: 120px;
    height: 2px;
    background: #fff;
}
    .footer-widget h4::after {
        position: absolute;
        left: 0;
        bottom: -1px;
        content: '';
        width: 50px;
        height: 3px;
        background: #f30908;
    }
.footer-widget li {
    padding: 0 0 15px;
}

.footer-widget li a {
    display: block;
    color: #dedede;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
}

    .footer-widget li a:hover {
        color: #ffffff;
    }

.footer-widget.footer-cat li i {
    color: #ffffff;
    padding-right: 5px;
}

.footer-widget.logo img {
    max-width: 160px;
    margin-bottom: 20px;
}

.footer-widget.logo p {
    color: #ffffff;
}

.footer-widget.logo img {
    max-width: 160px;
    margin-bottom: 20px;
}

.footer-widget.logo p,
.footer-bottom-area p {
    color: #ffffff;
}

.footer-widget.logo h6 {
    color: #fff;
    font-weight: 700;
    margin: 25px 0 10px;
}

.footer-social-icons li {
    display: inline-block;
    padding-right: 15px;
}

.footer-social-icons li a,
.footer-widget.footer-contact li p {
    color: #fff;
}

.footer-social-icons li a:hover,
.recent-post-cont a:hover {
    color: #FF630E;
}



.footer-widget.footer-contact li {
    color: #dedede;
    font-family: 'Poppins', sans-serif;
    position: relative;
    padding-left: 35px;
    font-size: 15px;
    line-height: 25px;
}

.footer-widget.footer-contact li i {
    font-size: 20px;
    position: absolute;
    left: 0;
    top: 6px;
    color: #FF630E;
}

.footer-widget.footer-contact li i.fa.fa-map-marker {
    font-size: 30px;
}

.footer-widget.footer-contact li i.fa.fa-phone {
    font-size: 24px;
}

.footer-widget.footer-contact .info {
    margin-top: 10px;
}
.ajax-response{
    color: #0095FF;
}