/* CONTACT SECTION */

.grid-70-30 {
    display: grid;
    grid-template-columns: 70% 30%;
}

.get_form_inner {
    display: block;
    padding: 26px 26px;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.grid-50-50 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
}

.grid-full {
    margin: 20px 0;
}

.get_form_inner_text h3 {
    color: #333;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 40px;
}

.get_say_form {
    display: inline-block;
    padding: 45px 0 25px 30px;
    background: #02377b;
    position: relative;
}

.get_say_form h5 {
    color: #fff;
    font-size: 26px;
    margin: 0 0 40px;
}

.get_say_social-icn {
    display: flex;
    position: absolute;
    bottom: 40px;
}

.get_say_social-icn a {
    font-size: 22px;
    color: #fff;
    padding: 0 20px 0 0;
}

.get_say_info_sec i {
    color: #fff;
    font-size: 32px;
}

.get_say_info_sec>li {
    display: grid;
    grid-template-columns: 40px auto;
    align-items: center;
    margin-bottom: 40px;
}

.get_say_info_sec>li a {
    width: 100%;
    display: block;
    padding: 15px 25px;
    color: #fff;
    font-size: 16px;
    text-decoration: unset;
    font-weight: 500;
    background: #162b65;
    border-radius: 5px 0 0 5px;
    transition: background 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    -webkit-transition: background 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    -moz-transition: background 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    -ms-transition: background 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    -o-transition: background 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.get_say_info_sec>li a:hover {
    background-color: #f85508;
}






/* Blog PAGE */
.blog_title {
    font-size: 20px;
    height: 50px;
    color: #015bcf;
    font-weight: 600;
    font-family: 'bootstrap-icons';
}

.blog_title_one {
    font-size: 25px;
    height: 63px;
    color: #015bcf;
    font-weight: 600;
    font-family: 'bootstrap-icons';
}

.blog_img {
    width: 100%;
    display: block;
    height: 250px;
    object-fit: cover;
}

.blog_card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 .1rem 1rem rgba(0, 0, 0, 0.1);
    border-radius: 1em;

}

/* PRICING */

.pricingTable {
    color: var(--main-color);
    font-family: 'Open Sans', sans-serif;
    text-align: center;
    padding: 0 0 50px;
    position: relative;
    z-index: 1;
}

.pricingTable:before,
.pricingTable:after {
    content: "";
    background: #015bcf;
    width: 100%;
    height: calc(100% - 100px);
    border-radius: 20px 20px;
    transform: translateX(-50%) translateY(-50%);
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
}

.pricingTable:after {
    background: #fff;
    width: calc(100% - 30px);
    height: calc(100% - 1px);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
}

.pricingTable .pricingTable-header {
    color: #fff;
    background: #015bcf;
    width: calc(100% - 70px);
    border-radius: 0 0 50px 50px;
    padding: 10px 0;
    margin: 0 auto 30px;
}

.pricingTable .title {
    font-size: 26px;
    font-weight: 500;
    text-transform: capitalize;
    margin: 0;
}

.pricingTable .price-value {
    margin: 0 0 30px;
}

.pricingTable .price-value .amount {
    font-size: 41px;
    font-weight: 700;
    line-height: 50px;
    text-transform: capitalize;
    display: block;
}

.pricingTable .pricing-content {
    padding: 0;
    margin: 0 0 30px;
    list-style: none;
    display: inline-block;
}

.pricingTable .pricing-content li {
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    line-height: 25px;
    letter-spacing: .5px;
    padding: 0 0 0 30px;
    margin: 0 0 15px;
    position: relative;
}

.pricingTable .pricing-content li:last-child {
    margin: 0;
}

.pricingTable .pricing-content li:before {
    color: var(--main-color);
    background-color: #fff;
    content: "\f00c";
    font-family: "Font Awesome 5 free";
    font-size: 14px;
    font-weight: 900;
    text-align: center;
    line-height: 21px;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 0;
}

.pricingTable .pricing-content li.disable:before {
    content: "\f00d";
}

