@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,500&family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,400&display=swap');

html {
    font-size: 16px;
    overflow-x: hidden;
}
body {
    position: relative;
    font-family: 'Roboto', sans-serif;
    background: #fff;
    overflow-x: hidden;
}



:root {
    --white: #fff;
    --black: #000;
    --gary-color: #828282;

}

p {
    font-size:1.313rem;
    font-weight: 400;
    line-height: 2;
    color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #000;
}


.img-auto {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

a,
button {
    text-decoration: none !important;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

a:hover,
button:hover {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
figure {
    margin: 0;
}
section {
    padding: 5rem 0;
}

/* header start */
header {
    padding: 1.563rem 0;
}
.navbar-nav {
    align-items: center;
    justify-content: end;
    width: 100%;
    gap: 2rem;
}

.mainSlider {
    height: 700px;
    position: relative;

}
.homeSlider.swiper-container {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
}

.homeSlider .slide-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
}


.mainSlider p {
    font-size: 1.313rem;
    color: var(--white);
    width: 100%;
    line-height: 2;
    margin: 0 0 1.5rem;
    text-align: center;
}


.mainSlider h2 span {
    display: block;
}

.mainSlider h2  {
    text-align: center;
}

.headingOne {
    font-size: 4.375rem;
    color: var(--white);
    font-weight: bold;
    /* margin: 0; */
    letter-spacing: 0;
}

.headingThre {
    font-size: 2.8125rem;
    font-weight: 500;
    color: var(--white);
}

.navbar-nav .nav-item .nav-link {
    font-size: 1.125rem;
    color: var(--black);
    text-transform: uppercase;
    font-weight: 400;
    padding: 0 0;
    margin: 0 0;
    display: inline-block;
    /* border-bottom: 5px solid transparent; */
}
.nav-item form span.input-group-btn {
    position: absolute;
    left: 0;
    top: 0.625rem;
}

.navbar .nav-item.drop-down {
    position: relative;
    z-index: 1;
}

.navbar .drop-down > a:after {
    content: '\f107';
    font-family: 'Font Awesome 5 Pro';
    font-weight: 400;
    padding-left: 5px;
}

.navbar .drop-down ul {
    display: block;
    position: absolute;
    left: -46px;
    top: calc(100% + 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 0;
    background: #fff;
    box-shadow: 0px 0px 30px rgb(127 137 161 / 25%);
    transition: 0.3s;
}

.navbar .drop-down:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .drop-down li {
    min-width: 200px;
    position: relative;
    list-style: none;
}

.navbar .drop-down ul a {
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 500;
    text-transform: none;
    color: #151515;
    display: block;
}

.navbar .drop-down ul a:hover {
    background: linear-gradient(181deg, #ED5B27, #F0A30E);
    color: #fff;
}

.nav-item form .input-group input {padding: 0.938rem 3rem;width: 34.75rem;border-radius: 1.813rem;border: 0.063rem solid #222325;}

.nav-item select.form-select {
    border: none;
    font-size: 1.25rem;
}

.nav-item select.form-select:focus-visible {
    border: none;
    outline: none;
}

.themeBtn {
    background: linear-gradient(181deg, #ED5B27, #F0A30E);
    font-size: 1rem;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 500;
    display: inline-block;
    border-radius: 0;
    padding: 0.813rem 2.063rem;
    border-radius: 0;
    line-height: normal;
    border-radius: 1.75rem;
    position: relative;
}
.themeBtn:hover{
    color: var(--white);
    background: linear-gradient(181deg, #023376, #0068ab);
}


.imgSlide figure img {
    width: 74%;
}

/* menu */

.hamburger {
    cursor: pointer;
    transform: translate3d(0, 0, 0);
    transition: opacity 0.3s ease;
    background-color: transparent;
    border: 0;
    padding: 0;
    vertical-align: middle;
    margin-left: 1rem;
    z-index: 11;
}

.hamburger:focus {
    outline: none;
}

.hamburger__inner {
    display: block;
    height: 24px;
    width: 25px;
    position: relative;
}

.hamburger__inner:before,
.hamburger__inner:after {
    background-color: #000;
    content: "";
    display: block;
    margin-left: -12px;
    height: 2px;
    width: 25px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform-origin: center center;
    transition: top 0.1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.25s,
    transform 0.25s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.hamburger__inner:after {
    top: 16px;
}

.is-active .hamburger__inner {
    color: var(--black);
}

.is-active .hamburger__inner:before,
.is-active .hamburger__inner:after {
    top: 50%;
    transition: top 0.1s cubic-bezier(0.215, 0.61, 0.355, 1) 0s,
    transform 0.25s cubic-bezier(0.215, 0.61, 0.355, 1) 0.1s;
}

.is-active .hamburger__inner:before {
    transform: rotate(45deg);
}

.is-active .hamburger__inner:after {
    transform: rotate(-45deg);
}

.hamburger--black .hamburger__inner:before,
.hamburger--black .hamburger__inner:after {
    background-color: #110f10 !important;
}



.is-active .open .hamburger__inner {
    color: var(--black);
}

/*overlay nav*/
.navigation-menu {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 10;

}

.navigation-menu .navigation-bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    opacity: 0;
}

.navigation-menu .navigation-bg.ones {
    width: 4px;
    background: linear-gradient(181deg, #ED5B27, #F0A30E);
}

.navigation-menu .navigation-bg.twos {
    width: 0;
    background: linear-gradient(181deg, #ED5B27, #F0A30E);
}

.navigation-menu .navigation-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.navigation-menu .nav-inner {
    position: relative;
    text-align: right;
}

.navigation-menu .nav-inner .nav-link {
    font-size: 1.125rem;
    font-weight: 600;
    color: #fff;
    line-height: 2;
    text-transform: uppercase;
    opacity: 0;
    position: relative;
}

.open header .themeBtn {
    border-color: #000;
    /* background: linear-gradient(to right, #000, #000; */
    background-repeat: no-repeat;
    background-size: 0 100%;
    background-position: center center;
    background-color: transparent;
}

.open header .themeBtn:hover {
    color: #000;
    background-size: 100% 100%;
}

.servMenuList,
.workMenuList,
.transferMenuList,
.retaMenuList {
    /* position: absolute; */
    /* left: 0; */
    /* top: 0; */
    /* right: 0; */
    /* bottom: 0; */
    display: none;
    background-color: #4ed1f9;
}

.servMenuList ul,
.workMenuList ul,
.transferMenuList ul,
.retaMenuList ul {
    height: 100%;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

li.nav-item.servicesMenu,
li.nav-item.workMenu,
.transferMenuList,
.retaMenuList {
    position: relative;
    z-index: 11;
}

.servMenuList ul li a,
.workMenu ul li a,
.transferMenuList ul li a,
.retaMenuList ul li a {
    color: #fff;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 500;
    padding: 0.8rem 0;
}

.servMenuList ul li,
.workMenu ul li,
.transferMenuList ul li,
.retaMenuList ul li {
    width: 100%;
}

.nav-inner ul li a i {
    font-size: 24px;
    vertical-align: middle;
    transform: translateX(0);
    transition: all 0.5s ease;
    opacity: 0;
    position: absolute;
    right: -10px;
    top: 12px;
}

.nav-inner ul li a:hover i {
    opacity: 1;
    transform: translateX(15px);
}

.servMenuList ul li a i,
.workMenu ul li a i,
.transferMenuList ul li a i,
.retaMenuList ul li a i {
    position: static;
    background: #000;
    opacity: 1;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    transform: inherit;
}

.servMenuList ul li a:hover i,
.workMenu ul li a:hover i,
.transferMenuList ul li a:hover i,
.retaMenuList ul li a:hover i {
    transform: translateX(0);
}

/* menu */


/* header end */

/* job sec start */
.jobhire{
    position: relative;
}


.jobhire:before{
    content: '';
    position: absolute;
    background-image: url(../images/next-job-bg.jpg);
    width: 62%;
    top: 0;
    left: 0;
    height: 100%;
    background-size: cover;
}


.jobhire:after{
    content: '';
    position: absolute;
    background-image: url(../images/hire-bg.jpg);
    width: 38%;
    top: 0;
    right: 0;
    height: 100%;
    z-index: -1;
    background-size: cover;
}

.next-job-wrap .serc {
    position: absolute;
    left: 0;
    top: 29px;
}

.next-job-wrap .loc {
    position: absolute;
    left: 0;
    top: 29px;
}



.next-job-wrap form {
    background: #fff;
    width: 720px;
    height: 93px;
    border-radius: 12px;
    position: relative;
    display: flex;
}
.next-job-wrap form input {
    height: 93px;
    border: none;
    padding: 2rem 2.5rem;
    border-radius: 12px;
    position: relative;
    outline: none;
}

.next-job-wrap form input.before{
    content: '';
    position: absolute;
    background-color: var(--black);
    width: 10px;
    height: 10px;
    top: 0;
    left: 0;
}

.next-job-wrap .themeBtn {
    position: absolute;
    right: 1.875rem;
    top: 1.5rem;
    padding: 0.875rem 2.25rem;
}

.next-job-wrap form .input-group {
    width: auto;
}
.input-group.bord:before {
    content: '';
    position: absolute;
    width: 1px;
    height: 61px;
    background: #C2C2C2;
    border-radius: 0;
    left: 0;
    top: 14px;
    z-index: 99;
}
.hire-job-wrap{
    text-align: center;
}

.hire-job-wrap .themeBtn {
    padding: 2.125rem 4.75rem;
    font-size: 1.25rem;
    margin: 0.5rem 0;
}


/* job sec end */

/* about sec start */

.about {
    padding: 5rem 0 8rem;
}

img.about1 {
    position: relative;
    border: 2px dashed #707070;
    border-radius: 63%;
    padding: 1.563rem;
    position: relative;
    width: 100%;
}

.one{
    position: absolute;
    top: 0.625rem;
    left: 11.875rem;
    background: linear-gradient(181deg, #013677, #0078BC);
    height: 1.438rem;
    width: 1.438rem;
    border-radius: 50%;
    border: 0.063rem solid var(--white);
    box-shadow: 0.125rem 0px 1.25rem #0000004f;
}


.two{
    position: absolute;
    top: 20.625rem;
    left: 0.438rem;
    background: linear-gradient(181deg, #013677, #0078BC);
    height: 1.438rem;
    width: 1.438rem;
    border-radius: 50%;
    border: 0.063rem solid var(--white);
    box-shadow: 0.125rem 0px 1.25rem #0000004f;
}

.three{
    position: absolute;
    top: 0.5rem;
    right: 8.75rem;
    background: linear-gradient(181deg, #ED5B27, #F0A30E);
    height: 4.813rem;
    width: 4.813rem;
    border-radius: 50%;
    border: 0.063rem solid var(--white);
    box-shadow: 0.125rem 0px 1.25rem #0000004f;
}

.four{
    position: absolute;
    bottom: -0.625rem;
    left: 6.688rem;
    background: linear-gradient(181deg, #ED5B27, #F0A30E);
    height: 4.813rem;
    width: 4.813rem;
    border-radius: 50%;
    border: 0.063rem solid var(--white);
    box-shadow: 0.125rem 0px 1.25rem #0000004f;
}

img.about2 {
    position: absolute;
    bottom: -4.75rem;
    right: 5.625rem;
    border: 7px solid var(--white);
    border-radius: 50%;
    box-shadow: 0.125rem 0px 1.25rem #0000004f;
}

.about-wrap h3{
    font-size: 1.75rem;
    text-transform: uppercase;
    font-weight: 500;
}
.about-wrap h2{
    color: var(--black);
}
.about-wrap p{
    color: var(--black);
    font-size: 1.125rem;
}

.about-wrap p + p {
    margin-top: 1.875rem;
}

.about-wrap .themeBtn {
    padding: 18px 32px;
    border-radius: 10px;
}
/* about sec end */

/* skill sec start */

.skill{
    background-color: #F6FAFD;
    position: relative;
    padding: 5rem 0 3rem;
}


.skill h2.headingOne{
    text-align: center;
    color: var(--black);
    margin-bottom: 3rem;
}

.skill-wrap {
    background: var(--white);
    border-radius: 0.438rem;
    padding: 60px 40px;
}

.skill-wrap h3{
    font-size: 1.563rem;
    margin: 1rem 0;
    text-transform: uppercase;
}

.skill-wrap p{
    color: #838BA1;
    font-size: 0.938rem;
}

.skill-wrap .themeBtn2 {
    color: #303037;
    padding: 0;
    background: transparent;
    font-size: 1rem;
    border-bottom: 1px solid #707070;
    border-radius: 0;
    font-weight: 500;
    margin-top: 2.5rem;
    text-transform: uppercase;
}
.skill  .swiper.mySwiper.swiper-initialized.swiper-horizontal.swiper-pointer-events.swiper-backface-hidden {
    padding-bottom: 3rem;
}
.skill .swiper-pagination-bullet{
    width: 14px;
    height: 14px;
}

.skill  .swiper-pagination-bullet-active{
    background-image: linear-gradient(181deg, #ED5B27, #F0A30E);
}

/* skill sec end */


/* chose sec start */
.choose{
    background-image: url(../images/chosebg.png);
    background-position: 170%;
    background-size: contain;
    background-repeat: no-repeat;
    padding: 5rem 0 0;
}


.choose h2{
    font-size: 4.125rem;
    margin-bottom: 2rem;
    font-weight: 600;
}


.chose-wrap {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.chose-wrap figure {
    background: var(--white);
    height: 80px;
    width: 140px;
    box-shadow: 0.125rem 0px 1.25rem #0000004f;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.chose-wrap h3{
    font-size: 1.625rem;
}

.chose-wrap p{
    color: var(--gary-color);
    font-size: 1rem;
    margin-top: 0.5rem;
    max-width: 79%;
}
/* chose sec end */


/* remote sec start */
.remote{
    background-image: url(../images/remoteebg.png);
    background-position: 105%;
    background-size: contain;
    background-repeat: no-repeat;
    padding: 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.remote .container {
    padding-left: 5rem;
}


.remote p {
    font-size: 1.125rem;
    font-family: 'Poppins', sans-serif;
    width: 63%;
}

.remote .themeBtn{
    background: var(--white);
    color: var(--black);
    border-radius: 0.688rem;
    padding: 1.563rem 2.688rem;
    font-size: 1.25rem;
}
.remote .themeBtn:hover{
    background: linear-gradient(181deg, #ED5B27, #F0A30E);
}

/* remote sec end */



/* video-sec-start */
.video {
    text-align: center;
}
.video  h2.headingOne{
    margin-bottom: 2rem;
    color: var(--black);
}

.mySwiper2 .swiper-slide:before {
    background: #0000009c;
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}


.mySwiper2 .swiper-slide-active:before {
    background: #0000005e;
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.mySwiper2 .swiper-slide-active .video-icon{
    opacity: 1;
}
.mySwiper2 img{
    width: 100%;
}


.vdeo-img a div {
    height: 67px;
    width: 67px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #ED6025;
    background: var(--white);
    border-radius: 100%;
    margin-right: 0;
    position: relative;
    z-index: 1;
    border: 2px solid var(--white);
}

.vdeo-img a div::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    background: var(--white);
    animation: anscale 1s infinite linear;
    z-index: -1;
}

@keyframes anscale {
    0% {
        opacity: 1;
        transform: scale(0.8);
    }
    100% {
        opacity: 0;
        transform: scale(1.8);
    }
}

.vdeo-img img a {
    position: relative;
    margin: 0;
}

.vdeo-img figure a {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video .swiper.mySwiper2.swiper-coverflow.swiper-3d.swiper-initialized.swiper-horizontal.swiper-pointer-events.swiper-watch-progress {
    padding-bottom: 4rem;
}

.video .swiper-pagination-bullet{
    width: 14px;
    height: 14px;
}

.video  .swiper-pagination-bullet-active{
    background-color: #ED5B27;
    background-image: linear-gradient(181deg, #ED5B27, #F0A30E);
}

/* video-sec-end */


/* testtimonals sec start */
.tetsimonails{
    background-color:#F6FAFD ;
}

.tetsimonails  h6{
    color: var(--black);
    text-align: center;
    font-size: 1.375rem;
    font-family: 'Poppins', sans-serif;
}
.tetsimonails  h2.headingOne{
    margin-bottom: 2rem;
    color: var(--black);
    text-align: center;

}
.test-wrap {
    background: linear-gradient(181deg, #013C7D, #0075B9);
    padding: 79px 50px 30px;
    border-radius: 27px;
    position: relative;
}
.test-wrap.colr {
    background: linear-gradient(181deg, #ED5B27, #F0A30E);
    padding: 79px 50px 30px;
    border-radius: 27px;
    position: relative;
}
.test-wrap p{
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
}

.test-wrap h3{
    font-size: 1.375rem;
    color: var(--white);
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
}
.test-wrap ul {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
}

.test-wrap ul li i {
    color: var(--white);
}

.tetipeop{
    position: absolute;
    right: 80px;
    bottom: -50px;
    border:3px solid var(--white);
    border-radius: 50%;
    box-shadow: 0.125rem 0px 1.25rem #0000004f;
}

.quote{
    position: absolute;
    left: 80px;
    top: -28px;
    z-index: 999;
}

.tetsimonails .swiper.mySwiper3.swiper-initialized.swiper-horizontal.swiper-pointer-events.swiper-backface-hidden {
    padding-bottom: 8rem;
    padding-top: 3rem;
}

.tetsimonails .swiper-button-next:after, .tetsimonails .swiper-rtl .swiper-button-prev:after {
    content: '\f178';
    font-family: "Font Awesome 5 Pro";
    font-weight: 300;
    color: var(--black);


}

.tetsimonails .swiper-button-prev:after, .tetsimonails .swiper-rtl .swiper-button-next:after {
    content: '\f177';
    font-family: "Font Awesome 5 Pro";
    font-weight: 300;
    color: var(--black);
}
.tetsimonails  .swiper-button-next, .tetsimonails  .swiper-rtl .swiper-button-prev{
    top: inherit;
    right: -50px;
    left: 0;
    margin: 0 auto;
    bottom: 0;
}
.tetsimonails .swiper-button-prev, .tetsimonails .swiper-rtl .swiper-button-next{
    top: inherit;
    left: -90px;
    right: 0;
    margin: 0 auto;
    text-align: center;
    bottom: 0;
}
/* testtimonals sec end */

/* compnay start */

.compnay {
    text-align: center;
}

.compnay  h6{
    color: var(--black);
    text-align: center;
    font-size: 1.375rem;
    font-family: 'Poppins', sans-serif;
}
.compnay  h2.headingOne{
    margin-bottom: 4rem;
    color: var(--black);
    text-align: center;
}

.compnay-wrap {
    /* border-bottom: 1px solid #C4C4C4; */
    border-right: 1px solid #C4C4C4;
}
.compnay-wrap figure {
    filter: grayscale(100%);
}

.compnay-wrap:hover figure {
    box-shadow: 0.125rem 0px 1.25rem #0000004f;
    cursor: pointer;
    filter: none;
}
.bdnone.compnay-wrap {
    border-right: none;
}
.row.secd .compnay-wrap{
    border-bottom: none;
}

.compnay .col-md-4 {
    padding: 0;
}

/* compnay end */



/* Insta Sec Css Start */

.instaSlider {
    padding: 2rem 0 0;
}

.instaContent a {
    font-size: 3.25rem;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1.625rem;
    opacity: 0;
    font-family: "montsreg", sans-serif;
}

.instaWrap {
    position: relative;
}

.instaContent {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 0;
    bottom: 0;
}

.instaWrap:hover .instaContent a {
    opacity: 1;
}

.instaWrap:hover .instaContent {
    background: #101010ad;
}
.instaWrap img{
    width: 100%;
}

/* Insta Sec Css End */


/* Begin: footer */

footer {
    background: #41474D;
    padding-top: 6em;
}

footer h4 {
    font-size: 2.188rem;
    font-weight: 500;
    text-transform: capitalize;
    margin: 0 0 2.5rem;
    color: var(--white);
}

.contInfo {
    display: flex;
    gap: 1rem;
    flex-direction: column;
}

footer .links li a,
footer .contInfo li a {
    display: inline-block;
    padding: 0.5rem 0;
    text-transform: capitalize;
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
}

footer .contInfo li a {
    position: relative;
    padding: 8px 0 7px 4rem;
    text-transform: none;
    line-height: 2;
}
footer .contInfo li a span {
    display: block;
    margin-bottom: -10px;
}
footer .links li a:hover,
footer .links li a:focus {
    color: #ED6025;
}

footer .contInfo li a img {
    position: absolute;
    top: 8px;
    left: 0;
    color: var(--white);
    font-size: 2.5rem;
}

.copyRight {
    border-top: 2px solid rgb(238 232 227 / 20%);
    padding: 1rem 0;
    margin-top: 30px;
    align-items: center;
}

footer p {
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}

.copyRight p {
    margin: 0;
}

.copyRight ul {
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.copyRight ul a {
    text-transform: uppercase;
    color: var(--black);
    background: #efefef;
    width: 3.375rem;
    height: 3.375rem;
    font-size: 1rem;
}

.copyRight ul a:hover,
.copyRight ul a:focus {
    background: var(--primary);
    color: var(--white);
}


/* Begin: Social Media */

.socialIo {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 0 10px;
}

.socialIo li a {
    width: 55px;
    height: 55px;
    display: block;
    background: #ffff;
    border-radius: 100px;
    font-size: 1.2rem;
    color: #656d74;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
}

.socialIo li a:hover {
    color: #fff;
    background-color: #8C9DAD;
}

/* END: Social Media */
/* END: footer */


/* inner page css */
.innerBan {
    position: relative;
}
.innerBan .overlay {
    position: absolute;
    text-align: center;
    top: 0;
    right: 0;
    bottom: 7rem;
    left: 0;
    display: flex;
    align-items: end;
}

.innerBan h2 {
    text-transform: uppercase;
}
body.abouts .instaSlider {
    padding: 0;
}

.about-ful{
    margin-top: 5rem;

}
.about-ful p{
    color: var(--black);
}
.abouts .about {
    padding: 5rem 0;
}

.jobinner h2.headingOne{
    color: var(--black);
    text-align: center;
    margin-bottom: 5rem;
}

.jobinner h6 {
    color: var(--white);
    text-align: center;
    font-size: 1.25rem;
    background: #EF8C16;
    width: 15%;
    margin: 0 auto;
    font-weight: 400;
}


.job-wrap {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    align-items: center;
    border: 1px solid #DFDFDF;
    border-radius: 12px;
    padding: 1rem 1.5rem 1rem 1.5rem;
}

.job-wrap:hover{
    background: linear-gradient(181deg, #ED5B27, #F0A30E);
    cursor: pointer;
}

.job-wrap:hover figure{
    background-color: var(--white);
}

.job-wrap:hover h3{
    color: var(--white);
}
.job-wrap:hover p{
    color: var(--white);
}
.job-wrap figure {
    background: #EBEBEB;
    height: 126px;
    width: 126px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.job-wrap h3{
    font-size: 1.125rem;
    font-weight: 400;
}

.job-wrap p{
    color: var(--gary-color);
    font-size: 0.875rem;
    margin-top: 0.5rem;

}


.career {
    text-align: center;
}

.career h2.headingOne{
    color: var(--black);
    text-align: center;
    margin-bottom: 5rem;
}

.career .skill-wrap h3{
    font-size: 1.325rem;
    font-family: 'Poppins', sans-serif;
}

.career  .skill-wrap p {
    color: #838BA1;
    font-size: 1.125rem;
    font-family: 'Poppins', sans-serif;
}

.career .skill-wrap {
    padding: 20px 0;
}


.contact-wrap{
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contact-wrap h3 {
    font-size: 1.125rem;
    font-weight: 500;
    margin: 1rem 0;
    font-family: 'Poppins', sans-serif;
}

.contact-wrap a {
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--black);
    font-family: 'Poppins', sans-serif;
}
.contact h5{
    font-size: 3.125rem;
    margin-bottom: 2rem;
}
.contact-wrap figure {
    height: 200px;
    width: 200px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 3px dashed #ED5B27;
}


.bookForm input {
    width: 100%;
    height: 68px;
    border-radius: 5px;
    border: none;
    font-size: 0.875rem;
    padding: 0 1rem;
    margin: 0 0 1.2rem;
    background: #c9c9c947;
    padding-left: 2.5rem;
}
.bookForm input::placeholder {
    color: #000;
}


.bookForm textarea {
    width: 100%;
    height: 193px;
    border-radius: 5px;
    border: none;
    background: #c9c9c947;
    font-size: 0.875rem;
    padding: 1rem 1rem;
    margin: 0 0 1.2rem;
    padding-left: 2.5rem;
}
.bookForm textarea::placeholder {
    color: #000;
}
.bookForm .themeBtn {
    font-size: 1rem;
    border: 0;
    padding: 0.688rem 3rem;
    font-family: 'Poppins', sans-serif;
}

.bookForm span {
    position: absolute;
    left: 1.813rem;
    top: 1.438rem;
    color: #ED5B27;
}

.bookForm .col-md-12 span {
    top: 1.063rem;
}

.register-wrap{
    background-color: var(--white);
    text-align: center;
    box-shadow: 0.125rem 0px 29px #00000045;
    border-radius: 22px;
    padding: 3.125rem 6.25rem;
}

.register-wrap h2.headingOne{
    color: var(--black);

}

.register-wrap .bookForm input {
    padding-left: 32px;
    border-radius: 50px;
}

.bookForm input:focus-visible {
    outline: none;
}
.next-job-wrap h2 {
    font-size: 3rem;
}

.privacyPage{
    padding: 7rem;
}

.privacyPage h6 {
    font-size: 1.5rem;
    color: #242424;
    font-weight: 600;
    margin: 1.5rem 0;
}
.privacyPage h5 {
    font-size: 2rem;
    color: #242424;
    font-weight: 600;
    margin: 1.5rem 0;
}
.privacyPage p {
    font-size: 1.125rem;
    color: #838BA1;
    line-height: 1.9;
    font-weight: 500;
}
.privacyPage ul li {
    font-size: 1rem;
    color: #838BA1;
    line-height: inherit;
    font-weight: 500;
    list-style: disc;
    margin-left: 1.05rem;
}
.privacyPage ul li + li {
    margin-top: 1rem;
}
.privacyPage p a {
    color: #838BA1;
    border-bottom: 1px solid;
}

.privacyPage ul {
    padding: 0 0 1rem;
}
ul.privacylist li a {
    font-size: 1.125rem;
    color: #fff;
    text-transform: capitalize;
}

ul.privacylist {
    display: flex;
    justify-content: space-between;
}

.design a {
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}
.main-banner {
    position: relative;
}

.main-banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: end;
    justify-content: center;
    text-align: center;
    background: #0006;
}
.main-banner h2 span{
    display: block;
}
.job-detailSec .next-job-wrap form {
    background: #f3f3f3;
    width: 750px;
    height: 93px;
    border-radius: 12px;
    position: relative;
    display: flex;
    align-items: center;
}
.job-detailSec .next-job-wrap form input {
    height: 71px;
    border: none;
    padding: 2rem 2.5rem;
    border-radius: 12px;
    position: relative;
    outline: none;
    margin: 0 0.5rem;
}
.job-detailSec .next-job-wrap .serc , .job-detailSec .next-job-wrap .loc {
    left: 7px;
    top: 19px;
}
.job-detailSec .input-group.bord:before {
    top: 5px;
}
.job-detailSec h2 {
    font-size: 4.375rem;
    color: #41474D;
    text-transform: capitalize;
    font-weight: 700;
    margin-bottom: 2rem;
}
.job-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem 2rem 0;
}

.job-box p {
    color: #000;
    margin: 0;
}

.job-box h4 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
}

.job-box p i {
    padding-right: 0.6rem;
}
.job-Content .themeBtn11 {
    color: var(--white);
    background: linear-gradient(181deg, #023376, #0068ab);
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 500;
    display: inline-block;
    border-radius: 0;
    padding: 1.1rem 2.5rem;
    border-radius: 0;
    line-height: normal;
    border-radius: 10px;
    transition: all 0.5s ease-in-out;
    margin-right: 1rem;
}
.job-Content .themeBtn11:hover{
    background: linear-gradient(181deg, #ED5B27, #F0A30E);
}
.job-Content .themeBtn{
    border-radius: 10px;
    padding: 1.1rem 2.5rem;
}
.job-Content p {
    color: #838BA1;
    padding: 1rem 0;
}
.job-Content p {
    color: #838BA1;
    padding: 1rem 2rem;
    font-size: 1.2rem;
}

.job-Btn {
    background: #EEEEEE;
    padding: 1.5rem;
    border-radius: 0 0 15px 15px;
}
.job-list {
    box-shadow: 0px 0px 7px #00000014;
    border-radius: 15px;
    margin: 4rem 0 1rem;
}
.mySwiper3 {
    padding: 3rem 0 8rem;
}
.mobile {display:none;}
/*.container {*/
/*    padding-right: 15px !important;*/
/*    padding-left: 15px !important;*/
/*}*/
.contact-wrap p {
    color: var(--black);
}


/**/

.galThumb img {
    height: 360px;
    object-fit: cover;
    margin-bottom: 1.5rem;
}
.galleryPage {
    padding-bottom: 0;
}
.servicesPage .row+.row {
    margin-top: 5rem;
}
.servicesPage .row:nth-child(2) {
    flex-flow: row-reverse;
}
.servicesPage .about-wrap h2 {
    font-size: 3.5rem;
}
/**/