/*----===========PRELOADER AREA CSS----============*/
#pre-load {
    background: #1D2940;
    bottom: 0;
    height: 100%;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 9999;
}

.text-justify {
    text-align: justify;
}

#pre-load.loader2 {
    background: #1A237E;
}

#pre-load.loader3 {
    background: #0B111F;
}

#pre-load.loader4 {
    background: #044E7C;
}

#pre-load.loader5 {
    background: #071018;
}

#pre-load.loader6 {
    background: #35AC39;
}

#pre-load.loader6 .loader .loader-container:before {
    display: none;
}

#pre-load.loader7 {
    background: #EB7C3A;
}

#pre-load.loader8 {
    background: #196C68;
}

#pre-load.loader9 {
    background: #1DAF68;
}

#pre-load.loader10 {
    background: #86B03C;
}

#pre-load.loader11 {
    background: #22BFCA;
}

#pre-load.loader12 {
    background: #49357F;
}

#pre-load.loader9 .loader .loader-container:before {
    display: none;
}

#pre-load.loader7 .loader .loader-container:before {
    display: none;
}

.loader .loader-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border: 3px solid #fff;
    border-radius: 50%;
}

.loader .loader-container:before {
    position: absolute;
    content: "";
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    /* border-top: 3px solid #044E7C; */
    border-radius: 50%;
    animation: loaderspin 1.8s infinite ease-in-out;
    -webkit-animation: loaderspin 1.8s infinite ease-in-out;
}

.loader .loader-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    text-align: center;
}

.loader .loader-icon img {
    animation: loaderpulse alternate 900ms infinite;
    width: 40px;
}

@keyframes loaderspin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@-webkit-keyframes loaderspin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes loaderpulse {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.2);
    }
}

