@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.3.0/css/all.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/material-design-iconic-font/2.2.0/css/material-design-iconic-font.min.css');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
:root {
    --theme-color: #ed2831;
    --black: #000;
    --paragraph : #000;
    --white: #fff;
    --webFont : "Inter", sans-serif;
}
@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
* {
    padding: 0;
    margin: 0;
    list-style-type: none;
    text-decoration: none;
    outline: none;
    box-sizing: border-box;
}

body {font-family: Google Sans,sans-serif !important;margin: 0;padding: 0;}
::selection {
    background-color: var(--theme-color);
    color: #fff;
    text-shadow: none;
}
h1, h2, h3, h4, h5, h6 {
    font-family: Google Sans,sans-serif !important;
    margin: 0;
    padding: 0;
}

p {
   font-family: Google Sans,sans-serif !important;
    font-size: 17px;
    padding: 0;
    margin: 10px 0 0;
    color: var(--paragraph);
}

ul, li {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

img {
    max-width: 100%;
    border: none;
	height: auto !important;
}

a {
    text-decoration: none;
    outline: none !important;
}

html {
    scroll-behavior: smooth;
    font-size: 100%;
}

.p-80 {
    padding: 40px 0;
}
/* ======================================================================= */
    /*  header area start */
/* ======================================================================= */
.header-area .logo{
    width: min(100%, 190px);margin-right: 15px;
}
.header-area .logo img{
    width: 100%;
    object-fit: contain;
}
.header-area {
    box-shadow: 0 0 10px rgb(0 0 0 / 8%);
}
.header-area.fix{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
    width: 100%;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    background-color: var(--white);
}
/*menu CSS
--------------------------------------------------------------------------------------------------*/

.menu ul {
    margin: 0;
    padding: 0;
    font-size: 0;
}

.menu ul li {
    display: inline-block;
    padding: 0;
    list-style-type: none;
    position: relative;
    vertical-align: middle;
    position: relative;
    margin-right: 12px;
}

.menu ul li.active {
    position: relative;
}

.menu ul li a {
    color: var(--black);
    font-size: 14px;
    font-weight: 400;
    display: block;
    position: relative;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
    line-height: 26px;
    padding: 30px 0;
}

.menu ul li a:hover, .menu ul li.active a {
    color: #ed2831;
    border-bottom: 4px solid var(--yellow);
}

.menu ul li.active a::after {
    width: 100%;
}

.menu ul li a span {
    display: inline-block;
    vertical-align: 0px;
    margin-left: 6px;
    font-size: 10px;
}

.menu ul li:hover ul li a:hover {
    color: #000;
    background-color: #f7c624;
}

.menu ul li ul {
    width: 240px;
    position: absolute;
    top: calc(100% + 30px);
    left: 0;
    z-index: 2;
    background-color: #ffffff;
    text-align: left;
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 4px 15px rgb(0 0 0 / 3%);
}

.menu ul ul li:first-child:before {
    display: none;
}

.menu ul ul li:after {
    display: none;
}

.menu ul li:last-child ul {
    width: 220px;
    position: absolute;
    top: 100%;
    left: auto;
    right: 0;
    z-index: 2;
    background-color: #ffffff;
    box-shadow: 0px 5px 14px rgb(0 0 0 / 2%);
    text-align: left;
}

.menu ul li ul li a {
    font-size: 14px;
    text-transform: none;
    padding: 12px 15px;
    color: #000;
    line-height: 20px;
    font-weight: 500;
    transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -khtml-transition: all ease-in-out 0.5s;
    display: block;
    margin: 0;
}

.menu ul li ul li ul {
    top: 10px;
    left: 149px;
}

.menu ul li ul li span {
    right: 7px;
    top: 12px;
}

.menu ul li a:hover.menu ul li ul {
    display: block;
}

.menu ul li ul li {
    display: block;
    padding: 0;
    border-bottom: solid 1px rgb(255 255 255 / 7%);
    border-right: none;
}

.menu ul li ul li:last-child {
    border: none;
}

.menuButton {
    width: 40px;
    height: 35px;
    padding: 5px;
    float: right;
    display: none;
}

.menuButton span {
    width: 100%;
    height: 2px;
    background: #fff;
    margin-bottom: 6px;
    float: left;
    transition: all 0.3s ease-in-out 0s;
}

.menuButton span:last-child {
    margin-bottom: 0;
}

@media (min-width:991.98px) {
    .menu ul {
        display: block!important;
    }

    .menu ul li:hover > ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }
}

@media (max-width:991.98px) {
    .menuButton {
        display: block;
        margin-left: 15px;
        cursor: pointer;
    }

    .menu ul li span {
        background: url(../images/menu_arrow.png) center center no-repeat;
        cursor: pointer;
        width: 15px;
        height: 15px;
        position: absolute;
        right: 15px;
        top: 20px;
        z-index: 99;
    }

    .menu ul li:hover span {
        background: url(../images/menu_arrow_hover.png) center center no-repeat;
    }

    .arrow_change span:nth-child(2) {
        display: none;
    }

    .arrow_change span:first-child {
        position: relative;
        top: 9px;
        transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
    }

    .arrow_change span:last-child {
        position: relative;
        top: 1px;
        transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
    }

    .menuBar {
        padding: 15px 0;
    }

    .menu {
        padding: 5px 0;
    }

    .menu ul {
	display: block;
	background-color: #fff;
	top: 3px;
	left: auto;
	width: auto;
	z-index: 99;
	right: 30px;
	position: inherit;
}

    .menu ul li a {
        color: #071731;
        display: block;
        width: 100%;
        font-size: 14px;
    }

    .menu ul li ul {
        display: none;
        background-color: #e1e1e1;
        position: relative;
        top: 5px;
        left: 0;
        width: 100%;
        z-index: 1;
        padding: 0;
        visibility: initial;
        opacity: 1;
    }

    .menu ul li:last-child ul {
        display: none;
        background-color: #e1e1e1;
        position: relative;
        top: 5px;
        left: 0;
        width: 100%;
        z-index: 1;
    }

    .menu ul li {
        display: block;
        padding: 12px 15px 12px 15px;
        border-top: 1px solid #cccccc54;
        text-align: left;
        position: relative;
    }

    .menu ul li span {
        position: absolute;
        right: 30px;
        z-index: 99;
        cursor: pointer;
        top: 12px;
        text-align: center;
    }

    .menu ul li ul li ul {
        top: 0;
        left: 0;
    }

    .menu ul li ul li a {
        font-size: 12px;
        text-transform: none;
        background-color: #e1e1e1;
        padding: 8px 12px;
        color: #000;
    }
}
/* ======================================================================= */
    /*  section one start */
