* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}

body {

    font-family: 'poppins', sans-serif;
    color: #3f3f3f;
    overflow-x: hidden;
    font-size: 15px;

}

p {
    font-size: 15px;
    font-family: 'poppins', sans-serif;
    line-height: 28px;
    color: #3f3f3f;
}

a {
    font-size: 15px;
    text-decoration: none;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    font-family: 'poppins', sans-serif;
    color: #3f3f3f;
}

a:hover {
    text-decoration: none;
    outline: none;
}

ul,
li {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

li {
    color: #343434;
}

button:focus,
input:focus,
textarea:focus {
    outline: none;
    box-shadow: none;
    transition: all 500ms ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Lexend', serif;
    margin: 0px;
    color: #252525;
}

p {
    margin: 0px;
}
.pt-50 {
    padding-top: 50px;
}

.pt-40 {
    padding-top: 40px;
}

.pt-30 {
    padding-top: 30px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pb-40 {
    padding-bottom: 40px;
}

.pb-30 {
    padding-bottom: 30px;
}

.mt-40 {
    margin-top: 40px;
}

.pb-100 {
    padding-bottom: 100px;
}
.pt-100 {
    padding-top: 100px;
}

.justify-center {
    justify-content: center;
}

.mt-20 {
    margin-top: 20px;
}

.align-item-center {
    align-items: center;
}

.justify-content-space-between {
    justify-content: space-between;
}

.flex-end {
    justify-content: flex-end;
}

.site-width {
    max-width: 1250px;
    margin: 0px auto;
}

@media screen and (max-width:1518px) and (min-width:1368px) {
    .site-width {
        max-width: 1372px;
        padding: 0px 40px;
    }
}

@media screen and (max-width:1708px) and (min-width:1519px) {
    .site-width {
        max-width: 1552px;
        padding: 0px 40px;
    }
}

@media screen and (max-width:1920px) and (min-width:1709px) {
    .site-width {
        max-width: 1642px;
        padding: 0px 40px;
    }
}

@media screen and (max-width:2500px) and (min-width:1921px) {
    .site-width {
        max-width: 1842px;
        padding: 0px 40px;
    }
}

@media screen and (max-width:1280px) and (min-width:1024px) {
    .site-width {
        padding: 0px 40px;
        max-width: 1260px;
        padding: 0px 40px;
    }
}

@media screen and (max-width:1024px) and (min-width:888px) {
    .site-width {
        padding: 0px 40px;
    }
}

@media screen and (max-width:888px) and (min-width:769px) {
    .site-width {
        padding: 0px 40px;
    }
}

@media screen and (max-width:768px) {
    .site-width {
        padding: 0px 20px;
    }
}

/* Header Section */
.hamburger {
    display: grid;
    align-items: center;
    height: 26px;
    display: none;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background-color: #111;

}
.topHeader {
    background: linear-gradient(180deg, #080b55, #012c93);
    padding: 8px 0px;
    display: none;
}

.topHeaderWrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: unset;
}

.tophead {
    display: flex;
}

.tophead ul {
    display: flex;
}

.tophead ul li a {
    color: #fff;
    font-size: 12px;
}

.tophead p {
    color: #fff;
    line-height: normal;
    font-size: 12px;
    line-height: 24px;
}

.tophead ul li i {
    color: #fff;
}

.tophead.topHeadInfo ul li {
    margin: 0px 16px 0px 0px;
}

.tophead.topHeadInfo ul li i {
    color: #00a651;
    font-size: 14px;
    margin-right: 6px;
}

.tophead.topHeadSocial ul li i {
    line-height: 23px;
    margin: 0px 0px 0px 20px;
}

.mainHeader {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
    /* padding: 5px 0px; */
    /* background-image: linear-gradient(45deg, #ffffffa1, transparent), url(../img/texture/img1.jpg); */
    background-size: contain;
    transition: 0.4s ease-in-out;
    position: relative;
    left: 0px;
    right: 0px;
    top: 0;
    z-index: 2;
}

.mHeaderWrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 5px 10px;
    border-radius: 15px;
}

.logoImg {
    width: 246px;
    transition: 0.4s ease-in-out;
}

.logoImg img {
    width: 100%;
}

.headerNav {
    display: flex;
    

}

.headerMenu {
    display: flex;
    gap: 50px;
    align-items: center;
}

.headerMenu>li {
    padding: 4px 0px;
}

.headerMenu>li>a {
    padding: 13px 0px;
    position: relative;
    color: #1c1c1c;
    font-weight: 400;
    font-size: 16px;
    display: inline-block;
}

.headerMenu>li>a::after {
    content: "";
    position: absolute;
    z-index: -1;
    right: 0;
    width: 0;
    top: 63%;
    background: #bba576;
    height: 2px;
    transition-property: width;
    transition-duration: 0.3s;
    transition-timing-function: ease-out;
    border-radius: 30px;
}

.headerMenu>li a:hover:after,
.headerMenu>li a.active:after {
    left: 0;
    right: auto;
    width: 100%;
}

.headerMenu>li a:hover,
.headerMenu>li a.active {
    color: #1a1a1a;

}

.headerMenu>li a.active {
    font-weight: 700;
}

.headerMenu>li.hasSub {
    position: relative;
}

.headerSection.scroll-down .headerMenu>li  {
    padding: 23px 14px;
}

.headerSection.scroll-down .headerMenu>li {
    padding: 23px 14px;
}

.headerSubNav {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    margin-top: 10px;

}

.headerMenu>li.hasSub:hover .headerSubNav {
    visibility: visible;
    opacity: 1;
    top:100%;
    margin-top: 0.5px;
    transition: all 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 0px 10px #37373717;
    width: 260px;
    padding: 10px;
    background: #fff;
}

.headerSubMenu {
    display: flex;
    flex-direction: column;
}

.headerSubMenu>li a {
    padding: 7px 12px;
    display: inline-block;
    width: 100%;
    border-bottom: 1px solid #03396717;
    transition: all 0.3s ease-in-out;
    background: #ffffff;
    font-size: 15px;
    backdrop-filter: blur(5px);
}


.headerRightMenu  .headercalBtn.defaultBtn  a {
    display: flex;
    align-items: center;
    gap: 23px;
}
.headerRightMenu  .headercalBtn.defaultBtn img {

}
.headercalBtn.defaultBtn a::after, .headercalBtn.defaultBtn button::after {
    display: none;
}

.cc-calto-action-ripple {
    background: #007ea7;
    width: 32px;
    height: 32px;
    padding: 3px;
    border-radius: 100%;
    color: #ffffff;
    -webkit-animation: cc-calto-action-ripple 0.6s linear infinite;
    animation: cc-calto-action-ripple 0.6s linear infinite;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex
;
    justify-items: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
}

.cc-calto-action-ripple i {
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    font-size: 2.2rem;
}

.cc-calto-action-ripple:hover i {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}

@-webkit-keyframes cc-calto-action-ripple {
    0% {
        -webkit-box-shadow: 0 4px 10px #ec8b0033, 0 0 0 0 #ec8b0033, 0 0 0 5px #007ea7, 0 0 0 10px #007ea7;
        box-shadow: 0 4px 10px #007ea7, 0 0 0 0 #007ea7, 0 0 0 5px #007ea7, 0 0 0 10px #007ea7;
    }

    100% {
        -webkit-box-shadow: 0 4px 10px #007ea7, 0 0 0 5px #007ea7, 0 0 0 10px #007ea7, 0 0 0 20px rgba(236, 139, 0, 0);
        box-shadow: 0 4px 10px #007ea7, 0 0 0 5px #007ea7, 0 0 0 10px #007ea7, 0 0 0 20px rgba(236, 139, 0, 0);
    }
}

@keyframes cc-calto-action-ripple {
    0% {
        -webkit-box-shadow: 0 4px 10px #007ea7, 0 0 0 0 #007ea7, 0 0 0 5px #007ea7, 0 0 0 10px #007ea7;
        box-shadow: 0 4px 10px #007ea7, 0 0 0 0 #007ea7, 0 0 0 5px #007ea7, 0 0 0 10px #007ea7;
    }

    100% {
        -webkit-box-shadow: 0 4px 10px #007ea7, 0 0 0 5px #007ea7, 0 0 0 10px #007ea7, 0 0 0 20px rgba(236, 139, 0, 0);
        box-shadow: 0 4px 10px #007ea7, 0 0 0 5px #007ea7, 0 0 0 10px #007ea7, 0 0 0 20px rgba(236, 139, 0, 0);
    }
}
.headerMob span {

}
.headerMob h5 {
    color: #fff;
}

.megaMenuDiv .headerSubMenu>li a {
    padding: 7px 0px;
}

.megaMenuDiv .headerSubMenu>li a {
    padding: 7px 0px;
}

.megaMenuDiv .headerSubMenu>li:hover a {
    padding-left: 5px;
}
.megaMenuDiv .megaCol:last-child {
    margin-top: 20px;
}

.headerSubMenu>li:hover a {
    padding-left: 15px;
    color: #ffffff;
    background: #00518b;
    border-radius: 10px;
}

.headerRightMenu {
    display: flex;
}

.headerRightMenu li {
    margin: 0px 0px 0px 10px;
}

.headerRightMenu li .defaultBtn a i {
    margin: 0px;
    visibility: visible;
    opacity: 1;
    font-size: 14px;
    position: relative;
    top: 1px;
    margin-right: 3px;

}

.headerRightMenu .defaultBtn a,
.headerRightMenu .defaultBtn button {
    background: linear-gradient(270deg, #007ea7, #004e89);
    color: #ffffff;
    padding: 12px 20px;
}

.headerRightMenu .defaultBtn a span,
.headerRightMenu .defaultBtn button span {
    color: #ffffff;
    font-weight: 500;
}

.headerRightMenu .defaultBtn a:hover span,
.headerRightMenu .defaultBtn button:hover span {
    color: #fdfdfd;
}

.headerRightMenu .defaultBtn.light2 a,
.headerRightMenu .defaultBtn.light2 button {
    background: #e7e7e7;
    color: #060606;
    border: 1px solid #ddd;
}

.headerRightMenu .defaultBtn.light2 a span,
.headerRightMenu .defaultBtn.light2 button span {
    color: #060606;
}

.headerRightMenu .defaultBtn.light2 a:hover span,
.headerRightMenu .defaultBtn.light2 button:hover span {
    color: #ffff;
}

.headerRightMenu .defaultBtn.light2 a span i,
.headerRightMenu .defaultBtn.light2 button span i {
    visibility: unset;
    opacity: unset;
}

.headerRightMenu .defaultBtn.light2 a:hover span i,
.headerRightMenu .defaultBtn.light2 button:hover span i {
    color: #fff;
    visibility: unset;
    opacity: unset;
}

.megaMenuDiv {
    visibility: hidden;
    opacity: 0;
    top: 110%;
    left: 0px;
    right: 0px;
    width: 92.6%;
    margin: auto;
    transition: 0.4s ease-in-out;
    position: absolute;
    display: flex;
    flex-wrap: wrap;
    background: #ffffff;
    padding: 30px 20px;
    justify-content: space-between;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 20px;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}

.hasmegaMenu:hover .megaMenuDiv {
    visibility: visible;
    opacity: 1;
    top: 101%;
}

.megaCol {
    width: 20%;
    padding: 0px 10px;

}

.megaCol h5 {
    position: relative;
    padding-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #00082c;
}

.megaCol h5::after {
    position: absolute;
    content: '';
    left: 0px;
    bottom: 0px;
    width: 100px;
    height: 3px;
    background-color: #9300ff;
}

.megaCol h5::before {
    position: absolute;
    content: '';
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 1px;
    background-color: #00e9f8;
}

.megaCol .headerSubMenu {
    max-height: 161px;
    overflow-y: auto;
}

.megaCol .headerSubMenu::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #F5F5F5;
}

.megaCol .headerSubMenu::-webkit-scrollbar {
    width: 6px;
    background-color: #F5F5F5;
    transition: all 0.4s ease-in-out;
}

.megaCol .headerSubMenu::-webkit-scrollbar-thumb {
    background-color: #00082c;
    border: 1px solid #9999a1;
}
.hamburger {
    display: none;
}


/* Header Responsive */
@media screen and (max-width:1024px) and (min-width:768px) {
    .logoImg {
        width: 120px;
    }

    .headerNav>ul>li>a {
        margin: 0px 0px 0px 18px;
        font-size: 12px;
    }

    .headerNav>ul>li>a.headerBtn {
        padding: 10px 15px;
    }
}

@media screen and (max-width:767px) {
    .topHeaderWrap {
        flex-direction: column;
    }

    .headerNav ul {
        flex-direction: column;
        gap: 0px;
    }

    .headerNav {
        display: none;
        position: fixed;
        top: 54px;
        left: 0px;
        width: 100%;
        background: #242424;
        height: 100vh;
        z-index: 22;
        transition: 0.4s ease-in-out;
    }
    .mainHeader.sticky .headerNav{
        top: 61px;
        transition: 0.4s ease-in-out;
    }

    .hamburger {
        display: grid;
    }

    .headerNav>ul>li>a {
        display: block;
        padding: 6px 16px;
        margin: 0px;
        color: #ddd;
    }
    .headerMenu>li {
        width: 100%;
    }

    .headerNav>ul>li>a::after {
        bottom: 0px;
        background-color: #dddddd2b;
        height: 1px;
        top: 100%;
    }

    .headerNav>ul>li>a::before {
        position: absolute;
        content: "";
        right: 0px;
        bottom: 0px;
        top: 0px;
        margin: auto;
        background-image: url(../img/icons/right-arrow.png);
        background-size: 10px;
        background-position: left center;
        width: 22px;
        height: 30px;
        background-repeat: no-repeat;
        filter: brightness(1) invert(1);
    }

    .headerNav>ul>li>a.active {
        color: #007ea7;
        background: #020b542b;
        font-weight: 700;
    }

    .headerNav>ul>li>a.headerBtn {
        text-align: center;
        margin: 0px 11px;

    }

    .headerNav>ul>li>a.headerBtn::before {
        visibility: hidden;
    }

    .hamburger.active span {
        transition: 0.4s ease-in-out;
    }

    .hamburger.active span:nth-child(2) {
        visibility: hidden;

    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(34deg);
        position: relative;
        bottom: -9px;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(143deg);
        position: relative;
        bottom: 9px;

    }
}


/* Slider */


/* slider start*/
.hero-slider {
    width: 100%;
    height: 500px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    z-index: 0;
}

@media (max-width: 991px) {
    .hero-slider {
        height: 380px;
    }
}

@media (max-width: 767px) {
    .hero-slider {
        height: 240px;
    }
}

.hero-slider .swiper-slide {
    overflow: hidden;
    color: #fff;
}

.hero-slider .swiper-container {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.hero-slider .slide-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
}

.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next {
    background: transparent;
    width: 55px;
    height: 55px;
    line-height: 50px;
    margin-top: -30px;
    text-align: center;
    border: 2px solid #d4d3d3;
    border-radius: 55px;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
}

.hero-slider:hover .swiper-button-prev,
.hero-slider:hover .swiper-button-next {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

@media (max-width: 767px) {

    .hero-slider .swiper-button-prev,
    .hero-slider .swiper-button-next {
        display: none;
    }
}

.hero-slider .swiper-button-prev {
    left: 25px;
    transform: translateX(50px);
}

.hero-slider .swiper-button-prev:before {
    font-family: "Font Awesome 5 Free";
    content: "\f060";
    font-size: 15px;
    color: #d4d3d3;
    font-style: normal;
    display: inline-block;
    vertical-align: middle;
    font-weight: 900;
}

.hero-slider .swiper-button-next {
    right: 25px;
    transform: translateX(-50px);
}

.hero-slider .swiper-button-next:before {
    font-family: "Font Awesome 5 Free";
    content: "\f061";
    font-size: 15px;
    color: #d4d3d3;
    font-style: normal;
    display: inline-block;
    vertical-align: middle;
    font-weight: 900;
}

.hero-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    text-align: left;
    line-height: 12px;
    font-size: 12px;
    color: #000;
    opacity: 0.3;
    background: #fff;
    transition: all .2s ease;
}

.hero-slider .swiper-pagination-bullet-active {
    opacity: 1;
}

.hero-slider .swiper-container-horizontal>.swiper-pagination-bullets,
.hero-slider .swiper-pagination-custom,
.hero-slider .swiper-pagination-fraction {
    bottom: 30px;
}

@media screen and (min-width: 992px) {

    .hero-slider .swiper-container-horizontal>.swiper-pagination-bullets,
    .hero-slider .swiper-pagination-custom,
    .hero-slider .swiper-pagination-fraction {
        /*     display: none; */
    }
}

.swiper-pagination {
    text-align: left;
}

.hero-slider .swiper-container-horizontal>.swiper-pagination-bullets {
    bottom: 50px;
    max-width: 1200px;
    padding: 0 15px;
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%);
}

