@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


html {
    -webkit-font-smoothing: antialiased;
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
    outline: none;
}

:root {
    --color: #4C4D56;
    --color1: #000000;
    --color2: #ffffff;
    --color3: #03c4eb;
    --color4: #7141B1;
    --color5: #040F30;
    --color6: #F8F8F8;
    --color7: #FDFDFD;
    --color8: #ededed;
    --cmnfont: "Montserrat", sans-serif;
}

body {
    padding: 0;
    font-style: normal;
    font-size: 1.125em;/*18px*/
    font-family: var(--cmnfont);
    color: var(--color);
    line-height: 1.1;
    font-weight: 400;
    margin: 0;
}

.container {
    width: 100%;
    max-width: 1300px;
    padding: 0 15px;
    margin: 0 auto;
}

h1,
h2 {
    line-height: 1;
    font-size: 2.500em;/* 45*/
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--cmnfont);
    color: var(--color1);
    margin: 0;
    padding: 0;
}

p,span,strong,a {
    margin: 0;
    line-height: 1.5;
    font-size: 1.000em/* 45*/
}
img{max-width: 100%;}
.pdgTop-20 {
    padding-top: 20px
}

.pdgTop-30 {
    padding-top: 30px
}

.pdgTop-40 {
    padding-top: 40px
}

.pdgTop-50 {
    padding-top: 50px
}

.pdgTop-60 {
    padding-top: 60px
}

.pdgTop-70 {
    padding-top: 70px
}

.pdgTop-80 {
    padding-top: 80px
}

.pdgTop-90 {
    padding-top: 90px
}

.pdgTop-100 {
    padding-top: 100px
}

.pdgTop-200 {
    padding-top: 200px
}

.pdgBtm-100 {
    padding-bottom: 100px
}

.textCenter {
    text-align: center
}

.textLeft {
    text-align: left
}

.textRight {
    text-align: left
}

button {
    font-family: var(--cmnfont);
    font-size: 1.125em;/*18px*/
}


.bgImg {
    width: 100%;
    height: 100%;
    max-width: 1920px;
    position: absolute;
    margin: auto;
    z-index: -1;
    right: 0;
    left: 0;
    top: 0;
}

.bgImg img {
    width: 100%;
    height: 100% !important;
    object-position: center;
    object-fit: cover;
}

.section3,
.section6 {
    position: relative;
    z-index: 2
}

.section6 {
    background-color: #F8F8F8;
}

.section4 {
    position: relative;
    margin-top: -100px;
    background-color:  var(--color6);
    z-index: 1
}

@media screen and (max-width: 1199px) {
    body {
        font-size: 1.00em;/*16px*/
    }
h1,
h2 {
    line-height: 1;
    font-size: 2.375em;/* 38*/
}
    .pdgTop-50 {
        padding-top: 40px
    }

    .pdgTop-60 {
        padding-top: 50px
    }

    .pdgTop-70 {
        padding-top: 60px
    }

    .pdgTop-80 {
        padding-top: 70px
    }

    .pdgTop-90 {
        padding-top: 80px
    }

    .pdgTop-100 {
        padding-top: 80px
    }

    .pdgBtm-100 {
        padding-bottom: 80px
    }
}

@media screen and (max-width: 1023px) {

    .pdgTop-70,
    .pdgTop-80,
    .pdgTop-90,
    .pdgTop-100 {padding-top: 60px}
}



/********************************/
/*******      HEADER      *******/
/********************************/
.headerArea {
    top: 0;
    z-index: 999;
    position: fixed;
    transition: all .3s ease;
    padding: 20px 0;
    width: 100%;
    box-shadow: 0px 6px 5px 0px rgba(0, 0, 0, 0.1);
    background: var(--color2);

}

/*
.sticky .headerArea {
    background: #fff;
    box-shadow: 0px 6px 5px 0px rgba(0, 0, 0, 0.1);
}
*/

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

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

.menu a {
    color: var(--color);
    text-decoration: none;
    transition: all .3s ease;
    font-weight: 500;
}

.sticky .menu a {
    color: var(--color)
}

.menu a:hover {
    color: var(--color3)
}

.menuSocial {
    display: flex;
    align-items: center;
    gap: 30px;
}

.socialIcon {
    margin: 0;
    padding: 0;
    list-style: none;
    align-items: center;
    display: flex;
    gap: 16px;
}

.socialIcon a {
    display: block;
    line-height: 0
}

.socialIcon a img {
    width: 26px;
    border-radius: 4px;
    transition: all .3s ease
}
.socialIcon a svg {
    width: 26px;
    stroke: var(--color);
    transition: all .3s ease;
    height: auto;
}
.socialIcon a:hover svg {
    stroke: var(--color3);
}
.socialIcon a .freelancerIcon {
    fill: var(--color);
}
.socialIcon a:hover .freelancerIcon {
    fill: var(--color3);
}
.socialIcon a:hover img {
    opacity: 0.8
}

.menuBtn {
    width: 26px;
    height: 26px;
    font-size: 0;
    line-height: 0;
    font-family: var(--cmnfont);
    background-color: transparent !important;
    background: url(../images/menuOpen.png) no-repeat center center;
    background-size: 100% auto;
    position: relative;
    cursor: pointer;
    z-index: 1000;
    display: none;
    border: none;
    padding: 0;
    margin: 0;
}

.show .menuBtn {
    background: url(../images/menuClose.png) no-repeat center center;
    background-size: 100% auto;
}