/* ======================================================================= */
.section-one-card .card-img{
    height: auto;
    overflow: hidden;
}
.section-one-card .card-img img {
    width: 100% !important;
    object-fit: cover;border-radius: 12px;
    height: 100% !important;
}
.section-one-card .card-body{
    padding-top: 16px;
}
.section-one-card .card-body h1 {
    color: var(--black);
    font-weight: 600;
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 12px;
}
.section-one-card .card-body h6 {
    background-image: linear-gradient(108deg, #0079d0 0%, #9e52d8 32%, #da365c 84%, #d04901 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 12px;
}
.section-one-card .card-body h6 i{
    margin-right: 5px;
}
.section-one-area .section-one-right {
    position: relative;
   
}
/* .section-one-area .section-one-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background-color: rgb(0 0 0 / 30%);
    transform: translateX(30px);
} */
.section-one-area .section-one-right h2 {
    text-transform: capitalize;
  font-size: 18px;
  line-height: 34px;
  font-weight: 600;
  color: #000000;
}
.section-one-area .section-one-right .blog-part {
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #e7e7e7;
}
.section-one-area .section-one-right .blog-part:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}
.section-one-area .section-one-right .blog-part span {
    text-transform: uppercase;
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
    margin-bottom: 5px;
    display: inline-block;
    background-image: linear-gradient(108deg, #0079d0 0%, #9e52d8 32%, #da365c 84%, #d04901 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}
.section-one-area .section-one-right .blog-part span a{
	color: var(--theme-color);
}
.section-one-area .section-one-right .blog-part h3 {
    color: var(--black);
    font-size: 17px;
  line-height: 23px;
  font-weight: 600;
  margin-bottom: 10px;
}
.section-one-area .section-one-right .blog-part ul{
    display: flex;
    gap: 12px;
}
.section-one-area .section-one-right .blog-part ul li {
    font-size: 14px;
    color: #545454;
    font-weight: 400;
}
/* ======================================================================= */
    /*  section two start */
/* ======================================================================= */
.section-two-area .heading h2 {
    font-size: 22px;
    font-weight: 700;
   background-image: linear-gradient(108deg, #0079d0 0%, #9e52d8 32%, #da365c 84%, #d04901 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
    line-height: 32px;
    margin-bottom: 14px;
}
.section-two-area .heading h2 a{
	color:#000000;
}
.section-two-area .section-two-card .img-box {
  height: 250px;
  border-radius: 12px;
}
.section-two-area .section-two-card .img-box a{ display:block;width: 100%;}
.section-two-area .section-two-card .img-box img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    max-width: 100% !important;
}
.section-two-area .section-two-card .card-body {
    padding-top: 24px;
}
.section-two-area .section-two-card .card-body h3 {
    font-size: 20px;
    line-height: 30px;
    color: #000000;
    font-weight: 600;
    margin-bottom: 10px;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.section-two-area .section-two-card .card-body h3 a{
	color: #000000;
}
.section-two-area .section-two-card .card-body ul{}
.section-two-area .section-two-card .card-body ul li {
    border-top: 1px solid rgb(0 0 0 / 15%);
    padding-top: 10px;
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 25px;
}
.section-two-area .section-two-card .card-body ul li:last-child{
	margin-bottom:0;
}
.section-two-area .section-two-card .card-body ul li a{
    color: var(--black);
}
.section-three-area{
    background-color: rgb(237 40 49 / 2%);
}
.section-three-area .section-two-card {
    border-bottom: 1px solid #d9d9d9;
    padding-bottom: 24px;
    margin-bottom: 24px;
}
.section-three-area .heading:last-child .section-two-card {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}

/* ======================================================================= */
    /* latest_sec  start */
/* ======================================================================= */
.latest_sec {
    width: 100%;
    background-color: rgb(237 40 49 / 2%);
}

.title3 h3 {
    font-size: 35px;
    color: #252525;
    font-weight: 700;
}

.latest_seclft {
    width: 100%;
    padding-right: 25px;
}

.latest_sec .nav-link {
    color: #252525;
}

.latest_sec .nav-pills .nav-link.active, .latest_sec .nav-pills .show>.nav-link {
    color: #fff;
    background-color: #ed2831b0;
}

.latest_sec .nav {
    gap: 25px;
    margin-bottom: 35px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
}

.latest_card {
    width: 100%;
    position: relative;
    padding: 10px;
    border: 1px solid #cccccc87;
    border-radius: 15px;
    background-color: #ffffff;
}

.latest_card ul {
    margin-bottom: 8px;
}

.latest_card ul li {
    display: inline-block;
}

.latest_card ul li a {
    font-weight: 600;
    font-size: 12px;
    background-image: linear-gradient(108deg, #0079d0 0%, #9e52d8 32%, #da365c 84%, #d04901 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-transform: uppercase;
    transition: 0.6s;
    margin-right: 10px;
    padding-right: 0;
    position: relative;
}

.latest_card ul li a:hover, .latest_cardbtm a:hover {
    text-decoration: underline;
}

.latest_card ul li a:after {
    content: '';
    position: absolute;
    right: -15px;
    top: 5px;
    width: 5px;
    height: 5px;
    background-color: #ED2831;
    border-radius: 50%;
}

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

.latest_cardpic {
    width: 100%;
    height: 250px;
    position: relative;
    display: flex;
    overflow: hidden;
    border-radius: 12px;
}

.latest_cardpic img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    transition: 0.6s;
    max-width: 100% !important;
}

.latest_card:hover .latest_cardpic img {
    opacity:0.8;
}

.clientpic {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    position: absolute;
    left: 25px;
    bottom: -30px;
    overflow: hidden;
}

.clientpic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.latest_cardbtm {
    width: 100%;
    padding: 12px 0 0;
    position: relative;
}

.latest_cardbtm h4 a {
    font-size: 20px;
    color: #000;
    font-weight: 700;
    margin-bottom: 6px;
    display: block;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.latest_cardbtm h4 a {
    color: #000000;
    background-image: none;
    -webkit-text-fill-color: #000000;
}
.latest_cardbtm a {
    font-size: 15px;
    background-image: linear-gradient(108deg, #0079d0 0%, #9e52d8 32%, #da365c 84%, #d04901 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-weight: 600;
}

.latest_cardbtm p {
    font-size: 16px;
    color: #252525;
    font-weight: 300;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 16px;
}

.latest_cardbtm ul li {
    display: inline-block;
    font-size: 14px;
    color: #252525;
    font-weight: 300;
    transition: 0.6s;
    padding-right: 12px;
    position: relative;
}

.latest_secrgt {
    width: 100%;
}

.latest_secrgt .adddiv {
    width: 100%;
    overflow: hidden;
    margin-top: 50px;
}

.newsletter-card {
    width: 100%;
    background: linear-gradient(180deg, #f6757b 0%, #ef434c 100%);
    padding: 25px 15px;
    border-radius: 8px;
}

.icon {
    width: 58px;
    height: 58px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: #f8fff5;
    font-size: 30px;
    margin-bottom: 16px;
}

.newsletter-card h2 {
    font-size: 22px;
    line-height: normal;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 10px;
}

.newsletter-card p {
    font-size: 15px;
    color: #ffffff;
    line-height: normal;
    margin-bottom: 15px;
}

.newsletter-card input {
    width: 100%;
    height: 50px;
    border: 1px solid #d5d5d5;
    border-radius: 8px;
    padding: 0 10px;
    outline: none;
    font-size: 15px;
    margin-bottom: 15px;
    background: #fff;
    font-weight: 400;
}

.newsletter-card input::placeholder {
    color: #b8b8b8;
}

.newsletter-card button {
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 8px;
    background: #000;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: .35s;
}

.newsletter-card button:hover {
    background: #000;
    transform: translateY(-3px);
}
.latest_filter {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    padding-bottom: 0;
}

.latest_filter button {
    background: none;
  border: none;
  padding: 6px 20px;
  border-radius: 5px;
  cursor: pointer;
  transition: .35s;
  font-weight: 400;
  font-size: 15px;
}

.latest_filter button.active {
    background-image: linear-gradient(108deg, #0079d0 0%, #9e52d8 32%, #da365c 84%, #d04901 100%);
    color: #fff;
}

.latest_body {
    padding: 18px;
}

.latest_tag {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.latest_tag a {
    color: #ED2831;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
}

.latest_tag span {
    width: 5px;
    height: 5px;
    background: #ED2831;
    border-radius: 50%;
}

.latest_meta {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 20px;
    font-size: 14px;
}

.latest_meta div {
    display: flex;
    align-items: center;
    gap: 8px;
}

.latest_meta i {
    color: #000;
}


@media(max-width:991px) {

}

@media(max-width:767px) {

    .latest_filter {
        justify-content: flex-start;
        overflow: auto;
        flex-wrap: nowrap;
        padding-bottom: 15px;
    }

    .latest_filter button {
        white-space: nowrap;
    }

    .latest_meta {
        gap: 14px;
        font-size: 13px;
    }
}

@media(max-width:575px) {

    .latest_card {
        border-radius: 14px;
    }

    .latest_img {
        padding: 8px;
    }

    .latest_body {
        padding: 16px;
    }

    .latest_tag {
        gap: 6px;
    }
}

/* ======================================================================= */
    /*   start */
/* ======================================================================= */


/*------------footer area CSS Start -----------------------------------------*/
.footer-area {
    padding: 70px 0px 40px;
    background-color: #000000;
}

.footer-area h4 {
   font-size: 14px !important;
  color: #ffffff !important;
  text-transform: capitalize;
  margin-bottom: 15px !important;
  letter-spacing: 1px;
  font-weight: 600;
}

.footer-area p {
   
    color: #fff;
    font-size:13px;
	margin-bottom:10px;
}
.footer-area p strong {
    font-weight: normal;
}

.flogo {

    margin-bottom: 15px;
}
.flogo img {
    width: 100%;
    aspect-ratio: 16 / 4;
    object-fit: contain;
}
.footer-aboutbox p {
    margin-right: 50px;
}

.footer-area h6,
.footer-area h6 a {
    font-size: 14px;
    color: #fff;
    margin-bottom: 15px;
}

.footer-area h6 i {
    margin-right: 5px;
}

.fww {
    flex: 0 0 auto;
    width: 24%;
}

.fww1 {
    flex: 0 0 auto;
    width: 22%;
    padding-left: 30px;
}

.fww2 {
    flex: 0 0 auto;
    width: 20%;
}

.fww3 {
    flex: 0 0 auto;
    width: 16%;
}

.fww4 {
    flex: 0 0 auto;
    width: 17%;
}

.footer-area ul {
    padding: 0px;
    margin: 0px;
}

.footer-area ul li {
    margin-bottom: 9px;
	list-style:none;
}

.footer-area ul li a {
   font-size: 14px;
  color: #fff;
  position: relative;
  padding-left: 0px;
  font-weight: 400;
  font-family: Google Sans,sans-serif !important;
  line-height: normal;
}

/* .footer-area ul li a:before {
    content: "\f101";
    position: absolute;
    font-family: "FontAwesome";
    left: 0px;
    top: -6px;
    font-size: 12px;
    opacity: 0.9;
}
 */
.footer-area ul li a:hover {
    color: #fff;
}

.footer-area ul li i {
    font-size: 20px;
  text-align: center;
  color: #000;
  width: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 0px;
}

.footer-area ol {
    text-align: center;
    padding: 0px;
    margin: 40px 0px 0px;
}

.footer-area ol li {
    border-right: 1px solid #ececec;
    padding: 0px 15px;
    line-height: 12px;
    vertical-align: top;
    display: inline-block;
}

.footer-area ol li:last-child {
    border-right: 0px;
}

.footer-area ol li a {
    font-size: 14px;
    color: #ececec;

}

.footer-area ol li a:hover {
    color: #fbcf0e;
}

.social-media li {
    margin-right: 10px;
	list-style: none;
}

.social-media li a{
	width: 35px;
    height: 35px;
	border: 0px solid #fff;
	color: #000;
	font-size: 16px;
    border-radius: 50%;
	transition: 0.6s;
	background:#fff;
}

.social-media li a:hover {
	background:#ddd;

}
.social-media li img {
    aspect-ratio: 16 / 16;
    width: 100%;
	font-size: 17px;
    object-fit: contain;
}
.payment {
    padding: 12px 0px;
    background-image: linear-gradient(108deg, #0079d0 0, #9e52d8 32%, #da365c 84%, #d04901 100%);
}
.payment .row {
    width: 100%;
    margin: 0 auto;
  align-items: center;
}

.paymenthbox h5 {
    color: #000000 !important;
    font-size: 20px !important;
    text-transform: capitalize !important;
    margin-right: 10px;
    display: flex !important;
    align-items: center;
    -webkit-text-fill-color: initial !important;
}
.feedback_sec  .ourwork_top  h2{
	color:#fff;
}
.identity {
    -webkit-text-fill-color: initial !important;
    font-size: 16px;
    font-weight: 300;
    color: #fff;
}
.identity span{
	 font-size: 18px;
    font-weight:700;
}
.payment h5 span {
    white-space: nowrap;
    margin-right: 10px;
	color: #fff;
}

.payment h5 img {
    object-fit: contain;
    aspect-ratio: 10 / 2;
    width: 300px;
}

.copyright {
    background: #000;
  padding: 16px 0px;
  border-top: 1px solid #0f1b30;
}

.copyright h6 {
    font-size: 15px;
  color: #fff;
  text-align: center;
  font-weight: 500;

}

.copyright h6 a {
    color: #ed2831;
}



.social-media-fixed {
    position: fixed;
    bottom: 2%;
    right: 2%;
    z-index: 9;
}

.social-media-fixed ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.social-media-fixed ul li {
    padding: 0;
    margin: 0 0 15px;
}

.social-media-fixed ul li img {
    width: 40px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.social-media-fixed ul li:hover img {
    transform: translateY(-5px);
}
.footernav11 {
  flex: 0 0 auto !important;
  width: 18% !important;
}
.footernav10 {
 flex: 0 0 auto !important;
  width: 11% !important;
}
.footernav100 {
  flex: 0 0 auto !important;
  width: 19% !important;
}
.presencd {
 color: #000;
  background: #fff;
  display: inline-block;
  border: 1px solid #fff;
  padding: 5px 16px;
  font-size: 11px;
  border-radius: 25px;
  margin: 4px 0px;
}
.payment10 h5 {
  font-size: 30px;
  color: #fff;
  word-spacing: 8px;
  font-weight: bold;
}
.payment10 h5 span{background-image: linear-gradient(108deg,#0079d0 0%,#9e52d8 32%,#da365c 84%,#d04901 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;}
.technologiesarea {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.technologiesarea ul li {
  display: inline-block;
  color: #fff;
  margin-bottom: 0px;
  margin-left: 5px;
}
/*------------footer area CSS stop -----------------------------------------*/
.latest_secrgt {
    position: relative;
}

.latest_secrgt .newsletter-card {
    position: sticky;
    top: 100px; /* Header height à¦…à¦¨à§à¦¯à¦¾à§Ÿà§€ adjust à¦•à¦°à§à¦¨ */
}


 #mega-menu-wrap-primary {
    background-color: #fff !important;
  }

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link{color: #000;}



.searchbtn {
    max-width: 30px;
    min-width: 30px;
    height: 30px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin-right: 0;
    position: relative;
    display: flex;
    background-image: linear-gradient(108deg, #0079d0 0%, #9e52d8 32%, #da365c 84%, #d04901 100%);
    color: #fff;
    padding: 12px;
    font-size: 12px;
}


#search-box {
     visibility: hidden;
     position: absolute;
     height: 100%;
     width: 100%;
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     z-index: 999999999;
}
 #search-box .container {
     display: table;
     width: 100%;
     height: 100%;
}
 #search-box .container .close {
     position: absolute;
     right: 32px;
     top: 32px;
     width: 32px;
     height: 32px;
     opacity: 0.3;
}
 #search-box .container .close:hover {
     opacity: 1;
}
 #search-box .container .close::before, #search-box .container .close::after {
	position: absolute;
	left: 15px;
	content: ' ';
	height: 26px;
	width: 2px;
	background-color: #000;
}
#search-box .form {
	display: flex;
}
 #search-box .container .close:before {
     transform: rotate(45deg);
}
 #search-box .container .close:after {
     transform: rotate(-45deg);
}
 #search-box .container .search-main {
     display: table-cell;
     vertical-align: middle;
}
 #search-box .container .search-main .search-inner {
     width: 80%;
     margin: 0 auto;
}
 #search-box .container .search-main form {
    position: relative;
  border-radius: 50px;
  overflow: hidden;
}
#search-box .container .search-main input {
	background: #ffffff;
	border: none;
	box-shadow: none;
	padding: 0 15px;
	font-size: 15px;
	height: 60px;
	border: 1px solid #ed2831;
	display: block;
	color: black;
	margin-bottom: 0;
	width: 100%;
	border-radius: 30px 0 0 30px;
}
 #search-box .container .search-main input:focus {
     outline: none;
}
#search-box .container .search-main button {
	border: 0;
	left: auto;
	outline: none;
	padding: 0;
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	background: transparent;
	font-size: 20px;
	padding: 8px 18px;
	background-color: #ed2831;
	color: #fff;
	width: 60px;
	border-radius: 0px 30px 30px 0;
}
#search-box .container .search-main button:hover{
  background-color: #000000;	
}
 #search-box .container .search-main .search-info {
     display: block;
     color: white;
     text-align: right;
     float: right;
     margin-top: 4px;
}
#search-box.-open {
	background: #fffffff2;
	visibility: visible;
	animation: fadein 0.8s;
}
 #search-box.-open .container .search-main input {
    
}
 @keyframes fadein {
     from {
         opacity: 0;
    }
     to {
         opacity: 1;
    }
}


