@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lovers+Quarrel&display=swap');

:root {
    --font1: 'Inter', sans-serif;
    --font2: 'Lato', sans-serif;
    --primary: #1B3144;
    --secondary: #864344;
    --white: #FFFFFF;
    --dark: #0C0C0C;
    --dark2: #141414;
    --grd1: linear-gradient(110.2deg, #2E1C1C 17%, #191919 33%);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    font-size: 18px;
    line-height: 30px;
    color: var(--dark);
    font-family: var(--font1);
    background: var(--dark);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--white);
    font-family: var(--font1);
    font-weight: 600;
}

p {
    color: var(--white);
    margin: 0 0 20px;
}

img,
svg {
    width: 100%;
}

.clear {
    clear: both;
}

.clear:after {
    position: relative;
    content: "";
    clear: both;
    display: table;
    width: 100%;
}

a {
    transition: .5s;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

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

section {
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.bg-color {
    background: var(--dark2);
}

.specialbtn {
    position: relative;
    display: inline-flex;
    background: #1B3144;
    color: #fff;
    font-size: 18px;
    line-height: 27px;
    font-weight: 600;
    overflow: hidden;
}

/*.specialbtn:before{
    position: absolute;
    content: ""; 
    width: 20px;
    left: -30px;
    top: -75px;
    height: calc(100% + 50px);
    background: rgba(108, 52, 53, .6);
    z-index: 1;
    transform: rotate(25deg);
    transition:1.2s;
}*/
.specialbtn:hover {
    color: #fff;
}

/*.specialbtn:hover:before{ 
    left: calc(100% +  30px); 
    top: 0; 
}*/
.specialbtn>img {
    position: absolute;
    left: 0;
    top: 0;
    width: auto;
    transition: 0.5s;
}

.specialbtn span {
    display: block;
    padding: 18px 30px 18px 90px;
    transition: 0.5s;
}

.specialbtn:hover span {
    padding-right: 105px;
    padding-left: 30px;
    transition: 0.4s;
}

a.specialbtn:hover img {
    right: 0;
    transition: 0.4s;
    left: calc(100% - 92px);
}

/**common**/

.bglight {
    background-color: var(--lightbg);
}

.tophd {
    text-align: center;
    margin: 0 0 30px;
}

.tophd1 {
    text-align: left;
}

.tophd1 .subtitle {
    justify-content: flex-start;
}

.subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-family: var(--font2);
    font-weight: 600;
    position: relative;
    margin: 0 0 10px;
    font-size: 16px;
    line-height: 26px;
    color: var(--white);
}

.wh .subtitle {
    color: var(--white);
}

.subtitle:before {
    position: relative;
    display: inline-flex;
    content: "";
    background: url(../images/subtitleico.svg) no-repeat 0 center;
    width: 35px;
    height: 26px;
    margin-right: 5px;
}

h2.title {
    font-size: 40px;
    line-height: 57px;
    text-transform: capitalize;
    margin: 0 0 10px;
}

.wh h2.title {
    color: var(--white);
}

h2.title span {
    color: var(--secondary);
}

.heading-para {
    font-size: 18px;
    line-height: 27px;
    font-style: normal;
    font-weight: 400;
}

.sec-text {
    font-size: 18px;
    line-height: 27px;
    font-style: normal;
    font-weight: 400;
}

.sec-para {
    font-family: var(--font2);
    font-size: 18px;
    color: var(--dark);
    font-weight: 400;
    line-height: 30px;
}

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

ul li {
    font-weight: 500;
    margin: 0 0 10px;
}

/*ul li:before{
    position: relative;
    display: inline-flex;
    content: "";
    background: url(../images/subtitleico.svg) no-repeat 0 center;
    background-size: 20px;
    width: 20px;
    height: 20px;
    margin-right: 8px;
    top: 2px;
}
*/
.cmnbtn,
.cmnbtnTwo {
    display: inline-block;
    font-weight: 500;
    position: relative;
    background: var(--primary);
    color: var(--white);
    font-size: 16px;
    line-height: 18px;
    text-transform: capitalize;
    overflow: hidden;
}

.cmnbtn span,
.cmnbtnTwo span {
    display: block;
    padding: 18px 42px;
    position: relative;
    z-index: 1;
}

.cmnbtn:before,
.cmnbtnTwo:before {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: -100%;
    background: var(--secondary);
    content: "";
    transition: .5s;
}

.cmnbtn:hover,
.cmnbtnTwo:hover {
    color: var(--white);
}

.cmnbtn:hover:before {
    left: 0;
    bottom: 0;
}

.cmnbtnTwo {
    background: var(--dark);
    border: 1px solid var(--white);
}

.cmnbtnTwo:before {
    background: var(--primary);
    border: 1px solid var(--primary);
}

.cmnbtnTwo:hover {
    border: 1px solid var(--primary);
}

.new-btn {
    display: inline-block;
    font-weight: 500;
    position: relative;
    background: var(--primary);
    color: var(--white);
    font-size: 16px;
    line-height: 18px;
    padding: 18px 42px;
    text-transform: capitalize;
    text-align: center;
    overflow: hidden;
}

.new-btn span {
    display: inline-block;
    position: relative;
    z-index: 1;
    margin-right: 0;
    transition: 0.5s;
}

.new-btn:hover span {
    margin-right: 10px;
}

.new-btn span:before {
    position: absolute;
    content: "";
    width: 0px;
    height: 2px;
    background: var(--white);
    left: 105%;
    top: 60%;
    transform: translate(0, -50%);
    transition: 0.5s;
}

.new-btn:hover span:before {
    width: 15px;
}

.new-btn:before {
    position: absolute;
    width: 5px;
    height: 100%;
    left: 0;
    top: 0;
    background: var(--secondary);
    content: "";
    transition: .5s;
}

.new-btn:hover {
    color: var(--white);
}

.new-btn:hover:before {
    width: 10px;
}

.bor-rad span {
    display: inline-block;
}

.ar {

    right: 26px;
    top: 50%;

    display: inline-block;
    position: relative;
}

/*.cmnbtn i{display: inline-block; vertical-align: middle;
    margin-left: 5px;
}
*/


/**mobile menu**/
.menubtn {
    width: 45px;
    height: 45px;
    background: var(--primary);
    padding: 8px;
    z-index: 124;
    margin-left: 10px;
    border-radius: 5px;
    position: relative;
    display: none;
}

.menubtn span {
    display: inline-block;
    background: var(--white);
    width: 100%;
    height: 3px;
}

.mobilemenu {
    position: fixed;
    right: -100%;
    height: 100%;
    top: 0;
    background: rgba(0, 0, 0, .5);
    transition: .5s;
    z-index: 124;
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.mobilemenu.active {
    right: 0;
}

.cross {
    position: absolute;
    width: 30px;
    height: 30px;
    background: var(--white);
    color: var(--black);
    padding: 5px;
    right: 5px;
    top: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mobilemenu ul {
    padding: 40px 20px;
    background: var(--primary);
    width: 320px;
    list-style: none;
    margin: 0;
}

.mobilemenu ul li:before {
    display: none;
}

.mobilemenu ul li a {
    display: inline-block;
    margin: 5px 20px;
    color: var(--white);
    border-radius: 25px;
    position: relative;
}

.mobilemenu li a:after {
    position: absolute;
    content: "";
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: .5s;
    left: 0;
    bottom: 0;
}

.mobilemenu li a:hover:after {
    width: 100%;
}


.mobilemenu ul.sub-menu1 {
    padding: 0 0 0 15px;
    display: none;
}

.mobilemenu ul li.haschild1>a {
    position: relative;
}

.mobilemenu ul li.haschild1>a:before {
    position: absolute;
    content: "";
    right: 0;
    top: 10px;
    border-width: 2px 2px 0 0;
    border-style: solid;
    border-color: var(--white);
    padding: 3px;
    transform: rotate(135deg);
}

.menulist li.menu-item-has-children {
    margin-right: 25px;
}

.menulist li {
    color: #fff;
    transition: 0.5s;
    position: relative;
}

.menulist li .sub-menu {
    position: absolute;
    background: var(--white);
    min-width: 293px;
    transition: all 0.3s ease-out 0s;
    top: 100%;
    opacity: 0;
    box-shadow: 2px 3px 6px 0px #dcd5d5;
    visibility: hidden;
    z-index: 99;
    text-align: left;
    transform: scale(1, 0);
    transform-origin: 0 0;
    margin-top: 21px;
    padding: 20px;
}

.sub-menu li {
    margin: 10px;
    display: block;
}

.menulist li:hover>.sub-menu {
    transform: scale(1, 1);
    opacity: 1;
    visibility: visible;
}

.menulist .menu-item-has-children .sub-menu li a {
    color: var(--primary);
    margin: 0;
}

/**header**/
.site-header {
    position: relative;
    width: 100%;
    left: 0;
    top: 0;
    padding: 20px 0;
    z-index: 123;
    transition: .5s;
    background: var(--dark);
}

.sticky .site-header {
    background: var(--dark2);
    padding: 8px 0;
    position: fixed;
}

.headerHold {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: inline-block;
    width: 280px;
}

.logo img {
    width: auto;
}

.navlist {
    list-style: none;
    margin: 0;
    padding: 0;

}

.navlist li {
    display: inline-block;
    vertical-align: middle;
    padding: 0 8px;
    margin-bottom: 0;
    color: #fff;
}

.navlist li:before {
    display: none;
}

.navlist li a {
    display: inline-block;
    color: var(--white);
    font-size: 16px;
    line-height: 24px;

    position: relative;
    padding: 2px 2px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.21px;
    text-transform: capitalize;

}

.navlist li.active a:after {
    width: 100% !important;
}

.navlist li a:after,
.navlist li.active a:after {
    position: absolute;
    content: "";
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: .5s;
    left: 0;
    bottom: 0;
}

.navlist li a:hover:after {
    width: 100%;
}

.headerright {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 36px;
}

.navlist li a:hover {
    color: var(--white)
}

.navlist li.menu-item-has-children {

    position: relative;
}

.navlist li.menu-item-has-children span {
    display: inline-block;
    color: var(--white);
    font-size: 13px;
}

.navlist li .sub-menu {
    position: absolute;
    background: var(--white);
    min-width: 293px;
    transition: all 0.3s ease-out 0s;
    top: 100%;
    opacity: 0;

    visibility: hidden;
    z-index: 99;
    text-align: left;
    transform: scale(1, 0);
    transform-origin: 0 0;
    margin-top: 21px;

}

.menu-item-has-children .sub-menu {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    padding: 10px;
}

.menu-item-has-children .sub-menu li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    gap: 10px;
    transition: 0.5s;
    position: relative;
    padding: 10px 0;
    margin: 8px 0;
    color: #fff;

}

.menu-item-has-children .sub-menu li:after {
    position: absolute;
    content: "";
    width: 100%;
    bottom: -8px;
    height: 1px;
    background: var(--dark);
    left: 0;
}

.subi {
    display: inline-block;

}

.menu-item-has-children .sub-menu li:hover {
    background: var(--primary);
}

.menu-item-has-children .sub-menu li:hover a {
    color: var(--white);
}

.menu-item-has-children span i {
    color: var(--white);
    font-size: 12px;
    margin-left: 5px;
}

.navlist li .sub-menu {
    position: absolute;
    background: var(--dark);
    min-width: 300px;
    transition: all 0.3s ease-out 0s;
    top: 100%;
    opacity: 0;

    visibility: hidden;
    z-index: 99;
    text-align: left;
    transform: scale(1, 0);
    transform-origin: 0 0;
    margin-top: 5px;

}

.navlist li:hover>.sub-menu {
    transform: scale(1, 1);
    opacity: 1;
    visibility: visible;
}

.menu-item-has-children .sub-menu li a {
    position: relative;
    padding: 0 14px;
}

.menu-item-has-children .sub-menu li a:after {
    display: none;
}

.menu-item-has-children .sub-menu li a:hover:before {
    width: 16px;
    right: -23px;
}

.bor-rad {
    border-radius: 0px 32px 0px 0px;
}

.headerright .cmnbtn {
    background: var(--secondary);
}

.headerright .cmnbtn:before {
    background: var(--white);
}

.headerright .cmnbtn:hover span {
    color: var(--primary);
}

/*inner-banner*/
.inner-banner {
    position: relative;
    height: 400px;
}

.inner-banner video {
    height: 400px;
    object-fit: cover;
}

.inner-banner-cnt h1 {
    font-size: 56px;
}

.inner-banner-cnt {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    z-index: 1;
}

.inner-banner-cnt ul {
    display: flex;
    column-gap: 25px;
}

.inner-banner-cnt ul li a {
    color: var(--white);
    position: relative;
    font-size: 17px;
}

.inner-banner-cnt ul li a:after {
    position: absolute;
    top: 55%;
    left: -17px;
    content: "";
    background: #fff;
    height: 2px;
    transform: translateY(-50%);
    width: 8px;
}

.inner-banner-cnt ul li:first-child a:after {
    display: none;
}

/**banner*/
.bannerimg {
    width: 100%;
}

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

.banner {
    position: relative;
}

.banner video {
    width: 100%;
    height: 600px;
    object-fit: cover;

}

.banner-slider .banner-items {
    height: 600px;
    position: relative;
}

.banner-slider .banner-items:after,
.inner-banner:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000099;
}

.banner-slider button.owl-prev,
.banner-slider button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white) !important;
    right: 12%;
    width: 50px;
    height: 50px;
    border-radius: 100px;
    border: 1px solid var(--white) !important;
}