.menuBtn:focus {
    outline: none
}

@media screen and (max-width: 1023px) {
    .headerArea {
        padding: 15px 0
    }

    .logo {
        width: 150px
    }

    .logo img {
        width: 100%
    }

    .menuSocial {
        display: none
    }

    .show .menuSocial {
        right: 0;
        top: 74px;
        display: flex;
        position: absolute;
        flex-direction: column;
        transition: all .5s ease;
        background: var(--color2);
        padding: 0 0 30px;
        width: 100%;
    }

    .show .menu {
        gap: 0;
        flex-direction: column;
        padding: 0;
        width: 100%;
    }
    .menu a {
        border-top: 1px solid var(--color8);
        display: block;
        padding: 14px 20px;
        font-size: 16px;
    }
        .menuBtn {
            display: block
        }
}

/********************************/
/*******      CommonBtn      *******/
/********************************/

.commonBtn {
    cursor: pointer;
    overflow: hidden;
    position: relative;
    color: var(--color2);
    display: inline-block;
    font-size: 1.125em;/*18px*/
    text-decoration: none;
    background-color: transparent;
    background-image: linear-gradient(195deg, var(--color3) 0%, var(--color4) 100%);
    transition: all 0.5s ease 0s;
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    border-color: transparent;
    border-style: solid;
    padding: 20px 50px;
    border-radius: 5px;
    box-shadow: none;
    font-weight: 600;
    line-height: 1;
    z-index: 1;
    border: 0;
}

.commonBtn:before {
    right: auto;
    left: 0;
    top: 0;
}

.commonBtn:after {
    left: auto;
    bottom: 0;
    right: 0;
}

.commonBtn::before,
.commonBtn::after {
    width: 0;
    height: 50%;
    background: var(--color);
    transition: 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    position: absolute;
    content: "";
    z-index: -1;
}

.commonBtn:hover::before {
    width: 100%;
    left: auto;
    right: 0;
}

.commonBtn:hover::after {
    width: 100%;
    right: auto;
    left: 0;
}

@media screen and (max-width: 1199px) {
    .commonBtn {
        padding: 16px 30px;
        font-size: 16px

    }
}


/********************************/
/*******      Banner Section      *******/
/********************************/

.bannerSection .container {
    max-width: 100%;
    padding: 0;
}

.slideritem {
    position: relative
}

.sliderContent {
    height: 100vh;
    margin: 0 auto;
    max-width: 1110px;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
    gap: 30px;
}

.sliderContent h1,
.sliderContent p {
    color:  var(--color2)
}

.sliderContent h1 {
    font-size: 3.889em;/* 70*/
    text-transform: capitalize;
    font-weight: 800;
    text-shadow: 0px 0px 5px rgba(0,0,0,0.5);
}

.sliderContent p {
    font-size: 1.222em;/* 22*/
    text-shadow: 0px 0px 5px rgba(0,0,0,0.5);
}

.group {
    display: flex;
    gap: 30px;
}

.slick-arrow {
    width: 30px;
    height: auto;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    cursor: pointer;
    line-height: 0;
    border: none;
    z-index: 5;
    top: 50%;
}

.slick-arrow .stroke {
    stroke: var(--color2);
}

.slick-prev {
    left: 30px
}

.slick-next {
    right: 30px
}


@media screen and (max-height: 620px) {
    .sliderContent {
        height: auto;
        gap: 20px;
        padding: 150px 50px 200px;
    }
}

@media screen and (max-width: 1199px) {
    .sliderContent {
        height: auto;
        padding: 150px 50px 200px;
        gap: 20px;
    }

}

@media screen and (max-width: 1023px) {
        .sliderContent {
        padding: 150px 30px 200px;
    }
    .slick-arrow {
        width: 15px;
    }

    .slick-prev {
        left: 8px
    }

    .slick-next {
        right: 8px
    }
}

@media screen and (max-width: 767px) {
    .sliderContent h1 {
        font-size: 38px;
    }
    .sliderContent p {
        font-size: 16px;
    }
    .group {
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 15px;
    }
}





/********************************/
/*******      section 1      *******/
/********************************/

.section1 .serviceBoxs {
    margin-top: -206px;
}