@media (min-width: 767px) {
    .hero-slider .swiper-container-horizontal>.swiper-pagination-bullets {
        bottom: 6px;

    }
}

/*--------------------------------------------------------------
      #hero-style
  --------------------------------------------------------------*/
.hero-style {
    height: 680px;
    transition: all .4s ease;
}

.SliderContentsWrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.SliderContentsWrapper::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    bottom: 0px;
    top: 0px;
    left: 0px;
    right: 0px;
    margin: auto;
    background-image: url(../img/bg/bg1.png);
    background-size: contain;
    background-position: right center;
    background-repeat: no-repeat;
    -webkit-animation: mover 7s infinite alternate;
    animation: mover 7s infinite alternate;
}

@-webkit-keyframes mover {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
        transform: scale(1.025);
    }

    100% {
        transform: translateY(0px);
        transform: scale(1);
    }
}

@keyframes mover {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
        transform: scale(1.025);
    }

    100% {
        transform: translateY(0px);
    }
}


.SliderContents {
    position: absolute;
    left: 0px;
    right: 0px;
    margin: auto;
    bottom: 40px;
    width: 100%;
    text-align: center;
    z-index: 1;
}

.SliderContentsWrapper::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background: linear-gradient(360deg, #000000bd -100px, transparent);
}