.pricingTable .pricingTable-signup a {
    color: #fff;
    background: #015bcf;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 8px 35px;
    border-radius: 50px 50px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    display: inline-block;
    transition: all 0.3s ease-in-out;
}

.pricingTable .pricingTable-signup a:hover {
    text-shadow: -2px 2px 1px #000;
}

.pricingTable.blue {
    --main-color: #21475C;
}

.pricingTable.magenta {
    --main-color: #971F45;
}

@media only screen and (max-width: 990px) {
    .pricingTable {
        margin: 0 0 58px;
    }
}

/* Learn and Grow */
.contact_card {
    border-radius: 10px;
    width: 389px;
    height: 684px;
    margin-left: -225px;
}

.contact_card_two {
    /* height: 450px; */
    width: 116%;
    margin-left: -124px;
}

.btn-learn-grow {
    background: rgb(16, 9, 98);
    color: white;
}

.btn-learn-grow:hover {
    background: rgb(16, 9, 98);
    color: white;
}

/* Learn and Grow Apply Now Page */
.contact_card_one {
    border-radius: 30px;
    margin-left: 0px;
    width: 128%;
}

@media (min-width:1919px) {
    .contact_card_one {
        width: 53% !important;
    }
}

/* nest hub max  */

@media (min-width:1026) and (max-width:1406) {
    .contact_card_one {
        width: 86% !important;
    }
}

@media (min-width:992px) and (max-width:1278px) {
    .contact_card_one {
        width: 94% !important;
        margin-left: 130px !important;
    }
}

@media (min-width:1279px) and (max-width:1326px) {
    .contact_card_one {
        width: 78% !important;
        margin-left: 130px !important;
    }
}

@media (min-width:1330) and (max-width:1919px) {
    .contact_card_one {

        margin-left: 117px;
        width: 67%;
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    }
}

.contact_card_one {
    border-radius: 30px;
    box-shadow: rgb(0 0 0 / 24%) 0px 3px 8px;
    width: 72%;
    margin-left: 110px;
}

.footerbg1 {
    /* background-color: black; */
    background-color: #02377b;
}

.input_border_h {
    border-top: none;
    border-left: none;
    border-left: none;
    border-right: none;
    /* border-bottom: none; */
    box-shadow: none !important;
    border-bottom: 2px #02377b solid;
    border-radius: 1px !important;
}

/* services page */
.text_underline {
    text-underline-offset: 5px;
    text-decoration: underline;
}

.text_underline:hover {
    text-underline-offset: 5px;
    text-decoration: underline;
}

.ecommers_icon {
    color: #02377b;
    font-size: 62px;
}

.f-right {
    float: right;
}

/* ABOUT SECTION */




.about-section .content-column .inner-column {
    position: relative;
    /* padding-top:50px; */
    padding-right: 100px;
}

.about-section .content-column .text {
    position: relative;
    color: #777777;
    font-size: 15px;
    line-height: 2em;
    margin-bottom: 10px;
}

.about-section .content-column .email {
    position: relative;
    color: #252525;
    font-weight: 700;
    margin-bottom: 50px;
}

.about-section .image-column {
    position: relative;
    /* margin-bottom:50px; */
}

.about-section .image-column .inner-column {
    position: relative;
    padding: 40px 40px 0px 0px;
    margin-left: 50px;
}

.about-section .image-column .inner-column:after {
    position: absolute;
    content: '';
    right: 0px;
    top: 0px;
    left: 40px;
    bottom: 100px;
    z-index: -1;
    border: 8px solid #0d2f6f;
}

.about-section .image-column .inner-column .image {
    position: relative;
}

.about-section .image-column .inner-column .image:before {
    position: absolute;
    content: '';
    left: -50px;
    bottom: -50px;
    width: 299px;
    height: 299px;
    background: url(img/pattern-2.png) no-repeat;
}

.about-section .image-column .inner-column .image img {
    position: relative;
    width: 100%;
    height: 368px;
    display: block;
}

.about-section .image-column .inner-column .image .overlay-box {
    position: absolute;
    left: 40px;
    bottom: 48px;
}

