  
/* 1. Theme default css */

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&amp;family=Roboto:wght@400;500&amp;display=swap");

body {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #5d5a77;
    font-style: normal;
}

p,
li,
a,
button,
span,
h5,
h6 {
    font-family: "Roboto", sans-serif;
}

.img {
    max-width: 100%;
    transition: all 0.3s ease-out 0s;
}

.f-left {
    float: left;
}

.f-right {
    float: right;
}

.fix {
    overflow: hidden;
}

a,
.button {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

    a:focus,
    .btn:focus,
    .button:focus {
        text-decoration: none;
        outline: none;
        box-shadow: none;
    }

    a:hover,
    .portfolio-cat a:hover,
    .footer -menu li a:hover {
        color: #2b96cc;
        text-decoration: none;
    }

a,
button {
    color: #1696e7;
    outline: medium none;
    
}

    button:focus,
    input:focus,
    input:focus,
    textarea,
    textarea:focus {
        outline: 0;
    }

.uppercase {
    text-transform: uppercase;
}

.capitalize {
    text-transform: capitalize;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: Poppins, sans-serif;
    color: #2c2c2c;
    margin-top: 0px;
    font-style: normal;
    font-weight: 800;
}

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

h1 {
    font-size: 40px;
    font-weight: 700;
}

h2 {
    font-size: 35px;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 22px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

ul {
    margin: 0px;
    padding: 0px;
}

li {
    list-style: none;
}

p {
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
    /*color: #5d5a77;*/
    color: #2c2c2c;
    margin-bottom: 15px;
}

hr {
    border-bottom: 1px solid #eceff8;
    border-top: 0 none;
    margin: 30px 0;
    padding: 0;
}

a {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

label {
    color: #7e7e7e;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
}

*::-moz-selection {
    background: #d6b161;
    color: #fff;
    text-shadow: none;
}

::-moz-selection {
    background: #444;
    color: #fff;
    text-shadow: none;
}

::selection {
    background: #444;
    color: #fff;
    text-shadow: none;
}

*::-moz-placeholder {
    color: #555555;
    font-size: 14px;
    opacity: 1;
}

*::placeholder {
    color: #555555;
    font-size: 14px;
    opacity: 1;
}

/* Preloader */

#preloader {
    background-color: #fff;
    height: 100%;
    width: 100%;
    position: fixed;
    margin-top: 0px;
    top: 0px;
    z-index: 999;
}

#loading-center {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader {
    position: relative;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin: 75px;
    display: inline-block;
    vertical-align: middle;
}

    .loader .loader-outter {
        position: absolute;
        border: 4px solid #ff4b36;
        border-left-color: transparent;
        border-bottom: 0;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        -webkit-animation: loader-outter 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
        animation: loader-outter 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
    }

    .loader .loader-inner {
        position: absolute;
        border: 4px solid #ff4b36;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        left: calc(50% - 20px);
        top: calc(50% - 20px);
        border-right: 0;
        border-top-color: transparent;
        -webkit-animation: loader-inner 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
        animation: loader-inner 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
    }

@-webkit-keyframes loader-outter {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes loader-outter {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes loader-inner {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

@keyframes loader-inner {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

/* scrollUp */

.scroll-top {
    width: 50px;
    height: 50px;
    line-height: 50px;
    position: fixed;
    bottom: 105%;
    right: 30px;
    font-size: 16px;
    border-radius: 6px;
    z-index: 99;
    color: #ffffff;
    text-align: center;
    cursor: pointer;
    background: #6153fc;
    transition: 1s ease;
    border: none;
    opacity: 0;
}

    .scroll-top.open {
        bottom: 30px;
        opacity: 1;
    }

    .scroll-top::after {
        position: absolute;
        z-index: -1;
        content: "";
        top: 100%;
        left: 5%;
        height: 10px;
        width: 90%;
        opacity: 1;
        background: radial-gradient( ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80% );
    }

    .scroll-top:hover {
        background: #ff4b36;
    }

.minsection {
    width: 100%;
    float: left;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

    .swiper-slide img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.cover-background {
    background-repeat: no-repeat !important;
    background-size: cover !important;
    overflow: hidden;
    position: relative;
    /*background-position: center center !important;*/
    background-position: bottom;
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
    padding: 7em 0;
}

.content-slider  {
    text-align: left;
    width: 89%;
    left: 0em;
    position: relative;
    z-index: 9;
}

.cover-background:before {
    content: "";
    position: absolute;
    /*background: #000000;*/
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0.5;
}

.content-slider h1 {
    color: #fff;
    font-size: 51px;
    font-weight: 500;
    line-height: 60px;
}

.content-slider p {
    color: #fff;
    font-size: 15px;
    line-height: 26px;
    margin-bottom: 3em;
}

.content-slider a {
    background: #3478bc;
    color: #fff;
    letter-spacing: 0.5px;
    font-size: 22px;
    font-weight: 500;
}


    .content-slider a i {
        margin-left: 10px;
    }

.content-slider .btn span {
    background: #000;
    border: 2px solid #fff;
    color: #fff !important;
}

.left-image {
    width: 100%;
    margin: auto;
}

    .left-image img {
        width: 100%;
        position: relative;
    }

span.cricle {
    width: 140px;
    height: 140px;
    background: #3478bc;
    border-radius: 50%;
    position: absolute;
}

.alltuchtopdown {
    -webkit-animation: alltuchtopdown 1.5s ease-in-out 0s infinite alternate;
    animation: alltuchtopdown 1.5s ease-in-out 0s infinite alternate;
    animation-duration: 3s;
}

.min-bg {
    position: absolute;
    bottom: 12%;
    background: white;
    left: 6%;
    padding: 22px;
    text-align: center;
    box-shadow: 0px 5px 19.53px 1.47px rgb(85 80 98 / 10%);
    border-radius: 10px;
}

    .min-bg:before {
        content: "";
        background-image: url(../images/crose-line.png);
        width: 100%;
        height: 100%;
        top: 0;
        opacity: 0.4;
        z-index: -1;
        bottom: 0;
        background-size: auto;
        left: 0;
        right: 0;
        position: absolute;
    }

    .min-bg h1 {
        font-size: 57px;
        font-weight: 600;
        margin-top: 0;
        color: #262626;
    }

    .min-bg h3 {
        font-size: 19px;
        font-weight: 500;
        margin-top: 15px;
        color: #262626;
    }

.right-text .linetext {
    font-size: 16px;
    font-weight: 500;
    color: #3478bc;
    letter-spacing: 0.5px;
    margin-bottom: 25px;
}

.right-text h2 {
    font-size: 36px;
    font-weight: 500;
    color: #282828;
    line-height: 43px;
    margin-bottom: 0.5em;
}

.right-text p {
    color: #515151;
    font-size: 16px;
    font-weight: normal !important;
    line-height: 24px;
    text-align: justify;
}

.company-aim {
    width: 100%;
    display: inline-block;
    margin-top: 15px;
}

.com-one {
    width: 100%;
    display: inline-block;
}

.left-side-icon {
    float: left;
    width: 88px;
    height: 91px;
    background: #000;
    border-radius: 9px;
    text-align: center;
    line-height: 91px;
    margin-right: 21px;
}

.right-side-text {
    float: left;
    width: 75%;
}

    .right-side-text h3 {
        color: #3478bc;
        font-size: 23px;
        font-weight: 500;
        margin-bottom: 5px;
        margin-top: 5px;
    }

    .right-side-text p {
        font-size: 15px;
    }

.orange {
    background: #000;
}

.orange-btn {
    background: #ff6600;
    color: #fff;
}

    .orange-btn:hover {
        color: #fff;
    }

    .orange-btn i {
        margin-left: 12px;
    }

.orange-btn {
    background: #3478bc;
    color: #fff;
    padding: 19px 22px;
}

.play-video i {
    margin: 0px;
    font-size: 25px;
}

.play-video {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-left: 20px;
    margin-right: 15px;
}

.linetext {
    position: relative;
}

    .linetext:before {
        content: "";
        width: 36px;
        height: 2px;
        background: #3478bc;
        position: absolute;
        left: 18px;
        top: 4px;
    }

    .linetext:after {
        content: "";
        width: 36px;
        height: 2px;
        background: #3478bc;
        position: absolute;
        left: 3px;
        top: 13px;
    }

.d-button {
    background: #3478bc;
    color: #fff;
    letter-spacing: 0.5px;
    font-size: 18px;
    font-weight: 500;
    padding: 12px 22px;
}

    .d-button span {
        background: #ffffff;
        border: 2px solid #fff;
        color: #fff !important;
    }

    .d-button i {
        margin-left: 10px;
    }

.top-section {
    padding: 70px;
    position: relative;
    background-size: cover;
}

.ful-section .col-md-4:before {
    content: "";
    position: absolute;
    background: rgb(0 0 0 / 82%);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9;
}

.d-content {
    position: relative;
    z-index: 34;
}

    .d-content h1 {
        font-size: 96px;
        color: #fff;
        position: relative;
        font-weight: 500;
        padding-bottom: 5px;
        margin-bottom: 25px;
    }

        .d-content h1:before {
            content: "";
            position: absolute;
            width: 54px;
            height: 4px;
            background: #3478bc;
            bottom: 0;
            left: 4px;
        }

    .d-content h4 {
        font-size: 25px;
        color: #fff;
        position: relative;
        font-weight: normal;
        margin-bottom: 17px;
    }

    .d-content p {
        font-size: 15px;
        color: #ffff;
        position: relative;
        font-weight: normal;
        line-height: 24px;
    }

.ful-section .row {
    margin: 0px;
}

.ful-section .col-md-4 {
    padding: 0px;
}

.top-section:before {
    content: "";
    position: absolute;
    background-image: url(../images/right-cr.png);
    width: 153px;
    height: 178px;
    background-size: auto;
    top: 0;
    right: 0;
    z-index: 9;
}

.top-section:after {
    content: "";
    position: absolute;
    background-image: url(../images/left-cr.png);
    width: 176px;
    height: 196px;
    background-size: auto;
    bottom: 0;
    left: 0;
    z-index: 9;
}

.right-text h5 {
    font-size: 17px;
    font-weight: 500;
    color: #4a4949;
}

img {
    max-width: 100%;
}

.img-box {
    position: relative;
}

    .img-box:before {
        content: "";
        position: absolute;
        /*background: linear-gradient(to top, #000 6%, transparent 100%);*/
        background-image: url(../images/g-line.png);
        bottom: 0;
        height: 96px;
        width: 100%;
    }

    .img-box .f-name {
        position: absolute;
        bottom: 0;
        width: 100%;
        text-align: center;
        left: 0;
        right: 0;
        color: #fff;
        font-size: 21px;
        margin-bottom: 9px;
        font-weight: 400;
    }

.po-t-r {
    position: absolute;
    top: 10px;
    right: 10px;
    margin: 0px;
    width: 45px;
    height: 45px;
    line-height: 42px;
    padding: 2px;
    text-align: center;
}

    .po-t-r i {
        font-size: 17px !important;
    }

.img-box,
.img-box:before {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

    .img-box:hover.img-box:before {
        background-color: #082c6196;
        background-image: none;
        top: 0;
        height: 100%;
    }

    .img-box:hover .d-button {
        display: block;
    }

    .img-box .d-button {
        display: none;
    }

        .img-box .d-button i {
            margin-left: 0px;
        }

        .img-box .d-button:hover {
            color: #000;
        }

.po-text {
    box-shadow: 0px 5px 19.53px 1.47px rgb(85 80 98 / 33%);
    background: white;
    position: relative;
    padding: 2em 2em;
    position: absolute;
    left: 3em;
    z-index: 9;
    top: 2em;
}

    .po-text:before {
        content: "";
        background-image: url(../images/crose-line.png);
        width: 100%;
        height: 100%;
        top: 0;
        opacity: 0.4;
        z-index: -1;
        bottom: 0;
        background-size: auto;
        left: 0;
        right: 0;
        position: absolute;
    }

    .po-text h3 {
        color: #161616;
        font-size: 30px;
        font-weight: 500;
    }

    .po-text p {
        color: #161616;
        font-size: 16px;
        line-height: 23px;
    }

.cr-bg {
    background-color: #f8f8f8;
    position: relative;
}

/*.cr-bg:before {
        content: "";
        position: absolute;
        background-image: url(../images/right-cr-bg.png);
    }*/

.po-img {
    position: absolute;
    right: 0;
    top: 0px;
    bottom: 0;
    margin: auto;
}

.before-ani:before {
    -webkit-animation: alltuchtopdown 1.5s ease-in-out 0s infinite alternate;
    animation: alltuchtopdown 1.5s ease-in-out 0s infinite alternate;
    animation-duration: 3s;
}

.img-con img {
    width: 67%;
    float: right;
    margin-right: 5em;
    border-radius: 6px;
    position: relative;
    z-index: 3;
}

.Consulting {
    width: 100%;
    display: inline-block;
    position: relative;
}

    .Consulting:before {
        content: "";
        width: 30%;
        position: absolute;
        background: #3478bc;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }

.img-con:before {
    content: "";
    position: absolute;
    background-image: url(../images/dot.png);
    width: 55%;
    height: 84%;
    right: 51px;
    bottom: -28px;
}

.po-con {
    position: absolute;
    z-index: 9;
    width: 45%;
    background: rgb(0 0 0 / 72%);
    padding: 25px;
    top: 22px;
    border-radius: 8px;
}

    .po-con h3 {
        color: #fff;
        font-size: 24px;
        font-weight: 400;
        line-height: 36px;
        margin: 0px;
    }

.tran-bg {
    background: transparent;
}

.ml-55 {
    margin-left: 110px;
}

.b-text h3 {
    color: #232323;
}

.why-choose {
    background-color: #f8f8f8;
}

    .why-choose .row {
        margin: 0px;
    }

.pd-0 {
    padding: 0px;
}

.bg-sec-list {
    background: #3478bc;
    box-shadow: 0px 5px 19.53px 1.47px rgb(85 80 98 / 10%);
    border-radius: 5px;
    padding: 15px;
}

    .bg-sec-list h3 {
        color: #fff;
        font-size: 19px;
        font-weight: 500;
        margin-top: 25px;
    }

    .bg-sec-list p {
        font-size: 15px;
        color: #fff;
        line-height: 22px;
        font-weight: 400;
        margin-bottom: 0px;
    }

span.text-w {
    font-size: 73px;
    position: absolute;
    right: 20px;
    top: -5px;
    color: rgb(255 255 255 / 62%);
}

.bg-sec-list {
    position: relative;
}

.min-s-list .col-md-4 {
    padding: 0px 8px;
}

.bg-blue {
    background-color: #000;
}

.heading-t {
    text-align: center;
    position: relative;
    padding-bottom: 30px;
}

    .heading-t:before {
        content: "";
        background-image: url(../images/heading.png);
        width: 65px;
        height: 46px;
        background-size: auto;
        position: absolute;
        bottom: 0;
        margin: auto;
        left: 0;
        right: 0;
        background-repeat: no-repeat;
    }

    .heading-t:after {
        content: "";
        position: absolute;
        width: 174px;
        height: 2px;
        background: #3478bc;
        left: 0;
        right: 0;
        margin: auto;
        bottom: 0;
    }

.how-sec {
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    z-index: 1;
    padding-left: 26px;
    padding-right: 26px;
}

.no-be:before {
    display: none;
}

.how-sec:before {
    width: 197px;
    height: 73px;
    content: "";
    position: absolute;
    right: -100px;
    top: 0;
    z-index: -1;
    background-image: url(../images/arrow-right.png);
    background-position: 50%;
    background-size: cover;
    background-repeat: no-repeat;
}

.heading-t h2 {
    font-size: 36px;
    font-weight: 500;
    color: #282828;
    line-height: 43px;
    margin-bottom: 6px;
}

.heading-t p {
    font-size: 19px;
    font-weight: normal;
    color: #4a4949;
}

span.before-line {
    position: relative;
    background: #c2d8fc;
    width: 89px;
    height: 89px;
    display: inline-block;
    line-height: 73px;
    border-radius: 50%;
    padding: 5px;
    margin-bottom: 2em;
    border: 1px solid #6153fc;
    box-shadow: 0px 1px 14.53px -0.53px rgb(85 80 98 / 19%);
}

.how-sec h4 {
    font-size: 22px;
    font-weight: 500;
    color: #2c2c2c;
    margin-top: 15px;
}

.how-sec p {
    font-size: 16px;
    font-weight: normal;
    color: #2c2c2c;
    line-height: 26px;
    margin-bottom: 0px;
}

.howitwork {
    position: relative;
}

    .howitwork:before {
        content: "";
        position: absolute;
        background-image: url(../images/how-bg.png);
        width: 100%;
        height: 100%;
        left: 0;
        right: 0;
        bottom: 0;
        top: 0;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
    }

.before-line:before {
    content: "";
    position: absolute;
    background-image: url(../images/linebe.png);
    width: 99px;
    height: 143px;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: -1;
}

.Testimonials {
    position: relative;
    background-color: #f8f8f8;
    
}

    .Testimonials:before {
        content: "";
        position: absolute;
        background-image: url(../images/line-bg.png);
        width: 100%;
        height: 100%;
        left: 0;
        right: 0;
        bottom: 0;
        top: 0;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
    }

.testmonial-box {
    box-shadow: 89 59px 78px rgba(215, 157, 157, 0.3), 0 15px 12px rgba(0,0,0,0.22);   
     background: #fff;
    padding: 20px;
    position: relative;
    border-radius: 5px;

    
}

    .testmonial-box:before {
        content: "";
        position: absolute;
        background-image: url(../images/right-cr.png);
        width: 89px;
        height: 105px;
        background-size: cover;
        top: 0;
        right: 0;
        opacity: 0.3;
    }

    .testmonial-box:after {
        content: "";
        position: absolute;
        background-image: url(../images/cote.png);
        width: 89px;
        height: 60px;
        background-size: contain;
        bottom: 0;
        right: 11px;
        opacity: 0.4;
        background-repeat: no-repeat;
    }

.img-user {
    float: left;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #fff;
    box-shadow: 0px 2px 13.53px 1.47px rgb(85 80 98 / 12%);
    margin-right: 15px;
}

.right-t {
    margin-top: 8px;
}

.img-user img {
    width: 89px;
    height: 89px;
}

.owl-theme button {
    width: 46px;
    height: 46px;
    background: white !important;
    display: inline-block !important;
    float: left !important;
    border: 1px solid #000 !important;
    margin-right: 15px;
    margin-top: 15px;
    border-radius: 3px;
}

.right-t h4 {
    font-size: 16px;
    font-weight: 500;
    color: #282828;
}

.right-t p {
    color: #666666;
    line-height: 20px;
    font-size: 13px;
    font-weight: normal;
    margin-bottom: 4px;
}

.right-t ul li {
    display: inline-block;
}

    .right-t ul li i {
        color: #ecad0e;
    }

.img-text-top {
    display: inline-block;
    float: left;
    position: relative;
    z-index: 999;
    width: 100%;
    margin-bottom: 15px;
}

.dis-test {
    width: 100%;
    margin: 15px 0;
    margin-top: 5px;
    display: inline-block;
}

    .dis-test p {
        font-size: 14.5px;
        font-weight: normal;
        color: #515151;
        line-height: 23px;
        margin-bottom: 0px;
    }

.blog-box {
    width: 94%;
    /* box-shadow: 0px 0px 16.53px 1px rgb(101 101 101 / 32%); */
    position: relative;
    background-color: #f8f8f8;
    display: inline-block;
    float: left;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;




    


    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);
  }
  
  .blog-box:hover {
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
  }


    .blog-box:hover {
        background-color: #222429;

    }

        .blog-box:hover .top-b li:first-child {
            color: white
        }

        .blog-box:hover .blog-con h4 a {
            color: #ece3e3;
        }
        
        .top-b :hover{
            color: #fff;

        }



.blog-img {
    /* /* position: absolute;
    top: -31px;
    right: -31px; */


} 

.blog-con {
        float: left;
    margin-top: -0.5em;
    padding: 29px;
}

.top-b {
    width: 100%;
    float: left;
    margin-bottom: 6px;
}

    .top-b li {
        float: left;
        font-size: 19px;
        font-weight: 500;
        color: #3478bc;

    }

        .top-b li:last-child {
            float:center;
            color: #3478bc;
            font-size: 22px;
        }

.blog-con h4 {
    font-size: 19px !important;
    font-weight: normal;
    text-align: justify;
}

    .blog-con h4 a {
        font-size: 13px !important;
        font-weight: 500;
        line-height: 18px;
    }

.Blog-section {
    position: relative;
}

    .Blog-section:before {
        content: "";
        width: 41%;
        position: absolute;
        background-image: url(../images/bg-l-dot.png);
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-repeat: repeat-y;
    }

.request-home {
    position: relative;
    background-color: #f8f8f8;
}
.request-home:before {
    content: "";
    position: absolute;
    background-image: url(../images/line-bg.png);
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.bg-w-re {
    box-shadow: 0px 5px 19.53px 1.47px rgb(85 80 98 / 33%);
    background: white;
    position: relative;
    padding: 3em;
    border-radius: 6px;
}
.form-re .form-control {
    min-height: 56px;
    padding: 10px 20px;
    background: #f8f8f8;
}
.form-re textarea.form-control {
    min-height: 100px;
}
.min-bg-or {
    width: 100%;
    padding: 35px;
    background: #3478bc;
}
.cont-one h4 {
    color: #fff;
    font-weight: 500;
    font-size: 19px;
    line-height: 28px;
}
.cont-one:last-child {
    margin-bottom: 0px;
}
.cont-one p {
    color: #fff;
    font-weight: normal;
    font-size: 15px;
    line-height: 24px;
}
.cont-one {
    margin-bottom: 30px;
}

.cont-one a {
    color: #fff;
    font-size: 21px;
}
    .cont-one a span {
        width: 40px;
        height: 40px;
        display: inline-block;
        background: #000;
        border-radius: 50%;
        line-height: 40px;
        text-align: center;
        color: #fff;
        margin-right: 10px;
        font-size: 25px;
    }

.blue-btn {
    background:#3478bc;
}
.blue-btn:hover {
    color: #fff;
}
.blue-btn span {
    background: #000;
    color: #fff;
}
.form-send h3 {
    font-weight: 500;
}
.form-send p {
    font-weight: normal;
    line-height: 23px;
    margin-bottom: 30px;
    font-size: 16px;
}
.bg-w-re:before {
    content: "";
    background-image: url(../images/crose-line.png);
    width: 18%;
    height: 100%;
    top: 0;
    opacity: 0.4;    
    bottom: 0;
    background-size: auto;
    left: 0;
    right: 0;
    position: absolute;
}
.bg-w-re:after {
    content: "";
    background-image: url(../images/req-be.png);
    width: 11%;
    height: 100%;
    top: 0;
    opacity: 0.4;
    bottom: 0;
    background-size: auto;
     right: 0;
    position: absolute;
}
.wi-50 li a:hover{ color:#fff;}
.contact-btn .btn span {
    background: #222429;
}


/*
 About Us
   
*/
.img-video img {
    width: 100%;
}

.sub-banner1 {background-size: cover;
    width: 100%;
    background-image: url(../images/p.jpg);
    display: inline-block;
    position:relative;
}
.sub-banner2 {background-size: cover;
    width: 100%;
    background-image: url(../images/about.jpg);
    display: inline-block;
    position:relative;
}

.sub-banner3 {background-size: cover;
    width: 100%;
    background-image: url(../images/contact1.jpg);
    display: inline-block;
    position:relative;
}
.sub-banner4 {background-size: cover;
    width: 100%;
    background-image: url(../images/faq-new.jpg);
    display: inline-block;
    position:relative;
}
.sub-banner5 {background-size: cover;
    width: 100%;
    background-image: url(../images/contact1.jpg);
    display: inline-block;
    position:relative;
}
.sub-banner {background-size: cover;
    width: 100%;
    background-image: url(../images/9.jpg);
    display: inline-block;
    position:relative;
}


    .sub-banner:before {
        content: "";
        position: absolute;
        background: rgb(0 0 0 / 61%);
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
    }
.text-center{ text-align:center;}
.text-line h1 {
    color: #fff;
    font-size: 54px;
    position: relative;
    font-weight: 500;
    padding-bottom: 18px;
    margin-bottom: 20px;
}
    .text-line h1:before{ content:""; position:absolute;}
    .text-line ul li {
        float: left;
        margin: 0px 10px;
        text-transform: uppercase;
        font-weight: 500;
    }
.text-line h1:before {
    content: "";
    position: absolute;
    width: 60%;
    height: 1px;
    background: #fff;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.text-c{}
.text-c {
    display: inline-block;
    color: #fff;
}
.color-t{ color:#ffffff;}

.images-about {
    position: relative;
}
/* .images-about:before {
    content: "";
    position: absolute;
    background-image: url(../images/dot.png);
    width: 28%;
    height: 18%;
    left: 2.8%;
    top: 3%;
} */
.images-about:after {
    content: "";
    position: absolute;
    background: #3478bc;
    width: 64%;
    height: 60%;
    left: 17.8%;
    top: 28%;
    z-index: -1;
}

.after-ani:after {
    -webkit-animation: alltuchtopdown 1.5s ease-in-out 0s infinite alternate;
    animation: alltuchtopdown 1.5s ease-in-out 0s infinite alternate;
    animation-duration: 3s;
}
span.min-text-line {
    position: absolute;
    right: 21%;
    top: 7%;
    font-size: 20px;
    font-weight: normal; color:#282828;
}
span.min-text-line:before {
    content: "";
    position: absolute;
    background-image: url(../images/sedow-line.png);
    width: 100px;
    height: 73%;
    left: -82%;
    top: 13%;
}
    span.min-text-line:after {
        content: "";
        position: absolute;
        width: 2px;
        height: 100%;
        background: #282828;
        left: -6%;
        top: 2px;
    }
    .min-text-line b {
        margin-top: 7px;
        font-size: 62px;
        float: left;
        line-height: 49px;
        font-weight: 500;
        margin-right: 3px;
    }

.be-l {
    width: 100%;
    padding-left: 60px;
    position: relative;
    margin-bottom: 0px;
    float: left;
}
    .be-l:before {
        content: "";
        background-image: url(../images/l-check.png);
        position: absolute;
        width: 50px;
        height: 55px;
        left: 2px;
        top: -10px;
    }

.mar-auto {
    margin: auto;
}
.img-video {
    position: relative;
    z-index: 2;
}
.img-video:before {
    content: "";
    position: absolute;
    background: rgb(2 39 94 / 43%);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.play-v {
    position: absolute;
    z-index: 9;
    width: 86px;
    height: 86px;
    left: 0;
    right: 0;
    margin: auto;
    top: 31%;
}
.box-con {
    background: #fff;
    padding: 30px;
    /* box-shadow: 0px 5px 19.53px 1.47px rgb(85 80 98 / 19%);
animation: bloom ease-in-out .75s forwards;


} */
/* @keyframes bloom {
	0% {
		filter: grayscale(.8);
	}
	40% {
		filter: grayscale(.5);
	}
	100% {
		filter: grayscale(0);
	}
} */

    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);
  }
  
  .box-con:hover {
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
  }


.img-b{ width:95px; display:inline-block}
.dis-con{}
    .dis-con h3 {
        font-weight: 500;
        text-transform: uppercase;
        margin-bottom: 15px;
        font-size: 28px;
    }
    .dis-con p {
        font-size: 16px;
        font-weight: normal;
        line-height: 26px;
        color: #282828;
    }
.box-con a {
    color: #000;
}
.box-con:hover a {
    color: #3478bc;
}
.num {
    font-size: 9vw;
    float: right;
    line-height: 97px;
    color: rgb(186 186 186);
}
.po-box-mvv {
    margin-top: -5em;
    margin-left: -4em;
    padding-right: 4em;
    position: relative;
    z-index: 2;
}
.video-bg{ position:relative}
    .video-bg:before {
        content: "";
        width: 56%;
        position: absolute;
        background: #3478bc;
        top: -9%;
        /* left: 0; */
        right: -6%;
        bottom: 0;
        height: 117%;
    }
    .video-bg:after {
        content: "";
        width: 56%;
        position: absolute;
        background-image: url(../images/w-dot.png);
        top: -9%;
        right: -6%;
        bottom: 0;
        height: 117%;
        opacity: 0.5;
    }
.Director { position:relative;
}
 
    .Director:before {
        content: "";
        width: 30%;
        position: absolute;
        background: #3478bc;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }

.img-dir{ position:relative;}
    .img-dir img {
        z-index: 3;
        position: relative;
    }
    .img-dir:before {
        content: "";
        position: absolute;
        background-image: url(../images/dot.png);
        width: 98%;
        height: 90%;
        right: 51px;
        bottom: -45px;
    }
.sign img {
    float: left;
}
.Director-con b {
    font-size: 17px;
    color: #282828;
    font-weight: 500;
}
.Director-con p {
    font-size: 16px;
    color: #282828;
    line-height: 27px;
}
.left-i {
    width: 28%;
    float: left;
    position: relative;
}
    .left-i img {
        z-index: 9;
        position: relative;
        width: 127px;
        height: 127px;
    }
    .left-i .img-user {
        position: relative;
        margin-top: 13%;
    }
    .left-i:before {
        content: "";
        position: absolute;
        width: 61%;
        height: 165%;
        background:#3478bc;
        left: -20px;
        top: -21px;
        bottom: 0;
    }
    .right-side {
        width: 72%;
        float: right;
    }
        .right-side .right-t h4 {
            font-size: 19px;
            font-weight: 500;
            color: #282828;
        }
        .right-side .right-t p {
            
            font-size: 15px;
            
            margin-bottom: 8px;
        }
        .right-side .dis-test{ margin-bottom:0px;}
        .right-side .dis-test p {
            margin-bottom: 0px !IMPORTANT;
            color: #282828;
            margin-top: 5px;
        }
.testmonial-box-two {
    display: inline-block;
    overflow: hidden;
}
.set {
    position: relative;
    width: 100%;
    height: auto;
    background-color: #ffffff;
    border: 1px solid #8e8e8e;
    margin-bottom: 20px;
}
.set > a {
        display: block;
        padding: 10px 15px;
        text-decoration: none;
        color: #555;
        font-weight: 500;
        -webkit-transition: all 0.2s linear;
        -moz-transition: all 0.2s linear;
        transition: all 0.2s linear;
        font-size: 18px;
    }

.set > a i {
    float: right;
    margin-top: 2px;
}

    .set > a.active {
        background-color: #3478bc;
        color: #fff;
    }
    .set .content {
        background-color: #fff;
        border-bottom: 1px solid #ddd;
        display: none;
    }

        .set .content p {
            padding: 10px 15px;
            margin: 0;
            color: #333;
        }

.faq:after {
    content: "";
    width: 30%;
    position: absolute;
    background: #3478bc;
    top: 0;
    z-index: -1;
    right: 0;
    bottom: 0;
}
.img-faq {
    position: relative;    
}
    .img-faq img {
        z-index: 2;
        position: relative;
    }
    .img-faq:before {
        content: "";
        position: absolute;
        background-image: url(../images/dot.png);
        width: 100%;
        height: 95%;
        right: -73px;
        bottom: -79px;
    }
.Team{ background-color:#f8f8f8}
.social-t li{ float:left}

.team-m {
    background: #fff;
    text-align: center;
    display: inline-block;
    width: 100%;
    border-radius: 5px;
    position: relative;
    box-shadow: 0px 5px 19.53px 1.47px rgb(85 80 98 / 19%);
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
    .team-m:after {
        content: "";
        position: absolute;
        background-image: url(../images/af-l.png);
        width: 206px;
        height: 38%;
        background-size: contain;
        background-repeat: no-repeat;
        left: 0;
        bottom: 0;
    }
    .team-m:hover {
        background-color: #222429;
    }
   
    .team-m:hover .n-d h3 {
        color: #fff;
    }
        .team-m:hover .n-d p {
            color: #999;
        }
.t-img {
    width: 130px;
    height: 130px;
    display: inline-block;
    margin-top: 30px;
    position: relative;
}
.team-m:before {
    content: "";
    position: absolute;
    background: #3478bc;
    width: 57%;
    height: 53%;
    left: 0;
    right: 0;
    margin: auto;
    border-radius: 0px 0px 50% 50%;
    top: 0;
}
.t-img img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0px 2px 13.53px 1.47px rgb(85 80 98 / 12%);
}
.n-d {
    display: inline-block;
    width: 100%;
    position: relative;
    z-index: 7;
    padding: 20px;
    margin-top: 10px;
    padding-bottom: 11px;
}
.owl-stage {
    padding: 20px 0px;
}
    .n-d h3 {
        font-weight: 500;
        font-size: 21px;
        color: #282828;
        margin-bottom: 2px;
    }
    .n-d p {
        font-weight: normal;
        font-size: 16px;
        color: #5f5f5f;
        margin-bottom: 2px;
    }
.social-t {
    width: auto;
    text-align: center;
    display: inline-block;
    float: none;
    margin-top: 20px;
}
    .social-t li:first-child a{ margin-left:0px !important}
    .social-t li a {
        float: left;
        width: 40px;
        height: 40px;
        box-shadow: 0px 5px 19.53px 1.47px rgb(85 80 98 / 19%);
        display: inline-block;
        margin-left: 16px;
        border-radius: 50%;
        line-height: 40px;
        color: #fff;
    }

.facebook-change-co {
    background: #23a1cf;
    color: #fff;
}

.twitter-change-co {
    background: #88d9f7;
    color: #fff;
}

.pinterest-change-co {
    background: #f5235d;
    color: #fff;
}

.linkedin-change-co {
    background: #1893da;
    color: #fff;
}


/*--services--*/

.images-ser-r {
    position: relative;
}
    .images-ser-r:before {
        content: "";
        position: absolute;
        background-image: url(../images/dot.png);
        width: 52%;
        height: 84%;
        right: 0;
        bottom: 0px;
        z-index: -1;
    }

.min-bg-ser {
    position: absolute;
    top: 19%;
    background: white;
    left: -32%;
    padding: 22px;
    text-align: center;
    box-shadow: 0px 5px 19.53px 1.47px rgb(85 80 98 / 10%);
    border-radius: 10px;
}
.min-bg-ser h2 {
    font-weight: 500;
    text-align: left;
    font-size: 31px;
    line-height: 37px;
    color: #282828;
    margin-bottom: 15px;
}
.min-bg-ser a {
    font-size: 21px;
    color: #3478bc;
}
    .min-bg-ser:before {
        content: "";
        background-image: url(../images/crose-line.png);
        width: 100%;
        height: 100%;
        top: 0;
        opacity: 0.4;
        z-index: -1;
        bottom: 0;
        background-size: auto;
        left: 0;
        right: 0;
        position: absolute;
    }
.min-section-ser{position:relative; background:#f8f8f8;}
.min-section-ser:before {
    content: "";
    width: 30%;
    position: absolute;
    background-image: url(../images/bg-l-dot.png);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: repeat-y;
}
    .min-bg-ser a i {
        font-size: 22px;
        background:#3478bc;
        width: 40px;
        height: 40px;
        line-height: 40px;
        border-radius: 50%;
        color: #fff;
    }
.box-ser-l {
    border-radius: 8px 60px 8px 8px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
    .box-ser-l:hover {
        background-color: #222429;
    }
        .box-ser-l:hover .dis-con h3 {
            color: #fff;
        }
        .box-ser-l:hover .dis-con p {
            color: #cfcfcf;
        }
    .box-ser-l .img-b {
        width: 84px;
        display: inline-block;
        background: #64afe8;
        border-radius: 50%;
        padding: 13px;
        height: 84px;
    }
    .box-ser-l .num {
        font-size: 7vw;
        float: right;
        line-height: 80px;
        color: rgb(186 186 186);
    }
    .box-ser-l .dis-con h3 {
        font-weight: 500;
        text-transform: capitalize;
        margin-bottom: 15px;
        font-size: 23px;
        line-height: 31px;
        color: #1c1b1b;
    }
    .box-ser-l .dis-con p{}
    .box-ser-l:after {
        content: "";
        position: absolute;
        background-image: url(../images/af-r.png);
        width: 183px;
        height: 32%;
        background-size: contain;
        background-repeat: no-repeat;
        right: 0;
        bottom: 0;
    }
.min-section-ser {
    position: relative;
    overflow: hidden;
}
    .min-section-ser .po-img { margin:inherit;
    }
.images-ser-r-two {
    position: relative;
}
    .images-ser-r-two:before {
        content: "";
        position: absolute;
        width: 122%;
        height: 31%;
        background:#3478bc;
        bottom: -12%;
        right: -14%;
        z-index: -1;
    }
    .images-ser-r-two:after {
        content: "";
        position: absolute;
        background-image: url(../images/dot.png);
        width: 52%;
        height: 78%;
        left: -8.7%;
        bottom: 45px;
        z-index: -2;
    }
ul.wi-50-ser li {
    width: 50%;
    display: inline-block;
    float: left;
    line-height: 34px;
    font-weight: normal;
    color: #0f0f0f;
    padding-left: 45px;
    margin-bottom: 10px; position:relative;
}
    ul.wi-50-ser li:before {
        content: "";
        position: absolute;
        background-image: url(../images/tick.png);
        width: 32px;
        height: 32px;
        left: 0;
    }
.consulting-over {
    overflow: hidden
}
/*-- Services-details --*/
.ser-det-img {
       position: relative;
    padding: 3px;
    background: #898989;
    z-index: 4;
}
    .ser-det-img:before {
        content: "";
        width: 100%;
        position: absolute;
        /*background-image: url(../images/w-dot.png);*/
        top: 0;
        right: 0;
        bottom: 0;
        height: 100%;
        opacity: 0.5;
        z-index: -1;
    }
    .bg-ser-details {
        position: relative;
    }
    .bg-ser-details:before {
        content: "";
        position: absolute;
        width: 61%;
        background: #f8f8f8;
        right: 0;
        top: 0;
        bottom: 0;
    }
    .bg-ser-details:after {
        content: "";
        position: absolute;
        background-image: url(../images/line-bg.png);
        width: 61%;
        height: 100%;
        right: 0;
        top: 0;
        bottom: 0;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
    }
.bg-gray-ser-d {
    position: relative;
    z-index: 4;
}
.ser-d-right-text h3 {
    font-size: 25px;
    margin-bottom: 20px;
    color: #282828;
    margin-top: 15px;
    float: left;
    width: 100%;
    font-weight: 500;
}
.ser-d-right-text p {
    color: #282828;
    font-size: 16px;
    font-weight: normal !important;
    line-height: 24px;
    text-align: justify;
}
.ser-d-right-text b {
    color: #282828;
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
}
.ser-d-right-text b i {
}
.p-first-latter {
    font-weight: normal;
    color: #515151;
    font-size: 16px;
     
    line-height: 24px;
}
    .p-first-latter::first-letter {
        font-weight: bold;
        color: #ff6600;
        font-size: 6.9vw;
        line-height: 34px;
        margin-top: 21px;
        margin-right: 12px;
        float: left;
    }
.box-s-gray {
    background-color: #e1e0e0;
    padding: 25px;
}
    .box-s-gray h3 {
        font-weight: 500;
        color: #3b3b3b;
        font-size: 21px;
        line-height: 24px;
    }
.box-s-gray p{
    font-weight: normal;
    color: #3b3b3b;
    font-size: 16px;
    line-height: 24px; margin-bottom:0px;
}
.ser-de-min-con p {
    font-weight: normal;
    color: #515151;
    font-size: 16px; text-align:justify;
    line-height: 24px;
}

.comment-re {
    background: #fff;
    padding: 20px; border-radius:5px;
    box-shadow: 0px 5px 19.53px 1.47px rgb(85 80 98 / 19%);
}
.list-com {
    margin-bottom: 15px;
}
.comment-b-reply {
    width: 87%;
    display: inline-block;
    margin-left: 13%;
    margin-top: 10px;
}
.img-user-co {
    width: 11%;
    /*height: 60px;*/
    border-radius: 50%;
    float: left; overflow:hidden
}
.comment-b-reply .comment-b {
    width: 86.5%;
}
.comment-re h2 {
    font-size: 21px;
    font-weight: 500;
    margin-bottom: 30px;
    margin-top: 0px;
}

.img-user-co img {
    width: 60px;
    height: fit-content;
    border-radius: 50%;
    float: left;
    border: 2px solid #3478bc;
}
.comment-b {
    background: #e3e3e3;
    display: inline-block;
    width: 86.5%;
    margin-left: 11px;
    padding: 15px;
    border-radius: 5px;
    position: relative;
}
    .comment-b h4 {
        font-size: 18px;
        font-weight: 500;
    }
    .comment-b p {
        font-size: 15px;
        color: #2d3748;
        font-weight: normal;
        line-height: 22px;
        margin-bottom: 0px;
    }
.reply-com {
    position: absolute;
    right: 5px;
    top: 4px;
    background: #3478bc;
    color: #fff;
    border-radius: 50%;
    border: none;
    width: 35px;
    height: 35px;
    line-height: 35px;
}
.view-all .btn {
    width: 100%;
    padding: 12px;
}
.view-all a span{
    width: 100%;
 }
.view-all .btn {
    background-color: #3478bc;
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.5px;
}
    .view-all .btn i{ margin-left:20px;}
    .view-all .btn:hover {
        background-color: #000;
        color: #fff;
    }
.post-com h2{ margin-bottom:10px !important;}
.form-com {
    min-height: 49px;
    background: #e3e3e3;
}
.form-com-message {
    min-height: 100px;
}
.post-com .form-group {
    margin-bottom: 24px;
}

.blog-box-one {
    width: 100%;
    box-shadow: 0px 5px 19.53px 1.47px rgb(85 80 98 / 19%);
    border: 1px solid #c4c4c4;
    margin-bottom: 25px;
}
.blog-cont {
    position: relative;
    padding: 30px 25px;
    background: #f8f8f8;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
.blog-box-one:hover .blog-cont {
    /* background-color: #222429; */
}
.blog-box-one:hover .blog-cont h3 {
    /* color: #fff; */
}
.blog-box-one:hover .blog-cont p {
    /* color: #cfcfcf; */
}
    .blog-box-one:hover .blog-cont h3 a {
        /* color: #cfcfcf; */
    }
.blog-box-one:hover .blog-cont-tr {
    border-color: #222429 transparent transparent transparent;
}
        .blog-cont-tr {
          
            width: 0;
            height: 0;
            border-width: 20px 20px 0 20px;
            border-color: #F8F8F8 transparent transparent transparent;
            border-style: solid;
            position: absolute;
            bottom: -20px;
            left: 25px;
        }
    .blog-cont h4 {
        font-size: 14px;
        text-transform: uppercase;
        font-weight: 500;
        color: #3478bc;
        margin-bottom: 15px;
    }
.blog-cont h3 {
    font-size: 22px;
    font-weight: 500;
    line-height: 32px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    position: relative;
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    white-space: normal;
    overflow: hidden;
}
    .blog-cont h3 a {
        display: -webkit-box !important;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        text-overflow: ellipsis;
        white-space: normal;
        overflow: hidden;
    }
.blog-cont:after {
    content: "";
    position: absolute;
    background-image: url(../images/af-r.png);
    width: 152px;
    height: 34%;
    background-size: contain;
    background-repeat: no-repeat;
    right: 0;
    bottom: 0;
}

    .blog-cont h3:before {
        content: "";
        position: absolute;
        width: 50px;
        height: 3px;
        background: #3478bc;
        bottom: 0;
    }
        .blog-cont p {
            font-size: 16px;
            font-weight: normal;
            line-height: 27px;
            color: #282828;
            margin-bottom: 15px;
        }

.blog-list-two.row {
    padding: 17px;
    position: relative;
    background: #fff;
    margin: 7px;
    border-radius: 30px;
    box-shadow: 0px 3px 15px rgba(0,0,0,0.2);
        margin-bottom: 30px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
text-align: left;
        
    
      
      
        
    } 
    @media only screen and (max-width: 600px) {
        .blog-list-two.row {
            text-align: center; /* Center the text on mobile devices */
        }
    }

    
.blog-list-two:hover {
    /* background-color: #f3f4f5   ; */
    box-shadow: 0px 50px 70px rgba(0,0,0,0.4);

}
    .blog-list-two:hover .blog-h-two h3 a{
        color: #040404;
    }
    .blog-list-two:hover .blog-d-two p {
        color: #3b2e2e;
    }
    .blog-list-two:after {
        content: "";
        position: absolute;
        background-image: url(../images/af-r.png);
        width: 152px;
        height: 48%;
        background-size: contain;
        background-repeat: no-repeat;
        right: 0;
        bottom: 0;
    }
.blog-h-two h3 {
    font-size: 19px;
    font-weight: 500;
    line-height: 21px;
    padding-bottom: 0;
    margin-bottom: 3px;
    /* display: -webkit-box !important; */
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    white-space: normal;
    overflow: hidden;
}
.img-two-b {
    border-radius: 5px;
    overflow: hidden;
}
.blog-h-two {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #c8c8c8;
}
.blog-d-two p {
    font-size: 13px;
    font-weight: normal;
    line-height: 27px;
    color: #5b5b5b;
    margin-bottom: 0;
}
.blog-two-cont {
    padding-top: 12px;
}
.blog-h-two span {
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 500;
    color: #3478bc;
    margin-bottom: 15px;
}

/*-- Blog-Details --*/
.blog-details{ background-color:#f8f8f8;}
.min-bg-blog-details {
    padding: 30px;
    background: #fff;
    box-shadow: 0px 0px 5px 2px rgb(116 116 116 / 19%);
}

.heading-blog-top{}
    .heading-blog-top span {
        font-size: 14px;
        text-transform: uppercase;
        font-weight: 500;
        color: #3478bc;
        margin-bottom: 15px;
        display: inline-block;
    }
    .heading-blog-top h3 {
        font-size: 22px;
        font-weight: 500;
        line-height: 32px;
        margin-bottom: 20px;
        padding-bottom: 15px;
        position: relative;
         
    }
    .heading-blog-top p {
        font-size: 16px;
        font-weight: normal;
        line-height: 27px;
        color: #525252;
        margin-bottom: 15px;
    }
    .heading-blog-top h3:before {
        content: "";
        position: absolute;
        width: 50px;
        height: 3px;
        background: #3478bc;
        bottom: 0;
    }
.blog-date span {
    font-size: 24px;
    line-height: 25px;
    text-align: center;
}
.blog-date {
    background: #cacaca;
    padding: 10px;
    margin-bottom: 20px;
}

.share-blog .share-b {
    width: 100%;
    display: inline-block;
    text-align: center;
    
    margin-bottom: 5px;
    padding: 5px;
    color: #fff;
    font-size: 14px;
}
.share-blog .facebook {
    background: #1473e8;
}
.share-blog .Instagram {
    background: #e814aa;
}
.share-blog .Twitter {
    background: #15afdb;
}
.blog-d-p-con p {
    font-size: 16px;
    font-weight: normal;
    line-height: 27px;
    color: #525252;
    margin-bottom: 15px;
}
.blog-d-i-con b {
    font-weight: 500;
    line-height: 29px;
    color: #2d2d2d;
}
.blog-simler-right .blog-cont {
    width: 80%;
    float: left;
}
.blog-simler-right .blog-img-one {
    width: 20%;
    float: left;
    height: 286px;
    
    background-position: bottom center;
}
.blog-box-one:hover .blog-cont-tr-detail {
   border-color: transparent transparent transparent #222429;
}
.blog-simler-right .blog-cont {
    margin-bottom: 0px;
    background: #fff;
    box-shadow: 0px 0px 5px 2px rgb(116 116 116 / 19%);
}
.blog-simler-right{ margin-bottom:0px !important}
.blog-simler-right .blog-cont-tr-detail {
    width: 0;
    height: 0;
    border-color: transparent transparent transparent #f8f8f8;
    border-style: solid;
    position: absolute;
    top: 20px;
    right: -20px;
    border-width: 15px 0 15px 20px;
}
.blog-simler-right .blog-img-one a{
    display: inline-block;
    width: 100%;
    height: inherit;
    padding: 30px;
}
.blog-simler-right {
    display: inline-block;
    float: left;
    width: 100%;
    border: none;
}
.view-all-blog .btn {
    width: 100%;
    padding: 13px;
    font-size: 15px;
    letter-spacing: 0.6px;
    background: #ff6600;
   
}
    .view-all-blog .btn span {
        left: 0px !important;
    }



/*-- Contoct Us --*/
.left-side-add {
    padding: 30px;
    background: #3478bc;
}

.cont-add h3 {
    color: #fff;
    font-size: 21px;
    font-weight: 500;
}
.cont-add p {
    color: #fff;
    font-size: 18px;
    font-weight: normal;
}
.add-li {
    width: 100%;
    display: inline-block;
    margin-bottom: 0px;
}
    .add-li span {
        width: 56px;
        height: 56px;
        background: #ffd6ba;
        display: inline-block;
        text-align: center;
        line-height: 56px;
        font-size: 33px;
        border-radius: 4px;
        color: #272727;
        float: left;
        margin-right: 20px;
    }
.right-add {
    width: 74%;
    float: left;
}
#my-form-status {
    margin: 0px;
}
.right-add p {
    font-size: 15px;
    color: #fff;
    font-weight: normal;
    line-height: 24px;
}

    .right-add h4 {
        margin-bottom: 0px;
        font-size: 17px;
        color: #fff;
        font-weight: 500;
    }
.social-con .social-t li {
    float: none;
    display: inline-block;
}
.social-con .social-t {
    width: 100%;
    display: inline-block;
    text-align: center;
    background: #ffd6ba;
    padding: 7px;
    float: none;
    margin-top: 0px;
}
    .social-con .social-t li a {
        float: none;
        width: 40px;
        height: 40px;
        box-shadow: 0px 5px 19.53px 1.47px rgb(85 80 98 / 19%);
        display: inline-block;
        font-size: 22px;
        border-radius: 50%;
        line-height: 40px;
        color: #fff;
        margin: auto;
        margin-left: 20px;
    }
.social-con {
    margin-bottom: 0px;
}



.light-sky {
    background-color: #dbf7f9;
    padding: 30px;
}
.light-sky1 {
    /* background-color: #dbf7f9; */
    padding: px;
    width: 100%;
}
.black-t h3 {
    color: #181818
}
.form-send .form-group {
}
.form-send .form-com {
    background: #fff;
    min-height: 53px;
}
.form-send .form-group {
    margin-bottom: 30px;
}


.top-bar {
    
    position: relative;
}
/*-- Typography Page Start--*/
.typo-icon h3 {
    font-size: 22px;
    font-weight: 500;
    color: #2c2c2c;
    margin-top: 0;
}
.typo-icon p {
    font-size: 15px;
    font-weight: normal;
    color: #2c2c2c;
    line-height: 26px;
    margin-bottom: 0px;
}
.typo-icon {
    margin-bottom: 30px;
}
.left-i-t {
    width: 85px;
    height: 85px;
    float: left;
    background: red;
    text-align: center;
    border-radius: 50%;
    line-height: 85px;
    background: #c2d8fc;
    border: 1px solid #6153fc;
    box-shadow: 0px 1px 14.53px -0.53px rgb(85 80 98 / 19%);
    margin-right: 13px;
}
.right-side-t {
    display: flow-root;
}
.gray-bg-light{ background-color:#f8f8f8}
.normal{ font-weight:normal}
.small-check .wi-50-ser li {
    width: 100%;
    display: inline-block;
    float: left;
    line-height: 34px;
    font-weight: normal;
    color: #0f0f0f;
    font-weight: 500;
    padding-left: 45px;
    margin-bottom: 10px;
    position: relative;
}
.typo-p {
    margin-bottom: 20px;
}
.typo-p p {
    font-size: 15px;
    line-height: 24px;
}
/*-- Typography Page end --*/
/*home2*/
/*slider*/
.text span{
   color: #3478bc;
}


.btn-style-orange {
    background: #3478bc;
    color: #fff;
}
.btn-style-orange:hover {
    background: #000;
    color: #fff;
}
.theme-btn {
    padding: 15px 25px !important;
    display: inline-block !IMPORTANT;
    float: left;
    margin-right: 20px !IMPORTANT;
    border-radius: 5px;
    text-transform: uppercase;
}
/*slider-end*/
/*about company*/
.a-home {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}
.about-home h3 {
    line-height: 40px;
        margin-bottom: 10px;
            font-size: 26px;
}
.about-home p {
    font-weight: 400;
}
.a-c{
    position: relative;
}
.a-c:before {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    background: #3478bc;
    width: 25%;
    bottom: 0;
    }
   .owl-nav button {
    background:  #3478bc!important;
}
/*about company end*/
/*service-home*/
.service-h {
    padding: 10px 0;
}
.ser-home {
    padding: 20px;
    box-shadow: 0px 0px 2px 0px;
    border-radius: 8px;
    background: #FFF;
}
.ser-home-img img {
    border-radius: 8px;
}
.service-h h4 {
    font-size: 20px;
        display: -webkit-box !important;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    white-space: normal;
    overflow: hidden;
}

.service-h p {
     display: -webkit-box !important;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    white-space: normal;
    overflow: hidden;
}
.s-h-btn {
    font-weight: 600;
    color: #000;
    font-size: 15px;
}
.service-hoe-heading {
    margin-bottom: 20px;
    padding-left: 15px;
}
.service-home{
    background: #f5f5f5;
}
/*service-home-end*/
/*blog-home*/
.news-blog h6 {
    font-size: 14px;
    font-weight: 600;
    color: #3478bc;
}
.news-blog span{
    color: #3478bc;
}
.news-blog {
    width: 100%;
    margin-bottom: 20px;
}
.nb-txt {
    padding: 0 10px;
    position: absolute;
    bottom: 0;
    z-index: 99;
}
.nb-img img {
    position: relative;
}
.nb-txt p {
    opacity: 0;
    color: #FFF;
    line-height: 20px;
    margin-top: 10px;
}
.nb-txt h4 {
    margin-bottom: -48px;
    color: #FFF
}
.nb-home:hover h4 {
    margin-bottom: 0;
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    white-space: normal;
    overflow: hidden;
}
.nb-home:hover p {
    opacity:1;
}
.nb-home:hover li {
    opacity:1;
}
.user {
    position: absolute;
    top: 15px;
    left: 50px;
    z-index: 99;
}
.user-flex i {
    padding-right: 7px;
}
.user-flex li {
    opacity: 0;
    color: #FFF;
}
.news{
    position: relative;
}
.nb-img:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    background: #000;
    bottom: 0;
    right: 0;
    height: 100%;
    z-index: 1;
    opacity: 0.5;
    max-width: 93%;
    margin-left: 14px;
}
/*blog-home-end*/
/*testinomial*/
.testi h6 {
    color: #3478bc;
    font-weight: 600;
}
.test-btn {
    padding: 10px 15px;
    background: #3478bc;
    color: #FFF;
    border-radius: 8px;
    font-size: 15px;
}
.testi p {
    padding-bottom: 10px;
}
.t-both {
    display: inline-flex;
    align-items: center;
}
.tes-img img {
    width: 60px !important;
}
.t-txt {
    padding: 6px 12px;
    text-align: left;
}
.t-txt h6 {
    margin-bottom: 6px;
}
.testi-nomial{
    text-align: center;
    position: absolute;
    top: 25%;
    left: 15%;
    width: 80%;
}
.testi-nomial p{
max-width: 333px;
    margin: 0 auto 26px;
}

/*testinomial-end*/
/*process*/
.wp-sec h6 {
    color: #3478bc;
    font-weight: 600;
}
.wp-sec span {
    color: #3478bc; 
}
.w-p {
    background: url(../images/p-bg.jpg);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: overlay;
    background-color: #000000a8;
}
.wp-sec h2 {
    color: #FFF;
}
.wp-sec {
    margin-bottom: 20px;
    width:100%;
}
#testi .owl-nav {
    display: none;
}
.wp-col-img img {
    width: 100px;
}
.wp-col-img {
    text-align: center;
    
}
.wp-col-text {
    margin-top: 20px;
    text-align: center;
}
.wp-col-text h4{
    color: #FFF;
}
.wp-col-text p{
    color: #FFF;
    display: -webkit-box !important;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    white-space: normal;
    overflow: hidden;
}

/*process-end*/
/*faq*/
.accordion-faq h3 {
    margin-bottom: 20px;
}


.accordion {
  margin-top: 10px;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 17px;
  transition: 0.4s;
}

.panel {
  padding: 0 18px;
  display: none;
  background-color: white;
  overflow: hidden;
}
.accordion:after {
  content: '\002B';
  color: #777;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.accordion.active:after {
  content: "\2212";
}*/
/*faq-end*/
/*why*/
.w-w-c {
   background:#f5f5f5;
}
.why h6 {
    color: #3478bc;
    font-weight: 600;
    margin-bottom:20px; 
}
.why span {
    color: #3478bc; 
}
.why {
    text-align: center;
    width: 100%;
    margin-bottom: 25px;
}
.e-img img {
    width: 70px;
}
.expert{
    display: flex;
        margin-bottom: 20px;
}
.e-txt h5 {
    font-size: 18px;
  display: -webkit-box !important;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    white-space: normal;
    overflow: hidden;
}
.e-txt p{
display: -webkit-box !important;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    white-space: normal;
    overflow: hidden;
}
.e-txt {
    padding-left: 15px;
}

.why-we img {
    position: relative;
}
/*why-end*/
/*home2-end


/* 99999999999999999999999999999999999999999 */
.tcb-product-slider {
    background: #333;
    background-image: url(https://unsplash.it/1240/530?image=721);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0;
  }
  .tcb-product-slider .carousel-control {
    width: 5%;
  }
  .tcb-product-item a {
    color: #fafafa;
  }
  .tcb-product-item a:hover {
    text-decoration: none;
  }
  .tcb-product-item .tcb-hline {
    margin: 10px 0;
    height: 1px;
    background: #ccc;
  }
  @media all and (max-width: 768px) {
    .tcb-product-item {
      margin-bottom: 30px;
    }
  }
  .tcb-product-photo {
    text-align: center;
    height: 180px;
    background: #fff;
    
  }
  .tcb-product-photo img {
    height: 100%;
    display: inline-block;
  }
  .tcb-product-info {
    background: #000000;
    padding: 15px;
  }
  .tcb-product-title h4 {
    margin-top: 0;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }
  .tcb-product-rating {
    color: #acacac;
  }
  .tcb-product-rating .active {
    color: #FFB500;
  }
  .tcb-product-price {
    color: firebrick;
    font-size: 18px;
  }
  
  
  
  .details {
      margin: 50px 0; }
   .details h1 {
        font-size: 32px;
        text-align: center;
        margin-bottom: 3px; }
      .details .back-link {
        text-align: center; }
        .details .back-link a {
          display: inline-block;
          margin: 20px 0;
          padding: 15px 30px;
          background: #333;
          color: #fff;
          border-radius: 24px; }
          .details .back-link a svg {
            margin-right: 10px;
            vertical-align: text-top;
            display: inline-block; }




/*        ujhubuhbjk */
/* entire container, keeps perspective */
/* entire container, keeps perspective */

/* #img-box{

height: 162px;
width: 243px;

} */




/*   kjgi;ihsural gggggggggggggggggggggggggggggggggggggggggggggggg */

#blog{

 
/*-=-=-=-=-=-=-=-=-=-*/
/* Column Grids */
/*-=-=-=-=-=-=-=-=-= */

.col_half { width: 49%; }
.col_third { width: 32%; }
.col_fourth { width: 23.5%; }
.col_fifth { width: 18.4%; }
.col_sixth { width: 15%; }
.col_three_fourth { width: 74.5%;}
.col_twothird{ width: 66%;}
.col_half,
.col_third,
.col_twothird,
.col_fourth,
.col_three_fourth,
.col_fifth{
	position: relative;
	display:inline;
	display: inline-block;
	float: left;
	margin-right: 2%;
	margin-bottom: 20px;
}
.end { margin-right: 0 !important; }








}


/*  mmmmmmmmmmmm  mmmmmmmmmm  mmmmmmmmmmmm */



  
  
/*======================
    404 page
=======================*/


.page_404{ padding:40px 0; background:#fff; font-family: 'Arvo', serif;
}

.page_404  img{ width:100%;}

.four_zero_four_bg{
 
 background-image: url("https://cdn.dribbble.com/users/285475/screenshots/2083086/dribbble_1.gif");
    height: 600px;
    background-position: right;
    margin: auto;
    text-align: center;
 }
 
 
 .four_zero_four_bg h1{
 font-size:80px;
 background-position: right;

 }
 
  .four_zero_four_bg h3{
			 font-size:80px;
             margin: auto;
			 }
			 
			 .link_404{			 
	color: #fff!important;
    padding: 10px 20px;
    background: #0732f1;
    margin: 20px 0;
    display: inline-block;}
	.contant_box_404{ margin-top:-50px;
    
    text-align: center;
    margin-left: 180px;

    
    }
    


    /* uygyhkfjvnhskj */
#footer-id{

color: white;


}

.tcb-product-info{
text-align: center;

}

.btn:not(:disabled):not(.disabled) {

  
        box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
        transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}
      
.btn:not(:disabled):not(.disabled):hover {
        box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
      }


/* fdgdgh */
.toZoom {
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.toZoom:hover {opacity: 0.7;}

.modal {
  display: none; /* Hidden by default */
  position: absolute; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content (image) */
.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
}

/* Add Animation */
.modal-content {  
  animation-name: zoom;
  animation-duration: 0.6s;
}

@keyframes zoom {
  from {transform: scale(0.1)} 
  to {transform: scale(1)}
}

/* The Close Button */
.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
  .modal-content {
    width: 100%;
  }
}
      
/*999999999999999999999999999999999999999999999999999999*/

.gallery img {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.gallery {
  width: 80%;
  margin: auto;
  border: 2px solid #CCC;
  padding: 5px;
  z-index:1;
  position:relative;
  background-color: #FFF;
}
.gallery img {
  max-width: 100%;
}
.gallery .mainImg {
  position: relative;
  margin-bottom: 15px;
}
.gallery .mainImg img {
  display: block;
  margin: auto;
}
.gallery .mainImg i {
  color: #FFF;
  background-color: #c0392b;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
}
.gallery .mainImg i.fa-chevron-left {
  left: 0;
}
.gallery .mainImg i.fa-chevron-right {
  right: 0;
}
.gallery .thumbnails {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
}
.gallery .thumbnails li {
  cursor: pointer;
}
.gallery .thumbnails li:not(:last-child) {
  margin-right: 5px;
}
.gallery .thumbnails li img {
  border: 2px solid #CCC;
  padding: 2px;
  background-color: #FFF;
  opacity: 0.8;
}
.gallery .thumbnails li img.active {
  border-color: #c0392b;
  opacity: 1;
}
/*11111111111111111111111111111111111111*/
.gallery img {
  max-width: 100%;
}
.gallery .mainImg1 {
  position: relative;
  margin-bottom: 15px;
}
.gallery .mainImg1 img {
  display: block;
  margin: auto;
}
.gallery .mainImg1 i {
  color: #FFF;
  background-color: #c0392b;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
}
.gallery .mainImg1 i.fa-chevron-left {
  left: 0;
}
.gallery .mainImg1 i.fa-chevron-right {
  right: 0;
}
.gallery .thumbnails1 {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
}
.gallery .thumbnails1 li {
  cursor: pointer;
}
.gallery .thumbnails1 li:not(:last-child) {
  margin-right: 5px;
}
.gallery .thumbnails1 li img {
  border: 2px solid #CCC;
  padding: 2px;
  background-color: #FFF;
  opacity: 0.8;
}
.gallery .thumbnails1 li img.active {
  border-color: #c0392b;
  opacity: 1;
}

/*222222222222222222222222222222222222222222222222222222222222222222222*/

.gallery img {
  max-width: 100%;
}
.gallery .mainImg2 {
  position: relative;
  margin-bottom: 15px;
}
.gallery .mainImg2 img {
  display: block;
  margin: auto;
}
.gallery .mainImg2 i {
  color: #FFF;
  background-color: #c0392b;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
}
.gallery .mainImg2 i.fa-chevron-left {
  left: 0;
}
.gallery .mainImg2 i.fa-chevron-right {
  right: 0;
}
.gallery .thumbnails2 {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
}
.gallery .thumbnails2 li {
  cursor: pointer;
}
.gallery .thumbnails2 li:not(:last-child) {
  margin-right: 5px;
}
.gallery .thumbnails2 li img {
  border: 2px solid #CCC;
  padding: 2px;
  background-color: #FFF;
  opacity: 0.8;
}
.gallery .thumbnails2 li img.active {
  border-color: #c0392b;
  opacity: 1;
}
/*333333333333333333333333333333333333333333333333333333*/
.gallery img {
  max-width: 100%;
}
.gallery .mainImg3 {
  position: relative;
  margin-bottom: 15px;
}
.gallery .mainImg3 img {
  display: block;
  margin: auto;
}
.gallery .mainImg3 i {
  color: #FFF;
  background-color: #c0392b;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
}
.gallery .mainImg3 i.fa-chevron-left {
  left: 0;
}
.gallery .mainImg3 i.fa-chevron-right {
  right: 0;
}
.gallery .thumbnails3 {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
}
.gallery .thumbnails3 li {
  cursor: pointer;
}
.gallery .thumbnails3 li:not(:last-child) {
  margin-right: 5px;
}
.gallery .thumbnails3 li img {
  border: 2px solid #CCC;
  padding: 2px;
  background-color: #FFF;
  opacity: 0.8;
}
.gallery .thumbnails3 li img.active {
  border-color: #c0392b;
  opacity: 1;
}
/*44444444444444444444444444444444444444444444444444444444*/
.gallery img {
  max-width: 100%;
}
.gallery .mainImg4 {
  position: relative;
  margin-bottom: 15px;
}
.gallery .mainImg4 img {
  display: block;
  margin: auto;
}
.gallery .mainImg4 i {
  color: #FFF;
  background-color: #c0392b;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
}
.gallery .mainImg4 i.fa-chevron-left {
  left: 0;
}
.gallery .mainImg4 i.fa-chevron-right {
  right: 0;
}
.gallery .thumbnails4 {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
}
.gallery .thumbnails4 li {
  cursor: pointer;
}
.gallery .thumbnails4 li:not(:last-child) {
  margin-right: 5px;
}
.gallery .thumbnails4 li img {
  border: 2px solid #CCC;
  padding: 2px;
  background-color: #FFF;
  opacity: 0.8;
}
.gallery .thumbnails4 li img.active {
  border-color: #c0392b;
  opacity: 1;
}
/*555555555555555555555555555555555555555555*/
.gallery img {
  max-width: 100%;
}
.gallery .mainImg5 {
  position: relative;
  margin-bottom: 15px;
}
.gallery .mainImg5 img {
  display: block;
  margin: auto;
}
.gallery .mainImg5 i {
  color: #FFF;
  background-color: #c0392b;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
}
.gallery .mainImg5 i.fa-chevron-left {
  left: 0;
}
.gallery .mainImg5 i.fa-chevron-right {
  right: 0;
}
.gallery .thumbnails5 {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
}
.gallery .thumbnails5 li {
  cursor: pointer;
}
.gallery .thumbnails5 li:not(:last-child) {
  margin-right: 5px;
}
.gallery .thumbnails5 li img {
  border: 2px solid #CCC;
  padding: 2px;
  background-color: #FFF;
  opacity: 0.8;
}
.gallery .thumbnails5 li img.active {
  border-color: #c0392b;
  opacity: 1;
}
/*66666666666666666666666666666666666666666666666666666666*/
.gallery img {
  max-width: 100%;
}
.gallery .mainImg6 {
  position: relative;
  margin-bottom: 15px;
}
.gallery .mainImg6 img {
  display: block;
  margin: auto;
}
.gallery .mainImg6 i {
  color: #FFF;
  background-color: #c0392b;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
}
.gallery .mainImg6 i.fa-chevron-left {
  left: 0;
}
.gallery .mainImg6 i.fa-chevron-right {
  right: 0;
}
.gallery .thumbnails6 {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
}
.gallery .thumbnails6 li {
  cursor: pointer;
}
.gallery .thumbnails6 li:not(:last-child) {
  margin-right: 5px;
}
.gallery .thumbnails6 li img {
  border: 2px solid #CCC;
  padding: 2px;
  background-color: #FFF;
  opacity: 0.8;
}
.gallery .thumbnails6 li img.active {
  border-color: #c0392b;
  opacity: 1;
}
/*777777777777777777777777777777777777777777777777777777*/
.gallery img {
  max-width: 100%;
}
.gallery .mainImg7 {
  position: relative;
  margin-bottom: 15px;
}
.gallery .mainImg5 img {
  display: block;
  margin: auto;
}
.gallery .mainImg7 i {
  color: #FFF;
  background-color: #c0392b;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
}
.gallery .mainImg7 i.fa-chevron-left {
  left: 0;
}
.gallery .mainImg7 i.fa-chevron-right {
  right: 0;
}
.gallery .thumbnails7 {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
}
.gallery .thumbnails7 li {
  cursor: pointer;
}
.gallery .thumbnails7 li:not(:last-child) {
  margin-right: 5px;
}
.gallery .thumbnails7 li img {
  border: 2px solid #CCC;
  padding: 2px;
  background-color: #FFF;
  opacity: 0.8;
}
.gallery .thumbnails7 li img.active {
  border-color: #c0392b;
  opacity: 1;
}
/*---------------------row-slider----------------*/
	.wrapper {
	width: 100%;
	overflow: hidden;
}
.photobanner {
	position: relative;
	height: 233px;
	margin-bottom: 30px;
	display: flex;
	width: 100%;
}

.photobanner img {
  margin: 0px 25px;
  box-shadow: 2px 2px 8px #8a8a8a;
}

.photobanner {
  animation: bannermove 10s linear infinite alternate-reverse;
}

@keyframes bannermove {
  from {
    left: 0px;
  }
  to {
    left: -400px;
  }
}

.load{
    animation: bounce_shake 1.5s ease-out infinite;
}
@keyframes bounce_shake{
  0%   { transform: scale(1,1)      translateY(0); }
  10%  { transform: scale(1.1,.9)   translateY(0); }
  30%  { transform: scale(.9,1.1)   translateY(-5px); }
  32% { transform: scale(1.2) translateY(-5px); }
  35%, 40% { transform: scale(1.2) translateY(-5px) rotate(-20deg)}
  45%, 50% { transform: scale(1.2) translateY(-5px) rotate(20deg)}
  60%  { transform: scale(1.05,.95) translateY(0); }
  70%  { transform: scale(1.05,.95) translateY(0); }
  80%  { transform: scale(1,1)      translateY(-3px); }
  95%  { transform: scale(1,1)      translateY(0); }
  100% { transform: scale(1,1)      translateY(0); }
}