@media (max-width: 991px) {
    .hero-style {
        height: 480pxpx;
    }
}

@media (max-width: 767px) {
    .hero-style {
        height: 240px;
    }
}

.hero-style .slide-title,
.hero-style .slide-text,
.hero-style .slide-btns {
    max-width: 750px;
    margin: 0px auto;
}

.hero-style .slide-title h2 {
    font-size: 52px;
    font-weight: 700;
    line-height: 60px;
    color: #ffffff;
    margin-bottom: 13px;
    text-transform: capitalize;
    transition: all .4s ease;
    text-shadow: 0px 0px 10px #00000040;
}

@media (max-width: 1199px) {
    .hero-style .slide-title h2 {
        font-size: 75px;
    }
}

@media (max-width: 991px) {
    .hero-style .slide-title h2 {
        font-size: 50px;
        margin: 0 0 35px;
    }
}

@media (max-width: 767px) {
    .hero-style .slide-title h2 {
        font-size: 35px;
        margin: 0 0 30px;
    }
}

.hero-style .slide-text p {
    font-size: 18px;
    color: #ffffff;
    margin: 0 0 20px;
    transition: all .4s ease;
    text-shadow: 0px 0px 10px #0000002f;
}

.hero-style .slide-text p span {
    color: #00f378;
    font-weight: 600;
}