.banner-slider button.owl-prev {
    left: 12%;
    right: inherit;
}

.bannerContent {
    position: absolute;
    color: var(--white);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 73%;
    z-index: 1;
}

.bannerContent h1 {
    color: var(--white);
    font-size: 64px;
    font-weight: 700;
    line-height: 90px;
    text-transform: capitalize;
}

.but-w {
    background: var(--white);
    color: var(--primary);
}

.ml-24 {
    margin-left: 24px;
}

.social-banner ul li:before {
    content: none;
    display: none;
}

.social-banner ul li a i {
    color: var(--white);
}

.social-banner {
    padding: 15px 20px;
    position: absolute;
    top: 50%;
    left: 96px;
    transform: translate(0, -50%);
    border-radius: 0px 16px 16px 0px;
    transition: 0.5s;
    z-index: 99;
}

.social-banner ul li {
    padding-bottom: 10px;
    margin-bottom: 0;
    transform: rotate(-90deg);

}

.social-banner ul li a {
    color: var(--white);
}

.social-banner ul {
    position: relative;
    margin-bottom: 0;
}

.social-banner ul:after {
    POSITION: ABSOLUTE;
    content: "";
    bottom: -50px;
    left: 0;
    width: 2px;
    height: 50px;
    background: var(--white);
}

/*services*/
.service-home {
    background: var(--dark2);
}

.service-box {
    background: var(--dark);
    padding: 23px;
    overflow: hidden;
    margin-bottom: 25px;
    transition: 0.5s;
    position: relative;
    z-index: 1;
    height: 100%;
}

.service-box p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-home .row>div {
    margin: 0 0 20px;
}

.service-box:before {
    position: absolute;
    top: 50%;
    content: "";
    transition: 0.5s;
    /*     width: 20px;
    height: 20px; */
    background: var(--secondary);
    border-radius: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    visibility: hidden;
    opacity: 0;
    width: 100%;
    height: 100%;
}

.service-box:hover:before {
    transition: 0.5s;
    visibility: visible;
    opacity: 1;
    z-index: -1;
    /*     border-radius: 100%;
    -webkit-animation: criss-cross-left 1s both;
    animation: criss-cross-left 1s both;
    -webkit-animation-direction: alternate;
    animation-direction: alternate; */
}

.service-box:hover p {
    -webkit-line-clamp: initial;
    -webkit-box-orient: vertical;
}

@keyframes criss-cross-left {
    0% {
        top: -40px;
        border-radius: 100%;
        transition: 0.5s;
    }

    20% {
        top: -40px;
        width: 25px;
        height: 25px;
        border-radius: 50%;
        transition: 0.5s;
    }

    80% {
        top: 50%;
        width: 25px;
        height: 25px;
        border-radius: 50%;
        transition: 0.5s;
        background: var(--secondary);
    }

    100% {
        top: 50%;
        width: 100%;
        height: 100%;
        transition: 5s;
        background: linear-gradient(180deg, rgba(134, 67, 68, 1) 0%, rgba(43, 17, 17, 1) 100%);
        border-radius: 0%;
    }
}

.service-box:after {
    position: absolute;
    top: 0;
    right: 0;
    width: 90%;
    height: 166px;
    background-image: url(../images/ser-topimg.svg);
    background-size: contain;
    background-repeat: no-repeat;
    content: "";
    opacity: 0;
    visibility: hidden;
    transition: 0.9s;
    z-index: -1;
    mix-blend-mode: overlay;
}

.service-box:hover:after {
    opacity: 0.4;
    visibility: visible;
    transition: 0.9s;
}

.service-box:hover a {
    margin-left: 11px;
    color: var(--white);
    transition: 2s;
}

.service-box a span {
    padding-right: 10px;
}

.service-box a {
    position: relative;
    margin-left: -98px;
    color: var(--dark);
    z-index: 1;
}

.service-box a:after {
    display: none;
    position: absolute;
    top: -6px;
    left: -12px;
    content: "";
    width: 40px;
    height: 40px;
    background: #47627a;
    z-index: -1;
    border-radius: 100px;
}

.service-box:hover img {
    background: var(--secondary);
    transition: 1.1s;
}

.service-box:hover img {
    -webkit-animation: img-back 1.1s both;
    animation: img-back 1.1s both;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
}

@keyframes img-back {
    0% {
        background: var(--dark2);
    }

    50% {
        background: var(--dark2);

    }

    100% {

        background: var(--secondary);
    }
}

.service-box:hover a {
    -webkit-animation: btnani .8s both;
    animation: btnani .8s both;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
}

@keyframes btnani {
    0% {
        margin-left: -110px;

    }

    100% {

        margin-left: 11px;

    }
}

.service-box a i {
    color: var(--secondary);
    font-size: 14px;
}

.service-box figure img {
    width: 80px;
    background: var(--dark2);
    padding: 10px;
    transition: 0.5s;
}

.service-box:hover img {
    background: var(--secondary);
    transition: 0.5s;
}

.service-box h3 {
    padding: 10px 0;
}

.service-box:hover {
    transform: translateY(-20px);
}

/*about*/
.why.inner-about {
    background: var(--dark);
}

.inner-about .why-l .abmain:after {
    background: var(--dark2);
}

.about-btm {
    display: flex;
    column-gap: 30px;
    margin: 41px 0;
}

.ab-left h3 {
    position: relative;
    padding-left: 15px;
    display: inline-block;
}

.ab-left h3:after {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--secondary);
    width: 4px;
    height: 100%;
    content: "";
}

.home-about-r {
    position: relative;
}

.home-about-r .abmain {
    text-align: right;
    position: relative;
}

.home-about-r .abmain img {
    width: auto;
}

/*.home-about-r .abmain:after {*/
/*    position: absolute;*/
/*    top: 50%;*/
/*    left: 100px;*/
/*    width: 314px;*/
/*    height: 478px;*/
/*    background: var(--dark2);*/
/*    content: "";*/
/*    transform: translateY(-50%);*/
/*    z-index: -1;*/
/*    clip-path: polygon(0 19%, 100% 0, 100% 78%, 0 100%);*/
/*}*/

.circleOne {
    position: absolute;
    bottom: 32%;
    left: 0;
    width: 74px;
    height: 74px;
    content: "";
    background: #864344;
    border-radius: 100px;
    animation: circleOne 5s infinite;
}

.circleTwo {
    position: absolute;
    bottom: 8%;
    left: 31%;
    width: 160px;
    height: 160px;
    content: "";
    background: linear-gradient(180deg, rgba(134, 67, 68, 1) 0%, rgba(43, 17, 17, 1) 100%);
    border-radius: 100px;
    animation: zoomInOut 3s infinite;
}