.about-section .image-column .inner-column .image .overlay-box .year-box {
    position: relative;
    color: #252525;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4em;
    padding-left: 125px;
}

.about-section .image-column .inner-column .image .overlay-box .year-box .number {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 110px;
    height: 110px;
    color: #0d2f6f;
    font-size: 68px;
    font-weight: 700;
    line-height: 105px;
    text-align: center;
    background-color: #ffffff;
    border: 1px solid #000000;
}

.about-section .btn-style-three:before {
    position: absolute;
    content: '';
    left: 10px;
    top: 10px;
    z-index: -1;
    right: -10px;
    bottom: -10px;
    background: url(https://i.ibb.co/DKn55Qz/pattern-1.jpg) repeat;
}

.about-section .btn-style-three:hover {
    color: #ffffff;
    background: #0d2f6f;
}

.about-section .btn-style-three {
    position: relative;
    line-height: 24px;
    color: #252525;
    font-size: 15px;
    font-weight: 700;
    background: none;
    display: inline-block;
    padding: 11px 40px;
    background-color: #ffffff;
    text-transform: capitalize;
    border: 2px solid #0d2f6f;
    font-family: 'Arimo', sans-serif;
}

.sec-title2 {
    color: #fff;
}

.sec-title {
    position: relative;
    padding-bottom: 10px;
}

.sec-title .title {
    position: relative;
    color: #0d2f6f;
    font-size: 18px;
    font-weight: 700;
    padding-right: 50px;
    margin-bottom: 15px;
    display: inline-block;
    text-transform: capitalize;
}

.sec-title .title:before {
    position: absolute;
    content: '';
    right: 0px;
    bottom: 7px;
    width: 40px;
    height: 1px;
    background-color: #bbbbbb;
}

/* Carrer PAGE */
.carrer_card {
    background-color: rgb(255, 255, 255);
    border-bottom: 5px #02377b solid;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.carrer_card img {
    height: -webkit-fill-available;
    width: 100%;
    border-right: 4px solid #02377b;
}

.carrer_card p {
    font-family: system-ui;
}

.carrer_card_title {
    color: #02377b;
    font-size: 16px;
}


/* ACHIVMENT PAGE CSS */
.achievement_card {
    background: linear-gradient(transparent 30px, #f4f4f4 30px);
    font-family: 'Nunito', sans-serif;
    padding: 15px 0 20px;
    border-radius: 15px;
}

.achievement_card .service-content {
    background: linear-gradient(#38D3FF, #1840BC);
    padding: 6px 5px;
    margin: 0 0 25px;
    border-radius: 15px;
    box-shadow: 0 10px 5px rgba(24, 64, 188, 0.3);
}

.achievement_card .service-icon {
    color: #082239;
    background-color: #e6e9ec;
    font-size: 48px;
    text-align: center;
    line-height: 85px;
    width: 80px;
    height: 80px;
    margin: 0 auto 5px;
    border-radius: 50%;
    transform: translateY(-15px);
}

.achievement_card .title {
    color: rgb(0 102 160);
    font-size: 20px;
    font-weight: 700;
    text-transform: capitalize;
    text-align: center;
    margin: 0;
}

.achievement_card .title:before {
    content: '';
    /* background-color: rgba(0,0,0,0.2); */
    /* height: 2px; */
    /* width: 150px; */
    /* margin: 0 auto 10px; */
    /* display: block; */
    /* clear: both; */
}

.achievement_card .description {
    color: #082239;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0.5px;
    margin: 0 15px;
}

.achievement_card .description:after {
    content: '';
    background: linear-gradient(to right, #38D3FF, #1840BC);
    height: 3px;
    width: 50%;
    margin: 20px auto 0;
    display: block;
    clear: both;
}

/* .achievement_card.pink .service-content{
    background: linear-gradient(#FEBF4B, #DA316C);
    box-shadow: 0 10px 5px rgba(218, 49, 108, 0.3);
}
.achievement_card.pink .description:after{ background: linear-gradient(to right,#FEBF4B, #DA316C); }
.achievement_card.purple .service-content{
    background: linear-gradient(#A86FFE, #804AF8);
    box-shadow: 0 10px 5px rgba(128, 74, 248, 0.3);
} */
/* .achievement_card.purple .description:after{ background: linear-gradient(to right, #A86FFE, #804AF8); }
.achievement_card.blue .service-content{
    background: linear-gradient(#0083B7, #00639E);
    box-shadow: 0 10px 5px rgba(0, 99, 158, 0.3);
} */
.achievement_card.blue .description:after {
    background: linear-gradient(to right, #0083B7, #00639E);
}

@media only screen and (max-width:990px) {
    .achievement_card {
        margin: 0 0 30px;
    }
}

.text_clamp_one {
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.text_clamp_two {
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.text_clamp_three {
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

/* ABOUT US PAGE */



.website_text {
    color: #083978;
}

.website_bg {
    background-color: #083978;
}

.seven_step_bg {
    background-color: rgb(0 0 0 / 90%);
}

/* FAQ */

.about_nine_point {
    text-align: center;
    background-color: rgb(0 0 0 / 90%);
    padding-top: 30px;
    padding-bottom: 30px;
    height: 458px;
    /* margin-bottom: 50px; */
    border-top: 4px solid #06326b;
}


@media screen and (orientation: landscape) {
    .carousel img {
        height: 100vh;
    }
}

.Fast_set_up_img_card {
    border-radius: 22px 22px 0px 0px;
}

.Fast_set_up_img {
    height: 200px;
    width: 100%;
    border-radius: 22px 22px 0px 0px;
}

.icon_font_size {
    font-size: 52px;
    color: #ffffff;
    margin-top: 20px;
}

.letter {
    font-family: "Trirong", serif;
    color: #ffffff;
    font-size: 40px;
    /* text-decoration-line: underline; */
}

.about_img {
    width: 100%;
    height: 400px;
}

:root {
    --white: #fff;
    --black: #000;
    --color_1: #A51A44;
    --color_2: #1DA493;
    --color_3: #0BA4C4;
    --color_4: #EC8F0E;
}

.counter {
    padding: 20px;
    background: linear-gradient(to bottom, #06326b, #06326b);
    border-radius: 50px;
    text-align: center;
    position: relative;
}

.counter:before,
.counter:after {
    content: "";
    width: 10px;
    height: 50px;
    border-radius: 5px;
    border: 2px solid #aaaeb1;
    background: #fff;
    background-image: repeating-linear-gradient(transparent, transparent 2px, #c9cbcc 2px, #c9cbcc 4px);
    z-index: 1;
    position: absolute;
    top: -14px;
    left: 20%;
}

.counter:after {
    left: auto;
    right: 20%;
}

.counter .counter-content {
    padding: 50px 0 9px;
    background: #ffffff;
    border-radius: 45px;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
    position: relative;
}

.counter .counter-content:before {
    content: "";
    width: 100%;
    height: 40px;
    background: #0347a1;
    border-radius: 45px 45px 0 0;
    position: absolute;
    top: 0;
    left: 0;
}

.counter .counter-value {
    display: block;
    font-size: 45px;
    font-weight: 700;
    color: #0364a0;
    margin-bottom: 10px;
}

.counter .title {
    font-size: 15px;
    font-weight: 600;
    color: #fdfeff;
    text-transform: uppercase;
}

@media only screen and (max-width: 990px) {
    .counter {
        margin-bottom: 30px;
    }
}

/* OUR WORK */
.ec_4th_img {
    border-top-left-radius: 157px;
    height: 318px;
    width: 100%;
}

.ec_4th_img_h2 {
    font-size: 53px;
    font-weight: 600;
    color: #06326b;
}


/* SERVICES PAGE */



.carousel-shadow .owl-stage-outer {
    margin: -15px -15px 0;
    padding: 15px;
}

.we-offer-area .our-offer-carousel .owl-dots .owl-dot span {
    background: #ffffff none repeat scroll 0 0;
    border: 2px solid;
    height: 15px;
    margin: 0 5px;
    width: 15px;
}

.we-offer-area .our-offer-carousel .owl-dots .owl-dot.active span {
    background: #fc942f none repeat scroll 0 0;
    border-color: #fc942f;
}

.we-offer-area .item {
    background: #ffffff none repeat scroll 0 0;
    border-left: 2px solid #fc942f;
    -moz-box-shadow: 0 0 10px #cccccc;
    -webkit-box-shadow: 0 0 10px #cccccc;
    -o-box-shadow: 0 0 10px #cccccc;
    box-shadow: 0 0 10px #cccccc;
    overflow: hidden;
    padding: 30px;
    position: relative;
    z-index: 1;
}

.we-offer-area.text-center .item {
    background: #ffffff none repeat scroll 0 0;
    border: medium none;
    padding: 40px 40px 40px;
}

.we-offer-area.text-center .item i {
    background: #fc942f none repeat scroll 0 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    color: #ffffff;
    font-size: 40px;
    height: 80px;
    line-height: 80px;
    position: relative;
    text-align: center;
    width: 80px;
    z-index: 1;
    transition: all 0.35s ease-in-out;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    margin-bottom: 25px;
}

.we-offer-area.text-center .item i::after {
    border: 2px solid #fc942f;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    content: "";
    height: 90px;
    left: -5px;
    position: absolute;
    top: -5px;
    width: 90px;
    z-index: -1;
    transition: all 0.35s ease-in-out;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
}

.we-offer-area.item-border-less .item {
    border: medium none;
}

.we-offer-area .our-offer-items.less-carousel .equal-height {
    margin-bottom: 30px;
}

.we-offer-area.item-border-less .item .number {
    font-family: "Poppins", sans-serif;
    font-size: 50px;
    font-weight: 900;
    opacity: 0.1;
    position: absolute;
    right: 30px;
    top: 30px;
}

.our-offer-carousel.center-active .owl-item:nth-child(2n) .item,
.we-offer-area.center-active .single-item:nth-child(2n) .item {
    background: #fc942f none repeat scroll 0 0;
}

.our-offer-carousel.center-active .owl-item:nth-child(2n) .item i,
.our-offer-carousel.center-active .owl-item:nth-child(2n) .item h4,
.our-offer-carousel.center-active .owl-item:nth-child(2n) .item p,
.we-offer-area.center-active .single-item:nth-child(2n) .item i,
.we-offer-area.center-active .single-item:nth-child(2n) .item h4,
.we-offer-area.center-active .single-item:nth-child(2n) .item p {
    color: #ffffff;
}

.we-offer-area .item i {
    color: #fc942f;
    display: inline-block;
    font-size: 60px;
    margin-bottom: 20px;
}

.we-offer-area .item h4 {
    font-weight: 600;
    text-transform: capitalize;
}

.we-offer-area .item p {
    margin: 0;
}

.we-offer-area .item i,
.we-offer-area .item h4,
.we-offer-area .item p {
    transition: all 0.35s ease-in-out;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
}

.we-offer-area .item::after {
    background: #fc942f none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: -100%;
    position: absolute;
    top: 0;
    transition: all 0.35s ease-in-out;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    width: 100%;
    z-index: -1;
}

.we-offer-area .item:hover::after {
    left: 0;
}

.we-offer-area .item:hover i,
.we-offer-area .item:hover h4,
.we-offer-area .item:hover p {
    color: #ffffff !important;
}

.we-offer-area.text-center .item:hover i::after {
    border-color: #ffffff !important;
}

.we-offer-area.text-center .item:hover i {
    background-color: #ffffff !important;
    color: #fc942f !important;
}

.we-offer-area.text-center .item:hover .cta-btn {
    background: #ffffff;
    color: #f85508;
    transition: .3s ease-in-out;
}

.we-offer-area.text-left .item i {
    background: #fc942f none repeat scroll 0 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    color: #ffffff;
    display: inline-block;
    font-size: 60px;
    height: 100px;
    line-height: 100px;
    margin-bottom: 30px;
    position: relative;
    width: 100px;
    z-index: 1;
    text-align: center;
}

.we-offer-area.text-left .item i::after {
    border: 2px solid #fc942f;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    content: "";
    height: 120px;
    left: -10px;
    position: absolute;
    top: -10px;
    width: 120px;
}

/* Team */
/* .main{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #0c5db9;
  } */
.profile-card {
    position: relative;
    font-family: sans-serif;
    width: 220px;
    height: 220px;
    background: #fff;
    padding: 30px;
    border-radius: 50%;
    box-shadow: 0 0 22px #3336;
    transition: .6s;
    margin: 0 25px;
}

.profile-card:hover {
    border-radius: 10px;
    height: 260px;
}

.profile-card .img {
    position: relative;
    width: 100%;
    height: 100%;
    transition: .6s;
    z-index: 99;
}

.profile-card:hover .img {
    transform: translateY(-60px);
}

.img img {
    width: 100%;
    border-radius: 50%;
    box-shadow: 0 0 22px #3336;
    transition: .6s;
}

.profile-card:hover img {
    border-radius: 10px;
}

.caption {
    text-align: center;
    transform: translateY(-80px);
    opacity: 0;
    transition: .6s;
}

.profile-card:hover .caption {
    opacity: 1;
}

.caption h3 {
    font-size: 21px;
    font-family: sans-serif;
}

.caption p {
    font-size: 15px;
    color: #0c52a1;
    font-family: sans-serif;
    margin: 2px 0 9px 0;
}

.caption .social-links a {
    color: #333;
    margin-right: 15px;
    font-size: 21px;
    transition: .6s;
}

.social-links a:hover {
    color: #0c52a1;
}

.seo-signle h6 {
    background: #f8f8f8;
    padding: 10px;
    color: black;
}

.service-button {
    border: 1px solid rgb(233, 99, 9) !important;
    padding: 10px;
    border-radius: 10px;
    color: #f85508 !important;
}

.we-offer-area .item:hover a {
    color: white;
    border: 1px solid White;
}

.we-offer-area .item img {
    height: 100px;
    width: 100px;
}

.blog-signle img {
    height: 350px;
}


.client-slider .swiper-slide img {
    width: 179px;
    height: 95px;
    border-radius: 16%;
}





.service .hover-card {
    border-radius: 20px;
    position: relative;
    background: #fff;
    transform-style: preserve-3d;
    transition: 0.25s ease;
    box-shadow: 0 30px 30px rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.service .hover-card .image {
    height: 100px;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding-top: 18px; */
    border: 4px solid rgb(255, 106, 0);
    border-radius: 50%;
    overflow: hidden;
}

.service .hover-card:hover {
    box-shadow: rgb(255, 106, 0) 10px 10px !important;
}

.service .hover-card:hover .image {
    /* background: rgb(255, 106, 0); */
    transition: .3s linear ease-in-out;
}

.service .hover-card:hover h4 {
    color: rgb(255, 106, 0) !important;
}

.service a {
    color: #000 !important;
}

.RotateMoveLeft {
    position: relative;
    animation: RotateMoveLeft 10s linear infinite;
}

.RotateMoveLeft img {
    height: 330px;
}

@keyframes RotateMoveLeft {
    0% {
        left: 0px;
    }

    50% {
        left: 40px;
    }

    100% {
        left: 0px;
    }
}

.seo-signle a {
    color: black;
}

/*** Features Start ***/
.feature .feature-img {
    background: #361f61;
    border-radius: 58% 42% 21% 79% / 30% 29% 71% 70%;
}

.feature .card:hover {
    border: 1px solid #361f61;
}

.feature a {
    color: #361f61;
}

.feature i {
    color: #361f61 !important;
}

/*** Features End ***/


.RotateMoveRight {
    position: relative;
    animation: RotateMoveLeft 10s linear infinite;
}

@keyframes RotateMoveRight {
    0% {
        right: 0px;
    }

    50% {
        right: 40px;
    }

    100% {
        right: 0px;
    }
}
