/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v7.0.29,
* Autoprefixer: v9.7.6
* Browsers: last 4 version
*/

/*-------------------------
-----Table-Of-Content------
01. Helper-Class 
02. Mainmenu-Area
03. Header-Area

---------------------------
01. Helper-Class 
--------------------------*/
.full-wrapper {
    overflow: hidden;
    z-index: 1;
    position: relative;
}

.gray-bg {
    background-color: #f8fcff;
}

.text-highlight {
    color: #ff0b5f;
}

.section-title {
    margin-bottom: 80px;
}

.section-title .top-title {
    color: #ff0b5f;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    text-shadow: 0 0 3px #ffffff;
}

.section-title .main-title {
    font-size: 55px;
    font-weight: 900;
    margin-bottom: 0px;
}

.section-padding {
    padding-top: 140px;
    padding-bottom: 140px;
}

.section-padding-top {
    padding-top: 140px;
}

.section-padding-bottom {
    padding-bottom: 140px;
}

.button-one,
.button-two,
.button-three {
    border: 1px solid #ff0b5f;
    color: #ff0b5f;
    font-size: 16px;
    font-weight: 700;
    padding: 9px 28px;
    display: inline-block;
    border-radius: 5px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.button-one {
    background-color: #3791ff;
    border-color: #3791ff;
    color: #ffffff;
}

.button-one:hover {
    background-color: #ffffff;
    color: #3791ff;
}


.button-two:hover {
    background-color: #ff0b5f;
    color: #ffffff;
}

.button-three {
    border: 1px solid #3791ff;
    color: #3791ff;
}

.button-three:hover {
    background-color: #3791ff;
    color: #ffffff;
}

.round-box {
    border-radius: 10px;
    overflow: hidden;
}

/*---------------------------
02. Mainmenu-Area
--------------------------*/
.mainmenu-area {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    z-index: 999;
    padding: 30px 0px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    -webkit-box-shadow: ;
    box-shadow:
}

.mainmenu-area.sticky {
    background-color: #ffffff;
    position: fixed;
    padding: 10px 0px;
}

.mainmenu-area .navbar-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.mainmenu-area .logo {
    max-width: 200px;
}

#primary-menu ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

#primary-menu > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

#primary-menu ul li a {
    color: #012442;
    font-size: 16px;
    font-weight: 700;
}

#primary-menu > ul > li > a {
    display: block;
    padding: 20px 20px;
}

#primary-menu ul li.active > a,
#primary-menu ul li:hover > a {
    color: #ff0b5f;
}

.mainmenu-area #primary-menu ul li > a i.plus {
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    line-height: 12px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    display: block;
}

.mainmenu-area #primary-menu ul li > a i.plus:before,
.mainmenu-area #primary-menu ul li > a i.plus:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 10px;
    height: 1px;
    display: block;
    background-color: #012442;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.mainmenu-area #primary-menu ul li > a i.plus:before {
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
    -ms-transform: translate(-50%, -50%) rotate(90deg);
    transform: translate(-50%, -50%) rotate(90deg);
}

.mainmenu-area #primary-menu ul li:hover > a i.plus:before {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    -ms-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
}

/*-----------------------
3.1 DropDown-Menu
------------------------*/

.primary-menu ul.nav li {
    position: relative;
}

.primary-menu ul.nav .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    min-width: 220px;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    padding-top: 15px;
    padding-bottom: 15px;
    -webkit-box-shadow: 0px 20px 40px 0px rgba(25, 31, 160, 0.1);
    box-shadow: 0px 20px 40px 0px rgba(25, 31, 160, 0.1);
}

.primary-menu ul.nav .sub-menu .sub-menu {
    left: auto;
    right: 100%;
    top: 0;
}

.primary-menu ul.nav .sub-menu li:hover > .sub-menu {
    top: -15px;
}

.primary-menu ul.nav .sub-menu li {
    display: block;
    padding-left: 10px;
    padding-right: 10px;
    border-bottom: 1px solid #ededed;
}

