@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 : #323232;
    --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: var(--webFont);margin: 0;padding: 0;}
::selection {
    background-color: var(--theme-color);
    color: #fff;
    text-shadow: none;
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--webFont);
    margin: 0;
    padding: 0;
}

p {
    font-family: var(--webFont);
    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;
}

a {
    text-decoration: none;
    outline: none !important;
}

html {
    scroll-behavior: smooth;
    font-size: 100%;
}

.p-80 {
    padding: 80px 0;
}
/* ======================================================================= */
    /*  header area start */
/* ======================================================================= */
.header-area .logo{
    width: min(100%, 250px);
}
.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: 24px;
}

.menu ul li.active {
    position: relative;
}

.menu ul li a {
    color: var(--black);
    font-size: 16px;
    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: none;
        background-color: #fff;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        z-index: 99;
    }

    .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: 290px;
    overflow: hidden;
}
.section-one-card .card-img img{
    width: 100%;
    object-fit: cover;
}
.section-one-card .card-body{
    padding-top: 16px;
}
.section-one-card .card-body h1 {
    color: var(--black);
    font-weight: 600;
    font-size: 27px;
    line-height: 37px;
    margin-bottom: 12px;
}
.section-one-card .card-body h6 {
    color: var(--theme-color);
    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;
    padding-left: 80px;
}
.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(40px);
}
.section-one-area .section-one-right h2 {
    text-transform: capitalize;
    font-size: 28px;
    line-height: 38px;
    margin: 0 0 24px;
    font-weight: 600;
    color: #000000;
}
.section-one-area .section-one-right .blog-part {
    padding-bottom: 24px;
    margin-bottom: 24px;
    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 {
    color: var(--theme-color);
    text-transform: uppercase;
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    margin-bottom: 5px;
    display: inline-block;
}
.section-one-area .section-one-right .blog-part h3 {
    color: var(--black);
    font-size: 24px;
    line-height: 34px;
    font-weight: 600;
    margin-bottom: 8px;
}
.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: 30px;
    font-weight: 700;
    color: #000000;
    line-height: 40px;
    margin-bottom: 16px;
}
.section-two-area .section-two-card .img-box{
    height: 225px;
}
.section-two-area .section-two-card .img-box img{
    width: 100%;
    object-fit: cover;
}
.section-two-area .section-two-card .card-body {
    padding-top: 24px;
}
.section-two-area .section-two-card .card-body h3 {
    font-size: 22px;
    line-height: 32px;
    color: #000000;
    font-weight: 600;
    margin-bottom: 30px;
}
.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: 18px;
    margin-bottom: 18px;
    font-size: 17px;
    line-height: 27px;
}
.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: linear-gradient(135deg, #1D74CF 0%, #7c3aed 50%, #db2777 100%);
}*/

/*.latest_sec .nav-pills .nav-link.active, .latest_sec .nav-pills .show>.nav-link {
    color: #fff;
    background: linear-gradient(178deg, #ed2831a8 0%, #ffc9cc 50%, #ed2831 100%);
}*/

.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;
}

.latest_card ul {
    margin-bottom: 8px;
}

.latest_card ul li {
    display: inline-block;
}

.latest_card ul li a {
    font-weight: 600;
    font-size: 12px;
    color: #ED2831;
    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;
    left: -15px;
    top: 5px;
    width: 5px;
    height: 5px;
    background-color: #ED2831;
    border-radius: 50%;
}

.latest_card ul li:first-child a::after {
    display: none;
}

.latest_cardpic {
    width: 100%;
    height: 270px;
    position: relative;
    display: flex;
    overflow: hidden;
    border-radius: 12px;
}

.latest_cardpic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.latest_card:hover .latest_cardpic img {
    transform: scale(1.25) translateY(0%) rotate(5deg);
}

.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: 0;
    position: relative;
}

.latest_cardbtm h4 a {
    font-size: 22px;
    color: #000;
    font-weight: 700;
    margin-bottom: 6px;
    display: block;
}

.latest_cardbtm a {
    font-size: 15px;
    color: #ED2831;
    font-weight: 600;
}

.latest_cardbtm p {
    font-size: 16px;
    color: #252525;
    font-weight: 300;
}

.latest_cardbtm ul li {
    margin-top: 15px;
}

.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%;
    height: 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: 30px;
}

.newsletter-card h2 {
    font-size: 30px;
    line-height: normal;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 20px;
}

.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);
}