.section1 {
    background-color: var(--color5);
    background-image: url(../images/bg-1.png);;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.serviceBoxs {
    gap: 30px;
    display: flex;
    position: relative;
}

.serviceBox {
    width: 50%;
    position: relative;
    border-radius: 10px;
    padding: 30px 45px 35px;
    background: var(--color2);
    transition: all 0.3s linear;
    transform: translate3d(0, 0, 0);
    transition: all .5s ease;
    align-items: flex-start;
    flex-direction: column;
    position: relative;
    display: flex;
    gap: 20px;
}

.serviceBox:hover {
    transform: translateY(-5px) translate3d(0, -5px, 0);
}

.serviceBox h2 {
    font-size: 1.222em /*22*/
}
.section1 .serviceBox img {
    max-width: 60px;
}
.serviceBox span {
    width: 40px;
    height: 40px;
    display: flex;
    background:  var(--color6);
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.serviceBox a {
    gap: 15px;
    display: flex;
    align-items: center;
    transition: all .3s ease;
    text-decoration: none;
    color: var(--color);
    font-weight: 500;
}

.serviceBox a:hover {
    color: var(--color3)
}

.serviceBox span img {
    width: 20px;
    transition: all .5s ease;
}

.serviceBox:hover span img {
    transform: rotate(90deg)
}

@media screen and (max-width: 1365px) {
    .section1 .serviceBox {
        padding: 30px 15px;
    }
}

@media screen and (max-width: 1023px) {
    .serviceBox {
        padding: 30px 15px;
    }

    .section1 .serviceBox {
        width: calc(50% - 15px);
    }

    .section1 .serviceBoxs {
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 767px) {
    .section1 .serviceBox {
        width: 100%;
    }

    .serviceBox {
        gap: 15px;
    }
}




/********************************/
/*******      section 2      *******/
/********************************/
.weAre {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 100px;
}

.weAreLft {
    width: 50%
}

.weAreLft h2 {
    margin-bottom: 30px;
    line-height: 1.3;
}

.subHead {
    color: var(--color3);
    /* font-size: 1.222em; */
    margin-bottom: 15px;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
}

.signature {
    gap: 50px;
    display: flex;
    align-items: center;
    border-top: 1px dotted var(--color);
    padding-top: 30px;
    margin-top: 30px;
}

.singLft,
singRit {
    width: 40%
}

.singLft {
    border-right: 1px dotted var(--color);
}

.singLft img {
    margin-bottom: 10px;
    display: block;
}

.singLft strong {
    display: block;
    color: var(--color1);
}

.singRit a {
    font-weight: 700;
    font-size: 1.444em;/*24*/
    text-decoration: none;
    display: inline-block;
    color: var(--color3);
    margin-top: 10px;
}

.weAreRit {
    width: 50%;
    display: flex;
}

.weArebtn {
    width: 33%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.weArebtn a {
    width: 80px;
    height: 80px;
    font-size: 15px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: linear-gradient(240deg, var(--color3) 0%, var(--color4) 100%);
    transition: all 0.3s linear;
    color:  var(--color2);
    display: inline-flex;
    position: relative;
    text-align: center;
    margin-top: 48px;
}

.weArebtn a span img {
    line-height: 0
}

.weArebtn a::before {
    top: 50%;
    left: 50%;
    z-index: 0;
    position: absolute;
    border: 2px solid var(--color4);
    transform: translate(-50%, -50%);
    -webkit-animation: zoombig 3.25s linear infinite;
    animation: zoombig 3.25s linear infinite;
    -webkit-animation-delay: .8s;
    animation-delay: .8s;
    border-radius: 50%;
    display: block;
    height: 170px;
    width: 170px;
    content: "";
}

.weArebtn a::after {
    top: 50%;
    left: 50%;
    content: "";
    display: block;
    position: absolute;
    border: 2px solid var(--color4);
    transform: translate(-50%, -50%);
    -webkit-animation: zoombig 3.25s linear infinite;
    animation: zoombig 3.25s linear infinite;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    border-radius: 50%;
    height: 170px;
    width: 170px;
    z-index: 0;
}

@-webkit-keyframes zoombig {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 1;
        border-width: 3px;
    }

    40% {
        opacity: .5;
        border-width: 3px;
    }

    65% {
        border-width: 2px;
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
        border-width: 2px;
    }
}


.weAreimg1 {
    left: 0;
    position: absolute;
    bottom: 30px;
    width: 430px
}

.weAreimg1 img {
    border-style: solid;
    border-width: 10px 10px 10px 10px;
    border-color: var(--color2);
    border-radius: 10px;
    width: 100%
}

.weAreimg2 {
    width: 67%
}

.weAreimg2 img {
    width: 100%
}

@media screen and (max-width: 1300px) {
    .weAreimg1 {
        width: 29.282576866764277vw;
    }

    .weArebtn a {
        width: 6.153846153846154vw;/* 1300 - 80*/
        height: 6.153846153846154vw;/* 1300 - 80*/
    }

    .weArebtn a img {
        width: 1.3846153846153846vw;/* 1300 - 18*/
    }

    .weArebtn a::before,
    .weArebtn a::after {
        height: 13.076923076923077vw;/* 1300 - 170*/
        width: 13.076923076923077vw;/* 1300 - 170*/
    }
}

@media screen and (max-width: 1023px) {

    .weAre {
        gap: 50px;
        flex-wrap: wrap;
    }

    .weAreimg1 {
        width: 70vw;
    }

    .weAreLft,
    .weAreRit {
        width: 100%;
    }
 
    .weArebtn a {
        width: 12vw;
        height: 12vw;
        margin-top:5.865102639296188vw;
    }
        .weArebtn a::before, .weArebtn a::after {
        height: 25vw;
        width: 25vw;
    }
       .weArebtn a img {
        width: 4vw;
    }

}

@media screen and (max-width: 767px) {
    .signature {
        flex-wrap: wrap;
        gap: 20px;
    }
    .singLft {
        border-right: none;
    }
    .singLft, singRit {
        width: 100%;
    }
}



/********************************/
/*******      section 3      *******/
/********************************/

.counterItems {
    display: flex;
    justify-content: space-between;
    border: 1px solid #EBEBEB;
}

.counterItem {
    gap: 15px;
    text-align: center;
    align-items: center;
    border-right: 1px solid var(--color7);
    background: var(--color7);
    padding: 50px 30px;
    display: flex;
    width: 25%;
}

.counterItem:last-child {
    border-right: 0px solid var(--color7);
}

.counterImg {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    border-radius: 10px;
    justify-content: center;
    background: var(--color2);
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1)
}

.counter-value {
    font-weight: 600;
    position: relative;
    font-size: 2.222em;/*40*/
    color: var(--color3);
    margin-bottom: 5px;
    line-height: 1;
}

.counterTxt {
    font-size: 0.833em;/*15*/
    font-weight: 500;
}

/*
 .counterItem .counter-value::after {
    content: "+";
    display: inline-block;
  }
*/
.counterItem:nth-child(2) .counter-value::after {
    content: "%";
    display: inline-block;
}

.counterItem:nth-child(4) .counter-value::after {
    content: "$";
    display: inline-block;
}

@media screen and (max-width: 1023px) {
    .counterItems {
        flex-wrap: wrap;
    }

    .counterItem {
        width: 50%;
        padding: 20px 30px;
    }
}

@media screen and (max-width: 767px) {
    .counterItem {
        flex-wrap: wrap;
        justify-content: center;
    }

    .valueText {
        width: 100%;
    }
}




/********************************/
/*******      section 4      *******/
/********************************/


.solutions {
    display: flex;
    justify-content: space-between;
    margin-top: 130px;
    gap: 30px;
}

.solution {
    width: 50%;
    overflow: hidden;
    position: relative;
    transition: all .5s ease;
    border-radius: 15px;
    z-index: 9;
}

.solution::after {
    left: 0;
    z-index: 1;
    content: "";
    position: absolute;
    background: var(--color);
    transition: all .5s ease;
    height: 100%;
    width: 100%;
    opacity: 0;
    top: 0;
}


.solution:nth-child(2) {
    transform: translateY(-30px) translate3d(0, -30px, 0)
}

.solutionText {
    bottom: 0;
    padding: 60px;
    margin-bottom: -200px;
    transition: all .5s ease;
    position: absolute;
    text-align: left;
    z-index: 2;
}

.solution:hover .solutionText {
    margin-bottom: 0;
}

.solutionImg {
    line-height: 0
}

.solutionText h3 {
    color: var(--color2);
}

.solutionText p {
    color: var(--color2);
}

.solutionImg img {
    width: 100%
}

.solutionText h3 {
    position: relative;
    padding: 0 0 0 15px;
    transition: all .5s ease;
    margin-bottom: 50px;
    font-size: 1.389em;/* 25*/
}

.solution:hover .solutionText h3 {
    margin-bottom: 25px
}

.solutionText h3::after {
    left: 0;
    top: 50%;
    content: "";
    position: absolute;
    background: linear-gradient(-160deg, var(--color3) 0%, var(--color4) 100%);
    transform: translateY(-50%);
    height: 46px;
    width: 3px;
}


.learnMore {
    position: relative;
    transform: translate(-50%);
    left: 50%;
}
.section4 .learnMore {
    bottom: 30px;
}
.learnMore a {
    color: var(--color);
    text-decoration: none;
    transition: all .5s ease;
    position: relative;
    cursor: pointer;

}

.learnMore a strong {
    position: relative;
    color: var(--color3);
    transition: all .3s ease;
    padding-right: 20px;
}

.learnMore a strong::after {
    top: 50%;
    right: 0;
    content: "";
    position: absolute;
    background: url(../images/arrow-right.png);
    transform: translateY(-50%);
    transition: all .3s ease;
    z-index: 999;
    height: 9px;
    width: 15px;
}

.learnMore a:hover strong::after {
    right: -5px
}

@media screen and (max-width: 1280px) {
    .solutionText h3 {
        margin-bottom: 20px;
    }

    .solutionText {
        padding: 20px;
        margin-bottom: 0;
    }
}

@media screen and (max-width: 1023px) {

    .solutions {
        margin-top: 50px;
        flex-wrap: wrap;
    }

    .solution {
        width: calc(50% - 15px);
    }

    .solution:nth-child(2) {
        transform: inherit;
    }

    .solutionText {
        bottom: 0;
        padding: 40px;
        margin-bottom: 0;
    }

    .learnMore {
        bottom: 0;
        position: relative;
        transform: inherit;
        left: inherit;
        margin-top: 30px;
    }

    .section4 .learnMore {
        bottom: 0;
    }
}

@media screen and (max-width: 767px) {

    .solution {
        width: 100%;
    }

    .solutionText {
        padding: 30px 15px;
    }
}



/********************************/
/*******      experience Section      *******/
/********************************/

.expFlex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap:60px;
}

.expLft ,.expRit {
    width: calc(50% - 30px);
}

.barfiller {
  width: 100%;
  height: 5px;
  position: relative;
  margin-bottom: 30px;
}

.barfiller .fill {
  display: block;
  position: relative;
  width: 0px;
  height: 100%;
  background: var(--color3) !important;
  z-index: 1;
}

.barfiller .tipWrap { display: none; }

.barfiller .tip {
  margin-top: -30px;
  padding: 2px 4px;
  font-size: 11px;
  color: #fff;
  left: 0px;
  position: absolute;
  z-index: 2;
  background: var(--color1);
    border-radius: 2px
}

.barfiller .tip:after {
  border: solid;
  border-color: var(--color1) transparent;
  border-width: 6px 6px 0 6px;
  content: "";
  display: block;
  position: absolute;
  left: 9px;
  top: 100%;
  z-index: 9
}

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

.barfiller p {
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--color1)
}