.primary-menu ul.nav .sub-menu li a {
    padding: 10px;
    display: block;
}

.primary-menu ul.nav .sub-menu li a:before {
    content: "";
    width: 0;
    height: 2px;
    display: inline-block;
    margin-right: 0;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    border-bottom: 2px solid;
}

.primary-menu ul.nav .sub-menu li:hover > a:before {
    width: 20px;
    margin-right: 5px;
}

.primary-menu ul.nav .sub-menu li.current-menu-item > a,
.primary-menu ul.nav .sub-menu li.active > a,
.primary-menu ul.nav .sub-menu li:hover > a {
    color: #55c882
}

.primary-menu ul.nav li:hover > .sub-menu {
    visibility: visible;
    opacity: 1;
}

.social-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0px -7px;
}

.social-menu a {
    width: 43px;
    height: 40px;
    display: inline-block;
    text-align: center;
    line-height: 43px;
    color: #ff0b5f;
    font-size: 14px;
    margin: 0px 7px;
    background-attachment: scroll;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url("../images/sc-bg.png");
}

.social-menu a:hover {
    background-image: url("../images/sc-hover-bg.png");
    color: #ffffff;
}

.mainmenu-area .menu-right {
    overflow: hidden;
}

.navi-trigger {
    border: none;
    background: none;
    width: 100px;
    text-align: center;
    display: block;
    margin: 0px -32px 0px -20px;
    padding: 0px;
}

.navi-trigger svg {
    cursor: pointer;
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.navi-trigger path {
    fill: none;
    -webkit-transition: stroke-dashoffset 0.5s cubic-bezier(0.25, -0.25, 0.75, 1.25), stroke-dasharray 0.5s cubic-bezier(0.25, -0.25, 0.75, 1.25);
    -o-transition: stroke-dashoffset 0.5s cubic-bezier(0.25, -0.25, 0.75, 1.25), stroke-dasharray 0.5s cubic-bezier(0.25, -0.25, 0.75, 1.25);
    transition: stroke-dashoffset 0.5s cubic-bezier(0.25, -0.25, 0.75, 1.25), stroke-dasharray 0.5s cubic-bezier(0.25, -0.25, 0.75, 1.25);
    stroke-width: 10px;
    stroke: #083d27;
    stroke-dashoffset: 0px;
}

.navi-trigger path#top,
.navi-trigger path#bottom {
    stroke-dasharray: 240px 950px;
}

.navi-trigger path#middle {
    stroke-dasharray: 240px 240px;
}

.navi-trigger.cross path#top,
.navi-trigger.cross path#bottom {
    stroke-dashoffset: -650px;
    stroke-dashoffset: -650px;
}

.navi-trigger.cross path#middle {
    stroke-dashoffset: -115px;
    stroke-dasharray: 1px 220px;
}

