/********
Base CSS
*********/

@import url('https://fonts.googleapis.com/css?family=Poppins:200,200i,300,300i,400,400i,500,500i,600,600i,700,700i&display=swap');
* {
    padding: 0;
    margin: 0;
}


/*** Body CSS ***/

body {
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.9;
    color: #576477;
}

p {
    margin-bottom: 0;
}


/*** Focus CSS ***/

a:focus,
input:focus,
button:focus,
textarea:focus {
    outline: 0 solid;
}

a:hover {
    text-decoration: none;
}


/*** Image CSS ***/

img {
    max-width: 100%;
    height: auto;
}


/*** Heading CSS ***/

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    color: #001737;
    font-family: 'Poppins', sans-serif;
}

h1 {
    font-size: 64px;
}

h2 {
    font-size: 36px;
}

h3,
h3 a {
    font-size: 23px;
}

h4 {
    font-size: 20px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}


/*** Ul & Li CSS ***/

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.mainmenu li {
    display: inline-block;
}
/*** Color Typo ***/
.white,
.white a,
.white h1,
.white h2,
.white h3,
.white h4,
.white h5,
.white h6{
    color: #ffffff;
}

/*** Section padding CSS ***/

.pb-70 {
	padding-bottom: 70px;
}

.mt-20 {
	margin-top: 20px;
}
.mt-50 {
	margin-top: 20px;
}

.pd-80 {
    padding: 80px 0;
}

.pd-100 {
    padding: 100px 0;
}

.pt-80 {
    padding-top: 80px;
}

.pt-100 {
    padding-top: 100px;
}

.pb-80 {
    padding-bottom: 80px;
}

.pb-100 {
    padding-bottom: 100px;
}


/*** Overflow hidden CSS ***/

.o-hi {
    overflow: hidden;
}



/*** Overflow hidden CSS ***/

.aic {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}


/*** Display flex CSS ***/

.dfx {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}


/*** Background CSS ***/

.bg {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}


/***************
Header area CSS
***************/

.header-area {
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

.header-absolute {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 9;
    padding: 15px 0;
}

#mainmenu-area-sticky-wrapper {
    position: relative;
    z-index: 9;
}

.is-sticky .header-area {
    -webkit-box-shadow: 0 0 4px rgb(0 0 0 / 0.14), 0 4px 8px rgb(218 213 213 / 0.31);
    box-shadow: 0 0 4px rgb(0 0 0 / 0.14), 0 4px 8px rgb(218 213 213 / 0.31);
    z-index: 99999;
    margin: 0;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    background-color: #ffffff;
    padding: 13px 0;
}


/*** Menu CSS ***/

.mainmenu {
    text-align: center;
}

.mainmenu li {
    position: relative;
}

.mainmenu li a {
    display: block;
    padding: 15px 20px;
    color: #576477;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    font-size: 15px;
}



.mainmenu li ul {
    position: absolute;
    left: 0;
    top: 63px;
    width: 200px;
    background-color: white;
    text-align: left;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    padding: 10px;
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -webkit-box-shadow: 2px 5px 20px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 2px 5px 20px 0 rgba(0, 0, 0, 0.1);
    border-radius: 3px;
}

.mainmenu li:hover ul {
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
}

.mainmenu li li {
    display: block;
    position: relative;
}

.mainmenu li ul li>a {
    padding: 10px 20px;
    font-weight: 400;
    color: #576477 !important;
    transition: all .3s;
}

.mainmenu li li:hover>a {
    color: #C82C29 !important;
    
}


.sticky .mainmenu li li:hover>a, 
.mainmenu li li:hover>a{
    background: rgba(0, 0, 0, 0.1);
    transition: all .3s;
    padding-left: 23px;
}




.is-sticky .mainmenu li ul li a {
    padding: 10px 20px;
}
.is-sticky .mainmenu li ul li a:hover{
    padding-left: 23px;
}
.mainmenu li a:after {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    content: "";
    background-color: #C82C29;
    z-index: -1;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    border-radius: 5px;
}

.mainmenu li a.active:after,
.mainmenu li:hover a:after {
    width: 100%;
    left: 0;
    right: auto;
}

.mainmenu li ul li a:after {
    opacity: 0;
}


/*************
Hero area CSS
*************/

.hero-area {
    background-color: #E5E9F2;
    position: relative;
    padding-top: 150px;
    padding-bottom: 100px;
}

.hero-area .h-icon {
    font-size: 25px;
    background-color: #362785;
    width: 55px;
    height: 55px;
    display: inline-block;
    color: #fff;
    text-align: center;
    line-height: 55px;
    border-radius: 5px;
    margin-bottom: 40px;
    -webkit-box-shadow: 0px 5px 30px 5px rgba(0, 0, 0, .3);
    box-shadow: 0px 5px 30px 5px rgba(0, 0, 0, .3);
}