.hero-style .slide-btn a {
    display: inline-block;
    padding: 14px 30px;
    background: linear-gradient(270deg, #007ea7, #004e89);
    border-radius: 12px;
    color: #fff;
    box-shadow: 0px 0px 10px #0003;
}

.hero-style .slide-btn a i {
    transform: rotate(90deg);
    margin-left: 6px;
}

@media (max-width: 767px) {
    .hero-style .slide-text p {
        font-size: 16px;
        font-size: 1rem;
        font-weight: normal;
        margin: 0 0 30px;
    }
}

.hero-style .slide-btns>a:first-child {
    margin-right: 10px;
}

.aboutCompany {
    height: 100%;
    width: 34%;
    padding: 0px 23px;
}

.bannerWrapperSection {
    display: flex;
    height: 100%;
    align-items: center;
    background: #005ba8;
}

.hero-slider {
    width: 100%;
}


.aboutUs {
    position: relative;
    background: linear-gradient(271deg, #ffff, #ffffff), url(../img/bg/bg3.jpg);
    background-size: cover;
}

.iconList {
    gap: 10px;
}
.iconList li {
    display: flex
    ;
        align-items: center;
        gap: 10px;
        background: #f4fcff;
        padding: 9px;
        border-radius: 10px;
        width: 48%;
        border: 1px solid #e6eeff;
}
.iconList li img {
    width: 28px;
}
.rightabsImg {
    width: 34%;
    height: auto;
    position: absolute;
    right: 0px;
    top: 0px;
    bottom: 0px;
    margin: auto;
    z-index: 1;
    background-image: url(../img/bg/bg2.jpg);
    background-size: 150% 100%;
    background-position: right -176px center;
}

.aboutContentWrapper {
    position: relative;
    z-index: 2;
}

.sectionTitleIcon {
    display: flex;
    align-items: center;
}

.sectionTitleIcon img {
    width: 25px;
    margin: 0px 15px;
    animation: scaleRoate 3s infinite linear;
}

.sectionTitleIcon span {
    width: 52px;
    height: 1px;
    display: inline-block;
    background: #007ea7;
}

@keyframes scaleRoate {
    0% {
        transform: scaleX(1);
    }

    50% {
        transform: scaleX(-1);
    }

    100% {
        transform: scaleX(1);
    }
}

.sectionTitle h4 {
    font-size: 18px;
    text-transform: uppercase;
    color: #007ea7;
    margin-bottom: 8px;
    margin-top: 15px;
}

.sectionTitle h2 {
    margin-bottom: 15px;
}

.secColImg {
    width: 90%;
    border-radius: 15px;
    overflow: hidden;
    margin-left: auto;
}

.secColImg img {
    width: 100%;
}

.sectionContent p {
    text-align: justify;
    margin-bottom: 8px;
}

.btn1 a, .btn1 button {
    padding: 12px 28px;
    display: inline-flex
;
    background: linear-gradient(270deg, #007ea7, #004e89);
    align-items: center;
    border-radius: 15px;
    color: #fff;
    margin-top: 10px;
    border: none;
}

.btn1 a i , .btn1 button i {
    margin-left: 8px;
}

.btn1 a:hover , .btn1 button:hover {
    background: linear-gradient(90deg, #004e89, #007ea7 143%);
}

.services {
    padding: 50px 0px;
    background: linear-gradient(90deg, #ffffffc4, #ffffffcf), url(../img/bg/bg4.jpg);
    background-size: cover;
    ;
}

.sectionTitle.centered {
    text-align: center;
}

.sectionTitle.centered .sectionTitleIcon {
    justify-content: center;
}

.servicesWrapper {
    margin-top: 50px;
    padding-left: 10px;
    padding-right: 10px;
}

.serviceCard {
    padding: 14px;
    box-shadow: rgba(149, 157, 165, 0.091) 0px 8px 24px;
    border-radius: 30px;
    border: 1px solid #dddddd9c;
    transition: all 0.4s ease-in-out;
    background: #ffffffaf;
    margin-bottom: 21px;
    min-height: 428px;
}

.serviceCard:hover {
    background: linear-gradient(180deg, #fff, #ffffffe8), url(../img/bg/bg5.jpg);
    transform: translateY(-5px);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border: 1px solid #012d935b;
    background-size: cover;

}

.serviceImg {
    width: 100%;
    margin: auto;
    margin-bottom: 20px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.serviceImg img {
    width: 100%;
}

.sercardContent {
    text-align: center;
}

.sercardContent h4 {
    margin-bottom: 10px;
    color: #1c3b8f;
    font-size: 20px;
    font-weight: 500;
}

.sercardContent p {
    line-height: 22px;
    /* margin-bottom: 10px; */
}

.sercardContent a {
    color: #004e89;
    font-weight: 600;
    margin-top: 20px;
    display: inline-block;
}

.defaultBtn.centered {
    text-align: center;
}

.defaultBtn a,
.defaultBtn button {
    padding: 10px 28px;
    border-radius: 13px;
    background: linear-gradient(270deg, #fbe1a9, #dcc187);
    color: #111;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    display: inline-block;
    height: auto;
    font-size: 15px;
    letter-spacing: 0px;
}

.defaultBtn a i,
.defaultBtn button i {
    visibility: hidden;
    opacity: 0;
    transition: 0.4s ease-in-out;
    margin-left: -13px;
}

.defaultBtn a:hover i,
.defaultBtn button:hover i {
    margin-left: 5px;
    visibility: visible;
    opacity: 1;
    margin-left: 5px;

}

.defaultBtn a::after,
.defaultBtn button::after {
    position: absolute;
    content: '';
    width: 0%;
    height: 120%;
    top: 0px;
    bottom: 0px;
    right: 0px;
    left: 0px;
    margin: auto;
    background: #004981;
    z-index: 1;
    transition: 0.4s ease-in-out;
}

.defaultBtn a span,
.defaultBtn button span {
    position: relative;
    z-index: 2;
    transition: 0.4s ease-in-out;
}

.defaultBtn a:hover span,
.defaultBtn button:hover span {
    color: #ffffff;
    transition: 0.2s ease-in-out;
}

.defaultBtn a:hover:after,
.defaultBtn button:hover:after {
    width: 120%;
}

.defaultBtn.light a {
    background: #fff;
    color: #2f075a;
}

.defaultBtn.light2 a {
    background: #ece8f7;
    color: #2f075a;
}

.servicesSlider  .swiper-button-prev, .servicesSlider  .swiper-button-next {
    background-size: 12px;
    background-color: #fff;
    box-shadow: 0px 0px 10px #ddd;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    transform: translateY(-26px);
}
.servicesSlider  .swiper-button-prev {
    left: 4px;
}
.servicesSlider  .swiper-button-next {
    right: 4px;
}

.counter-section {
    padding: 60px 0px 60px;
    background: linear-gradient(90deg, #f4fcff, #f4fcff), url(../img/bg/bg7.jpg);
    background-size: contain;
    background-position: right center;
    position: relative;
    background-repeat: no-repeat;
}

/* .counter-section::after{
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #080808d2;
    z-index: 1;
} */
.counter-wrapper {
    position: relative;
    z-index: 2;
}

.counter-wrapper .common-box {
    text-align: center;
}

.counter-wrapper .common-box .timer {
    font-size: 50px;
}

.counter-wrapper .common-box span {
    font-size: 50px;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #1c3b8f;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.counter-wrapper .common-box:hover span {
    color: #1c3b8f;
}

.counter-wrapper .common-box .counter-text {
    color: #343434;
    font-weight: 600
}

.coutnerWrapper {
    position: relative;
    z-index: 2;
}

.absleftimg {
    background: url(../img/bg/bg6.jpg);
    z-index: 1;
    position: absolute;
    left: 0px;
    top: 0px;
    bottom: 0px;
    margin: auto;
    width: 35%;
    height: auto;
    background-size: cover;
}

.whyChooseUs {
    background-image: url(../img/bg/bg8.jpg);
    background-color: #000000b8;
    background-blend-mode: color;
    background-size: cover;
    padding: 50px 0px;
}

.sectionTitle.white h4 {
    color: #fff;
}

.sectionTitle.white h2 {
    color: #fff;
}

.sectionTitle.white .sectionTitleIcon img {
    filter: brightness(1) invert(1);
}

.sectionTitle.white p {
    color: #fff;
}

.whychooseWrap {
    margin-top: 50px;
}

.whyChooseCard {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    padding: 13px;
    margin-bottom: 15px;
    min-height: 152px;
    border-radius: 15px;
}

.whyChooseIco {
    width: 25%;
    /* border: 1px solid #ddd; */
    padding: 10px;
    border-radius: 12px;
    background: #1c3b8f;
}

.whyChooseIco img {
    width: 100%;
    filter: brightness(1) invert(1);
}

.whyContent {
    width: 75%;
}

.whyChooseCard.leftsided {
    flex-direction: row-reverse;
}

.whyContent h4 {
    font-size: 17px;
    font-weight: 700;
}
.whyContent h4,
.whyContent p {
    color: #fff;
}
.whyContent p {
    line-height: normal;
    margin-top: 10px;
    padding-right: 11px;
}
.whyChooseimg {
    width: 85%;
    padding: 0px 13px;
    animation: upAndDown 5s infinitelinear;
    margin: auto;
}

.whyChooseimg img {
    width: 100%;
    filter: invert(1);
    opacity: 0.8;
}

.rightSided {
    text-align: right;
}

@keyframes upAndDown {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}


.ourPartners {
    padding: 50px 0px;
    background-image: url(../img/bg/bg9.jpg);
    background-color: #ffffffe0;
    background-blend-mode: color;
    background-size: contain;
}

.soponcerimg {
    width: 100%;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 0px 10px #dddddd45;
}

.soponcerimg img {
    width: 100%;
}

.sponcerSlider {
    margin-top: 40px;
    overflow: hidden;
}

.sponcerSlider .swiper-button-prev,
.sponcerSlider .swiper-container-rtl .swiper-button-next {
    display: none;
}

.sponcerSlider .swiper-button-next,
.sponcerSlider .swiper-container-rtl .swiper-button-prev {
    display: none;
}


.services.howWeDiff {
    background: #ffff;
}

.services.howWeDiff .serviceImg {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 17px;
}

.services.howWeDiff .serviceCard {
    padding: 16px;
}


.rs-process.style1 .process-effects-layer {
    background-size: 984px auto;
    margin-top: -110px;
    margin-bottom: 0px;
    padding: 160px 0px 0px 0px;
}

.rs-process.style1 .process-effects-layer .rs-addon-number .number-part {
    position: relative;
    cursor: pointer;
}

.rs-process.style1 .process-effects-layer .rs-addon-number .number-part::after {
    position: absolute;
    content: '';
    top: 35%;
    width: 100%;
    height: 2px;
    border-bottom: 2px dotted #ff7c00;
    ;
    left: 50%;
    z-index: -1;
    display: none;
    /* visibility: hidden; */
}

.rs-process.style1 .process-effects-layer .rs-addon-number .number-part.thirdprecess:after {
    top: 87%;
    width: 2px;
    height: 51%;
    border-left: 2px dotted #ff7c00;
    /* visibility: hidden; */
}

.rs-process.style1 .process-effects-layer .rs-addon-number .number-part.fourthprecess:before {
    position: absolute;
    content: '';
    top: 35%;
    width: 100%;
    height: 2px;
    border-bottom: 2px dotted #ff7c00;
    left: 50%;
    z-index: -1;
}

.rs-process.style1 .process-effects-layer .rs-addon-number .number-part.fifthprocess:after {
    position: absolute;
    content: '';
    top: 35%;
    width: 2px;
    height: 2px;
    border-bottom: 2px dotted #ff7c00;
    left: 50%;
    z-index: -1;
}

.rs-process.style1 .process-effects-layer .rs-addon-number .number-part.fifthprocess.ninthprocess:after {
    top: 87%;
    width: 2px;
    height: 51%;
    border-left: 2px dotted #ff7c00;
}

.rs-process.style1 .process-effects-layer .rs-addon-number .number-part:hover .number-area {
    transform: rotate(359deg);
    transition: 0.4s ease-in-out;
    background: #2b2b2a !important;
    color: #fff;

}

.rs-process.style1 .process-effects-layer .rs-addon-number .number-part .number-image {
    background: #d8e2fb;
    padding: 45px;
    border-radius: 50%;
    display: block;
    margin: 0 auto;
    width: 140px;
    height: 140px;
    position: relative;
}

.rs-process.style1 .process-effects-layer .rs-addon-number .number-part .number-image::after {
    position: absolute;
    border: 1px solid #00a959;
    animation: zoomBig2 3.25s linear infinite;
    -webkit-animation-delay: .75s;
    animation-delay: .75s;
    content: '';
    width: 100%;
    height: 100%;
    border-radius: 50%;
    top: 0;
    left: 0;
    z-index: -1;

}

@keyframes zoomBig2 {
    0% {
        transform: translate(0%, 0%) scale(0.9);
        opacity: 1;
        border-width: 3px;
    }

    40% {
        opacity: .5;
        border-width: 2px;
    }

    65% {
        border-width: 1px;
    }

    100% {
        transform: translate(-0%, -0%) scale(1.5);
        opacity: 0;
        border-width: 1px;
    }
}

.rs-process.style1 .process-effects-layer .rs-addon-number .number-part .number-image img {
    width: 100%;
    display: block;
}

.rs-process.style1 .process-effects-layer .rs-addon-number .number-part .number-text {
    position: relative;
    text-align: center;
    top: -34px;
}

.rs-process.style1 .process-effects-layer .rs-addon-number .number-part .number-text .number-area {
    position: relative;
    transition: all .3s ease 0s;
    text-align: center;
    width: 68px;
    height: 68px;
    left: -51px;
    top: -10px;
    margin: -13px 0px 0px 0px;
    display: inline-block;
    border-radius: 50px 50px 50px 50px;
    background: #004198;
    line-height: 72px;
}

.rs-process.style1 .process-effects-layer .rs-addon-number .number-part .number-text .number-area .number-prefix {
    font-size: 18px;
    line-height: 50px;
    font-weight: 700;
    color: #ffffff;
}

.rs-process.style1 .process-effects-layer .rs-addon-number .number-part .number-text .number-title .title {
    font-size: 18px;
    line-height: 20px;
    font-weight: 600;
    margin: 10px 0 10px;
}

.rs-process.style1 .process-effects-layer .rs-addon-number .number-part .number-text .number-txt {
    margin: 0 24px 0 24px;
}

.rs-process.style1.careers-style .process-effects-layer {
    background-image: unset;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 1050px auto;
    margin-top: -110px;
    margin-bottom: 0px;
    padding: 160px 0px 0px 0px;
}

.rs-process.style1.careers-style .process-effects-layer .rs-addon-number .number-part .number-image {
    background: #0a0a0a;
}

.rs-process.style1.careers-style .process-effects-layer .rs-addon-number .number-part .number-text .number-title .title {
    color: #0a0a0a;
}

.rs-process.style1.careers-style .process-effects-layer .rs-addon-number .number-part .number-text .number-txt {
    margin: 0 17px 0 17px;
    color: #454545;
}

.rs-process.style2 .rs-addon-number .number-part {
    padding: 50px 45px 40px 30px;
    background-color: #FFFFFF;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #F2F2F2;
    margin: 0 3px 0 3px;
}

.rs-process.style2 .rs-addon-number .number-part .number-area .number-prefix {
    font-size: 50px;
    line-height: 50px;
    font-weight: 700;
    color: #00000021;
    display: block;
    margin-bottom: 22px;
}

.rs-process.style2 .rs-addon-number .number-part .number-title .title {
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
    color: #0a0a0a;
    margin: 0 0 12px;
}

.rs-process.style2 .rs-addon-number .number-part .number-txt {
    margin-bottom: 27px;
}

.rs-process.style2 .rs-addon-number .number-part .number-txt .loac-text {
    padding-top: 12px;
}

.rs-process.style2 .rs-addon-number .number-part .number-txt .loac-text strong {
    font-weight: 700;
}

.ourProcess {
    padding: 50px 0px;
    background: linear-gradient(90deg, #ffffffc4, #ffffffcf), url(../img/bg/bg4.jpg);
    background-size: cover;
}



.testimonials {
    padding: 50px 0px;
}

.testimonialWrapper {
    overflow: hidden;
}

.testimonialWrapper .swiper-button-next,
.testimonialWrapper .swiper-button-prev {
    display: none;
}

.testimonialCard {
    padding: 30px;
    background: #f0f6ff;
    border-radius: 30px;
    position: relative;
    margin-top: 20px;
}

.testimonialImg {
    width: 100px;
    height: 100px;
    position: relative;
    top: 0px;
    left: 0px;
    margin: auto;
}

.testimonialImg::after {
    width: 110px;
    height: 110px;
    border-radius: 100%;
    position: absolute;
    content: '';
    top: 0px;
    bottom: 0px;
    right: -6px;
    left: -6px;
    margin: auto;
    border: 1px solid #0028896b;
}

.testimonialImg img {
    width: 100%;
    border-radius: 100%;
    overflow: hidden;
}

.testConFooter {
    display: flex;
    justify-content: center;
    text-align: center;
}

.testiratings ul {
    display: flex;
    display: none;
}

.testimonialContent p {
    padding-left: 0px;
    margin-bottom: 30px;
    margin-top: 20px;
    text-align: center;
}

.testConFooter .person h4 {
    font-size: 20px;
    font-weight: 600;
    color: #004e89;
}

.testConFooter .person h6 {
    color: #404040;
    font-size: 14px;
}

.testiratings ul li i {
    color: rgb(230, 181, 7);
}

.footer {
    background: linear-gradient(#0a0a0ad6, #060606d6), url(../img/bg/1841.jpg);
    background-size: cover;
    padding: 65px 0px 0px 0px;
}

.foot-info {
    width: 100%;
    margin-bottom: 20px;
}

.foot-info h3 {
    color: #efefef;
    font-weight: normal;
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 20px;
    /* background: url(../images/border-bottom.png) left bottom no-repeat; */
}

.foote-add {
    width: 100%;
}

.foot-info ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
}

.foote-add ul li {
    display: block;
    padding-left: 20px;
    color: #fff;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 20px;
}

.hed {
    font-size: 18px;
    color: #fefefe;
    font-weight: 600;
    text-transform: none;
    margin-bottom: 6px;
    display: inline-block;
}

.foote-add {
    width: 100%;
}

.social-link {
    float: left;
}

.social-link ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
}

.foote-add ul li {
    display: block;
    padding-left: 20px;
    color: #fff;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 20px;
}

.foote-add ul li a {
    background-image: none !important;
    padding-left: 0px !important;
    color: #fefefe !important;
    word-break: break-word;
}

.foot-info ul li a {
    color: #fefefe;
    font-size: 14px;
    line-height: 26px;
    padding: 0px 0px 0px 0px;
    background: url(../images/foot-arrow.png) left top 6px no-repeat;
    display: flex
;
    align-items: center;
    gap: 10px;
    line-height: 30px;
}
.foot-info ul li a:hover {
    color: #00aced;
}
.social-link ul li a {
    color: #ccd8ec;
    text-align: center;
    margin: auto;
}

.foot-info ul li {
    color: #dddd;
}

.social-link ul li {
    color: #ccd8ec;
    font-size: 16px;
    padding: 3px 0px;
    float: left;
    width: 30px;
    height: 30px;
    display: flex;
    background: #3b5998;
    margin-right: 10px;
    text-align: center;
    border-radius: 2px;
    border-radius: 100%;
}

.copyright {
    background: #202020;
    padding: 10px 0px;
}

.col-lg-6.powerd {
    display: flex;
    justify-content: flex-end;
}

.col-lg-6.copy {
    color: #ffff;
    font-size: 13px;
}


/* Go to Top */

#button {
    display: inline-block;
    background-color: #1c37a0;
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 50%;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    text-decoration: none;
    font-size: 10px;
    animation: breathing 2s ease-out infinite normal;
}

#button::after {
    content: "\f077";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 2em;
    line-height: 50px;
    color: #fff;
}

#button:hover {
    cursor: pointer;
    background-color: #151e25;
}

#button:active {
    background-color: #151e25;
}

#button.show {
    opacity: 1;
    visibility: visible;
}


@keyframes breathing {
    0% {
        -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
        transform: scale(0.9);
    }

    25% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

    60% {
        -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
        transform: scale(0.9);
    }

    100% {
        -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
        transform: scale(0.9);
    }
}


#whatsapp {
    position: fixed;
    right: 30px;
    text-align: center;
    height: 50px;
    width: 50px;
    font-size: 35px;
    background-color: #13a4e1;
    border-radius: 100%;
    bottom: 100px;
    z-index: 100000000000;
    -webkit-animation: mymove 3s;
    -webkit-animation-iteration-count: infinite;
    animation: mymove 3s;
    animation-iteration-count: infinite;
}

.fa-whatsapp:before {
    content: "\f232";
}

@-webkit-keyframes mymove {
    from {
        bottom: 100px;
    }

    to {
        bottom: 100px;
        background-color: #01e675;
        transform: rotateZ(360deg);
        -webkit-transform: rotateZ(360deg);
        -moz-transform: rotateZ(360deg);
        -ms-transform: rotateZ(360deg);
    }
}

@keyframes mymove {
    from {
        bottom: 100px;
    }

    to {
        bottom: 100px;
        background-color: #01e675;
        transform: rotateZ(360deg);
        -webkit-transform: rotateZ(360deg);
        -moz-transform: rotateZ(360deg);
        -ms-transform: rotateZ(360deg);
    }
}

.subscribed {
    background-image: url(../img/bg/bg10.jpg);
    padding: 50px 0px;
    background-size: cover;
    background-position: center top -214px;
    background-color: #00000085;
    background-blend-mode: color;
}
.subscribed a{
    color: #007ea7;
}
.subscribed .btn1 a {
    color: #ffff;
    margin-top: 30px;
}




.innerBanner {
    width: 100%;
    min-height: 280px;
    background: linear-gradient(90deg, #000000a6, transparent), url(../img/bg/inner-bg.jpg);
    background-size: 100%;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    position: relative;
}

.inrbnrWrap {
    position: absolute;
    top: 0;
    bottom: 0px;
    margin-top: auto;
    margin-bottom: auto;
    height: fit-content;
}

.inrbnrWrap .title {
    font-size: 42px;
    color: #fff;
}

.inrbnrNav {
    display: flex;
    align-items: center;
}

.inrbnrNav li {
    color: #ffff;
    margin-left: 5px;
    margin-right: 5px;
}

.inrbnrNav li:first-child {
    margin-right: 5px;
    margin-left: 0px;
}

.inrbnrNav li:last-child {
    margin-left: 5px;
}

.inrbnrNav li a {
    color: #ffffffdd;
}

.inrbnrNav li:last-child a {
    color: #00c0ff;
    font-weight: 600;
}


.contactUs {
    background: linear-gradient(90deg, white 641px, #ffffff94), url(../img/bg/bg12.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right center;
    padding: 50px 0px;
}
.formContainer {
    position: relative;
}
.formWrapper {
    margin-top: 30px;
    padding-right: 50px;
}
.formContainer::after {
    position: absolute;
    content: '';
    width: 1px;
    height: 100%;
    right: 0px;
    top: 0px;
    bottom: -71px;
    margin: auto auto auto auto;
    background-color: #dddd;
}
label {
    display: block;
}

.form-control {
    padding: 10px 18px;
    font-size: 15px;
    font-weight: 400;
    border: 1px solid #dddddd;
    border-radius: 10px;
}
.form-control:focus {
    box-shadow: none;
    border: 1px solid #007da6;
}
.form-control::placeholder {
    color: #b3b3b3;
}
.form-select {
    padding: 10px 18px;
    font-size: 15px;
    font-weight: 400;
    border: 1px solid #dddddd;
    border-radius: 10px;
}
.form-select:focus {
    box-shadow: none;
    border: 1px solid #ffbe62;
}
.form-group span {
    margin-bottom: 7px;
    display: inline-block;
}
.contact-address {
    padding-left: 20px;
}
.contact-address .address-item {
    display: flex
;
    position: relative;
    align-items: center;
    margin-bottom: 20px;
}
.contact-address .address-item .address-text {
    padding-left: 15px;
    color: #343434;
    font-weight: 500;
}
.address-icon img {
    width: 40px;
}

.normalList li {
    padding-left: 32px;
    background-image: url(../img/icons/available-check.svg);
    background-size: 18px;
    background-position: left 5px top 8px;
    background-repeat: no-repeat;
    text-align: left;
    line-height: 33px;
    color: #3c3c3c;
}

.sectionTitle {
    position: relative;
}
.sectitleNew h2 {
    position: relative;
    margin-bottom: 26px;
}
.sectitleNew h2::after {
    position: absolute;
    content: '';
    width: 100px;
    height: 2px;
    background: #007da6;
    left: 0px;
    bottom: -5px;
}
.contentText h4 {
    margin-bottom: 15px;
}
.contentText p {
    margin-bottom: 10px;
}
.normalList {
    margin-bottom: 15px;
}
.serimg {
    width: 100%;
}
.serimg img {
    width: 100%;
}

.serviceForm {
    background-image: url(../img/bg/bg9.jpg);
    background-color: #ffffffe0;
    background-blend-mode: color;
    background-size: contain;
}
.serviceForm .formWrapper {
    padding: 40px;
    box-shadow: 0px 0px 10px #ddd;
    border-radius: 25px;
    margin-top: 0px;
    background: #fff
}

.teamSlider .swiper-wrapper {
    justify-content: center;
}


@media screen and (max-width:1024px) and (min-width:768px) {
    .hero-style .slide-title h2 {
        margin-bottom: 0px;
    }
    .hero-style .slide-text p{
        margin-top: 20px;
    }
    .hero-style .slide-btn{
        margin-top: 30px;
    }
    .secColImg {
        width: 100%;
        position: sticky;
        top: 80px;
        bottom: -40px;
        background: #fff;
        padding: 10px;
        border: 1px dashed #ddd;
        padding-bottom: 0px;
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    }
    .rightabsImg{
        background-size: 150% 100%;
    background-position: right -88px center;
    }
    .counter-wrapper .common-box .timer {
        font-size: 40px;
    }
}
@media screen  and (max-width:767px) {
    .SliderContents {
        top: 40px;
        bottom: 0px;
    }
    .hero-style .slide-title h2{
        font-size: 28px;
    margin: 0 0 5px;
    line-height: 28px;
    }
    .hero-style .slide-text p{
        margin: 0 0 10px;
    }
    .hero-slider .swiper-container-horizontal>.swiper-pagination-bullets{
        bottom: 0px ;
    }
    .rightabsImg{
        width: 100%;
        height: 280px;
        background-size: 100% 100%;
        background-position: center;
        margin-top: 100px;
    }
    .secColImg {
        width: 100%;
        position: sticky;
        top: 80px;
        bottom: -40px;
        background: #fff;
        padding: 10px;
        border: 1px dashed #ddd;
        padding-bottom: 0px;
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
        margin-bottom: 30px;
    }
    .aboutContentWrapper .row{
        flex-direction: column-reverse;
    }
    .aboutContentWrapper{
        padding-bottom: 40px;
    }
    .absleftimg {
        background-size: cover;
        background-color: #ffffffd4;
        background-blend-mode: color;
        width: 100%;
    }
    .coutnerWrapper .mob-dis-none {
        display: none;
    }
    .whychooseWrap .row{
        flex-direction: column-reverse;
    }
    .whyChooseCard.leftsided {
        flex-direction: unset;
    }
    .whyChooseCard .whyContent{
        padding: 0px 10px;
    }
    .rightSided{
        text-align: left;
    }
    .whyChooseimg{
        margin-bottom: 30px;
    }
    .col-lg-6.powerd{
        justify-content: center;
    }
    .col-lg-6.copy{
        text-align: center;
    }
    .hamburger.active span {
        transition: 0.4s ease-in-out;
    }

    .hamburger.active span:nth-child(2) {
        visibility: hidden;

    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(34deg);
        position: relative;
        bottom: -9px;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(143deg);
        position: relative;
        bottom: 9px;

    }
}

@media screen and (max-width:480px) {
    .topHeader {
        display: none;
    }
    .hero-style .slide-title h2{
        font-size: 20px;
        line-height: 20px;
    }
    .hero-style .slide-text p {
        margin: 0 0 10px;
        font-size: 12px;
        line-height: 20px;
    }
    .testimonialCard{
        margin-left: 0px;
    }
    .testimonialImg{
        position: relative;
        top: 0px;
        left: 0;
        margin: auto;
    }
    .testimonialContent p{
        padding-left: 0px;
        margin-bottom: 12px;
        margin-top: 20px;
    }
    .iconList li {
        width: 100%;
    }
    .whyChooseCard {
        flex-direction: column;
    }
    .whyContent {
        width: 100%;
        text-align: center;
        margin-top: 20px;
    }
    .whyChooseCard.leftsided {
        flex-direction: column;
    }
    .logoImg {
        width: 116px;
    }
    .headerRightMenuWrap {
        display: none;
    }
    .mainHeader {
        position: relative;
    }
}