/*---------------------------
03. Header-Area
--------------------------*/
.header-area {
    width: 100%;
    display: block;
    background: url("../images/header-bg.png") no-repeat scroll right top;
    padding-top: 200px;
    padding-bottom: 150px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header-area .header-text .top-title {
    text-transform: uppercase;
    color: #3791ff;
    font-size: 16px;
    font-weight: 400;
}

.header-area .header-text .main-title {
    font-size: 65px;
    font-weight: 900;
    margin-bottom: 40px;
}

/*---------------------------
00. Animation-Content-Area
--------------------------*/
.animation-content {
    position: relative;
    z-index: 1;
}

.animation-content .animation-item {
    position: absolute;
    z-index: -1;
    pointer-events: none;
}

.animation-content .animation-item.item-1 {
    right: 9%;
    bottom: 25%;
}

.animation-content .animation-item.item-2 {
    top: 25%;
    left: 43%;
}

.animation-content .animation-item.item-3 {
    top: 15%;
    left: 6%;
}

.animation-content .animation-item.item-4 {
    bottom: 20%;
    left: 6%;
}

.animation-content .animation-item.item-5 {
    left: 20%;
    bottom: 24%;
}

.animation-content .animation-item.item-6 {
    right: 20%;
    bottom: 20%;
}

.animation-content .animation-item.item-7 {
    right: 20%;
    top: 20%;
}

.animation-content .animation-item.item-8 {
    left: 49%;
    top: 32%;
}

.animation-content .animation-item.item-9 {
    left: 8%;
    top: 4%;
}

.animation-content .animation-item.item-10 {
    right: 20%;
    top: 6%;
}

.animation-content .animation-item.item-11 {
    right: 15%;
    bottom: 45%;
}

.animation-content .animation-item.item-12 {
    left: 50%;
    top: 10%;
}

.animation-content .animation-item.item-13 {
    left: -100px;
    bottom: 18%;
}

.animation-content .animation-item.item-14 {
    top: -43px;
    left: 10%;
}

.animation-content .animation-item.item-15 {
    right: 10%;
    top: -47px;
}

.animation-content .animation-item.item-16 {
    top: 68%;
    left: 10%;
}

.animation-content .animation-item.item-17 {
    left: 45%;
    bottom: -5%;
}

.animation-content .animation-item.item-18 {
    right: 0;
    bottom: 20%;
}

.animation-content .animation-item.item-19 {
    right: 20%;
    top: 25%;
}

.animation-content .animation-item.item-20 {
    right: 8%;
    bottom: -10%;
}

.animation-content .animation-item.item-21 {
    bottom: 11%;
    right: 0;
}

.animation-content .animation-item.item-22 {
    top: 33%;
    left: 12%;
}

.animation-content .animation-item.item-23 {
    left: 55%;
    top: 20%;
}

.animation-content .animation-item.item-24 {
    left: 0px;
    bottom: 0;
}

.animation-content .animation-item.item-25 {
    left: 48%;
    bottom: 10%;
}

.animation-content .animation-item.item-26 {
    right: 10%;
    bottom: 5%;
}

.animation-content .animation-item.item-27 {
    bottom: 0;
    right: 0;
}

/*---------------------------
00. Sponsor-Area
--------------------------*/

.sponsor-slider .slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.sponsor-slider .slider-item {
    margin: 0px 25px;
}


/*---------------------------
00. About-Area
--------------------------*/
.about-area {
    background-repeat: no-repeat;
    background-size: auto;
    background-position: center left;
}

.about-text .main-title {
    font-size: 30px;
    margin-bottom: 30px;
}

.about-text .desc {
    margin-bottom: 40px;
}


/*---------------------------
00. Service-Area
--------------------------*/
.service-box {
    margin-bottom: 40px;
}

.service-box .service-icon {
    margin-bottom: 30px;
}

.service-box .service-title {
    margin-bottom: 20px;
    font-size: 24x;
}

.service-box .desc {
    margin-bottom: 20px;
}


/*---------------------------
00. Counter-Area
--------------------------*/
.counter-area {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: #f8fcff;
}

.counter-box {
    text-align: center;
}

.counter-box .counter-icon {
    margin-bottom: 20px;
}

.counter-box .counter-number {
    font-size: 70px;
    font-weight: 900;
    color: #012442;
    line-height: 1em;
}

.counter-box .counter-title {
    color: #929596;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 0px;
    margin-top: 5px;
}

/*---------------------------
00. Portfolio-Area
--------------------------*/

.work-filter {
    list-style: none;
    margin: 0px -15px;
    padding: 0px;
}

.work-filter li {
    display: inline-block;
    margin: 0px 15px;
    color: #012442;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
}

.work-filter li.active {
    color: #ff0b5f;
}

.work-box:not(.work-side-box) {
    border: 1px solid #e9eaea;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    -webkit-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
    background-color: #ffffff;
}

.work-box:not(.work-side-box):hover {
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
    -webkit-box-shadow: 8px 8px 16px 0px rgba(0, 0, 0, 0.03);
    box-shadow: 8px 8px 16px 0px rgba(0, 0, 0, 0.03);
    border-color: #3791ff;
}

.work-box:not(.work-side-box) .work-image {
    border-radius: 10px 10px 0px 0px;
    overflow: hidden;
}

.work-box:not(.work-side-box) .work-details {
    margin-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.work-box .work-details .work-title {
    margin-bottom: 0px;
    font-size: 22px;
    text-transform: capitalize;
}

.work-box .work-details .work-title a {
    color: #012442;
}

.work-box .work-details .work-title:hover a {
    color: #3791ff;
}

.work-box .work-details .meta a {
    color: #929596;
    font-size: 14px;
    font-weight: 400;
    display: inline-block;
    text-transform: capitalize;
}

.work-side-box {
    margin-bottom: 50px;
}

.work-side-box .work-image {
    max-width: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.work-side-box .work-details {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    border: 1px solid #e9eaea;
}

.work-side-box .work-details .work-title {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 5px;
}

.work-side-box .work-details .desc {
    margin-top: 15px;
}

.work-side-box .work-details .more-text {
    color: #3791ff;
}

.round-box {
    margin: 0px;
    overflow: hidden;
    border-radius: 10px;
}

.check-list,
.hand-list {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

.check-list li,
.hand-list li {
    margin-bottom: 6px;
    position: relative;
    padding-left: 30px;
    color: #012442;
    font-weight: 700
}

.check-list li:last-child,
.hand-list li:last-child {
    margin-bottom: 0px;
}

.check-list li:before,
.hand-list li:before {
    content: "\f0a4";
    font-family: 'Font Awesome 5 Pro';
    font-weight: 300;
    margin-right: 10px;
    color: #3791ff;
    position: absolute;
    left: 0px;
    top: 0px;
}

.check-list li:before {
    content: "\f058";
}



/*---------------------------
00. Testimonial-Area
--------------------------*/
.testimonial-team-area {
    background: url("../images/team-bg.png") no-repeat scroll top 20% center / 100% calc(100% - 100px);
}

.testimonial-sliders {
    margin-left: -15px;
    margin-right: -15px;
}

.testimonial-box {
    padding: 0px 40px 40px 40px;
    border-radius: 10px;
    margin: 40px 15px 0px;
    background-color: #ffffff;
}

.testimonial-box .testimonial-quote {
    color: #ff0b5f;
    width: 80px;
    height: 80px;
    border: 5px solid #ff0b5f;
    text-align: center;
    font-size: 24px;
    border-radius: 100px;
    line-height: 70px;
    margin-top: -40px;
    margin-bottom: 35px;
    background-color: #ffffff;
}

.testimonial-box .testimonial-footer {
    margin-top: 35px;
    position: relative;
    padding-left: 80px;
}

.testimonial-box .testimonial-footer .client-name {
    font-size: 22px;
    margin-bottom: 5px;
}

.testimonial-box .testimonial-footer .client-name:before {
    content: "";
    width: 60px;
    height: 3px;
    background-color: #ff0b5f;
    display: inline-block;
    position: absolute;
    left: 0px;
    top: 10px;
}

.testimonial-slider-arrow {
    margin: 0px -2px;
}

.testimonial-slider-arrow .slider-control {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 100px;
    color: #ffffff;
    border: none;
    background-color: rgba(255, 255, 255, 0.3);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    margin: 0px 2px;
}

.testimonial-slider-arrow .slider-control:hover {
    background-color: rgba(255, 255, 255, 1);
    color: #ff0b5f;
}

/*---------------------------
00. Team-Area
--------------------------*/
.team-box {
    text-align: center;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.team-box .team-image {
    border-radius: 10px;
    overflow: hidden;
}

.team-box .team-image img {
    -webkit-filter: brightness(1);
    filter: brightness(1);
    -webkit-transform: scale(1) rotate(0deg);
    -ms-transform: scale(1) rotate(0deg);
    transform: scale(1) rotate(0deg);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    width: 100%;
}

.team-box:hover .team-image img {
    -webkit-filter: brightness(0.8);
    filter: brightness(0.8);
    -webkit-transform: scale(1.1) rotate(2deg);
    -ms-transform: scale(1.1) rotate(2deg);
    transform: scale(1.1) rotate(2deg);
}


.team-box .team-name {
    margin-top: 25px;
    font-size: 22px;
    margin-bottom: 5px;
}

.team-box .hover-details {
    background: rgb(55, 145, 255);
    background: -webkit-gradient(linear, left bottom, left top, color-stop(28%, rgba(55, 145, 255, 1)), to(rgba(55, 145, 255, 0)));
    background: -o-linear-gradient(bottom, rgba(55, 145, 255, 1) 28%, rgba(55, 145, 255, 0) 100%);
    background: linear-gradient(0deg, rgba(55, 145, 255, 1) 28%, rgba(55, 145, 255, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#3791ff", endColorstr="#3791ff", GradientType=1);
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.team-box:hover > .hover-details {
    visibility: visible;
    opacity: 1;
    bottom: 0px;
}

.team-box .hover-details .team-name {
    color: #ffffff;
}

.team-box .hover-details .team-position {
    color: #ffffff;
    margin-bottom: 10px;
}

.team-box .hover-details .social-link a {
    color: #ffffff;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    display: inline-block;
}

/*---------------------------
00. Blog-Area
--------------------------*/
.blog-area {
    background: url('../images/post-bg.png') no-repeat scroll center left / auto;
}

.blog-sliders {
    margin-left: -15px;
    margin-right: -15px;
    padding-bottom: 2px;
}

.blog-sliders .blog-box {
    margin: 0px 15px;
}

.blog-box .title {
    font-weight: 700;
}

.blog-box .blog-image {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

.blog-box .meta {
    list-style: none;
    margin: 0px 0px 15px;
    padding: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.blog-box .meta li {
    margin-right: 15px;
}

.blog-box .meta li .icon {
    color: #ff0b5f;
    margin-right: 5px;
}

.blog-box .title a {
    color: #012442;
}


.blog-box .title:hover a {
    color: #3791ff;
}

.blog-box .desc {
    margin-bottom: 30px;
}

@media only screen and (min-width: 768px) {
    .blog-box.side-blog-box {
        display: flex;
        align-items: center;
        border: 1px solid #e9eaea;
        border-radius: 10px;
    }

    .blog-box.side-blog-box .blog-image {
        background-color: #fafafa;
        margin-right: 30px;
        width: 270px;
        min-width: 270px;
        height: 400px;
        position: relative;
        margin-bottom: 0px;
    }

    .blog-box.side-blog-box .blog-image img {
        position: absolute;
        left: 50%;
        top: 50%;
        height: 100%;
        max-width: inherit;
        max-height: 100%;
        transform: translate(-50%, -50%);
    }
}

/*-- Blog-Details-Style --*/
.post-details {
    border: 1px solid #e9eaea;
    border-radius: 10px;
    overflow: hidden;
}

.post-details .post-image {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    min-height: 200px;
    background-color: #fafafa;
}

.post-details .post-image .post-meta {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    background-color: #3791ffcc;
    padding: 20px 30px;
    transform: translateY(100%);
    transition: 0.3s;
}

.post-details .post-image:hover > .post-meta {
    transform: translateY(0px);
}

.post-details .post-image .post-meta .meta {
    list-style: none;
    margin: 0px -15px;
    padding: 0px;
    color: #ffffff;
}

.post-details .post-image .post-meta .meta li {
    display: inline-block;
    margin: 0px 15px;
}

.post-details .post-image .post-meta .meta li .icon {
    margin-right: 10px;
}

.post-details .post-image .social-share {
    list-style: none;
    margin: 0px -5px;
    padding: 0px;
    display: flex;
    align-items: center;
}

.post-details .post-image .social-share li {
    display: inline-block;
    color: #ffffff;
    margin: 0px 5px;
}

.post-details .post-image .social-share li a {
    color: #ffffff;
    display: block;
}

.post-details .post-image .post-meta .meta li:last-child {
    margin-right: 0px;
}


.post-details .post-content {
    padding: 30px;
}

.single-post-navigation {
    border: 1px solid #eceded;
    border-radius: 10px;
    margin-top: 30px;
    padding: 30px;
    display: flex;
    justify-content: space-between;
}

.single-post-navigation .nav-arrow {
    display: flex;
    align-items: center;
}

.single-post-navigation .nav-arrow .icon {
    min-width: 60px;
    height: 60px;
    background-color: #ffffff;
    border: 1px solid #3791ff;
    text-align: center;
    line-height: 60px;
    color: #3791ff;
    border-radius: 10px;
    margin-right: 15px;
    transition: 0.3s;
}

.single-post-navigation .nav-arrow:hover .icon {
    color: #ffffff;
    background-color: #3791ff;
}

.single-post-navigation .nav-arrow .title {
    margin-bottom: 0px;
}

@media only screen and (max-width: 768px) {
    .single-post-navigation .nav-arrow .title {
        display: none;
    }
}

.single-post-navigation .nav-arrow.next-post {
    flex-direction: row-reverse;
    text-align: right;
}

.single-post-navigation .nav-arrow.next-post .icon {
    margin-right: 0px;
    margin-left: 15px;
}

.paginate {
    margin-top: -10px;
}

.paginate .page-number {
    width: 50px;
    height: 50px;
    line-height: 50px;
    display: inline-block;
    border: 1px solid #ff0b5f;
    border-radius: 100px;
    color: #ff0b5f;
    font-size: 16px;
    margin: 10px 5px 0px 5px;
    font-weight: 700;
    text-align: center;
}

.paginate .page-number:hover,
.paginate .page-number.current {
    background-color: #ff0b5f;
    color: #ffffff;
}

.widget {
    margin-bottom: 60px;
}

.widget .widget-title {
    font-weight: 900;
    font-size: 24px;
    border-bottom: 1px solid #ff0b5f;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.widget .widget-title:after {
    content: ".";
    color: #ff0b5f;
    margin-left: 5px;
}

.widget:not(.search-widget) {
    padding: 30px;
    border: 1px solid #eaebeb;
    border-radius: 10px;
    background-color: #ffffff;
}

.widget:last-child {
    margin-bottom: 0px;
}

.search-form .form-control {
    height: 80px;
    border-radius: 10px;
    padding: 30px;
    border: 1px solid #eaebeb;
}

.search-form {
    position: relative;
}

.search-form .search-button {
    position: absolute;
    right: 10px;
    top: 10px;
    border: none;
    background-color: #3791ff;
    width: 60px;
    height: 60px;
    border-radius: 10px;
    color: #ffffff;
}

.widget-posts {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

.widget-posts li {
    position: relative;
    margin-bottom: 15px;
    display: block;
    overflow: hidden;
}

.widget-posts li:last-child {
    margin-bottom: 0px;
}

.widget-posts li .post-image {
    width: 80px;
    height: 80px;
    background-color: #ededed;
    display: inline-block;
    overflow: hidden;
    float: left;
    margin-right: 15px;
    border-radius: 8px;
}

.widget-posts li .post-image img {
    max-width: inherit;
    height: 80px;
}

.widget-posts li .post-title {
    font-size: 16px;
}

.widget-posts li .post-title a {
    color: #012442;
}

.widget-posts li .post-title a:hover {
    color: #3791ff;
}

.widget-posts li .meta i {
    color: #ff0b5f;
    margin-right: 5px;
}

.widget-posts li .meta {
    font-size: 14px;
    display: block;
    margin-bottom: 0px;
}

.tags-cloud a {
    display: inline-block;
    border: 1px solid #ebecec;
    border-radius: 5px;
    padding: 2px 15px;
    font-size: 14px;
    margin: 4px;
    color: #929596;
}

.tags-cloud {
    display: flex;
    flex-wrap: wrap;
}

.tags-cloud a:hover {
    background-color: #3791ff;
    color: #ffffff;
    border-color: #3791ff;
}

/*---------------------------
00. Contact-Area
--------------------------*/
.contact-form .form-control {
    margin-bottom: 30px;
    min-height: 60px;
    padding: 20px;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: #e9eaea;
}

.contact-form textarea.form-control {
    min-height: 120px;
}

.contact-form .form-control:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: #012442;
}

/*---------------------------
00. Footer-Area
--------------------------*/
.footer-widget {
    margin-bottom: 60px;
}

.footer-widget .footer-logo {
    max-width: 180px;
}

.footer-widget .widget-title {
    margin-bottom: 30px;
    font-weight: 900;
}

.nav-links {
    list-style: none;
    margin: -5px 0px;
    padding: 0px;
}

.nav-links li {
    display: block;
    margin: 5px 0px;
}

.nav-links li a {
    color: #929596;
}

.nav-links li a:hover {
    color: #ff0b5f;
}

.icon-info {
    list-style: none;
    margin: -5px 0px;
    padding: 0px;
}

.icon-info li {
    margin: 5px 0px;
    position: relative;
    padding-left: 30px;
}

.icon-info li .icon {
    position: absolute;
    left: 0px;
    top: 2px;
    color: #ff0b5f;
    width: 20px;
    text-align: center;
}

.icon-info li {
    color: #012442;
}

.footer-bottom-area {
    background-color: #012442;
    color: #ffffff;
    padding-bottom: 30px;
}

#scrollUp {
    width: 70px;
    height: 70px;
    line-height: 60px;
    border-radius: 100px;
    border: 5px solid #ffffff;
    background-color: #012442;
    text-align: center;
    color: #ffffff;
    display: block;
    margin: -35px auto 0px;
}

#scrollUp:hover {
    background-color: #ff0b5f;
}

.footer-menu ul {
    list-style: none;
    margin: 0px -15px;
    padding: 0px;
}

.footer-menu ul li {
    display: inline-block;
}

.footer-menu ul li a {
    display: block;
    color: #ffffff;
    padding: 5px 15px;
}

.preloader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: 99999999;
}

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

/*---------------------------
00. Inner-Pages-Styles
--------------------------*/
.site-header {
    padding-top: 220px;
    padding-bottom: 140px;
    background: url("../images/site-header.png") no-repeat center center / cover;
}

.big-h1 {
    font-weight: 900;
    font-size: 72px;
}

.big-h2 {
    font-weight: 900;
    font-size: 44px;
}

.big-h3 {
    font-weight: 900;
    font-size: 36px;
}

.bread ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

.bread ul li {
    display: inline-block;
    margin-left: 10px;
    color: #929596;
    font-size: 16px;
    text-transform: uppercase;
}

.bread ul li a {
    color: #929596;
}

.bread ul li:after {
    content: "-";
    margin-left: 10px;
}

.bread ul li:last-child:after {
    display: none;
}

.bread ul li:first-child {
    margin-left: 0px;
}

.subscription-form .form-control:focus,
.subscription-form .form-control {
    border: 1px solid #012442;
    color: #012442;
    height: 70px;
    padding: 20px 20px;
    box-shadow: none;
}

.subscription-form .form-control:focus {
    border-color: #3791ff;
}

.subscription-form .form-submit {
    height: 70px;
    width: 100%;
    text-align: center;
    background-color: #3791ff;
    font-weight: 700;
    border: none;
    box-shadow: none;
}


/*---------------------------
00. Contact-Page-Style
--------------------------*/
.contact-info-box {
    text-align: center;
    border: 1px dashed transparent;
    border-radius: 10px;
    padding: 60px 30px;
    transition: 0.5s;
}

.contact-info-box .icon {
    margin-bottom: 30px;
}

.contact-info-box .title {
    font-size: 20px;
    font-weight: 700;
}

.contact-info-box .contact-link {
    font-weight: 900;
    font-size: 24px;
    color: #012442;
    display: inline-block;
    margin-top: 24px;
}

.contact-info-box:hover {
    border-color: #ff0e62;
}