html {
    scroll-behavior: smooth
}

body {
    font-family: "Poppins", sans-serif;
    font-weight: normal;
    font-style: normal;
    color: #888;
    overflow-x: hidden;
    font-size: 14px
}

p {
    margin: 0;
    padding: 0
}

* {
    margin: 0;
    padding: 0
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    margin: 0;
    color: #081828
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: inherit
}

h1 {
    font-size: 50px
}

h2 {
    font-size: 40px
}

h3 {
    font-size: 30px
}

h4 {
    font-size: 25px
}

h5 {
    font-size: 20px
}

h6 {
    font-size: 16px
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style-type: none
}
span,
a {
    display: inline-block;
    text-decoration: none;
    transition: all .4s ease;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease
}
.img-bg {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%
}

@media only screen and (min-width:480px) and (max-width:767px) {
    .container {
        width: 450px
    }
}


.section {
    padding-top: 120px;
    padding-bottom: 120px;
    position: relative
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 300px;
    position: relative;
    z-index: 5
}

.section-title span {
    text-transform: capitalize;
    color: #fff;
    background: linear-gradient(45deg, #6831e3, #f528cb);
    display: inline-block;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 500;
    padding: 5px 15px;
    border-radius: 4px
}

.section-title.style2 span {
    background: linear-gradient(45deg, #018bff, #243ec4)
}

.section-title.style3 span {
    background: linear-gradient(45deg, #4567f4, #3cd3ad)
}

.section-title.style4 span {
    background: linear-gradient(45deg, #dce35b, #45b649)
}

.section-title h2 {
    font-size: 30px;
    margin-bottom: 18px;
    line-height: 40px;
    text-transform: capitalize;
    position: relative;
    font-weight: 700
}

.section-title p {
    font-size: 14px;
    line-height: 24px
}

.section-title.white-text h2 {
    color: #fff
}

.section-title.white-text h2::before {
    background-color: #fff
}

.section-title.white-text span {
    color: #fff
}

.section-title.white-text p {
    color: #fff
}

.section-title.align-right {
    padding: 0;
    padding-left: 600px
}

.section-title.align-right h2:before {
    display: none
}

.section-title.align-right h2:after {
    position: absolute;
    right: 0;
    bottom: -1px;
    height: 2px;
    width: 50px;
    background: #6831e3;
    content: ""
}

.section-title.align-left {
    padding: 0;
    padding-right: 600px
}

.section-title.align-left h2:before {
    left: 0;
    margin-left: 0
}
.overlay {
    position: relative
}

.overlay::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .4;
    background: #081828;
    content: "";
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    z-index: 5
}
.button .btn {
    display: inline-block;
    position: relative;
    text-transform: capitalize;
    font-size: 14px;
    font-weight: 500;
    padding: 15px 30px;
    background: linear-gradient(45deg, #6831e3, #f528cb);
    color: #fff;
    border: none;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    border-radius: 4px;
    overflow: hidden;
    z-index: 2
}

.button .btn::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    height: 0%;
    width: 100%;
    background: #081828;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    border-radius: 0;
    z-index: -1
}

.button .btn:hover::before {
    height: 100%
}

.button .btn:hover {
    color: #fff
}

.button.style2 .btn {
    background: linear-gradient(45deg, #018bff, #243ec4)
}

.button.style3 .btn {
    background: linear-gradient(45deg, #4567f4, #3cd3ad)
}

.button.style4 .btn {
    background: linear-gradient(45deg, #dce35b, #45b649)
}

.align-left {
    text-align: left
}

.align-right {
    text-align: right
}

.align-center {
    text-align: center
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999999;
    width: 100%;
    height: 100%;
    background-color: #fff;
    overflow: hidden
}

.preloader-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.preloader-icon {
    width: 100px;
    height: 100px;
    display: inline-block;
    padding: 0
}

.preloader-icon span {
    position: absolute;
    display: inline-block;
    width: 100px;
    height: 100px;
    border-radius: 100%;
    background: linear-gradient(45deg, #6831e3, #f528cb);
    -webkit-animation: preloader-fx 1.6s linear infinite;
    animation: preloader-fx 1.6s linear infinite
}

.preloader.style2 .preloader-icon span {
    background: linear-gradient(45deg, #018bff, #243ec4)
}

.preloader.style3 .preloader-icon span {
    background: linear-gradient(45deg, #4567f4, #3cd3ad)
}

.preloader.style4 .preloader-icon span {
    background: linear-gradient(45deg, #dce35b, #45b649)
}

.preloader-icon span:last-child {
    animation-delay: -.8s;
    -webkit-animation-delay: -.8s
}

@keyframes preloader-fx {
    0% {
        -webkit-transform: scale(0, 0);
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
        opacity: 0;
    }
}

@-webkit-keyframes preloader-fx {
    0% {
        -webkit-transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        -webkit-transform: scale(1, 1);
        opacity: 0;
    }
}



.header{
    width: 100%;
    background: transparent;
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
}

.navbar-area {
    width: 100%;
    z-index: 99;
    -webkit-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    background: transparent;
    position: absolute
}

.sticky {
    position: fixed;
    z-index: 99;
    background-color: #fff;
    -webkit-box-shadow: 0 20px 50px 0 rgba(0, 0, 0, .05);
    box-shadow: 0 20px 50px 0 rgba(0, 0, 0, .05);
    -webkit-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    top: 0
}

.navbar-expand-lg .navbar-nav {
    margin-left: auto;
    margin-right: 0 !important
}

.sticky .navbar .navbar-nav .nav-item a {
    color: #081828
}

.sticky .navbar .navbar-nav .nav-item a:hover {
    color:  #45b649
}



.header.style4 .sticky .navbar .navbar-nav .nav-item a {
    color: #081828
}

.header.style4 .sticky .navbar .navbar-nav .nav-item a:hover {
    color: #45a247
}

.sticky .navbar .navbar-toggler .toggler-icon {
    background: #081828
}

.navbar {
    padding: 0;
    border-radius: 5px;
    position: relative;
    -webkit-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s
}

.header .logo {
    position: relative;
    top: -14px
}

.header .logo img {
    width: 150px;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transition: all .4s ease;
    transition: all .4s ease
}

.header .logo .primary-logo {
    z-index: 2
}

.header .logo .alt-logo {
    z-index: 0;
    opacity: 0;
    visibility: hidden
}

.header .navbar-area.sticky .logo .primary-logo {
    z-index: 0;
    opacity: 0;
    visibility: hidden
}

.header .navbar-area.sticky .logo .alt-logo {
    z-index: 2;
    opacity: 1;
    visibility: visible
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .navbar {
        padding: 17px 0
    }
}

@media (max-width:767px) {
    .navbar {
        padding: 17px 0
    }
}

.navbar-brand {
    padding: 0
}

.navbar-brand img {
    max-width: 180px
}

.navbar-toggler {
    padding: 0
}

.navbar-toggler:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none
}

.navbar-toggler .toggler-icon {
    width: 30px;
    height: 2px;
    background-color: #333;
    display: block;
    margin: 5px 0;
    position: relative;
    -webkit-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s
}

.navbar-toggler.active .toggler-icon:nth-of-type(1) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 7px
}

.navbar-toggler.active .toggler-icon:nth-of-type(2) {
    opacity: 0
}

.navbar-toggler.active .toggler-icon:nth-of-type(3) {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    top: -7px
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        z-index: 9;
        -webkit-box-shadow: 0 15px 20px 0 rgba(0, 0, 0, .1);
        box-shadow: 0 15px 20px 0 rgba(0, 0, 0, .1);
        padding: 5px 12px
    }
}

@media (max-width:767px) {
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        z-index: 9;
        -webkit-box-shadow: 0 15px 20px 0 rgba(29, 42, 93, .1);
        box-shadow: 0 15px 20px 0 rgba(29, 42, 93, .1);
        padding: 5px 12px
    }
}

.navbar-nav .nav-item {
    position: relative;
    margin-left: 40px
}

.navbar-nav .nav-item a {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    -webkit-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    padding: 45px 0;
    position: relative;
    text-transform: capitalize
}

.header .navbar-area.sticky .navbar-nav .nav-item a {
    padding: 35px 0
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .navbar-nav .nav-item a {
        display: inline-block;
        padding: 6px 0;
        color: #5e678c
    }
}

@media (max-width:767px) {
    .navbar-nav .nav-item a {
        display: inline-block;
        padding: 6px 0;
        color: #5e678c
    }
}

.navbar-nav .nav-item a:hover,
.navbar-nav .nav-item a.active {
    color: #fff
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .navbar-nav .nav-item a:hover::after,
    .navbar-nav .nav-item a:hover::before,
    .navbar-nav .nav-item a.active::after,
    .navbar-nav .nav-item a.active::before {
        opacity: 1
    }
}

@media (max-width:767px) {
    .navbar-nav .nav-item a:hover::after,
    .navbar-nav .nav-item a:hover::before,
    .navbar-nav .nav-item a.active::after,
    .navbar-nav .nav-item a.active::before {
        opacity: 1
    }
}

.navbar-nav .sub-nav-toggler {
    display: block
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .navbar-nav .sub-nav-toggler {
        display: block;
        position: absolute;
        right: 0;
        top: 0;
        background: none;
        color: #222;
        font-size: 18px;
        border: 0;
        width: 30px;
        height: 30px
    }
}

@media (max-width:767px) {
    .navbar-nav .sub-nav-toggler {
        display: block;
        position: absolute;
        right: 0;
        top: 0;
        background: none;
        color: #222;
        font-size: 18px;
        border: 0;
        width: 30px;
        height: 30px
    }
}

.navbar-nav .sub-nav-toggler span {
    width: 8px;
    height: 8px;
    border-left: 1px solid #222;
    border-bottom: 1px solid #222;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    position: relative;
    top: -5px
}

.header {
    position: relative
}
.header.style4 .navbar-area.sticky .button .btn {
    border-color: transparent;
    background: linear-gradient(45deg, #dce35b, #45b649);
    border-color: #fff;
    padding: 15px 10px;
    border-radius: 6px
}

.header.style4 .navbar-area.sticky .button .btn::before {
    background: #081828
}

.header.style4 .navbar-area.sticky .button .btn:hover {
    color: #fff
}

.header .sticky .navbar .navbar-nav .nav-item a.active,
.header .sticky .navbar .navbar-nav .nav-item a:hover {
    color:  #45b649;
}

.hero-area {
    position: relative;
    background: linear-gradient(45deg, #6831e3, #f528cb)
}

.hero-area.style4 {
    position: relative;
    background: linear-gradient(45deg, #dce35b, #45b649);
    z-index: 2
}

.hero-area.style4 .hero-inner {
    padding-bottom: 130px
}

.hero-area.style4 .tns-controls button {
    width: 45px;
    height: 45px;
    cursor: pointer;
    z-index: 2;
    color: #fff;
    font-size: 13px;
    background: transparent;
    border: none;
    padding: 2px 5px;
    border-radius: 4px;
    -webkit-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    position: absolute;
    z-index: 99;
    top: 50%;
    margin-top: -30px;
    border: 2px solid #fff;
    border-radius: 10px
}

.hero-area.style4 .tns-controls button:hover {
    background: #fff;
    color: #081828;
    border-color: transparent
}

.hero-area.style4 .tns-controls button:first-child {
    left: 10px
}

.hero-area.style4 .tns-controls button:last-child {
    right: 10px
}

.hero-area.style4 img {
    width: 100%
}

.hero-area.style4::before {
    content: '';
    display: block;
    width: 100%;
    background: url(..images/over.webp);
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    height: 100%
}

.hero-area.style4::after {
    display: none
}

.hero-area.style4 .hero-text h1 {
    font-size: 38px;
    line-height: 48px
}

.hero-area.style4 .hero-image {
    margin-top: 160px
}

.hero-area::after {
    content: '';
    display: block;
    height: 100px;
    width: 100%;
    background: url(..images/brush.svg) bottom no-repeat;
    background-size: auto;
    background-size: cover;
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 7
}

.hero-area .hero-bottom-shape {
    height: 250px;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0
}

.hero-area .hero-inner {
    height: auto;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 3;
    padding-bottom: 180px
}

.hero-area .hero-inner.style2 {
    padding-bottom: 0;
    text-align: center;
    height: 930px
}

.hero-area .hero-inner.style2 .hero-text {
    margin-top: 200px
}

.hero-area .hero-inner.style2 .hero-image {
    text-align: center;
    display: inline-block;
    margin-top: 90px
}

.hero-area .hero-text {
    float: none;
    margin-top: 275px
}

.hero-area .hero-text h5 {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    display: block;
    margin-bottom: 15px
}

.hero-area .hero-text h1 {
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 45px;
    line-height: 60px;
    letter-spacing: -1px;
    color: #fff
}

.hero-area .hero-text p {
    font-size: 14px;
    color: #fff
}

.hero-area .hero-text .button {
    margin-top: 30px
}

.hero-area .hero-text .button .btn {
    background: #fff;
    color: #081828;
    margin-right: 10px
}

.hero-area .hero-text .button .btn:last-child {
    margin: 0
}

.hero-area .hero-text .button .btn i {
    font-size: 20px;
    display: inline-block;
    margin-right: 8px;
    position: relative;
    top: 2px;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out
}

.hero-area .hero-text .button .btn:hover {
    color: #fff
}

.hero-area .hero-text .button .btn.primary {
    border: 2px solid #fff;
    background: transparent;
    color: #fff;
    padding: 13px 30px
}

.hero-area .hero-text .button .btn.primary::before {
    background: #fff
}

.hero-area .hero-text .button .btn.primary:hover {
    color: #081828
}

.hero-area .hero-image {
    margin-top: 150px;
    position: relative
}

.hero-area .hero-image img {
    float: right;
    margin-right: 50px
}

.hero-area .hero-image .waves-block .waves {
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, .3);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    border-radius: 100%;
    -webkit-animation: waves 3s ease-in-out infinite;
    animation: waves 3s ease-in-out infinite;
    right: 0;
    top: 80px;
    z-index: -1
}

.hero-area .hero-image .waves-block .wave-1 {
    -webkit-animation-delay: 0s;
    animation-delay: 0s
}

.hero-area .hero-image .waves-block .wave-2 {
    -webkit-animation-delay: 1s;
    animation-delay: 1s
}

.hero-area .hero-image .waves-block .wave-3 {
    -webkit-animation-delay: 2s;
    animation-delay: 2s
}

@-webkit-keyframes waves {
    0% {
        -webkit-transform: scale(0.2, 0.2);
        transform: scale(0.2, 0.2);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
    50% {
        opacity: 0.9;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
    }
    100% {
        -webkit-transform: scale(0.9, 0.9);
        transform: scale(0.9, 0.9);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
}

@keyframes waves {
    0% {
        -webkit-transform: scale(0.2, 0.2);
        transform: scale(0.2, 0.2);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
    50% {
        opacity: 0.9;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
    }
    100% {
        -webkit-transform: scale(0.9, 0.9);
        transform: scale(0.9, 0.9);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
}

.work-process {
    background-color: #f4f7fa
}

.work-process.style4 .single-process .main-icon i {
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(45deg, #dce35b, #45b649) !important
}

.work-process.style4 .single-process span {
    background: linear-gradient(45deg, #dce35b, #45b649) !important
}

.work-process .single-process {
    text-align: center;
    margin-top: 30px;
    padding: 0 20px
}

.work-process .single-process .icon {
    height: 120px;
    width: 120px;
    text-align: center;
    line-height: 120px;
    background: #fff;
    -webkit-box-shadow: 0 16px 32px 0 rgba(135, 135, 135, .1);
    box-shadow: 0 16px 32px 0 rgba(135, 135, 135, .1);
    border-radius: 50%;
    position: relative;
    display: inline-block;
    font-size: 30px;
    position: relative
}

.work-process .single-process .icon .main-icon i {
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-image: linear-gradient(45deg, #018bff, #243ec4)
}

.work-process .single-process .icon span {
    font-size: 14px;
    height: 35px;
    width: 35px;
    line-height: 35px;
    background: linear-gradient(45deg, #018bff, #243ec4);
    border-radius: 50%;
    position: absolute;
    right: 0;
    top: 0;
    color: #fff !important;
    font-size: 15px;
    font-weight: 500
}

.work-process .single-process h3 {
    font-size: 20px;
    margin-top: 30px
}

.work-process .single-process p {
    margin-top: 20px
}


.services {
    background-color: #fff
}

.services .single-service {
    position: relative;
    padding: 40px;
    border: 1px solid #eee;
    border-radius: 0;
    -webkit-box-shadow: 0px 0px 20px #0000000f;
    box-shadow: 0px 0px 20px #0000000f;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    margin-top: 30px
}

.services .single-service::before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    height: 4px;
    width: 0%;
    background: linear-gradient(45deg, #dce35b, #45b649);
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out
}

.services .single-service:hover::before {
    width: 100%
}

.services .single-service:hover {
    -webkit-box-shadow: 0px 0px 30px #0000001f;
    box-shadow: 0px 0px 30px #0000001f
}

.services .single-service .icon i {
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-image: linear-gradient(45deg, #dce35b, #45b649);
    font-size: 30px;
    position: absolute;
    left: 40px;
    top: 40px
}

.services .single-service .text {
    padding-left: 60px
}

.services .single-service .text h2 {
    font-size: 18px;
    font-weight: 600;
    display: block;
    margin-bottom: 20px
}



.portfolio-section {
    background: #fff
}

.portfolio-section .portfolio-btn-wrapper {
    margin-bottom: 0;
    text-align: center;
    margin-top: 50px;
    position: relative
}

.portfolio-section .section-title {
    margin-bottom: 0
}

.portfolio-button-head {
    width: 100%;
    height: 100%;
    position: relative
}

.portfolio-section .grid {
    margin-top: 70px
}

.portfolio-section .portfolio-btn-wrapper button {
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 500;
    border: none;
    color: #081828;
    border-radius: 0;
    margin-right: 10px;
    margin-bottom: 10px;
    -webkit-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    background: #eee;
    border: none;
    border-radius: 3px
}

.portfolio-section .portfolio-btn-wrapper button:hover {
    background: linear-gradient(45deg, #dce35b, #45b649);
    border-color: transparent;
    color: #fff
}

.portfolio-section .portfolio-btn-wrapper button.active {
    background: linear-gradient(45deg, #dce35b, #45b649) !important;
    color: #fff;
    border-color: transparent
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .portfolio-section .portfolio-btn-wrapper button {
        margin-right: 10px;
        padding: 7px 18px;
        font-size: 16px
    }
}

@media (max-width:767px) {
    .portfolio-section .portfolio-btn-wrapper button {
        margin-right: 10px;
        padding: 7px 18px;
        font-size: 16px
    }
}

.portfolio-section .portfolio-btn-wrapper button:last-child {
    margin-right: 0
}

.portfolio-item-wrapper {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    margin-bottom: 30px;
    z-index: 2;
    background: #fff;
    padding: 8px;
    -webkit-box-shadow: 0px 0px 20px #0000000f;
    box-shadow: 0px 0px 20px #0000000f
}

.portfolio-item-wrapper .portfolio-overlay {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out
}

.portfolio-item-wrapper:hover .portfolio-overlay {
    opacity: 1;
    visibility: visible
}

.portfolio-item-wrapper .portfolio-img {
    overflow: hidden;
    position: relative
}

.portfolio-item-wrapper .portfolio-img::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    background: linear-gradient(45deg, #dce35b, #45b649);
    height: 100%;
    width: 100%;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out
}

.portfolio-item-wrapper:hover .portfolio-img::before {
    opacity: .9;
    visibility: visible
}

.portfolio-item-wrapper .portfolio-img img {
    width: 100%;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    -moz-transition: all .4s ease;
    -webkit-transform: scale(1.1);
    transform: scale(1.1)
}

.portfolio-item-wrapper:hover .portfolio-img img {
    -webkit-transform: scale(1);
    transform: scale(1)
}

.portfolio-section .pf-content .link {
    padding: 15px 25px;
    border-radius: 4px;
    background: #fff;
    color: #081828;
    font-size: 13px;
    -webkit-box-shadow: 0px 0px 20px #0000000f;
    box-shadow: 0px 0px 20px #0000000f
}

.portfolio-section .pf-content .link i {
    display: inline-block;
    margin-left: 3px
}

.portfolio-section .pf-content .link:hover {
    color: #fff
}


.our-achievement {
    background: linear-gradient(45deg, #6831e3, #f528cb);
    position: relative;
    padding-top: 70px;
    padding: 90px 0 120px 0;
    z-index: 1
}

.our-achievement::before {
    position: absolute;
    content: "";
    left: 0;
    top: -10px;
    height: 110%;
    width: 110%;
    background-image: url(https://demo.graygrids.com/themes/xpeedo/assets/images/video/xvideo-overlay.png.pagespeed.ic.Rr0ZSVNKh6.webp);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1
}

.our-achievement.style2 {
    background: linear-gradient(45deg, #018bff, #243ec4)
}

.our-achievement.style2 .single-achievement i {
    color: #018bff
}

.our-achievement.style3 {
    background: linear-gradient(45deg, #4567f4, #3cd3ad)
}

.our-achievement.style3 .single-achievement i {
    color: #4567f4
}

.our-achievement.style4 {
    background: linear-gradient(45deg, #dce35b, #45b649)
}

.our-achievement.style4 .single-achievement i {
    color: #45a247
}

.our-achievement .single-achievement {
    margin-top: 30px;
    text-align: center;
    padding: 0 50px
}

.our-achievement .single-achievement i {
    font-size: 32px;
    margin-bottom: 30px;
    height: 65px;
    width: 65px;
    line-height: 65px;
    text-align: center;
    display: inline-block;
    background: #fff;
    color: #6831e3;
    border-radius: 10px
}

.our-achievement .single-achievement h3 {
    font-size: 30px;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
    color: #fff
}

.our-achievement .single-achievement p {
    font-size: 15px;
    color: #fff;
    font-weight: 600
}


.testimonials.style4 {
    padding-bottom: 180px
}

.testimonials.style4 .single-testimonial {
    padding: 60px 50px;
    position: relative;
    text-align: center
}

.testimonials.style4 .single-testimonial:hover {
    border-color: #45a247
}

.testimonials.style4 .single-testimonial .top-section {
    text-align: center
}

.testimonials.style4 .single-testimonial .top-section h3 {
    position: relative;
    display: block;
    text-align: center;
    padding: 0;
    margin-top: 13px;
    left: 0;
    top: 0
}

.testimonials.style4 .testimonial-slider-head {
    position: relative
}

.testimonials.style4 .tns-nav {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: -60px;
    z-index: 2
}

.testimonials.style4 .tns-nav button {
    width: 7px;
    height: 7px;
    border-radius: 0;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    margin: 0;
    background: #d5d5d5;
    display: inline-block;
    border: none;
    margin-right: 9px;
    border-radius: 30px
}

.testimonials.style4 .tns-nav button.tns-nav-active {
    width: 10px;
    height: 10px;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    background: linear-gradient(45deg, #dce35b, #45b649);
outline: none;
}

.testimonials .single-testimonial {
    border: 1px solid #eee;
    border-radius: 10px;
    border: 2px solid #eee;
    margin-top: 30px;
    padding: 40px;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out
}

.testimonials .single-testimonial:hover {
    -webkit-box-shadow: 0px 20px 50px #00000017;
    box-shadow: 0px 20px 50px #00000017;
    border-color: #6831e3
}

.testimonials .single-testimonial .top-section {
    position: relative
}

.testimonials .single-testimonial .top-section img {
    height: 50px;
    width: 50px;
    border-radius: 50px
}

.testimonials .single-testimonial .top-section h3 {
    font-size: 16px;
    font-weight: 600;
    color: #081828;
    position: absolute;
    left: 70px;
    top: 4px
}

.testimonials .single-testimonial .top-section h3 span {
    font-size: 13px;
    font-weight: 400;
    display: block;
    margin-top: 2px;
    color: #888
}

.testimonials .single-testimonial p {
    margin-top: 30px
}
.team {
    background-color: #f4f7fa
}
.team.style4 .single-team .image::before {
    background: linear-gradient(45deg, #dce35b, #45b649)
}

.team .title-line {
    margin-bottom: 40px
}

.team .section-title {
    margin-bottom: 50px
}

.team .single-team {
    margin-top: 30px;
    position: relative;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    display: inline-block;
    overflow: hidden;
    background: transparent;
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    -webkit-box-shadow: 0 32px 54px 0 rgba(22, 28, 45, .16);
    box-shadow: 0 32px 54px 0 rgba(22, 28, 45, .16);
    background-color: #fff;
    padding: 10px;
    border-radius: 10px;
    text-align: center
}

.team .single-team .info-head {
    background: transparent;
    position: relative;
    z-index: 2;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    padding: 25px
}

.team .single-team:hover .info-head:before {
    opacity: 1;
    visibility: visible;
    height: 100%
}

.team .single-team:hover .info-head {
    border-color: transparent
}

.single-team .image {
    position: relative;
    text-align: center;
    border-radius: 5px;
    overflow: hidden
}

.single-team .image::before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #6831e3, #f528cb);
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    opacity: 0;
    visibility: hidden
}

.single-team .image img {
    height: 100%;
    width: 100%
}

.single-team .image .social {
    position: absolute;
    left: 50%;
    top: 50%;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    margin-top: -12px
}

.single-team .image .social li {
    display: inline-block;
    margin-right: 15px
}

.single-team .image .social li:last-child {
    margin-right: 0
}

.single-team .image .social li a {
    color: #fff;
    display: block;
    font-size: 15px
}

.single-team .image .social li a:hover {
    opacity: .7
}

.single-team:hover .image::before {
    opacity: .8;
    visibility: visible
}

.single-team:hover .social {
    opacity: 1;
    visibility: visible;
    bottom: 0
}

.team .single-team .info-box {
    text-align: center
}

.team .single-team .info-box .name {
    display: block;
    font-size: 17px;
    color: #333;
    margin-bottom: 3px;
    text-transform: capitalize
}

.team .single-team .info-box .name a {
    font-weight: 600;
    color: #081828;
    font-size: 17px
}

.team .single-team .info-box .name a:hover {
    opacity: .7
}

.team .single-team .info-box .designation {
    color: #666;
    font-size: 13px;
    -webkit-transition: all .4s ease;
    transition: all .4s ease
}











.pricing-table {
    background: #f4f7fa;
    position: relative
}

.pricing-table.style2 .single-table .table-head {
    border-bottom-color: #018bff
}

.pricing-table.style2 .single-table .amount {
    background: linear-gradient(45deg, #018bff, #243ec4);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent
}

.pricing-table.style2 .single-table .button .btn {
    background: linear-gradient(45deg, #018bff, #243ec4)
}

.pricing-table.style3 .single-table .table-head {
    border-bottom-color: #4567f4
}

.pricing-table.style3 .single-table .amount {
    background: linear-gradient(45deg, #4567f4, #3cd3ad);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.pricing-table.style3 .single-table .button .btn {
    background: linear-gradient(45deg, #4567f4, #3cd3ad)
}

.pricing-table.style4 .single-table .table-head {
    border-bottom-color: #45a247
}

.pricing-table.style4 .single-table .amount {
    background: linear-gradient(45deg, #dce35b, #45b649);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.pricing-table.style4 .single-table .button .btn {
    background: linear-gradient(45deg, #dce35b, #45b649)
}

.pricing-table .single-table {
    background: #fff;
    text-align: center;
    position: relative;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    -webkit-box-shadow: 0 10px 30px rgba(111, 111, 111, .1);
    box-shadow: 0 10px 30px rgba(111, 111, 111, .1);
    overflow: hidden;
    border-radius: 10px;
    margin-top: 30px
}

.pricing-table .single-table .table-head {
    background: #fff;
    padding: 40px 20px;
    border-bottom: 1px dashed #6831e3
}

.pricing-table .single-table:hover {
    -webkit-box-shadow: 0 32px 54px 0 rgba(22, 28, 45, .16);
    box-shadow: 0 32px 54px 0 rgba(22, 28, 45, .16)
}

.pricing-table .single-table .title h4 {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    display: block;
    margin-bottom: 0;
    text-transform: capitalize;
    color: #081828;
    margin-top: -5px
}

.pricing-table .single-table .amount {
    background: linear-gradient(45deg, #6831e3, #f528cb);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 38px;
    font-weight: 600;
    position: relative;
    display: inline-block;
    letter-spacing: -2px
}

.pricing-table .single-table .amount .duration {
    color: #888;
    font-size: 13px;
    font-weight: 400;
    display: inline-block;
    margin-left: 5px;
    letter-spacing: 0;
    position: relative;
    top: -3px
}

.pricing-table .single-table .table-list {
    margin-top: 50px
}

.pricing-table .single-table .table-list li {
    color: #444;
    margin-bottom: 15px;
    font-size: 14px
}

.pricing-table .single-table .table-list li:last-child {
    margin-bottom: 0
}

.pricing-table .single-table .button {
    padding: 40px 0 50px 0;
    text-align: center
}

.pricing-table .single-table .button .btn {
    background: linear-gradient(45deg, #6831e3, #f528cb)
}

.pricing-table .single-table .button .btn i {
    display: inline-block;
    margin-left: 5px
}

.faq .section-title {
    padding: 0
}

.faq .faq-image {
    text-align: center
}


.faq.style4 .accordion-button:not(.collapsed) {
    background: linear-gradient(45deg, #dce35b, #45b649);
    color: #fff
}

.accordion-item .accordion-button {
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    width: 100%;
    display: block;
    overflow: hidden;
    border: none;
    border: 1px solid #eee
}

.accordion-item .accordion-button span {
    float: left
}

.accordion-item .accordion-button i {
    float: right;
    font-size: 13px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.accordion-button:not(.collapsed) {
    color: #fff;
    background: linear-gradient(45deg, #6831e3, #f528cb);
    border: none;
    border-radius: 5px 5px 0 0
}

.accordion-button:not(.collapsed) i {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

.accordion-button::after {
    display: none
}

.accordion-collapse {
    border: none
}

.accordion-body {
    border: 1px solid #eee;
    border-radius: 0 0 5px 5px;
    padding: 30px 20px
}

.accordion-body p {
    margin: 0;
    margin-bottom: 20px;
    font-size: 14px
}

.accordion-body p:last-child {
    margin: 0
}

.accordion-item {
    margin-bottom: 20px
}

.contact-us {
    position: relative;
    background-color: #fff
}

.contact-us img {
    width: 100%
}
.contact-us.style4 .single-info ul li a:hover {
    color: #45a247
}

.contact-us.style4 .single-info i {
    background: linear-gradient(45deg, #dce35b, #45b649)
}

.contact-us .inner-content {
    border-radius: 5px;
    overflow: hidden
}

.contact-us .title {
    margin-bottom: 30px
}

.contact-us .contant-inner-title {
    margin-bottom: 45px
}

.contact-us .single-head {
    position: relative;
    z-index: 5
}

.contact-us .single-info {
    text-align: left;
    margin-bottom: 30px;
    padding-left: 70px;
    position: relative
}

.contact-us .single-info i {
    font-size: 18px;
    display: inline-block;
    margin-right: 20px;
    position: absolute;
    left: 0;
    top: 0;
    height: 50px;
    width: 50px;
    display: block;
    text-align: center;
    background: linear-gradient(45deg, #6831e3, #f528cb);
    color: #fff;
    line-height: 50px;
    border-radius: 5px
}

.contact-us .single-info ul {
    display: inline-block
}

.contact-us .single-info ul li span {
    display: block;
    margin-bottom: 7px;
    font-size: 13px;
    font-weight: 600;
    text-transform: capitalize;
    color: #081828
}

.contact-us .single-info ul li:last-child {
    margin-bottom: 0
}

.contact-us .single-info ul li {
    font-weight: 500;
    display: inline-block;
    font-size: 13px;
    color: #081828;
    display: block;
    margin-bottom: 4px
}

.contact-us .single-info ul li a {
    font-weight: 500;
    display: inline-block;
    font-size: 13px;
    color: #081828
}

.contact-us .single-info ul li a:hover {
    color: #6831e3
}

.contact-us .single-info .title {
    margin-bottom: 10px;
    font-weight: 500;
    color: #fff;
    font-size: 18px
}

.contact-us .single-info .title span {
    display: block;
    font-size: 14px;
    margin-top: 8px;
    font-weight: 500
}

.contact-us .form-main {
    margin-right: 50px;
    padding-left: 10px
}

.contact-us .form .form-group {
    margin-bottom: 15px;
    display: block;
    position: relative
}

.contact-us .form .form-group input {
    height: 55px;
    line-height: 55px;
    width: 100%;
    border: 2px solid #eee;
    padding: 0 20px;
    color: #333;
    border-radius: 0;
    font-weight: 400;
    border-radius: 0;
    -webkit-box-shadow: 0px 0px 10px #00000014;
    box-shadow: 0px 0px 10px #00000014
}

.contact-us .form .form-group textarea {
    height: 180px;
    width: 100%;
    border: 2px solid #eee;
    padding: 15px 20px;
    color: #333;
    border-radius: 0;
    resize: none;
    font-weight: 400;
    border-radius: 0;
    -webkit-box-shadow: 0px 0px 10px #00000014;
    box-shadow: 0px 0px 10px #00000014
}

.contact-us .form .button {
    margin: 0
}

.contact-us .form .button .btn {
    height: 50px;
    border: none
}


.footer {
    z-index: 2;
    position: relative;
    background: linear-gradient(45deg, #6831e3, #f528cb)
}



.footer.style4 {
    background: linear-gradient(45deg, #dce35b, #45b649)
}

.footer.style4::before {
    background-image: url(..images/fimg.webp)
}

.footer::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-image: url(..images/hero.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    z-index: -1
}

.footer .call-action .inner-content {
    padding: 100px 0;
    border-bottom: 1px solid #25272e
}

.footer .call-action .inner-content h2 {
    font-size: 28px;
    font-weight: 700;
    display: block;
    color: #fff
}

.footer .call-action .inner-content p {
    color: rgba(255, 255, 255, .7);
    display: block;
    margin-top: 30px;
    font-size: 15px;
    font-weight: 500;
    line-height: 30px
}

.footer .call-action .inner-content .button {
    float: right
}

.footer .call-action .inner-content .button .btn:hover {
    background-color: #fff;
    color: #6831e3
}

.footer .logo {
    margin-bottom: 26px
}

.footer .logo img {
    width: 150px
}

.footer .f-about {
    padding-right: 85px
}

.footer .f-about p {
    color: #fff;
    font-size: 14px;
    line-height: 28px
}

.footer .footer-social {
    margin-top: 30px
}

.footer .footer-social ul li {
    display: inline-block;
    margin-right: 10px
}

.footer .footer-social ul li:last-child {
    margin-right: 0
}

.footer .footer-social ul li a {
    font-size: 12px;
    display: block;
    background: transparent;
    border: none;
    color: #fff;
    position: relative;
    z-index: 3;
    height: 35px;
    width: 35px;
    display: block;
    border-radius: 6px;
    border: 1px solid #eeeeeeb3;
    text-align: center;
    line-height: 35px
}

.footer .footer-social ul li a:hover {
    color: #081828;
    background-color: #fff;
    border-color: transparent
}

.footer .footer-middle {
    padding-bottom: 120px;
    padding-top: 90px
}

.footer .single-footer {
    margin-top: 30px
}

.footer .single-footer h3 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    position: relative;
    text-transform: capitalize;
    margin-bottom: 30px
}

.footer .f-link ul li {
    margin-bottom: 18px;
    position: relative
}

.footer .f-link ul li:last-child {
    margin: 0
}

.footer .f-link ul li a {
    display: inline-block;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    position: relative;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.footer .f-link ul li a:hover {
    opacity: .7
}

.footer .f-contact ul {
    margin-top: 20px
}

.footer .f-contact ul li {
    display: block;
    margin-bottom: 15px;
    color: #fff;
    position: relative;
    padding-left: 35px
}

.footer .f-contact ul li i {
    display: inline-block;
    font-size: 18px;
    color: #fff;
    position: absolute;
    left: 0;
    top: 0
}

.footer .f-contact ul li:last-child {
    margin: 0
}

.footer .footer-bottom {
    padding: 30px 0;
    background-color: transparent;
    border-top: 2px solid #eeeeee69
}

.footer .footer-bottom .inner {
    text-align: center
}

.footer .footer-bottom .inner p {
    color: #fff;
    font-size: 14px
}

.footer .footer-bottom .inner p a {
    font-weight: 400;
    display: inline-block;
    margin-left: 6px;
    color: #fff;
}

.footer .footer-bottom .inner p a:hover {
    text-decoration: none;
}

.footer .f-contact ul li a {
    color: #fff;
}










@media only screen and (min-width:768px) and (max-width:991px) {
    .section {
        padding: 60px 0
    }
    p {
        font-size: 13px
    }
    .section-title {
        margin-bottom: 20px;
        padding: 0 90px
    }
    .section-title span {
        display: inline-block;
        margin-bottom: 8px;
        font-size: 13px
    }
    .section-title h2 {
        font-size: 25px;
        margin-top: 5px;
        line-height: 35px
    }
    .section-title.align-left {
        padding: 0;
        padding-right: 200px
    }
    .section-title p {
        font-size: 13px
    }
    .button .btn {
        padding: 12px 25px;
        font-size: 14px;
        font-weight: 500
    }
    .navbar {
        padding: 30px 0
    }
    .navbar-brand img {
        width: 130px
    }
    .header .button {
        display: none
    }
    .header .navbar-area .navbar-nav .nav-item a {
        padding: 10px 10px
    }
    .header .navbar-area.sticky .navbar-nav .nav-item a {
        padding: 10px 10px
    }
    .header .navbar-area.sticky .navbar {
        padding: 20px 0
    }
    .header .navbar-area.sticky .navbar-nav .nav-item a:hover {
        color: #fff !important;
        background-color: #6831e3
    } 
    .header.style4 .navbar-area .navbar-nav .nav-item a:hover {
        color: #fff !important;
        background-color: #45a247
    }
    .header.style4 .navbar-area.sticky .navbar-nav .nav-item a:hover {
        color: #fff !important;
        background-color: #45a247
    }
    .navbar-toggler {
        background: #fff;
        padding: 5px 10px;
        -webkit-transition: all .4s ease;
        transition: all .4s ease;
        border: none
    }
    .header .navbar-area.sticky .navbar-toggler {
        background: linear-gradient(45deg, #6831e3, #f528cb)
    }
    .header.style2 .navbar-area.sticky .navbar-toggler {
        background: linear-gradient(45deg, #018bff, #243ec4)
    }
    .header.style3 .navbar-area.sticky .navbar-toggler {
        background: linear-gradient(45deg, #4567f4, #3cd3ad)
    }
    .header.style4 .navbar-area.sticky .navbar-toggler {
        background: linear-gradient(45deg, #dce35b, #45b649)
    }
    .navbar-area .navbar-toggler .toggler-icon {
        background-color: #081828;
        width: 22px
    }
    .header .navbar-area.sticky .navbar-toggler .toggler-icon {
        background-color: #fff
    }
    .navbar-nav .nav-item {
        margin: 0;
        margin-bottom: 10px
    }
    .navbar-nav .nav-item:last-child {
        margin: 0
    }
    .navbar-nav .nav-item a {
        color: #081828;
        border: 1px solid #eee;
        display: block;
        border-radius: 4px;
        padding: 0;
        padding: 8px 10px;
        font-size: 13px
    }
    .header .navbar-nav .nav-item a:hover {
        color: #fff;
        background-color: #6831e3;
        border-color: transparent
    }
    .header .navbar-nav .nav-item a.active {
        color: #081828
    }
    .header .navbar-nav .nav-item a.active:hover {
        color: #fff
    }
    .navbar-collapse {
        padding: 12px
    }
    .header .navbar-nav .dropdown-menu {
        width: 200px;
        border: none;
        -webkit-box-shadow: none;
        box-shadow: none;
        border: 1px solid #eee;
        border-radius: 5px;
        padding: 10px 0;
        margin-top: 10px
    }
    .header .navbar-nav .dropdown-menu li a {
        padding: 8px 20px;
        font-size: 13px;
        border: none
    }
    .header .navbar-nav .dropdown-menu li a:hover {
        background-color: #6831e3;
        color: #fff !important;
        border-color: transparent
    }
    .header .navbar-nav .dropdown-menu li a::after {
        display: none
    }
    .navbar-toggler.active i::before {
        content: "\ea63";
        font-family: lineIcons
    }
    .header .navbar-nav .dropdown-menu {
        width: 200px;
        border: none;
        -webkit-box-shadow: none;
        box-shadow: none;
        border: 1px solid #eee;
        border-radius: 5px;
        padding: 10px 0
    }
    .header .navbar-nav .dropdown-menu li a {
        padding: 8px 20px;
        font-size: 13px
    }
    .header .sticky .navbar .navbar-nav .nav-item a.active,
    .header .sticky .navbar .navbar-nav .nav-item a:hover {
        color: #fff !important;
        background: #6831e3;
        border-color: transparent !important
    }
    .header.style2 .sticky .navbar .navbar-nav .nav-item a.active,
    .header.style2 .sticky .navbar .navbar-nav .nav-item a:hover {
        color: #fff !important;
        background: #018bff !important;
        border-color: transparent !important
    }
    .header.style3 .sticky .navbar .navbar-nav .nav-item a.active,
    .header.style3 .sticky .navbar .navbar-nav .nav-item a:hover {
        color: #fff !important;
        background: #4567f4 !important;
        border-color: transparent !important
    }
    .header.style4 .sticky .navbar .navbar-nav .nav-item a.active,
    .header.style4 .sticky .navbar .navbar-nav .nav-item a:hover {
        color: #fff !important;
        background: #45a247 !important;
        border-color: transparent !important
    }
    .breadcrumbs .bread-list {
        margin-top: 8px
    }
    .hero-area .hero-inner {
        height: auto;
        padding-bottom: 60px
    }
    .hero-area .hero-inner.style2 {
        height: 800px
    }
    .hero-area .hero-inner.style2 .hero-text {
        margin-top: 160px
    }
    .hero-area::after {
        z-index: 0
    }
    .hero-area .hero-inner {
        padding-bottom: 130px
    }
    .hero-area .hero-image {
        display: none
    }
    .hero-area .hero-text {
        float: none;
        margin-top: 140px
    }
    .hero-area .hero-text h1 {
        font-size: 30px;
        line-height: 40px;
        letter-spacing: 0
    }
    .hero-area .hero-text .button {
        margin-top: 25px
    }
    .hero-area .hero-text .button .btn.primary {
        border: 2px solid #fff;
        background: transparent;
        color: #fff;
        padding: 10px 30px
    }
    .hero-area.style4 .hero-text h1 {
        font-size: 30px;
        line-height: 40px;
        letter-spacing: 0
    }
    .hero-area.style4 .hero-inner {
        padding-bottom: 100px
    }
    .hero-area.style4 .tns-controls button {
        width: 45px;
        height: 45px;
        font-size: 14px;
        margin-top: -22px;
        border-radius: 5px;
        line-height: 38px
    }
    .features .single-feature .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 30px
    }
    .work-process .single-process {
        padding: 0
    }
    .work-process .single-process .icon {
        height: 100px;
        width: 100px;
        line-height: 100px;
        font-size: 25px
    }
    .work-process .single-process .icon span {
        height: 30px;
        width: 30px;
        line-height: 30px;
        font-size: 13px
    }
    .work-process .single-process h3 {
        font-size: 16px;
        margin-top: 25px
    }
    .work-process .single-process p {
        margin-top: 15px;
        font-size: 13px
    }
    .testimonials.style4 {
        padding-bottom: 110px
    }

    .faq .section-title {
        padding-bottom: 30px
    }
    .our-achievement {
        padding-top: 20px
    }
    .our-achievement .single-achievement {
        margin-top: 40px
    }
    .our-achievement .single-achievement i {
        font-size: 25px;
        margin-bottom: 20px;
        height: 60px;
        width: 60px;
        line-height: 65px
    }
    .our-achievement .single-achievement h3 {
        font-size: 27px;
        font-weight: 700;
        margin-bottom: 4px;
    }
    .our-achievement .single-achievement p {
        font-size: 14px;
    }
    .our-achievement:before {
        background-size: cover;
    }
    .portfolio-section .portfolio-btn-wrapper button {
        font-size: 13px
    }
    .portfolio-section .grid {
        margin-top: 50px
    }
    .team .section-title {
        margin-bottom: 20px
    }
    .contact-us .form-main {
        margin: 0 !important;
        padding: 0 !important;
        margin-top: 20px !important
    }
    .contact-us .single-info {
        padding-left: 64px;
        display: inline-block;
        margin-right: 15px;
        margin-top: 40px;
        margin-bottom: 0
    }
    .contact-us .single-info:last-child {
        margin-right: 0
    }
    .footer .footer-social ul li {
        margin-right: 10px;
        margin-top: 10px
    }
    .footer .f-about {
        padding-right: 0
    }
    .footer .f-link ul li {
        margin-bottom: 13px
    }
    .footer .f-about p {
        padding-right: 80px
    }
    .footer .single-footer {
        padding-top: 35px;
        margin-top: 35px
    }

}

@media only screen and (max-width:767px) {
    .section {
        padding: 50px 0
    }
    .section-title {
        margin-bottom: 20px;
        padding: 0
    }
    .section-title span {
        display: inline-block;
        margin-bottom: 8px;
        font-size: 12px
    }
    .section-title h2 {
        font-size: 20px;
        line-height: 28px
    }
    .section-title.align-left {
        padding: 0;
        padding-right: 0
    }
    p {
        font-size: 13px
    }
    .section-title p {
        font-size: 13px
    }
    .button .btn {
        padding: 12px 25px;
        font-size: 14px;
        font-weight: 500
    }


    .navbar {
        padding: 30px 0
    }
    .navbar-brand img {
        width: 120px
    }
    .header .button {
        display: none
    }
    .header .navbar-area .navbar-nav .nav-item a {
        padding: 10px 10px
    }
    .header .navbar-area.sticky .navbar-nav .nav-item a {
        padding: 10px 10px
    }
    .header .navbar-area.sticky .navbar {
        padding: 20px 0px;
    }
    .header .navbar-area.sticky .navbar-nav .nav-item a:hover {
        color: #fff !important;
        background-color: #6831e3
    }


    .header.style4 .navbar-area .navbar-nav .nav-item a:hover {
        color: #fff !important;
        background-color: #45a247
    }
    .header.style4 .navbar-area.sticky .navbar-nav .nav-item a:hover {
        color: #fff !important;
        background-color: #45a247
    }
    .navbar-toggler {
        background: #fff;
        padding: 4px 10px;
        -webkit-transition: all .4s ease;
        transition: all .4s ease;
        border: none
    }
    .header .navbar-area.sticky .navbar-toggler {
        background: linear-gradient(45deg, #6831e3, #f528cb)
    }

    .header.style4 .navbar-area.sticky .navbar-toggler {
        background: linear-gradient(45deg, #dce35b, #45b649)
    }
    .navbar-area .navbar-toggler .toggler-icon {
        background-color: #081828;
        width: 20px
    }
    .header .navbar-area.sticky .navbar-toggler .toggler-icon {
        background-color: #fff
    }
    .navbar-nav .nav-item {
        margin: 0;
        margin-bottom: 10px
    }
    .navbar-nav .nav-item:last-child {
        margin: 0
    }
    .navbar-nav .nav-item a {
        color: #081828;
        border: 1px solid #eee;
        display: block;
        border-radius: 4px;
        padding: 0;
        padding: 8px 10px;
        font-size: 13px
    }
    .header .navbar-nav .nav-item a:hover {
        color: #fff !important;
        background-color: #6831e3;
        border-color: transparent
    }
    .header .navbar-nav .nav-item a.active {
        color: #081828
    }
    .header .navbar-nav .nav-item a.active:hover {
        color: #fff
    }
    .navbar-collapse {
        padding: 12px
    }
  
    .navbar-toggler.active i::before {
        content: "\ea63";
        font-family: lineIcons
    }
    .header .navbar-nav .dropdown-menu {
        width: 200px;
        border: none;
        -webkit-box-shadow: none;
        box-shadow: none;
        border: 1px solid #eee;
        border-radius: 5px;
        padding: 10px 0
    }
    .header .navbar-nav .dropdown-menu li a {
        padding: 8px 20px;
        font-size: 13px
    }
    .header .sticky .navbar .navbar-nav .nav-item a.active,
    .header .sticky .navbar .navbar-nav .nav-item a:hover {
        color: #fff !important;
        background: #6831e3;
        border-color: transparent !important
    }

    .header.style4 .sticky .navbar .navbar-nav .nav-item a.active,
    .header.style4 .sticky .navbar .navbar-nav .nav-item a:hover {
        color: #fff !important;
        background: #45a247 !important;
        border-color: transparent !important
    }
    .hero-area .hero-inner {
        height: auto;
        padding-bottom: 60px
    }
    .hero-area::after {
        z-index: 0
    }
    .hero-area .hero-inner {
        padding-bottom: 80px
    }
    .hero-area .hero-image {
        display: none
    }
    .hero-area .hero-text {
        float: none;
        margin-top: 130px
    }
    .hero-area .hero-text h1 {
        font-size: 22px;
        line-height: 28px;
        letter-spacing: 0
    }
    .hero-area .hero-text p {
        font-size: 13px;
        color: #fff
    }
    .hero-area .hero-text .button {
        margin-top: 25px
    }
    .hero-area .hero-text .button .btn {
        text-align: center;
        display: inline-block;
        margin: 0;
        margin-top: 10px !important;
        font-size: 13px;
        width: 65%
    }
    .hero-area .hero-text .button .btn.primary {
        border: 2px solid #fff;
        background: transparent;
        color: #fff;
        padding: 10px 30px
    }
    .hero-area.style4 .hero-text h1 {
        font-size: 22px;
        line-height: 28px;
        letter-spacing: 0;
        margin-bottom: 20px
    }
    .hero-area.style4 .hero-inner {
        padding-bottom: 80px
    }
    .hero-area.style4 .tns-controls button {
        width: 40px;
        height: 40px;
        font-size: 13px;
        margin-top: -20px;
        border-radius: 5px;
        line-height: 35px
    }
    .hero-area.style4 .hero-text .button .btn {
        width: auto
    }
    .services .single-service .text h2 {
        font-size: 16px;
        margin-bottom: 15px
    }
    .services .single-service .text [h2] {
        font-size: 13px
    }
    .testimonials.style4 {
        padding-bottom: 80px
    }
    .testimonials.style4 .tns-nav {
        bottom: -45px
    }
    .testimonials.style4 .single-testimonial {
        padding: 45px 30px
    }

    .work-process .section-title {
        margin: 0
    }
    .work-process .single-process {
        padding: 0;
        margin-top: 40px
    }
    .work-process .single-process .icon {
        height: 100px;
        width: 100px;
        line-height: 100px;
        font-size: 25px
    }
    .work-process .single-process .icon span {
        height: 30px;
        width: 30px;
        line-height: 30px;
        font-size: 13px
    }
    .work-process .single-process h3 {
        font-size: 16px;
        margin-top: 25px
    }
    .work-process .single-process p {
        margin-top: 15px;
        font-size: 13px
    }
    .portfolio-section .portfolio-btn-wrapper button {
        font-size: 13px
    }
    .portfolio-section .grid {
        margin-top: 50px
    }
    .portfolio-section {
        padding-bottom: 20px
    }
    .app-screenshorts {
        padding-bottom: 60px !important
    }
    .app-screenshorts .tns-nav {
        bottom: -20px
    }
    .our-achievement {
        padding-top: 20px
    }
    .our-achievement .single-achievement {
        margin-top: 40px
    }
    .our-achievement .single-achievement i {
        font-size: 25px;
        margin-bottom: 20px;
        height: 60px;
        width: 60px;
        line-height: 65px
    }
    .our-achievement .single-achievement h3 {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 4px
    }
    .our-achievement .single-achievement p {
        font-size: 14px
    }
    .our-achievement:before {
        background-size: cover
    }
    .team .section-title {
        margin-bottom: 20px
    }

    .faq-image {
        margin-top: 30px
    }
    .faq-image img {
        width: 100%
    }

    .contact-us .form .form-group input {
        height: 50px !important;
        line-height: 50px !important
    }
    .contact-us .form-main {
        margin: 0 !important;
        padding: 0 !important;
        margin-top: 20px !important
    }
    .contact-us .single-info {
        padding-left: 70px;
        display: block;
        margin-right: 0;
        margin-top: 30px;
        margin-bottom: 0
    }
    .contact-us .single-info:last-child {
        margin-bottom: 0
    }
    .footer .call-action .inner-content h2 {
        font-size: 22px
    }
    .footer .call-action .inner-content {
        padding: 60px 0
    }
    .footer .call-action .inner-content p {
        margin-top: 16px;
        font-size: 13px;
        font-weight: 500;
        line-height: 23px
    }
    .footer .call-action .inner-content .button .btn {
        font-size: 13px
    }
    .footer .f-link ul li {
        margin-bottom: 13px
    }
    .footer .f-about p {
        padding-right: 80px
    }
    .footer .single-footer {
        padding-top: 35px;
        margin-top: 35px
    }
    .footer .single-footer.sm-custom-border {
        border-top: 1px dashed #eeeeee52
    }
    .footer .f-about p {
        padding-right: 0;
        line-height: 24px
    }
    .contact-us {
        position: relative;
        background-color: #fff
    }
    
    .contact-us img {
        width: 100%
    }


}