@keyframes zoomInOut {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.circle {
    width: 50px;
    height: 50px;
    background-color: #3498db;
    border-radius: 50%;
    position: relative;
    animation: circleOne 3s infinite;
}

/* Keyframes for the top to bottom animation */
@keyframes circleOne {
    0% {
        bottom: 32%;
    }

    50% {
        bottom: 28%;
    }

    100% {
        bottom: 32%;
    }
}

.circleThree {
    position: absolute;
    bottom: 0;
    left: 40%;
    content: "";
    background: #864344;
    width: 26px;
    height: 26px;
    border-radius: 100%;
    animation: circleThree 3s infinite;
}

@keyframes circleThree {
    0% {
        lef: 40%;
    }

    50% {
        left: 20%;
    }

    100% {
        left: 40%;
    }
}

/**solution_sec**/
.solution_sec .row {
    justify-content: center;
}

.solution_sec1 .row>div {
    margin: 0 0 20px;
}

.solutionDiv {
    text-align: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0px 10px 60px 0px rgba(55, 73, 87, 0.10);
}


.solutionDiv h3 {
    font-size: 32px;
    line-height: 41px;
    text-transform: capitalize;
    margin: 0 0 20px;
}

.solutionDiv .ico {
    display: inline-block;
    width: 100px;
    height: 100px;
    margin: 0 0 20px;
}

.solutionDiv .ico img {
    display: inline-block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}


.solution_sec1 .solutionDiv {
    display: flex;
}

.solution_sec1 .solutionDiv .ico {
    width: 80px;
    margin-right: 20px;
}

.solution_sec1 .solutionDiv .content {
    width: calc(100% - 100px);
    text-align: left;
}

.extrapd {
    padding-bottom: 250px;
}

.head-left {
    text-align: left;
}

.head-left .subtitle {
    justify-content: left;
}

.wh .subtitle {
    color: var(--white);
}

.wh h2.title {
    color: var(--white);
}

.ban-h h2.title {
    font-size: 56px;
    line-height: 70px;
    margin-bottom: 19px;
}

.ban-h .subtitle:before {
    background: url(../images/icons/banh-logo.svg) no-repeat 0 center;
}

.wh h2 {
    color: var(--white);
    font-size: 42px;
    font-weight: 600;
    line-height: 56px;
    position: relative;
    margin-bottom: 0;
}

/***joinus-sec***/
.joinus-sec {
    background: url(../images/resource/join-us.png) no-repeat 0 0;
    background-size: cover;
    background-attachment: fixed;
}

.join-title {
    font-size: 70px;
    line-height: 84px;
    font-style: normal;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 20px;
}

.joinus-sec h2.title {
    color: var(--white);
}


/***article-sec***/
.arti-part {
    padding: 15px;
    background: #1e0a0a;
}

.arti-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.arti-img {
    position: relative;
    overflow: hidden;
}

.arti-img img {
    transform: scale(1.0);
    transition: 0.5s;
    height: 220px;
    object-fit: cover;
}

.arti-part:hover .arti-img img {
    transform: scale(1.2);
}

.arti-date {
    position: absolute;
    padding: 15px 10px 10px;
    background: var(--primary);
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    right: 0;
    bottom: 0;
    text-transform: uppercase;
}

.arti-con span img,
.arti-con a svg {
    width: auto;
}

.arti-con a {
    color: var(--secondary);
}

.arti-con {
    padding: 24px;
}

span.artiimg {
    color: var(--secondary);
    font-size: 18px;
    display: flex;
    align-items: center;
    column-gap: 22px;
}

.arti-con h3 a {
    font-size: 24px;
    color: var(--white);
    padding: 0;
    display: block;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.arti-con p {
    font-size: 18px;
    font-style: normal;
    line-height: 24px;
    margin: 0 0 10px 0;


    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.arti-con h5 a {
    font-size: 24px;
    color: var(--secondary);
    font-style: normal;
    font-weight: 700;
    line-height: 34px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    margin: 0 0 15px 0;
    transition: 0.5s;
}

.arti-con h5 a:hover {
    color: var(--primary);
}

/*aplication*/
.service-home.sec-servce {
    background: var(--dark);
}

.apli-cnt {
    margin-bottom: 24px;
}

.apli-cnt h3 {
    position: relative;
    font-size: 24px;
    padding-left: 22px;
}

.apli-cnt h3:after {
    position: absolute;
    content: "\f2ac";
    margin-right: 8px;
    top: 2px;
    left: 0;
    font-family: "uicons-regular-rounded";
    color: var(--secondary);
    font-size: 18px;
}

.service-home.sec-servce .service-box {
    background: linear-gradient(0deg, rgba(27, 49, 68, 1) 0%, rgba(20, 20, 20, 1) 100%);
}

.mobilesec ul li {
    position: relative;
    color: var(--white);
    font-size: 16px;
    padding-left: 18px;
    display: inline-block;
}

.mobilesec ul li:after {
    position: absolute;
    content: "\f2ac";
    margin-right: 8px;
    top: 0;
    left: 0;
    font-family: "uicons-regular-rounded";
    color: var(--secondary);
    font-size: 18px;
}

.apli-mobile img {
    width: auto;
}

.btn-list {
    display: flex;
    margin-bottom: 28px;
    column-gap: 34px;
}

.btn-list-new {
    display: grid;
    grid-template-columns: repeat(2, 50%);
}

/***contact-sec***/
.contact-sec {

    background: url(../images/resource/contbg.png) no-repeat 0 0;
    background-size: cover;
}

.contact-left .accordion-item,
.contact-left .accordion-button {
    background: none;
}

.contact-left .accordion-button {
    font-size: 24px;
    color: var(--white);
    border-bottom: 1px solid var(--icon-box, #303030);
}

.contact-left .accordion-body {
    background: var(--dark2);
}

.contact-left .accordion-button::after {
    background-image: url(../images/icons/arrow-up.png);
    background-size: 27px;

}

.contact-left .accordion-button:not(.collapsed)::after {
    background-image: url(../images/icons/arrow-dn.png);
    transform: rotate(0deg);
}

.contact-right {
    padding: 50px;
    background: var(--dark2);
}

.contact-sec .row {
    align-items: flex-start;
}

.contact-right h4 {
    font-size: 24px;
    margin-bottom: 26px;
}

.con-para {
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 34px;
    color: var(--grey);
}

.con-para a {
    color: var(--primary);
    text-decoration: underline;
}

.con-form-title {
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 41px;
    color: var(--dark);
    margin-bottom: 30px;
}

.con-form-title span {
    color: var(--primary);
}

.contact-right form input,
.contact-right form textarea,
textarea,
.inner-contact-form-left input {
    width: 100%;
    border: 1px solid #7B7B7B;
    padding: 10px 16px;
    margin-bottom: 16px;
    background: no-repeat;
    color: var(--white);
}

.contact-right form textarea,
textarea {
    height: 175px;
}

.contact-right form label,
.inner-contact-form-left form label {
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: 27px;
    color: var(--white);
    margin-bottom: 6px;
}

.contact-right form label span {
    font-size: 12px;
    color: var(--grey);
}

.contact-right form .form-submit input,
.inner-contact-form-left .form-submit input {
    width: auto;
    background: var(--secondary);
    border: 0;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    color: var(--white);
    transition: 0.5s;
    width: 100%;
}

.contact-right form .form-submit input:hover,
.inner-contact-form-left .form-submit input:hover {
    background: var(--primary);
}

.contact-box {
    background: linear-gradient(0deg, rgba(27, 49, 68, 1) 0%, rgba(20, 20, 20, 1) 100%);
    padding: 20px;
    height: 226px;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

.contact-box img {
    width: auto;
}

.contact-box a,
.contact-box p {
    color: #7B7B7B;
}

.contact-box:hover {
    transition: 0.4s;
    background: #141414;
}

.contact-box:after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    border: 2px solid var(--secondary);
    transition: 0.4s;
    opacity: 0;
    visibility: hidden;
    display: none;
}

.contact-box:hover:after {
    rotate: 10deg;
    transition: 0.4s;
    opacity: 1;
    visibility: visible;
}

figure.secimg img {
    filter: grayscale(1);
    position: absolute;
    bottom: -15px;
    right: -48px;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
    width: 50px;
}

.contact-box:hover .secimg img {
    opacity: 1;
    visibility: visible;
    right: 0;
    transition: 0.4s;
}

.inner-contact-form-left {
    background: var(--dark2);
    padding: 54px;
}

/*about-innerpage*/
.history-wrapper {
    position: relative;
}

.history-wrapper:before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    top: 0;
    width: 1px;
    height: 100%;
    border-left: 1px dashed #D1D1D1;
}

.history-wrapper li:not(:last-child) {
    margin-bottom: 40px !important;
}

.history-wrapper li {
    display: flex;
    position: relative;
    justify-content: space-between;
}

.history-wrapper li img {
    width: 100%;
}

.history-wrapper li>div {
    width: 45%;
}

.history-wrapper .content {
    position: relative;
    transition: 0.4s;
}

.his-heading {
    width: 76%;
}

.history-wrapper li:nth-child(even) .top {
    flex-direction: row-reverse;
}

/*.history-wrapper .content:before {
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    background: var(--primary);
    border-right: none;
    border-bottom: none;
    top: 40px;
    right: -10px;
    clip-path: polygon(100% 47%, 0 0, 0 100%);
}*/
/*.history-wrapper li:nth-child(even) .content:before {
    left: -10px;
    clip-path: polygon(100% 100%, 100% 0, 0 50%);
}*/
.his-heading p {
    color: #7B7B7B;
}

.history-wrapper li {
    display: flex;
    position: relative;
    justify-content: space-between;
}

.history-wrapper li:nth-child(even) {
    flex-direction: row-reverse;
}

.history-wrapper li:after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    /*    box-shadow: 0px 1px 20px rgba(249, 76, 48, 0.5);*/
    left: 50%;
    transform: translate(-50%, 0);
    top: 46px;
    background: linear-gradient(0deg, rgba(68, 22, 23, 1) 0%, rgba(134, 67, 68, 1) 100%);
}

.history-wrapper li:before {
    position: absolute;
    content: "";
    left: 50%;
    top: 40px;
    width: 32px;
    height: 32px;
    transform: translateX(-50%);
    background: #141414;
    border-radius: 100px;
}

.history-wrapper .content .top {
    margin-bottom: 30px;
}

.history-wrapper .content .top {
    display: flex;
    column-gap: 15px;
    align-items: flex-start;
}

.history-wrapper .content:hover .date-card {
    transform: rotateY(360deg);
    transition: all 0.4s ease;
}

.date-card {
    padding: 7px;
    background: var(--primary);
    font-size: 16px;
    line-height: 18px;
    color: #fff;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    position: relative;
    transition: all 0.4s ease;
}

.date-card:before {
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    background: var(--primary);
    border-right: none;
    border-bottom: none;
    top: 40px;
    right: -39px;
    clip-path: polygon(100% 47%, 0 0, 0 100%);
}

.history-wrapper li:nth-child(even) .date-card:before {
    left: -40px;
    clip-path: polygon(100% 100%, 100% 0, 0 50%);
}

.date-card:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    border: 1px solid #fff;
    z-index: 1;
    content: "";
    border-radius: 100px;
    transform: translate(-50%, -50%);
}

.history-wrapper .content .top .desg {
    color: var(--primary-text);
    font-size: 20px;
    margin-bottom: 0;
}

.history-wrapper .content .top .cmpny {
    display: block;
    text-transform: uppercase;
    color: var(--secondary);
}

.tophd.tmhd p {
    padding: 20px 0;
}

.team {
    background: var(--dark2);
}

.team-box img {
    width: 100%;
    height: 350px;
    object-fit: contain;
}

.team-box ul {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -38px;
}

.team-box ul li a {
    background: #fff;
    border-radius: 100px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    margin: 0 7px;
    color: var(--secondary);
}

.team-box ul li a:hover {
    background: var(--secondary);
    color: var(--white);
    transition: 0.5s;
}

.team-box h3 {
    text-align: center;
    font-size: 24px;
    font-weight: 500;
}

.team-box h3 span {
    display: block;
    font-size: 18px;
    padding-top: 10px;
    font-weight: 300;
}

.mission-box {
    background: linear-gradient(0deg, rgba(27, 49, 68, 1) 0%, rgba(20, 20, 20, 1) 100%);
    padding: 19px 23px 20px 102px;
    position: relative;
    z-index: 1;
    height: 100%;
}

.inner-mission .row>div {
    margin: 0 0 40px;
}

.mission-box:after {
    position: absolute;
    top: 0;
    content: "";
    left: 0;
    width: 196px;
    height: 137px;
    background-image: url(../images/patch.svg);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}

.mission-box img {
    width: auto;
    margin-top: -60px;
}

/*network*/
.network-test {
    background: var(--dark2);
}

.network-test .row>div {
    margin: 0 0 20px;
}

.net-box {
    text-align: center;
    position: relative;
    padding: 10px;
    z-index: 1;
    height: 100%;
}

.net-box:hover:after {
    height: 100%;
    transition: 0.4s;
    opacity: 1;
    visibility: visible;
}

.net-box:after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 0;
    background: linear-gradient(180deg, rgba(134, 67, 68, 1) 0%, rgba(43, 17, 17, 1) 100%);
    z-index: -1;
    opacity: 0;
    visibility: hidden;
}