.hero-area h3 {
    color: #8392A5;
    margin-bottom: 20px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-area h1 span {
    font-weight: 200;
}

.hero-area h1 {
    line-height: 1.1;
    margin-bottom: 40px;
}


/*** Button CSS ***/

.button {
    display: inline-block;
    background-color: #C82C29;
    padding: 12px 30px;
    color: #fff;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: 500;
    position: relative;
    z-index: 1;
    transition: all .5s;
}


.cbutton button {
    background-color: #FFCE63;
    padding: 14px 28px;
    color: #000;
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: 500;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: none;
    transition: all .5s;
}

.cbutton button:after {
    position: absolute;
    right: 0;
    top: 0;
    width: 0%;
    height: 100%;
    content: "";
    background-color: #001737;
    z-index: -1;
    border-radius: 5px;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

.cbutton button:hover:after {
    width: 100%;
    left: 0;
    right: auto;
}



.button:hover, .cbutton button:hover {
    color: white;
    cursor: pointer
}

.button:after {
    position: absolute;
    right: 0;
    top: 0;
    width: 0%;
    height: 100%;
    content: "";
    background-color: #001737;
    z-index: -1;
    border-radius: 5px;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

.button:hover:after {
    width: 100%;
    left: 0;
    right: auto;
}

.header-btn a.button{
    font-size: 18px;
    padding: 13px 25px;
}


.hero-img {
    position: relative;
}

.hero-img img {
    position: relative;
    z-index: 3;
    border: 10px solid white;
    border-radius: 45px;
}

.hero-img img.path-1-img {
    position: absolute;
    right: -21px;
    top: 58%;
    width: 354px;
    margin-top: -15px;
    pointer-events: none;
    border: none;
}

.hero-area .col-lg-7 {
}

img.path-1-img.path-3-img {
    right: -320px;
    bottom: 17%;
    top: auto;
    pointer-events: none;
    z-index: 2;
}

img.path-1-img.path-2-img {
    left: -42%;
    bottom: -125px;
    top: auto;
    z-index: 2;
    pointer-events: none;
    width: 336px;
}

        .waves-block {
            position: absolute;
            width: 800px;
            height: 800px;
            right: -240px;
            top: 50%;
            -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
            z-index: 2;
        }

        .waves-block .waves {
            position: absolute;
            width: 100%;
            height: 100%;
            background: rgba(54, 39, 133, 0.2);
            opacity: 0;
            -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
            border-radius: 50%;
            background-clip: padding-box;
            -webkit-animation: waves 6s ease-in-out infinite;
            animation: waves 6s ease-in-out infinite;
        }

        .waves-block .wave-1 {
            -webkit-animation-delay: 0s;
            animation-delay: 2s;
        }

        .waves-block .wave-2 {
            -webkit-animation-delay: 1s;
            animation-delay: 3s;
        }

        .waves-block .wave-3 {
            -webkit-animation-delay: 2s;
            animation-delay: 4s;
        }


        @keyframes waves {
            0% {
                -webkit-transform: scale(0.5, 0.5);
                transform: scale(0.5, 0.5);
                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)";
            }
        }



/*****************
Features area CSS
*****************/

.title h6 {
    color: #8392A5;
    font-weight: 400;
    margin-bottom: 20px;
}

p {
	margin-bottom: 10px;
}

.title h2 span {
    font-weight: 200;
}

.title h2 {
    line-height: 1.4;
}

.title {
    margin-bottom: 20px;
}

.single-features-item {
    margin-bottom: 30px;
    -webkit-box-shadow: 10px 10px 40px -6px rgba(0, 0, 0, 0.1);
    box-shadow: 10px 10px 40px -6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 7px;
}

.features-icon {
    width: 20%;
    margin-right: 8%;
}

.features-content {
    width: 80%;
}

.features-icon .mdi {
    display: inline-block;
    width: 64px;
    height: 64px;
    line-height: 64px;
    text-align: center;
    background-color: #35BFE6;
    border-radius: 5px;
    color: white;
    font-size: 25px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    border: 1px solid #35BFE6;
}

.features-icon span.mdi.mdi-file-music {
    background-color: #7142F8;
    border: 1px solid #7142F8;
}

.features-icon span.mdi.mdi-settings {
    background-color: #ECBF24;
    border-color: #ECBF24;
}

.features-icon span.mdi.mdi-account {
    background-color: #5CBC2B;
    border-color: #5CBC2B;
}

.features-icon span.mdi.mdi-radio {
    background-color: #F38550;
    border-color: #F38550;
}

.features-icon span.mdi.mdi-server {
    background-color: #FA4C9A;
    border-color: #FA4C9A;
}

.single-features-item:hover span.mdi.mdi-account {
    color: #5CBC2B;
}

.single-features-item:hover span.mdi {
    background-color: white;
    color: #35BFE6;
}

.single-features-item:hover span.mdi.mdi-file-music {
    color: #7142F8;
}

.single-features-item:hover span.mdi.mdi-settings {
    color: #ECBF24;
}

.single-features-item:hover span.mdi.mdi-radio {
    color: #F38550;
}

.single-features-item:hover span.mdi.mdi-server {
    color: #FA4C9A;
}

.features-image {
    position: relative;
    z-index: 1;
    text-align: center;
}

.features-image:after {
    position: absolute;
    right: 8%;
    bottom: 23%;
    width: 100px;
    height: 300px;
    content: "";
    background-color: #C82C29;
    z-index: -1;
    -webkit-transform: rotate(23deg);
    -ms-transform: rotate(23deg);
    transform: rotate(23deg);
    border-radius: 0 20px;
    -webkit-animation: animatebg 3s linear infinite;
    animation: animatebg 3s linear infinite;
}

@-webkit-keyframes animatebg {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    50% {
        -webkit-transform: rotate(23deg);
        transform: rotate(23deg);
    }
    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@keyframes animatebg {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    50% {
        -webkit-transform: rotate(23deg);
        transform: rotate(23deg);
    }
    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

.features-image img {
    box-shadow: 0 10px 55px rgba(0,0,0,.1);
    border-radius: 34px;
}


.features-area .title {
    margin-bottom: 50px;
}


/*** Counter area CSS ***/

.c-border-bg {
    position: relative;
    z-index: 1;
    padding-bottom: 100px;
    padding-top: 50px;
}

.c-border-bg:after {
    background-image: url(../image/Path-4.png);
    position: absolute;
    left: 0;
    top: -40px;
    content: "";
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.counter-number {
    font-size: 48px;
    color: #001737;
    font-weight: 600;
}

.single-counter-box h6 {
    font-weight: 500;
    color: #8392A5;
    text-transform: uppercase;
}

.single-counter-box {
    text-align: center;
}


/******************
Rectangle area CSS
******************/

.boxed-btn {
    background-color: #001737;
    display: inline-block;
    padding: 10px 15px;
    border-radius: 5px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    width: 180px;
}

.btn-icon-img {
    width: 15%;
    margin-right: 10px;
}

.btn-content {
    width: 80%;
}

.btn-content h6 {
    color: #fff;
    font-size: 14px;
    margin-bottom: 0;
}

.btn-content h6 span {
    display: block;
    font-weight: 300;
    font-size: 12px;
    margin-bottom: 8px;
}

.boxed-btn:hover, .boxed-btn.active{
    background-color: #C82C29;
}

.boxed-btn.right-btn {
    margin-left: 15px;
}

.list {
    padding: 0;
    margin: 0;
    list-style: none;
    margin-bottom: 45px;
}

.list li:before {
    content: '\f12c';
    font-family: "Material Design Icons";
    color: #38D16A;
    font-size: 23px;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 2px;
}

.list li {
    display: block;
    color: #001737;
    font-weight: 500;
    font-size: 18px;
    position: relative;
    padding-left: 35px;
    margin-bottom: 20px;
    line-height: 23px;
}

.rectangle-img {
    position: relative;
    z-index: 1;
}

.rectangle-img img.mask {
    position: absolute;
    left: 5%;
    top: 25%;
    pointer-events: none;
    -webkit-animation: maskimg 15s linear infinite;
    animation: maskimg 15s linear infinite;
    margin-right: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,.1);
    border-radius: 10px;
}

@-webkit-keyframes maskimg {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(0.7);
        transform: scale(0.7);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes maskimg {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(0.7);
        transform: scale(0.7);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.rectangle-img img.message-1 {
    position: absolute;
    right: 3%;
    bottom: 20%;
    pointer-events: none;
    margin-right: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,.1);
    border-radius: 10px;
}

.title .mdi {
    background-color: #362785;
    width: 50px;
    height: 50px;
    line-height: 50px;
    display: inline-block;
    text-align: center;
    color: white;
    font-size: 25px;
    border-radius: 50% 50% 0;
    margin-bottom: 30px;
    -webkit-box-shadow: 0px 7px 30px rgba(0, 0, 0, .3);
    box-shadow: 0px 7px 30px rgba(0, 0, 0, .3);
}

.rectangle-area {
    position: relative;
    z-index: 1;
}

.rectangle-area {
    background: #e5e8e7;
    background: -webkit-gradient(linear, left top, left bottom, from(#e5e8e7), to(#fdfdfd));
    background: -o-linear-gradient(top, #e5e8e7 0%, #fdfdfd 100%);
    background: linear-gradient(to bottom, #e5e8e7 0%, #fdfdfd 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e5e8e7', endColorstr='#fdfdfd', GradientType=0);
}

.rectangle-img:after {
    height: 500px;
    width: 500px;
    background: white;
    border-radius: 50%;
    -webkit-animation: rectangleimg 3s linear infinite;
    animation: rectangleimg 3s linear infinite;
    position: absolute;
    left: -10%;
    top: 14%;
    content: "";
    z-index: -1;
}

@-webkit-keyframes rectangleimg {
    0% {
        -webkit-box-shadow: 0 0 0 0 white;
        box-shadow: 0 0 0 0 white
    }
    50% {
        -webkit-box-shadow: 0 0 0 50px rgba(255, 255, 255, .3);
        box-shadow: 0 0 0 50px rgba(255, 255, 255, .3)
    }
    90% {
        -webkit-box-shadow: 0 0 0 50px rgba(255, 255, 255, .0);
        box-shadow: 0 0 0 50px rgba(255, 255, 255, .0)
    }
    100% {
        -webkit-box-shadow: 0 0 0 50px rgba(255, 255, 255, .0);
        box-shadow: 0 0 0 50px rgba(255, 255, 255, .0)
    }
}

@keyframes rectangleimg {
    0% {
        -webkit-box-shadow: 0 0 0 0 white;
        box-shadow: 0 0 0 0 white
    }
    50% {
        -webkit-box-shadow: 0 0 0 50px rgba(255, 255, 255, .3);
        box-shadow: 0 0 0 50px rgba(255, 255, 255, .3)
    }
    90% {
        -webkit-box-shadow: 0 0 0 50px rgba(255, 255, 255, .0);
        box-shadow: 0 0 0 50px rgba(255, 255, 255, .0)
    }
    100% {
        -webkit-box-shadow: 0 0 0 50px rgba(255, 255, 255, .0);
        box-shadow: 0 0 0 50px rgba(255, 255, 255, .0)
    }
}

img.shape-img {
    position: absolute;
    right: -10%;
    top: 34%;
    z-index: -1;
    pointer-events: none;
}

.rectangle-img img {
    margin-right: 100px;
    box-shadow: 0 10px 55px rgba(0,0,0,.1);
    border-radius: 32px;
}


/********************
Testimonial area CSS
********************/

.testimonial-area {
    position: relative;
    z-index: 1;
    padding: 130px 0 80px;
}

.testimonial-area:after {
    background-color: #362785;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 65%;
    content: "";
    z-index: -1;
}

.t-title h6,
.t-title h2 {
    color: white;
}

.t-title h6 {
    font-weight: 400;
    text-transform: uppercase;
}

.t-title h2 span {
    font-weight: 200;
}

.nav-bar {
    text-align: right;
    margin-top: 25px;
}

.nav-bar button {
    background: none;
    border: none;
    color: white;
    font-size: 25px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin: 0 10px;
    position: relative;
    z-index: 1;
    transition: all .3s;
}


.testimonial2 button:hover{
    color: #C82C29
}

button.nextbtn:hover {
    padding-left: 10px;
    transition: all .3s;
}

button.prevbtn:hover {
    padding-right: 10px;
    transition: all .3s;
}


.nav-bar button.prevbtn:after {
    position: absolute;
    right: -10px;
    top: 0;
    width: 2px;
    height: 50px;
    content: "";
    background-color: white;
    -webkit-transform: rotate(20deg);
    -ms-transform: rotate(20deg);
    transform: rotate(20deg);
    opacity: .2;
}

.t-carousel.nav-bar {
    text-align: left;
}

.single-c-item {
    background-color: white;
    padding: 40px 30px;
    border-radius: 3px;
    position: relative;
    z-index: 1;
    -webkit-box-shadow: 0 10px 30px -10px rgba(0, 0, 0, .1);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, .1);
    margin: 30px 15px;
}

.single-c-item h5 {
    margin-bottom: 20px;
}

.t-image img {
    border-radius: 50%;
}

.t-content {
    margin-top: 40px;
}

.t-image {
    width: 20%;
    margin-right: 20px;
}

.t-text {
    width: 80%;
}

.t-text h6 span {
    display: block;
    font-size: 14px;
    color: #576477;
    font-weight: 400;
    margin-top: 8px;
}

.quote-icon {
    position: absolute;
    right: 10%;
    bottom: 8%;
    font-size: 50px;
    color: rgba(0, 0, 0, .1);
    z-index: -1;
}


/**********************
Screen slider area CSS
**********************/

.gallery-slider .slide-item {
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    margin: 30px 0px;
    border-radius: 30px;
    overflow: hidden;
    -webkit-box-shadow: 0px 0px 0px 0px #ffffff, 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 0px 0px #ffffff, 0px 0px 30px 0px rgba(0, 0, 0, 0.1)
}

.gallery-slider .swiper-slide-active .slide-item {
    -webkit-box-shadow: 0px 0px 0px 12px #ffffff, 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 0px 12px #ffffff, 0px 0px 30px 0px rgba(0, 0, 0, 0.1)
}

.swiper-container {
    padding-bottom: 0;
}


/******************
Subscribe area CSS
******************/

button.button {
    border: none;
    cursor: pointer;
}

.form-area button.button {
    position: absolute;
    right: 8%;
    top: 0;
    border-radius: 0 5px 5px 0;
}

.form-area button.button:after {
    border-radius: 0 5px 5px 0;
}

.form-area input[type="email"] {
    padding: 11px 20px 11px 45px;
    width: 82%;
    border-radius: 5px;
    border: 1px solid #E5E9F2;
}

span.form-icon {
    position: relative;
}

span.form-icon i.mdi.mdi-email-outline {
    position: absolute;
    bottom: -8px;
    left: 18px;
    font-size: 18px;
    color: #8392A5;
}

.form-area {
    position: relative;
    margin-top: 40px;
}

p.circle-text .mdi {
    font-size: 18px;
    display: inline-block;
}

p.circle-text {
    margin-top: 15px;
}

.subscribe {
    position: relative;
    z-index: 1;
}

.subscribe:after {
    background-image: url(../image/Path-4.png);
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    width: 100%;
    height: 100%;
    z-index: -1;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}

.subscribe-bg-c {
    background-color: #ffffff52;
    padding: 42px;
    -webkit-box-shadow: 0 5px 30px rgba(0, 0, 0, .1);
    box-shadow: 0 5px 30px rgba(0, 0, 0, .1);
    border-radius: 5px;
}


/***************
Footer area CSS
***************/

.footer-area {
    background: #ffffff;
    background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#dae1e9));
    background: -o-linear-gradient(top, #ffffff 0%, #dae1e9 100%);
    background: linear-gradient(to bottom, #ffffff 0%, #dae1e9 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#dae1e9', GradientType=0);
}

.footer-btn,
.copyright-section {
    text-align: right;
}

.footer-btn h4 {
    margin-bottom: 25px;
}

.footer-btn .boxed-btn {
    text-align: left;
}

.copyright-section li a {
    padding-left: 15px;
    display: block;
    font-weight: 500;
    color: #576477;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.copyright {
    padding-top: 50px;
}

a.footer-logo {
    margin-bottom: 15px;
    display: block;
}

.copyright-section li a:hover {
    color: #C82C29;
}

.sponsor-area{
    color: #8392A5;
    font-size: 20px;
}
/*************
Preloader CSS
*************/

.preloader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: url(../image/preloader/preloader-2.gif) center no-repeat #fff;
}


/*****************
Scroll to top CSS
*****************/

#topcontrol {
    z-index: 9;
}

#topcontrol {
    font-size: 16px;
    font-weight: 900;
    color: white;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background-color: #C82C29;
    border-radius: 50%;
    -webkit-box-shadow: 0 5px 20px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 20px 0px rgba(0, 0, 0, 0.1);
}

#topcontrol:hover {
    background-color: #35BFE6;
}
/*********************
CSS Index
* Base CSS
* Header area CSS
* Hero area CSS
* Swiper Slider CSS
* Service area CSS
* Features area CSS
* Tab area CSS
* Testimonial area CSS
* CTA area CSS
* Footer area CSS
* Blog Page CSS
*********************/


/*********************
Blog Page CSS
* Breadcrumb area CSS
* Blog area CSS
*********************/


/*********************
Single Blog Page CSS
*********************/


/***************
Header area CSS
***************/

.header-6 .mainmenu li a {
    color: #C0CCDA;
}

.header-6 .mainmenu li:hover a {
    color: white;
}

.is-sticky .header-6 .mainmenu li a {
    color: #576477;
}


.header-6 .button,
.hero-6 .button {
    background-color: #00C1B1;
}

/***************
Hero area CSS
***************/

.hero-6 {
    background: #4934b6;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(23%, #4934b6), to(#fcfcfe));
    background: -o-linear-gradient(top, #4934b6 23%, #fcfcfe 100%);
    background: linear-gradient(to bottom, #4934b6 23%, #fcfcfe 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4934b6', endColorstr='#fcfcfe', GradientType=0);
}

.hero-6 {
    color: white;
    padding-bottom: 30px;
    position: relative;
    z-index: 1;
}

.hero-6 h1 {
    color: white;
    margin-bottom: 20px;
}

.hero-6 h2 {
    color: white;
    font-weight: 200;
    margin-bottom: 40px;
}

.hero-6 h2 strong.typing {
    font-weight: bold;
    text-decoration: underline;
    color: white;
}

.play-btn {
    width: 40px;
    height: 40px;
    line-height: 40px;
    background-color: white;
    font-size: 25px;
    border-radius: 50%;
    color: black;
    display: inline-block;
    margin: 0px 15px;
}

.hero-circle-img img {
    position: absolute;
    left: -10%;
    top: -10%;
    width: 570px;
}

.hero-circle-img img.circle-2 {
    left: auto;
    right: -3%;
    width: 100px;
    top: 7%;
}


/*****************
Swiper Slider CSS
*****************/

.swiper-6 {
    padding-top: 100px;
}

.hero-6-slide-img {
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, .2);
    box-shadow: 0 0 20px rgba(0, 0, 0, .2);
}

.swiper-slide {
    opacity: .3;
}

.swiper-slide.swiper-slide-active {
    opacity: 1;
}

.service-6-area h3 {
	margin-top: 10px;
}

.features-6 h3 {
	margin-top: 10px;
}

.cta-area h3 {
	margin-top: 10px;
}

/***************
Service area CSS
***************/

.service-6-area .title {
    margin-bottom: 20px;
}

.service-6-area .icon {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    line-height: 85px;
    -webkit-clip-path: none;
    clip-path: none;
}

.service-6-area .color-o .icon {
    -webkit-box-shadow: 0 23px 30px rgba(243, 133, 80, 0.3);
    box-shadow: 0 23px 30px rgba(243, 133, 80, 0.3);
}

.service-6-area .color-b .icon {
    -webkit-box-shadow: 0 23px 30px rgba(53, 191, 230, 0.3);
    box-shadow: 0 23px 30px rgba(53, 191, 230, 0.3);
}


/*****************
Features area CSS
*****************/

.features-6 {
    padding-top: 100px;
    position: relative;
    z-index: 1;
}

.features-6:after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-image: url(../image/features-6-bg.png);
    background-size: cover;
    background-position: top center;
    z-index: -1;
}

.features-6-img:after {
    background-image: url(../image/features-6-2-bg.png);
}

.features-6-img:after,
.f-i-right-6:after {
    background-size: cover;
    background-position: center;
    background-color: transparent;
}

.f-i-right-6:after {
    width: 290px;
    height: 290px;
    bottom: 18%;
    top: auto;
}

.f-i-right-6:after {
    background-image: url(../image/features-6-3-bg.png.png);
}

.features-6-right .title {
    margin-bottom: 50px;
}

.s-icon-6 {
    width: 5%;
    margin-right: 20px;
}

.s-icon-6 img {
    pointer-events: none;
}

.s-text-6 {
    width: 95%;
}

.features-icon-6 {
    margin-bottom: 30px;
}

.s-text-6 h3 {
    margin-bottom: 15px;
}

.single-f-s-icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    background-color: rgba(73, 52, 182, .3);
    border-radius: 50%;
    text-align: center;
    margin-bottom: 30px;
    color: #4934B6;
}

.features-6-left .title h4 {
    position: relative;
    z-index: 1;
    margin-left: 40px;
    margin-bottom: 20px;
}

.features-6-left .title h4:after {
    position: absolute;
    left: -40px;
    top: 11px;
    width: 30px;
    height: 3px;
    content: "";
    background-color: rgba(73, 52, 182, .3);
}

.features-6-left .title h2 {
    margin-bottom: 30px;
}

.f-i-right-6 img {
    -webkit-box-shadow: none;
    box-shadow: none;
    margin: inherit;
}


/************
Tab area CSS
************/

.tab-area {
    padding-top: 100px;
}

.tab-list {
    margin-bottom: 50px;
}

.tab-list li {
    width: 20%;
    position: relative;
    z-index: 1;
}

.tab-list li a:after {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    content: "";
    background-color: #E5E9F2;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.tab-list li a.active:after {
    background-color: #4934B6;
}

.tab-list li a.nav-link.active {
    color: #4934B6;
}

.tab-list li a.nav-link {
    color: #8392A5;
    padding: 20px 0;
    font-size: 18px;
    font-weight: 500;
}

.tab-list li a.active,
.tab-list li a.nav-link:hover,
.tab-list li a.nav-link {
    border: none;
}

.tab-list ul {
    border: none;
}

.tab-title .tab-icon {
    width: 64px;
    height: 64px;
    line-height: 64px;
    display: inline-block;
    background-color: #00C1B1;
    text-align: center;
    font-size: 30px;
    color: white;
    border-radius: 50%;
    margin-bottom: 30px;
}

.tab-title h3 {
    margin-bottom: 20px;
}

.tab-6-img {
    position: relative;
    z-index: 1;
}

.tab-6-img img.tab-img {
    position: absolute;
    bottom: 0;
    left: -50px;
    z-index: -1;
    -webkit-animation: maskimg 10s linear infinite;
    animation: maskimg 10s linear infinite;
}

.tab-6-img img.tab-img.tab-img-2 {
    left: -65px;
    bottom: -30px;
}

.tab-6-img img.tab-img.tab-img-3 {
    left: auto;
    right: 20px;
    bottom: -30px;
}

.tab-content {
    margin-bottom: 70px;
}


/********************
Testimonial area CSS
********************/

.t-area-6 {
    padding-bottom: 80px;
}

.t6-carousel .owl-nav button {
    position: absolute;
    left: -5%;
    top: 50%;
    margin-top: -15px;
}

.t6-carousel .owl-nav button i {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 5px;
    display: block;
    font-size: 17px;
    border: 1px solid #E5E9F2;
    background-color: white;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.t6-carousel .owl-nav button.owl-next {
    left: auto;
    right: -5%;
}

.owl-nav button i:hover {
    background-color: #E5E9F2;
}


/*************
CTA area CSS
*************/

.cta-area {
    padding: 150px 0 200px;
    color: white;
    position: relative;
    z-index: 1;
}

.cta-area {
    background: #4934b6;
    background: -webkit-gradient(linear, left top, left bottom, from(#4934b6), color-stop(70%, #aea5df), color-stop(98%, #ffffff));
    background: -o-linear-gradient(top, #4934b6 0%, #aea5df 70%, #ffffff 98%);
    background: linear-gradient(to bottom, #4934b6 0%, #aea5df 70%, #ffffff 98%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4934b6', endColorstr='#ffffff', GradientType=0);
}

.cta-area .title h2 {
    color: white;
}

.cta-area .title h4 {
    color: #C0CCDA;
}

.cta-area .title .button {
    margin-top: 40px;
    background-color: #00C1B1;
}

.cta-circle-img img {
    position: absolute;
    left: -10%;
    top: -17%;
    width: 600px;
}

.cta-circle-img img.cta-circle-2 {
    left: auto;
    right: -10%;
    top: auto;
    bottom: 0;
}


/***************
Footer area CSS
***************/

.footer-area-6 {
    padding-bottom: 30px;
}

.footer-area-6 ul li a:hover {
    color: #00C1B1;
}


/**************
Blog Page CSS
**************/


/*******************
Breadcrumb area CSS
*******************/

.breadcrumb-area {
    padding: 150px 0 100px;
    background-color: #4934B6;
}

.bg-white.aic {
    border-radius: 5px;
}

.breadcrumb-left,
.breadcrumb-right {
    padding: 30px;
}

.breadcrumb-right {
    text-align: right;
}

.breadcrumb-right li a {
    color: #00C1B1;
}

.breadcrumb-right li.active,
.breadcrumb-item+.breadcrumb-item::before {
    color: #001737;
}

.breadcrumb-right nav {
    margin-top: 15px;
}


/**************
Blog area CSS
**************/

.auhtor-blog {
    width: 10%;
    margin-right: 40px;
}

.blog-content {
    padding: 40px;
}

.blog-area {
    background-color: #F9FAFC;
}

.single-blog {
    background-color: white;
    margin-bottom: 50px;
    -webkit-box-shadow: 0 0 30px -10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 30px -10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.content-blog {
    width: 90%;
}

.auhtor-blog img {
    border-radius: 50%;
    -webkit-box-shadow: 0 0 0 7px #E5E9F2, 0 0 0 10px #8392A5;
    box-shadow: 0 0 0 7px #E5E9F2, 0 0 0 10px #8392A5;
    margin-bottom: 30px;
}

.auhtor-blog {
    text-align: center;
}

.auhtor-blog p span {
    display: block;
    color: #001737;
    font-size: 24px;
}

.auhtor-blog p {
    font-size: 16px;
}

.auhtor-blog h4 {
    font-size: 14px;
    font-weight: 500;
}

p.blog-meta {
    font-size: 14px;
    color: #576477;
    font-weight: 400;
    margin-bottom: 20px;
}

p.blog-meta a {
    color: #576477;
    margin-right: 15px;
    position: relative;
    z-index: 1;
}

p.blog-meta a:after {
    position: absolute;
    right: -10px;
    top: -3px;
    content: "|";
}

.content-blog h3 a {
    color: #001737;
    margin-bottom: 15px;
    display: inline-block;
}

p.blog-meta a.research {
    color: #00C1B1;
    margin-left: 10px;
}

p.blog-meta a.research:after {
    content: "";
}

a.blog-btn {
    color: #001737;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    margin-top: 15px;
    display: inline-block;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

a.blog-btn:hover {
    color: #00C1B1;
}

a.blog-btn span {
    color: #00C1B1;
}

.widgets {
    background-color: white;
    margin-bottom: 30px;
    padding: 40px;
    border-radius: 5px;
    -webkit-box-shadow: 0 0 30px -10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 30px -10px rgba(0, 0, 0, 0.1);
}

.widgets h4 {
    margin-bottom: 25px;
}

.search-form input[type="search"] {
    width: 100%;
    border: 1px solid #E5E9F2;
    background-color: #F9FAFC;
    color: #576477;
    padding: 15px;
}

.search-form button {
    background-color: #00C1B1;
    border: none;
    color: white;
    position: absolute;
    right: 0;
    top: 0;
    width: 65px;
    height: 100%;
    cursor: pointer;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.search-form button:hover {
    background-color: black;
}

.search-input {
    position: relative;
}

.category-widgets li {
    display: block;
}

.category-widgets li a span {
    float: right;
    color: #8392A5;
}

.category-widgets li a {
    padding: 10px 0;
    display: block;
    font-size: 16px;
    font-weight: 400;
    color: #576477;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.category-widgets li a:hover {
    color: #00C1B1;
    text-decoration: underline;
}

.post-content h5 a {
    color: #001737;
    font-size: 16px;
    line-height: 1.7;
}

.post-content a.data {
    display: block;
    margin: 15px 0;
    color: #576477;
    font-size: 14px;
}

.single-post-area {
    margin-bottom: 40px;
}

.single-post-area:last-child {
    margin-bottom: 0;
}

.single-post-area a img {
    width: 100%;
}

.post-pagination {
    text-align: center;
    margin-top: 50px;
}

.post-pagination li a {
    width: auto;
    display: block;
    margin: 0 5px;
    border: 1px solid #E5E9F2;
    padding: 5px 15px;
    text-transform: uppercase;
    font-size: 16px;
    color: #8392A5;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    font-weight: 500;
    border-radius: 5px;
}

.post-pagination li a:hover {
    background-color: white;
    -webkit-box-shadow: 0 10px 15px -5px rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 15px -5px rgba(0, 0, 0, 0.1);
    border-color: white;
}

.post-pagination li a.active {
    background-color: #001737;
    color: #FFFFFF;
}


/********************
Single Blog Page CSS
********************/

.single-post-content {
    padding: 50px 60px;
}

.single-post-content p {
    margin-bottom: 40px;
}

.single-post-content blockquote {
    background-color: #F9FAFC;
    padding: 40px;
    border-left: 5px solid #00C1B1;
    margin-bottom: 30px;
    font-size: 18px;
    font-weight: 500;
    color: #001737;
}

.post-tag a {
    font-size: 16px;
    color: #00C1B1;
}

.post-tag strong,
.post-share strong {
    font-size: 18px;
    color: #001737;
    margin-right: 10px;
}

.post-share ul {
    display: inline-block;
}

.post-share li a {
    width: 30px;
    height: 30px;
    line-height: 30px;
    display: block;
    color: #001737;
    font-size: 20px;
}

.post-tag {
    margin-bottom: 25px;
}

.about-author-img img {
    border-radius: 50%;
    -webkit-box-shadow: 0 0 0 7px #E5E9F2, 0 0 0 10px #8392A5;
    box-shadow: 0 0 0 7px #E5E9F2, 0 0 0 10px #8392A5;
}

.about-author-img {
    margin-right: 40px;
    width: 20%;
}

.about-author-text {
    width: 80%;
}

.about-author {
    background-color: white;
    -webkit-box-shadow: 0 0 30px -10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 30px -10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 50px;
    margin-bottom: 50px;
}

.about-author-text h4 span {
    font-size: 18px;
    color: #8392A5;
    font-weight: 400;
    margin-left: 5px;
}

.comment-list {
    background-color: white;
    -webkit-box-shadow: 0 0 30px -10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 30px -10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 50px;
}

.comment-author-img {
    width: 20%;
    margin-right: 30px;
}

.comment-author-img img {
    border-radius: 50%;
}

.comment-meta {
    width: 80%;
}

.comment-author-area {
    margin-bottom: 50px;
}

.comment-title {
    font-weight: 600;
    margin-bottom: 40px;
}

.comment-meta h6 {
    margin-bottom: 20px;
}

.comment-meta h6 span {
    color: #576477;
    font-size: 14px;
    margin-left: 15px;
    font-weight: 400;
}

a.comment-reply-btn {
    font-size: 14px;
    color: #001737;
    font-weight: 600;
    margin-top: 20px;
    display: inline-block;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

a.comment-reply-btn:hover {
    color: #00C1B1;
}

a.comment-reply-btn span {
    font-size: 12px;
    color: #00C1B1;
    margin-right: 10px;
}

li.ml-65 {
    margin-left: 65px;
}

.post-form input[type="text"],
.post-form input[type="email"],
.post-form textarea {
    border: 1px solid #E5E9F2;
    background-color: #F9FAFC !important;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.post-form {
    margin-top: 70px;
}

.post-form button.button {
    background-color: #00C1B1;
}

.blog-footer {
    background-color: #001737;
    padding-top: 80px;
}

.blog-footer,
.blog-footer h4,
.blog-footer li a {
    color: white;
}

/*********************
CSS Index
* Base CSS
* Header area CSS
* Hero area CSS
* Service area CSS
* Features area CSS
* Features top area CSS
* Features bottom area CSS
* Testimonial area CSS
* Team area CSS
* Mask Group area CSS
* Footer area CSS
*********************/


/*******
Base CSS
*******/


/*** Body CSS ***/

body {
    font-size: 16px;
}


/***************
Header area CSS
***************/

.header-btn {
    text-align: right;
}

.is-sticky .header-4 .mainmenu li>a {
    color: #576477;
}


/*************
Hero area CSS
*************/

.hero-3 {
    background-color: #0B0037;
    padding-bottom: 100px;
    z-index: 1;
    -webkit-clip-path: polygon(100% 0, 100% 81%, 85% 100%, 0 100%, 0 0);
    clip-path: polygon(100% 0, 100% 81%, 85% 100%, 0 100%, 0 0);
}

.hero-3:after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    z-index: -1;
    background-image: url(../image/elements.png);
    background-position: center;
    background-size: cover;
    pointer-events: none;
}

.hero-3 h1 {
    color: #FFFFFF;
    position: relative;
    display: inline-block;
    font-size: 88px;
    margin-bottom: 10px;
}

.hero-3 h1 sup {
    background-color: #C82C29;
    font-size: 18px;
    padding: 15px 20px;
    border-radius: 50px;
    position: absolute;
    top: 10px;
}

.hero-3 h2 {
    color: #ADB9C7;
    margin-bottom: 55px;
    font-weight: 200;
}

.hero-3 .boxed-btn {
    border: 1px solid #C0CCDA;
    background-color: #0B0037;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.hero-3 .boxed-btn:hover, .hero-3 .boxed-btn.active {
    background-color: #C82C29;
    border-color: #C82C29;

}
.hero-3 .boxed-btn:hover{
     border-color: #fff;
}
.hero-3-img {
    position: relative;
    z-index: 1;
    text-align: right;
}

.hero-3-img img {
    border-radius: 34px;
    box-shadow: 0 10px 30px rgba(0,0,0,.1);
}

.hero-3-img img.profile-1 {
    position: absolute;
    left: -17%;
    bottom: 10%;
    pointer-events: none;
    -webkit-animation: maskimg 10s linear infinite;
    animation: maskimg 10s linear infinite;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,.1);
}

.hero-3-img img.profile-1.profile-2 {
    right: -13%;
    left: auto;
    bottom: 13%;
    -webkit-animation: none;
    animation: none;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,.1);
}



.header-btn .button {
    padding: 6px 30px;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

.header-btn .button:after {
    background-color: white;
    border-radius: 4px;
}

.is-sticky .header-btn .button:after {
    background-color: #001737;
}

.header-btn .button:hover {
    color: #001737;
}

.is-sticky .header-btn .button:hover {
    color: white;
}


/****************
Service area CSS
****************/

.service-area {
    position: relative;
    z-index: 1;
}

.service-area:after {
    position: absolute;
    left: calc((-100vw + 65%) / 2);
    top: 0;
    width: 40%;
    height: 30%;
    content: "";
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    z-index: -1;
}

.service-area:after,
.t-c-2 .single-c-item:after {
    background: #c0ccda;
    background: -webkit-gradient(linear, left top, right top, color-stop(1%, #c0ccda), to(#ffffff));
    background: -o-linear-gradient(left, #c0ccda 1%, #ffffff 100%);
    background: linear-gradient(to right, #c0ccda 1%, #ffffff 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c0ccda', endColorstr='#ffffff', GradientType=1);
}

.service-area .title {
    margin-bottom: 20px;
}

.single-s-item {
    text-align: center;
    -webkit-box-shadow: 0 0 20px #f3efef;
    box-shadow: 0 0 20px #f3efef;
    padding: 40px;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    margin-top: 0;
}

.single-s-item:hover {
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, .1);
    box-shadow: 0 0 20px rgba(0, 0, 0, .1);
    border-bottom: 4px solid #5CBC2B;
    margin-top: -10px;
}

.s-icon {
    margin-bottom: 35px;
    display: inline-block;
    position: relative;
}

.s-icon .icon {
    width: 80px;
    height: 96px;
    line-height: 96px;
    display: inline-block;
    background: #5CBC2B;
    color: white;
    font-size: 32px;
    -webkit-box-shadow: 0 23px 30px rgba(92, 188, 43, .5);
    box-shadow: 0 23px 30px rgba(92, 188, 43, .5);
    -webkit-clip-path: polygon(100% 0, 100% 75%, 70% 100%, 0 100%, 0 0);
    clip-path: polygon(100% 0, 100% 75%, 70% 100%, 0 100%, 0 0);
    position: relative;
    z-index: 1;
}

.icon-bg {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 80%;
    height: 80%;
    background: rgba(92, 188, 43, 0.3);
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.s-icon span.bar {
    width: 65%;
    height: 2px;
    display: block;
    position: absolute;
    left: 24%;
    top: 72%;
    background-color: #ffffff;
    z-index: 1;
    opacity: 0.2;
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    -ms-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
}

.s-icon span.bar:nth-child(1) {
    top: 30%
}

.s-icon span.bar:nth-child(3) {
    top: 70%;
    left: 73%;
    width: 55%;
}

.color-o span.icon-bg {
    background-color: rgba(243, 133, 80, 0.3);
}

.color-o .icon {
    background-color: #F38550;
}

.color-o:hover {
    border-color: #F38550;
}

.color-b span.icon-bg {
    background-color: rgba(53, 191, 230, 0.3);
}

.color-b .icon {
    background-color: #35BFE6;
}

.color-b:hover {
    border-color: #35BFE6;
}

.single-s-item h4 {
    margin-bottom: 15px;
}

.border-btn {
    color: #001737;
    position: relative;
    z-index: 1;
    border-bottom: 3px solid #C0CCDA;
    margin-top: 25px;
    display: inline-block;
    padding-bottom: 5px;
    text-transform: uppercase;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

.border-btn:hover {
    color: #5CBC2B;
    border-color: #5CBC2B;
}

.color-o .border-btn:hover {
    color: #F38550;
    border-color: #F38550;
}

.color-b .border-btn:hover {
    color: #35BFE6;
    border-color: #35BFE6;
}


/*****************
Features area CSS
*****************/

.features-area-3 {
    position: relative;
    z-index: 1;
}

.features-area-3:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    z-index: -1;
}

.features-area-3:before {
    background: #ffffff;
    background: -o-linear-gradient(45deg, #ffffff 0%, #e5e9f2 100%);
    background: linear-gradient(45deg, #ffffff 0%, #e5e9f2 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e5e9f2', GradientType=1);
    -webkit-clip-path: polygon(30% 0, 100% 0, 100% 70%, 70% 100%, 0 100%, 0 30%);
    clip-path: polygon(30% 0, 100% 0, 100% 70%, 70% 100%, 0 100%, 0 30%);
}

.f-border {
    position: absolute;
    bottom: 0%;
    left: -27%;
    z-index: -1;
}


/*********************
Features top area CSS
*********************/

.features-left {
    position: relative;
    z-index: 1;
}

.features-left img.focus {
    position: absolute;
    left: 35%;
    bottom: 38%;
    pointer-events: none;
    -webkit-animation: maskimg 10s linear infinite;
    animation: maskimg 10s linear infinite;
    margin: 0;
    border-radius: 5px;
}

.features-left:after {
    position: absolute;
    left: 0;
    bottom: 4%;
    width: 60%;
    height: 75%;
    content: "";
    background-color: #C82C29;
    z-index: -1;
    -webkit-clip-path: polygon(100% 0, 100% 100%, 25% 100%, 0 84%, 0 0);
    clip-path: polygon(100% 0, 100% 100%, 25% 100%, 0 84%, 0 0);
}

.features-left img {
    margin-left: 15%;
    position: relative;
    z-index: 2;
    margin-bottom: 90px;
    border-radius: 34px;
    box-shadow: 0 10px 30px rgba(0,0,0,.1);
}

.features-left span.f-bar {
    width: 40%;
    height: 2px;
    display: block;
    position: absolute;
    left: 14%;
    top: 74%;
    background-color: #fff;
    z-index: 1;
    opacity: 0.2;
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    -ms-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
}

.features-left span.f-bar.bar-1 {
    top: 38%;
}

.features-left span.f-bar.bar-2 {
    top: 50%;
}

.features-left span.f-bar.bar-3 {
    top: 58%;
    width: 20%;
    left: 20%;
}

.features-left span.f-bar.bar-4 {
    top: 85%;
}

.features-left span.f-bar.bar-5 {
    top: 90%;
    left: 40%;
}

.counter-icon {
    width: 24%;
    margin-right: 20px;
}

.counter-text {
    width: 76%;
}

.counter-icon .mdi {
    font-size: 50px;
    color: #35BFE6;
}

.counter-icon img {
    width: 45px;
}

.counter-text h6 {
    text-transform: uppercase;
}


/************************
Features bottom area CSS
************************/

.features-right:after {
    left: auto;
    right: 0;
    -webkit-clip-path: polygon(100% 0%, 100% 84%, 80% 100%, 0 100%, 0 0);
    clip-path: polygon(100% 0%, 100% 84%, 80% 100%, 0 100%, 0 0);
    background-color: #0B0037;
}

.features-right span.f-bar {
    left: auto;
    right: -26%;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    -ms-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
}

.features-right img.focus {
    left: 10%;
    -webkit-animation: none;
    animation: none;
    bottom: 45%;
    margin: 0;
}

.features-left.features-right {
    text-align: right;
}

.features-left.features-right img {
    margin-right: 15%;
}

.features-right span.f-bar.bar-3 {
    right: 0%;
    left: auto;
}

.features-right span.f-bar.bar-5 {
    left: auto;
    right: 0;
}


/********************
Testimonial area CSS
********************/

.testimonial-3 .title {
    margin-bottom: 0;
}

.t-c-2 .single-c-item:after {
    position: absolute;
    left: -40%;
    bottom: 23%;
    width: 100%;
    height: 40%;
    content: "";
    z-index: -1;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.t-c-2 .t-image img {
    border-radius: 0;
    -webkit-clip-path: polygon(100% 0, 100% 70%, 75% 100%, 0 100%, 0 0);
    clip-path: polygon(100% 0, 100% 70%, 75% 100%, 0 100%, 0 0);
}

.s-bg {
    position: relative;
    z-index: 1;
    background-color: #0B0037;
    padding: 50px 0;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 20%, 100% 80%, 92% 100%, 20% 100%, 0 100%, 0% 20%);
    clip-path: polygon(0 0, 100% 0, 100% 20%, 100% 80%, 92% 100%, 20% 100%, 0 100%, 0% 20%);
}

.s-bg:after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    z-index: -1;
    background-image: url(../image/suc.png);
    background-position: top center;
    background-size: 100% 165%;
}

.s-bg .subscribe-bg-c {
    background: none;
    color: #fff;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.s-bg .subscribe-bg-c h2 {
    color: #fff;
}


/*************
Team area CSS
*************/

.single-team-item {
    text-align: center;
}

.team-img {
    position: relative;
    z-index: 1;
}

.solial-link li a,
.footer li a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    color: #576477;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    font-size: 20px;
}

.solial-link li a:hover,
.footer li a:hover {
    color: #C82C29;
}

.solial-link {
    background-color: white;
    padding: 10px 15px;
    -webkit-clip-path: polygon(100% 0, 100% 75%, 90% 100%, 0 100%, 0 0);
    clip-path: polygon(100% 0, 100% 75%, 90% 100%, 0 100%, 0 0);
    position: absolute;
    left: 0;
    bottom: -30%;
    -webkit-transform: translate(14%, -40%);
    -ms-transform: translate(14%, -40%);
    transform: translate(14%, -40%);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

.team-img:hover .solial-link {
    bottom: 0;
    opacity: 1;
    visibility: visible;
}

.single-team-item h3 {
    margin-top: 30px;
}

.single-team-item h3 span {
    display: block;
    font-size: 16px;
    font-weight: 400;
    color: #8392A5;
    margin-top: 10px;
}


/*******************
Mask Group area CSS
*******************/

.mask-title h4 {
    color: #8392A5;
    margin-bottom: 20px;
    font-weight: 400;
}

.mask-title h2 {
    margin-bottom: 40px;
}

.mask-title .boxed-btn {
    text-align: left;
}

.mask-title h6.version {
    font-size: 14px;
    font-weight: 500;
    color: #576477;
    margin-top: 30px;
}

.mask-title h6.version span {
    color: #C82C29;
    margin-left: 10px;
}

.mask-Group-area {
    position: relative;
    z-index: 1;
    background-color: #E5E9F2;
}

.group-image img {
    position: absolute;
    left: 0;
    bottom: 0;
    pointer-events: none;
    box-shadow: 0 10px 55px rgba(0,0,0,.1);
    border-radius: 10px;
}

.group-image img:nth-child(1) {
    bottom: auto;
    top: 0;
    width: 250px;
    left: 10%;
    -webkit-animation: maskimg 10s linear infinite;
    animation: maskimg 10s linear infinite;
}

.group-image img:nth-child(2) {
    bottom: auto;
    top: 10%;
    left: -5%;
}

.group-image img:nth-child(3) {
    left: 3%;
    -webkit-animation: maskimg 10s linear infinite;
    animation: maskimg 10s linear infinite;
}

.group-image img:nth-child(4) {
    left: auto;
    right: 12%;
    width: 208px;
    bottom: -25%;
    z-index: 2;
    border-radius: 30px;
    border: 10px solid white;
}

.group-image img:nth-child(5) {
    left: auto;
    right: 4%;
    width: 208px;
    bottom: -10%;
    z-index: 1;
    border-radius: 30px;
    border: 10px solid white;
}

.mask-title {
    position: relative;
    z-index: 2;
}

.mask-Group-area:after {
    position: absolute;
    left: -30px;
    bottom: -150px;
    width: 100%;
    height: 300px;
    content: "";
    z-index: -9;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.mask-Group-area:after {
    background: #ffffff;
    background: -webkit-gradient(linear, left top, right top, from(#ffffff), to(#e5e9f2));
    background: -o-linear-gradient(left, #ffffff 0%, #e5e9f2 100%);
    background: linear-gradient(to right, #ffffff 0%, #e5e9f2 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e5e9f2', GradientType=1);
}


/***************
Footer area CSS
***************/

.footer-area-3 {
    padding: 80px 0 30px;
}

.footer p.mt-20 {
    margin-top: 20px;
    font-size: 16px;
}

.footer h4 {
    margin-bottom: 30px;
}

.footer-menu li {
    display: block;
}

.footer-menu li a {
    font-size: 15px;
    font-weight: 500;
}

.footer ul {
    margin-top: 15px;
}


/*** Body ***/

body {
    font-size: 16px;
}


/***************
Header area CSS
***************/

.header-4 .mainmenu li a {
    color: white;
}


.header-4 .button,
.hero-4 .button,
.features-right .button {
    background-color: #F38550;
}


/*************
Hero area CSS
*************/

.hero-4 {
    background-color: #4934B6;
    color: white;
    padding-bottom: 100px;
    position: relative;
    z-index: 1;
}

.hero-4 h1 {
    font-size: 96px;
    color: white;
    font-weight: 600;
}

.hero-4 h2 {
    font-size: 29px;
    color: white;
    margin-bottom: 30px;
}

.hero-4 p {
    margin-bottom: 30px;
}

.hero-4 .button {
    margin-right: 10px;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

.hero-4 .button:after {
    background-color: white;
}

.hero-4 .button:hover {
    color: #F38550;
}

.hero-4-img {
    margin-right: calc((-70vw + 100%) / 2);
}

.hero-4-img img {
    -webkit-box-shadow: 20px 20px 5px 0px;
    box-shadow: 20px 20px 5px 0px;
    color: rgba(0, 0, 0, .2);
}


/*** Animation CSS ***/

.animation-4 span {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 20px;
    height: 20px;
    content: "";
    background: white;
    display: block;
    border-radius: 50%;
}

.animation-4 span:nth-child(1) {
    top: 0;
    bottom: auto;
    width: 40px;
    height: 40px;
    -webkit-animation: a 10s linear infinite;
    animation: a 10s linear infinite;
}

@-webkit-keyframes a {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
}

@keyframes a {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0
    }
}

.animation-4 span:nth-child(2) {
    top: 0;
    bottom: auto;
    width: 50px;
    height: 50px;
    left: auto;
    right: 0;
    -webkit-animation: a 10s linear infinite;
    animation: a 10s linear infinite;
}

.animation-4 span:nth-child(3) {
    top: 0;
    bottom: auto;
    width: 50px;
    height: 50px;
    left: 20%;
    -webkit-animation: a 10s linear infinite;
    animation: a 10s linear infinite;
}

.animation-4 span:nth-child(4) {
    bottom: 65%;
    width: 50px;
    height: 50px;
    left: 42%;
    -webkit-animation: a 10s linear infinite;
    animation: a 10s linear infinite;
}

.animation-4 span:nth-child(5) {
    left: auto;
    right: 0;
    width: 50px;
    height: 50px;
    -webkit-animation: a 10s linear infinite;
    animation: a 10s linear infinite;
}

.animation-4 span:nth-child(6) {
    bottom: 15%;
    width: 50px;
    height: 50px;
    left: 49%;
    -webkit-animation: a 10s linear infinite;
    animation: a 10s linear infinite;
}

.animation-4 span:nth-child(7) {
    left: auto;
    right: 30%;
    bottom: auto;
    top: 10%;
    -webkit-animation: b 30s linear infinite;
    animation: b 30s linear infinite;
}

@-webkit-keyframes b {
    0% {
        right: 30%;
    }
    40% {
        right: 50%;
        top: 20%;
    }
    60% {
        right: 70%;
        top: 10%;
    }
    80% {
        right: 40%;
        top: 5%;
    }
    100% {
        right: 30%;
    }
}

@keyframes b {
    0% {
        right: 30%;
    }
    40% {
        right: 50%;
        top: 20%;
    }
    60% {
        right: 70%;
        top: 10%;
    }
    80% {
        right: 40%;
        top: 5%;
    }
    100% {
        right: 30%;
    }
}

.animation-4 span:nth-child(8) {
    left: auto;
    right: 22%;
    bottom: 9%;
    -webkit-animation: c 30s linear infinite;
    animation: c 30s linear infinite;
}

@-webkit-keyframes c {
    0% {
        right: 22%;
        bottom: 9%;
    }
    50% {
        right: 42%;
        bottom: 0%;
    }
    100% {
        right: 22%;
        bottom: 9%;
    }
}

@keyframes c {
    0% {
        right: 22%;
        bottom: 9%;
    }
    50% {
        right: 42%;
        bottom: 0%;
    }
    100% {
        right: 22%;
        bottom: 9%;
    }
}

.animation-4 span:nth-child(9) {
    left: 10%;
    bottom: 10%;
    -webkit-animation: d 30s linear infinite;
    animation: d 30s linear infinite;
}

@-webkit-keyframes d {
    0% {
        left: 10%;
        bottom: 10%;
    }
    40% {
        left: 40%;
        bottom: 40%;
    }
    50% {
        left: 60%;
        bottom: 20%;
    }
    100% {
        left: 10%;
        bottom: 10%;
    }
}

@keyframes d {
    0% {
        left: 10%;
        bottom: 10%;
    }
    40% {
        left: 40%;
        bottom: 40%;
    }
    50% {
        left: 60%;
        bottom: 20%;
    }
    100% {
        left: 10%;
        bottom: 10%;
    }
}

.animation-4 {
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    top: 0;
    left: 0;
    z-index: -1;
}


/***************
Client logo area CSS
***************/

.c-logo-area {
    padding-top: 80px;
}

.c-logo-area h4 {
    color: #8392A5;
    margin-bottom: 30px;
    font-weight: 400;
}

.single-logo-item {
    display: table;
    height: 65px;
    margin: 0 auto;
}

.single-logo-cell {
    display: table-cell;
    vertical-align: middle;
}


/****************
Service area CSS
****************/

.single-s-4-item {
    text-align: center;
    padding: 0 20px;
}

.s-4-icon .icon-4,
.s-4-icon img {
    width: 80px;
    height: 80px;
    display: inline-block;
    line-height: 80px;
    background-color: #644DFF;
    border-radius: 50%;
    margin-bottom: 25px;
    font-size: 30px;
    color: white;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.single-s-4-item:hover .icon-4 {
    background-color: #F38550;
}

.single-s-4-item h4 {
    margin-bottom: 25px;
}

.s-4-icon img {
    padding: 28px;
}

.title-4 {
    margin-bottom: 40px;
}

.title-4 h2 {
    margin-bottom: 15px;
    line-height: 1.4;
}

.s-4-icon .icon-4 span {
    position: absolute;
    left: 7%;
    top: 35%;
    width: 20px;
    height: 20px;
    display: block;
    background-color: white;
    border-radius: 50%;
    z-index: -1;
    -webkit-animation: a 10s linear infinite;
    animation: a 10s linear infinite;
}

.s-4-icon .icon-4,
.s-4-icon img {
    position: relative;
    z-index: 1;
}

.s-4-icon .icon-4 span:nth-child(2) {
    width: 15px;
    height: 15px;
    left: 40%;
    top: 5%;
}

.s-4-icon strong {
    position: absolute;
    left: 40%;
    top: 14%;
    content: "";
    width: 20px;
    height: 20px;
    background-color: white;
    border-radius: 50%;
    z-index: 1;
    -webkit-animation: a 10s linear infinite;
    animation: a 10s linear infinite;
}

.s-4-icon strong:nth-child(2) {
    left: 47%;
    top: 5%;
    width: 15px;
    height: 15px;
}


/**************
Video area CSS
**************/

.video-img {
    position: relative;
    z-index: 1;
}

.vd-btn {
    position: absolute;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    width: 80px;
    height: 80px;
    line-height: 80px;
    background-color: white;
    font-size: 35px;
    border-radius: 50%;
    color: #4934B6;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.vd-btn:hover {
    background-color: #4934B6;
    color: white;
}


/*****************
Features area CSS
*****************/

.features-4-img {
    position: relative;
    z-index: 1;
}

.features-4-img img.timeline {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
    width: 300px;
    margin: 0;
}

.features-4-img img {
    -webkit-box-shadow: 0 0 30px -5px rgba(0, 0, 0, .1);
    box-shadow: 0 0 30px -5px rgba(0, 0, 0, .1);
    margin: 100px 0 70px -50px;
    width: 550px;
    pointer-events: none;
}

.features-4-img:after {
    position: absolute;
    left: -10%;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: #F6F8FA;
    z-index: -1;
    border-radius: 50%;
    -webkit-animation: maskimg 10s linear infinite;
    animation: maskimg 10s linear infinite;
}

.f-i-right:after {
    right: 0%;
    left: auto;
}

.f-i-right img {
    margin-left: 0;
    max-width: 550px;
}

.f-i-right img.timeline {
    right: -10%;
}

.features-right .button {
    margin-top: 30px;
}

.features-4-2 {
    padding-top: 80px;
}


/****************
Pricing area CSS
****************/

.pricing-area {
    position: relative;
    z-index: 1;
}

.pricing-area .title-4,
.pricing-area .title-4 h2 {
    color: white;
}

.single-pricing-item {
    text-align: center;
    background-color: white;
    border-radius: 10px;
}

.pricing-area {
    background-color: #4934B6;
}

.pricing-header h3 {
    color: #F38550;
    margin-bottom: 30px;
}

.pricing-header {
    padding: 40px 0 30px;
    background-color: #F6F8FA;
    border-radius: 10px 10px 0 0;
}

.price,
.price h2 {
    position: relative;
    z-index: 1;
}

.price h2 span {
    font-size: 36px;
    position: absolute;
    left: 18%;
    top: 10%;
}

.price h2 {
    font-size: 64px;
}

.price h2 strong {
    font-size: 15px;
    margin-left: 7px;
}

.price h2 sup {
    font-size: 32px;
    position: absolute;
    top: 20%;
    right: 36%;
}

.pricing-content li {
    display: block;
    font-weight: 400;
    margin-bottom: 17px;
}

.pricing-content {
    padding: 40px 0;
}

.pricing-content li strong {
    color: #001737;
}

.pricing-content li.f-o {
    color: #ADB9C7;
}

.pricing-content li:last-child {
    margin-bottom: 0;
}

.pricing-footer {
    padding: 0 0 40px;
}

.border-4-btn:hover {
    background-color: #F38550;
    color: white;
    border-color: #F38550;
}

.border-4-btn {
    font-size: 14px;
    color: #F38550;
    border: 2px solid #F38550;
    padding: 15px 40px;
    border-radius: 5px;
    display: inline-block;
    text-transform: uppercase;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    position: relative;
    z-index: 1;
    font-weight: 500;
}

a.border-4-btn:after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0%;
    content: "";
    background-color: #F38550;
    z-index: -1;
    border-radius: 5px;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

a.border-4-btn:hover:after {
    height: 100%;
    bottom: 0;
    top: auto;
}

.active .pricing-header {
    background-color: #001737;
}

.active .pricing-header h3,
.active .pricing-header .price h2 {
    color: white;
}

.active .pricing-footer .border-4-btn {
    color: white;
    background-color: #F38550;
}

.active .pricing-footer .mdi {
    display: block;
    color: #5CBC2B;
    font-size: 40px;
}

.active .pricing-footer p {
    font-size: 14px;
}

.pricing-area .animation-4 span:nth-child(4) {
    left: 20%;
    bottom: 70%;
}

.pricing-area .animation-4 span:nth-child(6) {
    left: 15%;
    bottom: 5%;
}


/********************
Testimonial area CSS
********************/

.t-c-4 .single-c-item {
    background-color: #F9FAFC;
}

.t-c-4 h4 {
    font-weight: 500;
    line-height: 1.6;
    font-style: italic;
}

.quote-left {
    position: absolute;
    left: 0;
    top: 0;
    line-height: 0;
    z-index: -1;
}

.quote-left i {
    font-size: 170px;
    background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#e5e5e5));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.t-c-4 .quote-icon i {
    font-size: 40px;
    color: #F38550;
}

.t-c-4 .quote-icon {
    bottom: 12%;
}


/************
FAQ area CSS
************/

.faq-area {
    position: relative;
    z-index: 1;
}

.faq-area:before {
    position: absolute;
    left: 10%;
    top: 0;
    width: 80%;
    height: 1px;
    content: "";
    background-color: #707070;
    z-index: -1;
    opacity: .2;
}

.faq-icon .mdi {
    color: #4934B6;
    font-size: 22px;
}

.faq-icon {
    width: 5%;
    margin-right: 2%;
}

.single-faq-item {
    margin-bottom: 30px;
    -webkit-box-shadow: 10px 10px 40px -8px rgba(0, 0, 0, 0.1);
    box-shadow: 10px 10px 40px -8px rgba(0, 0, 0, 0.1);
    padding: 25px;
    border-radius: 5px;
}

.single-faq-item:last-child {
    margin-bottom: 0;
}

.faq-title {
    margin-bottom: 10px;
}

.faq-area .title {
    margin-bottom: 60px;
}


/***************
Footer area CSS
***************/

.footer-3 {
    background-color: #001737;
}

.footer-3,
.footer-3 h4,
.footer-3 li a {
    color: white;
}