.wpfFilterWrapper {
	background-color: #f2f2f2ab;
	border: 1px solid #00000005;
	box-sizing: border-box;
	padding: 20px!important;
}
#coupon_code {
	max-width: 250px;
	width: 100%;
	border: 1px solid #e6e6e6;
	font-size: 14px;
	padding: 10px 16px;
	background-color: #eee;
	margin-right: 0;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link:hover{font-weight: 600;line-height: normal;
  height: auto;
  font-size: 14px;}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link {
   line-height: normal;
  height: auto;
  font-size: 14px;
  font-weight: 600;
  padding: 20px 7px;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link{background-color: #ed2831;}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link:focus, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-toggle-on > a.mega-menu-link {
    background-color: transparent;
    color: #ed2831;
    border-color: transparent;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu {
    background-color: #efefef;
    box-shadow: 0 10px 10px rgb(0 0 0 / 3%);
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard h4.mega-block-title, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item h4.mega-block-title {
    color: #000000;
    font-size: 14px;
    font-weight: 600;
}





/* ======================================================================= */
    /*  blog_details  start */
/* ======================================================================= */
.blog_details {
    width: 100%;
}

.blog_details .blog-main .thumb {
    width: 100%;
    height: 420px;
    margin-bottom: 25px;
    display: flex;
    overflow: hidden;
}

.blog_details .blog-main .thumb img {
    border-radius: 15px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-category2 {
    background-color: #C6E425;
    padding: 5px 15px;
    text-align: center;
    font-size: 14px;
    color: #000;
    font-weight: 400;
    border-radius: 30px;
    display: inline-block;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
}

.meta-item i {
    font-size: 16px;
    color: #555;
}

.divider {
    width: 1px;
    height: 18px;
    background: #cfcfcf;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-icons a {
    width: 34px;
    height: 34px;
    border: 1px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #000;
    font-size: 15px;
    transition: .3s;
}

.social-icons a:hover {
    background: #000;
    color: #fff;
}

.blog_details .blog-main .content {
    padding-top: 0;
    padding-right: 0;
    width: 100%;
    margin-bottom: 25px;
}

.blog_details .blog-main p {
    margin: 0 0 8px;
}

.blog_details .blog-main h4 {
    font-size: 30px;
    color: #000;
    font-weight: 400;
    margin: 30px 0 15px;
}

.blog_details ul li {
    width: 100%;
    font-size: 18px;
    color: #000;
    position: relative;
    padding-bottom: 15px;
    padding-left: 26px;
}

.blog_details ul li:before {
    content: "";
    position: absolute;
    top: 6px;
    left: 0;
    width: 16px;
    height: 16px;
    background-image: url(../images/check.png);
    background-repeat: no-repeat;
    background-position: right;
    background-size: 100%;
    filter: brightness(0) saturate(100%) invert(16%) sepia(87%) saturate(4278%) hue-rotate(349deg) brightness(102%) contrast(86%);
}

.blog_detailspic {
    width: 100%;
    height: 400px;
    display: flex;
    overflow: hidden;
    border-radius: 15px;
    margin-top: 25px;
}

.blog_detailspic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.blog_details h5 {
    font-size: 24px;
    color: #000;
    font-weight: 400;
    margin: 15px 0 10px;
}

.blog_detailspic23 {
    width: 100%;
    height: 250px;
    display: flex;
    overflow: hidden;
    border-radius: 15px;
}

.blog_detailspic23 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.testimonial-section {
    width: 100%;
    background: #ed283124;
    padding: 40px;
    margin: 25px 0;
    border-radius: 10px;
}

.testimonial-box {
    margin: auto;
    text-align: center;
}

.quote-icon {
    display: flex;
    justify-content: center;
    width: 60px;
    height: 50px;
    overflow: hidden;
    margin: 0 auto 25px;
}

.quote-icon img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(27%) sepia(97%) saturate(4198%) hue-rotate(344deg) brightness(93%) contrast(99%);
}

.testimonial-text {
    font-size: 24px;
    color: #000;
    font-style: italic;
    text-align: center;
    width: 86%;
    margin: 0 auto;
}

.author-name {
    font-size: 22px;
    font-weight: 600;
    color: #ED2831;
    margin-bottom: 4px;
    margin-top: 15px;
}

.author-position {
    font-size: 16px;
    font-weight: 400;
    color: #111;
}

/* Tablet */
@media(max-width:991px) {

    .testimonial-section {
        padding: 50px 20px;
    }

    .testimonial-text {
        font-size: 28px;
    }

    .author-name {
        font-size: 26px;
    }

    .author-position {
        font-size: 22px;
    }
}

@media(max-width:767px) {

    .testimonial-section {
        padding: 40px 15px;
    }

    .quote-icon svg {
        width: 42px;
    }

    .testimonial-text {
        font-size: 20px;
        line-height: 1.7;
        margin-bottom: 22px;
    }

    .author-name {
        font-size: 22px;
    }

    .author-position {
        font-size: 18px;
    }
}

.side-blog {
    display: flex;
    gap: 16px;
    padding-bottom: 17px;
    margin-bottom: 17px;
    border-bottom: 1px dashed #dddddd;
    transition: .35s;
    padding-right: 25px;
}

.blog_details .side-blog .sideimg {
    width: 135px;
    height: 95px;
    overflow: hidden;
    border-radius: 12px;
    flex-shrink: 0;
}

.blog_details .side-blog .sideimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog_details .side-blog {
    padding-right: 0;
}

.blog_details .side-blog h3 {
    font-size: 16px;
    margin: 0 0 10px;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog_details .side-blog h3 a{
	color:#000000;
}
.blog_details svg {
    width: 17px;
    height: 17px;
    fill: #888;
}

.news_sec1rgt_card {
    width: 100%;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #ccc;
}

.news_sec1rgt_card h5 {
    font-size: 16px;
    color: #000;
    font-weight: 500;
    position: relative;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.news_sec1rgt_card h5:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 50px;
    height: 2px;
    background-color: #e31219;
}

.search-input {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.search-input .srch_icon {
    position: absolute;
    right: 2px;
    top: 50%;
    transform: translateY(-51%);
    color: #fff;
    font-size: 18px;
    background-color: #e31219;
    text-align: center;
    padding: 10px 25px;
    border-radius: 30px;
}

.search-input input {
    width: 100%;
    height: 51px;
    border: 1px solid #ddd;
    border-radius: 50px;
    padding: 0 115px 0 15px;
    outline: none;
    font-size: 16px;
    background: #F5F5F5;
}

.search-input input:focus {
    border-color: #0F3E61;
}

.blog-date {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #323232;
    text-transform: uppercase;
    font-weight: 500;
}

.news_sec1rgt_card {
    width: 100%;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #ccc;
}

.news_sec1rgt_card h5 {
    font-size: 16px;
    color: #000;
    font-weight: 500;
    position: relative;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.news_sec1rgt_card h5:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 50px;
    height: 2px;
    background-color: #e31219;
}

.latext_box {
    width: 100%;
    border-radius: 15px;
    padding: 10px;
    background: #22C1C3;
    background-image: linear-gradient(0deg, #0079d0 0, #9e52d8 32%, #da365c 84%, #d04901 100%);
}

.latext_boxin {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    padding: 30px;
    background: #fff;
    text-align: center;
}
.news-category a{ color:#FFF;}
.news-category {
    background-image: linear-gradient(108deg, #0079d0 0%, #9e52d8 32%, #da365c 84%, #d04901 100%);
    padding: 5px 15px;
    text-align: center;
    font-size: 13px;
    color: #ffffff;
    font-weight: 500;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 10px;
}

.latext_boxin h6 {
    font-size: 16px;
    color: #000;
    font-weight: 400;
    padding: 10px 0 25px;
    position: relative;
    margin-bottom: 25px;
    line-height: 26px;
}

.latext_boxin h6:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    width: 165px;
    height: 2px;
    background-color: #ccc;
}
.blog_details .blog-main .content h2 {
    font-size: 28px;
    line-height: 38px;
    color: #000000;
    font-weight: 600;
}
.blog_details .blog-main .content h2 strong{
	display:inline-block;
	font-size: 28px;
    line-height: 38px;
    color: #000000;
    font-weight: 600;
}
.blog_details .blog-main h2 strong{
	display:inline-block;
	font-size: 28px;
    line-height: 38px;
    color: #000000;
    font-weight: 600;
	margin-bottom: 12px;
}
.blog_details .blog-main ul{
	
}
.blog_details .blog-main ul li{
	padding:0;
}
.blog_details .blog-main h1 strong, .blog_details .blog-main h3 strong{
	display:inline-block;
	font-size: 28px;
    line-height: 38px;
    color: #000000;
    font-weight: 600;
	margin-bottom: 12px;
}
.blog_details .blog-main h3 {
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 8px;
}
.search-input .searchbox{
	position:relative;
}
.search-input .searchbox input[type="submit"] {
    position: absolute;
    right: 0;
    padding: 9px 20px;
    border: none;
    width: auto;
    font-size: 15px;
    font-weight: 400;
    height: auto;
    color: #ffffff;
    transform: translate(-5px, 5px);
    transition: all 0.5s ease-out;
    background-image: linear-gradient(108deg, #0079d0 0%, #9e52d8 32%, #da365c 84%, #d04901 100%);
}
.search-input label {
    display: inline-block;
    margin-bottom: 10px;
}
.blog_details .side-blog .content .blog-category {
    font-size: 14px;
    font-weight: 500;
    background-image: linear-gradient(108deg, #0079d0 0%, #9e52d8 32%, #da365c 84%, #d04901 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
    margin-bottom: 6px;
    text-transform: uppercase;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
    margin: 0;
}




/*-----------------------404 css start---------------------*/
.error-page {
    padding: 80px 0;
}

.error-content {
    max-width: 700px;
    margin: 0 auto;
}

.error-code {
    font-size: 150px;
    line-height: 1;
    font-weight: 700;
    color: #0d6efd;
    margin-bottom: 20px;
}

.error-content h2 {
    font-size: 40px;
    margin-bottom: 15px;
}

.error-content p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.theme-btn {
    display: inline-block;
    padding: 14px 35px;
    background: #0d6efd;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.theme-btn:hover {
    background: #084298;
    color: #fff;
}

.error-search {
    margin-top: 40px;
}

.error-search .search-form {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.error-search .search-field {
    width: 70%;
    padding: 12px 15px;
    border: 1px solid #ddd;
}

.error-search .search-submit {
    padding: 12px 25px;
    background: #0d6efd;
    color: #fff;
    border: none;
    cursor: pointer;
}
/*-----------------------404 css stop---------------------*/

/*--============= category listing area =============--*/
.inner-banner-area {
    background: linear-gradient(to right,
    #000000 0%,
    #1c1c1c 45%,
    #5f1018 75%,
    #a51b29 100%);
    padding: 40px 0;
}
.inner-banner-area .content-box .logo {
    width: 100%;
    max-width: 235px;
    margin-bottom: 12px;
}
.inner-banner-area .content-box .logo img{
    width: 100%;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(99%) sepia(1%) saturate(2%) hue-rotate(211deg) brightness(105%) contrast(100%);
}
.inner-banner-area .content-box {
    width: 100%;
    max-width: 375px;
}
.inner-banner-area .content-box h1 {
    font-size: 15px;
    font-weight: 300;
    color: #ffffff;
    line-height: 26px;
}
.inner-banner-area .content-box p{
    font-size: 15px;
    font-weight: 300;
    color: #ffffff;
    line-height: 26px;
    margin: 0;
}
.inner-banner-area .imgbox {
    width: 100%;
    max-width: 530px;
}
.inner-banner-area .imgbox img{
    width: 100%;
    object-fit: contain;
}
.category-listing-area{
    background-color: rgb(237 40 49 / 2%);
}
.category-listing-area .left-panel{
    padding: 50px 8px 50px 0;
    position: relative;
}
.category-listing-area .left-panel .listing {
    margin-bottom: 16px;
    padding: 28px 20px;
    box-shadow: 0 0 5px rgb(0 0 0 / 5%);
    border-radius: 8px;
    background-color: #ffffff;
}
.category-listing-area .left-panel .listing h3 {
    font-weight: 600;
    color: #000000;
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 14px;
}
.category-listing-area .left-panel .listing h3::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 51px;
    height: 2px;
    background-color: #000000;
}
.category-listing-area .left-panel .listing ul {
    gap: 8px;
}
.category-listing-area .left-panel .listing ul li {
    position: relative;
    padding-left: 14px;
}
.category-listing-area .left-panel .listing ul li.active::before{
    background-color: #ed2831;
}
.category-listing-area .left-panel .listing ul li::before {
    content: '';
    width: 5px;
    height: 5px;
    position: absolute;
    background-color: #000000;
    left: 0;
    top: 0;
    transform: translateY(10px);
    border-radius: 50%;
}
.category-listing-area .left-panel .listing ul li a {
    color: #000000;
    font-weight: 400;
    font-size: 16px;
    transition: all 0.5s ease-out;
}
.category-listing-area .left-panel .listing ul li a:hover, .category-listing-area .left-panel .listing ul li.active a{
    text-decoration: underline;
    color: #ed2831;
}
.category-listing-area .left-panel .listing ul li.active a{
    text-decoration: none;
}
.category-listing-area .right-part{
    padding: 50px 0;
}
.category-listing-area .right-part .leasting-search::before {
    content: '\f1c3';
    position: absolute;
    top: 0;
    left: 0;
    font-family: 'Material-Design-Iconic-Font';
    font-size: 28px;
    height: 100%;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5e6974;
}
.category-listing-area .right-part .leasting-search .form-control {
    height: 60px;
    padding-left: 50px;
}
.category-listing-area .right-part .leasting-search .form-control:focus{
    box-shadow: none;
    border-color: #ffffff;
}
.category-listing-area .right-part .leasting-search input[type="submit"] {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #ed2831;
    border: 1px solid #ed2831;
    color: #ffffff;
    font-weight: 600;
    font-size: 18px;
    padding: 10px 25px;
    border-radius: 5px;
    transform: translate(-5px, 5px);
    transition: all 0.5s ease-out;
}
.category-listing-area .right-part .leasting-search input[type="submit"]:hover{
    background-color: #000000;
    border-color: #000000;
}

.category-listing-area .right-part .leasting-search{
    margin-bottom: 16px;
}



#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu{background-color: #f8f8f8;
  padding: 0px 45px !important;
  height: auto !important;
  box-shadow: 0 3px 5px 0 rgb(0 0 0 / .3);
  font-weight: 400;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  max-width: 1200px;
  margin: 0px auto 0px;
  border-radius: 30px;
  width: 100%;}

#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column > ul.mega-sub-menu > li.mega-menu-item {
  padding: 0px 0px 0px 0px !important;
  width: 100%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover{
  text-decoration: none;
  background-color: transparent;
  background-image: linear-gradient(108deg, #0079d0 0%, #9e52d8 32%, #da365c 84%, #d04901 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item a.mega-menu-link::before{background-image: linear-gradient(108deg, #0079d0 0%, #9e52d8 32%, #da365c 84%, #d04901 100%);
  -webkit-background-clip: text;vertical-align: middle;font-size: 18px;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;}
 #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
background-image: linear-gradient(108deg, #0079d0 0%, #9e52d8 32%, #da365c 84%, #d04901 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-family: inherit;
  font-size: 18px;
  text-transform: capitalize;
  text-decoration: none;
  font-weight: bold;
  text-align: left;
  margin: 0px 0px 0px 0px;
  padding: 15px 0px 0px 0px;
  vertical-align: top;
  display: block;
  border: 0;
}

.latest_cardbtm10 {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 5px;
    flex-direction: column;
}

.blog_details ul li {
    width: auto !important;
    padding-right: 20px !important;
}

.latest_cardbtm10 ul li a {
	position: relative;
}

.latest_cardbtm10 ul li a:after {
    content: '';
    position: absolute;
    right: -14px;
    top: 8px;
    width: 5px;
    height: 5px;
    background-color: #ED2831;
    border-radius: 50%;
}
.latest_cardbtm10 ul li:last-child a::after {
    display: none;
}
.thumb150 ul li:first-child a::after {
	display: none;
}

.thumb150 ul li {
    width: auto !important;
    padding-right: 4px !important;
    font-size: 15px;
    font-weight: 500;
}

.blogright:nth-of-type(3) .news_sec1rgt_card {
    position: sticky;
    top: 400px;
}
.news_sec1rgt_card150 .nav-links {
    display: flex;
    justify-content: space-between;
    padding-top: 16px;
}
.news_sec1rgt_card150 .nav-links .nav-previous a, .news_sec1rgt_card150 .nav-links .nav-next a {
    display: inline-flex;
    width: 100%;
    max-width: 450px;
  
    border-radius: 8px;
    align-items: center;
}
.news_sec1rgt_card150 .nav-links .nav-previous a .meta-nav, .news_sec1rgt_card150 .nav-links .nav-next a .meta-nav {
    margin: 0;
    margin-right: 10px;
    fill: #ffffff;
    color: #fff;
    background-image: linear-gradient(108deg, #0079d0 0%, #9e52d8 32%, #da365c 84%, #d04901 100%);
    width: 27px;
    height: 27px;
    min-width: 27px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}
.news_sec1rgt_card150 .nav-links .nav-previous a .post-title, .news_sec1rgt_card150 .nav-links .nav-next a .post-title {
    color: #000;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
	font-size: 15px;
    font-weight: 500;
}
.news_sec1rgt_card150 .nav-links .nav-next a{
	flex-direction:row-reverse;
}
.news_sec1rgt_card150 .nav-links .nav-next a .post-title{
	text-align:right;
}
.news_sec1rgt_card150 .nav-links .nav-next a .meta-nav{
	margin-right:0;
	margin-left:10px;
}
.blog_details .blog-main h2 {
    font-size: 28px;
    line-height: 38px;
    color: #000000;
    margin-bottom: 8px;
}
.position-letest-news.is-sticky{
    position: sticky;
    top: 80px;
}
.relatedPost-area .heading h3 {
    text-transform: capitalize;
    color: #000000;
    font-size: 34px;
    line-height: 44px;
    font-weight: 700;
}
.relatedPost-area .heading .tagline{
	margin-bottom:0;
}
.relatedPost-area .heading .tagline span {
    display: inline-block;
    text-transform: uppercase;
    background-color: #ffffff;
    padding: 0 5px;
    background-image: linear-gradient(108deg, #0079d0 0%, #9e52d8 32%, #da365c 84%, #d04901 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-weight: 600;
}
.relatedPost-area .heading{
	margin-bottom:20px;
}
.relatedPost-area {
    background-color: rgb(237 40 49 / 2%);
}
.relatedPost-carousel .owl-dots {
    margin-top: 24px !important;
}
.relatedPost-carousel .owl-dots .owl-dot span {
    margin: 5px;
}
.relatedPost-carousel .owl-dots .owl-dot.active span{
	background-image: linear-gradient(108deg, #0079d0 0%, #9e52d8 32%, #da365c 84%, #d04901 100%);
}
/*----*/
.freetools-area .heading-area{
    margin-bottom: 40px;
}
.freetools-area .heading-area h3 {
    font-weight: 700;
    font-size: 38px;
    width: 100%;
    max-width: 575px;
    line-height: 48px;
}
.freetools-area .heading-area h3 strong {
    font-weight: 700;
    background-image: linear-gradient(108deg, #0079d0 0%, #9e52d8 32%, #da365c 84%, #d04901 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}
.freetools-area .nav .nav-link {
    width: 310px;
    padding: 0;
    border-radius: 0;
    margin-bottom: 14px;
}
.freetools-area .nav .nav-link h4 {
    position: relative;
    color: #7a7a7a;
    font-weight: 700;
    font-size: 26px;
    margin: 0;
    line-height: 36px;
}
.freetools-area .nav .nav-link h4::after {
    content: '\f2fb';
    position: absolute;
    top: 0;
    right: 0;
    font-family: 'Material-Design-Iconic-Font';
    font-weight: normal;
    font-size: 26px;
    height: 100%;
    display: flex;
    align-items: center;
    transition: all 0.5s ease-out;
}
.freetools-area .nav .nav-link.active{
    background-color: transparent;
}
.freetools-area .nav .nav-link p {
    font-size: 16px;
    color: #000000;
    font-weight: 400;
    display: none;
    padding-right: 55px;
}
.freetools-area .nav .nav-link.active h4{
    color: #000000;
}
.freetools-area .nav .nav-link.active p{
    display: block;
}
.freetools-area .nav .nav-link:first-child h4 {
    padding-left: 35px;
}
.freetools-area .nav .nav-link:first-child h4::before{
    content: '\f310';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    display: flex;
    align-items: center;
    font-family: 'Material-Design-Iconic-Font';
    font-weight: normal;
    font-size: 26px;
}
.freetools-area .tab-content {
    padding-left: 8px;
    width: 100%;
}
.freetools-area .freetools-box {
    padding: 20px;
    box-shadow: 0 0 8px rgb(0 0 0 / 6%);
    background-color: #ffffff;
}
.freetools-area .freetools-box h5 {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0;
}
.freetools-area .freetools-box p {
    font-size: 15px;
    margin-top: 8px;
    margin-bottom: 10px;
}
.freetools-area .freetools-box .btn {
    background-image: linear-gradient(108deg, #0079d0 0%, #9e52d8 32%, #da365c 84%, #d04901 100%);
    border: none;
    color: #ffffff;
    font-size: 14px;
    padding: 6px 14px;
}

.freetools-area .freetools-box img{
    object-fit: cover;
    margin-top: 24px;
}
.section-one-area.section-two-area {
    background-color: rgb(237 40 49 / 2%);
}




            .ai-widget {
                width: 340px;
                background: linear-gradient(180deg, #f8a5ab 0%, #fde3df 68%, #ffffff 100%);
                border-radius: 0 0 0 0;
                padding: 15px;
                border-top-right-radius: 28px;
                box-shadow: 0 25px 60px rgba(255, 117, 138, 0.2);
            }

            .widget-head {
                display: flex;
                align-items: center;
                gap: 14px;
                margin-bottom: 10px;
            }

            .icon-box {
                width: 38px;
                height: 38px;
                border-radius: 12px;
                background: linear-gradient(180deg, #e8a3f2, #d693df);
                display: flex;
                align-items: center;
                justify-content: center;
                color: #fff;
                font-size: 19px;
                flex-shrink: 0;
                box-shadow: 0 10px 18px rgba(200, 108, 209, 0.25);
            }

            .title h3 {
                font-size: 14px;
                font-weight: 700;
                color: #3168ea;
                margin-bottom: 3px;
                letter-spacing: 0.1px;
            }

            .title p {
                margin: 0;
                font-size: 12px;
                font-weight: 700;
                color: #a66cff;
                letter-spacing: 0.8px;
                text-transform: uppercase;
            }

            .ai-card {
                background: rgba(255, 255, 255, 0.6);
                backdrop-filter: blur(8px);
                border-radius: 18px;
                padding: 16px 18px;
                display: flex;
                align-items: center;
                margin-bottom: 12px;
                transition: 0.35s;
                box-shadow:
                    inset 0 1px rgba(255, 255, 255, 0.55),
                    0 6px 20px rgba(253, 183, 191, 0.18);
            }

            .ai-card:hover {
                transform: translateY(-4px);
                background: #fff;
                box-shadow: 0 18px 35px rgba(248, 128, 143, 0.22);
            }

            .badge-text {
                width: 50px;
                font-size: 20px;
                font-weight: 800;
                line-height: 1;
            }

            .badge-text.gpt {
                color: #784cff;
            }

            .badge-text.llm {
                color: #ff4ca4;
            }

            .badge-text.ml {
                color: #0db3e8;
            }

            .card-title {
                font-size: 15px;
                font-weight: 500;
                color: #1b1b1b;
            }

            .explore-btn {
                width: 100%;
                height: 48px;
                border: none;
                border-radius: 16px;
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 10px;
                color: #fff !important;
                margin-top: 18px;
                font-size: 16px;
                font-weight: 700;
                background: linear-gradient(90deg, #1578d7 0%, #9a4ee2 48%, #ff5d00 100%);
                transition: 0.35s;text-align: center;
                box-shadow: 0 15px 28px rgba(114, 82, 232, 0.3);
            }

            .explore-btn:hover {
                transform: translateY(-3px);
                box-shadow: 0 22px 36px rgba(114, 82, 232, 0.42);
            }

            .explore-btn i {
                font-size: 15px;
            }

            @media (max-width: 575px) {

                .ai-widget {
                    width: 100%;
                    max-width: 340px;
                }
            }





.profile-area h3 a{background-image: linear-gradient(108deg, #0079d0 0%, #9e52d8 32%, #da365c 84%, #d04901 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;font-size: 18px;
  line-height: normal;
  display: inline-block;
  color: transparent;}


/*--====== profile area start =====--*/
.profile-area .profile-box {
    padding: 24px 16px;
    border-radius: 10px;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgb(0 0 0 / 7%);
}
.profile-area .profile-box .profile-img {
    width: 100%;
    max-width: 140px;
    height: 140px;
    background-color: #000000;
    margin: 0 auto 16px;
}
.profile-area .profile-box .profile-img img{
    object-fit: cover;
}
.profile-area .profile-box .profiel-content {
    margin-bottom: 24px;
}
.profile-area .profile-box .profiel-content h1 {
    font-size: 26px;
    font-weight: 600;
    line-height: 36px;
    color: #000000;
    margin-bottom: 12px;
}
.profile-area .profile-box .profiel-content h1 span {
    display: block;
    font-weight: 300;
    font-size: 16px;
    line-height: 30px;
}
.profile-area .profile-box .profiel-content ul.social{
    gap: 8px;
}
.profile-area .profile-box .profiel-content ul.social li a{
    display: inline-block;
}
.profile-area .profile-box .profiel-content ul.social li img {
    width: auto;
   height: 28px !important;
    transition: all 0.5s ease-out;
}
.profile-area .profile-box .profiel-content ul.social li a:hover img{
    transform: translateY(-5px);
}
.profile-area .profile-box .total-post .icon-box {
	background: none;
	box-shadow: none;
}
.profile-area .profile-box .total-post .icon-box img {
    width: auto;
    height: 24px;
}
.profile-area .profile-box .total-post .body-box{
    padding-left: 10px;
}
.profile-area .profile-box .total-post {
    background-color: rgb(237 40 49 / 2%);
    padding: 12px;
    border-radius: 5px;
}
.profile-area .profile-box .total-post .body-box h4, .profile-area .profile-box .total-post .body-box h5 {
    font-size: 15px;
  font-weight: 600;
  color: #000000cf;
  line-height: 25px;
}
.profile-area .profile-box .total-post .body-box h5{
    background-image: linear-gradient(108deg, #0079d0 0%, #9e52d8 32%, #da365c 84%, #d04901 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}
.profile-area .profile-box .post-listing{
    margin-bottom: 24px;
}
.btn {
    border-radius: 5px;
    padding: 10px 15px;
    font-size: 16px;
    font-weight: 400;
    border: 1.5px solid transparent;
}
.btn-primary{
    background-image: linear-gradient(108deg, #0079d0 0%, #9e52d8 32%, #da365c 84%, #d04901 100%);
    border: none;
}
.btn-outline-primary{
   background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(108deg, #0079d0 0%, #9e52d8 32%, #da365c 84%, #d04901 100%) border-box;      
}
.btn-outline-primary:hover{
    color: #0079d0;
}
.profile-area .profile-letest-post-body{
    border-radius: 10px;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgb(0 0 0 / 7%);
}
.profile-area .profile-letest-post-body .post-header {
    padding: 16px;
    border-bottom: 1px solid #e7e7e7;
}
.profile-area .profile-letest-post-body .post-header h2 {
    font-size: 22px;
    line-height: 32px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0;
}
.profile-area .profile-letest-post-body .post-header p {
    margin: 0;
    font-size: 14px;
}
.profile-area .profile-letest-post-body .post-body-list{
    padding: 16px 0;
}
.post-body-list .post-listing {
    border-bottom: 1px solid #e7e7e7;
    padding: 0 16px;
    padding-bottom: 16px;
    margin-bottom: 16px;
}
.post-body-list .post-listing .post-listing-img {
    width: 100%;
    max-width: 135px;
    border-radius: 8px;
}
.post-body-list .post-listing .post-listing-img img{
    width: 100%;
    object-fit: cover;
}
.post-body-list .post-listing .post-listing-body{
    padding-left: 12px;
}
.post-body-list .post-listing .post-listing-body h3 {
    font-size: 18px;
    line-height: 25px;
    color: #000000;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 6px;
}
.post-body-list .post-listing .post-listing-body p {
    margin: 0 0 6px;
    font-size: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-weight: 400;
}
.post-body-list .post-listing .post-listing-body ul {
    display: flex;
    gap: 10px;
}
.post-body-list .post-listing .post-listing-body ul li {
    font-size: 13px;
    font-weight: 400;
    color: #000000;
}
.post-body-list .post-listing .post-listing-body ul li i {
    margin-right: 4px;
    background-image: linear-gradient(108deg, #0079d0 0%, #9e52d8 32%, #da365c 84%, #d04901 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}
.profile-area .profile-follow{
    padding: 24px 16px;
    border-radius: 10px;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgb(0 0 0 / 7%);
}
.profile-area .profile-follow h3 {
    font-size: 22px;
    line-height: 32px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 8px;
}
.profile-area .profile-follow ul.social-link{
    gap: 8px;
}
.profile-area .profile-follow ul.social-link li a{
    display: inline-block;
}
.profile-area .profile-follow ul.social-link li img {
    width: auto;
    height: 30px !important;
}
.profile-area{
    padding: 40px 0;
}

.page-numbers{margin: 0px 5px;
  background: #d0d0d0;
  padding: 10px;
  border-radius: 50px;
  display: flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  color: #000;}
.pagination{align-items: center; justify-content: center;margin-top: 40px;}
.pagination .prev, .pagination .next{background: inherit;
  height: initial;
  width: initial;padding: 0px;}

.page-numbers.current {
  background: #ed2831;
  color: #fff;
}

.form-control{height: 45px;
  border: 1px solid #b3b3b3;
  color: #000;
  font-size: 15px;}
textarea.form-control {
  min-height: 100px;
  resize: none;
}

.wpcf7-form-control.wpcf7-submit.has-spinner.btn {
  background-image: linear-gradient(108deg, #0079d0 0%, #9e52d8 32%, #da365c 84%, #d04901 100%);
  color: #fff;
  border: none;
  padding: 10px 35px;
}

.navigation.pagination .nav-links{width: 100%;
  display: flex;
  justify-content: center;}


.btn-primary15{font-size: 11px;
  padding: 8px 11px;
  margin-left: 6px;}



#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link{margin: 0px 0px 7px 0px;color: #000;}

.newmenu a{ color: #000 !important;
  background-image: none !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: black !important;
  background-clip: text !important;font-size: 15px !important;
  font-weight: 500 !important;}

.blog_details101{background: #f9f7f7;padding: 25px 0px;}
.blog_details101 ul li{display: inline-block;
  border-right: 1px solid #000;
  padding: 0px 10px;
  line-height: 17px;
  color: #000;display: inline-block;
  background-image: linear-gradient(108deg, #0079d0 0%, #9e52d8 32%, #da365c 84%, #d04901 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-size: 20px;
  font-weight: bold;
  margin: 0px 5px;}
.blog_details101 ul li:last-child{border-right: 0px solid #000;padding-left: 0px;}
.blog_details101 ul li a{font-size: 20px;
  color: #000;-webkit-background-clip: text;
  -webkit-text-fill-color: #0000;
  background-clip: text;
  background-image: linear-gradient(108deg, #000 0%, #000 32%, #000 84%, #000 100%) !important;}


.footernav1050{flex: 0 0 auto;width: 22% !important;padding-right: 35px;}
.footernav10120{flex: 0 0 auto;width: 15% !important;}
.flogo15{position: relative; width: 133px; margin-top: 20px;}
.flogo15 img{position: relative;z-index: 9;}
.bg-white150{background: #fff;height: 45px;position: absolute; bottom: 0px; width: 100%; border-radius: 10px;}

.asked_sec10 .accordion .accordion-item {
    margin-bottom: 16px;
    border: none;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 0 5px rgb(0 0 0 / 18%);
}
.asked_sec10 .accordion .accordion-item .accordion-header .accordion-button {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
	background-image: linear-gradient(108deg, #0079d0 0%, #9e52d8 32%, #da365c 84%, #d04901 100%);
}
.asked_sec10 .accordion .accordion-item .accordion-header .accordion-button.collapsed{
	background-image:none;
	color:#000000;
}
.asked_sec10 .accordion .accordion-item .accordion-header .accordion-button::after {
    background-image: none;
    width: 30px;
    height: 30px;
    border: 1px solid #ffffff;
    border-radius: 50%;
    content: "\f068";
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
	font-family: FontAwesome;
	color:#000000;
	background-color:#ffffff;
}
.asked_sec10 .accordion .accordion-item .accordion-header .accordion-button.collapsed:after{
	content: "\2b";
	border-color:#b9b9b9;
	background-color:#ffffff;
	color:#000000;
}
.asked_sec10 .accordion .accordion-item .accordion-header .accordion-button:focus{
	box-shadow:none;
}
.asked_sec10 .accordion{
	width:100%;
}
.asked_sec10 .accordion .accordion-item .accordion-body p{
	margin:0;
	font-size:15px;
}



.category-one-area .btn{background-image: linear-gradient(108deg, #0079d0 0%, #9e52d8 32%, #da365c 84%, #d04901 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  padding: 0px; margin-top:20px}

.latest_sec10 p{margin-bottom: 15px;}
.latest_sec10 ul{padding: 0px 0px 0px 15px; margin:0px;}
.latest_sec10 ul li{ margin-bottom: 15px;list-style: disc; font-size: 20px;line-height: 29px;text-decoration: underline;}
.latest_sec10 ul li a{ color:#000;}

.section-one-right10 h4 a{color: #d9375f;
  text-transform: capitalize;
  font-size: 17px;}

.section-one-card{box-shadow: 0px 0px 10px 0px #ddddddd9;
  padding: 10px 20px 20px;
  border-radius: 10px;}
.img-fluid{border-radius: 12px;}