.expContBox h2 {
    font-size: 100px;
}

.expContBox {
    background-image: linear-gradient(208deg, #43BAFF 0%, #7141B1 100%);
    display: inline-block;
    text-align: center;
    padding: 15px;
    height: 100%;
}
.expContBox p {line-height: 1;}
.expContBox h2,
.expContBox p {
    color: #fff;
}

.expContFlex {
    display: flex;
    gap: 40px;
    margin-top: 30px
}

.expCont .learnMore {
     margin-top: 30px;
    bottom: 0
}
@media screen and (max-width: 1023px) {
.expLft ,.expRit {
    width: 100%;
}

}
@media screen and (max-width: 767px) {
.expContFlex {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

}



/********************************/
/*******      section 7      *******/
/********************************/


.section7 {
    background: var(--color5)
}

.section7 h2,
.section7 p {
    color: var(--color2);
}

.section7 .container {
    max-width: 100%;
    padding: 0;
    width: 100%
}

.fulHead {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 15px
}

.skill {
/*    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.09);*/
/*    padding: 20px;*/
    margin: 10px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
/*    background: var(--color2);*/
}

.skill img {
    border-radius: 10px;
    transition: all .3s ease;
}

.skillContent {
    left: 30px;
    bottom: 16px;
    position: absolute;
    max-width: 285px;
    transform: translateY(130%);
    transition: all 0.3s linear;
    text-align: left;
    opacity: 0;
}


.skill.slick-active.slick-center .skillContent {
    opacity: 1;
    transform: translateY(0);
}

.skillContent p strong{
    color: var(--color2);
    font-size: 0.778em/*14*/

}
.skillContent h3 {
    font-size: 1.333em;/*24*/
    line-height: 1.125;
    color: var(--color);
    margin: 4px 0 10px;
}
.skillContent h3 span {
    background: #fff;
    display: inline-block;
    margin: 2px 0;
    padding: 0 3px;
}
.skillContent p {
    color: var(--color2);
}


.skill a::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    top: 15%;
    left: -15%;
    z-index: 0;
    opacity: 0;
    transition: all 0.3s linear;
    background-color: transparent;
    background-image: radial-gradient(at center center, #086ad8 0%, #00000000 70%);
}
.skill.slick-active.slick-center a::before{
    opacity: 1
}
@media screen and (max-width: 1199px) {

    .skill:hover img {
        transform: scale(1);
    }
}





/********************************/
/*******      section 5      *******/
/********************************/
.testmonials {
    margin-top: 40px;
}

.testmonial {
    position: relative;
    border-radius: 10px;
    background: var(--color2);
    margin: 20px 40px 20px 40px;
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.09);
    display: flex !important;
    align-items: center;
    text-align: left;
}

.testmonialimg {
    left: -7%;
    top: -20px;
    position: relative;
    display: inline-block;
    flex-shrink: 0;
    z-index: 3;
}

.testmonialimg img {
    border-radius: 10px;
}

.testmonialimg::before {
    top: 0;
    width: 100%;
    content: "";
    position: absolute;
    background: var(--color3);
    transform: translate(5px, 5px);
    border-radius: 10px;
    height: 100%;
    z-index: -1;
    left: 0;
}

.testmonialTxt {
    padding: 40px 40px 40px 0;
}

.quote-icon {
    display: inline-block;
}

.quote-icon svg {
    fill: var(--color3);
}

.testmonialTxt p {
    margin-bottom: 15px;
}

.testmonialTxt span {
    font-size: 1.000em;/*16*/
    color: var(--color);
}


/* slick-dots */
.slick-dots button {
    display: none
}
.slick-dots {
    width: 100%;
    display: flex;
    list-style: none;
    justify-content: center;
    align-items: center;
    margin: 20px 0 0;
    padding: 0;
    gap: 16px;
}

.slick-dots li {
    width: 6px;
    height: 6px;
    cursor: pointer;
    border-radius: 50%;
    background-color: var(--color8);
    position: relative;
    line-height: 0;
    font-size: 0;
    border: none;
}


.slick-dots li::after {
    top: -8px;
    left: -8px;
    content: "";
    position: absolute;
    border: 1px solid var(--color8);
    transition: all 0.3s linear;
    height: calc(100% + 14px);
    width: calc(100% + 14px);
    transform: scale(0);
    border-radius: 50%;
}

.slick-dots li.slick-active::after {
    transform: scale(1);
}

.slick-dots li.slick-active {
    background-color: var(--color3);
    position: relative
}


@media screen and (max-width: 1023px) {
    .testmonial {
        margin: 15px;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .testmonialimg {
        left: 0;
        top: 20px;
    }

    .testmonialTxt {
        padding: 40px 20px 20px;
    }
}




/********************************/
/*******      Brand Section      *******/
/********************************/

.brandSection{
    padding: 100px 0 ;
    background:var(--color5); 
}

.brandItem {
    margin:15px;
    padding: 30px;
    display: flex !important;
    background:var(--color2); 
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    height: 150px;
}

/*----brandSection2-----*/
.brandSection2{
    background:var(--color); 
}
.brandSection2 .brandItem {
    margin: 0 40px;
    padding: 0;
    display: flex !important;
    background: transparent;
    box-shadow: none;
    align-items: center;
    border-radius: 0;
    height: auto;
}

.brandSection2 .brandItem img{
    transition: all .3s ease
}
.brandSection2 .brandItem:hover img{
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1)
}
/*----brandSection2-----*/
@media screen and (max-width: 1300px) {
    .brandItem {
        height: 10.980966325036603vw;/*1366 - 150*/ 
        padding: 2.1961932650073206vw /*1366 - 30*/ 
    }
}
@media screen and (max-width: 767px) {
  .brandItem {
        margin:10px; 
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
        height: 18vw;  
    }
    .brandSection{
    padding: 60px 0 ;
}
}
@media screen and (max-width: 565px) {
    .brandItem {
        padding: 4vw; 
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
        height: 26vw;  
    }
}



/********************************/
/*******      About Section      *******/
/********************************/
.aboutBoxs {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: left;
    gap: 30px;
}

.aboutBox {
    width: calc(33.333% - 20px);
    transition: all .5s ease;
    position: relative;
    z-index: 2
}

.pDate {
    top: 0;
    left: 0;
    position: absolute;
    z-index: 2;
}

.pDate {
    display: flex;
    border-radius: 5px;
    flex-direction: column;
    position: absolute;
    overflow: visible;
    top: 35px;
    left: 30px;
    height: 65px;
    background: var(--color3);
    background-image: linear-gradient(195deg, #086AD8 0%, #42B9FF 100%);
    justify-content: center;
    align-items: center;
    line-height: 1;
    width: 65px;
    z-index: 1
}

.pDate h2 {
    color: var(--color2);
    font-size: 28px;
    font-weight: 500;
}

.pDate span {
    color: var(--color2);
    font-size: 14px;
}

.aboutBox img {
    width: 100%;
    transition: all .3s ease
}

.aboutBox:hover img {
    transform: scale(1.1);
}


.aboutImg {
    overflow: hidden;
    border-radius: 10px;
    line-height: 0;
    display: block;
}

.aboutText {
    width: 90%;
    z-index: 2;
    padding: 30px 20px;
    position: relative;
    background: var(--color2);
    transform: translate(-50%);
    transition: all .5s ease;
    border-radius: 10px;
    margin-top: -60px;
    left: 50%;
}

.userComment {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 5px;
}

.user,
.comment {
    display: flex;
    align-items: center;
    gap: 10px;
}

.userComment img {
    width: 22px;
}

.aboutBox:hover .userComment img {
    transform: scale(1.0);
}



.aboutBox:hover .aboutText {
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}

.aboutText h3 {
    margin-bottom: 15px;
    font-size: 1.222em;/* 22*/
}

.aboutText .learnMore {
    margin-top: 20px
}

@media screen and (max-width: 1199px) {
    .aboutBox {
        width: calc(50% - 20px);
        transition: all .5s ease;
        position: relative;
        z-index: 2
    }
}

@media screen and (max-width: 767px) {
    .aboutBox {
        width: 100%;
    }
}




/********************************/
/*******      CounterSection     *******/
/********************************/


.counterSection{
    padding: 100px 0 30px;
    background-color: #fff;
    background-position: bottom;
    background-image: url(../images/counterBg.jpg);
    background-repeat: no-repeat;
    background-size: auto;
    position: relative;
    z-index: 1;
}


.counts {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.count {
    width: calc(25% - 24px);
    text-align: center;
}

.count p {
    margin: 10px 0;
}

.count-circle{
    position: relative;
    margin-top: 125px;
}
.dot {
    left: 50%;
    top: -100px;
    position: absolute;
    margin-left: -11px;
    background-color: rgb(31, 189, 242);
    border-radius: 50%;
    display: block;
    height: 22px;
    width: 22px;
}

.dot::after {
    z-index: -1;
    height: 102px;
    position: absolute;
    border-left: 2px dashed rgb(186, 196, 204);
    transition: 0.3s ease-in-out;
    bottom: -80px;
    content: "";
    width: 0px;
    left: 9px;
}

.countIcon {
    width: 105px;
    height: 105px;
    line-height: 105px;
    top: 0px;
    position: relative;
    font-size: 36px;
    box-shadow: rgba(0, 0, 0, 0.15) 1px 3px 6px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    transition: 0.3s ease-in-out;
    display: inline-block;
}
.countIcon img {
    width: 36px;
    vertical-align: middle;
    display: inline-block;
}

.count:hover .countIcon,
.count:hover .dot::after {
    -webkit-transition: all .4s cubic-bezier(.1,1.25,.68,1.25);
    transition: all .4s cubic-bezier(.1,1.25,.68,1.25);
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
}

@media screen and (max-width: 767px) {
    .counts {
        gap: 50px 30px;
    }

    .count {
        width: calc(50% - 24px);
    }
}


/********************************/
/*******      section 8      *******/
/********************************/

.boxBig {
    position: relative;
    background-image: linear-gradient(90deg, var(--color3) 0%, var(--color4) 100%);
    border-radius: 10px;
    padding: 50px 60px;
    z-index: 2;
    margin-top: -100px;
}

.join {
    gap: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.headPhon {
    width: 120px;
    height: 120px;
    background: var(--color5);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: relative;
    margin-top: -110px;
}

.joinHed {
    width: 33%;
}

.joinHed h2 {
    color: var(--color2);
    font-size: 2.222em;/*40*/
}

.joinForm {
    width: 45%;
}

.inputBoxs {
    display: flex;
}

.joinForm .commonBtn {
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    text-align: center;
    justify-content: center;
    padding: 20px 30px;
    display: flex;
}

input,
textarea {
    border-radius: 5px;
    border: 1px solid var(--color8);
    background-color: var(--color2);
    font-family: var(--cmnfont);
    transition: all 0.3s linear;
    font-size: 16px;
    padding: 20px 25px;
    color: var(--color);
    max-width: 100%;
    width: 100%;
}

input:focus,
textarea:focus {
    border-radius: 5px;
    border: 1px solid var(--color3);
}

.joinForm input {
    border-radius: 5px 0 0 5px;
}


@media screen and (max-width: 1279px) {
    .boxBig {
        padding: 50px 20px;
    }

    .join {
        gap: 30px;
    }
}

@media screen and (max-width: 1023px) {

    .join {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
        text-align: center;
    }

    .joinHed,
    .joinForm {
        width: 100%;
    }
}

@media screen and (max-width: 767px) {

    input,
    textarea {
        padding: 16px 25px;
    }
}


/********************************/
/*******      contactSection      *******/
/********************************/

.contactSection {
    position: relative;
    z-index: 2;
    background: var(--color6);
    padding: 100px 0 230px;
}

.contact {
    display: flex;
    justify-content: space-between;
    margin-top: 100px;
    gap: 150px;
}



.address,
.contactForm {
    width: 50%;
}

.address {
    text-align: left;
}

.address p {
    margin-top: 30px;
}

.contact h3 {
    font-size: 2.000em;/*36*/
    color: var(--color1);

}

.address-box {
    margin-top: 50px;
}

.address-contact {
    display: flex;
    gap: 18px;
    margin-top: 30px;
    align-items: center;
}

.address-contact p {
    margin: 0;
}

.addImg {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-image: linear-gradient(195deg, var(--color3) 0%, var(--color4) 100%);
    justify-content: center;
    align-items: center;
    display: flex;
}

.addImg img {
    width: 22px;
}

.address-content a {
    color: var(--color);
    text-decoration: none;
    line-height: 1.5;
}


.contactForm {
    padding: 50px;
    text-align: left;
    box-shadow: 0px 2px 15px 0px rgba(0, 0, 0, 0.09);
    border-radius: 15px;
    background: var(--color2);
}

.contactForm input {
    margin-bottom: 20px;
}

.contactForm .commonBtn {
    width: 100%;
    margin-top: 20px;
}

/********************************/
/*******      footer 1      *******/
/********************************/
.footerArea {
    padding: 0 0 50px;
    position: relative;
    background: var(--color5);
    color: var(--color2);
    margin-top: -100px;
}

.ftrItem p {
    margin: 20px 0 30px;
    font-size: 0.889em;/*16*/
}

.ftr2Flex .socialIcon li a {
    width: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    height: 38px;
}
.socialIcon a svg {
    width: 22px;
}


.footerArea .ftrLink a {
    color: var(--color2);
}

.ftrLink a:hover {
    margin-left: 5px
}

.footerArea .ftrHed {
    color: var(--color2);
}

.ftradd {
    gap: 20px;
    display: flex;
    flex-direction: column;
}

.ftradd li a {
    display: flex;
    align-items: center;
    color: var(--color2);
    gap: 15px;
}

.ftradd li a:hover,
.ftradd li a:hover {
    color: var(--color3);
}


.ftrTop {
    padding: 180px 0 80px;
    position: relative;
    z-index: 1
}

.copyRight {
    padding-top: 35px;
    border-top: 1px solid var(--color);
    text-align: center;
}

.copyRight p {
    font-size: 0.889em;/*16*/
}



/*===== contactSection2 =====*/
.contactSection2{
    background: #ecf7ff ;
    padding-bottom: 100px;
}
.contactSection2 p{
     max-width: 860px;
    margin: 30px auto 0;
}
.contact2 {
    max-width: 860px;
    margin: 100px auto 0;
}

.input2 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}


.input2 input {
    width: calc(50% - 15px);
}

.contact2 input,.contact2 textarea {
    margin-bottom: 30px;
}


/*footerArea2*/

.footerArea2 {
    padding: 80px 0 30px;
}

.ftr2Flex {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.ftrItem {
    width: calc(25% - 38px);
}

.ftrItem a {
    color: var(--color);
    text-decoration: none;
    transition: all .3s ease;
    font-size: 0.889em;/*16*/
}

.ftrItem a:hover {
    color: var(--color3);
}

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

.ftrHed {
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--color1);
}

.footerArea2 p {
    font-size: 0.889em;
}

.ftrLink {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ftrPots {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.ftrPots li a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ftrPots li a span {
    display: block;
    color: var(--color);
    transition: all .3s ease;
    margin: 5px 0;
}

.ftrPots li a:hover span {
    color: var(--color3);
}

.footerflex {
    gap: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--color);
    padding-top: 20px;
    margin-top: 50px;
}

@media screen and (max-width:1280px) {
    .contact {
        gap: 50px;
    }
}

@media screen and (max-width: 1023px) {

    .contact {
        gap: 30px;
    }

    .contactForm {
        padding: 40px 30px;
    }

    /*  contactSection2  */
    .contactSection2 {
        padding: 60PX 0
    }

    .contact2 {
        margin: 50px auto 0;
    }

    .ftrPots li a {
        gap: 0;
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 767px) {
    .contact {
        margin-top: 50px;
        gap: 50px;
        flex-wrap: wrap;
    }

    .address,
    .contactForm {
        width: 100%;
    }

    .contact h3 {
        font-size: 1.5em;
    }


    /*  contactSection2  */


    .contact2 input,
    .contact2 textarea {
        margin-bottom: 20px;
    }

    .input2 input {
        width: 100%;
    }

    /*footerArea2*/
    .footerArea2 {
        padding: 60px 0 30px;
    }

    .footerflex {
        justify-content: center;
        text-align: center;
        gap: 20px;
    }

    .footerLogo,
    .copyRight {
        width: 100%;
    }


    .ftr2Flex {
        gap: 30px;
    }

    .ftrItem {
        width: 100%;
    }

    .ftrHed {
        margin-bottom: 20px;
    }

    .ftrPots li {
        width: 100%;
    }

    .ftrPots li a {
        gap: 10px;
    }

    .copyRight2 {
        width: 100%;
    }
}


/********************************/
/*******      videoSection       *******/
/********************************/

.videoImg {
    position: relative;
    margin: 70px auto 0;
    max-width: 850px;
    border-radius: 5px;
    overflow: hidden;
    line-height: 0
}

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

.videoImg .weArebtn a {
    margin-top: 0;
}


/********************************/
/*******      section 6      *******/
/********************************/

.section6 .serviceBoxs {
    flex-wrap: wrap;
    gap:60px;
}
.section6 .serviceBox {
    align-items: center;
    width: calc(33.333% - 40px);
    background-color: transparent;
    padding: 0;
}
.section6 .serviceBox h2 {
    font-weight: 300
}

.section6 .serviceBox img {
    transition: all .3s ease;
}
.section6 .serviceBox:hover {
    transform: inherit;
} 

.section6 .serviceBox:hover img {
    transform: scale(1.1);
}

@media screen and (max-width: 767px) {
    .section6 .serviceBox {
        width: 100%;
    }
}


/********************************/
/*******      section 7      *******/
/********************************/


.img-grd {
    display: grid;
    padding: 60px 0 0;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-flow: dense;
    grid-gap: 1.5625vw;
}

.img-grd-itm {
    background: #ededed;
    height: 410px;
    overflow: hidden;
    position: relative;
    z-index: 1
}

.grd-Cont {
    bottom: 0;
    position: absolute;
    text-align: left;
    padding: 0 8% 9%;
}

.img-grd-itm:nth-child(1) .grd-Cont h3,
.img-grd-itm:nth-child(1) .grd-Cont p {
    color: var(--color);
}

.grd-Cont h3 {
    font-size: 25px;
    font-weight: 400;
    color: var(--color2);
}

.grd-Cont p {
    color: var(--color2);
}

.grd-Cont .learnMore {
    padding-top: 0;
    bottom: 0;
}

.grd-Cont .learnMore a strong {
    display: inline-block;
}

.grd-Cont p {
    margin: 10px 0 20px;
}

.section9 .commonBtn {
    margin-top: 0;
}

.img-grd-itm img {
    width: 100%
}

.img-grd .col12 {
    grid-row: span 2;
    grid-column: span 1;
}

.img-grd .col22 {
    grid-row: span 1;
    grid-column: span 2;
}

@media screen and (max-width: 767px) {
    .img-grd {
        padding: 60px 0 0;
        grid-template-columns: repeat(1, 1fr);
    }

    .img-grd .col22 {
        grid-column: span 1;
    }
}

/********************************/
/*******      Blog     *******/
/********************************/
.blogSection {background: #F8F8F8;}
.blogs {
    display: flex;
    flex-wrap: wrap;
    text-align: left;
    gap:70px 60px;
    justify-content: space-between;
}
.blog {width: calc(33.333% - 40px);}

.blogDate {
    display: block;
    font-size: 16px;
    font-weight: 500;
}

.blogHead {
    display: block;
    font-size: 1.389em;/*25*/
    text-decoration: none;
    color: var(--color1);
    margin: 10px 0 20px;
}

.blogHead:hover {
    color: var(--color3);
}

.blogUser {
    display: flex;
    align-items: center;
    margin-top: 20px;
    gap: 15px;
}

.blogUser img {
    width: 30px;
    border-radius: 50%;
    height: 30px;
}
.blogUser span {
    font-size: 0.889em/*16*/
}

@media screen and (max-width: 1023px) {
    .blogs {
    gap:60px 30px;
}
       .blog {width: calc(50% - 15px);}
}

@media screen and (max-width: 767px) {
    .blog {
        width: 100%
    }
}



/********************************/
/*******      mixitup     *******/
/********************************/

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

.mixitupSection h2,
.mixitupSection p {
    color: var(--color2);
}

.mixFlex {
    gap: 30px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    text-align: left
}

.mixMenu {
    margin: 0;
    padding: 0;
    list-style: none;
    border: 1px solid rgba(120, 121, 125, .3);
    width: calc(25% - 15px);
    height: 100%;
}


.mixMenu li {
    width: 100%;
    padding: 16px 20px;
    color: var(--color2);
    transition: all .3s ease;
    background-color: transparent;
    border-bottom: 1px solid rgba(120, 121, 125, .3);
    align-items: center;
    display: flex;
    gap: 10px
}

.mixMenu li:last-child {
    border-bottom: none
}

.mixMenu li.mixitup-control-active,
.mixMenu li:hover {
    background-color: rgba(255, 255, 255, .05);
    color: var(--color3);

}



.mixLists {
    display: flex;
    flex-wrap: wrap;
    width: calc(75% - 15px);
    gap: 30px;
}

.mix {
    background: #fff;
    width: calc(33.333% - 20px);
}

.mixCont {
    padding: 30px;
}

.mixCont h3 {
    margin-bottom: 20px;
}

.mixCont p {
    color: var(--color);
}

@media screen and (max-width: 1023px) {
.mixMenu li {
    padding: 12px 20px;
}
    .mixMenu,
    .mixLists {
        width: 100%;
    }
    
}

@media screen and (max-width: 1023px) {
    .mix {
        width: 100%;
    }
}