.progress-wrap {
    position: fixed;
    right: 30px;
    bottom: 30px;
    height: 56px;
    width: 56px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.progress-wrap::after {
    position: absolute;
    font-family: "FontAwesome";
    content: "\f062";
    text-align: center;
    line-height: 56px;
    font-size: 18px;
    /* color: #1A237E; */
    left: 0;
    top: 0;
    height: 56px;
    width: 56px;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap:hover::after {
    opacity: 0;
}

.progress-wrap::before {
    position: absolute;
    font-family: "FontAwesome";
    content: "\f062";
    text-align: center;
    line-height: 56px;
    font-size: 18px;
    opacity: 0;
    left: 0;
    top: 0;
    height: 56px;
    width: 56px;
    cursor: pointer;
    display: block;
    z-index: 2;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap:hover::before {
    opacity: 1;
}

.progress-wrap svg path {
    fill: none;
}

.progress-wrap svg.progress-circle path {
    /* stroke: #1A237E; */
    stroke-width: 4;
    box-sizing: border-box;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap svg.progress-circle path:hover {
    color: #fff;
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

input::placeholder {
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #575E63;
}

/*----===========PRELOADER AREA CSS----============*/

/*----===========HEADER AREA CSS----============*/
.header-elements {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header.header-sticky.sticky {
    padding: 20px 0;
}

.quick_contact {
    position: relative;
    z-index: 2;
    padding-left: 60px;
    align-items: center;
    display: flex;
}

.mobile-sidebar {
    max-height: 100%;
    overflow-y: scroll;
}

.main-menu-ex.homepage5 ul li a:hover {
    color: #000;
}

.quick_contact_icon {
    position: absolute;
    top: 50%;
    left: 0;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    background: #fee6e5;
    border-radius: 50px;
    margin-top: -25px;
}

.main-menu-ex.homepage5.mainmenuex ul li ul li a:hover {
    background: #1A237E;
}

.quick_contact_content small {
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    color: #161540;
    opacity: 0.7;
}

.quick_contact_content h5 {
    font-weight: 500;
    font-size: 20px;
    line-height: 20px;
    color: #161540;
}

.main-menu-ex.homepage5.homepage9 ul li ul li a:hover {
    background: #1DAF68;
}

.split-line {
    overflow: hidden;
}

.hero-img-elements {
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: end;
    margin-right: -100px;
}

.mobile-nav-icon.dots-menu {
    color: #000;
}

.mobilemenubtn {
    border: 1px solid #FFF;
    padding: 18px 24px;
    display: inline-block;
    margin-bottom: 24px;
    width: 100%;
    text-align: center;
    border-radius: 5px;
    transition: all .4s ease-in-out;
}

.contact-info-single {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-info-icon {
    margin: 0 8px 0 0;
}

.social.social4-menu.social4 ul li {
    display: inline-block;
}

.social.social4-menu.social4 ul li a {
    height: 40px;
    width: 40px;
    display: inline-block;
    border: 1px solid #FFF;
    text-align: center;
    line-height: 21px;
    border-radius: 50%;
    margin: 0 8px 0 0;
    transition: all .4s ease-in-out;
}

.social.social4-menu.social4 ul li a:hover {
    background: #fff;
    color: #000;
    transition: all .4s ease-in-out;
}

.mobilemenubtn:hover {
    background: #FFF;
    color: #000;
    transition: all .4s ease-in-out;
}

.stellarnav ul ul {
    width: 160px;
    border-radius: 5px;
    padding: 10px 0;
}

ul.theme-mega-menu li.mega-menu {
    width: 1000px;
}

.stellarnav ul ul li a {
    padding: 10px 30px;
}

.stellarnav ul ul li a:hover {
    color: #fca311;
    margin-left: 5px;
}

.cta-btn.d-none.d-lg-block.btn-after.button.action-btn.home1-header-btn a svg {
    margin-right: 4px;
}

.main-menu-ex.homepage4.homepage7 ul li ul li a:hover {
    background: #EB7C3A;
    transition: all .4s ease-in-out;
}

.main-menu-ex li {
    display: inline-block;
}

.site-logo img {
    max-width: 119px !important;
}

.main-menu-ex li a {
    color: #000;
    font-size: 13px;
    display: block;
    font-weight: 600;
    padding: 30px 6px;
    font-family: 'Nunito', sans-serif;
}

.main-menu-ex li {
    position: relative;
    z-index: 9;
}

.main-menu-ex.homepage7 ul li a {
    color: #fff;
}

.main-menu-ex.homepage7 ul li ul li a {
    color: #0F0A07;
    transition: all .4s ease-in-out;
}

.main-menu-ex.homepage7 ul li ul li a:hover {
    background: #EB7C3A;
    color: #fff;
    transition: all .4s ease-in-out;
    width: 100%;
}

.main-menu-ex.homepage7 ul li ul li ul {
    margin-left: 230px;
    margin-top: -40px;
}

.main-menu-ex.homepage7 ul li ul li ul {
    width: 235px;
}

.main-menu-ex.homepage7 ul li a {
    color: #fff;
}

.main-menu-ex.homepage7 ul li ul li a {
    color: #0F0A07;
    transition: all .4s ease-in-out;
}

.main-menu-ex.homepage4.main-menu-ex7 ul li ul li a {
    display: flex;
    justify-content: space-between;
}

.main-menu-ex.homepage7 ul li ul li a {
    display: flex;
    justify-content: space-between;
}

.main-menu-ex.homepage7 ul li ul li a:hover {
    background: #EB7C3A;
    color: #fff;
    transition: all .4s ease-in-out;
    width: 100%;
}

.main-menu-ex li ul {
    position: absolute;
    left: 0;
    top: 50px;
    background: #fff;
    border-radius: 4px;
    box-shadow: rgb(0 0 0 / 20%) 0px 20px 30px;
    padding: 10px;
}

.main-menu-ex .width-md {
    width: 200px;
}

.main-menu-ex .width-xl {
    width: 260px;
}

.main-menu-ex li li {
    display: block;
}

.main-menu-ex li li a {
    padding: 10px 20px;
    color: #0e1124;
    font-weight: 500;
    transition: all.4s;
    border-radius: 4px;
    position: relative;
}

.main-menu-ex li li a:hover {
    color: #fff;
    transition: all.4s;
}

.main-menu-ex li li a::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotateX(60deg);
    color: #fff;
    border-radius: 4px;
    transition: all.4s;
    z-index: -1;
}

.main-menu-ex li li a:hover::after {
    transform: rotateX(0deg);
    background-color: #d4aeff;
    border-radius: 4px;
}

.main-menu-ex li li a .main-menu-ex li li a:hover {
    background-color: #00bf71;
    transform: rotateX(0deg);
    border-radius: 4px;
}

.main-menu-ex li>ul {
    opacity: 0;
    visibility: hidden;
    top: 60px;
    transition: all 0.3s;
    transform: rotateX(60deg);
    width: 200px;
}

.main-menu-ex li:hover>ul {
    visibility: visible;
    opacity: 1;
    top: 50px;
    transition: all 0.3s;
    z-index: 99;
    transform: rotateX(0deg);
    box-shadow: rgb(0 0 0 / 20%) 0px 20px 30px;
}

.main-menu-ex.home4-menu li li a {
    padding: 10px 20px;
    color: #0e1124;
    font-weight: 500;
    transition: all.4s;
    border-radius: 4px;
    position: relative;
}

.main-menu-ex.home4-menu li li a:hover {
    color: #fff;
    transition: all.4s;
}

.main-menu-ex.home4-menu li li a::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotateX(60deg);
    color: #fff;
    border-radius: 4px;
    transition: all.4s;
    z-index: -1;
}

.main-menu-ex.home4-menu li li a:hover::after {
    transform: rotateX(0deg);
    background-color: #ff3e55;
    border-radius: 4px;
}

.main-menu-ex.home2-menu li li a {
    padding: 10px 20px;
    color: #0e1124;
    font-weight: 500;
    transition: all.4s;
    border-radius: 4px;
    position: relative;
}

.main-menu-ex.home2-menu li li a:hover {
    color: #fff;
    transition: all.4s;
}

.main-menu-ex.home2-menu li li a::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotateX(60deg);
    color: #fff;
    border-radius: 4px;
    transition: all.4s;
    z-index: -1;
}

.main-menu-ex.home2-menu li li a:hover::after {
    transform: rotateX(0deg);
    background-color: #00bf71;
    border-radius: 4px;
}

.stellarnav.mobile>ul>li>a {
    padding: 15px;
    border-bottom: 1px solid #d4aeff;
    color: #0e1124;
}

.main-menu-ex.dropdown li a {
    color: #fff;
    font-weight: 600;
}

.main-menu-ex.dropdown ul li ul li a {
    color: #000;
}

.main-menu-ex.dropdown-shadow ul li a {
    color: #08121E;
}

.main-menu-ex.dropdown-shadow ul li ul {
    background: #08121E;
}

.main-menu-ex.dropdown-shadow ul li ul li a {
    color: #fff;
}

.main-menu-ex.dropdown-shadow-area ul li ul {
    background: #085855;
    color: #000;
}

.main-menu-ex.dropdown-shadow-area ul li ul li a {
    color: #fff;
}

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

.mega-menu-all {
    overflow-y: scroll;
    max-height: 600px;
}

.header-btn a {
    background: #FEDC00;
    color: #000;
    padding: 16px 32px;
}

.header-top-text-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

ul.mega-dropdawn-ul.backgroudnone {
    background: none;
}

.main-menu-ex.homepage11 .theme-btn11 {
    background: #22BFCA;
}

.main-menu-ex.homepage11 .theme-btn11:hover {
    background: #071A1C;
}

.haeder-top-social ul li {
    display: inline-block;
    padding: 0 12px;
}

.main-menu-ex.homepage12 ul li ul li a:hover {
    background: #49357F;
}

.main-menu-ex.homepage12 .theme-btn11 {
    background: #49357F;
    color: #fff;
}

.main-menu-ex.homepage12 .theme-btn11:hover {
    background: #000;
    color: #fff;
}

.haeder-top-social ul li a svg {
    height: 18px;
    width: 22px;
}

.header-top-text-area {
    padding: 24px 0;
}

.header-area {
    padding: 0;
    box-shadow: 0 2px 2px rgb(0 0 0/10%)
}

header.about-bg {
    position: absolute;
}

img.white-line-img {
    width: 100%;
    object-fit: cover;
}

.header-btn span img {
    height: 24px;
    width: 30px;
    display: inline-block;
    padding-right: 12px;
    object-fit: cover;
}

.header-btn span img {
    height: 24px;
    width: 30px;
    display: inline-block;
    padding-right: 12px;
    object-fit: cover;
}

.header-btn a:hover {
    background: #F6ECA8;
    transition: all .3s ease-in-out;
    color: #121313;
}

.header-btn a {
    transition: all .3s ease-in-out;
}

header {
    position: absolute;
    width: 100%;
    z-index: 9;
}

.header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transform: translate3d(0, 0, 0);
    z-index: 111;
    -webkit-animation-name: fade-in-down;
    animation-name: fade-in-down;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    background-color: #ffffff;
    transition: all 0.3s ease-in-out;
    z-index: 99;
}

@-webkit-keyframes fade-in-down {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -50px, 0);
        transform: translate3d(0, -50px, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fade-in-down {
    0% {
        -webkit-transform: translate3d(0, -50px, 0);
        transform: translate3d(0, -50px, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.mobile-nav-icon {
    color: #fff;
}

span.bars span {
    display: none;
}

a.menu-toggle.full span.bars {
    display: none;
}

.mobile-nav-icon {
    width: 30px;
    height: 30px;
    display: inline-flex;
}

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

.menu-close {
    top: 50px;
}

.mobile-nav-icon svg {
    font-size: 18px;
}

.main-menu.homepage-color ul li a {
    color: #08121E;
}

.main-menu-ex.homepage5.mainmenuex1 ul li a.colorpera {
    color: #000;
}

ul.dropdown-padding.color-s-4 li {
    color: #000;
}

.project-testimonial-text {
    margin-bottom: 30px;
}

.coommingsoon {
    border-radius: 5px;
}

ul.dropdown-padding.color-s-4 li:hover {
    color: #000;
}

.mobile-nav-icon.black-nav.header-mainlogo {
    color: #fff;
}

.mobile-nav-icon.black-nav {
    border: 1px solid #000;
}

.mobile-nav-icon.black-nav.header-mainlogo {
    border: 1px solid #fff;
}

.box-text a:hover {
    color: #fff;
}

.mobile-nav-icon.black-nav.border-black.mobile-menu-color {
    color: #fff;
    border: 1px solid #fff;
}

.main-menu-ex li li a:hover::after {
    background: #002147;
}

.mobile-nav-icon {
    color: #000;
}

/* homepage-2 header */
a.theme-btn5 {
    border-radius: 4px;
    background: #1A237E;
    color: #ffff;
    padding: 14px 20px;
    text-transform: uppercase;
    transition: all .4s ease-in-out;
    display: inline-block;
    position: relative;
    z-index: 2;
    overflow: hidden;
    border: 1px solid #1A237E;
}

a.theme-btn5 span {
    display: inline-block;
    width: 12px;
    height: 20px;
    margin: 0 0 0 8px;
}

a.theme-btn5::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 0;
    background: #fff;
    top: 0;
    left: 0;
    z-index: -2;
    transition: all .4s ease-in-out;
    color: #000;
    border-radius: 4px;
}

a.theme-btn5:hover::after {
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: all .4S ease-in-out;
    box-shadow: 0px 2px 48px 0px rgba(35, 34, 34, 0.09);
    color: #000;
}

a.theme-btn5:hover {
    color: #1A237E;
}

.all-3-btn.theme-btn1 {
    display: flex;
    align-items: center;
}

.theme-btn4 {
    margin-left: 16px;
}

.theme-btn-2 a:hover {
    color: #141B2C;
}

/* homepage-2 header */

/* homepage-3 header */
.theme-btn-3 {
    display: flex;
    align-items: center;
}

.phonr6-area {
    padding-left: 12px;
}

.first-name-input.header3 {
    padding-right: 20px;
}

.nice-select.country-area.nice-select5 {
    width: 100%;
    height: 60px;
    outline: none;
}

.country-area.nice-select6 {
    height: 60px;
}

.first-name-input.header3 .nice-select.country-area {
    width: 77px;
    height: 40px;
    line-height: 40px;
    margin: 0;
}

/* homepage-3 header */
.main-menu-ex.homepage3 ul li ul li a:hover {
    background: #044E7C;
}

a.shedule-btn2 {
    border-radius: 2px;
    background: var(--secondary-color, #6083A9);
    padding: 18px 24px;
    display: inline-block;
    transition: all .4s ease-in-out;
}

a.shedule-btn2 span svg {
    transform: rotate(-45deg);
}

a.shedule-btn2:hover {
    border-radius: 2px;
    background: #fff;
    transition: all .4s ease-in-out;
    color: #000;
}

.main-menu-ex.homepage4 ul li a {
    color: #fff;
}

.main-menu-ex.homepage4 ul li ul li a {
    color: #0C161D;
}

.main-menu-ex.homepage4 ul li ul li a:hover {
    color: #fff;
}

.main-menu-ex.homepage4 ul li ul li ul {
    margin-left: 230px;
    top: -1px;
}

.main-menu-ex.homepage4 ul li ul li ul {
    width: 240px;
}

.main-menu-ex.homepage5.mainmenuex .mega-dropdawn-ul.backgroundnone {
    background: transparent;
}

.main-menu-ex.homepage5 ul li ul li a {
    color: #0C161D;
}

.main-menu-ex.homepage5 ul li ul li a {
    display: flex;
    justify-content: space-between;
}

.main-menu-ex.homepage5 ul li ul li a:hover {
    color: #fff;
}

.main-menu-ex.homepage5 ul li ul li ul {
    margin-left: 180px;
    top: -1px;
}

.main-menu-ex.homepage5 ul li ul li ul {
    width: 240px;
}

.main-menu-ex.homepage5.mainmenuex1 ul li a {
    color: #fff;
}

.main-menu-ex.homepage5.mainmenuex1 ul li ul li a {
    color: #071018;
}

.main-menu-ex.homepage5.mainmenuex1 ul li ul li a:hover {
    background: #007DE7;
    color: #fff;
}

.main-menu-ex.homepage8 ul li a {
    color: #fff;
}

.main-menu-ex.homepage8 ul li ul li a {
    color: #041716;
}

.main-menu-ex.homepage8 ul li ul li a:hover {
    background: #196C68;
    color: #fff;
    height: 100%;
    width: 100%;
}

/* header menu */
.mega-menu-all {
    background: #fff;
    width: 1287px;
    height: auto;
    position: absolute;
    left: -270px;
    top: 30px;
    border-radius: 5px;
    transform: translateY(70px);
    transition: all.3s;
    visibility: hidden;
    box-shadow: rgb(0 0 0 / 20%) 0px 20px 30px;
    padding: 30px;
    opacity: 0;
}

.mega-dropdawn:hover .mega-menu-all {
    transform: translateY(0);
    transition: all.6s;
    visibility: visible;
    opacity: 1;
}

.mega-menu-item-box::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #0c0c0c;
    opacity: 0.4;
    z-index: 1;
    opacity: 0;
    transition: all.4s;
    border-radius: 5px;
    transform: scale(0.8);
}

.mega-menu-item-box:hover::after {
    opacity: 0.5;
    transition: all.4s;
    transform: scale(1);
}


.mega-menu-items-button a {
    /* width: 150px; */
    position: relative;
    z-index: 23;
    /* height: 52px; */
    /* line-height: 36px; */
    width: 160px;
    height: 50px;
    text-align: center;
    line-height: 33px;
}

.mega-menu-items-button {
    position: absolute;
    bottom: 0;
    visibility: hidden;
    opacity: 0;
    left: 50%;
    margin-left: -75px;
    transition: all.4s;
    z-index: 99;
}

.mega-menu-item-box {
    border-radius: 5px;
    cursor: pointer;
    position: relative;
    box-shadow: 0px 4px 50px 0px rgba(0, 0, 0, 0.08);
}

.mega-menu-item-box:hover .mega-menu-items-button {
    bottom: 70px;
    visibility: visible;
    opacity: 1;
    transition: all.4s;
}

.theme-btn11 {
    background-color: #6083A9;
    padding: 18px 24px;
    border-radius: 4px;
    text-align: center;
    transition: all .4s ease-in-out;
}

a.theme-btn11 {
    text-align: center;
    top: 5px;
    transition: all .4s ease-in-out;
}

.theme-btn11 span svg {
    transform: rotate(-45deg);
}

.theme-btn11:hover {
    background: #1D2940;
    transition: all .4s ease-in-out;
}

.theme-btn11:hover {
    background: #1D2940;
    transition: all .4s ease-in-out;
    color: #000;
}

.theme-btn11:hover a {
    color: #000;
    transition: all .4s ease-in-out;
}

.theme-btn11:hover {
    color: #000;
    display: inline-block;
}

a.theme-btn11.consulting7btn {
    border-radius: 2px;
    background: #EB7C3A;
    transition: all .4s ease-in-out;
    border: 2px solid #EB7C3A;
    line-height: 26px;
}

a.theme-btn11.consulting7btn:hover {
    background: none;
    color: #EB7C3A;
    transition: all .4s ease-in-out;
}

.consultingbtn3 {
    background: #0B111F;
    color: #fff;
    transition: all .4s ease-in-out;
}

.consultingbtn3 span {
    color: #fff;
    transition: all .4s ease-in-out;
}

.consultingbtn3:hover {
    background: #fff;
    transition: all .4s ease-in-out;
}

.consultingbtn3:hover span {
    color: #0B111F;
    transition: all .4s ease-in-out;
}

.consultingbtn7 {
    background: #196C68;
}

.consultingbtn2 {
    background: #1A237E;
}

.consultingbtn2 span {
    color: #fff;
}

.consultingbtn5 {
    background: #2657F2;
}

.consultingbtn5 span {
    color: #fff;
}

.consultingbtn6 {
    background: #044E7C;
}

.consultingbtn6 span {
    color: #fff;
}

.consultingbtn8 {
    background: #35AC39;
}

.consultingbtn8 span {
    color: #fff;
}

.consultingbtn9 {
    background: #1DAF68;
}

.consultingbtn9 span {
    color: #fff;
}

.main-menu-ex.homepage10 ul li ul li a:hover {
    background: #86B03C;
}

.consultingbtn10 {
    background: #86B03C;
}

.consultingbtn10 span {
    color: #fff;
}

.main-menu-ex ul li a.colorpera {
    color: #000;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
}

.header10section {
    border-radius: 4px;
    background: rgba(34, 191, 202, 0.05);
    padding: 10px 16px;
}

.social.social4-menu.social4 ul li a svg {
    height: 20px;
    width: 20px;
    text-align: center;
    object-fit: contain;
    line-height: 29px;
    margin-top: -3px;
}

.first-name-input.header3 ul.list {
    background: #22BFCA;
}

.first-name-input.header3 ul.list li:hover {
    color: #000;
}

.haeder3.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
    color: #000;
}

.phonr6-area1 a:hover {
    color: #22BFCA;
    transition: all .4s ease-in-out;
}

.main-menu-ex.homepage11 ul li ul li a:hover {
    background: #22BFCA;
}

.theme-btn13 {
    border-radius: 4px;
    background: #FFF;
    display: inline-block;
    padding: 18px 24px;
    transition: all .4s ease-in-out;
    position: relative;
    z-index: 1;
}

.theme-btn13:hover {
    background: #071A1C;
    transition: all .4s ease-in-out;
    color: #fff;
    transform: translateY(-5px);
}

/*----===========HEADER AREA CSS----============*/

/*----===========WELCOME AREA CSS----============*/
span.consulting {
    background: linear-gradient(90deg, #1252DE 0%, rgba(109, 15, 221, 0.77) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

img.imgw-100 {
    border-radius: 5px;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.welcome-header-area {
    background-image: url(../images/background/homepage1-bacground.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 200px 0 80px;
}

.theme-btn-1 {
    display: flex;
    align-items: center;
}

.theme-btn-1 {
    background: #0B111F;
    padding: 12px 15px;
    border-radius: 4px;
}

.call-text-area {
    padding-left: 10px;
}

.theme-btn-1::after {
    position: absolute;
    content: "";
    background: var(--button-linner, linear-gradient(130deg, #1252DE 0%, rgba(109, 15, 221, 0.53) 100%));
    z-index: -1;
    height: 100%;
    width: 0;
    left: 0;
    top: 0;
    border-radius: 5px;
    transition: all .4s ease-in-out;
}

.all-3-btn.theme-btn {
    position: relative;
}

.theme-btn-1:hover::after {
    width: 100%;
    z-index: -1;
    transition: all .4s ease-in-out;
    height: 100%;
}

.homewelcome6 {
    text-align: center;
    position: relative;
    left: 45px;
}

.theme-btn-1:hover a {
    color: #fff;
    z-index: 2;
}

.theme-btn-1 {
    position: relative;
    z-index: 1;
}

.theme-btn-1 img {
    width: 16px;
    height: 16px;
    display: inline-block;
}

.welcome1-textarea {
    padding: 0 40px 0 0;
}

.theme-get-tex {
    display: inline-block;
    background: var(--button-linner, linear-gradient(130deg, #1252DE 0%, rgba(109, 15, 221, 0.53) 100%));
    padding: 16px 24px;
    border-radius: 5px;
    transition: all .4s ease-in-out;
}

.theme-btn2 {
    position: relative;
    z-index: 2;
}

a.theme-get-tex::after {
    position: absolute;
    content: "";
    /* background: #0B111F; */
    background: var(--button-linner, linear-gradient(130deg, rgba(109, 15, 221, 0.53) 0%, #1252DE 100%));
    width: 0;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 5px;
    transition: all .4s ease-in-out;
    z-index: 1;
}

.theme-get-tex {
    position: relative;
    z-index: 2;
}

a.theme-get-tex:hover::after {
    width: 100%;
    z-index: -1;
    transition: all .4s ease-in-out;
}

.theme-btn2:hover a {
    color: #fff;
    transition: all .4s ease-in-out;
}

.theme-btn2 a {
    transition: all .4s ease-in-out;
}

.welcome-img1 {
    position: relative;
    z-index: 2;
}

.welcome-img1::after {
    position: absolute;
    content: "";
    background: var(--text-color, #002147);
    height: 100%;
    width: 100%;
    left: 20px;
    z-index: -1;
    top: 20px;
    border-radius: 5px;
    transition: all .4s ease-in-out;
}

.welcome-img1:hover::after {
    left: 0;
    top: 0;
    transition: all .4s ease-in-out;
}

img.elementor3 {
    position: absolute;
    top: -35px;
    right: -30px;
}

.welcome-headerimg {
    position: relative;
}

img.elementor1 {
    position: absolute;
    top: 0;
    left: 0;
}

img.elementor2 {
    position: absolute;
    bottom: 0;
    left: 0;
}

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

.position-bg img.elementors82 {
    position: absolute;
    height: 450px;
    width: 450px;
    top: 50px;
    left: 50px;
}

.about-author-imges {
    position: relative;
    left: -65px;
}

.about2-img {
    position: absolute;
    bottom: -78px;
    right: -78px;
}

.about-textarea {
    padding: 0 0 0 35px;
}

img.elementor-4 {
    position: absolute;
    top: -30px;
    right: -30px;
}

img.elementor-2 {
    position: absolute;
    top: 883px;
}

/* homepage2-welcome starts */
.welcome2-section-area {
    background-image: url(../images/background/homepage2-background.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.welcome2-section-area {
    padding: 200px 0 120px;
}

span.maximum {
    border-radius: 2px;
    background: rgba(24, 78, 119, 0.10);
    padding: 10px;
}

span.succes {
    color: #1A237E;
}

.theme-btn4.margn-left {
    margin-left: 0;
}

img.main-imgs {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

img.main-imgs {
    position: relative;
}

.main-img {
    position: relative;
}

img.ecommer {
    position: absolute;
    left: -100px;
    bottom: 40px;
}

.welcome-imgs-area {
    position: relative;
    z-index: 2;
}

img.elementor-8 {
    position: absolute;
    top: -64px;
    right: -53px;
    z-index: -1;
}

img.elementor9 {
    position: absolute;
    right: -59px;
    bottom: -57px;
    z-index: -1;
}

img.elementor-6 {
    position: absolute;
    left: 0;
    bottom: 0;
}

/* homepage2-welcome starts */

/* homepage3-welcome starts */
h2.finance1 {
    border-radius: 120px;
    background: rgba(4, 78, 124, 0.10);
    padding: 10px 16px;
    display: inline-block;
}

.welcome3-section-area {
    position: relative;
    /* background: #F4F4F4; */
    padding: 140px 0 40px;
}

.welcome3-author-images {
    position: relative;
}

img.card1 {
    position: absolute;
    top: 0;
    right: -40px;
    border-radius: 10px;
}

a.unlock-btn {
    border-radius: 100px;
    background: #044E7C;
    padding: 7px 24px;
    position: relative;
    z-index: 1;
    transition: all .4s ease-in-out;
    position: relative;
    z-index: 1;
    border: 2px solid #044E7C;
}

.welcome-area {
    display: flex;
    align-items: center;
    height: 100%;
}

a.unlock-btn:hover {
    color: #fff;
}

a.unlock-btn::after {
    position: absolute;
    content: "";
    background: #fff;
    width: 0;
    height: 100%;
    transition: all .4s ease-in-out;
    bottom: 0;
    color: #fff;
    left: 0;
    z-index: -1;
    border-radius: 50px;
}

a.unlock-btn:hover::after {
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: all .4s ease-in-out;
    color: #fff;
}

a.contact3 {
    border-radius: 100px;
    border: 2px solid #044E7C;
    padding: 18px 24px;
    color: #044E7C;
    margin-left: 16px;
    transition: all .4s ease-in-out;
    overflow: hidden;
}

a.contact3:hover {
    background: #044E7C;
    transition: all .4s ease-in-out;
    color: #fff;
}

span.success1::after {
    position: absolute;
    content: "";
    background: #044E7C;
    width: 100%;
    height: 2px;
    /* top: 0; */
    left: 0;
    bottom: 0;
    border-radius: 10px;
}

.welcome3-header h1 span {
    position: relative;
}

img.elementor-12 {
    position: absolute;
}

img.elementor-16 {
    position: absolute;
    bottom: 0;
}

/* homepage3-welcome starts */
.welcome4-section-area {
    background: var(--main-color, #1D2940);
    position: relative;
}

span.trust {
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.20);
    padding: 10px 16px;
    display: inline-block;
}

.welcome4-positionalarea {
    /* background-image: url(../images/background/welcome4-background.png); */
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

img.img-4 {
    position: absolute;
    right: 0;
    /* width: 50%; */
    height: 100%;
}

.welcome4-positionalarea {
    position: relative;
}

.imag4 {
    position: relative;
}

img.position-bg {
    position: absolute;
    left: 215px;
    z-index: 1;
    top: 100px;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

img.welcome4 {
    position: relative;
    z-index: 1;
    left: 200px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.imag4 {
    padding: 50px 0 0 0;
}

.position-bg {
    position: absolute;
}

.ima1-4 {
    position: relative;
    left: 160px;
}

.position-bg {
    right: -100px;
    top: 200px;
}

.position-bg img {
    width: 100%;
    height: 100%;
}

.special-1 {
    position: absolute;
    top: 42%;
    right: -140px;
}

.special-2 {
    position: absolute;
    left: 160px;
    bottom: 152px;
}

.special-3 {
    position: absolute;
    top: 22%;
    left: 217px;
}

.welcome4-textarea {
    margin-top: 100px;
}

.elementor-21 {
    position: absolute;
    bottom: 50px;
    left: -30px;
}

img.elementor-22 {
    position: absolute;
    bottom: 0;
}

.welcome5-section-area {
    background-image: url(../images/background/homepage5bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.welcome5-section-area {
    padding: 165px 0 90px;
}

.welcome5-imags {
    position: relative;
}

img.welcome2-imas5 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    position: relative;
    z-index: 1;
}

img.elementors {
    position: absolute;
    right: -42px;
    top: -40px;
}

img.growth1 {
    position: absolute;
    top: 30px;
    left: -100px;
    z-index: 1;
}

button.button13 {
    border-radius: 2px;
    background: #007DE7;
    border: none;
    padding: 18px 24px;
    outline: none;
}

button.button13:hover {
    color: #071018;
}

.button14 {
    border-radius: 2px;
    background: #007DE7;
    border: none;
    padding: 18px 24px;
    outline: none;
}

.button14:hover {
    color: #071018;
}

.form5-srea form {
    position: relative;
    background-color: #fff;
    padding: 26px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.form5-srea form input {
    width: 58%;
    background: none;
    color: #fff;
    border: none;
    outline: none;
}

button.button13 {
    position: absolute;
    top: 12px;
    right: 11px;
    transition: all .4s ease-in-out;
}

.form5-srea {
    margin-top: 32px;
    padding: 0 70px 0 0;
}

a.theme-btn6 {
    padding: 16px 20px;
    display: inline-block;
    text-transform: capitalize;
    border-radius: 5px;
    color: #fff;
    font-weight: 700;
    position: relative;
    transition: all.4s;
}

a.theme-btn6:hover {
    color: #071018;
}

a.theme-btn6::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #2657F2;
    z-index: -2;
    border-radius: 5px;
    color: #000;
}

a.theme-btn6::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #fff;
    z-index: -1;
    border-radius: 5px;
    transform: rotateY(70deg);
    transition: all.4s;
    opacity: 0;
}

a.theme-btn6:hover {
    transform: translateY(-5px);
}

a.theme-btn6:hover::after {
    opacity: 1;
    transform: rotateY(0);
}


.button13::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #2657F2;
    z-index: -2;
    border-radius: 2px;
    color: #000;
}

.button14::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #007DE7;
    z-index: -2;
    border-radius: 5px;
    color: #fff;
}

.button13::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #fff;
    z-index: -1;
    border-radius: 2px;
    transform: rotateY(70deg);
    transition: all.4s;
    opacity: 0;
}

.button14::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #071018;
    z-index: -1;
    border-radius: 5px;
    transform: rotateY(70deg);
    transition: all.4s;
    opacity: 0;
}

.button13:hover {
    transform: translateY(-5px);
    transition: all .4s ease-in-out;
}

.button14:hover {
    transform: translateY(-5px);
    transition: all .4s ease-in-out;
}

.button13:hover::after {
    opacity: 1;
    transform: rotateY(0);
    transition: all .4s ease-in-out;
}

.button14:hover::after {
    opacity: 1;
    transform: rotateY(0);
    transition: all .4s ease-in-out;
}

.button14:hover {
    color: #fff;
}

img.ball1 {
    position: absolute;
    bottom: 44%;
    left: 4%;
}

img.ball2 {
    position: absolute;
    left: 8%;
    top: 29%;
}

img.ball3 {
    position: absolute;
    top: 12%;
    left: 41%;
}

img.ball5 {
    position: absolute;
    bottom: 10%;
    left: 30%;
}

img.ball4 {
    position: absolute;
    left: 64%;
    top: 3%;
}

span.calculation {
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.10);
    padding: 10px;
}

img.elementors1 {
    position: absolute;
    bottom: 0;
}

.welcome3-section-area1.headerh5bg {
    background-image: url(../images/background/homepagesixbg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.welcome3-section-area1.headerh5bg {
    padding: 160px 0 100px;
}

img.welcomesix {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 2;
}

img.imagesgreen {
    position: absolute;
    top: 30px;
    left: 25px;
    transition: all .4s ease-in-out;
}

.homewelcome6 {
    position: relative;
    transition: all .4s ease-in-out;
}

.homewelcome6:hover img.imagesgreen {
    left: 30px;
    transition: all .4s ease-in-out;
    top: 38px;
}

img.expert1 {
    position: absolute;
    bottom: -71px;
    left: 0;
    z-index: 2;
}

img.elementors5 {
    position: absolute;
    right: 0;
    bottom: 0;
}

span.trusts {
    border-radius: 4px;
    background: rgba(53, 172, 57, 0.10);
    padding: 8px 10px;
    margin-bottom: 24px;
}

a.home5btn7 {
    border-radius: 4px;
    background: #35AC39;
    padding: 18px 24px;
    position: relative;
    z-index: 2;
    transition: all .4s ease-in-out;
    color: #fff;
}

a.home5btn7::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 0;
    background: #080D06;
    right: 0;
    top: 0;
    z-index: -1;
    transition: all .4s ease-in-out;
    border-radius: 4px;
}

a.home5btn7:hover::after {
    width: 100%;
    left: 0;
    right: auto;
    transition: all .4s ease-in-out;
    border-radius: 4px;
}

.all-phoneflex {
    display: flex;
    align-items: center;
    margin-left: 24px;
}

.h0mapagesixbtnall {
    display: flex;
    align-items: center;
}

.h0mapagesixbtnall {
    margin-top: 32px;
}

.phonwiicone {
    border: 2px solid #35AC39;
    height: 52px;
    width: 52px;
    text-align: center;
    line-height: 46px;
    border-radius: 50%;
    margin: 0 12px 0 0;
    transition: all .4s ease-in-out;
}

.phoneiicona a:hover {
    color: #08110D;
}

.all-phoneflex:hover .phonwiicone {
    background: #35AC39;
    transition: all .4s ease-in-out;
}

.all-phoneflex:hover .phonwiicone a img {
    filter: brightness(40) invert(0);
    transition: all .4s ease-in-out;
}

.main-menu-ex.homepage3.homepage5.homepage6 ul li ul li a:hover {
    background: #35AC39;
}

.welcome7-section-area {
    background-image: url(../images/sectionimg/welcome7bg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 0;
}

.welcome7-section-area::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background: #0F0A07;
    opacity: 0.8;
    top: 0;
    left: 0;
    z-index: 0;
}

.welcome7-textarea {
    position: relative;
    z-index: 1;
}

.welcome7-textarea a {
    position: relative;
    z-index: 9;
}

.welcome7-textarea span {
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.10);
    color: #fff;
    padding: 10px 16px;
    display: inline-block;
}

a.shedule-btn3 {
    border-radius: 2px;
    background: #EB7C3D;
    padding: 18px 24px;
    transition: all .4s ease-in-out;
    border: 1px solid #EB7C3A;
}

a.shedule-btn3:hover {
    background: transparent;
    color: #EB7C3A;
    transition: all .4s ease-in-out;
}

.welcome7-section-area {
    padding: 160px 0 100px;
}

a.shedulebtn3 {
    border-radius: 2px;
    background: #EB7C3A;
    padding: 18px 28px;
    display: inline-block;
    transition: all .4s;
    border: 1px solid #EB7C3A;
}

a.shedulebtn3:hover {
    background: none;
    transition: all .5s;
    color: #EB7C3A;
    transform: translateY(-5px);
}

a.shedulebtn4 {
    border-radius: 2px;
    padding: 18px 28px;
    transition: all .4s;
    color: #EB7C3A;
    display: inline-block;
    transition: all .4s;
    border: 1px solid #EB7C3A;
    margin-left: 16px;
}

a.shedulebtn4:hover {
    background: none;
    transition: all .4s;
    color: #fff;
    background: #EB7C3A;
    transform: translateY(-5px);
}

img.elementors9 {
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
}

img.about7images {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.welcome-eightsection-area {
    background-image: url(../images/sectionimg/header8bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 0;
}

.welcome-eightsection-area::after {
    position: absolute;
    content: "";
    opacity: 0.89;
    background: #041716;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.welcome8-header {
    position: relative;
    z-index: 1;
}

.welcomecontact-header {
    position: relative;
    z-index: 1;
}

.welcome-eightsection-area {
    padding: 160px 0 80px;
}

span.services8 {
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.10);
    padding: 10px 16px;
}

a.solutions1 {
    border-radius: 4px;
    background: #196C68;
    padding: 18px 24px;
    display: inline-block;
    position: relative;
    z-index: 1;
    transition: all .4s ease-in-out;
    border: 1px solid #196C68;
}

a.solutions1 span svg {
    transform: rotate(-45deg);
    margin-left: 4px;
}

a.solutions1::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    background: #fff;
    height: 100%;
    width: 0;
    transition: all .4s ease-in-out;
    border-radius: 4px 0 0 4px;
    z-index: -1;
}

a.solutions1::before {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    background: #fff;
    height: 100%;
    width: 0;
    transition: all .4s ease-in-out;
    border-radius: 0 4px 4px 0;
    z-index: -1;
}

a.solutions1:hover::before {
    width: 50%;
    transition: all .4s ease-in-out;
}

a.solutions1:hover {
    color: #196C68;
    transition: all .4s ease-in-out;
    border: 1px solid #fff;
    transform: translateY(-5px);
}

a.solutions1:hover::after {
    width: 50%;
    transition: all .4s ease-in-out;
}

.welcomecontact-header {
    border-radius: 4px;
    background: #FFF;
    padding: 30px 25px;
}

.welcomecontact-header input {
    width: 100%;
    outline: none;
    border: 1px solid #E6E8E8;
    padding: 10px 14px;
    border-radius: 5px;
}

.welcomecontact-header textarea {
    width: 100%;
    outline: none;
    border: 1px solid #E6E8E8;
    padding: 10px 14px;
    border-radius: 5px;
}

.contact8 textarea {
    height: 100px;
    width: 100%;
    margin-bottom: 16px;
}

button.consulitingbt7 {
    border-radius: 4px;
    background: #196C68;
    padding: 12px 24px;
    border: none;
    position: relative;
    z-index: 1;
    transition: all .4s ease-in-out;
    text-align: center;
    justify-content: right;
}

button.consulitingbt7:hover {
    transform: translateY(-5px);
    transition: all .4s ease-in-out;
}

button.consulitingbt7 span svg {
    transform: rotate(-45deg);
}

button.consulitingbt7::before {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    background: #041716;
    height: 100%;
    width: 0;
    transition: all .4s ease-in-out;
    border-radius: 0 4px 4px 0;
    z-index: -1;
}

button.consulitingbt7::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    background: #041716;
    height: 100%;
    width: 0;
    transition: all .4s ease-in-out;
    border-radius: 4px 0 0 4px;
    z-index: -1;
}

button.consulitingbt7:hover::before {
    width: 50%;
    transition: all .4s ease-in-out;
    height: 100%;
}

button.consulitingbt7:hover::after {
    width: 51%;
    transition: all .4s ease-in-out;
    border-radius: 4px 0 0 4px;
    height: 100%;
}

a.consulitingbt7 {
    border-radius: 4px;
    background: #196C68;
    padding: 16px 24px;
    border: none;
    position: relative;
    z-index: 1;
    transition: all .4s ease-in-out;
    text-align: center;
    display: block;
    justify-content: right;
}

a.consulitingbt7:hover {
    transform: translateY(-5px);
    transition: all .4s ease-in-out;
}

a.consulitingbt7 span svg {
    transform: rotate(-45deg);
}

a.consulitingbt7::before {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    background: #041716;
    height: 100%;
    width: 0;
    transition: all .4s ease-in-out;
    border-radius: 0 4px 4px 0;
    z-index: -1;
}

a.consulitingbt7::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    background: #041716;
    height: 100%;
    width: 0;
    transition: all .4s ease-in-out;
    border-radius: 4px 0 0 4px;
    z-index: -1;
}

a.consulitingbt7:hover::before {
    width: 50%;
    transition: all .4s ease-in-out;
    height: 100%;
}

a.consulitingbt7:hover::after {
    width: 51%;
    transition: all .4s ease-in-out;
    border-radius: 4px 0 0 4px;
    height: 100%;
}

.welcomecontact-header {
    position: relative;
}

img.elemenors8 {
    position: absolute;
    top: -45px;
    right: -45px;
}

img.elementors7 {
    position: absolute;
    bottom: 0;
    z-index: 1;
}

a.consulitingbt7 {
    border-radius: 4px;
    background: #196C68;
    padding: 16px 24px;
    border: none;
    position: relative;
    z-index: 1;
    transition: all .4s ease-in-out;
    text-align: center;
    display: initial;
    justify-content: right;
}

a.consulitingbt7:hover {
    transform: translateY(-5px);
    transition: all .4s ease-in-out;
}

a.consulitingbt7 span svg {
    transform: rotate(-45deg);
}

a.consulitingbt7::before {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    background: #041716;
    height: 100%;
    width: 0;
    transition: all .4s ease-in-out;
    border-radius: 0 4px 4px 0;
    z-index: -1;
}

.service8-btn a button {
    text-align: center;
    margin: 0 auto;
}

button.consulitingbt7.allhover {
    text-align: center;
    justify-content: center;
    margin: 0 auto;
}

.consulitingbt7 a:hover {
    color: #fff;
}

a.consulitingbt7::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    background: #041716;
    height: 100%;
    width: 0;
    transition: all .4s ease-in-out;
    border-radius: 4px 0 0 4px;
    z-index: -1;
}

a.consulitingbt7:hover::before {
    width: 50%;
    transition: all .4s ease-in-out;
    height: 100%;
}

a.consulitingbt7:hover::after {
    width: 50%;
    transition: all .4s ease-in-out;
    border-radius: 4px 0 0 4px;
    height: 100%;
}

a.consulitingbt7 {
    color: #fff;
    transition: all .4s ease-in-out;
}

.welcome9-section-area {
    background-image: url(../images/background/Header8bg.png);
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.consulting9 span svg {
    margin-left: 8px;
}

.consulting9 {
    background: #1DAF68;
    padding: 18px 22px;
    display: inline-block;
    position: relative;
    z-index: 1;
    transition: all .4s ease-in-out;
    border-radius: 4px;
}

.consulting9:hover {
    color: #fff;
    transition: all .4s ease-in-out;
}

.consulting9::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    transition: all .4s ease-in-out;
    background: #0B111D;
    z-index: -1;
}

.consulting9:hover::after {
    height: 100%;
    transition: all .4s ease-in-out;
    border-radius: 4px;
    bottom: auto;
    top: 0;
    color: #fff;
}

a.consulting10 {
    border-radius: 4px;
    background: #1DAF68;
    padding: 18px 22px;
    display: inline-block;
    position: relative;
    z-index: 1;
    margin-top: 32px;
}

a.consulting10 span svg {
    margin-left: 8px;
}

a.consulting10::after {
    position: absolute;
    content: "";
    background: #0B111D;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    transition: all .4s ease-in-out;
    border-radius: 4px;
}

a.consulting10:hover::after {
    height: 100%;
    transition: all .4s ease-in-out;
    color: #fff;
    top: 0;
    bottom: auto;
}

a.consulting10:hover {
    color: #fff;
    transition: all .4s ease-in-out;
}

span.insurance {
    border-radius: 2px;
    background: rgba(29, 175, 104, 0.10);
    padding: 8px 12px;
}

.welcome9-section-area {
    padding: 150px 0 80px;
}

.welconme8-imga img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    left: 115px;
}

img.elementors19 {
    position: absolute;
    bottom: 0;
    left: 0;
}

img.elementors18s {
    position: absolute;
    bottom: 0;
    right: 0;
}

img.animation8class {
    position: absolute;
    left: -60px;
    top: -28px;
}

.others-author-area9 {
    position: relative;
    top: 200px;
    left: 50px;
}

img.header9 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    left: -30px;
}

.groupexpo img {
    width: 20px;
    height: 20px;
    object-fit: cover;
    left: 0;
    margin: 0 8px 0 0;
}

.others9-type {
    display: flex;
    align-items: center;
}

.others9-type {
    background: #fff;
    padding: 16px;
    border-radius: 2px;
    background: #FFF;
    position: absolute;
    top: 0;
    left: 15%;
}

.welconme8-imga {
    position: relative;
}

.others9-type.otherstype9 {
    top: 73%;
    border-radius: 2px;
    background: #FFF;
    box-shadow: 0px 4px 94px 0px rgba(0, 0, 0, 0.09);
    left: 547px;
    width: 217px;
}

.otherstype10 {
    border-radius: 2px;
    background: #FFF;
    display: flex;
    align-items: center;
    padding: 16px;
    position: absolute;
    top: 30%;
    left: -57px;
    transition: all .4s ease-in-out;
}

.otherstype11 {
    border-radius: 2px;
    background: #FFF;
    display: flex;
    align-items: center;
    padding: 16px;
    position: absolute;
    top: 10%;
    right: -200px;
    transition: all .4s ease-in-out;
}

.shap1area {
    /* clip-path: polygon(51% 0, 86% 25%, 88% 73%, 51% 100%, 14% 74%, 13% 27%); */
    position: relative;
    background: #fff;
    z-index: 1;
    height: 260px;
    width: 100%;
    align-items: center;
    margin-bottom: 24px;
    border-radius: 5px;
}

.shap1area {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.briefimages {
    background: rgba(235, 124, 58, 0.20);
    display: inline-block;
    height: 67px;
    width: 67px;
    line-height: 67px;
    border-radius: 50%;
    margin-bottom: 24px;
}

.shap1area {
    transition: all .4s ease-in-out;
}

.shap1area:hover {
    background: #EB7C3A;
    transition: all .4s ease-in-out;
}

.shap1area:hover .briefimages {
    background: #fff;
    transition: all .4s ease-in-out;
}

.shap1area:hover h2 {
    color: #fff;
}

.welcome10-section-area {
    position: relative;
    padding: 170px 0 110px;
}

.welcome10-section-area {
    background-image: url(../images/sectionimg/header10bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.welcome10-section-area::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background: #091622;
    opacity: 0.7;
}

.header10-textarea {
    position: relative;
    z-index: 1;
    padding: 32px;
}

.header10-textarea::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    background: linear-gradient(118deg, #FFF -369.01%, rgba(255, 255, 255, 0.00) 108.3%);
    z-index: -1;
}

span.aboutspan {
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.20);
    padding: 8px 12px;
}

.solutions10 {
    border-radius: 4px;
    background: #86B03C;
    padding: 16px 24px;
    position: relative;
    z-index: 2;
    display: inline-block;
    transition: all .4s ease-in-out;
}

.solutions10:hover {
    color: #fff;
    transition: all .4s ease-in-out;
    transform: translateY(-5px);
}

.solutions10::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 0;
    background-color: #fff;
    opacity: 0.1;
    left: 0;
    top: 0;
    transition: all .2s ease-in-out;
}

.solutions10:hover::after {
    width: 100%;
    transition: all .2s ease-in-out;
    left: auto;
    right: 0;
}

a.homepagebtn10 {
    border-radius: 4px;
    background: #86B03C;
    padding: 16px 24px;
    position: relative;
    z-index: 1;
}

.homepagebtn10 {
    overflow: hidden;
    position: relative;
    border-radius: 4px;
    background: #86B03C;
    padding: 16px 24px;
    position: relative;
    z-index: 1;

    span {
        z-index: 20;
    }

}

.homepagebtn10::after {
    background: #fff;
    content: "";
    height: 155px;
    left: -75px;
    opacity: 0.2;
    position: absolute;
    top: -50px;
    transform: rotate(35deg);
    transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 50px;
    z-index: -10;
}

.homepagebtn10:hover::after {
    left: 120%;
    transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
}

.homepagebtn10:hover {
    color: #fff;
    transition: all .4s ease-in-out;
    transform: translateY(-5px);
}

.welcome-bgarea {
    position: relative;
    z-index: 1;
}

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

.welcome-ellips {
    position: relative;
}

.elips-icon {
    border-radius: 118.421px;
    background: #86B03C;
    display: inline-block;
    height: 120px;
    width: 120px;
    text-align: center;
    line-height: 120px;
    position: absolute;
    top: 40%;
    left: 39%;
}

.ellipsarea1 {
    position: absolute;
    top: -50px;
    left: 207px;
}

.exportellips {
    background: #fff;
    height: 80px;
    width: 80px;
    line-height: 80px;
    text-align: center;
    border-radius: 50%;
    position: absolute;
    top: 8px;
    left: 9px;
}

.ellipsarea2 {
    position: absolute;
    top: 215px;
    left: -50px;
}

.ellipsarea3 {
    position: absolute;
    bottom: -45px;
    left: 215px;
}

.ellipsarea4 {
    position: absolute;
    top: 41%;
    right: -45px;
}

.welcome11-section-area {
    background: #071A1C;
    color: #fff;
    position: relative;
}

img.welcomeiamges {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.welcome11-section-area {
    padding: 160px 0 0;
}

img.elementors76 {
    position: absolute;
    bottom: 0;
    left: 0;
}

img.elemnetors75 {
    position: absolute;
    top: -30px;
    right: -30px;
}

.welcome11-headerimages {
    position: relative;
}

span.aroplan {
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.10);
    padding: 6px 10px;
    display: inline-block;
}

span.aroplan img {
    margin: 0 4px 0 0;
}

a.themebtn11 {
    border-radius: 4px;
    background: #22BFCA;
    padding: 18px 24px;
}

.themebtn11 {
    border: 0 solid #22BFCA;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0);
    outline: 1px solid;
    outline-color: rgba(255, 255, 255, 0.5);
    outline-offset: 0px;
    text-shadow: none;
    transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
    transition: all .4s ease-in-out;
}

.themebtn11:hover {
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.5), 0 0 20px rgba(255, 255, 255, 0.2);
    outline-color: rgba(255, 255, 255, 0);
    outline-offset: 15px;
    transform: translateY(-5px);
    background: #fff;
    color: #22BFCA;
}

.themeall-4 {
    border-radius: 4px;
    background: rgba(34, 191, 202, 0.05);
    padding: 10px 16px;
}

img.elementors76 {
    filter: brightness(0.5);
}

.themeall-4 img {
    margin: 0 12px 0 0;
}

.themeniceall .nice-select {
    background: none;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: #fff;
}

.themeniceall .nice-select ul {
    color: #FFF;
    BACKGROUND: rgba(255, 255, 255, 0.05);
}

.themeniceall .nice-select span {
    color: #fff;
}

.themeniceall .nice-select ul li:hover {
    color: #000;
}

.cta-header-area {
    background: #fff;
    padding: 32px;
    border-radius: 4px;
}

.cta-header-area input {
    width: 100%;
    background: #E6E8E8;
    border: none;
    outline: none;
    padding: 18px 16px;
    border-radius: 4px;
    height: 52px;
    margin-top: 20px;
}

.cta-header-area input::placeholder {
    color: #606C6E;
}

.nice-select11 .nice-select {
    margin: 0;
    width: 100%;
    height: 52px;
    background: #E6E8E8;
    margin-top: 20px;
    outline: none;
    border: none;
}

.nice-select11 .nice-select::after {
    border-bottom: 2px solid #000;
    border-right: 2px solid #000;
    height: 7px;
    width: 7px;
    right: 16px;
    outline: none;
}

.cta-header-area textarea {
    width: 100%;
    border: none;
    background: #E6E8E8;
    padding: 14px 16px;
    height: 52px;
    outline: none;
    border-radius: 4px;
    margin-top: 20px;
}

.nice-select11 .nice-select span {
    color: #606C6E;
}

button.selecbtn11 {
    margin-top: 20px;
    width: 100%;
    text-align: center;
    padding: 17px;
    border: none;
    outline: none;
    background: #22BFCA;
    border-radius: 4px;
    transition: all .4s ease-in-out;
}

button.selecbtn11:hover {
    background: #071A1C;
    transition: all .4s ease-in-out;
    transform: translateY(-5px);
}

.nice-select11 .nice-select ul li {
    background: #E6E8E8;
    color: #000;
}

.nice-select11 .nice-select ul li:hover {
    background: #22BFCA;
    transition: all .4s ease-in-out;
}

.nice-select11 .nice-select ul li {
    transition: all .4s ease-in-out;
}

.cta-otherarea {
    position: relative;
}

.cta-header-area {
    position: relative;
    top: 103px;
}

.welcome12-section-area {
    background-image: url(../images/background/haeder12.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

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

img.elementors80 {
    width: 140px;
    height: 140px;
    object-fit: cover;
    right: -40px;
    position: absolute;
    top: -40px;
    z-index: -1;
}

.welcome12-section-area {
    padding: 160px 0 70px;
}

.haeder12-images {
    position: relative;
    z-index: 1;
}

.aroplan3 {
    border-radius: 2px;
    background: rgba(1, 92, 181, 0.08);
    padding: 6px 10px;
    margin-bottom: 24px;
}

.aroplan3 img {
    margin: 0 4px 0 0;
}

.header12-form form {
    position: relative;
}

.header12-form .nice-select {
    background: #E6E8E8;
    width: 330px;
    height: 52px;
}

.header12-form form .nice-select span {
    color: #4A5859;
}

button.themebtn14 {
    padding: 18px 24px;
    border: none;
    outline: none;
    border-radius: 4px;
    background: #49357F;
    margin-left: 14px;
    transition: all .4s ease-in-out;
}

button.themebtn14:hover {
    background: #071A1C;
    transition: all .4s ease-in-out;
    transform: translateY(-5px);
}

.header12-form form {
    background: #fff;
    padding: 16px;
    border-radius: 4px;
}

.header12-form form .nice-select {
    background: #E6E8E8;
    width: 353px;
}

.header12-form {
    margin-top: 28px;
}

.header12-form form .nice-select::after {
    height: 7px;
    width: 7px;
    right: 16px;
}

img.ball9 {
    position: absolute;
    bottom: 0;
}

img.ball7 {
    position: absolute;
    left: 15%;
    top: 25%;
}

img.ball6 {
    position: absolute;
    left: 37%;
    top: 30%;
}

img.ball8 {
    position: absolute;
    top: 81%;
    left: 35%;
}

.welcome-preview-section-area {
    position: relative;
    background-image: url(../images/background/previewbg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

a.purchasebtn {
    border-radius: 5px;
    background: #007DE7;
    padding: 16px 20px;
    display: inline-block;
    transition: all .4s ease-in-out;
}

a.purchasebtn span {
    margin-left: 4px;
    transform: rotate(-45deg);
}

a.purchasebtn span svg {
    transform: rotate(45deg);
}

a.purchasebtn span i {
    transform: rotate(-45deg);
    transition: all .4s ease-in-out;
}

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

a.purchasebtn:hover {
    background: #fff;
    color: #007DE7;
    transition: all .4s ease-in-out;
    transform: translateY(-5px);
}

.listpreview ul li {
    margin-bottom: 20px;
}

.listpreview ul li img {
    margin: 0 10px 0 0;
}

.get-preview {
    color: #007DE7;
    font-family: Kumbh Sans;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    background: #fff;
    padding: 16px 20px;
    display: inline-block;
    margin-top: 20px;
    border-radius: 5px;
    transition: all .4s ease-in-out;
    line-height: 24px;
}

.get-preview:hover {
    background: #007DE7;
    color: #fff;
    transition: all .4s ease-in-out;
    box-shadow: #000;
    transform: translateY(-5px);
}

.get-preview i {
    transform: rotate(-45deg);
    transition: all .4s ease-in-out;
}

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

.welcome-preview-section-area {
    padding: 200px 0 100px;
    overflow: hidden;
}

.preview-images {
    position: absolute;
    top: 120px;
    right: 0;
}

.main-menu-ex.previewdemo ul li a {
    color: #fff;
}

.main-menu-ex.previewdemo ul li a:hover {
    color: #fff;
}

.aboutpreview {
    border-radius: 5px;
    background: #007DE7;
    padding: 16px 20px;
    display: inline-block;
    margin-top: 32px;
    transition: all .4s ease-in-out;
}

.aboutpreview i {
    transform: rotate(-45deg);
    margin-left: 4px;
}

.aboutpreview:hover {
    background: #24101D;
    color: #fff;
    transition: all .4s ease-in-out;
}

.counterpreview {
    border-radius: 4px;
    background: #F1F7FF;
    width: 100%;
    /* height: 136px; */
    text-align: center;
    margin-bottom: 30px;
    border-radius: 5px;
    justify-content: center;
    align-items: center;
    display: block;
    padding: 32px 32px;
    transition: all .4s ease-in-out;
}

.counterpreview:hover {
    background: #007DE7;
    transition: all .4s ease-in-out;
    color: #fff;
}

.counterpreview:hover h1 {
    color: #fff;
    transition: all .4s ease-in-out;
}

.counterpreview:hover p {
    color: #fff;
    transition: all .4s ease-in-out;
}

.service-preview-section-area {
    background: #F1F7FF;
}

.aboutsan {
    border-radius: 4px;
    background: rgba(0, 125, 231, 0.10);
    padding: 8px 14px;
}

/*----=========== WELCOME AREA CSS----============*/

/*----=========== ABOUT AREA CSS----============*/
img.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-author-imges {
    position: relative;
    left: -65px;
}

.about2-img {
    position: absolute;
    bottom: -78px;
    right: -78px;
}

.about-textarea {
    padding: 0 0 0 35px;
}

img.elementor-4 {
    position: absolute;
    top: -30px;
    right: -30px;
}

span.financila {
    color: rgb(252, 118, 50) background-image:-moz-linear-gradient(1deg, rgb(252, 118, 50) 0%, rgb(247, 39, 80) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(90deg, #1252DE 0%, rgba(109, 15, 221, 0.77) 100%);
}

/* homepage-2-about starts */
.about2-author-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.about2-scetion-images {
    margin-bottom: 30px;
}

.pera-background {
    border-radius: 1px;
    background: #E9EDF4;
    padding: 16px 24px;
    margin-bottom: 20px;
}

.pera-background:hover p {
    color: #fff;
    opacity: 0.7;
    transition: all .5s ease-in-out;
}

.pera-background {
    z-index: 1;
}

.pera-background:hover::after {
    width: 100%;
    transition: all .4s ease-in-out;
    z-index: -1;
}

.pera-background {
    transition: all .4s ease-in-out;
}

.pera-background p {
    transition: all .4s ease-in-out;
}

.pera-background {
    position: relative;
}

.pera-background::after {
    position: absolute;
    content: "";
    background: #1A237E;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    width: 8px;
    transition: all .4s ease-in-out;
}

.about-2-textarea {
    padding: 0 0 0 70px;
}

/* homepage-2-about starts */
.about-2-textarea h1 span {
    position: relative;
    z-index: 1;
}

.about3-section-area {
    position: relative;
}

span.success1 {
    position: relative;
}

.about-3-images img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    object-fit: cover;
}

span.check3-icon {
    background: rgba(4, 78, 124, 0.20);
    height: 20px;
    width: 20px;
    display: inline-block;
    text-align: center;
    line-height: 20px;
    border-radius: 50%;
    color: #044E7C;
    font-size: 9px;
    font-weight: 700;
}

span.freedom {
    padding-left: 8px;
}

.about3-textarea {
    padding: 0 0 0 40px;
}

.about-3-afterbefore {
    border-radius: 5px;
    background: #E9EDF4;
    position: relative;
    padding: 15px 20px;
    margin-top: 32px;
    z-index: 1;
}

.about-3-afterbefore::after {
    position: absolute;
    content: "";
    border-radius: 5px;
    background: #044E7C;
    height: 100%;
    width: 6px;
    top: 0;
    left: 0;
    transition: all .4s ease-in-out;
    z-index: -1;
}

.about-3-afterbefore:hover::after {
    width: 100%;
    transition: all .4s ease-in-out;
    z-index: -1;
}

.about-3-afterbefore:hover p {
    color: #fff;
    transition: all .4s ease-in-out;
}

.about-3-afterbefore p {
    transition: all .4s ease-in-out;
}

.about-3-images {
    position: relative;
}

img.elementor-17 {
    position: absolute;
    top: -30px;
    left: -26px;
    height: 112px;
    width: 112px;
    z-index: -1;
}

span.about3span {
    border-radius: 2px;
    background: rgba(96, 131, 169, 0.10);
    padding: 10px 16px;
}

.about3-images1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.about3-images1 {
    position: relative;
}

.about3-textarea1 {
    padding: 0 0 0 70px;
}

a.theme6-btn6 {
    border-radius: 2px;
    background: var(--main-color, #1D2940);
    display: inline-block;
    padding: 18px 22px;
    transition: all .4s ease-in-out;
}

a.theme6-btn6.bakgrnd5:hover {
    background: #fff;
    color: var(--main-text-color, #1D2940);
    border: none;
}

.theme6-btn6.backgrnd6 {
    background: #fff;
    border: none;
    margin-left: 16px;
}

.theme6-btn6.backgrnd6:hover {
    background: var(--main-color, #1D2940);
    color: #fff;
    border: none;
}

a.theme6-btn6 span svg {
    transform: rotate(-45deg);
}

a.theme6-btn6:hover {
    border-radius: 2px;
    /* border: 1px solid #fff; */
    transition: all .4s ease-in-out;
    background: var(--secondary-color, #6083A9);
    color: #fff;
}

.counter3-boxarea4 {
    border-radius: 2px;
    background: #FFF;
    display: flex;
    box-shadow: 0px 2px 48px 0px rgba(0, 0, 0, 0.09);
    min-width: 240px;
    min-height: 120px;
    text-align: center;
    justify-content: center;
    align-items: center;
    text-align: center;
    line-height: 50px;
    transition: all .4s ease-in-out;
}

.counter3-boxarea4:hover {
    border-radius: 2px;
    background: var(--main-color, #1D2940);
    box-shadow: 0px 2px 48px 0px rgba(0, 0, 0, 0.09);
    transition: all .4s ease-in-out;
    color: #fff;
}

.counter3-boxarea4:hover h1 {
    color: #fff;
    transition: all .4s ease-in-out;
}

.counter3-boxarea4:hover p {
    color: #fff;
    transition: all .4s ease-in-out;
}

img.elementor-9 {
    width: 112px;
    height: 112px;
    position: absolute;
    top: -35px;
    left: -35px;
}

.welcomeabout-area {
    background: #1D2940;
}

.welcomeabout-area {
    padding: 140px 0 100px;
}

.welcomeaboiut2 p span {
    margin: 0 8px;
}

.welcomeaboiut2 p a:hover {
    color: #000;
}

.lawprovide-boaxrea {
    position: relative;
    z-index: 1;
}

.lawprovide-boaxrea::after {
    position: absolute;
    content: "";
    height: 0;
    width: 100%;
    left: 0;
    top: 0;
    background: var(--main-text-color, #1D2940);
    transition: all .4s ease-in-out;
    z-index: -1;
}

.lawprovide-boaxrea:hover::after {
    height: 100%;
    bottom: 0;
    top: auto;
    transition: all .4s ease-in-out;
}

.lawprovide-boaxrea:hover {
    transform: translateY(-10px);
    transition: all .4s ease-in-out;
}

.lawprovide-section-area {
    background: var(--gray-color, #EFF7FF);
    position: relative;
}

.lawprovide-textarea {
    padding: 0 49px 0 0;
}

.lawprovide-boaxrea {
    border-radius: 2px;
    background: #FFF;
    padding: 28px 20px;
    position: relative;
    transition: all .4s ease-in-out;
}

.guidiance-boxarea {
    border-radius: 64px;
    background: rgba(4, 78, 124, 0.10);
    display: inline-block;
    height: 64px;
    width: 64px;
    text-align: center;
    line-height: 64px;
}

.lax-conultingprovide {
    position: relative;
    padding-left: 100px;
    top: 0;
}

.guidiance-boxarea {
    position: absolute;
    transition: all .4s ease-in-out;
}

.lawprovide-boaxrea:hover h1 {
    color: #fff;
    transition: all .4s ease-in-out;
}

.lawprovide-boaxrea:hover p {
    color: #fff;
    transition: all .4s ease-in-out;
    opacity: 0.8;
}

.lawprovide-boaxrea:hover .guidiance-boxarea {
    background: #fff;
    transition: all .4s ease-in-out;
}

.missionimg {
    position: relative;
}

.mission-area-starts {
    position: relative;
}

img.missionimg2 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    position: relative;
}

.missiontextarea ul li span {
    border-radius: 160px;
    background: #141B2C;
    height: 20px;
    width: 20px;
    display: inline-block;
    text-align: center;
    line-height: 17px;
    margin: 0 6px 0 0;
}

.missiontextarea {
    padding: 20px 30px;
    box-shadow: 0px 8px 16px -2px rgba(32, 33, 36, 0.06), 0px 16px 32px -2px rgba(32, 33, 36, 0.1)
}

.vission-section-area {
    position: relative;
    background: var(--gray-color, #EFF7FF);
}

button#pills-profile-tab {
    background: none;
    color: var(--main-text-color, #1D2940);
    font-family: 'Kumbh Sans', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
}

button#pills-profile-tab:hover {
    text-decoration: underline;
    font-weight: 700;
    transition: all .4s ease-in-out
}

button#pills-home-tab {
    background: none;
    color: var(--main-text-color, #1D2940);
    font-family: 'Kumbh Sans', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
}

button#pills-home-tab:hover {
    text-decoration: underline;
    font-weight: 700;
    transition: all .4s ease-in-out;
}

button#pills-contact-tab {
    background: none;
    color: var(--main-text-color, #1D2940);
    font-family: 'Kumbh Sans', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
}

button#pills-contact-tab:hover {
    text-decoration: underline;
    font-weight: 700;
    transition: all .4s ease-in-out;
}

.nav-pills.nav-link.active,
.nav-pills.show>.nav-link {
    font-weight: 700;
    text-decoration: underline;
}

.nav-link.nav-btn1.active {
    font-weight: 700;
}

.vission-textarea {
    padding: 0 132px 0 0;
}

.nav-section-area ul li button {
    padding: 0 0 0 97px;
    display: flex;
    justify-content: space-between;
    position: relative;
}

li.nav-item {
    padding: 0;
}

button#pills-home-tab {
    padding: 0;
}

.nav-section-area ul li {
    margin-bottom: 12px;
}

.vissionimages img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    position: relative;
    z-index: 1;
}

.vissionimages {
    position: relative;
    z-index: 1;
}

img.elementor-23 {
    position: absolute;
    height: 112px;
    width: 112px;
    right: -37px;
    top: -35px;
    z-index: -1;
}

img.about5ims {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    border-radius: 5px;
}

.about5-scetion-area {
    position: relative;
}

.about5-scetion-area {
    background: #fff;
}

.about5-images {
    position: relative;
}

.about5-authorarea {
    border-radius: 10px;
    background: #FFF;
    /* Shadow */
    box-shadow: 0px 4px 50px 0px rgba(0, 0, 0, 0.08);
    padding: 24px 20px;
}

.author0mages {
    border-radius: 64px;
    background: #007DE7;
    display: inline-block;
    height: 20px;
    width: 20px;
    text-align: center;
    line-height: 16px;
    position: relative;
    z-index: 1;
    transition: all .4s ease-in-out;
}

.author0mages::after {
    position: absolute;
    content: "";
    top: -10px;
    background: #007DE7;
    left: -10px;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
    transition: all .4s ease-in-out;
}

.about5-authorarea {
    position: relative;
}

.about5-authortext {
    position: relative;
    padding-left: 50px;
}

.author0mages {
    position: absolute;
}

.about5-authorarea:hover {
    background: #071018;
    transition: all .4s ease-in-out;
}

.about5-authorarea:hover .author0mages img {
    filter: brightness(0);
    transition: all .4s ease-in-out;
}

.about5-authorarea:hover a {
    color: #fff;
    transition: all .4s ease-in-out;
}

.about5-authorarea:hover p {
    color: #fff;
    transition: all .4s ease-in-out;
    opacity: 0.7;
}

.about5-authorarea:hover {
    transform: translateY(-10px);
    transition: all .4s ease-in-out;
}

.about5-authorarea {
    transition: all .4s ease-in-out;
}

.abou-5textarea5 {
    padding: 0 0 0 50px;
}

span.consultingspan {
    border-radius: 2px;
    background: rgba(0, 125, 231, 0.10);
    padding: 10px;
}

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

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

.abouthome6-boxarea {
    border-radius: 2px;
    background: #F4F4F4;
    padding: 28px 20px;
    position: relative;
    transition: all .4s ease-in-out;
}

.abouthome6-boxarea:hover {
    border-radius: 2px;
    background: #35AC39;
    transition: all .4s ease-in-out;
    transform: translateY(-10px);
}

.abouthome6-boxarea:hover a {
    color: #fff;
    transition: all .4s ease-in-out;
}

.abouthome6-boxarea:hover p {
    color: #fff;
    opacity: 0.8;
    transition: all .4s ease-in-out;
}

.documenticons {
    background: #fff;
    display: inline-block;
    height: 64px;
    width: 64px;
    text-align: center;
    line-height: 64px;
    border-radius: 50%;
}

.documents-textarea {
    position: relative;
    padding-left: 85px;
}

.documenticons {
    position: absolute;
}

.counter6-scetion-area {
    background-image: url(../images/sectionimg/couterbg2.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.counter6-scetion-area::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    opacity: 0.85;
    background: #080D06;
    top: 0;
}

.about7-images {
    position: relative;
}

img.elementors10 {
    position: absolute;
    top: -40px;
    left: -40px;
    z-index: -1;
}

span.about-span {
    border-radius: 2px;
    background: rgba(235, 124, 58, 0.20);
    padding: 10px 16px;
    margin-bottom: 24px;
    display: inline-block;
}

.listarea1 span {
    border-radius: 160px;
    background: rgba(235, 124, 58, 0.20);
    height: 20px;
    width: 20px;
    display: inline-block;
    text-align: center;
    line-height: 18px;
}

.listarea1 span svg {
    color: #EB7C3A;
    font-size: 12px;
    font-weight: 700;
}

.listarea1 {
    display: flex;
    align-items: center;
}

.listarea1 p {
    margin-left: 10px;
}

.listarea2 span {
    border-radius: 160px;
    background: rgba(235, 124, 58, 0.20);
    height: 20px;
    width: 20px;
    display: inline-block;
    text-align: center;
    line-height: 18px;
}

.listarea2 span svg {
    color: #EB7C3A;
    font-size: 12px;
    font-weight: 700;
}

.listarea2 {
    display: flex;
    align-items: center;
}

.listarea2 p {
    margin-left: 10px;
}

.listarea2 {
    margin-top: 20px;
}

.about-7textarea {
    padding: 0 0 0 50px;
}


.pera-background1 {
    position: relative;
    transition: all .4s ease-in-out;
}

.pera-background1::after {
    position: absolute;
    content: "";
    background: #196C68;
    top: 0;
    left: 0;
    height: 100%;
    width: 8px;
    transition: all .4s ease-in-out;
}

.pera-background1 {
    border-radius: 1px;
    padding: 16px 24px;
    background: #EFF7F6;
    margin-bottom: 20px;
    transition: all .4s ease-in-out;
    z-index: 1;
}

.pera-background1:hover::after {
    width: 100%;
    z-index: -1;
}

.pera-background1:hover p {
    color: #fff;
    transition: all .5s ease-in-out;
    opacity: 0.8;
}

.pera-background1 p {
    transition: all .4s ease-in-out;
}

span.about8 {
    border-radius: 4px;
    background: rgba(241, 190, 20, 0.10);
    padding: 10px 16px;
}

.about-imagesrea {
    position: relative;
    z-index: 1;
}

.about-imagesrea img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 320px 320px 0 0;
}

img.trandparency {
    width: 148px;
    height: 148px;
    object-fit: cover;
    border-radius: 0;
    position: absolute;
    top: 30px;
    left: 25px;
    z-index: -1;
}

.about10-images {
    position: relative;
}

.about10-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.experiance-area {
    border-radius: 4px;
    background: #86B03C;
    display: inline-block;
    padding: 32px 50px;
    text-align: center;
    color: #fff;
    position: absolute;
    z-index: 1;
    right: -40px;
    top: 30px;
}

.about10list ul li span {
    background: #86B03C;
    height: 20px;
    width: 20px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    font-size: 11px;
    line-height: 20px;
    color: #fff;
    margin: 0 8px 0 0;
}

.textcall-icon {
    border: 1px solid #86B03C;
    display: inline-block;
    height: 48px;
    width: 48px;
    text-align: center;
    line-height: 43px;
    border-radius: 50%;
}

.callicon {
    display: flex;
    align-items: center;
    transition: all .4s ease-in-out;
}

.textcall {
    margin-left: 15px;
}

.callicon:hover .textcall-icon {
    transition: all .4s ease-in-out;
    background: #86B03C;
    /* filter: brightness(0.5); */
}

.callicon:hover .textcall-icon img {
    filter: brightness(0) invert(1);
    transition: all .4s ease-in-out;
}

.callicon:hover .textcall a {
    color: #86B03C;
    transition: all .4s ease-in-out;
}

.divarea {
    display: flex;
    /* text-align: center; */
    vertical-align: middle;
    align-items: baseline;
}

span.about10span {
    border-radius: 2px;
    background: rgba(134, 176, 60, 0.20);
    padding: 8px 12px;
}

.callicon {
    margin-left: 24px;
}

.about10-textarea {
    padding: 0 0 0 100px;
}

.about11-section-area {
    padding: 200px 0 100px;
}

.aboutcounter-area {
    border-radius: 4px;
    background: #22BFCA;
    display: inline-block;
    height: 136px;
    width: 250px;
    text-align: center;
    line-height: 136px;
    position: absolute;
    top: 34%;
    left: 34%;
}

.images-divided-area {
    position: relative;
}

.aboutcounter-area h1 {
    margin-top: 27px;
    margin-bottom: 10px;
}

.images-divided-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.images-first-section img {
    margin-bottom: 30px;
}

.images-second {
    margin-top: 70px;
}

span.aropaln2 {
    border-radius: 2px;
    background: rgba(34, 191, 202, 0.10);
    padding: 10px 16px;
    border-radius: 4px;
}

.about-three__content-btn {
    position: relative;
    display: block;
}

.thm-btn {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-weight: 500;
    text-transform: capitalize;
    padding: 18px 16px;
    border-radius: 4px;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    font-family: var(--thm-font-2);
    letter-spacing: 0.01em;
    overflow: hidden;
    z-index: 1;
}

.thm-btn::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #071A1C;
    color: #ffffff;
    transition: 0.5s;
    transform-origin: bottom;
    transform: translateY(-100%) rotateX(90deg);
}

.thm-btn:hover::before {
    transform: translateY(0) rotateX(0deg);
}

.thm-btn::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #22BFCA;
    color: #ffffff;
    transition: 0.5s;
    transform-origin: top;
    transform: translateY(0) rotateX(0deg);
}

.thm-btn:hover::after {
    transform: translateY(100%) rotateX(90deg);
}

.aboutcounter2 {
    background: #49357F;
}

/*----=========== ABOUT AREA CSS----============*/

/*----=========== SERVICE AREA CSS----============*/
.welcome-page-area {
    background-image: url(../images/background/ourservice-bacground.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 135px 0 10px;
}

.service-tax-area {
    background-image: url(../images/background/ourservice-bacground.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.service-tax-header {
    padding: 0 280px;
    margin-bottom: 60px;
}

.service-box {
    border-radius: 10px;
}

.service-box img {
    border-radius: 10px 10px 0 0;
}

.service-box .content-box {
    border-radius: 0 0 10px 10px;
    padding: 25px;
    background: #FFF;
    margin-bottom: 30px;
}

.tax-consulting-box {
    border-radius: 4px;
    background: #FFF;
    padding: 32px 20px;
    margin-bottom: 30px;
    transition: all .4s ease-in-out;
}

.tax-consulting-box {
    position: relative;
    z-index: 2;
}

.tax-consulting-box::after {
    position: absolute;
    content: "";
    border-radius: 4px;
    background: var(--text-color, #002147);
    height: 100%;
    width: 0;
    top: 0;
    right: 0;
    z-index: -1;
    transition: all .4s ease-in-out;
}

.tax-consulting-box:hover::after {
    width: 100%;
    left: 0;
    right: auto;
}

.tax-box-area {
    display: inline-block;
    background: var(--button-linner, linear-gradient(130deg, #1252DE 0%, rgba(109, 15, 221, 0.53) 100%));
    height: 80px;
    width: 80px;
    line-height: 80px;
    text-align: center;
    border-radius: 50%;
    margin-bottom: 24px;
}

a.learnmore span svg {
    width: 16px;
    height: 16px;
    transform: rotate(-45deg);
    font-weight: 500;
    transition: all .3s ease-in-out;
}

.tax-consulting-box:hover h1 {
    color: #fff;
    transition: all .3s ease-in-out;
}

.tax-consulting-box:hover p {
    color: rgba(255, 255, 255, 0.70);
    transition: all .3s ease-in-out;
}

.tax-consulting-box:hover a {
    color: #fff;
    transition: all .3s ease-in-out;
}

.tax-consulting-box a {
    transition: all .3s ease-in-out;
}

.tax-consulting-box p {
    transition: all .3s ease-in-out;
}

.tax-consulting-box h1 {
    transition: all .3s ease-in-out;
}

.service-tax-area {
    position: relative;
}

img.elementoe5 {
    position: absolute;
    top: 0;
    right: 0;
}

.service-2-section-area {
    background-image: url(../images/background/service-benefits-bacground.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.service-taxs-header h1 {
    padding: 0 330px;
}

.service-single-box-area:hover {
    transform: translateY(-10px);
    transition: all .4s ease-in-out;
}

.service-single-box-area {
    border-radius: 5px;
    background: #FFF;
    padding: 28px 20px;
    margin-bottom: 30px;
}

.taxs-icon {
    background: var(--button-linner, linear-gradient(130deg, #1252DE 0%, rgba(109, 15, 221, 0.53) 100%));
    height: 80px;
    width: 80px;
    display: inline-block;
    text-align: center;
    line-height: 80px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.service-single-box-area:hover {
    border-radius: 4px;
    background: var(--text-color, #002147);
    box-shadow: 0px 4px 48px 0px rgba(0, 0, 0, 0.09);
    color: #fff;
    transition: all .4s ease-in-out;
}

.service-single-box-area {
    transition: all .4s ease-in-out;
}

.service-single-box-area:hover p {
    color: rgba(255, 255, 255, 0.80);
    transition: all .3s ease-in-out;
}

.service-single-box-area:hover h1 {
    color: #fff;
    transition: all .3s ease-in-out;
}

img.elementor7 {
    position: absolute;
    top: 0;
}

.service-2-section-area {
    position: relative;
}

span.tax-palnning {
    color: rgb(252, 118, 50) background-image:-moz-linear-gradient(1deg, rgb(252, 118, 50) 0%, rgb(247, 39, 80) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(90deg, #1252DE 0%, rgba(109, 15, 221, 0.77) 100%);
}

/* homepage-2 service */
.service-haeder-text h1 {
    padding: 0 320px;
}

.service2-section-areas {
    background-image: url(../images/background/service2-bacground.png);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.service2-icon {
    background: #E8EDF1;
    height: 70px;
    display: inline-block;
    width: 70px;
    text-align: center;
    line-height: 70px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.service-after-before {
    position: relative;
    z-index: 1;
    padding: 28px 24px;
    transition: all .4s ease-in-out;
}

.service-after-before::after {
    border-radius: 5px;
    background: #FFF;
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    padding: 28px 24px;
    top: 0;
    z-index: -1;
    transition: all .4s ease-in-out;
}

a.learn-more:hover {
    color: #1A237E;
    transition: all .4s ease-in-out;
}

a.learn-more:hover span {
    padding-left: 5px;
    transition: all .4s ease-in-out;
}

a.learn-more span {
    transition: all .4s ease-in-out;
}

.service-after-before {
    margin-bottom: 30px;
}

.service-after-before::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background-image: url(../images/sectionimg/servicebg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
    transition: all .4s ease-in-out;
    border-radius: 5px;
}

.service-after-before:hover::before {
    border-radius: 5px;
    opacity: 0.88;
    background-image: url(../images/sectionimg/servicebg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
    transition: all .4s ease-in-out;
}

.service-after-before:hover::after {
    border-radius: 5px;
    opacity: 0.88;
    background: #141B2C;
    z-index: 1;
    transition: all .4s ease-in-out;
}

.service-after-before:hover .service2-icon {
    position: relative;
    z-index: 3;
    background: #fff;
    transition: all .4s ease-in-out;
}

.service2-icon {
    position: relative;
    z-index: 3;
}

.service-after-before p {
    position: relative;
    z-index: 3;
    transition: all .4s ease-in-out;
}

.service-after-before h1 {
    position: relative;
    z-index: 3;
    transition: all .4s ease-in-out;
}

.service-after-before h1 {
    position: relative;
    z-index: 3;
    transition: all .4s ease-in-out;
}

.service-after-before a.learn-more {
    position: relative;
    z-index: 3;
    transition: all .4s ease-in-out;
}

.service-after-before:hover p {
    color: #fff;
    transition: all .4s ease-in-out;
}

.service-after-before:hover h1 {
    color: #fff;
    transition: all .4s ease-in-out;
}

.service-after-before:hover a.learn-more {
    color: #fff;
    transition: all .4s ease-in-out;
}

img.elementor-7 {
    position: absolute;
    left: -100px;
    bottom: -18px;
}

/* homepage-2 service */
.service3-textarea h1 {
    padding: 0 300px;
}

.service3-section-area {
    background: #E9EDF4;
    position: relative;
}

a.laearnmore2 span svg {
    transform: rotate(-45deg);
    transition: all .4s ease-in-out;
}

a.laearnmore2 {
    transition: all .4s ease-in-out;
}

a.laearnmore2:hover {
    color: #0C161D;
    transition: all .4s ease-in-out;
}

a.laearnmore2:hover span svg {
    margin-left: 5px;
    transform: rotate(0);
}

.service3-boxarea {
    position: relative;
    border-radius: 2px;
    background: #FFF;
    padding: 35px 25px;
}

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

.service3-imag1 {
    position: absolute;
    top: 20px;
    right: 0;
}

img.elementor-18 {
    position: absolute;
    top: 0;
    right: 0;
}

.service3-boxarea1:hover {
    transform: translateY(-10px);
    transition: all .4s ease-in-out;
}

.service3-boxarea1:hover {
    border-radius: 10px;
    background: #044E7C;
    color: #fff;
    transition: all .4s ease-in-out;
}

.service3-boxarea1:hover .service3-icon {
    background: #fff;
    transition: all .4s ease-in-out;
}

.service3-boxarea1 {
    transition: all .4s ease-in-out;
}

.service3-boxarea1:hover h1 {
    color: #fff;
    transition: all .4s ease-in-out;
}

.service3-boxarea1:hover p {
    color: #fff;
    transition: all .4s ease-in-out;
}

.service3-boxarea1 h1 {
    transition: all .4s ease-in-out;
}

.service3-boxarea1 p {
    transition: all .4s ease-in-out;
}

.service3-imag1 img {
    border-radius: 150px 120px 0 0;
    width: 100%;
    object-fit: cover;
}

.service-3-section-area {
    background-image: url(../images/background/practice4-background.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.service5-icons {
    background: #6083A9;
    width: 70px;
    height: 70px;
    text-align: center;
    line-height: 70px;
    border-radius: 50%;
    display: inline-block;
    transition: all .4s ease-in-out;
}

.service4-boxarea5 {
    background: #fff;
    min-width: 275px;
    min-height: 175px;
    display: flex;
    line-height: 50px;
    text-align: center;
    justify-content: center;
    align-items: center;
    transition: all .4s ease-in-out;
}

.service4-boxarea5:hover {
    border-radius: 2px;
    background: var(--main-color, #1D2940);
    transition: all .4s ease-in-out;
}

.service4-boxarea5:hover .service5-icons {
    background: #fff;
    transition: all .4s ease-in-out;
}

.service4-boxarea5:hover .service5-icons img {
    filter: brightness(0);
    transition: all .4s ease-in-out;
}

.service4-boxarea5:hover p {
    color: #fff;
    transition: all .4s ease-in-out;
}

img.elementor24 {
    position: absolute;
    top: 0;
}

img.elementor25 {
    position: absolute;
    bottom: 0;
    right: 0;
}

.service4-boxarea5 {
    box-shadow: 0px 0px 49px 0px rgba(0, 0, 0, 0.09);
}

.service3-boxarea.bgservice2 {
    box-shadow: 0px 0px 49px 0px rgba(0, 0, 0, 0.09);
}

.actslaw-data {
    border: 1px solid #e1e1e1;
}

.actslaw-data h3 {
    background: #f0f0f0;
    padding: 15px;
}

.actslaw-data .serviceour-area {
    height: 450px;
    overflow: auto;
    padding: 24px 20px;
}

.actslaw-details {
    height: 500px;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 25px
}

.singlepalnning-area {
    transition: all .4s ease-in-out;
}

.singlepalnning-area:hover {
    transition: all .4s ease-in-out;
}

.singlepalnning-area:hover a {
    transition: all .4s ease-in-out;
}

.singlepalnning-area:hover span svg {
    transition: all .4s ease-in-out;
    transform: rotate(90deg);
    transition: all .4s ease-in-out;
}

.downloadbrowser {
    border-radius: 2px;
    background: var(--gray-color, #EFF7FF);
    padding: 24px 20px;
    margin-top: 30px;
}

a.docbtn1 {
    border-radius: 2px;
    background: var(--main-text-color, #1D2940);
    padding: 18px 24px;
    display: inline-block;
}

a.docbtn1 img {
    margin: 0 4px 0 0;
}

.doc-btn {
    display: flex;
    align-items: center;
}

a.docbtn1:hover {
    background: #fff;
    color: #1D2940;
}

a.docbtn1:hover {
    color: #1D2940;
    transition: all .4s ease-in-out;
}

a.docbtn1:hover img {
    filter: brightness(0);
    transition: all .4s ease-in-out;
}

.docbtn2 {
    border-radius: 2px;
    background: #fff;
    padding: 18px 24px;
    display: inline-block;
}

.docbtn2 img {
    margin: 0 4px 0 0;
}

.doc-btn2 {
    display: flex;
    align-items: center;
}

.docbtn2:hover {
    border-radius: 2px;
    background: var(--main-text-color, #1D2940);
    transition: all .4s ease-in-out;
    color: #fff;
}

.docbtn2:hover a {
    color: #fff;
    transition: all .4s ease-in-out;
}

.docbtn2:hover img {
    filter: brightness(0) invert(1);
    transition: all .4s ease-in-out;
}

.needed-section {
    border-radius: 10px;
    background: #E9EDF4;
    margin-bottom: 30px;
    padding: 25px;
}

.needed-section a {
    border-radius: 7px;
    background: #044E7C;
    padding: 12px 20px;
}

.needed-section a img {
    margin: 0 4px 0 0;
}

.needed-section a:hover {
    border-radius: 2px;
    background: var(--main-text-color, #1D2940);
    transition: all .4s ease-in-out;
    color: #fff;
}

.needed-section a {
    transition: all .4s ease-in-out;
    display: inline-block;
}

.quito-contact {
    border-radius: 10px;
    background: #E9EDF4;
    padding: 25px;
}

.quitoinput input {
    border-radius: 5px;
    background: #FFF;
    border: none;
    width: 100%;
    padding: 10px 16px;
    margin-bottom: 15px;
    outline: none;
}

.quitoinput textarea {
    width: 100%;
    height: 120px;
    border-radius: 2px;
    background: #FFF;
    border: none;
    padding: 18px 16px;
    outline: none;
}

.quitoinput input::placeholder {
    color: var(--paragraph-color, #4D5A72);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    /* 100% */
}

.quitoinput textarea::placeholder {
    color: var(--paragraph-color, #4D5A72);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    /* 100% */
}

button.quitobtn {
    border-radius: 7px;
    background: #044E7C;
    border: none;
    outline: none;
    padding: 12px 20px;
    margin-top: 24px;
    transition: all .4s ease-in-out;
}

button.quitobtn span svg {
    transform: rotate(-45deg);
    margin-left: 4px;
    transition: all .4s ease-in-out;
}

button.quitobtn:hover {
    background: var(--main-color, #6083A9);
    transition: all .4s ease-in-out;
}

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

.serviceauthior-area {
    padding: 0 50px 0 50px;
}

.serviceauthior-area .details-area {
    padding: 30px 25px;
    border-radius: 10px;
    border-top: none;
    box-shadow: 0 20px 60px rgb(0 0 0 / .15), 0 10px 30px rgb(0 0 0 / .1);
}

.border30 {
    border: 1px solid #1D2940;
    opacity: 0.2;
    margin-top: 60px;
    margin-bottom: 60px;
    width: 100%;
}

img.approahimages {
    height: 28px;
    width: 28px;
    object-fit: cover;
}

.approach-img {
    border-radius: 60px;
    background: var(--main-color, #6083A9);
    display: inline-block;
    height: 60px;
    width: 60px;
    text-align: center;
    align-items: center;
    line-height: 57px;
}

.approach-area {
    border-radius: 2px;
    background: #FFF;
    /* Shadow */
    box-shadow: 0px 0px 49px 0px rgba(0, 0, 0, 0.09);
    padding: 24px;
    position: relative;
    transition: all .4s ease-in-out;
}

.approach-text {
    position: relative;
    padding-left: 80px;
}

.approach-img {
    position: absolute;
}

.approach-area:hover {
    border-radius: 2px;
    background: var(--main-text-color, #1D2940);
    box-shadow: 0px 0px 49px 0px rgba(0, 0, 0, 0.09);
}

.approach-area:hover .approach-img {
    background: #fff;
    transition: all .4s ease-in-out;
}

.approach-area:hover .approach-img img {
    filter: brightness(0);
    transition: all .4s ease-in-out;
}

.approach-area:hover a {
    color: #fff;
    transition: all .4s ease-in-out;
}

.approach-area:hover p {
    color: rgba(255, 255, 255, 0.80);
    transition: all .4s ease-in-out;
}

.checkservice-area p {
    margin-bottom: 20px;
}

.checkservice-area p span img {
    width: 9px;
    height: 9px;
}

.checkservice-area p span {
    border-radius: 160px;
    background: #141B2C;
    height: 20px;
    width: 20px;
    display: inline-block;
    line-height: 17px;
    text-align: center;
    margin: 0 6px 0 0;
    margin-bottom: 10px;
}

.faq-section-area {
    background: var(--gray-color, #EFF7FF);
    position: relative;
}

.faq-section-area.otherbg {
    background: #fff;
}

.accordian-area.accourbutton button {
    padding: 22px 20px;
}

.accordian-area.accourbutton h2.accordion-header {
    border: none;
}

.accordion-item.aos-init.aos-animate {
    border: 1px solid #DDDFE2;
    border-radius: 5px 5px 0 0;
}

.accordion-item.borderlefts {
    border: 1px solid #EFF7FF;
    background: none;
}

.service5-section-area {
    background: #EEF7FF;
    position: relative;
}

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

.service5-box5area {
    border-radius: 0px 0px 4px 4px;
    background: #FFF;
    border-radius: 5px;
}

.servicetextimg {
    padding: 24px;
}

.servicetextimg a {
    position: relative;
}

.servicetextimg a::after {
    position: absolute;
    content: "";
    bottom: 0;
    transition: all .4s ease-in-out;
    left: 0;
    text-decoration: underline;
    z-index: 1;
    height: 0;
    background: #071018;
    width: 0;
}

.servicetextimg a:hover::after {
    color: #071018;
    height: 1px;
    width: 100%;
    transition: all .4s ease-in-out;
}

.servicetextimg a:hover {
    color: #071018;
    transition: all .4s ease-in-out;
}

.learnmore51 a {
    cursor: pointer;
    transition: all .4s ease-in-out;
}

.learnmore51 a:hover svg {
    padding-left: 5px;
    transition: all .4s ease-in-out;
}

.learnmore51 a svg {
    transition: all .4s ease-in-out;
}

.service5-box5area:hover .service5img img {
    transform: scale(1.1);
    transition: all .4s ease-in-out;
}

.service5img {
    overflow: hidden;
    transition: all .4s ease-in-out;
}

.service5img img {
    transition: all .4s ease-in-out;
}

.service6bor-area6:hover {
    border-radius: 2px;
    background: #35AC39;
    transition: all .4s ease-in-out;
    transform: translateY(-10px);
}

.service6bor-area6 {
    transition: all .4s ease-in-out;
}

.service6bor-area6:hover a {
    color: #fff;
    transition: all .4s ease-in-out;
}

.service6bor-area6:hover p {
    color: #fff;
    opacity: 0.8;
    transition: all .4s ease-in-out;
}

.service6bor-area6 a svg {
    transition: all .4s ease-in-out;
}

.service6bor-area6 a:hover svg {
    transition: all .4s ease-in-out;
    padding-left: 5px;
}

.service7-section-area {
    background: #FFF4EE;
    position: relative;
}

img.elementors11 {
    position: absolute;
    top: 0;
    left: 0;
}

img.elementors12 {
    position: absolute;
    bottom: 0;
    right: 0;
}

.secvice8-section-area {
    background: #EFF7F6;
    position: relative;
}

img.elementors14 {
    position: absolute;
    top: 0;
    right: 0;
}

.service-8-boxarea {
    border-radius: 4px;
    background: #FFF;
    padding: 32px 20px;
    position: relative;
    z-index: 2;
}

.service-8-boxarea::after {
    position: absolute;
    content: "";
    border-radius: 4px;
    background: #196C68;
    top: 0;
    left: 0;
    transition: all .4s ease-in-out;
    height: 100%;
    width: 0;
    z-index: -1;
}

.service-8-boxarea::before {
    position: absolute;
    content: "";
    border-radius: 0 4px 4px 0;
    background: #196C68;
    bottom: 0;
    right: 0;
    transition: all .4s ease-in-out;
    height: 100%;
    width: 0;
    z-index: -1;
}

.service-8-boxarea:hover::after {
    transition: all .4s ease-in-out;
    width: 50%;
    border-radius: 4px 0 0 4px;
}

.service-8-boxarea:hover::before {
    transition: all .4s ease-in-out;
    width: 50%;
}

.service-8-icons {
    background: #FCF2D0;
    height: 80px;
    display: block;
    width: 80px;
    text-align: center;
    line-height: 80px;
    margin: 0 auto;
    border-radius: 50%;
    margin-bottom: 24px;
}

a.home8learn span svg {
    transform: rotate(-45deg);
    transition: all .4s ease-in-out;
}

.service-8-boxarea:hover .service-8-icons {
    background: rgba(255, 255, 255, 0.20);
    transition: all .4s ease-in-out;
}

.service-8-boxarea:hover .service-8-icons img {
    filter: brightness(0) invert(1);
}

.service-8-boxarea:hover a {
    color: #fff;
    transition: all .4s ease-in-out;
    position: relative;
    z-index: 2;
}

.service-8-boxarea:hover p {
    color: rgba(255, 255, 255, 0.70);
    transition: all .4s ease-in-out;
}

.service9-section-area {
    background: #EFF7FF;
    position: relative;
}

img.elementors59 {
    position: absolute;
    top: 0;
    right: 0;
}

img.elementors60 {
    position: absolute;
    bottom: 0;
    left: 0;
}

.service9-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px 4px 0 0;
}

.service9-boxarea {
    background: #fff;
    position: relative;
}

.service9-texreas {
    padding: 54px 20px 40px 20px;
    position: relative;
    z-index: 1;
    transition: all .4s ease-in-out;
}

.service9icons {
    border-radius: 70px;
    background: #1DAF68;
    display: inline-block;
    height: 70px;
    width: 70px;
    text-align: center;
    line-height: 70px;
    position: absolute;
    top: 50%;
    left: 20px;
    transition: all .4s ease-in-out;
    z-index: 2;
}

.service9-texreas::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    border-radius: 0px 0px 4px 4px;
    background: #1DAF68;
    transition: all .4s ease-in-out;
    z-index: -1;
}

.service9-boxarea:hover .service9-images img {
    transform: scale(1.1);
    transition: all .4s ease-in-out;
    border-radius: 4px 4px 0 0;
}

.service9-images {
    overflow: hidden;
    transition: all .4s ease-in-out;
    border-radius: 4px 4px 0 0;
}

.service9-images img {
    transition: all .4s ease-in-out;
}

.service9-boxarea:hover {
    border-radius: 4px;
}

.service9-boxarea:hover .service9icons img {
    filter: none;
}

.service9-boxarea:hover .service9icons {
    background: #fff;
}

.service9icons img {
    filter: brightness(0) invert(1);
    transition: all .4s ease-in-out;
}

.service9-boxarea:hover .service9-texreas::after {
    height: 100%;
    transition: all .4s ease-in-out;
}

.service9-boxarea:hover .service9-texreas p {
    color: rgba(255, 255, 255, 0.90);
    transition: all .4s ease-in-out;
}

.service9-boxarea:hover .service9-texreas a {
    color: #fff;
    transition: all .4s ease-in-out;
}

.service10-section-area {
    position: relative;
    background: #EFF7F6;
}

img.elementors62 {
    position: absolute;
    top: 0;
    right: 0;
}

.serviceleftblog-section-area {
    background: var(--Gray-Color, #EFF7FF);
}

img.elementors63 {
    position: absolute;
    bottom: 0;
    left: 0;
}

.service10-boxarea {
    background: #FFF;
    padding: 32px 20px;
    border-radius: 4px;
    position: relative;
}

.welcome-ellipsbox {
    position: relative;
    margin-bottom: 24px;
}

.elips-icon6 {
    background: #86B03C;
    display: inline-block;
    height: 72px;
    width: 72px;
    line-height: 72px;
    text-align: center;
    border-radius: 50%;
    position: absolute;
    left: 152px;
    top: 9px;
}

.elips-icon6 img {
    filter: brightness(0) invert(1);
}

.service10-boxarea {
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    transition: all .4s ease-in-out;
}

.service10-boxarea::after {
    position: absolute;
    content: "";
    bottom: 0;
    right: 0;
    background: #86B03C;
    height: 30px;
    width: 30px;
    z-index: -1;
    border-radius: 100px 0 0 0;
    transition: all .4s ease-in-out;
}

.service10-boxarea:hover::after {
    height: 100%;
    width: 100%;
    transition: all .4s ease-in-out;
    border-radius: 4px;
}

.service10-boxarea:hover .elips-icon6 {
    background: #fff;
    transition: all .4s ease-in-out;
}

.service10-boxarea:hover .elips-icon6 img {
    filter: none;
    transition: all .4s ease-in-out;
}

.service10-boxarea:hover img {
    filter: brightness(0) invert(1);
    transition: all .4s ease-in-out;
}

.service10-boxarea:hover a {
    color: #fff;
    transition: all .4s ease-in-out;
}

.service10-boxarea:hover p {
    color: rgba(255, 255, 255, 0.90);
    transition: all .4s ease-in-out;
}

.service10-boxarea:hover {
    transform: translateY(-10px);
    transition: all .4s ease-in-out;
}

.servicebene10-section-area {
    position: relative;
    background: #EFF7F6;
}

img.elementors65 {
    position: absolute;
    bottom: 0;
    right: 0;
}

img.elmentors66 {
    position: absolute;
    top: 0;
    left: 0;
}

.service-allspan {
    position: relative;
}

.servicebene10-boxarea {
    border-radius: 4px;
    background: #FFF;
    padding: 24px 20px;
}


.servicespan .service-allspan {
    border-radius: 64px;
    background: #86B03C;
    height: 20px;
    width: 20px;
    display: inline-block;
    text-align: center;
    line-height: 20px;
    font-size: 12px;
    color: #fff;
}

.servicebene10-boxarea:hover .service-allspan::after {
    background: #fff;
    opacity: 0.3;
    transition: all .4s ease-in-out;
    z-index: 1;
}

.servicebene10-boxarea {
    position: relative;
    z-index: 1;
    transition: all .4s ease-in-out;
    margin-bottom: 30px;
}

.servicebene10-boxarea::after {
    position: absolute;
    content: "";
    bottom: 0;
    right: 0;
    background-color: #86B03C;
    z-index: -1;
    transition: all .4s ease-in-out;
    height: 30px;
    width: 30px;
    border-radius: 100px 0 0 0;
}

.servicebene10-boxarea:hover::after {
    height: 100%;
    width: 100%;
    transition: all .4s ease-in-out;
    ;
    border-radius: 4px;
}

.servicebene10-boxarea:hover a {
    color: #fff;
    transition: all .4s ease-in-out;
}

.servicebene10-boxarea:hover p {
    color: rgba(255, 255, 255, 0.90);
    transition: all .4s ease-in-out;
}

.servicebene10-boxarea:hover .service-allspan {
    background-color: #fff;
    color: #000;
    transition: all .4s ease-in-out;
}

.servicebene10-boxarea:hover .service-allspan img {
    filter: brightness(0);
}

.service10-textarea {
    position: relative;
    padding-left: 75px;
}

.servicebene10-boxarea:hover {
    transform: translateY(-10px);
    transition: all .4s ease-in-out;
}

.service-allspan {
    position: absolute;
    left: 30px;
}

.service-allspan::after {
    position: absolute;
    content: "";
    background: #DBE7C5;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    left: -10px;
    top: -10px;
    z-index: -1;
    transition: all .4s ease-in-out;
}

.service11-section-area {
    background: #F6F6F6;
    position: relative;
}

.service11-img img {
    width: 100%;
    height: 100%;
    border-radius: 4px;
    transition: all .4s ease-in-out;
}

.service-vectorarea {
    border-radius: 70px;
    background: #22BFCA;
    display: inline-block;
    height: 70px;
    width: 70px;
    transition: all .4s ease-in-out;
    line-height: 60px;
}

.service-vectorarea img {
    filter: brightness(0) invert(1);
}

.service11-boxtext {
    background: #fff;
    padding: 64px 20px 24px 20px;
    position: relative;
    border-radius: 4px;
    width: 330px;
    text-align: center;
    vertical-align: middle;
    align-items: center;
    left: 11%;
    right: 50%;
    top: -35px;
    z-index: 1;
    transition: all .4s ease-in-out;
}

.service-vectorarea {
    position: absolute;
    top: 42%;
    left: 44%;
    text-align: center;
    vertical-align: middle;
    z-index: 2;
}

.service11-boxarea {
    position: relative;
}

.service11-boxtext::after {
    position: absolute;
    content: "";
    border-radius: 0px 0px 4px 4px;
    background: #22BFCA;
    height: 0;
    width: 100%;
    left: 0;
    top: 0;
    z-index: -1;
    transition: all .4s ease-in-out;
}

.service11-boxarea:hover .service11-boxtext {
    width: 100%;
    transition: all .4s ease-in-out;
    left: 0;
    padding: 64px 60px 24px 60px;
}

.service11-boxarea:hover .service11-boxtext::after {
    height: 100%;
    transition: all .4s ease-in-out;
}

.service11-boxarea:hover a {
    color: #fff;
    transition: all .4s ease-in-out;
}

.service11-boxarea:hover p {
    color: #fff;
    transition: all .4s ease-in-out;
}

.service11-boxarea:hover .service-vectorarea {
    transition: all .4s ease-in-out;
    background-color: #fff;
}

.service11-boxarea:hover .service11-img img {
    transform: scale(1.1);
    transition: all .4s ease-in-out;
}

.service11-img {
    overflow: hidden;
    transition: all .4s ease-in-out;
    border-radius: 5px;
}

.service11-boxarea:hover .service-vectorarea img {
    filter: none;
    transition: all .4s ease-in-out;
}

.learnmore11:hover span {
    margin-left: 4px;
    transition: all .4s ease-in-out;
}

.service11-boxarea {
    margin-bottom: 30px;
}

.servicebenefites11-section-area {
    background: #071A1C;
    position: relative;
}

img.elementors77 {
    position: absolute;
    bottom: 0;
    left: 0;
}

.immigrationarea {
    background: #203133;
    padding: 16px;
    border-radius: 4px;
    position: relative;
    z-index: 1;
    transition: all .4s ease-in-out;
}

.immigrationarea span {
    background: #203F42;
    height: 32px;
    width: 32px;
    display: inline-block;
    text-align: center;
    line-height: 32px;
    border-radius: 4px;
    margin: 0 14px 0 0;
    transition: all .4s ease-in-out;
    color: #1EA5AF;
}

.immigrationarea:hover {
    background: #1EA5AF;
    transition: all .4s ease-in-out;
    transform: translateY(-5px);
}

.immigrationarea:hover::after {
    width: 100%;
    transition: all .4s ease-in-out;
    z-index: -1;
}

.immigrationarea:hover a {
    color: #fff;
    transition: all .4s ease-in-out;
}

.immigrationarea:hover span {
    transition: all .4s ease-in-out;
}

.immigrationarea:hover span {
    color: #fff;
    background: #4BB7BF;
    transition: all .4s ease-in-out;
}

.immigrationarea {
    margin-bottom: 16px;
    width: 100%;
}

.immigritation-listarea {
    padding: 0 0 0 70px;
}

span.aropaln2 img {
    margin: 0 4px 0 0;
}

.countries-placearea img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px 4px 0 0;
}

.countries-placeauhtor {
    border-radius: 0px 0px 4px 4px;
    background: #F6F6F6;
    padding: 60px 20px 24px 20px;
    position: relative;
    z-index: 1;
}

.flagsarea img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 50%;
}

.flagsarea {
    position: absolute;
    top: 45%;
    left: 40%;
    z-index: 1;
}

.countries-placearea {
    position: relative;
}

.countries-placeauhtor::after {
    position: absolute;
    content: "";
    height: 0;
    width: 100%;
    left: 0;
    bottom: 0;
    z-index: -1;
    background: #22BFCA;
    transition: all .4s ease-in-out;
}

.countries-placearea:hover .countries-placeauhtor::after {
    height: 100%;
    transition: all .4s ease-in-out;
    border-radius: 0 0 4px 4px;
}

.countries-placearea-area {
    margin-bottom: 30px;
}

.countries-placearea:hover a {
    color: #fff;
    transition: all .4s ease-in-out;
}

.countries-placearea:hover .countriesfirstimg img {
    transform: scale(1.1);
    transition: all .4s ease-in-out;
}

.countriesfirstimg {
    overflow: hidden;
    border-radius: 4px 4px 0 0;
    transition: all .4s ease-in-out;
}

.countriesfirstimg img {
    transition: all .4s ease-in-out;
}

.countries-placearea:hover p {
    color: #fff;
    transition: all .4s ease-in-out;
}

.countries-placearea {
    margin-bottom: 30px;
}

.countries-tabs ul {
    justify-content: center;
    margin-bottom: 60px;
}

.countries-tabs ul li.nav-item button {
    color: #071A1C;
    font-family: Outfit;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 16px;
    border-radius: 4px;
    background: #F6F6F6;
    padding: 16px 20px;
    margin: 0 16px 0 0;
}

.countries-tabs ul li.nav-item button.active {
    border-radius: 4px;
    background: #22BFCA;
}

a.thmbtn12::after {
    background: #49357F;
}

.service11-boxtext.service12box::after {
    background: #49357F;
}

.service-vectorarea.servicevector {
    background: #49357F;
}

.themebtn11.thmbtn12 {
    background: #49357F;
}

.themebtn11.thmbtn12:hover {
    color: #49357F;
    background: #fff;
    outline: 1px solid transparent;
    outline-color: transparent;
    outline-offset: none;
    text-shadow: none;
    border: none;
}

.immigratation2:hover {
    background: #49357F;
}

.immigratation2:hover span {
    background: #6D5D99;
}

.immigratation2 span {
    color: #ffff;
}

.counter-tabs12 ul li button.nav-link.active {
    background: #49357F;
}

.countries-placeauhtor.counterplacearea::after {
    background: #49357F;
}

.workimmigration .work-iconarea {
    background: #49357F;
}

.work-iimigrationarea.workimmigration:hover .work-textarea {
    background: #49357F;
}

.servicepreview-icon {
    background: #007DE7;
    height: 80px;
    width: 80px;
    display: inline-block;
    border-radius: 50%;
    margin: 0 auto;
    text-align: center;
    justify-content: center;
    align-items: center;
    transition: all .4s ease-in-out;
    line-height: 74px;
    margin-bottom: 24px;
}

.servicepreview-icon img {
    filter: brightness(0) invert(1);
    transition: all .4s ease-in-out;
}

.service-preview-box {
    background: #fff;
    border-radius: 4px;
    padding: 28px 20px;
    position: relative;
    transition: all .4s ease-in-out;
    margin-bottom: 30px;
}

.service-preview-box:hover {
    border-radius: 4px;
    background: #007DE7;
    transition: all .4s ease-in-out;
}

.service-preview-box:hover a {
    color: #fff;
    transition: all .4s ease-in-out;
}

.service-preview-box:hover p {
    color: #fff;
    transition: all .4s ease-in-out;
}

.service-preview-box:hover .servicepreview-icon {
    background: #fff;
    transition: all .4s ease-in-out;
}

.service-preview-box:hover .servicepreview-icon img {
    filter: none;
    transition: all .4s ease-in-out;
}

.service-preview-box a i {
    transform: rotate(-45deg);
    margin-left: 4px;
}

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

a.multiplebtn {
    border-radius: 5px;
    background: #007DE7;
    padding: 14px 22px;
    line-height: 24px;
    transition: all .4s ease-in-out;
    position: relative;
    z-index: 1;
    border-radius: 5px;
}

a.multiplebtn::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 0;
    transition: all .4s ease-in-out;
    left: 0;
    top: 0;
    z-index: -1;
    background: #fff;
    border-radius: 5px;
}

a.multiplebtn:hover::after {
    width: 100%;
    height: 100%;
    transition: all .4s ease-in-out;
    border-radius: 5px;
}

a.multiplebtn:hover {
    color: #007DE7;
    transform: translateY(-5px);
}

a.multiplebtn i {
    margin-left: 4px;
    transform: rotate(-45deg);
    transition: all .4s ease-in-out;
}

.prewhome-btn {
    text-align: center;
}

.singlebtn {
    background: #fff;
    padding: 14px 22px;
    border-radius: 5px;
    transition: all .4s ease-in-out;
    line-height: 24px;
    position: relative;
    z-index: 1;
}

.singlebtn::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 0;
    transition: all .4s ease-in-out;
    top: 0;
    left: 0;
    background: #007DE7;
    z-index: -1;
    border-radius: 5px;
}

.singlebtn:hover::after {
    height: 100%;
    width: 100%;
    transition: all .4s ease-in-out;
    border-radius: 5px;
}

.singlebtn:hover {
    background: #007DE7;
    color: #fff;
    transform: translateY(-5px);
}

.singlebtn i {
    margin-left: 4px;
    transform: rotate(-45deg);
}

.preview-homepagesarea {
    position: relative;
    overflow: hidden;
    transition: all .4s ease-in-out;
    z-index: 2;
    margin-bottom: 30px;
}

.preview-homepagesarea::after {
    position: absolute;
    background: #1D2940;
    height: 100%;
    content: "";
    width: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    transition: all .4s ease-in-out;
    z-index: -1;
    border-radius: 5px;
    visibility: hidden;
    opacity: 0;
}

.preview-homepagesarea:hover::after {
    transition: all .4s ease-in-out;
    height: 100%;
    width: 100%;
    z-index: 1;
    border-radius: 5px;
    visibility: visible;
    opacity: 0.9;
}

.preview-homepagesarea:hover .prewhome-btn {
    visibility: visible;
    height: 65%;
    opacity: 1;
    transition: all .4s ease-in-out;
    z-index: 2;
}

.prewhome-btn {
    visibility: hidden;
    left: 25%;
    right: 25%;
    position: absolute;
    z-index: 2;
    height: 0;
    transition: all .4s ease-in-out;
    bottom: 0;
}

a.lawconsulting {
    border-radius: 4px;
    background: #F1F7FF;
    padding: 12px;
    margin-bottom: 49px;
    width: 100%;
    transition: all .4s ease-in-out;
}

a.lawconsulting:hover {
    border-radius: 2px;
    background: #007DE7;
    color: #fff;
    transition: all .4s ease-in-out;
}

.prevewinber-section-area {
    background: #F1F7FF;
    position: relative;
}

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

.innerpages-boxarea {
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all .4s ease-in-out;
    margin-bottom: 24px;
}

.innerpages-boxarea::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    transition: all .4s ease-in-out;
    z-index: -1;
    background: #1D2940;
    opacity: 0;
    visibility: hidden;
    border-radius: 5px;
}

.innerpages-boxarea:hover::after {
    height: 100%;
    width: 100%;
    transition: all .4s ease-in-out;
    z-index: 1;
    visibility: visible;
    opacity: 0.7;
}

.inner-activebtn {
    text-align: center;
    visibility: hidden;
    height: 0;
    bottom: 0;
    transition: all .4s ease-in-out;
    opacity: 0;
    position: absolute;
    left: 25%;
    z-index: -1;
    right: 25%;
}

.innerpages-boxarea:hover .inner-activebtn {
    visibility: visible;
    height: 50%;
    opacity: 1;
    transition: all .4s ease-in-out;
    z-index: 2;
}

a.linkabout {
    border-radius: 4px;
    background: #FFF;
    display: inline-block;
    padding: 12px;
    margin-bottom: 48px;
    transition: all .4s ease-in-out;
}

a.linkabout:hover {
    background: #007DE7;
    color: #fff;
    transition: all .4s ease-in-out;
}

.aboutpreview:hover {
    transform: translateY(-5px);
}

.mobile-tab-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.features-section-area {
    background: #1D2940;
    position: relative;
}

.features-boxareab {
    border-radius: 4px;
    /* opacity: 0.1; */
    background: #343E53;
    /* background: #FFF; */
    padding: 40px;
    width: 100%;
    transition: all .4s ease-in-out;
    margin-bottom: 30px;
}

.features-boxareab:hover {
    background: #007DE7;
    transition: all .4s ease-in-out;
    transform: translateY(-5px);
}

.features-icon {
    background: #485164;
    height: 80px;
    width: 80px;
    text-align: center;
    line-height: 80px;
    margin: 0 auto;
    margin-bottom: 20px;
    transition: all .4s ease-in-out;
}

.features-boxareab:hover .features-icon {
    background: #198AE9;
    transition: all .4s ease-in-out;
}

/*----=========== SERVICE AREA CSS----============*/

/*----=========== COMPANY AREA CSS----============*/
.progressbar {
    border-radius: 74px;
    background: #141B2C;
    height: 13px;
}

.proggress {
    background: #141B2C;
}

.percentCount {
    margin-top: -45px;
}

.progressbar {
    margin: 0;
}

span.international1 {
    position: relative;
    top: 20px;
}

.company-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.company-progress-area {
    padding: 0 100px 0 0;
}

span.tax-palnning {
    color: rgb(252, 118, 50) background-image:-moz-linear-gradient(1deg, rgb(252, 118, 50) 0%, rgb(247, 39, 80) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(90deg, #1252DE 0%, rgba(109, 15, 221, 0.77) 100%);
}

span.tax-palnning {
    color: rgb(252, 118, 50) background-image:-moz-linear-gradient(1deg, rgb(252, 118, 50) 0%, rgb(247, 39, 80) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(90deg, #1252DE 0%, rgba(109, 15, 221, 0.77) 100%);
}

span.service-benefits {
    color: rgb(252, 118, 50) background-image:-moz-linear-gradient(1deg, rgb(252, 118, 50) 0%, rgb(247, 39, 80) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(90deg, #1252DE 0%, rgba(109, 15, 221, 0.77) 100%);
}

span.tax-consulting {
    color: rgb(252, 118, 50) background-image:-moz-linear-gradient(1deg, rgb(252, 118, 50) 0%, rgb(247, 39, 80) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(90deg, #1252DE 0%, rgba(109, 15, 221, 0.77) 100%);
}

span.tax-consultant {
    color: rgb(252, 118, 50) background-image:-moz-linear-gradient(1deg, rgb(252, 118, 50) 0%, rgb(247, 39, 80) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(90deg, #1252DE 0%, rgba(109, 15, 221, 0.77) 100%);
}

span.tax-returns {
    color: rgb(252, 118, 50) background-image:-moz-linear-gradient(1deg, rgb(252, 118, 50) 0%, rgb(247, 39, 80) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(90deg, #1252DE 0%, rgba(109, 15, 221, 0.77) 100%);
}

span.consult-reason {
    color: rgb(252, 118, 50) background-image:-moz-linear-gradient(1deg, rgb(252, 118, 50) 0%, rgb(247, 39, 80) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(90deg, #1252DE 0%, rgba(109, 15, 221, 0.77) 100%);
}

.works-servicearea {
    border-radius: 2px;
    background: #EEF7FF;
    padding: 28px 20px;
    position: relative;
    z-index: 2;
    transition: all .4s ease-in-out;
}

.worksicons5 {
    height: 64px;
    width: 64px;
    background: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 60px;
}

.workstext {
    position: relative;
    padding-left: 90px;
}

.works-servicearea::after {
    border-radius: 2px;
    background: #007DE7;
    position: absolute;
    content: "";
    height: 100%;
    top: 0;
    right: 0;
    width: 0;
    z-index: -1;
    transition: all .4s ease-in-out;
}

.worksicons5 {
    position: absolute;
}

.works-servicearea:hover::after {
    width: 100%;
    transition: all .4s ease-in-out;
    left: 0;
    right: auto;
}

.works-servicearea:hover a {
    color: #fff;
    transition: all .4s ease-in-out;
}

.works-servicearea:hover p {
    color: #fff;
    transition: all .4s ease-in-out;
    opacity: 0.7;
}

.works-servicearea:hover {
    transform: translateY(-10px);
    transition: all .4s ease-in-out;
}

.works5-sectino {
    padding: 0 70px 0 0;
}

.company6-section-area {
    background: #F4F4F4;
    position: relative;
}

.accordian-area.accordian5 h2.accordion-header {
    border: none;
}

.accordian-area.accordian5 .accordian-item p {
    margin-top: -15px;
}

.accordian-area.accordian5 .accordian-ite {
    border-radius: 2px;
    background: #080D06;
}

.accordian-area.accordian5 .accordion-item .accordion-body p {
    margin-top: -15px;
}

.accordion-body p {
    margin-top: -15px;
}

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

.bar:first-child {
    margin: 0;
}

.info {
    margin-bottom: 5px;
    font-size: 17px;
}

.progress-bar {
    position: relative;
    height: 10px;
    width: 100%;
    outline: none;
    border-radius: 5px;
    background: #f0f0f0;
}

.progress-bar span {
    width: 95%;
    border-radius: 5px;
    height: 100%;
    background-color: #1DAF68;
    position: absolute;
}

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

.progress-resonsive {
    border-radius: 4px;
    border: 1px solid rgba(11, 17, 29, 0.10);
    background: #FFF;
    padding: 24px 20px;
}

.group-icons {
    background: #EBF1FF;
    display: inline-block;
    height: 52px;
    width: 52px;
    text-align: center;
    line-height: 52px;
    border-radius: 4px;
    position: absolute;
}

.group-icons img {
    width: 24px;
    height: 24px;
    object-fit: cover;
}

.progress-resonsive {
    position: relative;
}

.bar {
    position: relative;
    padding-left: 70px;
}

.progress-bar.html span {
    width: 95%;
}

.progress-bar.css span {
    width: 97%;
}

.progress-bar.javascript span {
    width: 94%;
}

.about9-textarea {
    padding: 0 0 0 50px;
}

.works9-boxarea {
    border-radius: 4px;
    background: #EFF7FF;
    padding: 32px 20px 42px 20px;
    position: relative;
    z-index: 1;
}

img {}

.works-author-icon {
    position: relative;
    z-index: 2;
}

.works-author-icon::after {
    position: absolute;
    content: "";
    background: #1DAF68;
    height: 25px;
    width: 25px;
    border-radius: 50%;
    bottom: 0;
    left: 30px;
    z-index: -1;
    transition: all .4s ease-in-out;
}

.works9-boxarea::after {
    position: absolute;
    content: "";
    background: #1DAF68;
    height: 6px;
    width: 100%;
    border-radius: 4px;
    transition: all .4s ease-in-out;
    left: 0;
    bottom: 0;
    z-index: -1;
}

.works9-boxarea:hover::after {
    height: 100%;
    transition: all .4s ease-in-out;
}

.works9-boxarea:hover a {
    color: #fff;
    transition: all .4s ease-in-out;
}

.works9-boxarea:hover p {
    color: rgba(255, 255, 255, 0.80);
    transition: all .4s ease-in-out;
}

.works9-boxarea:hover img {
    filter: brightness(0) invert(1);
    transition: all .4s ease-in-out;
}

.works9-boxarea:hover .works-author-icon::after {
    background: #FFF;
    opacity: 0.4;
    transition: all .4s ease-in-out;
}

.works9-boxarea:hover h1 {
    color: #fff;
    opacity: 1;
}

h1.title-head {
    position: absolute;
    right: 0;
    top: 0;
    line-height: 1;
    margin-bottom: 0;
    -webkit-text-stroke-color: #D8E0E8;
    text-stroke-width: 2px;
    -webkit-text-stroke-width: 2px;
    z-index: 0;
    -webkit-transition: all 200ms linear 0ms;
    -khtml-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -ms-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms;
    opacity: 0.5;
}

.works11-section-area {
    background: #F6F6F6;
    position: relative;
}

img.elementors78 {
    position: absolute;
    top: 0;
    right: 0;
}

.work-iconarea {
    background: #22BFCA;
    display: inline-block;
    height: 90px;
    width: 90px;
    text-align: center;
    line-height: 90px;
    border-radius: 50%;
}

.work-iimigrationarea {
    position: relative;
}

.work-border {
    border: 1px dashed #DFE1E1;
    height: 110px;
    width: 110px;
    border-radius: 50%;
    position: absolute;
}

.work-border {
    left: 37%;
    top: -10px;
}

h1.point {
    background: #FFFFFF;
    display: inline-block;
    height: 32px;
    width: 32px;
    text-align: center;
    line-height: 32px;
    border-radius: 50%;
    position: absolute;
    bottom: 0;
    left: 46%;
    top: 90%;
}

.work-textarea {
    border-radius: 4px;
    background: #FFF;
    position: relative;
    padding: 32px 24px;
    margin-top: 80px;
    transition: all .4s ease-in-out;
}

img.plygon1 {
    position: absolute;
    top: -36px;
    left: 36%;
    filter: brightness(0) invert(1);
    transition: all .4s ease-in-out;
}

h1.point {
    top: 80px;
}

.work-iimigrationarea {
    transition: all .4s ease-in-out;
    margin-bottom: 30px;
}

.work-iimigrationarea:hover .work-textarea {
    background: #22BFCA;
    transition: all .4s ease-in-out;
}

.work-iimigrationarea:hover .work-textarea a {
    color: #fff;
    transition: all .4s ease-in-out;
}

.work-iimigrationarea:hover .work-textarea p {
    color: #fff;
    transition: all .4s ease-in-out;
}

.work-iimigrationarea:hover .plygon1 {
    filter: none;
}

.work-iimigrationarea:hover .work-textarea {
    transform: translateY(-5px);
    transition: all .4s ease-in-out;
}

/*----=========== COMPANY AREA CSS----============*/

/*----=========== COUNTER AREA CSS----============*/

.tax-consult h1 {
    padding: 0 100px 0 0;
}

.tax-counterarea {
    position: relative;
}

img.counetrbg {
    position: absolute;
    top: 0;
    width: 2000px;
    height: 3000px;
    right: -340px;
}

.counter-area {
    background: #fff;
}

.counter1 {
    background: #fff;
    position: relative;
    min-width: 270px;
    min-height: 220px;
    line-height: 50px;
    text-align: center;
    margin-bottom: 30px;
    align-items: center;
    top: 50%;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    transition: all .4s ease-in-out;
    box-shadow: 0px 2px 48px 0px rgba(0, 0, 0, 0.09);
}

.counter1:hover {
    border-radius: 4px;
    background: var(--text-color, #002147);
    transition: all .4s ease-in-out;
    color: #fff;
}

.counter1:hover p {
    color: rgba(255, 255, 255, 0.70);
    transition: all .4s ease-in-out;
}

img.elementor6 {
    position: absolute;
    top: -30px;
    right: -30px;
}

.counter1:hover h1 {
    color: #fff;
    transition: all .4s ease;
}

/* .counter-area {
    position: relative;
} */
.backgroud-positions {
    position: relative;
}

/* homepage-2 counter */
.counter2-section-area {
    background: #E9EDF4;
    padding: 80px 0;
}

.countre2-boxarea {
    border-radius: 4px;
    background: #FFF;
    min-width: 270px;
    min-height: 169px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .4s ease-in-out;
}

.countre2-boxarea:hover {
    border-radius: 4px;
    background: #1A237E;
    transition: all .4s ease-in-out;
    color: #fff;
}

.countre2-boxarea:hover h1 {
    color: #fff;
    transition: all .4s ease-in-out;
}

.countre2-boxarea:hover p {
    color: rgba(255, 255, 255, 0.90);
    transition: all .4s ease-in-out;
}

.counter2-section-area {
    position: relative;
}

img.elementor-10 {
    position: absolute;
    top: 0;
    left: 0;
}

img.elementor-3 {
    position: absolute;
    right: -100px;
    bottom: -23px;
}

/* homepage-2 counter */
.counter3-area {
    background: #0C161D;
}

.teamconnection-area {
    display: flex;
    align-items: center;
}

.teamconnection-text {
    padding-left: 20px;
}

.counter6span {
    position: relative;
    z-index: 1;
}

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

.service6bor-area6 {
    border-radius: 2px;
    background: #F4F4F4;
    padding: 28px 24px;
    position: relative;
}

.dosuments6 {
    position: relative;
    padding-left: 85px;
}

.counter8-box-area {
    border-radius: 4px;
    background: #FFF;
    padding: 40px 52px;
    position: relative;
}

.counter8-section-area {
    background-image: url(../images/sectionimg/counterbg8.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.counter8-section-area::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 0.83;
    background: #041716;
}

.counter8-box-area {
    position: relative;
    z-index: 1;
}

.counter8-box-area::after {
    position: absolute;
    content: "";
    border-radius: 4px;
    background: #196C68;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    transition: all .4s ease-in-out;
    z-index: -1;
}

.counter8-box-area::before {
    position: absolute;
    content: "";
    border-radius: 4px;
    background: #196C68;
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    transition: all .4s ease-in-out;
    z-index: -1;
}

.counter8-box-area:hover::after {
    width: 100%;
    transition: all .4s ease-in-out;
    border-radius: 4px 0 0 4px;
}

.counter8-box-area:hover::before {
    width: 50%;
    transition: all .4s ease-in-out;
    border-radius: 0 4px 4px 0;
}

.counter8-box-area:hover span {
    color: #fff;
    transition: all .4s ease-in-out;
}

.counter8-box-area:hover p {
    color: rgba(255, 255, 255, 0.90);
    transition: all .4s ease-in-out;
}

.counter8-box-area:hover h1 {
    color: #fff;
    transition: all .4s ease-in-out;
}

.servicebrne8area {}

.servicebene-icons {
    background: rgba(241, 190, 20, 0.20);
    display: block;
    height: 64px;
    width: 64px;
    text-align: center;
    line-height: 64px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.servicebene-icons img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.servicebrne8area {
    border-radius: 4px;
    background: #EFF7F6;
    padding: 28px 20px;
    position: relative;
    z-index: 1;
}

.servicebrne8area::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 0;
    top: 0;
    border-radius: 4px;
    background: #196C68;
    left: 0;
    z-index: -1;
    transition: all .4s ease-in-out;
}

.servicebrne8area::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 0;
    top: 0;
    border-radius: 4px;
    background: #196C68;
    right: 0;
    z-index: -1;
    transition: all .4s ease-in-out;
}

.servicebrne8area:hover::before {
    width: 50%;
    transition: all .4s ease-in-out;
    border-radius: 0 4px 4px 0;
}

.servicebrne8area:hover::after {
    width: 50%;
    transition: all .4s ease-in-out;
    border-radius: 4px 0 0 4px;
}

.servicebrne8area:hover a {
    color: #fff;
    transition: all .4s ease-in-out;
}

.servicebrne8area:hover p {
    color: rgba(255, 255, 255, 0.80);
    transition: all .4s ease-in-out;
}

.servicebrne8area:hover .servicebene-icons {
    background: rgba(255, 255, 255, 0.20);
    transition: all .4s ease-in-out;
}

.servicebrne8area:hover .servicebene-icons img {
    filter: brightness(0) invert(1);
    transition: all .4s ease-in-out;
}

.servicebene9-section-area {
    background: #EFF7FF;
    position: relative;
}

.service-auhtor9-boxarea a span {
    background: #EFF7FF;
    height: 32px;
    width: 32px;
    display: inline-block;
    text-align: center;
    line-height: 32px;
    border-radius: 50%;
    margin: 0 8px 0 0;
}

.service-auhtor9-boxarea {
    border-radius: 4px;
    background: #FFF;
    padding: 10px 24px;
    transition: all .4s ease-in-out;
}

.service-auhtor9-boxarea:hover {
    border-radius: 4px;
    background: #1DAF68;
    transition: all .4s ease-in-out;
}

.service-auhtor9-boxarea:hover a {
    color: #fff;
    transition: all .4s ease-in-out;
}

.service-auhtor9-boxarea:hover a span {
    background: #fff;
    color: #1DAF68;
    transition: all .4s ease-in-out;
}

.service-auhtor9-boxarea {
    margin-top: 32px;
}

/*----=========== COUNTER AREA CSS----============*/

/*----=========== PRICING PLAN AREA CSS----============*/
.pricing-plan-header h1 {
    padding: 0 349px;
}

.pricing-section-area {
    background: #F2EBFB;
    position: relative;
}

.pricing-headline span {
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 20px;
    align-items: center;
    text-decoration-line: underline;
    color: #9667E0;
}

.pricing-headline h2 {
    font-style: normal;
    font-weight: 800;
    font-size: 40px;
    line-height: 48px;
    align-items: center;
    text-align: center;
    color: #131731;
    margin-top: 24px;
    margin-bottom: 80px;
    padding: 0 355px;
}

.join-btn-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.pricing-list ul li {
    display: inline-block;
    padding: 0 5px;
}

.pricing-box-set-area {
    padding: 24px;
}

.border-1 {
    border: 1px solid rgba(19, 23, 49, 0.15);
    border-radius: 0px 0px 5px 5px;
}

.pricing-box-area {
    margin-bottom: 30px;
}

.pricing-box-set-area h6 {
    background: #D4BBFC;
    padding: 8px 16px;
    border-radius: 5px;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    color: #131731;
    margin-bottom: 24px;
    display: inline-block;
}

.pricing-box-set-area h2 {
    font-style: normal;
    font-weight: 800;
    font-size: 20px;
    line-height: 30px;
    display: flex;
    align-items: center;
    color: #14213D;
    margin-bottom: 24px;
}

.pricing-list ul li span {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    align-items: center;
    color: #656565;
    padding: 0 4px;
}

.pricing-star ul li {
    display: inline-block;
}

.pricing-list {
    margin-bottom: 24px;
}

.pricing-star svg {
    color: #FFAE35;
}

.pricing-star p {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    display: flex;
    align-items: center;
    color: #656565;
    padding: 0 5px;
}

.pricing-box-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.join-btn a {
    background: #9667E0;
    border-radius: 5px;
    color: #fff;
    padding: 14px 24px;
    display: inline-block;
    transition: all .4s ease-in-out;
}

.join-btn-area {
    margin-top: 24px;
}

.join-btn-2 h3 {
    border: 1px solid rgba(19, 23, 49, 0.1);
    border-radius: 5px;
    display: inline-block;
    width: 77px;
    height: 52px;
    text-align: center;
    line-height: 52px;
    font-family: 'gilroy';
    font-weight: 700;
}

.join-btn-2 h3 {
    border: 1px solid rgba(19, 23, 49, 0.1);
    border-radius: 5px;
}

.pricing-box-set-area {
    background: #fff;
    border-radius: 5px;
}

.join-btn-area {
    margin-bottom: 8px;
}

.join-btn a {
    font-style: normal;
    font-weight: 800;
    font-size: 16px;
    align-items: center;
    letter-spacing: -0.01em;
    color: #FFFFFF;
}

.pricing-box-set-area h2 a {
    color: #333;
}

.join-btn a:hover {
    background: #124680;
    transition: all .4s ease-in-out;
}

.pricing-plan {
    position: relative;
}

.pricing-plan::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -2;
    background-image: url(../img/image/pricing-plan-bg.html);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.toggle-inner {
    width: 75px;
    margin: 0 auto;
    height: 35px;
    border: 1px solid #0e1124;
    border-radius: 25px;
    position: relative;
}

.toggle-inner {
    background: #1A237E;
}

.toggle-inner.inner2 {
    background: #1252DE;
}

.toggle-inner input {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    border-radius: 25px;
    right: 0;
    z-index: 1;
    opacity: 0;
    cursor: pointer;
}

.custom-toggle {
    position: absolute;
    height: 25px;
    width: 25px;
    background-color: #ffffff;
    top: 4px;
    left: 5px;
    border-radius: 50%;
    transition: 300ms all;
}

.toggle-inner .t-month,
.toggle-inner .t-year {
    position: absolute;
    left: -70px;
    top: 5px;
    color: #0e1124;
    transition: 300ms all;
    font-size: 16px;
    font-weight: 500;
    line-height: 16px;
}

.toggle-inner {
    margin-top: 30px;
}

.toggle-inner .t-year {
    left: unset;
    right: -60px;
    opacity: 0.5;
}

.active>.toggle-inner .t-month {
    opacity: 0.5;
}

.active>.toggle-inner .t-year {
    opacity: 1;
}

.toggle-inner input:checked+span {
    left: 43px;
}

.toggle-inner {
    width: 75px;
    margin: 0 auto;
    height: 35px;
    border: 1px solid #ffffff;
    border-radius: 25px;
    position: relative;
}

.price-box {
    padding: 24px 20px;
    border-radius: 4px;
    border-radius: 4px;
    background: var(--main-light-colour, #FFF);
    box-shadow: 0px 4px 48px 0px rgba(0, 0, 0, 0.09);
}

.price-btn {
    background-color: #0D9C4D;
    border-radius: 4px;
    z-index: 2;
    transition: all.4s;
    margin-bottom: 32px;
}

.price-button.btn-after-price {
    z-index: 2;
}

.price-button.btn-after-price a {
    color: #0e1124;
}

.btn-after-price {
    position: relative;
}

.price-list ul li {
    padding-bottom: 16px;
}

.price-list ul li img {
    margin-right: 5px;
}

.price-box {
    transition: all .4s ease-in-out;
    margin-bottom: 30px;
}

.price-box.box-after:hover img {
    filter: brightness(0) invert(1);
}

.price-box:hover {
    background: #002147;
    border-radius: 5px;
    color: #fff;
}

.price-box:hover .price-btn {
    background-color: #fff;
}

.price-box:hover .btn-after-price::after {
    visibility: visible;
    opacity: 1;
}

.hadding.hadding-p span {
    font-weight: 700;
}

.hadding.hadding-p h2 {
    color: #102017;
    font-size: 35px;
    font-weight: 800;
}

.hadding.hadding-p.single-price h2 {
    color: #102017;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 20px;
}

.hadding.hadding-p.single-price p {
    color: #5D6360;
    font-size: 16px;
    display: inline-block;
    font-weight: 500;
}

.hadding.hadding-p.single-price h2.pricing-heading {
    font-size: 42px;
    font-weight: 500;
    line-height: 50px;
}

.hadding.hadding-p.single-price h2.pricing-heading span {
    line-height: 16px;
    font-weight: 500;
}

.button.price-btn a {
    color: #fff;
}

.hadding.hadding-p span.right-arrow-1 {
    font-size: 10px;
}

.price-box:hover .price-btn a {
    color: #0D9C4D;
}

.price-box:hover .price-btn a span {
    background: #0D9C4D;
    color: #fff;
}

.price-box:hover img {
    filter: brightness(70);
}

.price-box:hover h2 {
    color: #fff;
}

.price-box:hover .hadding.hadding-p.single-price h2 {
    color: #fff;
}

.price-box:hover .hadding.hadding-p.single-price p {
    color: #fff;
}

.price-box:hover .hadding.hadding-p.single-price h2 span {
    color: #fff;
}

.price-box:hover ul li {
    color: #fff;
}

a.theme-get-tex.w-btn-100 {
    width: 100%;
}

.space40 {
    height: 28px;
}

.toggle-inner {
    margin-bottom: 48px;
}

/* homepage-2 pricing plan */
.pricing-pan2-header h1 {
    padding: 0 380px;
}

.features-list ul li span {
    background: #141B2C;
    height: 20px;
    width: 20px;
    line-height: 20px;
    text-align: center;
    border-radius: 50%;
    display: flex;
    color: #fff;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 700;
}

.features-list ul li {
    display: flex;
    align-items: center;
}

.features-list ul li p {
    margin-left: 8px;
}

.features-textarea {
    border-radius: 2px;
    background: #F6F7FA;
    padding: 32px 28px;
}

.tabs2-area {
    border-radius: 4px;
    background: #FFF;
    box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.09);
    padding: 32px;
}

/* homepage-2 pricing plan */
.price-box.box-after.pricingbox3-bg {
    background: #002147;
    color: #fff;
    color: #fff;
}

.price-box.box-after.pricingbox3-bg .hadding.hadding-p.single-price h2 {
    color: #fff;
}

.price-box.price-box.box-after.pricingbox3-bg .hadding.hadding-p.single-price p {
    color: #fff;
    opacity: 0.9;
}

.price-box.box-after.pricingbox3-bg:hover h1 {
    color: #fff;
}

.price-box.box-after.pricingbox3-bg img {
    filter: brightness(0) invert(1);
}

.price-box.box-after.btnbrfore {
    border-radius: 6px;
    background: #EFF7FF;
    padding: 30px 24px;
    transition: all .4s ease-in-out;
}

.price-list ul li span {
    border-radius: 160px;
    background: #007DE7;
    color: #fff;
    height: 20px;
    width: 20px;
    display: inline-block;
    line-height: 20px;
    text-align: center;
    font-size: 13px;
}

a.button14.tsbutton {
    width: 100%;
    text-align: center;
}

.price-box.box-after.btnbrfore:hover {
    background: #071018;
    transition: all .4s ease-in-out;
}

.price-box.box-after.btnbrfore:hover .button14::after {
    background: #fff;
    transition: all .4s ease-in-out;
    color: #000;
}

.price-box.box-after.btnbrfore:hover .button14:hover {
    color: #000;
    transition: all .4s ease-in-out;
}

.toggle-inner.inner2.homeinner {
    background: #007DE7;
}

.textimonial5-section-area {
    background: #EFF7FF;
    position: relative;
}

.price-box.btnbrfores:hover {
    border-radius: 6px;
    background: #196C68;
    transition: all .4s ease-in-out;
}

.price-box.btnbrfores:hover a {
    border: 1px solid #fff;
}

.price-box.btnbrfores a {
    width: 100%;
    justify-content: center;
    text-align: center;
}

.price-box.btnbrfores {
    margin-bottom: 30px;
}

.about8-section-area {
    background: #fff;
}

.homepricing8 ul li span {
    border-radius: 160px;
    background: #F1BE14;
    color: #000;
}

.toggle-inner.home8price {
    background: #196C68;
}

.pricing8-section-area {
    position: relative;
    background: #EFF7F6;
}

img.elmenotrs12 {
    position: absolute;
    top: 0;
    left: 0;
}

img.elemneotrs13 {
    position: absolute;
    bottom: 0;
    right: 0;
}

.toggle-inner.inner4 {
    background: #1DAF68;
}

.pricing9-boxarea a {
    border-radius: 4px;
    background: #1DAF68;
    padding: 18px 22px;
    display: block;
    text-align: center;
    transition: all .4s ease-in-out;
}

.pricing9-boxarea a span {
    margin-left: 4px;
}

.features9 ul li p {
    color: #0B111D;
    font-family: 'Kumbh Sans', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
}

.features9 ul li {
    display: flex;
    align-items: center;
}

.features9 ul li span {
    background: #1DAF68;
    height: 20px;
    width: 20px;
    display: inline-block;
    text-align: center;
    line-height: 20px;
    color: #fff;
    border-radius: 50%;
    font-size: 12px;
    margin: 0 8px 0 0;
}

.pricing9-boxarea {
    border-radius: 4px;
    background: #F5FAFF;
    padding: 24px;
    transition: all .4s ease-in-out;
}

.pricing9-boxarea p {
    transition: all .4s ease-in-out;
}

.pricing9-boxarea h1 {
    transition: all .4s ease-in-out;
}

.pricing9-boxarea h5 {
    transition: all .4s ease-in-out;
}

.pricing9-boxarea:hover a {
    background: #fff;
    color: #1DAF68;
}

.pricing9-boxarea:hover {
    background: #1DAF68;
    transition: all .4s ease-in-out;
}

.pricing9-boxarea:hover .features9 {
    background: #4ABF86;
}

.pricing9-boxarea:hover p {
    color: rgba(255, 255, 255, 0.90)
}

.pricing9-boxarea:hover .features9 span {
    background: #fff;
    color: #1DAF68;
    transition: all .4s ease-in-out;
}

.pricing9-boxarea:hover h5 {
    color: #fff;
    transition: all .4s ease-in-out;
}

.pricing9-boxarea:hover h1 {
    color: #fff;
    transition: all .4s ease-in-out;
}

.pricing9-boxarea:hover h1 span {
    color: #fff;
    transition: all .4s ease-in-out;
}

.pricing9-boxarea {
    margin-bottom: 30px;
}

.features9 {
    background: #fff;
    padding: 24px;
    transition: all .4s ease-in-out;
}

.pricing9-boxarea:hover .border7 {
    border: 1px solid #fff;
}

.pricing10-boxarea {
    padding: 32px 24px;
    border-radius: 4px;
    background: #EFF7F6;
}

.toggle-inner.home10price {
    background: #E7EFD8;
}

.toggle-inner.home10price .custom-toggle {
    background: #86B03C;
}

.pricing-allowarea h1 {
    background: #86B03C;
    display: inline-block;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    line-height: 120px;
}

.pricing-allowarea img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    position: absolute;
    top: 108px;
    left: 67px;
}

.pricing10-boxarea.text-center {
    position: relative;
}

.pricing-allowarea span {
    position: relative;
    left: 24px;
    /* margin-top: 32px; */
}

.pricing-allowarea {
    margin-top: 32px;
    margin-bottom: 32px;
}


.pricing10-boxarea ul li span {
    height: 20px;
    width: 20px;
    display: inline-block;
    background: #86B03C;
    color: #fff;
    text-align: center;
    line-height: 20px;
    border-radius: 50%;
    margin: 0 8px 0 0;
    align-items: center;
    font-size: 12px;
}

.all-center {
    position: relative;
}

.pricing10-boxarea ul {
    padding-left: 51px;
}

a.pricingbtn10 {
    border-radius: 4px;
    background: #86B03C;
    padding: 16px 24px;
    width: 100%;
    margin-top: 32px;
    display: inline-block;
    transition: all .4s ease-in-out;
}

a.pricingbtn10 img {
    filter: brightness(0) invert(1);
    transition: all .4s ease-in-out;
}

.pricing10-boxarea:hover h1 {
    color: #fff;
    transition: all .4s ease-in-out;
}

.pricing10-boxarea:hover p {
    color: #fff;
    transition: all .4s ease-in-out;
}

.pricing10-boxarea:hover img {
    filter: none;
    transition: all .4s ease-in-out;
}

.pricing10-boxarea:hover a.pricingbtn10 {
    background-color: #fff;
    color: #86B03C;
}

.pricing10-boxarea:hover .elementorspricing {
    filter: brightness(0) invert(1);
    transition: all .4s ease-in-out;
}

.pricing10-boxarea:hover ul li {
    color: #fff;
    transition: all .4s ease-in-out;
}

.pricing10-boxarea:hover .pricing-allowarea h1 {
    background: #fff;
    transition: all .4s ease-in-out;
    color: #86B03C;
}

.pricing10-boxarea img {
    transition: all .4s ease-in-out;
}

.pricing10-boxarea:hover .pricing-allowarea span {
    color: #fff;
    transition: all .4s ease-in-out;
}

.pricing10-boxarea:hover {
    border-radius: 4px;
    background: #86B03C;
    transition: all .4s ease-in-out;
}

.pricing10-boxarea:hover ul li span {
    background: #fff;
    color: #86B03C;
    transition: all .4s ease-in-out;
}

.pricing10-boxarea {
    transition: all .4s ease-in-out;
}

/*----=========== PRICING PLAN AREA CSS----============*/

/*----=========== TESTIMONIAL AREA CSS----============*/
.testimonial-section-area {
    background-image: url(../images/background/ourservice-bacground.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.testimonial-header h1 {
    padding: 0 320px;
}

.testimonial-header {
    margin-bottom: 95px;
}

.testimonial-boxarea {
    background: #fff;
    border-radius: 5px;
    padding: 67px 24px 28px 24px;
}

.testimonial-icons {
    background: linear-gradient(148deg, #1252DE 0%, #6D0FDD 100%);
    box-shadow: 0px 4px 20px 0px rgba(47, 128, 237, 0.25);
    height: 70px;
    display: inline-block;
    width: 70px;
    text-align: center;
    line-height: 70px;
    border-radius: 50%;
    top: -35px;
    position: absolute;
    z-index: 1;
}

.testimonial-boxarea {
    position: relative;
}

.owl-carousel .owl-item .testimonial-icons img {
    display: inline-block;
    width: 33px;
    height: 20px;
    text-align: center;
    line-height: 30px;
    justify-content: center;
}

.testimonial-carousel-area.owl-carousel .owl-stage-outer {
    overflow: inherit;
}

.testimonial-carousel-area button.owl-dot {
    height: 16px;
    width: 16px;
    background: #DCDCDC;
    border-radius: 50%;
    margin: 0 3px;
    text-align: center;
    margin-top: 60px;
}

.testimonial-carousel-area button.owl-dot.active {
    background: #1252DE;
}

.testimonial-carousel-area .owl-dots {
    text-align: center;
}

/* homepage-2 testimonial */
.testimonial2-scetion-area {
    background-image: url(../images/background/casestudy-bacground.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.testimonial-autor-area {
    border-radius: 4px;
    background: #FFF;
    padding: 24px;
}

.owl-carousel .owl-item .qutio1 img {
    width: 40px;
    height: 40px;
}

.star-list ul li {
    display: inline-block;
}

.owl-carousel .owl-item .mans img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 5pxs;
}

.mans-author {
    display: flex;
    align-items: center;
}

.border-4 {
    opacity: 0.1;
    border: 1px solid #141B2C;
}

.names-text {
    padding-left: 16px;
}

.testomonial2-carousel-area.owl-carousel .owl-dot {
    height: 16px;
    width: 16px;
    border: 1px solid #141B2C;
    border-radius: 50%;
    margin: 0 3px;
    margin-top: 38px;
    text-align: center;
    justify-content: center;
    opacity: 0.2;
}

.testomonial2-carousel-area.owl-carousel .owl-dots {
    text-align: center;
}

.testomonial2-carousel-area.owl-carousel .owl-dots button.owl-dot.active {
    background: #1A237E;
    opacity: 9;
}

.testomonial2-carousel-area1.owl-carousel .owl-dots {
    text-align: center;
    display: block;
}

.testomonial2-carousel-area1 button.owl-dot.active {
    background: #35AC39;
}

/* homepage-2 testimonial */

.testimonial4-scetion-area {
    background-image: url(../images/background/testimonial4.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.testimonial5-author {
    border-radius: 2px;
    background: var(--main-light-colour, #FFF);
    padding: 29px;
    margin: 0 120px;
}

.testimonial5-section5-area {
    position: relative;
}

.testimonial5-section5-area.owl-carousel.owl-loaded.owl-drag .testimonial3-img img {
    width: 100px;
    height: 100px;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 24px;
}

.testimonial5-section5-area .owl-nav button.owl-prev {
    background: #fff;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    line-height: 60px;
    position: absolute;
    top: 45%;
    left: 40px;
    transition: all .4s ease-in-out;
}

.testimonial5-section5-area .owl-nav button.owl-next {
    background: #fff;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    line-height: 60px;
    position: absolute;
    top: 45%;
    right: 40px;
    transition: all .4s ease-in-out;
}

.testimonial5-section5-area .owl-nav button.owl-next:hover {
    background: #1D2940;
    color: #fff;
    transition: all .4s ease-in-out;
}

.testimonial5-section5-area .owl-nav button.owl-prev:hover {
    background: #1D2940;
    color: #fff;
    transition: all .4s ease-in-out;
}

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

.testimonial-autor-area.bginner {
    border-radius: 4px;
    background: #FAFAFA;
    margin-bottom: 30px;
}

img.elmentors2 {
    position: absolute;
    top: 0;
    right: 0;
}

img.elmentors3 {
    position: absolute;
    bottom: 0;
    left: 0;
}

.testomonial2-carousel-area.owl-carousel.owl5-carousel .owl-dots {
    text-align: center;
}

.testomonial2-carousel-area.owl-carousel.owl5-carousel .owl-dots button.owl-dot.active {
    background: #007DE7;
    border: none;
}

.testomonial2-carousel-area1.owl-carousel.owl5-carousel.owl-loaded.owl-drag {
    border-radius: 4px;
    background: #F4F4F4;
    padding: 48px;
}

.testomonial2-carousel-area1.owl-carousel.owl5-carousel.owl-loaded.owl-drag {
    overflow: inherit;
}

.testomonial2-carousel-area1.owl-carousel.owl5-carousel.owl-loaded.owl-drag .owl-dot {
    display: inline-block;
    height: 16px;
    width: 16px;
    /* background: red; */
    border-radius: 50%;
    margin: 0 3px;
    text-align: center;
    border: 1px solid rgba(8, 13, 6, 0.20);
    margin-top: 30px;
}

.textimonial7-carousel ul li {
    display: inline-block;
    margin-top: 16px;
}

.testimonialmans {
    display: flex;
    align-items: center;
}

.img-testimonial {
    margin-left: 10px;
}

.img-testimonial a:hover {
    color: #000;
}

.testimonialmans {
    margin-top: 24px;
}

.textimonial7-carousel {
    border-radius: 4px;
    border: 1px solid rgba(29, 41, 64, 0.10);
    background: rgba(255, 244, 238, 0.40);
    padding: 32px;
}

.testimonial7-carousel-area.owl-carousel.owl-loaded.owl-drag .testimonialimagesauthor7 img {
    width: 40px;
    height: 40px;
    object-fit: cover;
}

.testimonial7-carousel-area.owl-carousel.owl-loaded.owl-drag .owl-nav button.owl-prev {
    height: 60px;
    width: 60px;
    text-align: center;
    line-height: 60px;
    border-radius: 94px;
    background: rgba(235, 124, 58, 0.20);
    color: #EB7C3A;
    font-size: 17px;
    transition: all .4s ease-in-out;
    position: absolute;
    top: 45%;
    left: -80px;
}

.testimonial7-carousel-area.owl-carousel.owl-loaded.owl-drag .owl-nav button.owl-prev:hover {
    background: #EB7C3A;
    color: #fff;
    transition: all .4s ease-in-out;
}

.testimonial7-carousel-area.owl-carousel.owl-loaded.owl-drag .owl-nav button.owl-next {
    height: 60px;
    width: 60px;
    text-align: center;
    line-height: 60px;
    border-radius: 94px;
    background: rgba(235, 124, 58, 0.20);
    color: #EB7C3A;
    font-size: 17px;
    transition: all .4s ease-in-out;
    position: absolute;
    top: 45%;
    right: -80px;
}

.testimonial7-carousel-area.owl-carousel.owl-loaded.owl-drag .owl-nav button.owl-next:hover {
    background: #EB7C3A;
    color: #fff;
    transition: all .4s ease-in-out;
}

.testimonial-carousel8area {
    border-radius: 4px;
    border: 1px solid rgba(29, 41, 64, 0.10);
    background: #EFF7F6;
    padding: 32px;
}

.icons8 {
    height: 40px;
    width: 40px;
    margin-bottom: 16px;
}

.icons8 img {
    width: 40px;
    height: 40px;
    display: inline-block;
}

.testimonial-carousel8area ul li {
    display: inline-block;
}

.testimonial8-carousel-area.owl-carousel.owl-loaded.owl-drag .owl-nav button.owl-next {
    border-radius: 94px;
    background: #EFF7F6;
    height: 60px;
    width: 60px;
    text-align: center;
    line-height: 60px;
    color: #196C68;
    font-size: 17px;
    position: absolute;
    top: 43%;
    left: -76px;
    transition: all .4s ease-in-out;
}

.testimonial8-carousel-area.owl-carousel.owl-loaded.owl-drag .owl-nav button.owl-next:hover {
    background: #196C68;
    transition: all .4s ease-in-out;
    color: #fff;
}

.testimonial8-carousel-area.owl-carousel.owl-loaded.owl-drag .owl-nav button.owl-prev {
    border-radius: 94px;
    background: #EFF7F6;
    height: 60px;
    width: 60px;
    text-align: center;
    line-height: 60px;
    color: #196C68;
    font-size: 17px;
    position: absolute;
    top: 43%;
    right: -76px;
    transition: all .4s ease-in-out;
}

.testimonial8-carousel-area.owl-carousel.owl-loaded.owl-drag .owl-nav button.owl-prev:hover {
    background: #196C68;
    transition: all .4s ease-in-out;
    color: #fff;
}

.testimonial9-section-area {
    background: #F5FAFF;
    position: relative;
}

.testimonials9-carousel-area.teimonials9-flex9 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center;
}

.testimnials9-boxarea ul li {
    display: inline-block;
    border-radius: 1px;
    background: rgba(245, 250, 255, 0.60);
    color: #FFBA00;
    height: 28px;
    width: 28px;
    line-height: 28px;
    text-align: center;
    margin: 0 2px 0 0;
}

.testimnials9-boxarea {
    background: #fff;
    padding: 32px;
    position: relative;
    transition: all .4s ease-in-out;
}

.testimnials9-boxarea ul {
    margin-bottom: 32px;
}

.testimonials9-carousel-area .qutiosvg {
    height: 40px;
    width: 40px;
    object-fit: contain;
}

.teimonials9-flex9 {
    position: relative;
}

.testimnials9-boxarea:hover {
    background-color: #1DAF68;
    transform: all .4s ease-in-out;
}

.testimnials9-boxarea:hover p {
    color: #fff;
    transition: all .4s ease-in-out;
}

.testimnials9-boxarea:hover a {
    color: #fff;
    transition: all .4s ease-in-out;
}

.testimnials9-boxarea:hover ul li {
    border-radius: 1px;
    background: rgba(255, 255, 255, 0.10);
}

img.qutiosvg {
    position: absolute;
    top: 0;
    right: -155px;
}

.testimonials9-carousel-area.owl-carousel.owl-loaded.owl-drag {
    overflow: inherit;
}

.testimonials9-carousel-area.owl-carousel.owl-loaded.owl-drag .owl-dots button.owl-dot {
    height: 16px;
    width: 16px;
    border: 1px solid #C6CBD2;
    border-radius: 50%;
    text-align: center;
    justify-content: center;
    margin: 0 3px;
}

.testimonials9-carousel-area.owl-carousel.owl-loaded.owl-drag .owl-dots {
    text-align: center;
    margin-top: 60px;
}

.testimonials9-carousel-area.owl-carousel.owl-loaded.owl-drag .owl-dots button.owl-dot.active {
    background: #1DAF68;
    border: none;
}

.testimonial10-section-area {
    position: relative;
    background: #EFF7F6;
}

.elmentors68 {
    position: absolute;
    left: 0;
    top: 0;
}

.testimonial10-allarea {
    border-radius: 4px;
    background: #FFF;
    padding: 32px 20px;
}

.testimonial10-allarea ul li {
    display: inline-block;
}

.mans-testimonial10 {
    text-align: center;
    margin-top: 40px;
}

img.manimages10 {
    position: absolute;
    left: 0;
}

.mans-testimonial10 {
    position: relative;
}

.testimonial10-allarea ul {
    margin-top: 16px;
    margin-bottom: 20px;
}

.elmentorsauhtor {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.manimages10 {
    height: 64px;
    width: 64px;
    object-fit: contain;
}

.owl-carousel .owl-item .testimonial10-allarea img {
    height: 40px;
    width: 40px;
    object-fit: contain;
    margin: 0;
}

img.manimages10 {
    position: absolute;
    top: 7px;
}

.polugonimages {
    filter: brightness(0) invert(1);
}

img.polugonimages {
    position: absolute;
    top: 49%;
    bottom: 50%;
    left: 44%;
}

.testimonial10-boxarea {
    transition: all .4s ease-in-out;
}

.testimonial10-boxarea h1 {
    transition: all .4s ease-in-out;
}

.testimonial10-boxarea a {
    transition: all .4s ease-in-out;
}

.testimonial10-boxarea img {
    transition: all .4s ease-in-out;
}

.testimonial10-boxarea p {
    transition: all .4s ease-in-out;
}

.testimonial10-boxarea:hover .testimonial10-allarea {
    border-radius: 4px;
    background: #86B03C;
    transition: all .4s ease-in-out;
}

.testimonial10-boxarea:hover p {
    color: #fff;
    transition: all .4s ease-in-out;
}

.testimonial10-boxarea:hover a {
    color: #000;
}

.testimonial10-boxarea:hover img.polugonimage {
    filter: none;
    transition: all .4s ease-in-out;
}

.testimonial10-boxarea:hover .mans-testimonial10 p {
    color: #000;
}

.testimonial10-boxarea:hover .testimonial10-allarea img {
    filter: brightness(40);
    transition: all .4s ease-in-out;
}

.testimonial10-allarea {
    transition: all .4s ease-in-out;
}

.testimonial10-boxarea:hover img.polugonimages {
    filter: none;
    transition: all .4s ease-in-out;
}

.testimonial10-boxarea {
    margin-bottom: 30px;
}

.testimonial10-owlcarousel.owl-carousel.owl-loaded.owl-drag .owl-nav button.owl-prev {
    background: #D0E2BE;
    height: 60px;
    width: 60px;
    text-align: center;
    display: inline-block;
    border-radius: 50%;
    font-size: 18px;
    color: #86B03C;
    position: absolute;
    top: 15%;
    left: -80px;
    transition: all .4s ease-in-out;
}

.testimonial10-owlcarousel.owl-carousel.owl-loaded.owl-drag .owl-nav button.owl-prev:hover {
    background: #86B03C;
    transition: all .4s ease-in-out;
    color: #fff;
}

.testimonial10-owlcarousel.owl-carousel.owl-loaded.owl-drag .owl-nav button.owl-next {
    background: #D0E2BE;
    height: 60px;
    width: 60px;
    text-align: center;
    display: inline-block;
    border-radius: 50%;
    font-size: 18px;
    color: #86B03C;
    position: absolute;
    top: 18%;
    right: -80px;
    transition: all .4s ease-in-out;
}

.testimonial10-owlcarousel.owl-carousel.owl-loaded.owl-drag .owl-nav button.owl-next:hover {
    background: #86B03C;
    transition: all .4s ease-in-out;
    color: #fff;
}

.testimonial11-scetion-area {
    background-image: url(../images/background/ourservice-bacground.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.testimonials11-owl-carousel.owl-carousel.owl-loaded.owl-drag .owl-dots button {
    height: 16px;
    width: 16px;
    border: 1px solid #C6CACA;
    border-radius: 50%;
    margin: 0 8px 0 0;
}

.testimonials11-owl-carousel.owl-carousel.owl-loaded.owl-drag .owl-dots {
    text-align: center;
    margin-top: 30px;
}

.testimonials11-owl-carousel.owl-carousel.owl-loaded.owl-drag .owl-dots button.active {
    background: #22BFCA;
}

.testimonials11-owl-carousel.testimonial12-header.owl-carousel.owl-loaded.owl-drag .owl-dots button.active {
    background: #49357F;
}

/*----=========== TESTIMONIAL AREA CSS----============*/

/*----=========== BLOG AREA CSS----============*/
@media (max-width: 576px) {
    .swiper-slide {
        padding: 0 12px;
    }
}

.blog1-header-text h1 {
    padding: 0 340px;
}

.blog1-header-text {
    margin-bottom: 60px;
}

.blog1-boxarea {
    border-radius: 10px;
    background: #FFF;
    margin-bottom: 30px;
}

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

.blog-padding {
    padding: 30px 20px;
    background: #f4f4f4;
    border-radius: 0 0 10px 10px;
}

.blog-padding p {
    transition: all .4s ease-in-out;
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    overflow: hidden;
    -webkit-box-orient: vertical;
}
#our_video_firstcard_para {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog1-padding {
    padding: 30px 20px;
}

.blog1-text ul li {
    display: inline-block;
    align-items: center;
    justify-content: center;
}

.blog1-text {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.blog1-text img {
    margin: 0 4px 0 0;
    height: 14px;
}

.blog1-text ul li a {
    margin: 0 3px;
    transition: all .4s ease-in-out;
}

.blog1-padding a:hover {
    color: #1451DE;
}

.blog1-padding p {
    transition: all .4s ease-in-out;
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    overflow: hidden;
    -webkit-box-orient: vertical;
}

.blog1-text ul li a:hover {
    color: #1451DE;
    transition: all .4s ease-in-out;
}

a.learnmore.learnmore1:hover {
    color: #202C4A;
    transition: all .4s ease-in-out;
}

.blog1-img img {
    border-radius: 5px 5px 0 0;
}

.blog1-boxarea:hover .blog1-img img {
    transform: scale(1.1);
    transition: all .5s ease-in-out;
}

.blog1-img {
    overflow: hidden;
    border-radius: 5px 5px 0 0;
    transition: all .5s ease-in-out;
}

.blog1-img img {
    transition: all .8s ease-in-out;
    border-radius: 5px 5px 0 0;
    height: 200px;
}

/* homepage2-blog  */
.blog2-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.blog-date-list {
    display: flex;
    align-items: center;
}

.blog2-ahtuor2 {
    border-radius: 4px;
    background: #E9EDF4;
    padding: 24px 20px;
}

.blog-date-list img {
    margin: 0 3px 0 0;
}

.blog-auhtor2-text {
    padding: 0 0 0 40px;
}

.blog-date-list a:hover {
    color: #141B2C;
}

.blog-auhtor2-text.blog2-author-poition {
    padding: 0;
}

.blog2-ahtuor2::after {
    position: absolute;
    content: "";
    border-radius: 4px;
    background: #1A237E;
    width: 0;
    height: 100%;
    z-index: -1;
    top: 0;
    right: 0;
    transition: all .4s ease-in-out;
}

.blog2-ahtuor2 {
    position: relative;
    z-index: 1;
}

.contact2-auhtor-section:hover {
    transform: translateY(-10px);
    transition: all .4s ease-in-out;
}

.blog2-ahtuor2:hover::after {
    width: 100%;
    left: 0;
    right: auto;
    transition: all .4s ease-in-out;
}

.blog2-ahtuor2.blog-2ahthor {
    border-radius: 4px;
    background: #1A237E;
}

.blog2-author-area {
    position: relative;
}

.blog2-ahtuor2:hover {
    transform: translateY(-10px);
    transition: all .4s ease-in-out;
}

.blog2-ahtuor2 {
    transition: all .4s ease-in-out;
}

.blog2-ahtuor2:hover ul li a {
    color: #fff;
    transition: all .4s ease-in-out;
}

.blog2-ahtuor2:hover h1 {
    color: #fff;
    transition: all .4s ease-in-out;
}

.blog2-ahtuor2:hover p {
    color: #fff;
    transition: all .4s ease-in-out;
}

.blog2-ahtuor2:hover a {
    color: #fff;
    transition: all .4s ease-in-out;
}

.blog2-ahtuor2:hover img {
    filter: brightness(40);
    transition: all .4s ease-in-out;
}

.blog-author-flex {
    display: flex;
    align-items: center;
}

.blog5-author5:hover .blog-author-flex img {
    filter: brightness(40);
    transition: all .4s ease-in-out;
}

.blog-author-flex img {
    margin: 0 4px 0 0;
}

.blog-auhtor-text:hover img {
    filter: brightness(40);
}

.blog2-ahtuor2.blog-2ahthor {
    position: absolute;
    /* top: 0; */
    bottom: 24px;
    width: 560px;
    left: 6%;
}

/* homepage2-blog  */

.blog3-header-text h1 {
    padding: 0 300px;
}

.blog3-section-area {
    background: #E9EDF4;
    position: relative;
}

a.link-hover:hover {
    color: #044E7C;
}

a.laearnmore2:hover {
    color: #0C161D;
}

.blog5-imag5 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.blog-auhtor-text ul li {
    display: inline-block;
    align-items: center;
    color: var(--main-color, #1D2940);
    font-family: Outfit;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    /* 100% */
}

.blog-auhtor-text ul li a {
    color: var(--main-color, #1D2940);
    font-family: Outfit;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    /* 100% */
    transition: all .4s ease-in-out;
}

.blog5-author5:hover .blog5-imag5 img {
    transform: scale(1.1);
    transition: all .5s ease-in-out;
}

.blog5-imag5 {
    overflow: hidden;
    border-radius: 5px;
    transition: all .4s ease-in-out;
}

.blog5-imag5 img {
    transition: all .4s ease-in-out;
}

.blog5-author5 {
    position: relative;
}

a.learnmore3 span svg {
    transform: rotate(-50deg);
    transition: all .4s ease-in-out;
}

a.learnmore3:hover {
    color: #1D2940;
    transition: all.4s ease-in-out;
}

.blog-auhtor-text {
    border-radius: 4px;
    background: var(--white-color, #FFF);
    padding: 24px 20px;
    position: absolute;
    bottom: 24px;
    margin: 0 65px;
    transition: all .4s ease-in-out;
}

.blog5-author5:hover .blog-auhtor-text {
    border-radius: 4px;
    background: var(--main-color, #1D2940);
    transition: all .4s ease-in-out;
    color: #fff;
}

.blog5-author5:hover .blog-auhtor-text ul li a {
    color: #fff;
    transition: all .4s ease-in-out;
}

.blog5-author5:hover .blog-auhtor-text a {
    color: #fff;
    transition: all .4s ease-in-out;
}

.blog5-author5:hover .blog-auhtor-text p {
    color: #fff;
    transition: all .4s ease-in-out;
}

.blog5-author5:hover .blog-auhtor-text h1 {
    color: #fff;
    transition: all .4s ease-in-out;
}

.blog5-author5:hover .blog-auhtor-text ul li a img {
    color: #fff;
    transition: all .4s ease-in-out;
    filter: brightness(40);
}

.blog5-author5 {
    margin-bottom: 30px;
}

a.bloginnerhover:hover {
    color: var(--main-color, #6083A9);
}

a.laearnmore2.bloginnerhover:hover {
    color: var(--main-color, #6083A9);
}

.blog2-ahtuor2.blog2inner:hover {
    border-radius: 4px;
    background: var(--main-text-color, #1D2940);
    transition: all .4s ease-in-out;
}

.blog2-ahtuor2.blog-2ahthor.bloinner2 {
    border-radius: 4px;
    background: var(--main-text-color, #1D2940);
}

.recenrblos-area {
    border-radius: 2px;
    background: var(--gray-color, #EFF7FF);
    padding: 24px 20px;
}

.recentblogsall {
    position: relative;
    padding-left: 110px;
}

.recentblogsall p {
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    overflow: hidden;
    -webkit-box-orient: vertical;
}

.recentblog-text {
    position: relative;
}

.recent-images {
    position: absolute;
    top: 0;
}

.recent-images img {
    width: 100px;
    object-fit: cover;
    border-radius: 3px;
}

.recentblogsall h1 a:hover {
    color: #6083A9;
    transition: all .4s ease-in-out;
}

.author-area {
    border-radius: 2px;
    background: var(--gray-color, #EFF7FF);
    padding: 24px 20px;
    margin-top: 30px;
}

.author-area ul li {
    display: inline-block;
    justify-content: space-between;
    margin-left: 16px;
}

.author-area ul li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.alex {
    display: flex;
    align-items: center;
}

.alex img {
    margin: 0 8px 0 0;
}

.alex::after {
    content: "";
    position: absolute;
    height: 16px;
    /* stroke-width: 1px; */
    background: var(--main-text-color, #1D2940);
    opacity: 0.4;
    right: -29%;
    z-index: 1;
    width: 2px;
}

.afteralex-area {
    margin-top: 20px;
    margin-bottom: 24px;
    display: flex;
    justify-content: space-between;
}

.alex {
    position: relative;
}

.alex.alex1::after {
    background: none;
}

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

.blogleftinner3-area {
    padding: 0 30px 0 30px;
}

.peragraph-pera.peragraeabg {
    border-radius: 2px;
    background: var(--main-text-color, #1D2940);
    margin-top: 32px;
    margin-bottom: 60px;
}

.video-play-button {
    position: absolute;
    z-index: 7;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    padding: 18px 20px 18px 28px;
}

.video-play-button:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    /* background: #24BA96; */
    background: var(--main-text-color, #1D2940);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.blog2-ahtuor2.blog-2ahthor.blog5auhto6::after {
    display: none;
}

.video-play-button:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 50px;
    height: 50px;
    /* background: #24BA96; */
    border-radius: 50%;
    background: var(--main-text-color, #1D2940);
    transition: all 200ms;
}

.video-play-button:hover:after {
    background-color: darken(#fa183d, 10%);
}

.video-play-button img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.blogleft-blog-section-area {
    background: #EFF7FF;
}

.blogleft-blog-section-area a:hover {
    color: #6083A9;
}

.video-play-button span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 13px solid #fff;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    margin-top: 11px;
    margin-left: 7px;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}



.video-overlay {
    position: fixed;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.80);
    opacity: 0;
    transition: all ease 500ms;
}

.video-overlay.open {
    position: fixed;
    z-index: 1000;
    opacity: 1;
}

.video-overlay-close {
    position: absolute;
    z-index: 1000;
    top: 15px;
    right: 20px;
    font-size: 36px;
    line-height: 1;
    font-weight: 400;
    color: #24BA96;
    text-decoration: none;
    cursor: pointer;
    transition: all 200ms;
}

.video-overlay-close:hover {
    color: #24BA96;
}

.moda-blog-area {
    position: relative;
}

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

.border30.borderpadding {
    margin-top: 60px;
    margin-bottom: 40px;
}

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

.posttags ul li a {
    border-radius: 2px;
    background: var(--gray-color, #EFF7FF);
    padding: 10px 12px;
    margin-left: 16px;
    transition: all .4s ease-in-out;
}

.posttags ul li a:hover {
    border-radius: 2px;
    background: var(--main-text-color, #1D2940);
    color: #fff;
    transition: all .4s ease-in-out;
}

.share-area ul li {
    display: inline-block;
}

.share-area ul li a {
    border-radius: 32.149px;
    background: var(--gray-color, #EFF7FF);
    display: inline-block;
    height: 32px;
    width: 32px;
    text-align: center;
    line-height: 32px;
    margin-left: 16px;
    font-size: 16px;
    transition: all .4s ease-in-out;
}

.share-area ul li a:hover {
    transition: all .4s ease-in-out;
    border-radius: 32.149px;
    background: var(--main-text-color, #1D2940);
    color: #fff;
}

.postsocial-area {
    display: flex;
    justify-content: space-between;
}

.boredr30.borderpadding1 {
    margin-top: 40px;
    margin-bottom: 60px;
}

.repl-boxarea {
    display: flex;
    align-items: center;
}

.reply-section-area {
    border-radius: 2px;
    background: var(--gray-color, #EFF7FF);
    padding: 24px;
}

.replyimg {
    margin: 0 16px 0 0;
}

.replyfleex-area span svg {
    margin: 0 4px 0 0;
}

.replyfleex-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.replyfleex-area span {
    cursor: pointer;
}

.blogontact-section-area {
    border-radius: 4px;
    background: var(--gray-color, #EFF7FF);
    margin-top: 60px;
    padding: 24px;
}

.bloginput input {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 2px;
    background: #FFF;
    padding: 20px 16px;
    margin-top: 20px;
    outline: none;
}

.bloginput input::placeholder {
    color: var(--main-text-color, #1D2940);
    font-family: 'Kumbh Sans', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    opacity: 0.7;
}

.bloginput textarea::placeholder {
    color: var(--main-text-color, #1D2940);
    font-family: 'Kumbh Sans', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    /* 100% */
    opacity: 0.7;
}

.bloginput textarea {
    width: 100%;
    height: 140px;
    border: none;
    border-radius: 2px;
    background: #FFF;
    padding: 20px 16px;
    margin-top: 20px;
    outline: none;
}

.textbtn {
    text-align: right;
}

.blog5-section5-area {
    position: relative;
}

.blog2-ahtuor2.blog5auhto5::after {
    position: absolute;
    content: "";
    border-radius: 4px;
    background: #007DE7;
    width: 0;
    height: 100%;
    z-index: -1;
    top: 0;
    right: 0;
    transition: all .4s ease-in-out;
}

.blog2-ahtuor2 {
    position: relative;
    z-index: 1;
}

.contact2-auhtor-section:hover {
    transform: translateY(-10px);
    transition: all .4s ease-in-out;
}

.blog2-ahtuor2:hover::after {
    width: 100%;
    left: 0;
    right: auto;
    transition: all .4s ease-in-out;
}

.blog2-ahtuor2.blog-2ahthor {
    border-radius: 4px;
    background: #1A237E;
}

.blog2-author-area {
    position: relative;
}

.blog2-ahtuor2:hover {
    transform: translateY(-10px);
    transition: all .4s ease-in-out;
}

.blog2-ahtuor2 {
    transition: all .4s ease-in-out;
}

.blog2-ahtuor2:hover ul li a {
    color: #fff;
    transition: all .4s ease-in-out;
}

.blog2-ahtuor2:hover h1 {
    color: #fff;
    transition: all .4s ease-in-out;
}

.blog2-ahtuor2:hover p {
    color: #fff;
    transition: all .4s ease-in-out;
}

.blog2-ahtuor2:hover a {
    color: #fff;
    transition: all .4s ease-in-out;
}

.blog2-ahtuor2:hover img {
    filter: brightness(40);
    transition: all .4s ease-in-out;
}

.blog2-ahtuor2.blog-2ahthor.blog5auhto6 {
    border-radius: 4px;
    background: #007DE7;
}

.BLOG6-SECTION-6AREA {
    background: #F4F4F4;
    position: relative;
}

.blog2-ahtuor2.blog-2ahthor.blog5auhto6.blog6scetio7 {
    border-radius: 4px;
    background: #FFF;
    transition: all .4s ease-in-out;
}

.blog2-ahtuor2.blog-2ahthor.blog5auhto6.blog6scetio7:hover {
    border-radius: 4px;
    background: #080D06;
    transition: all.4s ease-in-out;
}

.blog2-ahtuor2.blog-2ahthor.blog5auhto6.blog6scetio7::after {
    display: none;
}

img.elementors6 {
    position: absolute;
    top: 0;
    left: 0;
}

img.elemnetors7 {
    position: absolute;
    right: 0;
    bottom: 0;
}

.blog2-author-area:hover .blog2-images img {
    transform: scale(1.1);
    transition: all .4s ease-in-out;
}

.blog2-images {
    overflow: hidden;
    transition: all .4s ease-in-out;
    border-radius: 5px;
}

.blog2-images img {
    transition: all .4s ease-in-out;
}

.blog1-padding.blog-pdding2 {
    position: relative;
    z-index: 2;
}

.blog1-padding.blog-pdding2::after {
    position: absolute;
    content: "";
    width: 100%;
    bottom: 0;
    left: 0;
    border-radius: 0px 0px 2px 2px;
    background: #EB7C3A;
    height: 0;
    z-index: -1;
    transition: all .4s ease-in-out;
}

.blog1-boxarea.blog7boxarea:hover .blog1-padding.blog-pdding2::after {
    height: 100%;
    transition: all .4s ease-in-out;
    top: 0;
    bottom: auto;
}

.blog7boxarea {
    margin-bottom: 30px;
}

.blog1-boxarea.blog7boxarea:hover a {
    color: #fff;
    transition: all .4s ease-in-out;
}

.blog1-boxarea.blog7boxarea:hover P {
    color: #fff;
    transition: all .4s ease-in-out;
}

.blog1-boxarea.blog7boxarea:hover .blog1-text img {
    filter: brightness(0) invert(1);
    transition: all .4s ease-in-out;
}

.blog-7-section-area {
    background: #FFF4EE;
    position: relative;
}

img.elementors13 {
    position: absolute;
    top: 0;
    right: 0;
}

.blog1-boxarea.blog7boxarea {
    position: relative;
    z-index: 1;
}

.blog1-boxarea.blog7boxarea::after {
    position: absolute;
    content: "";
    border-radius: 0px 0px 2px 2px;
    background: #196C68;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    transition: all .5s ease-in-out;
    z-index: -1;
}

.blog1-boxarea.blog7boxarea:hover::after {
    height: 100%;
    top: 0;
    bottom: auto;
    transition: all .5s ease-in-out;
}

.blog8-section-area {
    position: relative;
}

.blog8-section-area {
    background: #EFF7F6;
}

img.elemenotrs16 {
    position: absolute;
    top: 0;
    right: 0;
}

img.elementors15 {
    position: absolute;
    bottom: 0;
    left: 0;
}

.blog9-authorarea img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .4s ease-in-out;
}

.blog9-boxarea {
    border-radius: 4px;
    background: #FFF;
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.08);
    padding: 32px;
    margin-bottom: 30px;
}

.blog9-boxarea a:hover {
    color: #1DAF68;
    transition: all .4s ease-in-out;
}

.blog9-boxarea:hover .blog9-authorarea img {
    transform: scale(1.1);
    transition: all .4s ease-in-out;
}

.blog9-authorarea {
    transition: all .4s ease-in-out;
    overflow: hidden;
    border-radius: 5px;
}

.blog9auhtor-texrea {
    margin-top: 24px;
}

.blog-pdding2 {
    padding: 24px 20px;
    background: #fff;
    position: relative;
    z-index: 1;
}

.blog-pdding2::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    height: 0;
    width: 100%;
    z-index: -1;
    transition: auto;
    transition: all .4s ease-in-out;
    border-radius: 0px 0px 2px 2px;
    background: #EB7C3A;
}

.blog7boxarea:hover .blog-pdding2::after {
    height: 100%;
    transition: all .4s ease-in-out;
    top: 0;
    bottom: auto;
}

.blog7boxarea:hover p {
    color: #fff;
    transition: all .4s ease-in-out;
}

.blog7boxarea:hover a {
    color: #fff;
    transition: all .4s ease-in-out;
}

.blog7boxarea:hover .blog1-text img {
    filter: brightness(0) invert(1);
    transition: all .4s ease-in-out;
}

.blog7boxarea:hover .blog1-img img {
    transform: scale(1.1);
}

.blog2-ahtuor2.blog2inner::after {
    display: none;
}

.blog2-ahtuor2.blog-2ahthor.bloinner2::after {
    display: none;
}

.accordion-body p {
    opacity: 0.8;
}

.autherblog-textarea {
    border-radius: 0px 0px 4px 4px;
    background: #EFF7F6;
    padding: 32px 24px;
}

.blogauhtor {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px 4px 0 0;
    transition: all .4s ease-in-out;
}

.auhtor-blog10:hover .blogauhtor {
    transform: scale(1.1);
    transition: all .4s ease-in-out;
}

.auhtorblogimg {
    overflow: hidden;
    transition: all .4s ease-in-out;
}

.auhtor-blog10:hover .auhtorblogimg {
    border-radius: 4px 4px 0 0;
}

.auhtor-blog10 a:hover {
    color: #86B03C;
    transition: all .4s ease-in-out;
}

.auhtor-blog10 a img {
    filter: brightness(0);
    transition: all .4s ease-in-out;
}

.auhtor-blog10 a:hover img {
    filter: none;
    transition: all .4s ease-in-out;
}

.blog-divided1-text a:hover {
    color: #86B03C;
    transition: all .4s ease-in-out;
}

.blog-divided1-text a img {
    filter: brightness(0);
    transition: all .4s;
}

.blog-divided1-text a:hover img {
    filter: none;
    transition: all .4s ease-in-out;
}

.blogsection-divided:hover .blog-divided1 img {
    transform: scale(1.1);
    transition: all .4s ease-in-out;
}

.blog-divided1 {
    border-radius: 4px;
    overflow: hidden;
    transition: all .4s ease-in-out;
}

.blog-divided1 img {
    transition: all .4s ease-in-out;
}

.blog1-text.margin-b20 {
    margin-bottom: 16px;
}

.blogsection-divided {
    padding: 0 13px 13px 0;
}

.blo11auhtor a:hover {
    color: #22BFCA;
}

.blog-divided1-text.blog11auhtor a:hover {
    color: #21B7C5;
}

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

.postiocns a {
    font-size: 36px;
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 3;
}

.postiocns {
    text-align: center;
    position: absolute;
    vertical-align: middle;
    text-align: center;
    opacity: 0;
    transition: all .8s ease-in-out;
    z-index: -2;
    height: 0;
    bottom: -48%;
    left: 45%;
}

.post-boxarea:hover .postiocns {
    visibility: visible;
    opacity: 1;
    z-index: 2;
    transition: all .8s ease-in-out;
    height: 300px;
}

.post-boxarea {
    position: relative;
    transition: all .6s ease-in-out;
    margin-bottom: 30px;
    overflow: hidden;
}

.post-boxarea::after {
    position: absolute;
    content: "";
    height: 0;
    width: 100%;
    left: 0;
    bottom: 0;
    border-radius: 4px;
    opacity: 0.8;
    background: #071A1C;
    z-index: -1;
    transition: all .6s ease-in-out;
}

.post-boxarea:hover::after {
    z-index: 1;
    transition: all .4s ease-in-out;
    height: 100%;
}

.post-boxarea:hover .posticons {
    visibility: visible;
    opacity: 1;
    top: 45%;
    left: 45%;
    z-index: 1;
}

.post-boxarea:hover .posticons {
    visibility: visible;
    z-index: 2;
    top: 45%;
    opacity: 1;
    transition: all .4s ease-in-out;
    left: 45%;
}

.blog12auhtor a:hover {
    color: #49357F;
}

/*----=========== BLOG AREA CSS----============*/

/*----=========== CONTACT AREA CSS----============*/
.contact1-header h1 {
    padding: 0 364px;
}

.contact1-section-area {
    background-image: url(../images/background/service-benefits-bacground.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.contact-first-boxarea {
    border-radius: 4px;
    background: #002147;
    padding: 40px 40px 48px 40px;
}

.border1 {
    stroke-width: 1px;
    border: 1px solid #fff;
    opacity: 0.10000000149011612;
}

.locaicon1 {
    background: #163150;
    height: 80px;
    width: 80px;
    text-align: center;
    line-height: 80px;
    border-radius: 50%;
    transition: all .4s ease-in-out;
}

.location-icon a:hover {
    color: #fff;
}

.location-text {
    position: relative;
    left: 100px;
    top: 0;
}

.locaicon1 {
    position: absolute;
}

.location-icon:hover .locaicon1 {
    background: linear-gradient(142deg, #1252DE 0%, rgba(109, 15, 221, 0.77) 100%);
    transition: all .4s ease-in-out;
}

.location-icon {
    transition: all .4s ease-in-out;
}

.first-input input {
    width: 100%;
    border-radius: 4px;
    border: 1px solid #1D2940;
    background: var(--neutral-white, #FFF);
    padding: 16px;
    margin-top: 24px;
    outline: none;
}


.first-input .nice-select:after {
    height: 7px;
    width: 7px;
    right: 16px;
}

.nice-select.country-area {
    width: 100%;
}

.nice-select {
    box-sizing: border-box;
    clear: both;
    cursor: pointer;
    display: block;
    float: left;
    font-size: 16px;
    font-weight: normal;
    outline: none;
    position: relative;
    line-height: 26px;
    width: 100%;
    border-radius: 4px;
    border: 1px solid #E6E6E6;
    background: var(--neutral-white, #FFF);
    margin-bottom: 24px;
    outline: none;
}

.nice-select ul {
    width: 100%;
}

.textarea textarea {
    border-radius: 4px;
    border: 1px solid #1D2940;
    background: var(--neutral-white, #FFF);
    outline: none;
    width: 100%;
    padding: 16px;
    margin-top: 24px;
    height: 120px;
}

.contact-main-box {
    border-radius: 4px;
    background: #FFF;
    box-shadow: 0px 4px 48px 0px rgba(0, 0, 0, 0.09);
    padding: 42px 32px;
}

.contact-main-box .nice-select span {
    color: #7f7f7f;
    font-weight: 400;
}

.theme-btn2 button {
    border: none;
    outline: none;
}

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

button.theme-get-tex::after {
    background: var(--button-linner, linear-gradient(130deg, rgba(109, 15, 221, 0.53) 0%, #1252DE 100%));
    position: absolute;
    content: "";
    z-index: 1;
    height: 100%;
    width: 0;
    left: 0;
    top: 0;
    border-radius: 5px;
    transition: all .3s ease-in-out;
    right: 0;
}

button.theme-get-tex:hover::after {
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: all .4s ease-in-out;
    left: 0;
}

/* homepage2 contact */
.contact2-section-area {
    background-image: url(../images/background/service2-bacground.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.contact2-auhtor-section {
    position: relative;
    border-radius: 4px;
    background: #FFF;
    padding: 24px 32px;
    box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.09);
}

.contact-location {
    position: relative;
    padding-left: 60px;
}

.clock-area {
    position: absolute;
}

.contact-padding {
    padding: 0 0 0 40px;
}

.contact-location a:hover {
    color: unset;
}

.contact2-auhtor-section {
    transition: all .4s ease-in-out;
}

.contact-phonr-bg {
    border-radius: 4px;
    background: #1A237E;
}

.contact2-all-contact {
    border-radius: 4px;
    background: #FFF;
    padding: 48px 32px;
}

img.elementor13 {
    position: absolute;
    bottom: 0px;
    left: 0;
}

img.elementor14 {
    position: absolute;
    top: -65px;
    right: -100px;
}

/* homepage2 contact */
.contact3-image3 {
    position: relative;
}

.contact1-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.input3-area input {
    width: 100%;
    border-radius: 2px;
    background: #E9EDF4;
    border: none;
    padding: 16px;
    outline: none;
}

.textarea3 textarea {
    width: 100%;
    border: none;
    outline: none;
    border-radius: 2px;
    background: #E9EDF4;
    padding: 16px;
    height: 120px;
}

.nice-select.country-area2 {
    border-radius: 2px;
    background: #E9EDF4;
    height: 57px;
    margin-top: 0;
}

.theme-btn6 button {
    border: none;
    border-radius: 100px;
    background: #044E7C;
    color: #fff;
    padding: 18px 24px;
    transition: all .4s ease-in-out;
}

.theme-btn6 button:hover {
    transition: all .4s ease-in-out;
    background: #0C161D;
}

.contact3-textarea3 {
    padding: 0 40px;
}

a.contact3.contactboredrbtn {
    padding: 7px 24px;
}

.contact3-fromarea {
    padding: 0 0 0 40px;
}

.nice-select.country-area2 ul {
    border-radius: 2px;
    background: #E9EDF4;
    color: #575E63;
    font-family: Nunito;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
}

.contcat5-section-area {
    background-image: url(../images/background/practice4-background.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.phone7-icon {
    background: #1D2940;
    display: inline-block;
    height: 70px;
    width: 70px;
    text-align: center;
    line-height: 73px;
    border-radius: 50%;
    justify-content: center;
}

.phone7-textarea {
    background: #fff;
    display: flex;
    align-items: center;
    padding: 28px 32px;
}

.phone7-text {
    padding-left: 16px;
}

.phone7-textarea:hover a {
    color: #131731;
}

.contact5-main-section {
    border-radius: 4px;
    background: var(--main-color, #1D2940);
    padding: 32px;
}

.input-5area input {
    width: 100%;
    height: 100%;
    border-radius: 2px;
    padding: 20px 16px;
    outline: none;
    border: none;
    border-radius: 2px;
    /* opacity: 0.1; */
    background: #343E53;
    color: #fff;
    font-size: 16px;
}

.input-5area textarea {
    width: 100%;
    height: 140px;
    outline: none;
    padding: 20px 16px;
    border-radius: 2px;
    background: #343E53;
    border: none;
    color: #fff;
    font-size: 16px;
}

.input-5area input::placeholder {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
}

.input-5area textarea::placeholder {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
}

button.contcat5 {
    justify-content: right;
    border-radius: 2px;
    background: var(--secondary-color, #6083A9);
    padding: 18px 22px;
    border: none;
    display: inline-block;
    transition: all .4s ease-in-out;
}

button.contcat5 span svg {
    transform: rotate(-50deg);
}

button.contcat5:hover {
    background: #fff;
    color: #000;
    transition: all .4s ease-in-out;
}

.contact5-btn5 {
    text-align: end;
}

.contcat5-textarea5 {
    padding: 0 70px 0 0;
}

.input-5area input::placeholder {
    opacity: 0.7;
}

.input-5area textarea::placeholder {
    opacity: 0.7;
}

.phone7-textarea.contactinnerbg {
    border-radius: 4px;
    background: var(--gray-color, #EFF7FF);
}

.contact2-all-contact.contact2inner {
    border-radius: 4px;
    /* background: var(--gray-color, #EFF7FF); */
}


.contacblogbg {
    background: var(--main-text-color, #1D2940);
}

.gmap_canvas {
    width: 100%;
}

iframe.gmap_iframe {
    width: 100%;
    height: 440px;
}

.contact5author5-section-area {
    background: #EFF7FF;
    position: relative;
}

img.elementors3 {
    position: absolute;
    top: 0;
    left: 0;
}

button.button13.positionbtn {
    position: relative;
    left: 0;
    margin-top: 20px;
}

.contact1-img {
    position: relative;
}

.contact3-fromarea.fromtextrea input {
    background: #fff;
}

.contact3-fromarea.fromtextrea textarea {
    background: #fff;
}

.contact3-fromarea.fromtextrea .nice-select {
    background: #fff;
    outline: none;
}

.contact3-fromarea.fromtextrea ul.list {
    background: #fff;
}

.contact3-fromarea.contact6input input {
    border-radius: 2px;
    background: #F4F4F4;
}

.contact3-fromarea.contact6input .nice-select {
    border-radius: 2px;
    background: #F4F4F4;
}

.contactimages6 img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.contactimages6 {
    position: relative;
    z-index: 1;
}

.contact3-fromarea.fromtextrea .nice-select span {
    color: #788081;
    font-weight: 500;
}

.contact3-fromarea .nice-select span {
    color: #757575;
    /* opacity: 0; */
    font-family: 'Nunito';
}

.contact9-allinput .nice-select span {
    color: #717185;
}

.contact3-fromarea.fromtextrea .nice-select::after {
    height: 7px;
    width: 7px;
    right: 16px;
}

.contact3-fromarea.contact6input textarea {
    border-radius: 2px;
    background: #F4F4F4;
}

button.contactbtn6 {
    border: none;
    border-radius: 4px;
    background: #35AC39;
    display: inline-block;
    padding: 18px 24px;
    position: relative;
    z-index: 2;
}

button.contactbtn6::after {
    position: absolute;
    top: 0;
    right: 0;
    content: "";
    background: #080D06;
    height: 100%;
    width: 0;
    transition: all .4s ease-in-out;
    z-index: -1;
    border-radius: 4px;
}

button.contactbtn6:hover::after {
    width: 100%;
    left: 0;
    right: auto;
    transition: all .4s ease-in-out;
    /* z-index: -1; */
    border-radius: 4px;
}

.contactbottonarea {
    margin-top: 80px;
}

.contactbottom1 {
    border-radius: 4px;
    background: #FFF;
    box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.09);
    padding: 32px 24px 32px 18px;
    position: relative;
}

.icons6list {
    position: relative;
    padding-left: 75px;
}

.iconslist6 {
    position: absolute;
}

.contactbottom1:hover {
    border-radius: 4px;
    background: #35AC39;
    transition: all .4s ease-in-out;
}

.contactbottom1:hover img {
    filter: brightness(40) invert(0);
    transition: all .4s ease-in-out;
}

.contactbottom1:hover a {
    color: #fff;
    transition: all .4s ease-in-out;
}

.contactbottom1:hover h1 {
    color: #fff;
    transition: all .4s ease-in-out;
}

.contactbottom1 {
    transition: all .4s ease-in-out;
}

.contactbottom1.pnone:hover img {
    filter: brightness(40) invert(1);
}

.contact2-all-contact7 {
    border-radius: 4px;
    background: #FFF;
    box-shadow: 0px 0px 48px 0px rgba(0, 0, 0, 0.09);
    padding: 48px 32px;
}

.contact2-auhtor-section1 {
    border-radius: 4px;
    background: #FFF;
    box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.09);
    padding: 32px 24px;
    transition: all .4s ease-in-out;
}

.contact2-auhtor-section1:hover {
    transition: all .4s ease-in-out;
    border-radius: 4px;
    background: #EB7C3A;
    color: #fff;
}

.contact2-auhtor-section1:hover img {
    filter: brightness(0) invert(1);
    transition: all .4a ease-in-out;
}

.contact2-auhtor-section1:hover a {
    color: #fff;
    transition: all .4s ease-in-out;
}

.contact2-auhtor-section1:hover h1 {
    color: #fff;
    transition: all .4s ease-in-out;
}

.contact2-auhtor-section1:hover p {
    color: #fff;
    transition: all .4s ease-in-out;
}

.contact2-auhtor-section1:hover {
    transform: translateY(-10px);
    transition: all .4s ease-in-out;
}

button.homepage7btn {
    border-radius: 2px;
    background: #EB7C3A;
    border: none;
    padding: 18px 24px;
    margin-top: 32px;
    transition: all .4s ease-in-out;
    border: 1px solid #EB7C3A;
}

button.homepage7btn:hover {
    color: #EB7C3A;
    background: none;
    transition: all .4s ease-in-out;
}

button.homepage7btn:hover {
    transform: translateY(-5px);
    transition: all .4s ease-in-out;
}

.contact8-from-area input {
    width: 100%;
    height: 100%;
    padding: 16px;
    border-radius: 2px;
    background: #F4F4F4;
    border: none;
    font-family: 'Kumbh Sans', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    color: #56605F;
    margin-bottom: 16px;
    outline: none;
}

.contact8-from-area .nice-select span {
    color: #566369d1;
}

.contact8-from-area .nice-select::after {
    height: 7px;
    width: 7px;
    right: 16px;
}

.contact8-from-area .nice-select {
    border-radius: 2px;
    background: #F4F4F4;
    font-family: 'Kumbh Sans', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    /* line-height: 16px; */
    outline: none;
    color: #56605F;
    border: none;
    margin-bottom: 16px;
}

.contact8-from-area textarea {
    width: 100%;
    height: 120px;
    padding: 16px;
    border-radius: 2px;
    background: #F4F4F4;
    border: none;
    font-family: 'Kumbh Sans', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    color: #56605F;
    margin-bottom: 16px;
    outline: none;
}

.contcat8-images8 {
    position: relative;
    z-index: 1;
}

.contcat8-images8 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

img.elementors17 {
    height: 140px;
    width: 140px;
    position: absolute;
    top: -45px;
    right: -45px;
    z-index: -1;
}

.contactbottom2 {
    border-radius: 4px;
    background: #FFF;
    box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.09);
    padding: 32px 24px;
    position: relative;
    z-index: 1;
    transition: all .4s ease-in-out;
}

.contactbottom2::after {
    position: absolute;
    content: "";
    background: #196C68;
    top: 0;
    height: 100%;
    width: 0;
    left: 0;
    z-index: -1;
    transition: all .4s ease-in-out;
    border-radius: 4px;
}

.contactbottom2::before {
    position: absolute;
    content: "";
    background: #196C68;
    top: 0;
    height: 100%;
    width: 0;
    right: 0;
    z-index: -1;
    transition: all .4s ease-in-out;
    border-radius: 4px;
}

.contactbottom2:hover a {
    color: #fff;
    transition: all .4s ease-in-out;
}

.contactbottom2:hover h1 {
    color: #fff;
    transition: all .4s ease-in-out;
}

.contactbottom2:hover img {
    filter: brightness(0) invert(1);
    transition: all .4s ease-in-out;
}

.contactbottom2:hover::after {
    width: 50%;
    transition: all .4s ease-in-out;
    color: #fff;
    border-radius: 4px 0 0 4px;
}

.contactbottom2:hover::before {
    width: 50%;
    transition: all .4s ease-in-out;
    border-radius: 0 4px 4px 0;
}

button.contact9btn {
    border-radius: 4px;
    background: #1DAF68;
    border: none;
    outline: none;
    padding: 18px 22px;
    margin-top: 32px;
    position: relative;
    z-index: 1;
}

button.contact9btn::after {
    position: absolute;
    content: "";
    background: #0B111D;
    height: 0;
    width: 100%;
    bottom: 0;
    left: 0;
    transition: all .4s ease-in-out;
    z-index: -1;
}

button.contact9btn:hover::after {
    height: 100%;
    transition: all .4s ease-in-out;
    bottom: auto;
    top: 0;
    border-radius: 4px;
}

.contact9-allinput input {
    color: #5C6069;
    font-family: 'Kumbh Sans', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    border-radius: 2px;
    background: #FFF;
    padding: 16px;
    border: none;
    width: 100%;
    outline: none;
}

.contact9-allinput textarea {
    color: #5C6069;
    font-family: 'Kumbh Sans', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    border-radius: 2px;
    background: #FFF;
    padding: 16px;
    border: none;
    width: 100%;
    height: 100px;
    outline: none;
}

.contact9-allinput .nice-select {
    color: #5C6069;
    font-family: 'Kumbh Sans', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    border-radius: 2px;
    background: #FFF;
    padding: 16px;
    border: none;
    width: 100%;
    outline: none;
}

.contact9-section-area {
    background: #F5FAFF;
    position: relative;
}

.contcat6-images {
    position: relative;
}

img.contact9auhtorimg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 320px 320px 5px 5px;
    position: relative;
    z-index: 1;
}

img.trandparency1 {
    position: absolute;
    right: 30px;
    top: 30px;
}

.phonearea-contact9 {
    display: flex;
    border-radius: 2px;
    background: #FFF;
    padding: 24px;
    transition: all .4s ease-in-out;
    position: relative;
    z-index: 1;
    height: 140px;
    width: 100%;
}

.phone9textarea {
    padding-left: 30px;
}

.phonearea-contact9:hover {
    background-color: #1DAF68;
    transition: all .4s ease-in-out;
    transform: translateY(-10px);
}

.phonearea-contact9:hover img {
    filter: brightness(0) invert(1);
    transition: all .4s ease-in-out;
}

.phonearea-contact9:hover h1 {
    color: #fff;
    transition: all .4s ease-in-out;
}

.phonearea-contact9:hover a {
    color: rgba(255, 255, 255, 0.80);
}

.contact10-section-area {
    position: relative;
    background: #EFF7F6;
}

img.contact10img {
    width: 100%;
    height: 630px;
    object-fit: cover;
    border-radius: 4px;
}

.contact10-images {
    position: relative;
    z-index: 1;
}

img.elementors69 {
    position: absolute;
    right: -40px;
    top: -40px;
    z-index: -1;
}

img.elementors70 {
    position: absolute;
    top: 0;
    right: 0;
}

ul.contact-select li {
    display: inline-block;
    align-items: center;
}

ul.contact-select li {
    /* background: #86B03C; */
    padding: 12px 14px;
    display: inline-block;
    border-radius: 4px;
    border-radius: 2px;
    background: rgba(9, 22, 34, 0.05);
    margin-bottom: 24px;
    margin-top: 16px;
    cursor: pointer;
}

ul.contact-select li {
    margin-left: 8px;
}

.contact10-section input {
    width: 100%;
    height: 100%;
    outline: none;
    border: none;
    padding: 20px 16px;
    margin-bottom: 20px;
    background: #F3F3F4;
    color: #091622;
    font-family: Kumbh Sans;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
}

.contact10-section textarea {
    width: 100%;
    border: none;
    outline: none;
    background: #F3F3F4;
    padding: 20px 16px;
    height: 140px;
    color: #091622;
    font-family: Kumbh Sans;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
}

.contact10-section {
    background: #fff;
    padding: 32px;
}

.contact-consult {
    border-radius: 4px;
    background: #86B03C;
    display: inline-block;
    border: none;
    padding: 16px 24px;
    outline: none;
    position: relative;
    z-index: 1;
    transition: all .4s ease-in-out;
    margin-top: 32px;
    text-align: end;
}

.consalt-contact {
    text-align: end;
}

.contact-consult::after {
    position: absolute;
    content: "";
    background: #fff;
    opacity: 0.1;
    height: 100%;
    width: 0;
    right: 0;
    bottom: 0;
    transition: all .4s ease-in-out;
    z-index: -1;
}

.contact-consult:hover::after {
    top: 0;
    left: 0;
    transition: all .4s ease-in-out;
    width: 100%;
    right: auto;
}

.contact-consult:hover {
    transform: translateY(-5px);
    transition: all .4s ease-in-out;
}

ul.contact-select li.active-size {
    border-radius: 2px;
    background: #86B03C;
    color: #fff;
}

ul.contact-select li:hover {
    border-radius: 2px;
    background: #86B03C;
    color: #fff;
    transition: all .4s ease-in-out;
}

.input3-area11 input {
    width: 100%;
    padding: 16px;
    border: none;
    background: #fff;
    border-radius: 4px;
    outline: none;
}

.textarea11 textarea {
    width: 100%;
    border: none;
    outline: none;
    padding: 16px;
    height: 120px;
}

.first-name-input11 .nice-select {
    background: #fff;
    border: none;
    width: 100%;
    height: 54px;
}

.first-name-input11 .nice-select {
    margin: 0;
}

.first-name-input11 .nice-select span.current {
    color: #747979;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
}

.textarea11::placeholder {
    color: #4D5050;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
}

.contactbutton11 button.selecbtn11 {
    display: inline-block;
    width: 154px;
}

.selecbtn11.thmbtn12 {
    background: #49357F;
}

/*----=========== CONTACT AREA CSS----============*/

/*----=========== CLIENT AREA CSS----============*/
.client-author-area {
    border-radius: 2px;
    background: #E9EDF4;
    padding: 28px 20px;
}

.client-author-area {
    position: relative;
    transition: all .4s ease-in-out;
}

.client-main-pera {
    position: relative;
    padding-left: 100px;
    top: 0;
    transition: all .4s ease-in-out;
}

.client-icon {
    position: absolute;
}

.nice-select.active:focus {
    outline: none;
}

span.current {
    color: #4F5C6A;
    outline: none;
}

.client-author-area:hover a {
    color: #fff;
    transition: all .4s ease-in-out;
}

.client-author-area:hover {
    transform: translateY(-10px);
    transition: all .4s ease-in-out;
}

.client-icon {
    background: #DCE4EA;
    height: 64px;
    width: 64px;
    line-height: 64px;
    text-align: center;
    border-radius: 50%;
    transition: all .4s ease-in-out;
}

.client-author-area:hover {
    border-radius: 2px;
    background: #1A237E;
    transition: all .4s ease-in-out;
}

.client-author-area:hover .client-icon {
    background: #fff;
    transition: all .4s ease-in-out;
}

.client-author-area:hover h1 {
    color: #fff;
    transition: all .4s ease-in-out;
}

.client-author-area:hover p {
    color: #fff;
    transition: all .4s ease-in-out;
}

.works-text-area {
    padding: 0px 0 0 70px;
}

.service3-icon {
    background: #f4f4f4;
    display: inline-block;
    height: 64px;
    width: 64px;
    text-align: center;
    line-height: 64px;
    border-radius: 50%;
}

.service3-boxarea1 {
    border-radius: 10px;
    background: #e5edf2;
    padding: 28px 20px;
    position: relative;
}

.service3-auhtor3 {
    position: relative;
    padding-left: 100px;
    top: 0;
}

.testimonial2-scetion-area1 {
    background: #E9EDF4;
    position: relative;
}

.service3-icon {
    position: absolute;
}

img.elementor-19 {
    position: absolute;
    top: 0;
    left: 0;
}

.accordian4 .accordion-item:first-of-type .accordion-button {
    border: none;
    box-shadow: none;
}

.accordian4 button.accordion-button:focus {
    border: none;
    box-shadow: none;
}

button.accordion-button.collapsed {
    color: var(--main-color, #1D2940);
    font-family: 'Lora', serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
}

.accordion-button:not(.collapsed) {
    border-radius: 2px;
    background: var(--main-color, #1D2940);
}

.accordion-button:not(.collapsed) {
    color: #fff;
    font-family: 'Lora', serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
}

button.accordion-button {
    padding: 16px 22px;
    border-radius: 2px;
}

.accordion-body {
    border-radius: 2px;
    background: var(--main-color, #1D2940);
    color: #fff;
}

.accordion-body p {
    color: #fff;
}

h2.accordion-header {
    border: none;
    border-radius: 0;
}

.accordion-button:not(.collapsed)::after {
    color: #fff;
    filter: brightness(0) invert(1);
}

.accordion-item {
    border: none;
    margin-bottom: 24px;
}

h2.accordion-header {
    /* border: 1px solid #DDDFE2; */
    /* border-radius: 5px 5px 0 0; */
}

.accordian-body p {
    color: #D2D4D9;
}

.client4-img1 img {
    width: 100%;
    height: 100%;
    OBJECT-FIT: COVER;
    border-radius: 5px;
}

.client3-section-textarea {
    padding: 0 80px 0 0;
}

.tax-consulttext1 {
    padding: 0 0 0 20px;
}

.counter1.counetr2:hover {
    border-radius: 4px;
    background: #EB7C3A;
    transition: all .4s ease-in-out;
}

.client10-icon {
    position: relative;
    z-index: 1;
}

.client10-boxarea:hover .service10-icon {
    background: #86B03C;
    transition: all .4s ease-in-out;
}

.client10-boxarea:hover .service10-icon img {
    filter: brightness(0) invert(1);
    transition: all .4s ease-in-out;
}

.service10-icon {
    background: #EFF7F6;
    display: inline-block;
    height: 72px;
    width: 72px;
    text-align: center;
    line-height: 72px;
    border-radius: 50%;
    position: absolute;
    left: 117px;
    top: 9px;
}

.numbericon {
    background: #86B03C;
    display: inline-block;
    height: 24px;
    width: 24px;
    text-align: center;
    line-height: 24px;
    border-radius: 50%;
    position: absolute;
    left: 117px;
    top: 5px;
}

.client10-boxarea:hover .numbericon {
    background: #fff;
    box-shadow: drop-shadow(1px 0px 48px rgba(0, 0, 0, 0.50));
    color: #86B03C;
    transition: all .4s ease-in-out;
}

.client10-boxarea:hover .numbericon p {
    color: #86B03C;
    transition: all .4s ease-in-out;
}

.client10-boxarea a:hover {
    color: #86B03C;
    transition: all .4s;
}

.worksall-section-area {
    position: relative;
}

img.elementors67 {
    position: absolute;
    left: 190px;
    top: 20%;
}

.client10-boxarea.positionboxarea {
    position: relative;
    margin-top: 70px;
}

.client10-boxarea {
    margin-bottom: 30px;
}

/*----=========== CLIENT AREA CSS----============*/

/*----=========== CASE STUDY AREA CSS----============*/
.case-study-scetion-area {
    background-image: url(../images/background/casestudy-bacground.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.case-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.single-portfolio.singlecase {
    position: relative;
    transition: all .4s ease-in-out;
}

.portfolio-images.singleportfolio:hover .portfolio-textarea {
    background: #fff;
    color: #0C161D;
}

.single-portfolio {
    position: relative;
}

.all-btntabs li button.nav-link {
    color: none;
    color: #0C161D;
    font-family: Nunito;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 16px;
    border-radius: 102px;
    background: #F8FAFD;
    padding: 14px 16px;
}

.all-btntabs li button.nav-link.active {
    border-radius: 102px;
    background: #044E7C;
    color: #fff;
}

.all-btntabs li button {
    margin: 0 0 0 16px;
}

.single-portfolio.singlecase:hover .portfolio-textarea {
    background: #fff;
    color: #0C161D;
}

.single-portfolio.singlecase:hover .portfolio-textarea p {
    color: #0C161D;
}

.single-portfolio.singlecase:hover .portfolio-textarea {
    height: auto;
    transition: all .4s ease-in-out;
}

.single-portfolio.singlecase:hover .portfolio-textarea a {
    color: #0C161D;
    margin-top: 28px;
}

.single-portfolio.singlecase .portfolio-textarea {
    left: 20px;
    width: 375px;
}

.single-portfolio.singlecase .portfolio-textarea {
    bottom: 30px;
}

.single-portfolio.singlecase .portfolio-textarea {
    border-radius: 5px;
}

.single-portfolio.singlecase:hover .portfolio-visible-textarea {
    height: 120px;
    transition: all .4s ease-in-out;
    z-index: 1;
    opacity: 1;
    position: relative;
}

.single-portfolio.singlecase {
    overflow-y: hidden;
}

.single-portfolio.singlecase {
    margin-bottom: 30px;
}

.single-portfolio.singlecase .portfolio-textarea {
    padding: 30px;
}

a.learn-more1:hover {
    color: #fff;
}

img.elementor-11 {
    position: absolute;
    bottom: 0px;
    right: 0;
}

img.elementor-5 {
    position: absolute;
    top: -39px;
    left: -100px;
}

.case2-study-textarea h1 {
    padding: 0 400px;
}

.pagination.margin-t60 {
    margin-top: 60px;
}

ul.pagination {
    justify-content: center;
    margin-top: 30px;
}

li.page-item.pagecolor a {
    background: #1D2940;
    color: #fff;
}

ul.pagination li a {
    border-radius: 2px;
    /* background: var(--main-text-color, #1D2940); */
    border-radius: 2px;
    background: #EFF7FF;
    color: #fff;
    font-size: 20px;
    border: none;
    margin: 0 14px 0 0;
    height: 60px;
    width: 60px;
    text-align: center;
    line-height: 50px;
    font-size: 20px;
    display: inline-block;
    font-weight: 700;
    color: var(--neutral-main-text-color, #08110D);
    transition: all .4s ease-in-out;
}

ul.pagination li a:hover {
    background: var(--main-text-color, #1D2940);
    transition: all .4s ease-in-out;
    color: #fff;
}

.case-textarea.casestyleft {
    width: 370px;
    left: 5%;
}

.secrch-areacase {
    width: 100%;
    margin-bottom: 30px;
}

.secrch-areacase form {
    position: relative;
}

.caseinput-area input {
    width: 90%;
    height: 100%;
    border: none;
    border-radius: 2px;
    background: none;
    outline: none;
    position: relative;
    font-size: 16px;
}

.secrch-areacase form {
    border-radius: 50px;
    background: #FFF;
    padding: 20px 30px;
    position: relative;
    box-shadow: 0 2px 2px rgb(0 0 0 / 20%);
}

.secrch-areacase .search-button {
    position: absolute;
    font-size: 20px;
    background-color: #044E7C;
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    top: -10px;
    right: -15px;
}

.secrch-areacase .search-button i {
    position: absolute;
    left: 13px;
    top: 13px;
}

.tags-area ul li {
    display: inline-block;
    align-items: center;
}

.tags-area ul li a {
    border-radius: 2px;
    background: #FFF;
    padding: 12px 16px;
    transition: all .4s ease-in-out;
    display: inline-block;
    margin-bottom: 16px;
    margin-left: 16px;
}

.tags-area {
    border-radius: 2px;
    background: var(--gray-color, #EFF7FF);
    padding: 24px 20px;
}

.tags-area ul li a:hover {
    border-radius: 2px;
    background: var(--main-text-color, #1D2940);
    transition: all .4s ease-in-out;
    color: #fff;
}

.peragraph-pera {
    /* border-radius: 2px; */
    /* background: var(--main-color, #6083A9); */
    border-radius: 2px;
    background: var(--gray-color, #EFF7FF);
    padding: 20px 32px;
    position: relative;
    z-index: 1;
}

.peragraph-pera::after {
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 2px;
    background: var(--main-color, #6083A9);
    height: 100%;
    width: 10px;
    content: "";
    transition: all .4s ease-in-out;
    z-index: -1;
}

.peragraph-pera {
    margin-top: 48px;
}

.peragraph-pera:hover::after {
    width: 100%;
    transition: all .4s ease-in-out;
}

.peragraph-pera:hover p {
    color: #fff;
    transition: all .4s ease-in-out;
}



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

.bussibess-plan p {
    /* margin-top: 6px; */
    padding-top: 5px;
}

.bussibess-plan {
    position: relative;
}

.bussibess-plan p {
    position: absolute;
    top: 12px;
    right: 0;
}

.portfolio {
    padding: 67px 0;
}

.portfolio .section-title {
    margin-bottom: 65px;
}

.portfolio .mb-65 {
    margin-bottom: 65px;
    justify-content: center;
}

.tab-btn-wrapper {
    display: flex;
    justify-content: center;
}

.tab-btn-wrapper button:last-child {
    margin-right: 0;
}

.portfolio-images {
    position: relative;
}

.portfolio-images img {
    transition: .3s linear all;
}

.portfolio-images::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: .3s ease-in-out;
    border-radius: 2px;
    opacity: 0;
    background: #0C161D;
}

.portfolio-images:hover {
    cursor: pointer;
}

.portfolio-images:hover::before {
    opacity: 0.8;
    visibility: visible;
}

.portfolio-hovered span {
    font-size: 30px;
}

.portfolio-hovered a h3 {
    font-weight: 600;
    font-size: 20px;
    line-height: 140%;
    margin-bottom: 8px;
    color: #fff;
}

.single-portfolio:hover .portfolio-hovered {
    opacity: 1;
    visibility: visible;
    cursor: pointer;
}

.sub-heading {
    text-align: center;
}

.section-title {
    text-align: center;
}

.portfolio-images img {
    width: 100%;
    height: 100%;
}

button.single-btn {
    border-radius: 102px;
    background: #F8FAFD;
    border: none;
    padding: 14px 16px;
    transition: all .4s ease-in-out;
    margin-left: 16px;
}

.tab-btn-wrapper {
    margin-top: 40px;
}

button.single-btn.active-item {
    border-radius: 102px;
    background: #044E7C;
    transition: all .4s ease-in-out;
    color: #fff;
}

.portfolio-textarea {
    position: absolute;
    background: #fff;
    bottom: 20px;
    width: 350px;
    left: 10%;
    padding: 16px 20px;
    transition: all .4s ease-in-out;
}

.portfolio-visible-textarea {
    opacity: 0;
    height: 0;
    transition: all .4s ease-in-out;
    position: relative;
    z-index: -4;
}


.single-portfolio:hover .portfolio-images::before {
    visibility: visible;
    opacity: 0.8;
    transition: all .4s ease-in-out;
}

.single-portfolio:hover .portfolio-visible-textarea {
    height: 100px;
    opacity: 1;
    transition: all .4s;
    position: relative;
    z-index: 1;
}

.single-portfolio:hover .portfolio-textarea {
    border-radius: 2px;
    background: #044E7C;
    color: #fff;
}

.single-portfolio:hover .portfolio-textarea h1 {
    color: #fff;
    transition: all .4s ease-in-out;
}

.single-portfolio:hover .portfolio-textarea p {
    color: #fff;
    transition: all .4s ease-in-out;
}

.single-portfolio:hover {
    transition: all .4s ease-in-out;
}

a.jast span svg {
    transform: rotate(-45deg);
}

.portfolio-textarea h1 {
    transition: all .4s ease-in-out;
}

.portfolio-textarea p {
    transition: all .4s ease-in-out;
}

a.jast:hover {
    color: #fff;
}

a.just span {
    transition: all .4s ease-in-out;
}

a.jast:hover span {
    padding-left: 5px;
    transition: all .4s ease-in-out;
}

.case5-section-area {
    background: var(--gray-color, #EFF7FF);
    position: relative;
}

img.elemen29 {
    position: absolute;
    top: 0;
}

img.elemen30 {
    position: absolute;
    right: 0;
    bottom: 0;
}

.case5-worksarea img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.servicetextimg.p-0.margint20 {
    margin-top: 20px;
}

.servicetextimg a.hovertext::after {
    display: none;
}

a.hovertext:hover {
    text-decoration: underline;
    transition: all .4s ease-in-out;
}

.case5-worksarea:hover .workservice5 img {
    transform: scale(1.1);
    transition: all .4s ease-in-out;
}

.workservice5 {
    overflow: hidden;
    transition: all .4s ease-in-out;
    border-radius: 5px;
}

.workservice5 img {
    transition: all .4s ease-in-out;
    border-radius: 5px;
}

.case5-worksarea {
    border-radius: 5px;
}

/*----=========== CASE STUDY AREA CSS----============*/

/*----=========== CTA AREA CSS----============*/
.cta2-section-area {
    background: #1A237E;
    position: relative;
}

.theme5-btn button {
    border-radius: 4px;
    background: #FFF;
    border: none;
    padding: 21px 22px;
    color: #1A237E;
    text-transform: uppercase;
}

.theme5-btn button span {
    padding-left: 9px;
}

.input1-area input {
    background: none;
    border: none;
    outline: none;
    color: #fff;
    font-size: 18px;
    font-family: 'Outfit', sans-serif;
    width: 60%;
}

.input1-area input::placeholder {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
}

img.elementor-13 {
    position: absolute;
    bottom: 0;
    right: 0;
}

.cta2-from-area form {
    border-radius: 4px;
    border: 1px solid #3A4290;
    padding: 16px;
    position: relative;
}

.theme5-btn {
    position: absolute;
    top: 0;
    right: 0;
}

.cta3-section-area {
    background: #044E7C;
}

.cta-from-area form input {
    width: 65%;
}

.cta3-authortext h1 {
    position: relative;
}

.cta3-authortext h1 span {
    position: relative;
}

span.investment {
    position: relative;
}

span.investment::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    background: #fff;
    /* top: 0; */
    left: 0;
    bottom: 0;
}

a.appointment {
    border-radius: 100px;
    background: #FFF;
    padding: 18px 24px;
    transition: all .4s ease-in-out;
}

a.appointment:hover {
    border-radius: 100px;
    background: #0C161D;
    color: #fff;
    transition: all .4s ease-in-out;
}

a.contact4 {
    border-radius: 100px;
    background: #0C161D;
    padding: 18px 24px;
    transition: all .4s ease-in-out;
    margin-left: 16px;
}

a.contact4:hover {
    border-radius: 100px;
    background: #FFF;
    color: #044E7C;
    transition: all .4s ease-in-out;
}

.cta4-section-area {
    background-image: url(../images/sectionimg/cta-backgruoud.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.cta4-section-area::after {
    position: absolute;
    content: "";
    height: 100%;
    opacity: 0.9;
    background: var(--main-color, #1D2940);
    width: 100%;
    top: 0;
    z-index: 1;
    left: 0;
    right: 0;
}

.cta4-textarea4 {
    position: relative;
    z-index: 2;
}

.cta4-manarea {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta4-mantext {
    margin-left: 12px;
}

.cta4-textarea4 {
    padding: 0 120px;
}

.cta4-carousel {
    position: relative;
    z-index: 3;
}

.cta4-carousel.owl-carousel.owl-loaded.owl-drag .cta4-manarea img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.cta5-section-area {
    background: #6083A9;
}

img.elementors72 {
    position: absolute;
    top: 0;
}

.cta5-section-area {
    position: relative;
}

img.elementors73 {
    position: absolute;
    right: 0;
    bottom: 0;
}

.cta5-section5-area {
    position: relative;
    background-image: url(../images/background/cta5bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

a.theme6-btn6.bakgrnd51 {
    background: #fff;
    transition: all .4s ease-in-out;
}

a.theme6-btn6.bakgrnd51:hover {
    color: #fff;
    transition: all .4s ease-in-out;
    background: var(--main-color, #1D2940);
}

a.theme6-btn6.backgrnd62:hover {
    background: #fff;
    color: #007DE7;
}

a.theme6-btn6.backgrnd62 {
    margin-left: 16px;
}

.cta6-section-area {
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/sectionimg/ctabg3.png);
    z-index: 1;
}

.cta6-section-area::after {
    opacity: 0.9;
    background: #080D06;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    height: 100%;
    width: 100%;
    z-index: -1;
}

a.home5btn7.cta5btn:hover::after {
    background: #fff;
    color: #000;
    width: 100%;
}

a.home5btn7.cta5btn:hover {
    color: #35AC39;
    transition: all .4s ease-in-out;
}

a.cta5btn {
    border-radius: 4px;
    background: #35AC39;
    padding: 18px 24px;
    display: inline-block;
    transition: all .4s ease-in-out;
}

a.cta5btn:hover {
    background: #fff;
    color: #35AC39;
    transition: all .4s ease-in-out;
}

a.cta5btn5 {
    border-radius: 4px;
    background: #FFF;
    padding: 18px 24px;
    margin-left: 16px;
    display: inline-block;
    transition: all .4s ease-in-out;
}

a.cta5btn5:hover {
    transition: all .4s ease-in-out;
    background: #35AC39;
    color: #fff;
}

a.btncta5 {
    position: relative;
    z-index: 2;
    border-radius: 4px;
    background: #35AC39;
    padding: 18px 24px;
}

a.btncta5::after {
    position: absolute;
    content: "";
    border-radius: 4px;
    background: #fff;
    height: 100%;
    width: 0;
    right: 0;
    top: 0;
}

a.btncta5:hover::after {
    width: 100%;
    left: 0;
    right: auto;
}

.cta7-section-area {
    position: relative;
    background: #EB7C3A;
}

a.contactbtn7 {
    border-radius: 2px;
    background: #FFF;
    padding: 18px 24px;
    display: inline-block;
    transition: all .4s ease-in-out;
}

a.contactbtn7:hover {
    border-radius: 2px;
    background: #0F0A07;
    transition: all .4s ease-in-out;
    color: #fff;
    transform: translateY(-5px);
}

a.contactbtn8 {
    border-radius: 2px;
    background: #0F0A07;
    padding: 16px 24px;
    margin-left: 16px;
    transition: all .4s ease-in-out;
}

a.contactbtn8:hover {
    background: #fff;
    color: #EB7C3A;
    transition: all .4s ease-in-out;
    transform: translateY(-5px);
}

.cta8-section-area {
    position: relative;
    background-image: url(../images/sectionimg/cta8bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.cta8-section-area::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    opacity: 0.9;
    background: #041716;
    top: 0;
    left: 0;
}

.cta8-headerarea {
    position: relative;
    z-index: 1;
}

a.solutions2 {
    position: relative;
    z-index: 1;
    background: #fff;
    padding: 18px 24px;
    border-radius: 4px;
    margin-left: 16px;
    transition: all .4s ease-in-out;
    display: inline-block;
}

.cta8-btnarea a {
    position: relative;
    z-index: 1;
}

a.solutions2:hover {
    color: #fff;
    transition: all .4s ease-in-out;
    background: #196C68;
    transform: translateY(-5px);
}

a.solutions2 span svg {
    transform: rotate(-45px);
}

a.solutions2 span svg {
    transform: rotate(-45deg);
}

.cta9-section-area {
    background: #1DAF68;
}

a.contactcta9 {
    background: #fff;
    padding: 18px 22px;
    border-radius: 4px;
    transition: all .4s ease-in-out;
    display: inline-block;
}

.contactcta9:hover {
    border-radius: 4px;
    background: #0B111D;
    transition: all .4s ease-in-out;
    color: #fff;
    transform: translateY(-5px);
}

a.contactcta10 {
    background: #0B111D;
    padding: 18px 22px;
    border-radius: 4px;
    transition: all .4s ease-in-out;
    display: inline-block;
    margin-left: 16px;
}

.contactcta10:hover {
    border-radius: 4px;
    background: #fff;
    transition: all .4s ease-in-out;
    color: #1DAF68;
    transform: translateY(-5px);
}

.cta9-btnarea {
    justify-content: end;
}

.cta10-section-area {
    background-image: url(../images/sectionimg/cta8bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.cta10-section-area::after {
    position: absolute;
    content: "";
    opacity: 0.9;
    background: #091622;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
}

.cta10-btnarea {
    position: relative;
    z-index: 1;
}

.cta10-header {
    position: relative;
    z-index: 1;
}

a.solutions11 {
    border-radius: 4px;
    background: #86B03C;
    padding: 16px 24px;
    display: inline-block;
    transition: all .4s ease-in-out;
}

a.solutions11 img {
    filter: brightness(0) invert(1);
    transition: all .4s ease-in-out;
}

a.solutions11:hover {
    transition: all .4s ease-in-out;
    background: #fff;
    color: #86B03C;
    transform: translateY(-6px);
}

a.solutions11:hover img {
    filter: none;
    transition: all .4s ease-in-out;
}

a.solutions12 {
    background: #fff;
    padding: 16px 24px;
    border-radius: 4px;
    display: inline-block;
    margin-left: 16px;
    transition: all .4s ease-in-out;
}

a.solutions12:hover {
    transform: translateY(-6px);
    transition: all .4s ease-in-out;
    background: #86B03C;
    color: #fff;
}

a.solutions12:hover img {
    filter: brightness(0) invert(1);
    transition: all .4s ease-in-out;
}

.cta11-section-area {
    background: #22BFCA;
    position: relative;
}

.cta11-authorarea input {
    background: none;
    border: none;
    color: #fff;
    outline: none;
    width: 65%;
}

.cta11-authorarea form {
    position: relative;
    background: #4ECCD5;
    padding: 18px 16px;
    line-height: 17px;
}

.cta11-authorarea input::placeholder {
    color: #fff;
    opacity: .8;
    font-weight: 400;
}

.cta11-authorarea button {
    color: #22BFCA;
    font-family: Outfit;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 16px;
    /* 100% */
    text-transform: capitalize;
    border: none;
    outline: none;
    padding: 18px 24px;
    border-radius: 4px;
    position: absolute;
    top: 0;
    /* left: 0; */
    right: 0;
    transition: all .4s ease-in-out;
}

.cta11-authorarea button:hover {
    background: #071A1C;
    transform: translateY(-5px);
    transition: all .4s ease-in-out;
    color: #fff;
}

.cta12-section-area {
    position: relative;
    background: #49357F;
}

.cta12-section-area form {
    background: #6D5D99;
}

.cta12-section-area form button {
    color: #6D5D99;
}

img.elementors81 {
    position: absolute;
    top: 0;
    left: 0;
}

.footerall-section12 .social11-linksarea ul li a:hover {
    background: #49357F;
}

.footerall-section12 .more-service-area ul li a:hover {
    color: #49357F;
    border: none;
}

/*----=========== CTA AREA CSS----============*/

/*----=========== TEAM AREA CSS----============*/
.team1-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px 5px 0 0;
}

.team1-images {
    position: relative;
}

.project-content-top {
    margin-bottom: 24px;
}

.project-item-two {
    position: relative;
    margin-bottom: 30px;
}

.project-content-two {
    position: absolute;
    top: 0;
    border-radius: 2px;
    background: #F0F3F7;
    opacity: 0.7;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    padding: 30px;
    transition: .3s linear;
    opacity: 0;
    transform: scale(.8);
    visibility: hidden;
    width: 100%;
    height: 80%;
}

.team-pera h1 a:hover {
    color: #1D2940;
}

.project-thumb-two img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-item-two:hover .project-content-two {
    opacity: 1;
    transform: scale(1);
    visibility: visible;
}

.project-content-two .title {
    font-weight: 700;
    font-size: 30px;
    margin-bottom: 10px;
    color: var(--tg-white);
}

.project-content-two ul li {
    display: inline-block;
}

.project-content-two ul li a {
    display: inline-block;
    height: 40px;
    width: 40px;
    background: #fff;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: #1D2940;
    transition: all .4s ease-in-out;
    margin: 0 3px;
}

.project-content-two ul li a:hover {
    background: #1D2940;
    transition: all .4s ease-in-out;
    color: #fff;
}

.team7-scetion-area {
    background: #FFF4EE;
    position: relative;
}

.project-item-two.projectteam-item ul li a:hover {
    background: #EB7C3A;
}

.project-content-two.projectteam-item {
    background: #fff;
}

.itemall:hover .project-content-two.projectteam-item {
    background-color: #fff;
}

.contact6-ctafrom form input::placeholder {
    font-weight: 500;
}

.team-detailsimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.team-detailsemail img {
    height: 28px;
    width: 28px;
    object-fit: contain;
}

.team-details-location {
    display: flex;
    align-items: center;
}

.team-detailsemail {
    background: #EFF7FF;
    height: 60px;
    width: 60px;
    text-align: center;
    line-height: 60px;
    border-radius: 50%;
    display: inline-block;
}

.team-detailsarea {
    padding-left: 70px;
}

.team-deatilstextarea {
    margin-left: 14px;
}

.team-deatilstextarea a:hover {
    color: #000;
}

.skills-section-area {
    background: #EFF7FF;
}

.progress-teamdetails .progress-bar span {
    background-color: #6083A9;
}

.team-accordianimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.deatils-accordian {
    padding-left: 70px;
}

.deatils-accordian h2.accordion-header button.collapsed {
    background: #EFF7FF;
    border: none;
    border-radius: 2px;
}

.deatils-accordian .accordion-item.aos-init.aos-animate {
    border: none;
}

.deatils-accordian .accordion-item {
    border-radius: 5px;
    background: #080D06;
}

.team11imges img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.team11-textarea {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 4px;
    background: #FFF;
    box-shadow: 0px 2px 48px 0px rgba(0, 0, 0, 0.09);
    padding: 20px;
}

.team11-boxarea {
    position: relative;
    overflow-y: hidden;
}

.shareicon {
    background: #071A1C;
    color: #fff;
    height: 48px;
    width: 48px;
    display: inline-block;
    text-align: center;
    line-height: 48px;
    font-size: 24px;
    border-radius: 50%;
    color: #FFF;
}

.shareicon a {
    color: #fff;
}

.shareicon {
    overflow-y: hidden;
    transition: all .4s ease-in-out;
}

.team11-social-links ul li a {
    background: #fff;
    display: inline-block;
    height: 48px;
    width: 48px;
    text-align: center;
    line-height: 48px;
    border-radius: 50%;
    font-size: 24px;
    color: #071A1C;
    margin-bottom: 14px;
    transition: all .4s ease-in-out;
}

.team11-social-links {
    position: absolute;
    right: 35px;
    bottom: 92px;
}

.team11-social-links ul li a:hover {
    background: #22BFCA;
    transition: all .4s ease-in-out;
    color: #fff;
}

.team11-textarea {
    position: absolute;
    width: 370px;
    left: 6%;
    bottom: -50px;
    z-index: 2;
}

.teamsname a:hover {
    color: #22BFCA;
}

.team11-parent-boxarea:hover .team11-social-links {
    height: 300px;
    transition: all .4s ease-in-out;
    visibility: visible;
    opacity: 1;
}

.team11-parent-boxarea {
    position: relative;
}

.team11-parent-boxarea:hover .shareicon {
    background: #22BFCA;
    transition: all .4s ease-in-out;
}

.team11-social-links {
    transition: all .6s ease-in-out;
    visibility: hidden;
    height: 0;
    bottom: 0;
    opacity: 0;
    position: absolute;
    z-index: -9;
}

.team11-parent-boxarea:hover .team11-social-links {
    visibility: visible;
    transition: all .6s ease-in-out;
    height: 300px;
    opacity: 1;
    z-index: 1;
}

.team11-parent-boxarea {
    margin-bottom: 80px;
}

.team11-parent-boxarea.team12-boxarea:hover .shareicon {
    background: #49357F;
}

.team11-parent-boxarea.team12-boxarea .team11-social-links ul li a:hover {
    background: #49357F;
}

/*----=========== TEAM AREA CSS----============*/

/*----=========== FOOTER AREA CSS----============*/
.cta-footer-sectin-area {
    background: var(--text-color, #002147);
    position: relative;
}

.cta-section-area {
    padding: 60px 0;
}

.footer4-section-area {
    position: relative;
}

.cta-from-area form {
    border-radius: 4px;
    background: #163150;
    position: relative;
}

.cta-from-area form input {
    background: none;
    border: none;
    outline: none;
    padding: 17px 16px;
    color: #fff;
    font-size: 18;
}

.cta-footer-sectin-area {
    background: #002147;
    position: relative;
}

.theme-btn2.cta-from {
    position: absolute;
    top: 0;
    margin: 0;
    right: 0;
}

.border2 {
    width: 100%;
    margin-bottom: 60px;
}

.border2 {
    border: 1px solid #fff;
    opacity: 0.1;
}

.social-links-area ul li {
    display: inline-block;
}

.social-links-area ul li a {
    color: #fff;
    font-size: 20px;
}

.social-links-area ul li a {
    width: 40px;
    height: 40px;
    display: inline-block;
    background: #163150;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: all .4s ease-in-out;
}

.social-links-area ul li a:hover {
    background: var(--main-color, #1252DE);
    transition: all .4s ease-in-out;
}

.law-firm-list ul li {
    margin-top: 20px;
}

.law-firm-text h1 {
    margin-bottom: 32px;
}

.law-firm-list ul li a:hover {
    color: #1252DE;
    transition: all .4s ease-in-out;
}

.law-firm-list ul li a {
    transition: all .4s ease-in-out;
}

.law-firm-list ul li a img {
    margin: 0 15px 0 0;
}

.law-firm-list ul li a:hover {
    padding-left: 10px;
}

.location-fooetr {
    display: flex;
    align-items: center;
}

.location-fooetr a {
    padding-left: 20px;
}

.location-fooetr img {
    width: 20px;
    height: 20px;
}

.location-fooetr {
    /* margin-top: 14px; */
}

.location-fooetr a:hover {
    color: #fff;
}

.border2.margin-area {
    margin: 0;
}

.copyright-list ul li {
    display: inline-block;
}

.copyright-section-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px 0;
}

.copyright-list ul li a {
    color: #fff;
    opacity: 0.6;
}

.copyright-list ul il a {
    position: relative;
}

.copyright-list ul li a::after {
    position: absolute;
    content: "";
    background: rgba(255, 255, 255, 0.40);
    height: 10px;
    width: 1px;
    right: -8px;
    top: 7px;
    opacity: 0.6;
}

.copyright-section-area p {
    opacity: 0.6;
    color: #fff;
}

.copyright-list ul li a {
    opacity: 0.6;
}

.copyright-list ul li a {
    position: relative;
    margin-left: 12px;
}

.copyright-list ul li a:hover {
    color: #fff;
    transition: all .4s ease-in-out;
}

/* homepage2 footer */
.footer2-section-area {
    background-image: url(../images/background/footerbg.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.social2-links ul li a {
    background: #2B3241;
    height: 40px;
    width: 40px;
    display: inline-block;
    text-align: center;
    color: #fff;
    line-height: 40px;
    border-radius: 50%;
    transition: all .4s ease-in-out;
    font-size: 18px;
}

s .social2-links ul li {
    display: inline-block;
}

.social2-links ul li {
    display: inline-block;
}

.social2-links ul li a:hover {
    background: #fff;
    color: #1A237E;
    transition: all .3s ease-in-out;
}

.servicefooter-list ul li a:hover {
    color: #124680;
    padding-left: 10px;
    transition: all .4s ease-in-out;
}

.servicefooter-list ul li a {
    transition: all .4s ease-in-out;
}

.email4 {
    display: flex;
    align-items: center;
}

.email4 a {
    padding-left: 12px;
}

.copyright1 p {
    color: #A1A4AB;
}

.email4 a:hover {
    color: rgba(255, 255, 255, 0.80);
}

.border-10 {
    border: 1px solid #fff;
    opacity: 0.2;
}

.copyright {
    position: relative;
}

.copyright1 {
    padding: 32px 0;
}

.footer2-section-area {
    position: relative;
}

img.elementor-14 {
    position: absolute;
    bottom: 0;
    left: 0;
}

/* homepage2 footer */
.footer3-section-area {
    background: #e9edf4;
}

.footer-3logo img {
    width: 250px;
    text-align: center;
}

.social3-links-area ul li {
    display: inline-block;
}

.social3-links-area ul li a {
    height: 32px;
    width: 32px;
    display: inline-block;
    line-height: 32px;
    background: #FFF;
    text-align: center;
    border-radius: 50%;
    color: #044E7C;
    font-size: 16px;
    transition: all .4s ease-in-out;
}

.social3-links-area ul li a:hover {
    background: #044E7C;
    color: #fff;
    transition: all .4s ease-in-out;
}

.about-3-links {
    padding-left: 40px;
}

.about-3-links ul li a {
    transition: all .4s ease-in-out;
}

.about-3-links ul li a:hover {
    color: #044E7C;
    padding-left: 5px;
    transition: all .4s ease-in-out;
}

.location-icon4 {
    display: flex;
}

.location-icon4 a {
    padding-left: 12px;
    transition: all .4s ease-in-out;
    max-width: 270px;
}

.location-icon4 a:hover {
    color: #044E7C;
    transition: all .4s ease-in-out;
}

.contcat4-footer {
    padding-left: 0px;
}

.contcat4-footer li a {
    margin-bottom: 16px;
    font-weight: 600 !important;
    font-size: 14px;
    font-family: 'Nunito', sans-serif;
    display: inline-block !important;
    color: #575E63;
}

.contcat4-footer li a:hover {
    padding-left: 5px;
    color: #044e7c;
}

.cta-contact5 form {
    position: relative;
}

.cta-contact5 form input {
    border: none;
    background: none;
    line-height: 26px;
    outline: none;
}

.cta-contact5 form {
    border-radius: 50px;
    background: #FFF;
    padding: 13px 16px;
    position: relative;
}

.theme-btn6.theme-btn7 {
    position: absolute;
    right: 0;
    top: 0;
}

.cta-contact5 form input::placeholder {
    color: #575E63;
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 16px;
}

.border7 {
    opacity: 0.1;
    border: 1px solid #0C161D;
}

.copyright4 p {
    padding: 24px 0;
}

.footer3-section-area {
    position: relative;
}

img.elementor-20 {
    position: absolute;
    bottom: 0;
    right: 0;
}

img.elementor-1 {
    position: absolute;
    bottom: 0;
    left: 0;
}

.footer4-section-area {
    background: var(--main-color, #1D2940);
}

.icon-social-links ul li {
    display: inline-block;
}

.icon-social-links ul li a {
    display: inline-block;
    height: 32px;
    width: 32px;
    background: #343E5C;
    line-height: 32px;
    text-align: center;
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    transition: all .4s ease-in-out;
}

.icon-social-links ul li a:hover {
    color: #343E53;
    background: #fff;
    transition: all .4s ease-in-out;
}

.about-5-links ul li a {
    transition: all .4s ease-in-out;
}

.about-5-links ul li a:hover {
    transition: all .4s ease-in-out;
    color: #fff;
    padding-left: 8px;
}

.about-5-links {
    padding-left: 70px;
}

.about40links {
    padding-left: 40px;
}

.contact6-ctafrom form {
    position: relative;
    border-radius: 2px;
    background: #FFF;
    margin-top: 32px;
}

.contact6-ctafrom form input {
    border: none;
    background: none;
    padding: 18px 16px;
    outline: none;
}

.contact6-ctafrom form input::placeholder {
    color: var(--main-color, #1D2940);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
}

.contact5-btn15 button {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
}

button.contcat6 {
    border: none;
    border-radius: 2px;
    background: var(--secondary-color, #6083A9);
    padding: 22px 22px;
    line-height: 16px;
}

button.contcat6 span svg {
    transform: rotate(-50deg);
    line-height: 16px;
}

.border10 {
    border: 1px solid #343E53;
    width: 100%;
}

.contact6-ctafrom form input {
    width: 65%;
}

.copyright6 {
    padding: 24px 0;
}

img.heightwidth {
    width: 14px;
    height: 20px;
}

.contact-footer.heightleft {
    padding-left: 70px;
}

.footer5-section5-area5 {
    position: relative;
    background-image: url(../images/background/homepage5bg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

img.elementors4 {
    position: absolute;
    bottom: 0;
    left: 0;
}

.social2-links.homelist ul li a:hover {
    background: #007DE7;
    color: #fff;
}

.footer3-section-area6 {
    position: relative;
}

img.elementors8 {
    position: absolute;
    top: 0;
    left: 0;
}

.cta-contact6 form {
    border-radius: 4px;
    background: #F4F4F4;
    position: relative;
    padding: 18px 16px;
    line-height: 5px;
}

.cta-contact6 form input {
    background: none;
    border: none;
    outline: none;
    line-height: 10px;
}

.buttnocontact1 {
    position: absolute;
    right: 0;
    top: 0;
}

.buttnocontact1 button {
    padding: 20px 24px;
}

.social3-links-area.list5area ul li a {
    background: #F4F4F4;
    color: #35AC39;
}

.social3-links-area.list5area ul li a:hover {
    background: #35AC39;
    color: #fff;
}

.footer4-all-area.footer6 a:hover {
    color: #35AC39;
}

.footer4-section-area7 {
    background: #0F0A07;
    position: relative;
}

.icon-social-links.list7 ul li a:hover {
    background: #EB7C3A;
    color: #fff;
}

.icon-social-links.list7 ul li a {
    background-color: #272220;
}

button.homepage7btn7 {
    border-radius: 2px;
    background: #EB7C3A;
    border: none;
    padding: 22px 24px;
    transition: all .4s ease-in-out;
}

form.form7 input::placeholder {
    opacity: 0.8;
}

.contact6-ctafrom8 {
    position: relative;
}

.contact6-ctafrom8 form {
    position: relative;
}

.contact6-ctafrom8 form {
    border-radius: 4px;
    background: #F4F4F4;
    padding: 13px 20px;
    margin-top: 32px;
}

.contact6-ctafrom8 form input {
    border: none;
    background: none;
    outline: none;
}

.about-5-links.footer8links ul li a:hover {
    color: #196C68;
}

.contact8 a:hover {
    color: #196C68;
}

.list8 ul li a {
    background: #F4F4F4;
    color: #196C68;
}

.list8 ul li a:hover {
    background: #196C68;
    color: #fff;
}

.contactfooter8 a:hover {
    color: #196C68;
}

.footer4-section-area8 {
    position: relative;
}

img.elementors18 {
    position: absolute;
    bottom: 0;
    left: 0;
}

img.elementor19 {
    position: absolute;
    right: 0;
    bottom: 0;
}

.copyright6 {
    position: relative;
}

.social3-links-area.list9area ul li a {
    background: #fff;
    color: #1DAF68;
}

.social3-links-area.list9area ul li a:hover {
    background: #1DAF68;
    color: #fff;
}

.footer9-section-area6 {
    background: #EBF1FF;
    position: relative;
}

img.elementor61 {
    position: absolute;
    bottom: 0;
    right: 0;
}

img.elementors62 {
    position: absolute;
    bottom: 0;
}

button.contactbtn6.contacts9 {
    background: #1DAF68;
}

.footer10links ul li a:hover {
    color: #86B03C;
}

.contactfooter10 a:hover {
    color: #86B03C;
    transition: all .4s ease-in-out;
}

.list10 ul li a {
    background: #E3ECEB;
    color: #86B03C;
}

.list10 ul li a:hover {
    background: #86B03C;
    color: #fff;
    transition: all .4s ease-in-out;
}

.footer10 {
    background: #EFF7F6;
}

.footer11-section-area {
    background: #071A1C;
    position: relative;
}

img.elementors79 {
    position: absolute;
    bottom: 0;
    right: 0;
}

.social11-linksarea ul li {
    display: inline-block;
}

.social11-linksarea ul li a {
    height: 32px;
    width: 32px;
    display: inline-block;
    background: #203133;
    text-align: center;
    line-height: 32px;
    border-radius: 50%;
    color: #fff;
    margin: 0 8px 0 0;
    transition: all .4s ease-in-out;
}

.social11-linksarea {
    margin-top: 32px;
}

.social11-linksarea ul li a:hover {
    background: #22BFCA;
    transition: all .4s ease-in-out;
}

.more-service-area {
    padding-left: 80px;
}

.more-service-area a {
    transition: all .4s ease-in-out;
}

.more-service-area a:hover {
    color: #22BFCA;
    margin-left: 7px;
    transition: all .4s ease-in-out;
}

.copyright11 {
    padding: 20px 0 32px;
}

.boredr11 {
    border: 1px solid #394849;
}

.preview-footer-area {
    background-image: url(../images/background/previewfooterbg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.get-preview1 {
    border-radius: 5px;
    background: var(--Main-Text-Color, #1D2940);
    padding: 14px 22px;
    transition: all .4s ease-in-out;
    line-height: 28px;
    display: inline-block;
    margin-left: 10px;
}

.get-preview1:hover {
    background: #fff;
    transition: all .4s ease-in-out;
    color: #007DE7;
    transform: translateY(-5px);
}

.get-preview1 i {
    transform: rotate(-45deg);
    margin-left: 4px;
    transition: all .4s ease-in-out;
}

.previewsticky.sticky {
    background: #000;
}

/*----=========== FOOTER AREA CSS----============*/

/* other section css */
.welcome2-textarea p {
    opacity: 0.8;
}

.company-progress-area p {
    opacity: 0.8;
}

.works-text-area p {
    opacity: 0.8;
}

.case-textarea p {
    opacity: 0.8;
}

.case2-textarea p {
    opacity: 0.8;
}

.blog2-ahtuor2.blog-2ahthor p {
    opacity: 0.8;
}

.blog2-ahtuor2 p {
    opacity: 0.8;
}

.cta2-textarea p {
    opacity: 0.8;
}

.cta2-from-area form input::placeholder {
    color: #fff;
    opacity: 0.7;
}

.footer-logo2 p {
    opacity: 0.8;
}

img.elementorimg74 {
    position: absolute;
    bottom: 0;
    left: 0;
}

.welcome1-textarea p {
    opacity: 0.9;
}

.contact-first-boxarea p {
    opacity: 0.8;
}

.cta-from-area form input::Placeholder {
    color: #fff;
    opacity: 0.8;
}

.progress3 {
    width: 100%;
    height: 13px;
}

.progress-wrap3 {
    border-radius: 74px;
    background: #141B2C;
    margin-top: 25px;
    overflow: hidden;
    position: relative;
}

.progress-bar3 {
    background: #ddd;
    left: 0;
    position: absolute;
    top: 0;
}

.case-boxarea:hover::after {
    width: 100%;
    bottom: auto;
    top: 0;
}

.home6about:hover img {
    transform: scale(1.1);
    transition: all .4s ease-in-out;
}

.home6about {
    overflow: hidden;
    transition: all .4s ease-in-out;
    border-radius: 5px;
}

.home6about img {
    transition: all .4s ease-in-out;
}

.homeaboutimages:hover img {
    transform: scale(1.1);
    transition: all .4s ease-in-out;
}

.homeaboutimages {
    transition: all .4s ease-in-out;
    border-radius: 5px;
    overflow: hidden;
}

.homeaboutimages img {
    transition: all .4s ease-in-out;
}

.phonr6-area a {
    color: #000;
}

.header.sticky .theme-btn13 {
    border: 1px solid #49357F;
}

.main-menu-ex li ul.dropdown-padding {
    background: #fff;
    box-shadow: rgb(0 0 0 / 20%) 0px 20px 30px;
}

.main-menu-ex li ul {
    box-shadow: none;
}

.shecdule-btn1 a i {
    margin-left: 4px;
    transform: rotate(-45deg);
}

a.theme6-btn6 i {
    margin-left: 4px;
    transform: rotate(-45deg);
}

.contcat6 i {
    margin-left: 4px;
    transform: rotate(-45deg);
}

.learnmore span i {
    margin-left: 4px;
    transform: rotate(-45deg);
}

a.solutions1 i {
    margin-left: 4px;
    transform: rotate(-45deg);
}

.consulitingbt7 span i {
    margin-left: 4px;
    transform: rotate(-45deg);
}

a.home8learn span i {
    margin-left: 4px;
    transform: rotate(-45deg);
}

.price-list.homepricing8 ul li span {
    margin: 0 10px 0 0;
}

a.laearnmore2 span i {
    margin-left: 4px;
    transform: rotate(-45deg);
}

a.solutions2 span i {
    margin-left: 4px;
    transform: rotate(-45deg);
}

.price-list ul li span {
    margin: 0 10px 0 0;
}

.laearnmore2 span i {
    margin-left: 4px;
    transform: rotate(-45deg);
}

.consulting9 span i {
    margin-left: 4px;
    transform: rotate(-45deg);
}

.consulting10 span i {
    margin-left: 4px;
    transform: rotate(-45deg);
}

.cta-header-area {
    box-shadow: 0 0 10px 0 #dfdcdc;
}

.mega-menu-items-button span i {
    margin-left: 4px;
    transform: rotate(-45deg);
}

.project-content-two.projectteam-item ul li a {
    border: 1px solid #000;
}

.preview-images {
    bottom: 0;
}

.service-preview-box:hover {
    transform: translateY(-10px);
    transition: all .4s ease-in-out;
}

/* other section css */




/* Own css */
.welcome3-images {
    animation: floatMove 3s ease-in-out infinite;
}

@keyframes floatMove {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* About section */
.about-3-images {
    overflow: hidden;

}

.about-3-images:hover .about_left_box_img {
    transition: all .3s ease-in-out;
    scale: 1.2;
}

/* Our services */
.service-box {
    overflow: hidden;

}

.service-box img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover img {
    transform: scale(1.08);
}


/* Mobile view */
#top_unlock_btn {
    padding: 7px 8px !important;
}

/* Mobile view */


/* new css */
/* Our video section */
.text-clamp {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


/* Box Style */
.contact-box {
    background: #f5f7fa;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: 0.3s;
}

.contact-header {
    padding: 15px;
    cursor: pointer;
}

/* Icon area */
.clock-area img {
    width: 28px;
}

/* Toggle button */
.toggle-btn {
    background: #e9ecef;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    transition: 0.3s;
}

.toggle-btn:hover {
    background: #0d6efd;
    color: #fff;
}

/* Hidden content */
.contact-content {
    display: none;
    padding: 0 20px 15px 60px;
}


/* Active state */
.contact-box.active .contact-content {
    display: block;
}

.contact-box.active .toggle-btn i {
    transform: rotate(180deg);
    transition: 0.3s;
}


.contact-box .contact_title_section{
    display: flex;
    justify-content: space-between !important;
}
/* Contact Accordion Style */
.contact-box{
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    margin-bottom: 15px;
    background: #fff;
    overflow: hidden;
}

.contact-header{
    padding: 15px 18px;
    cursor: pointer;
}

.contact-header h5{
    font-size: 16px;
    font-weight: 600;
    color: #1D2940;
}

.clock-area img{
    width: 22px;
}

.toggle-btn{
    background: none;
    border: none;
    font-size: 14px;
    color: #1D2940;
}

/* Hidden by default */
.contact-content{
    display: none;
    padding: 0 18px 15px;
    border-top: 1px solid #eee;
}

.contact-box.active .contact-content{
    display: block;
}

/* rotate icon */
.contact-box.active .toggle-btn i{
    transform: rotate(180deg);
    transition: 0.3s;
}

/* Contact us section */


/* Top Partnership section banner */
.top_partnership_banner{
    width: 100%;
    height: 650px;
    background-image: url('../../assets/images/titlebar-img.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.btn_all{
    background-color: #044E7C;
    color: #fff !important;
    transition: all 0.3s ease-in-out;
}
.btn_all:hover{
    background-color: #fff !important;
    color: #002147 !important;
}

@media (max-width:425px){
    .banner_contetn .right{
        margin-top: -2rem !important;
    }
    .main_section .main_section_top_part{
        margin-top: 9rem;
    }

    .top_left_box{
        padding-top: 2rem;
        /* padding-bottom: 2rem; */
    }
    .related_guides_box{
        padding-top: 8rem !important;
    }
    .related_guides_box1{
        padding-top: 3rem !important;
    }
    .contact_col2{
        gap: 2rem;
    }
    .contact2-all-contact{
        padding: 0;
    }
    .contact_map_row{
        margin-top: 2rem !important;
    }
    .contact_map_row .gmap_iframe{
        width: 100%;
        margin: 0 auto;
        height: 200px;
    }
}

.search-button{
    display: flex;
    justify-content: center;
    align-items: center;
}
/* Own css */