.net-box img {
    width: auto;
    background: var(--dark);
    padding: 10px;
}

.net-box:hover img {
    background: var(--secondary);
    transition: 0.4s;
}

.net-box h3 {
    font-size: 24px;
    margin-top: 30px;
}

/*cloud*/
.cloud-vul img {
    width: auto;
}

.cloud-test {
    background: var(--dark2);
}

/*device*/
.device-hardi img {
    width: auto;
}

.device-hardi .net-box {
    text-align: left;
}

.device-inner img {
    width: auto;
}

/*career-sec*/

.career-tab .nav {
    justify-content: center;
    gap: 30px;
}

.career-tab .nav .nav-item {
    margin: 0;
}

.career-tab .nav .nav-item .nav-link {
    border-radius: 0;
    border: 1px solid #303030;
    background: var(--dark2);
    color: var(--white);
    font-size: 18px;
    font-weight: 400;
}

.career-tab .nav .nav-item .nav-link.active {
    background: var(--secondary);
    border: 1px solid var(--secondary);
}

.career-con-top {
    margin: 50px 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.career-con-search {
    position: relative;
    width: 365px;
}

.is-form-style input.is-search-input {
    height: 50px !important;
}

.career-con-search input {
    border: 1px solid #303030;
    background: var(--dark2);
    outline: none;
    box-shadow: none;
    padding: 10px 50px 10px 20px;
    width: 350px;
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
}

.career-con-search button {
    position: absolute;
    right: 0;
    top: 0;
    width: 50px;
    height: 100%;
    display: inline-block;
    background: var(--primary);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.career-con-search button i {
    color: var(--white);
    font-size: 20px;
    line-height: 20px;
    display: inline-block;
}

.career-sort {
    font-size: 18px;
    font-weight: 400;
    color: var(--white);
}

.career-sort a {
    padding-left: 5px;
    font-size: 18px;
    font-weight: 400;
    color: var(--secondary);
}

.career-sort a i {
    font-size: 20px;
    color: var(--white);
    line-height: 10px;
    position: relative;
    display: inline-block;
    top: 5px;
}

.career-con-list-item {
    border: 1px solid #303030;
    margin-bottom: 30px;
    padding: 30px 25px;
}

.career-con-list-head h3 {
    font-size: 24px;
    font-weight: 500;
    margin: 0;
}

.career-con-list-head a {
    font-size: 14px;
    font-weight: 400;
    color: var(--white);
    padding: 10px 20px;
    background: var(--primary);
    font-style: var(--font1);
}

.career-con-list-head {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 40px;
}

.career-con-list-head {
    margin-bottom: 30px;
}

.career-con-list-item p {
    margin: 0;
    font-size: 18px;
    font-weight: 400;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
}

.career-con-list-detail {
    padding-left: 40px;
    padding-top: 20px;
}

.career-con-list-detail li {
    margin-bottom: 30px;
    padding-left: 30px;
    position: relative;
    font-size: 18px;
    font-weight: 400;
    line-height: 20px;
    color: var(--white);
    font-style: var(--font1);
}

.career-con-list-detail li:before {
    position: absolute;
    content: "";
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
    background: url(../images/icons/loc.svg) no-repeat 0 0;
    width: 20px;
    height: 20px;
}

.career-con-list-detail li:last-child {
    margin-bottom: 0;
}

ul.inner-pagi {
    display: flex;
    align-items: center;
    margin-top: 50px;
    column-gap: 14px;
    justify-content: center;
}

ul.inner-pagi li,
ul.ptags li {
    list-style-type: none;
}

ul.inner-pagi li a {
    width: 45px;
    height: 45px;
    border: 1px solid var(--secondary);
    background: var(--dark2);
    display: flex;
    color: var(--secondary);
    align-items: center;
    justify-content: center;
    padding: 9px;
}

ul.inner-pagi li a.active {
    background: var(--secondary);
    color: #fff;
    border: 1px solid var(--secondary);
    transition: 0.6s;
}

ul.inner-pagi li a:hover {
    background: var(--secondary);
    color: #fff;
    border: 1px solid var(--secondary);
    transition: 0.6s;
}


/*team-sec*/

.team_section {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    line-height: 27px;
}

.teamimg {}

.teamimg img {
    width: 100%;
}

.teamimg_bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0;
}

.teamimg_bottom .name {
    font-family: "Lovers Quarrel", cursive;
    font-size: 48px;
    line-height: 54px;
    color: #864344;
}

.teamimg_bottom .social {
    list-style: none;
    margin: 0;
    padding: 0;
}

.teamimg_bottom .social li {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

.teamimg_bottom .social li:last-child {
    margin-right: 0;
}

.teamimg_bottom .social li a {
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #1B3144;
}

.teamimg_bottom .social li a:hover {
    background: #864344;
}


.teamcontent {}

.teamcontent .designation {
    display: inline-block;
    position: relative;
    padding: 0 0 4px;
    margin: 0 0 15px;
    color: #864344;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
}

.teamcontent .designation:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background: #864344;
    left: 0;
    bottom: 0;
}

.teamcontent h3.teamtile {
    font-size: 40px;
    line-height: 48px;
    font-weight: 600;
    margin: 0 0 22px;
}

.teamcontent p {
    margin: 0 0 20px;
}

.teamcontent h4 {
    font-size: 24px;
    line-height: 28px;
    font-weight: 600;
    margin: 0 0 22px;
    color: #864344;
}

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

.teamcontent ul li {
    margin: 0 0 20px;
    position: relative;
    padding: 0 0 0 18px;
    color: var(--white);
}

.teamcontent ul li:before {
    position: absolute;
    content: "";
    border-style: solid;
    border-color: transparent transparent transparent #864344;
    border-width: 8px;
    left: 0;
    top: 5px;
}

.team_section .row {
    flex-direction: row;
    margin: 0 0 50px;
}

.team_section .row:nth-child(2n) {
    flex-direction: row-reverse;
}


/*job-details sec*/

.job_details_section {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    line-height: 27px;
}

.job_detailsLeft h2 {
    font-size: 40px;
    line-height: 48px;
    font-weight: 600;
    margin: 0 0 5px;
}

.job_detailsLeft h3 {
    font-size: 24px;
    line-height: 28px;
    font-weight: 600;
    margin: 0 0 22px;
    color: #864344;
}

.job_detailsLeft p {
    margin: 0 0 25px;
}

.commonlistsm {
    list-style: none;
    margin: 0;
    padding: 0;
}

.job_detailsLeft .commonlistsm {
    margin: 0 0 25px;
}

.commonlistsm li {
    margin: 0 0 20px;
    position: relative;
    padding: 0 0 0 14px;
    color: var(--white);
}

.commonlistsm li:before {
    position: absolute;
    content: "";
    border-style: solid;
    border-color: transparent transparent transparent #864344;
    border-width: 6px;
    left: 0;
    top: 5px;
}

.sidelist {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidelist li {
    margin: 0 0 20px;
    position: relative;
    padding: 0 0 0 26px;
    color: var(--white);
}

.sidelist li:before {
    position: absolute;
    content: "";
    background: url(../images/mapico.svg) no-repeat 0 0;
    background-size: 20px;
    width: 20px;
    height: 20px;
    left: 0;
    top: 5px;
}

.cmnbtnsm {
    display: inline-block;
    background: #864344;
    padding: 12px 30px;
    color: #fff;
    border-radius: 1px;
}

.cmnbtnsm:hover {
    background: #fff;
    color: #864344;
}


.specialbtn {
    position: relative;
    display: inline-flex;
    background: #1B3144;
    color: #fff;
    font-size: 18px;
    line-height: 27px;
    font-weight: 600;
    overflow: hidden;
}

/*.specialbtn:before{
    position: absolute;
    content: ""; 
    width: 20px;
    left: -30px;
    top: -75px;
    height: calc(100% + 50px);
    background: rgba(108, 52, 53, .6);
    z-index: 1;
    transform: rotate(25deg);
    transition:1.2s;
}*/
.specialbtn:hover {
    color: #fff;
}

/*.specialbtn:hover:before{ 
    left: calc(100% +  30px); 
    top: 0; 
}*/
.specialbtn>img {
    position: absolute;
    left: 0;
    top: 0;
    width: auto;
}

.specialbtn span {
    display: block;
    padding: 18px 30px 18px 90px;
    /*position: relative;
    z-index: 2;*/
}


/*apply-job sec*/

.apply-left .career-con-list-detail {
    padding-top: 40px;
    padding-left: 0;
}

.apply-right {
    padding: 40px;
    background: var(--dark2);
}

.apply-right.contact-right form .form-submit input {
    width: auto;
    padding: 10px 25px;
}


/***footer***/
.foot-up {
    background: var(--grd1);
    padding: 50px;
}

.foot-up-inner {
    margin-bottom: -100px;
    z-index: 1;
    position: relative;
}

.foot-up-cont p {
    color: var(--white);
    margin-top: 23px;
}

.foot-up .row {
    --bs-gutter-x: 5.5rem;
}

.footbut form {
    position: relative;
}

.footbut form input[type="email"] {
    width: 100%;
    padding: 10px 136px 10px 31px;
    outline: none;
}

.footbut p {
    margin-top: 16px;
}

.footbut form input.cmnbtn {
    position: absolute;
    right: 0;
    padding: 10px 25px;
    border: 0;
    top: 0;
    height: 54px;
    background: var(--secondary);
}

footer {
    background: var(--dark2);
    position: relative;
    padding-top: 150px;
}

.footer-logo img {
    width: auto;
}

.foot-dwn {
    padding: 0 0 50px;
    border-bottom: 1px solid #4F4F4F;
}

.footer1 p {
    margin: 20px 0;
    color: var(--white);
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
}

.foot-so {
    display: inline-block;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
    color: var(--white);
}

.footer-social {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
}

.footer-social ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    margin: 0;
}

.footer-social ul li:before {
    display: none;
}

.footer-social ul li {
    margin: 0;
}

.footer-social ul li a {
    color: var(--white);
    transition: 0.5s;
    font-size: 25px;
}

.footer-social ul li a:hover {
    color: var(--primary);
}

.footer-head a {
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 33px;
    margin-bottom: 20px;
    color: var(--secondary);
}

.footer-head {
    position: relative;
    z-index: 1;
    padding-left: 5px;
    display: inline-block;
}

.footer-head a {
    display: inline-block;
    position: relative;
    z-index: 1;
}

.footer-menu {
    margin: 0;

}

.foot-dwn .row {
    align-items: flex-start;
}

.footer2 {
    padding: 0 60px;
}

.footer3 form input {
    padding: 16.5px 23px 13.5px 23px;
    border: 1px solid #D8D8D8;
    margin-bottom: 15px;
    width: 100%;

}

.footer-menu li {
    margin-bottom: 20px;
    padding-left: 25px;
    position: relative;
    left: 0;
    transition: 0.5s;
}

.footer-menu li:before {
    display: none;
}

.footer2 .footer-menu li:after {
    position: absolute;
    content: "\f2ac";
    margin-right: 8px;
    top: 2px;
    left: 0;
    font-family: "uicons-regular-rounded";
    color: var(--secondary);
    font-size: 20px;
}

.footer2 .footer-menu li a {
    font-size: 16px;
    font-weight: 400;
    line-height: 27px;
    color: var(--white);
    transition: 0.5s;
}

.footer2 .footer-menu li:hover {
    left: 10px;
}

.footer2 .footer-menu li:hover a {
    color: var(--secondary);
}

.footer3 .footer-menu {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer3 .footer-menu li span {
    display: block;
    color: var(--white);
}

.footer3 .footer-menu li {
    margin: 0;
    padding-left: 30px;
}

.footer3 .footer-menu li a {
    font-size: 16px;
    font-weight: 400;
    line-height: 27px;
    color: var(--white);
    transition: 0.5s;
}

.footer3 .footer-menu li:first-child :before {
    position: absolute;
    content: "";
    background: url(../images/icons/loc.svg) no-repeat 0 0;
    background-size: 20px;
    width: 20px;
    height: 20px;
    left: 0;
    top: 2px;
}

.footer3 .footer-menu li:nth-child(2) :before {
    position: absolute;
    content: "";
    background: url(../images/icons/phone.svg) no-repeat 0 0;
    background-size: 20px;
    width: 20px;
    height: 20px;
    left: 0;
    top: 2px;
}

.footer3 .footer-menu li:nth-child(3) :before {
    position: absolute;
    content: "";
    background: url(../images/icons/mail.svg) no-repeat 0 0;
    background-size: 20px;
    width: 20px;
    height: 20px;
    left: 0;
    top: 6px;
}

.footer-copy {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0 50px;
}

.footer-copy p {
    font-size: 17px;
    font-weight: 400;
    line-height: 27px;
    color: var(--white);
    margin: 0;
}

.footer-copy p a {
    color: var(--secondary);
}

.footer-copy p span {
    color: var(--primary);
    padding-right: 15px;
    border-right: 1px solid var(--white);
    margin-right: 15px;
}

.footer-copy ul {
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.footer-copy ul li {
    margin-bottom: 0;
}

.footer-copy ul li:before {
    display: none;
}

.footer-copy ul li a {
    padding-right: 15px;
    color: var(--white);
    font-size: 16px;
    font-weight: 400;
}

.foot-dwn {
    padding: 40px 0;
}

.footer1 .my-30 {
    margin: 30px 0;
}

.footer3 p {
    color: var(--white);
}

.footer-social ul li {
    position: relative;
}

.footer-social ul li:before {
    width: 32px;
    height: 38px;
    position: absolute;
    left: 0;
    top: 0;
    background: var(--primary);
    content: "";
    transition: .5s;
}

/* cta */

.cta.apli-cta {
    background-image: url(../images/cta-apli.png) !important;
}

.cta.apli-cta:after {
    display: none;
}

.cta,
.cta.apli-cta {
    position: relative;
    text-align: center;
    background-image: url(../images/cta-apli.png) !important;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 1;
    background-attachment: fixed;
}

.cta {
    position: relative;
    text-align: center;
    background-image: url(../images/cta-apli.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 1;
    background-attachment: fixed;
}

.cta:after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    background: #0C0C0C;
    height: 100%;
    width: 100%;
    opacity: 60%;
    z-index: -1;
}

.cta .cmnbtn {
    background: var(--secondary);
}

.cta .cmnbtn:before {
    background: var(--white);
}

.cta .cmnbtn:hover span {
    color: var(--primary);
}

/* counter */
.count-cont {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 12px;
}

.count-cont h3,
.count-cont span {
    color: var(--secondary);
    font-size: 52px;
    font-weight: 900;
    line-height: 56px;
    text-transform: capitalize;
}

.count-cont h3 {
    display: inline-block;
}

.counter-one__text {
    color: var(--secondary);
    font-weight: 600;
    line-height: 30px;
}

.about-counter-sec {
    display: flex;
    align-items: center;
    gap: 50px;
}

.h-about-photo {
    position: relative;
}

.about1img {
    position: absolute;
    right: 0;
}

.about2img {
    position: relative;
    width: 68%;
    top: 172px;
    left: 71px;
    z-index: 1;
}

.home-about .row {
    align-items: flex-start;
}

.about2img:before {
    position: absolute;
    width: 90%;
    height: 90%;
    background: var(--primary);
    top: -13px;
    right: -13px;
    content: "";
    z-index: -1;
}

.bot-i {
    position: absolute;
    bottom: -22px;
    left: -39px;
    padding: 20px;
    background: var(--primary);
}

.up-i {
    position: absolute;
    top: -33px;
    left: 183px;
    background: var(--secondary);
    padding: 20px;
}

.spanimg {
    position: absolute;
    bottom: -138px;
    right: 23px;

}

.approch-body {
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.approch-line {
    position: absolute;
    left: 147px;
    top: -47px;
    width: 72%;
    z-index: -1;
}

.apporch-part {
    position: relative;
    text-align: center;
    padding: 50px 30px;
}

.apporch-img {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    margin: 0 auto;
    position: relative
}

.apporch-img:after {
    position: absolute;
    content: "";
    width: 50%;
    height: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: var(--secondary);
    z-index: -1;
    transition: 0.5s
}

.apporch-part:hover .apporch-img:after {
    width: 100%;
    height: 100%
}

.apporch-part h3 {
    font-size: 24px;
    line-height: 48px;
    font-style: normal;
    margin-top: 30px;
    font-weight: 700;
}

.apporch-part a {
    display: inline-block
}

.approch-body .row>div:nth-child(2) .apporch-part {
    top: -50px
}

.approch-body .row>div:nth-child(3) .apporch-part {
    top: -115px
}

.approch-body .row>div:nth-child(4) .apporch-part {
    top: -180px
}

/* brand-sec */
.brand-boxes {
    display: flex !important;
    align-items: center;
}

.brand-sec .serv-img img {
    width: auto;
    max-width: 100%;
    display: inline-block;
    object-fit: cover;
}

.brand-sec .serv-img {
    margin: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 83px;
}

.serv-item {
    margin: 0 10px;
    overflow: hidden;
}

/* counter2 */
section.count2 {
    padding-top: 0;
}

.count2right .row {
    align-items: flex-start;
}

.count2box {
    overflow: hidden;
    position: relative;
}

.count2box:hover {
    background: var(--primary);
    transition: 0.4s;
}

.count2box:hover .conutbtm-img {
    right: -17px;
    transition: 0.4s;
}

.count2box {
    padding: 18px 18px 4px;
}

.count2box:hover img {
    filter: invert(1) brightness(9);
}

.councont h3,
.councont span {
    color: var(--white);
    font-size: 50px;
    font-weight: 500;
    line-height: 50px;
    display: inline-block;
}

.co2para {
    color: #7B7B7B;
    font-family: var(--font2);
    font-size: 18px;
    font-weight: 600;
}

figure.conutbtm-img {
    position: absolute;
    bottom: 0;
    right: -86px;
    margin-bottom: 0;
    opacity: 0.2;
}

.cimg {
    width: 25%;
    padding-bottom: 23px;
}

.cimg img {
    width: auto;
}

.cun-line {
    position: relative;
}

/* contact */


/*capa-sec*/

.capa-acco ul.nav li:before {
    display: none;
}

.capa-acco .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    background-color: #fff;
    box-shadow: 0px 10px 40px 0px rgba(11, 18, 27, 0.10);
}

.capa-acco .nav-link {
    padding: 15px 20px 15px 30px;
    overflow: hidden;

}

.capa-btn-img span {
    display: inline-block;
    padding-left: 10px;
    position: relative;
}

.capa-btn-img span:before {
    position: absolute;
    content: "";
    width: 40px;
    height: 100%;
    left: 0;
    top: 6px;
    background: transparent;
    border: 2px solid #717070;
    z-index: 1;
}

.capa-btn-img {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
}

.capa-btn-img img {
    position: relative;
    z-index: 11;
}

.capa-btn-img h3 {
    margin: 0;
    font-size: 38px;
    font-weight: 700;
    line-height: 50px;
    font-family: var(--font2);
}

.capa-acco .nav-link .capa-btn-img .capa-acco-head {
    margin-right: -165px;
    transition: 0.5s;
}

.capa-acco .nav-link .capa-btn-img .capa-acco-head.new-add {
    margin-right: -225px;
    transition: 0.5s;
}

.capa-acco .nav-pills .nav-link.active .capa-btn-img .capa-acco-head,
.nav-pills .show>.nav-link .capa-btn-img .capa-acco-head {
    margin-right: 200px;
}

.capa-acco .nav-pills .nav-link.active .capa-btn-img .capa-acco-head.new-add,
.nav-pills .show>.nav-link .capa-btn-img .capa-acco-head.new-add {
    margin-right: 200px;
}

.capa-acco .tab-content {
    padding-top: 20px;
}

.capa-acco-one-left ul {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.capa-acco-one-left ul li {
    font-family: var(--font2);
    color: var(--secondary);
    width: 48%;
    font-size: 18px;
    font-weight: 600;
    line-height: 30px;
    margin-bottom: 16px;
    position: relative;
    padding-left: 40px;
}

.capa-acco-one-left ul li:before {
    position: absolute;
    content: "";
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
    background: url(../images/icons/capa-icon.png) no-repeat 0 0;
    background-size: cover;
    width: 30px;
    height: 30px;
}

.capa-acco-two-con ul li:before {
    display: none;
}

.capa-acco-two-con ul {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.capa-acco-two-con ul li {
    width: 20%;
    margin: 0;
    text-align: center;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 10px 40px 0px rgba(11, 18, 27, 0);
    background: transparent;
    transition: 0.5s;
}

.capa-acco-two-con ul li img {
    width: auto;
    opacity: 0.5;
    transition: 0.5s;
}

.capa-acco-two-con ul li:hover {
    background: var(--white);
    box-shadow: 0px 10px 40px 0px rgba(11, 18, 27, 0.10);
}

.capa-acco-two-con ul li:hover img {
    opacity: 1;
}

.capa-acco-pro {
    background: transparent;
    position: relative;
    padding: 24px 25px;
    transition: 0.5s;
}

.capa-acco-pro:before {
    position: absolute;
    content: "";
    right: 0;
    bottom: 0;
    background: url(../images/shape/capa-shape1.png) no-repeat 0 0;
    background-size: cover;
    width: 150px;
    height: 80px;
}

.capa-acco-pro h4 {
    position: relative;
    font-family: var(--font2);
    font-size: 18px;
    font-weight: 600;
    line-height: 30px;
    color: var(--secondary);
    margin: 0 0 20px 0;
    padding-left: 30px;
    transition: 0.5s;
}

.capa-acco-pro h4:before {
    position: absolute;
    content: "";
    left: -10px;
    top: 50%;
    transform: translate(0, -50%);
    background: url(../images/icons/capa-icon.png) no-repeat 0 0;
    background-size: cover;
    width: 30px;
    height: 30px;
}

.capa-acco-pro ul li:before {
    display: none;
}

.capa-acco-pro ul li {
    font-family: var(--font2);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    color: var(--primary);
    transition: 0.5s;
}

.capa-acco-pro ul li span {
    color: var(--dark);
    display: inline-block;
    transition: 0.5s;
}

.capa-acco-pro:hover ul li span {
    color: var(--white);
}

.capa-acco-pro:hover ul li {
    color: var(--white);
}

.capa-acco-pro ul li svg {
    width: auto;
    margin-right: 8px;
    fill: var(--primary);
}

.capa-acco-pro ul li i {
    color: var(--primary);
    font-size: 13px;
    margin-right: 8px;
}

.capa-acco-pro:hover {
    background: var(--secondary);
}

.capa-acco-pro:hover h4 {
    color: var(--primary);
}


/*cus-win*/
.cus-slide-right {
    position: relative;
}

.cus-slide-icon {
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 140px;
    position: absolute;
    left: -30px;
    top: -30px;
}

.cus-slide-icon span {
    display: inline-block;
    padding: 30px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 10px 40px 0px rgba(11, 18, 27, 0.10);
}

.cus-slide-left {
    padding-right: 30px;
}

.cus-slide-right {
    padding-left: 30px;
}

.cus-win-slider {
    position: relative;
}

.cus-win-slider .slick-dots {
    display: inline-block;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 0);
}

.cus-win-slider .slick-arrow {
    display: none !important;
}

.cus-win-slider .slick-dots li:before {
    display: none;
}

.cus-win-slider .slick-dots li button {
    font-size: 0;
    width: 25px;
    height: 30px;
    background: transparent;
    border: none;
    position: relative;
}

.cus-win-slider .slick-dots li:first-child button:before {
    position: absolute;
    content: "\f13c";
    font-family: "uicons-regular-rounded";
    font-size: 25px;
    font-weight: 600;
    color: var(--secondary);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.cus-win-slider .slick-dots li:last-child button:before {
    position: absolute;
    content: "\f131";
    font-weight: 600;
    font-family: "uicons-regular-rounded";
    font-size: 25px;
    color: var(--secondary);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.cus-win-slider .slick-dots li.slick-active button:before {
    color: var(--primary);
}

/*why*/
.why {
    background: var(--dark2);
}

.why-l .circleOne {
    left: inherit;
    right: 14px;
}

.why-r ul li {
    color: var(--white);
    position: relative;
    padding-left: 25px;
    padding-bottom: 10px;
}

.why-r ul li:after {
    position: absolute;
    content: "\f2ac";
    margin-right: 8px;
    top: 2px;
    left: 0;
    font-family: "uicons-regular-rounded";
    color: var(--secondary);
    font-size: 20px;
}

.why-r ul li:before {
    display: none;
}

.why-l .abmain img {
    width: auto;
}

.why-l {
    position: relative;
    z-index: 1;
}

/*.why-l .abmain:after {*/
/*    position: absolute;*/
/*    top: 54%;*/
/*    right: 39px;*/
/*    width: 314px;*/
/*    height: 478px;*/
/*    background: var(--dark);*/
/*    content: "";*/
/*    transform: translateY(-50%);*/
/*    z-index: -1;*/
/*    clip-path: polygon(0 0, 100% 24%, 100% 100%, 1% 74%);*/
/*}*/

.why-l .circleThree.sec {
    left: inherit;
    right: 0;
    animation: circleThreesec 5s infinite;
}

@keyframes circleThreesec {
    0% {
        right: 40%;
    }

    50% {
        right: 38%;
    }

    100% {
        right: 40%;
    }
}

.why-r .cmnbtn,
.h-about-cont .cmnbtn {
    margin-top: 20px;
}


/*****testi-sec*****/
.testi-sec {
    background-image: url(../images/resource/testi-bg.png);
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: cover;
}

.testi-slider .item {
    padding: 30px 25px;
    background: var(--white);
    position: relative;
    box-shadow: 0px 10px 40px 0px rgba(11, 18, 27, 0);
    transition: 0.5s;
    margin: 50px 0;
}

.testi-slider .item ul {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    column-gap: 7px;
}

.testi-slider .item ul li {
    color: var(--primary);

}

.testi-slider .item ul li:before {
    display: none;
}

.testi-slider .item:after {
    position: absolute;
    top: -11px;
    left: 50%;
    content: "";
    transform: translateX(-50%);
    width: 76%;
    height: 330px;
    background: var(--secondary);
    z-index: -1;
}

.testi-slider .item:before {
    position: absolute;
    content: "\f10e";
    right: 47px;
    top: -29px;
    width: 60px;
    height: 60px;
    color: var(--white);
    font-family: fontAwesome;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
}

.testi-slider .item:hover {
    box-shadow: 0px 10px 40px 0px rgba(11, 18, 27, 0.10);
}

.testi-slider .item p {
    font-family: var(--font2);
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    color: var(--dark);
    margin-bottom: 24px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    /* number of lines to show */
    line-clamp: 6;
    -webkit-box-orient: vertical;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.testi-img {
    width: auto;
}

.testi-slider .testi-con p {
    font-family: var(--font2);
    font-size: 18px;
    font-weight: 600;
    line-height: 20px;
    color: var(--primary);
    margin-bottom: 5px;
}

.testi-con h3 {
    color: #1E1E1E;
    font-size: 20px;
    margin-bottom: 0;
}

.testi-con span {
    color: #616161;
    font-size: 16px;
    font-weight: 400;
    display: inline-block;
    position: relative;
    padding-left: 40px;
}

.testi-con span:after {
    position: absolute;
    top: 50%;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
    content: "";
    transform: translateY(-50%);
}

.testi-slider .owl-dots {
    display: block !important;
    text-align: center;
}

.testi-slider button.owl-dot {
    width: 8px;
    height: 8px;
    background: var(--white);
    margin: 0 5px;
}

.testi-slider button.owl-dot.active {
    background: var(--secondary);
    width: 30px;
    height: 8px;
}

.certifcates img {
    width: auto !important;
}

.certifcates .owl-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

/**contact poage**/
.innerbanner {
    position: relative;
}

.innerbanner img {
    width: 100%;
}

.innerbannercontent {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.innerbannercontent h2 {
    text-transform: capitalize;
    color: #fff;
    text-align: center;
    font-size: 64px;
    line-height: 90px;

}

.breadcrumb {
    position: absolute;
    bottom: -11px;
    margin: 0;
    width: 100%;
    left: 0;
    border-bottom: 10px solid #fff;
}

.breadcrumb:before {
    position: absolute;
    width: 40%;
    height: 100%;
    background: var(--white);
    content: "";
    left: 0;
    top: 0;
    clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
}

.contact-sec1 {
    background: none;
}

.breadcrumb>div {
    position: relative;
    z-index: 1;
}

.breadcrumb ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    padding: 20px 0 10px;
}

.breadcrumb li:before {
    display: none;
}

.breadcrumb li:after {
    position: relative;
    content: "/";
    color: var(--dark);
    display: inline-flex;
    align-items: center;
    margin: 0 4px;
}

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

.breadcrumb li a {
    color: #000;
}

.breadcrumb li.active a {
    color: var(--primary);
}


.roi-con .roi-nav {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.roi-nav .nav {
    width: 30%;
}

.roi-nav .tab-content {
    width: 65%;
}

.roi-nav-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px;
    position: relative;
}

.roi-nav-head:before {
    position: absolute;
    z-index: 1;
    content: "";
    width: 2%;
    height: 100%;
    background: var(--primary);
    left: 0;
    top: 0;
    transition: 0.5s;
}

.roi-nav-icon {
    width: 15%;
    position: relative;
    z-index: 11;
}

.roi-nav-icon:before {
    position: absolute;
    content: "";
    background: url(../images/icons/roi-icon.svg) no-repeat 0 0;
    background-size: cover;
    opacity: 0;
    transition: 0.5s;
    width: 100%;
    height: 100%;
    transition: 0.5s;
}

.roi-nav-icon img {
    opacity: 1;
    transition: 0.5s;
}

.roi-nav .nav-pills .nav-link {
    background: #F1F1F1;
    padding: 0;
    border-radius: 0;
}

.roi-nav-head h4 {
    font-family: var(--font2);
    font-size: 20px;
    color: var(--grey);
    font-weight: 600;
    line-height: 30px;
    text-transform: capitalize;
    text-align: left;
    width: 75%;
    margin: 0;
    position: relative;
    z-index: 11;
    transition: 0.5s;
}

.roi-nav .nav {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.roi-nav .nav-pills .nav-link.active .roi-nav-head:before,
.roi-nav .nav-pills .show>.nav-link .roi-nav-head:before {
    width: 100%;
}

.roi-nav .nav-pills .nav-link.active .roi-nav-icon img,
.roi-nav .nav-pills .show>.nav-link .roi-nav-icon img {
    opacity: 0;
}

.roi-nav .nav-pills .nav-link.active .roi-nav-icon:before,
.roi-nav .nav-pills .show>.nav-link .roi-nav-icon:before {
    opacity: 1;
}

.roi-nav .nav-pills .nav-link.active .roi-nav-head h4,
.roi-nav .nav-pills .show>.nav-link .roi-nav-head h4 {
    color: var(--white);
}

.roi-nav .tab-pane h3 {
    margin: 20px 0;
    font-family: var(--font2);
    font-size: 42px;
    color: var(--grey);
    font-weight: 700;
    line-height: 56px;
}

.roi-nav .tab-pane ul li:before {
    display: none;
}

.roi-nav .tab-pane ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}

.roi-nav .tab-pane ul li img {
    width: auto;
}


.product-sec {
    background: url(../images/resource/product-bg.png) no-repeat 0 0;
    background-size: cover;
}

.product-sec .tophd p {
    font-family: var(--font2);
    font-size: 18px;
    color: var(--white);
    font-weight: 400;
    line-height: 30px;
    margin-top: 20px;
}


.improve-sec .spanimg {
    bottom: auto;
    right: auto;
    top: 60px;
    left: 90px;
}

.improve-sec .about1img {
    right: 40px;
}

.improve-sec .about2img {
    left: 0;
}

.improve-sec .spanimg {
    bottom: auto;
    right: auto;
    top: 70px;
    left: 60px;
}

.improve-sec .about2img:before {
    width: 60%;
    height: 45%;
}

.improve-sec .up-i {
    background: var(--primary);
    top: auto;
    left: auto;
    right: 5px;
    bottom: -50px;
}


.guid-up {
    background: url(../images/resource/guid-bg.png) no-repeat 0 0;
    background-size: cover;
    padding: 0;
}

.guid-head {
    padding: 100px 60px 200px 120px;
    background: var(--secondary);
}

.guid-head h2.title {
    padding: 0;
    position: relative;
}

.guid-head h2.title:before {
    position: absolute;
    content: "";
    left: -60px;
    top: 20px;
    background: var(--primary);
    width: 40px;
    height: 3px;
}

.guid-head .sec-para {
    color: var(--white);
}

.guid-dwn {
    padding-top: 0;
    margin-top: -63px;
}

.guid-dwn .nav-tabs .nav-link {
    background: var(--secondary);
    padding: 21px 30px;
    border: 1px solid var(--white);
    color: var(--white);
    border-radius: 0;
    font-family: var(--font2);
    font-size: 18px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0.27px;
    text-transform: capitalize;
    transition: 0.5s;
}

.guid-dwn .nav-tabs {
    border: none;
    gap: 20px;
}

.guid-dwn .nav-tabs .nav-item.show .nav-link,
.guid-dwn .nav-tabs .nav-link.active {
    background: var(--white);
    color: var(--secondary);
}

.guid-dwn .tab-pane {
    padding: 50px 38px;
    background: var(--white);
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.10);
}

.guid-img {
    padding: 20px 20px 0 0;
    position: relative;
}

.guid-icon {
    position: absolute;
    padding: 16px;
    background: var(--secondary);
    right: 0;
    top: 0;
}

.guid-con-left {
    font-family: var(--font2);
    font-size: 18px;
    color: var(--dark);
    font-weight: 400;
    line-height: 30px;
    margin: 0;
    padding-left: 30px;
}

.guid-con ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.guid-con ul li {
    position: relative;
    padding-left: 48px;
    font-family: var(--font2);
    font-size: 16px;
    color: var(--secondary);
    font-weight: 400;
    line-height: 20px;
    margin: 0;
}

.guid-con ul li:before {
    position: absolute;
    content: "";
    width: 40px;
    height: 13px;
    background: url(../images/icons/guid-icon1.svg) no-repeat 0 0;
    background-size: cover;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
}

.guid-dwn .tab-pane .row {
    align-items: flex-start;
}


.health-sec {
    background: url(../images/resource/health-bg.png) no-repeat 0 0;
    background-size: cover;
}

.hlth-right ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    row-gap: 20px;
    flex-wrap: wrap;
}

.hlth-right ul li {
    width: 50%;
    font-family: var(--font2);
    font-size: 16px;
    color: var(--grey);
    font-weight: 400;
    line-height: 20px;
}

.hlth-right ul li:before {
    width: 40px;
    height: 13px;
    background: url(../images/icons/guid-icon1.svg) no-repeat 0 0;
    background-size: cover;
}


.worksp-body {
    margin-top: 50px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
}

.wrk-part {
    border-radius: 6px;
    border: 1px solid #F1F1F1;
    transition: 0.5s;
    background: var(--white);
    text-align: center;
    padding: 20px 50px;
}

.wrk-part:hover {
    background: var(--primary);
    border: 1px solid var(--primary);
}

.wrk-icon {
    display: inline-block;
    position: relative;
}

.wrk-icon img {
    width: auto;
    opacity: 1;
    transition: 0.5s;
}

.wrk-part:hover .wrk-icon img {
    opacity: 0;
}

.wrk-icon:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: url(../images/icons/wrk-icon-wh.png) no-repeat 0 0;
    background-size: cover;
    opacity: 0;
    transition: 0.5s;
}

.wrk-part:hover .wrk-icon:before {
    opacity: 1;
}

.wrk-part h5 {
    text-align: center;
    margin: 20px 0 0 0;
    font-family: Lato;
    font-size: 18px;
    color: var(--grey);
    font-weight: 600;
    line-height: 30px;
    transition: 0.5s;
}

.wrk-part:hover h5 {
    color: var(--white);
}


.enter-page {
    border-top: none;
}

.roi-head {
    margin-bottom: 30px;
}


.blog-left {
    overflow: hidden;
}

.bl-top img {
    width: auto;
}

.bl-top {
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.bl-top span {
    color: var(--secondary);
}

.bl-top figure {
    margin-bottom: 5px;
}

.blog-left h3 a {
    font-size: 24px;
    font-weight: 500;
    color: var(--white);
}

span.blbtm {
    margin-left: -104px;
    transition: 0.4s;
}

.blog-left:hover .blbtm {
    margin-left: 0;
    transition: 0.4s;
    color: var(--secondary);
}

.blog-left:hover .blbtm a {
    transition: 0.4s;
    color: var(--secondary);
}

span.blbtm a i {
    font-size: 14px;
    color: var(--secondary);
    padding-left: 10px;
}

.blog-left p {
    font-size: 16px;
    line-height: 28px;
    color: #fff;
    font-family: var(--body-font);
}

.blog-main .row:nth-child(even) {
    flex-direction: row-reverse;
}

.blog.inner .bl-top {
    margin-bottom: 22px;
}

/*.blog-main:last-child {
     padding-bottom: 0;
}*/
.blog-main .row {
    align-items: center;
    margin-bottom: 25px;
}

.innerbl-right form {
    position: relative;
}

.innerbl-right form input {
    padding: 10px 16px;
    width: 100%;
    outline: none;
    border: 1px solid #5a5a5a;
    background: none;
    color: var(--white);
}

.innerbl-right form ::placeholder {
    color: #535353;
}

.innerbl-right form button {
    position: absolute;
    right: 0;
    border: 0;
    padding: 0 22px;
    font-size: 18px;
    color: #fff;
    background: var(--primary);
    height: 100%;
    border: 1px solid var(--primary);
}

.next-post {
    margin-top: 37px;
    margin-bottom: 80px;
}

.next-post h3 {
    position: relative;
    font-weight: 600;
    font-size: 24px;
    line-height: 34px;
    text-transform: capitalize;
    color: var(--white);
    margin-bottom: 28px;
}

.next-post h3 hr {
    margin-top: 5px;
    height: 3px !important;
    background: var(--secondary);
    width: 52px;
    opacity: 1;
}

.next-postcnt {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 25px;
    border-bottom: 1px solid #7B7B7B;
    padding-bottom: 15px;
}

.next-postcnt:hover a {
    color: var(--secondary);
}

.next-postcnt a {
    font-weight: 600;
    font-size: 16px;
    text-transform: capitalize;
    color: #fff;
    font-family: var(--heading-font);
}

.shedule p i {
    padding-right: 12px;
}

.shedule p {
    font-size: 14px;
    color: var(--secondary);
    margin-bottom: 0;
    font-weight: 500;
}

.next-post .ctgry li {
    border-bottom: 1px solid #E9EDF0;
    padding: 17px 0;
    position: relative;
    padding-left: 31px;
}

.next-post .ctgry li:after {
    position: absolute;
    content: "\f054";
    top: 18px;
    left: 0;
    font-size: 16px;
    font-weight: bold;
    font-family: 'Font Awesome 5 Free';
    color: #4720B7;
}

.next-post .ctgry li:before {
    position: absolute;
    content: "\f054";
    top: 18px;
    left: 6px;
    font-size: 16px;
    font-weight: bold;
    font-family: 'Font Awesome 5 Free';
    color: #4720B7;
}

.next-post .ctgry li a {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #565872;
}

ul.ptags {
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
}

ul.ptags li a {
    background: none;
    padding: 3px 18px;
    display: inline-block;
    margin-bottom: 13px;
    margin-right: 15px;
    color: #fff;
    font-size: 14px;
    border-radius: 0;
    font-weight: 500;
    border: 1px solid #7B7B7B;
}

ul.ptags li a.active {
    background: var(--secondary);
    color: #fff;
    transition: 0.6s;
    border: 1px solid var(--secondary);
}

ul.ptags li a:hover {
    background: var(--secondary);
    color: #fff;
    transition: 0.6s;
    border: 1px solid var(--secondary);
}

ul.arch {
    padding-left: 0;
}

ul.arch li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 9px;
    font-size: 16px;
    border-bottom: 1px solid #EFEDFE;
    padding: 10px 0;
    color: var(--white);
    font-weight: 500;
    list-style-type: none;
}

ul.arch li a {
    color: var(--white);
}

ul.inner-pagi {
    display: flex;
    align-items: center;
    margin-top: 50px;
    column-gap: 14px;
    justify-content: center;
}

ul.inner-pagi li,
ul.ptags li {
    list-style-type: none;
}

ul.inner-pagi li a {
    width: 45px;
    height: 45px;
    border: 1px solid var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9px;
    color: var(--secondary);
}

ul.inner-pagi li a.active {
    background: var(--secondary);
    color: #fff;
    border: 1px solid var(--secondary);
    transition: 0.6s;
}

ul.inner-pagi li a:hover {
    background: var(--secondary);
    color: #fff;
    border: 1px solid var(--secondary);
    transition: 0.6s;
    ;
}

.innerblog-mdl ul li {
    list-style-type: disc;
    font-size: 17px;
    margin-left: 15px;
}

.casestudy .nav {
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    justify-content: center;
    margin-bottom: 31px;
    column-gap: 12px;
}

.casestudy .nav-link {
    padding: 4px 20px;
    border: 1px solid #F1F1F1 !important;
    color: #000;
}

.case-study-single {
    position: relative;
}

.case-study-single .image img {
    width: 100%;
    filter: grayscale(100%);
}

.case-study-single .image {
    z-index: 1;
}

.case-study-content {
    position: absolute;
    width: 100%;
    padding: 0 15px;
    bottom: 100px;
    z-index: 4;
    transition: all .5s ease-in-out 0s;
    transform: translate(-100%, 0);
}

.case-study-single:hover .case-study-content {
    transform: translate(0, 0);
}

.case-study-content h3,
.case-study-content p {
    color: #fff;
    text-transform: capitalize;
}

.case-study-content h3 {
    font-size: 30px;
    line-height: 40px;

}

.case-study-content h3 a {
    color: var(--white);
}

.case-study-content p {
    font-size: 20px;
    line-height: 30px;
    margin: 0;
}


.arrow-circle-btn-one {
    width: 60px;
    height: 60px;
    color: var(--primaryRed);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    border-radius: 50%;

}

.case-study-single .arrow-circle-btn-one {
    position: absolute;
    bottom: 20px;
    left: 30px;
    z-index: 4;
    background: transparent;
}

.case-study-single .arrow-circle-btn-one img {
    filter: brightness(0) invert(1);
    transition: all .5s ease-in-out 0s;
}

.case-study-single:hover .arrow-circle-btn-one {
    background: #fff;
    left: 85%;
}

.case-study-single:hover .arrow-circle-btn-one img {
    filter: brightness(1) invert(1) hue-rotate(0);
}

.case-study-single {
    overflow: hidden;
    margin-bottom: 24px;
}

.case-study-single:before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: var(--primary);
    top: 68%;
    left: -17%;
    z-index: 2;
    transition: all .5s ease-in-out 0s;

}

.case-study-single:hover:before {
    width: 900px;
    height: 900px;
    top: 17%;
    left: -44%;
}

.case-study-single:after {
    content: "";
    position: absolute;
    width: 272px;
    height: 272px;
    border-radius: 50%;
    border: 2px solid #fff;
    top: 63%;
    left: -13%;
    z-index: 3;
    transition: all .5s ease-in-out 0s;
}


.case-study-single:hover:after {
    width: 652px;
    height: 652px;
    top: 13%;
    left: -13%;
}

.case-study-slider .slick-slide {
    margin: 0 15px;
}

.case-study-slider .slick-arrow {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: none;
    outline: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    filter: grayscale(100%);
    opacity: .1;
    transition: all .5s ease-in-out 0s;

}

.case-study-slider .slick-arrow:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.case-study-slider .slick-arrow:before {
    position: absolute;
    content: "";
    border: 2px solid var(--primaryRed);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 50%;
    border-top-color: transparent;
    border-left-color: transparent;

}

.case-study-slider .slick-prev {
    left: -55px;

}

.case-study-slider .slick-prev:before {
    transform: rotate(135deg);
}

.case-study-slider .slick-next {
    right: -55px;


}

.case-study-slider .slick-next:before {
    transform: rotate(-45deg);
}

ul.case-list li:after {
    content: "\f058 ";
    position: absolute;
    top: 0;
    left: 0;
    font-family: 'FontAwesome';
    color: var(--primary);
}

ul.case-list {
    margin-top: 35px;
}

ul.case-list li {
    position: relative;
    padding-left: 30px;
    padding-bottom: 25px;
}

.csinner-main {
    display: flex;
    column-gap: 30px;
    margin: 55px 0 0;
}

.csinner-boxdt {
    width: 50%;
    flex: 0 0 auto;
}

.csinner-boxdt h4 {
    font-size: 21px;
    font-weight: 500;
    position: relative;
    margin-bottom: 25px;
    padding-left: 60px;
}

.csinner-boxdt h4:after {
    position: absolute;
    top: 7px;
    left: 0;
    width: 47px;
    height: 2px;
    background: var(--primary);
    content: "";
}

section.casestudy h2.title {
    font-size: 42px;
}

.case-relate {
    background: var(--secondary);
}

.casestudy ul li:before {
    display: none;
}

.inner .breadcrumb:before {
    width: 50%;
}

.blog-left ul li:before {
    display: none;
}

.arch li:before,
.ptags li:before {
    display: none;
}

.inner-pagi li:before {
    display: none;
}

.innerblog-mdl ul li:before {
    display: none;
}





.cursor {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    border: 1px solid black;
    transition: all 200ms ease-out;
    position: fixed;
    pointer-events: none;
    left: 0;
    top: 0;
    transform: translate(calc(-50% + 15px), -50%);
    z-index: 123;
    mix-blend-mode: difference;
}

.cursor.hover {
    background-color: white;
}


.pagination,
.inner-pagi li {
    display: flex;
    align-items: center;
    margin-top: 0;
    column-gap: 14px;
    justify-content: center;
}

.page-numbers {
    display: inline-block;
}

.page-numbers {
    height: 45px !important;
    border: 1px solid var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9px;
    color: var(--secondary);
    padding: 0 15px !important;
    width: auto !important;
}

.page-numbers.current,
.page-numbers:hover {
    background: var(--secondary);
    color: #fff;
    border: 1px solid var(--secondary);
    transition: 0.6s;
}

.innerbl-right form.is-form-style label {
    width: calc(100% - 60px) !important;
}

.innerbl-right form.is-form-style input.is-search-input {
    padding: 10px 16px !important;
    width: 100% !important;
    outline: none !important;
    border: 1px solid #5a5a5a !important;
    background: none !important;
    color: var(--white) !important;
    height: 50px !important;
    font-size: 18px !important;
}

.is-form-style button.is-search-submit {
    width: auto !important;
    height: auto !important;
}

button.is-search-submit .is-search-icon {
    width: 65px !important;
    height: 50px !important;
    background: var(--primary) !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    border: none !important;
    outline: none !important;
}

.is-form-style .is-search-submit path {
    fill: #fff !important;
}

.wpcf7-response-output {
    color: #fff;
    margin-bottom: 0 !important;
    margin-top: 0 !important;
}

.wpcf7-spinner {
    display: none !important;
}


.specialwhatwedo {
    height: 600px;
}

.inner-history {
    display: none;
}


.privacy_section {
    color: #fff;
}

.privacy_section h1 {
    font-size: 40px;
}

.privacy_section h2 {
    font-size: 30px;
}

.privacy_section h3 {
    font-size: 25px;
}

.privacy_section h4 {
    font-size: 20px;
}

.privacy_section h5 {
    font-size: 18px;
}

.privacy_section h6 {
    font-size: 16px;
}

.privacy_section h1,
.privacy_section h2,
.privacy_section h3,
.privacy_section h4,
.privacy_section h5,
.privacy_section h6,
.privacy_section a {
    color: var(--secondary);
}

.privacy_section a {
    text-decoration: underline;
}

.spclimg img {
    max-width: 80%;
}

.certi-main .certifcates .owl-dots,
.certi-main .certifcates .owl-nav {
    display: none;
}


.careermodal .modal-header {
    background: #864344;
}

.careermodal .modal-header h5.modal-title {
    color: #fff;
}

.careermodal label {
    display: block;
    color: #000;
}

.careermodal br {
    display: none;
}

.careermodal input {
    border-radius: 5px;
    box-shadow: none;
    border: 1px solid #333;
    padding: 5px 10px;
    width: 100%;

}

.careermodal .wpcf7-response-output {
    color: #1e5e17;
}

.careermodal .modal-header .btn-close {
    filter: invert(1);
    opacity: 1;
}

.careermodal input[type="submit"] {
    border: none;
    background: #864344;
    color: #fff;
    padding: 10px 25px;
    width: auto;
}

/* new */
.banner-items .social-banner {
    display: none;
}

.teamcontent h4,
.teamcontent ul {
    display: none;
}

.teamimg_bottom {
    display: none;
}

.testi-slider .item {
    min-height: 328px;
}

div.is-ajax-search-result {
    width: calc(21% + 6px) !important;
}

.foot-up-inner .footbut .wpcf7-form.invalid .wpcf7-response-output {
    display: none;
}

/*responsive*/
@media (max-width: 1399px) {
    div.is-ajax-search-result {
        width: calc(28% + 10px) !important;
    }
}

@media (max-width: 1200px) {
    .teamimg_bottom .name {
        font-size: 35px;
        line-height: 40px;
    }

    .teamimg_bottom .social li {
        margin-right: 5px;
    }
}

@media(max-width: 1199px) {
    div.is-ajax-search-result {
        width: calc(27% + 10px) !important;
    }
}

@media (max-width: 991px) {
    .team_section .row {
        flex-direction: column;
    }

    .job_detailsLeft {
        margin: 0 0 40px;
    }

    .career-con-list-detail {
        padding-top: 50px;
        padding-left: 0;
    }


    .mobilemenu ul {
        width: 300px;
        overflow: auto;
        height: 100%;
    }

    .menulist li.menu-item-has-children {
        margin-right: 0;
    }

    .menulist>li.menu-item-has-children>a {
        position: relative;
        display: block;
    }

    .menulist>li.menu-item-has-children>a:after {
        position: absolute;
        right: 10px;
        top: 10px;
        border-color: #fff;
        border-style: solid;
        border-width: 2px 2px 0 0;
        content: "";
        left: auto;
        width: 0;
        height: 0;
        padding: 4px;
        transform: rotate(135deg);
    }

    .menulist li .sub-menu {
        width: 100%;
        left: 0;
        position: relative;
        transform: rotate(0deg);
        opacity: 1;
        display: none;
        visibility: visible;
        min-width: inherit;
    }

    .menulist li .sub-menu.active {
        display: block;
    }

    .menu-item-has-children .sub-menu li {
        padding: 10px 0;
        margin: 0;
        border-bottom: 1px solid var(--dark);
    }

    .menu-item-has-children .sub-menu li:after {
        display: none;
    }

    .menu-item-has-children .sub-menu li a {
        padding: 0;
    }

    .inner-contact .row>div {
        margin: 0 0 15px;
    }

    .blog .row>div {
        margin: 0 0 20px;
    }

    div.is-ajax-search-result {
        width: calc(88% + 10px) !important;
    }
}

@media (max-width: 767px) {
    .btn-list-new {
        display: grid;
        grid-template-columns: repeat(1, 50%);
    }

    .teamcontent h4 {
        font-size: 20px;
        line-height: 24px;
    }

    .team_section {
        font-size: 16px;
        line-height: 26px;
    }

    .teamcontent h3.teamtile {
        font-size: 30px;
        line-height: 38px;
    }

    .teamimg_bottom .social li a {
        width: 30px;
        height: 30px;
    }

    .job_details_section {
        font-size: 16px;
        line-height: 25px;
    }

    .job_detailsLeft h2 {
        font-size: 30px;
        line-height: 35px;
    }

    .job_detailsLeft h3 {
        font-size: 20px;
        line-height: 24px;
        margin: 0 0 15px;
    }

    div.is-ajax-search-result {
        width: calc(93% + 6px) !important;
    }


}

@media(max-width: 574px) {
    div.is-ajax-search-result {
        width: calc(91% + 9px) !important;
        left: 12px !important;
    }
}

@media(max-width: 479px) {
    div.is-ajax-search-result {
        width: calc(91% + 4px) !important;
        left: 12px !important;
    }
}

@media(max-width: 424px) {
    div.is-ajax-search-result {
        width: calc(91% + 0px) !important;
        left: 12px !important;
    }
}

@media(max-width: 374px) {
    .career-con-search input {
        width: 295px;
    }

    div.is-ajax-search-result {
        width: calc(89% + 1px) !important;
        left: 12px !important;
    }
}