@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Muli:300,400,700,800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Khand:wght@500;600&family=Yantramanav:wght@100;300;400;500;700;900&display=swap');
@font-face {
    font-family: 'tungsten';
    src: url(../fonts/TungstenNarrow-Medium.otf);
    font-weight: 400;
}

@font-face {
    font-family: 'myriad-pro';
    src: url(../fonts/MYRIADPRO-REGULAR.OTF);
    font-weight: 500;
}

@font-face {
    font-family: 'Muli';
    src: url(../fonts/Muli.ttf);
    font-weight: 500;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* HEADINGS */

h1,
p {
    line-height: 1.4;
}

h1 {
    font-size: 2.2rem;
}

h2 {
    color: #000;
    font-size: 1.3rem;
}

img {
    width: 100%;
    pointer-events: none;
}

body {
    font-size: 14px;
    font-family: 'Muli', sans-serif;
}

.container {
    width: 1170px;
    margin: auto;
}

.clear {
    clear: both;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

section {
    width: 100%;
    float: left;
    overflow: hidden;
}

.img-hover1 {
    position: relative;
    overflow: hidden;
    transition: all ease .25s;
}

.img-hover1 img {
    transition: all ease .25s;
}

.img-hover1:before {
    position: absolute;
    content: '';
    top: 3%;
    left: 3%;
    bottom: 3%;
    right: 3%;
    border: 1px solid #fff;
    z-index: 1;
    opacity: 0;
    transition: 0.2s;
}

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

.img-hover1:hover:before {
    opacity: 1;
}

.loader {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    display: none;
}


/* common buttons start */

.btn-top {
    position: relative;
    background: #ff8900;
    border: 1px solid #ff8900;
    color: #fff;
    width: 100%;
    line-height: 39px;
    height: 40px;
    text-align: center;
    z-index: 1;
    margin-top: 10px;
    border-radius: 5px;
    font-size: 17px;
}

.btn-top:hover:after {
    top: auto;
    bottom: 0;
    height: 100%;
}

.btn-top:active {
    top: 2px;
}

.btn {
    /* display: table;
    margin: auto; */
    background: #1d70ac;
    color: #fff;
    width: 198px;
    border-radius: 28px;
    line-height: 39px;
    box-shadow: 1px 12px 11px #1d70ac42;
    height: 40px;
    text-align: center;
    transition: .5s;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    font-family: 'Muli', sans-serif;
}

header {
    /*  position: fixed; */
    font-family: 'Poppins', sans-serif;
    top: -300px;
    transition: top ease .25s;
}

header .tm {
    width: 58px;
    float: right;
    margin-top: 7px;
    margin-left: 11px;
}

header .log {
    width: 200px;
}

header .fix_logo {
    display: none;
}

header.fixed .fix_logo {
    display: block;
}

header.fixed {
    width: 100%;
    position: fixed;
    z-index: 2;
    animation: example 0.5 !important;
    top: 0;
}

header.fixed .main_top {
    display: none;
}

header.fixed nav {
    height: 87px;
}

header.fixed .nav-links {
    margin-top: 26px;
}

header.fixed .fix_logo img {
    width: 210px;
}

.main_top {
    width: 100%;
    float: left;
    background: #ffffff;
    padding: 7px 0 10px;
    animation: example 0.5 !important
}

.main_top .right {
    float: right;
    margin-top: 30px;
}

.main_top .right ul {
    list-style: none;
    display: none;
}

.main_top .right ul li {
    color: #131418;
    display: inline-block;
    font-weight: 500;
}

.main_top .right ul li:nth-child(3) {
    padding-left: 30px;
    font-size: 15px;
    text-transform: uppercase;
}

.main_top .right ul li a {
    color: #606062;
    text-decoration: none;
}

.main_top .right ul li a img {
    width: 23px;
    float: left;
    margin-top: -5px;
    margin-left: 10px;
}

.main_top .right ul li a img.tm {
    width: 50px;
}

.search-bar .btn-search {
    width: 30px;
    height: 30px;
    float: right;
    margin-left: -4px;
    background: #fff;
    border: 1px solid transparent;
    border-radius: 4px;
    cursor: pointer;
}

.search-bar.mob {
    display: none;
}

.search-bar {
    border: 1px solid #ccc;
    border-radius: 25px;
    overflow: hidden;
    margin-right: 80px;
}

.search-bar:focus {
    box-shadow: 0 2px 3px #ccc inset;
}

.search-bar input {
    height: 30px;
    border: 1px solid transparent;
    padding-left: 12px;
    width: 130px;
}

.search-bar input:focus {
    outline: none;
}

.right ul li .social-media {
    float: left;
}

.main_top .right ul li i {
    padding: 5px;
    font-size: 16px;
    background: #3b5998;
    width: 30px;
    height: 30px;
    line-height: 20px;
    text-align: center;
    border-radius: 50%;
    color: #fff;
    margin-left: 5px;
}

.main_top .right ul li i.fa-search {
    background: none;
    padding: 0;
    margin-left: 0;
    width: 20px;
    height: 20px;
    color: rgb(168, 168, 168);
    font-size: 12px;
    transition: 0.1s;
}

.main_top .right ul li i:hover {
    transform: scale(1.1);
}

.main_top .right ul li i.fa-envelope {
    background: none;
    color: #606062;
    font-size: 20px;
}

.main_top .right ul li i.fa-phone {
    background: none;
    color: #606062;
    font-size: 20px;
}

.main_top .right ul li i.fa-facebook {
    background: #4267B2;
}

.main_top .right ul li i.fa-twitter {
    background: #1DA1F2;
}

.main_top .right ul li i.fa-linkedin {
    background: #0077b5;
}

.main_top p {
    color: #131418;
}

nav {
    height: 55px;
    width: 100%;
    background: #0b96cf;
    /* display: flex; */
    z-index: 10;
    box-shadow: 0 3px 4px #2b2b2b;
    display: none;
}

.services_b nav {
    background: #f8f8f8;
}

.services_b .nav-links li a {
    -webkit-text-fill-color: #000;
    font-weight: 400;
}


/*Styling logo*/

.logo,
.logo a {
    float: left;
}

.logo .mob {
    display: none;
}

.sec-logo,
.sec-logo a {
    float: right;
}


/*Styling Links*/

.nav-links {
    float: right;
}

.nav-links li a {
    text-decoration: none;
    font-size: 15px;
    color: #fff;
    margin-right: 0;
    background: linear-gradient(to right, #ffb612, #ffb812de 50%, rgb(255, 255, 255) 50%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 100%;
    background-position: 100%;
    overflow: hidden;
    transition: background-position 275ms ease;
    font-weight: 900;
    padding-bottom: 20px;
    font-family: 'Khand', sans-serif;
    letter-spacing: 1px;
}

.nav-links li .mob {
    display: none;
}

.nav-links li .close_bt {
    display: none;
}

.nav-links li a i {
    font-size: 18px;
}

.nav-links li a:hover {
    background-position: 0 100%;
}

.nav-links li {
    position: relative;
    display: inline-block;
    text-transform: capitalize;
    margin-left: 25px;
}

.nav-links li ul {
    width: 200px;
    text-align: left;
    list-style: none;
    position: absolute;
    opacity: 0;
    visibility: hidden;
    left: 0;
    top: 50px;
    z-index: 1;
    transition: all ease .25s;
    border-radius: 10px;
    overflow: hidden;
}

.nav-links li ul.solutions {
    width: 150px;
}

.nav-links li:hover ul {
    opacity: 1;
    top: 36px;
    visibility: visible;
    border-radius: 10px;
    overflow: hidden;
}

.nav-links li ul li {
    float: left;
    width: 100%;
    font-weight: 400;
    background: #131418;
    transition: all ease .25s;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.85);
    padding-left: 15px;
    margin-left: 0;
}

.nav-links li ul li:hover {
    background: #0b98cfbe;
}

.nav-links li ul li:hover a.list {
    -webkit-text-fill-color: #ffffff;
    transform: scale(1.1);
}

.nav-links li ul li a.list {
    color: #000000;
    width: 100%;
    float: left;
    padding: 13px 10px 13px 0;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: table;
    margin: auto;
    background: none;
    -webkit-text-fill-color: #000000;
    transition: 0.2s;
}

.nav-links li ul li .list.font-s {
    display: none;
}

.nav-links li ul li a.list::before {
    width: 0;
}

.nav-links li a::before {
    content: "";
    display: block;
    height: 2px;
    width: 0%;
    background-color: #ffb612;
    position: absolute;
    transition: all ease-in-out 250ms;
    margin: 0;
    bottom: -3px;
}

.nav-links li a:hover::before {
    width: 100%;
}


/*Styling Buttons*/

.login-button {
    background-color: transparent;
    border: 1.5px solid #f2f5f7;
    border-radius: 2em;
    padding: 0.6rem 0.8rem;
    margin-left: 2vw;
    font-size: 1rem;
    cursor: pointer;
}

.login-button:hover {
    color: #131418;
    background-color: #f2f5f7;
    border: 1.5px solid #f2f5f7;
    transition: all ease-in-out 350ms;
}

.join-button {
    color: #131418;
    background-color: #61DAFB;
    border: 1.5px solid #61DAFB;
    border-radius: 2em;
    padding: 0.6rem 0.8rem;
    font-size: 1rem;
    cursor: pointer;
}

.join-button:hover {
    color: #f2f5f7;
    background-color: transparent;
    border: 1.5px solid #f2f5f7;
    transition: all ease-in-out 350ms;
}


/*Styling Hamburger Icon*/

.hamburger div {
    width: 30px;
    height: 3px;
    background: #f2f5f7;
    margin: 5px;
    transition: all 0.3s ease;
}

.hamburger {
    display: none;
}


/* fixed header end */

.banner {
    background: url(../images/banner.png) no-repeat;
    height: 500px;
    padding: 50px 0;
    position: relative;
    overflow: visible;
}

.banner .content {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.banner .content .main {
    display: flex;
}

.banner .content .main .head h1 {
    color: #5fc5e7;
    font-family: 'tungsten';
    font-size: 50px;
    font-weight: 900;
    letter-spacing: 2px;
}

.banner .content .main .para p {
    color: #fff;
    font-size: 20px;
    padding-right: 200px;
    font-family: 'Muli';
}

.banner .content .main .left {
    width: 65%;
}

.banner .content .main .left a.btn {
    display: inline-block;
    background: none;
    border: 1px solid #fff;
    border-radius: 4px;
    text-decoration: none;
    text-transform: uppercase;
    margin-top: 20px;
    width: 250px;
    font-size: 14px;
    letter-spacing: 1px;
    height: 50px;
    line-height: 50px;
    box-shadow: none;
    transition: all ease .5s;
    position: relative;
    z-index: 0;
}

.banner .content .main .left a.btn:hover {
    color: #0b96cf;
}

.banner .content .main .left a.btn::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background: #fff;
    transform: scaleY(0);
    transform-origin: 50% 100%;
    transition: transform 0.3s ease-out;
    transition-timing-function: ease-out;
}

.banner .content .main .left a.btn:hover::after {
    transform: scaleY(1);
    transition-timing-function: cubic-bezier(.52, 1.64, .37, .66);
}

.banner .content .main .right {
    width: 35%;
    z-index: 0;
}

.banner .content .main .right .panda {
    position: absolute;
    bottom: 0;
    right: 40%;
    transform: translateX(40%);
}

.banner .content .main .right .panda img {
    width: 250px;
}

.frame {
    width: 100%;
    height: 590px;
}

.inp .g-recaptcha {
    justify-content: left;
}

.form-s form {
    background-color: #ffffff;
    padding: 30px 20px;
    margin: 0 25px;
    border-radius: 4px;
    box-shadow: 0 1px 2px #20a0df;
    /* z-index: 5; */
}

.form-s form .form-head {
    margin-bottom: 15px;
}

.form-s form h2 {
    font-weight: 900;
    font-size: 22px;
    padding-bottom: 5px;
}

.form-s form span {
    color: #858585;
}

.form-s form span.show-error-msg {
    color: red;
    font-size: 11px;
    padding-left: 10px;
    position: absolute;
    bottom: -12;
    left: 0;
}

.form-s form .inp {
    margin: 15px 0;
    position: relative;
}

.form-s form .inp .iti {
    width: 100%;
}

.form-s form .inp input.bphone {
    padding-left: 50px;
}

.form-s form .inp input {
    width: 100%;
    padding: 10px;
    background: #f2f2f2;
    border: 1px solid #bdbdbd;
    border-radius: 4px;
}

.form-s form .inp input:focus-visible {
    outline: 1px solid #006ec5;
}

.form-s form .terms p {
    color: #858585;
}

.form-s form .terms p a {
    color: #20a0df;
}

.form-s form .form-butn {
    text-align: center;
}

.form-s form button {
    width: 40%;
    margin-top: 10px;
    border-radius: 4px;
    background-color: #20a0df;
    border: 1px solid #20a0df;
    transition: all .2s ease-in-out;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    overflow: hidden;
}

.form-s form button:hover {
    color: #20a0df;
}

.form-s form button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background: #fff;
    transform: scaleY(0);
    transform-origin: 50% 100%;
    transition: transform 0.3s ease-out;
    transition-timing-function: ease-out;
}

.form-s form button:hover::before {
    transform: scaleY(1);
    transition-timing-function: cubic-bezier(.52, 1.64, .37, .66);
}

.gotoback a {
    color: #000000;
    float: left;
    margin-top: 15px;
}


/********************icon section*****************/

.icos-sec {
    padding: 50px 0;
    margin-top: 175px;
}

.icos-sec .main {
    display: flex;
    justify-content: center;
}

.icos-sec .main .tec {
    margin: 0 50px;
}

.icos-sec .main .tec img {
    width: 152px;
    transition: all .4s;
}

.icos-sec .main .tec:hover img {
    transform: scale(1.2);
}


/********************portfolio section*****************/

.port-sec {
    padding: 70px 0;
    background-color: #f7f7f7;
}

.port-sec .main {
    display: flex;
    justify-content: space-between;
}

.port-sec .main .pp {
    margin: 0 15px;
    position: relative;
}

.port-sec .main .pp figure {
    overflow: hidden;
}

.port-sec .main .pp figure img {
    transition: .4s;
}

.port-sec .main .pp:hover figure img {
    transform: scale(1.2);
}

.port-sec .main .pp .lm {
    padding: 5%;
    position: absolute;
    bottom: -30px;
    right: 0;
    background: #fff;
    box-shadow: 0 2px 4px #d0d0d0;
    width: 80%;
}

.port-sec .main .pp .lm h2 {
    margin-bottom: 10px;
}

.port-sec .main .pp .lm a.btn {
    background-color: #0d9ed7;
    color: #fff;
    display: inline-block;
    text-decoration: none;
    border-radius: 6px;
    margin: 0;
    overflow: hidden;
    box-shadow: 0 2px 4px #4f505044;
    transition: .2s;
    position: relative;
    z-index: 0;
}

.port-sec .main .pp .lm a.btn:hover {
    color: #0d9ed7;
}

.port-sec .main .pp .lm a.btn::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: -1;
    transform: scaleY(0);
    transform-origin: 50% 100%;
    transition: transform 0.3s ease-out;
    transition-timing-function: ease-out;
}

.port-sec .main .pp .lm a.btn:hover::after {
    transform: scaleY(1);
    transition-timing-function: cubic-bezier(.52, 1.64, .37, .66);
}

.imp-sec {
    padding: 50px 0;
    position: relative;
    background-color: #f7f7f7;
}

.imp-sec .main .head {
    text-align: center;
}

.imp-sec .main .head h2 {
    font-size: 36px;
}

.imp-sec .main .main-container {
    position: relative;
}

.imp-sec .main .main-container .swiper-button-prev {
    left: -50px;
}

.imp-sec .main .main-container .swiper-button-next {
    right: -50px;
}

.imp-sec .main .main-container .swiper-button-prev::after,
.imp-sec .main .main-container .swiper-button-next::after {
    font-size: 30px;
    font-weight: 900;
    color: #dedede;
}

.imp-sec .main .imp-s-c {
    margin-top: 20px;
}

.imp-sec .main ul.imp-s {
    display: flex;
    height: auto;
}

.imp-sec .main ul.imp-s li {
    /* margin: 1%; */
    width: 20%;
    position: relative;
}

.imp-sec .main ul.imp-s li figure {
    position: relative;
    overflow: hidden;
}

.imp-sec .main ul.imp-s li figure::before {
    position: absolute;
    content: '';
    top: 3%;
    left: 3%;
    bottom: 3%;
    right: 3%;
    border: 1px solid #fff;
    z-index: 1;
    opacity: 0;
    transition: 0.2s;
}

.imp-sec .main ul.imp-s li figure:hover::before {
    opacity: 1;
}

.imp-sec .main ul.imp-s li figure img {
    transition: 0.3s;
}

.imp-sec .main ul.imp-s li figure:hover img {
    transform: scale(1.1);
}

.imp-sec .main ul.imp-s li .fig-name {
    position: absolute;
    bottom: 10px;
    left: 15px;
}

.imp-sec .main ul.imp-s li .fig-name img {
    width: 30px;
}

.imp-sec .main ul.imp-s li .fig-name p {
    color: #fff;
    font-size: 18px;
}

.highlight-sec {
    padding: 50px 0;
    font-family: 'tungsten';
}

.highlight-sec .head h2 {
    color: #0b96cf;
    font-size: 46px;
    letter-spacing: 2px;
}

.highlight-sec ul {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.highlight-sec ul li {
    text-align: center;
}

.highlight-sec ul li .coun,
.highlight-sec ul li .count {
    color: #14286c;
    font-size: 70px;
}

.highlight-sec ul li b {
    color: #14286c;
    font-size: 70px;
    font-weight: 500;
}

.highlight-sec ul li p {
    font-family: 'Muli';
    font-size: 16px;
}

.abouttech-sec {
    padding: 50px 0;
    background-color: #cbf0ff;
}

.abouttech-sec .main {
    display: flex;
    align-items: center;
}

.abouttech-sec .main .lt {
    width: 30%;
}

.abouttech-sec .main .rt {
    width: 70%;
}

.abouttech-sec .main .lt .head h2 {
    color: #000;
    font-size: 70px;
    line-height: 70px;
    font-family: 'tungsten';
    letter-spacing: 2px;
}

.abouttech-sec .main .lt .head h2 span {
    display: block;
    color: #0b96cf;
}

.abouttech-sec .main .rt p {
    font-family: 'Muli';
    font-size: 16px;
}

.abouttech-sec .main .rt .know {
    margin-top: 20px;
}

.abouttech-sec .main .rt .know a.btn {
    padding: 0;
    border-radius: 6px;
    font-size: 20px;
    display: inline-block;
    font-family: 'tungsten';
    font-weight: 100;
    box-shadow: none;
    z-index: 0;
    overflow: hidden;
    position: relative;
    width: 100px;
}

.abouttech-sec .main .rt .know a.btn:hover {
    color: #0b96cf;
}

.abouttech-sec .main .rt .know a.btn::before {
    position: absolute;
    content: '';
    background: #fff;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    transform: scaleY(0);
    transform-origin: 50% 100%;
    transition: transform 0.3s ease-out;
    transition-timing-function: ease-out;
}

.abouttech-sec .main .rt .know a.btn:hover::before {
    transform: scaleY(1);
    transition-timing-function: cubic-bezier(.52, 1.64, .37, .66);
}


/******************** popup ********************/

.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.363);
    z-index: 5;
    display: none;
}

.popup .pop-in .close {
    float: right;
}

.popup .pop-in .close i {
    position: fixed;
    top: 5px;
    right: 5px;
    font-size: 30px;
    color: #454a4c;
    cursor: pointer;
    transition: .4s;
}

.popup .pop-in .close i:hover {
    color: red;
}

.popup .pop-in {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 35%;
    height: 70%;
    background-color: #e7f8ff;
    padding: 30px;
    font-family: 'tungsten';
    overflow: auto;
}

.popup .pop-in h2 {
    font-size: 48px;
}

.popup .pop-in h3 {
    padding: 10px 0;
    font-size: 40px;
    font-weight: 500;
    color: #4b4b4b;
}

.popup .pop-in p {
    font-family: 'muli';
    font-size: 20px;
    color: #111111;
}


/********************partener*****************/

.partner-sec {
    background: url(../images/banner-rev.jpg) no-repeat;
    background-size: 100%;
    height: 600px;
}

.partner-sec .main {
    display: flex;
    align-items: center;
    margin-top: 100px;
}

.partner-sec .main .lt h2 {
    color: #000;
    font-size: 80px;
    font-family: 'tungsten';
    line-height: 75px;
    text-transform: uppercase;
    font-weight: 100;
}

.partner-sec .main .lt h2 span {
    display: block;
    color: #fff;
}

.partner-sec .main .lt h3 {
    color: #fff;
    font-size: 90px;
    line-height: 75px;
    text-transform: uppercase;
    font-family: 'tungsten';
    font-weight: 100;
}

.partner-sec .main .rt figure {
    padding-top: 20px;
}

.partner-sec .main .rt figure img {
    width: 400px;
}


/********************case study*****************/

.casestudy {
    width: 100%;
    float: left;
    position: relative;
}

.casestudy .casestudy-bg {
    padding: 50px 0;
    background: linear-gradient(to left, #007cfe, #04d4fc);
    height: 350px;
}

.casestudy .case-cntr {
    width: 50%;
    text-align: center;
    display: table;
    margin: auto;
}

.casestudy h2 {
    font-size: 70px;
    color: #fefefe;
    text-align: center;
    font-weight: 500;
    font-family: 'tungsten';
}

.casestudy p {
    text-align: center;
    font-size: 20px;
    color: #fff;
}

.casestudy .casestudy-list {
    width: 70%;
    text-align: center;
    display: table;
    margin: -90px auto 0;
    padding: 25px 50px;
    background: #fefefe;
}

.casestudy .casestudy-list ul {
    width: 100%;
    float: left;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
}

.casestudy .casestudy-list ul li {
    width: 23%;
    margin: 1%;
    overflow: hidden;
}

.casestudy .casestudy-list ul li ul li {
    width: 100%;
    text-align: left;
    margin: 0;
    padding-left: 37px;
    position: relative;
}

.casestudy .casestudy-list ul li ul li::before {
    content: '';
    background: #000;
    width: 5px;
    height: 5px;
    position: absolute;
    left: 26px;
    top: 5px;
    border-radius: 50%;
}

.casestudy .casestudy-list ul li .casestudy-bdr {
    width: 100%;
    border: 1px solid #e1e1e1;
    float: left;
    box-shadow: 0 5px 10px #50505041;
    border-radius: 4px;
    height: 450px;
}

.casestudy .casestudy-list ul li figure {
    position: relative;
}

.casestudy .casestudy-list ul li figure .log-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.casestudy .casestudy-list ul li figure .log-img img {
    width: 80px;
}

.casestudy .casestudy-list ul li figure .log-img img.inling {
    width: 120px;
}

.casestudy .casestudy-list ul li img {
    width: 100%;
}

.casestudy .casestudy-list ul li span {
    color: #5e5e5e;
    font-size: 22px;
    text-align: left;
    float: left;
    padding: 10px;
    font-weight: 400;
    line-height: 25px;
    font-family: 'Khand', sans-serif;
}

.casestudy .casestudy-list ul li p {
    font-size: 13px;
    color: #373435;
    padding: 10px;
    float: left;
    text-align: left;
    text-align: justify;
}

.casestudy .get_det_bt {
    text-align: left;
    width: 100%;
    height: 50px;
    line-height: 50px;
    background: #34a3f5;
    float: left;
    text-decoration: none;
    cursor: pointer;
    margin-top: 10px;
    color: #ffffff;
    transition: 0.2s;
    border: 1px solid transparent;
    text-transform: uppercase;
    text-align: center;
    position: relative;
    z-index: 0;
}

.casestudy .get_det_bt:hover {
    color: #34a3f5;
}

.casestudy .get_det_bt::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background: #fff;
    transform: scaleY(0);
    transform-origin: 50% 100%;
    transition: transform 0.3s ease-out;
    transition-timing-function: ease-out;
}

.casestudy .get_det_bt:hover::after {
    transform: scaleY(1);
    transition-timing-function: cubic-bezier(.52, 1.64, .37, .66);
}


/********************our client**********************/

.our_client {
    padding: 40px 0;
}

.our_client h2 {
    text-align: center;
    color: #2dcdff;
    font-size: 70px;
    font-weight: 500;
    margin-bottom: 30px;
    font-family: 'tungsten';
}

.our_client ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.our_client ul i {
    position: absolute;
    content: none;
    width: 25px;
    height: 25px;
    background: rgb(208, 208, 208);
    border-radius: 50%;
    line-height: 24px;
    text-align: center;
    font-size: 20px;
    top: 12px;
    cursor: pointer;
    z-index: 1;
    color: #335177;
    display: none;
}

.our_client ul i:hover {
    filter: drop-shadow(0 0 2px rgb(58, 87, 141));
    color: rgb(0, 0, 0);
    background: #fefefe;
}

.our_client ul .slick-slide {
    opacity: 1;
}

.our_client ul i.fa-angle-left {
    left: 0;
}

.our_client ul i.fa-angle-right {
    right: 0;
}

.our_client ul li {
    list-style: none;
    position: relative;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 7px;
    box-shadow: 0 1px 3px 0px #b9b6b6b8;
    height: 88px;
}

.our_client .slick-dots li {
    border: 0;
    box-shadow: none;
    height: auto;
}

.our_client ul li img {
    width: 135px;
    display: table;
    margin: auto;
}

.our_client ul li img.big-log {
    width: 150px;
    margin-top: -5px;
}


/********************customer**********************/

.customer {
    padding: 50px 0;
    background: #f5f5f6;
    background-repeat: no-repeat;
    background-size: cover;
}

.customer p {
    text-align: center;
    color: #373435;
    font-size: 22px;
    font-weight: 300;
    line-height: 34px;
}

.customer p span {
    display: block;
}

.customer ul li {
    list-style: none;
    width: 100%;
    float: left;
    margin-top: 50px;
    position: relative;
}

.customer .fa-angle-left,
.customer .fa-angle-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 65px;
    color: #373435;
    z-index: 0;
    cursor: pointer;
}

.customer ul button.slick-prev {
    left: 50px;
}

.customer .fa-angle-left {
    left: 49%;
    top: 100%;
    font-size: 50px;
    margin-top: 10px;
}

.customer .fa-angle-right {
    right: 46%;
    top: 100%;
    font-size: 50px;
    margin-top: 10px;
}

.customer ul .draggable {
    height: 260px;
}

.customer ul li .img_dv {
    width: 28%;
    float: left;
    height: 200px;
    padding-left: 52px;
}

.customer ul li .cust_txt {
    width: 70%;
    float: left;
    padding: 0 30px;
    position: relative;
}

.customer ul li .cust_txt::before {
    position: absolute;
    content: '';
    left: -0px;
    top: 0;
    background: #373435;
    width: 2px;
    height: 100%;
}

.customer ul li figure {
    text-align: center;
    padding-top: 60px;
}

.customer ul li img {
    width: 190px;
    display: table;
    margin: auto;
    margin-right: 78px;
}

.customer ul li p {
    text-align: justify;
    font-size: 18px;
    line-height: 30px;
    font-weight: 300;
    margin-top: -6px;
    color: #373435;
    padding-right: 30px;
}

.customer ul li .cust_txt span {
    font-size: 18px;
    color: #373435;
    font-weight: 600;
}

.customer ul li:nth-child(2) {
    padding: 0 70px;
}


/******************** PRODUCT PORTFOLIO **********************/

.port-ban {
    position: relative;
}

.port-ban .mob {
    display: none;
}

.port-ban h1 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 60px;
    line-height: 60px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'tungsten';
}

.port-ban h1 span {
    display: block;
}

.our-prod-sec {
    padding: 50px 0;
    position: relative;
    z-index: 1;
    overflow: unset;
}

.our-prod-sec .prod {
    float: left;
    width: 100%;
}

.our-prod-sec .prod .inn {
    float: left;
    width: 46%;
}

.our-prod-sec .prod .inn h2 {
    color: #0095d5;
    font-size: 40px;
    font-weight: 500;
    letter-spacing: 1px;
    font-family: 'tungsten';
}

.our-prod-sec .prod .inn p {
    color: #4f4f4f;
    font-size: 18px;
    font-family: 'muli';
}

.both-sec {
    height: 500px;
    margin-bottom: 300px;
    background-color: #eeeeee;
    position: relative;
    overflow: unset;
}

.both-sec::before {
    position: absolute;
    content: '';
    background: url(../images/prod-portfolio/cloud.png) no-repeat;
    background-position: center;
    bottom: -280px;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.both-sec::after {
    position: absolute;
    content: '';
    background: url(../images/prod-portfolio/partner.jpg) no-repeat;
    right: 0;
    top: -150px;
    width: 700px;
    height: 540px;
}

.both-sec .main {
    float: left;
    width: 100%;
}

.port-popup .inn-port {
    padding-right: 30px;
    padding-top: 60px;
}

.port-popup .inn-port .add {
    position: relative;
}

.port-popup .inn-port .add .accordion-container {
    width: 100%;
    position: absolute;
    z-index: 1;
}


/* .accordion-container .inn-fa {
    margin-bottom: 10px;
} */

.accordion-container .accordion-title.active {
    background-color: #0095d5;
    color: #fff;
}

.accordion-container .accordion-title {
    position: relative;
    margin: 0;
    padding: 20px 32px 20px 10px;
    font-size: 1.1em;
    font-weight: 800;
    color: #000;
    cursor: pointer;
    border: 1px solid #f1f1f1;
    background: #f7f7f7;
}

.accordion-container .accordion-title span {
    float: right;
}

.accordion-container .inn-fa .accordion-content {
    display: none;
}

.accordion-container .inn-fa .accordion-content p {
    background-color: #cbf0ff;
    padding: 20px;
    text-align: justify;
}

.both-sec .main .lt,
.both-sec .main .rt {
    float: left;
    width: 50%;
}


/********************CONSULT & IMPLEMENTATION**********************/

.impl-sec {
    padding: 50px 0;
}

.impl-sec .head {
    text-align: center;
    max-width: 800px;
    margin: auto;
}

.impl-sec .head h2 {
    font-family: 'tungsten';
    font-size: 50px;
    color: #030303;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.impl-sec .head p {
    font-family: 'muli';
    color: #222222;
    font-size: 19px;
}

.impl-sec ul.imp-mag {
    display: flex;
    flex-wrap: wrap;
    margin-top: 40px;
}

.impl-sec ul.imp-mag li {
    margin: .5%;
    padding: 2%;
    width: 19%;
    border: 1px solid #eeeeee;
    transition: .4s;
}

.impl-sec ul.imp-mag li:hover {
    box-shadow: 0 2px 4px #aaaaaa88;
    border: 1px solid rgba(0, 0, 0, 0);
}

.impl-sec ul.imp-mag li figure {
    width: 60px;
    margin: auto;
}

.impl-sec ul.imp-mag li h3 {
    font-family: 'tungsten';
    font-size: 26px;
    color: #0095d5;
    letter-spacing: 1px;
    text-align: center;
    text-transform: uppercase;
    margin-top: 12px;
    font-weight: 400;
}

.impl-sec ul.imp-mag li h3 span {
    display: block;
}

.choos-us-imp {
    font-family: 'Muli', sans-serif;
    padding: 50px 0 74px;
    position: relative;
}

.choos-us-imp.light {
    padding-top: 10px;
    padding-bottom: 10px;
    background: #f1f1f1;
    margin-top: -4px;
}

.choos-us-imp.light .main-se ul li {
    padding-top: 10px;
    margin-top: 2%;
    margin-bottom: 2%;
    background: #ffffff;
}

.choos-us-imp.light h2 {
    font-size: 50px;
}

.choos-us-imp h2 {
    font-size: 40px;
    font-weight: 500;
    text-align: center;
    color: #fff;
    /* margin-top: 10px; */
    margin-bottom: 30px;
    font-family: 'tungsten';
}

.choos-us-imp .main-se .swiper-pagination {
    bottom: -23px;
    left: 50%;
    transform: translateX(-50%);
}

.choos-us-imp .main-se .swiper-pagination .swiper-pagination-bullet {
    margin-left: 8px;
    width: 10px;
    height: 10px;
    background: #ffffff;
    border: 1px solid #0095d5;
}

.choos-us-imp .main-se .swiper-pagination .swiper-pagination-bullet-active {
    background: #0095d5;
    color: #0095d5;
}

.choos-us-imp .main-se {
    position: relative;
    padding-top: 40px;
}

.choos-us-imp .main-se::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 60%;
    top: 0;
    background-color: #0095d5;
    z-index: -1;
}

.choos-us-imp .main-se .choosSwiper {
    margin: 0 60px;
}

.choos-us-imp .main-se ul {
    list-style: none;
    height: 270px;
}

.choos-us-imp .main-se ul li {
    text-align: center;
    width: 20%;
    padding: 10px;
    background-color: #fff;
    border: 1px solid #f1f1f1;
    /* padding: 20px 20px 30px; */
    transition: 0.3s;
}

.choos-us-imp .main-se ul li h3 {
    color: #444;
    font-size: 26px;
    margin: 10px 0;
    font-weight: 700;
    line-height: 1;
    font-family: 'Khand', sans-serif;
}

.choos-us-imp .main-se ul li:hover {
    box-shadow: 0 -8px 11px 8px rgba(0, 0, 0, 0.04);
}

.choos-us-imp .main-se ul li img {
    width: 100px;
}

.choos-us-imp.main-se ul li p {
    font-size: 14px;
    color: #595E63;
    line-height: 1.77778;
}

.choos-us-imp .subhead {
    color: #595E63;
    font-size: 17px;
    text-align: center;
    margin-bottom: 30px;
}

.salseforce-us-imp {
    font-family: 'Muli', sans-serif;
    padding: 50px 0 0;
}

.salseforce-us-imp .main-se {
    box-shadow: 0 -8px 11px 8px rgba(0, 0, 0, 0.04);
    padding: 50px 20px;
    margin-bottom: 50px;
}

.salseforce-us-imp .main-se h2 {
    font-size: 45px;
    font-weight: 300;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 40px;
    text-transform: uppercase;
    font-family: 'tungsten';
}

.salseforce-us-imp .main-se ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: center;
}

.salseforce-us-imp .main-se ul li {
    text-align: center;
    width: 23%;
    margin: 1%;
    padding: 25px;
    border: 1px solid #0b96cf;
    border-radius: 11px;
}

.salseforce-us-imp .main-se ul li h3 {
    font-size: 19px;
    margin: 10px 0;
    font-weight: 500;
    line-height: 1.4;
    color: #6d6e71
}

.salseforce-us-imp .main-se ul li p {
    font-size: 14px;
    color: #595E63;
    line-height: 1.77778;
}

.salseforce-us-imp .subhead {
    color: #595E63;
    font-size: 17px;
    text-align: center;
    padding-bottom: 40px;
    margin-bottom: 30px;
    border-bottom: #d8d8d8 solid 1px;
}


/********************get in touch**********************/


/**Get in Touch**/

.get_in_touch {
    padding: 50px 0;
    background: #52c3fd;
    position: relative;
    overflow: hidden;
}

.get_in_touch::before {
    content: '';
    position: absolute;
    background: url(../images/bgcontact.jpg) no-repeat;
    width: 100%;
    height: 248px;
    top: 0;
    left: 0;
    z-index: 0;
    background-size: 100% 70%;
}

.get_in_touch h2 {
    position: relative;
    font-size: 70px;
    font-weight: 500;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    font-family: 'tungsten';
}

.get_in_touch .form_contact {
    margin-top: 50px;
}

.get_in_touch h3 {
    font-size: 40px;
    font-weight: 300;
    color: #fff;
    text-align: center;
    z-index: 0;
    position: relative;
    font-family: 'Khand', sans-serif;
}

.get_in_touch .form_contact h4 {
    color: #fff;
    font-size: 20px;
    margin-left: 26px;
}

.get_in_touch .form_contact .form_main {
    width: 46%;
    margin: 1% 2%;
    float: left;
}

.form_main .iti {
    width: 100%;
    position: relative;
}

.form_contact .form_main .form_in .iti__selected-flag {
    height: 75%;
}

.form_contact .form_main .form_in input.phone {
    padding-left: 50px;
    margin-bottom: 20px !important;
}

.get_in_touch .form_contact .form_main .form_in {
    width: 100%;
    position: relative;
}

.get_in_touch .form_contact .form_main .form_in .show-error-msg,
.get_in_touch .form_contact .form_main .form_in .iti .show-error-msg {
    position: absolute;
    left: 0;
    bottom: 5px;
    font-size: 12px;
    color: red;
}

.get_in_touch .form_contact .form_main .form_in .iti .show-error-msg {
    bottom: 6px;
}

.form_contact .form_main .form_in input,
.form_contact .form_main .form_in select,
.form_contact .form_main .form_in .dropdown-check-list,
.form_contact .form_main .form_in textarea {
    width: 100%;
    background: #4ba7e8;
    border: 1px solid transparent;
    height: 50px;
    margin-bottom: 20px;
    padding: 12px;
    color: #fff;
    border-radius: 4px;
    transition: 0.2s;
    font-family: 'Muli', sans-serif;
}

.form_contact .form_main .form_in select option {
    background: #ffffff;
    color: #000;
    font-size: 14px;
}

.form_contact .form_main .form_in input:focus,
.form_contact .form_main .form_in select:focus,
.form_contact .form_main .form_in .dropdown-check-list:focus,
.form_contact .form_main .form_in textarea:focus {
    outline: none;
    border: 1px solid #fff;
}

.form_contact .form_main .form_in input::placeholder,
.form_contact .form_main .form_in textarea::placeholder {
    color: #fff;
}

.form_contact .form_main .form_in textarea {
    height: 190px;
}

.form_contact .form_main .form_in.left {
    float: right;
    text-align: right;
}

.dropdown-check-list {
    display: inline-block;
}

.dropdown-check-list .anchor {
    width: 100%;
    position: relative;
    cursor: pointer;
    display: inline-block;
    padding: 5px 50px 5px 10px;
    /* border: 1px solid #ccc; */
}

.dropdown-check-list .anchor:after {
    position: absolute;
    content: "";
    border-left: 2px solid #fff;
    border-top: 2px solid #fff;
    padding: 5px;
    right: 10px;
    top: 20%;
    -moz-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.dropdown-check-list .anchor:active:after {
    right: 8px;
    top: 21%;
}

.dropdown-check-list ul.items {
    padding: 2px;
    display: none;
    margin: 0;
    border-top: none;
    position: absolute;
    top: 48px;
    left: 0;
    width: 100%;
    z-index: 5;
}

.dropdown-check-list ul.items li {
    list-style: none;
    background-color: #fffc;
    color: #000;
}

.dropdown-check-list ul.items li label {
    display: flex;
    align-items: center;
}

.dropdown-check-list ul.items li .interest {
    width: unset;
    height: 15px;
    margin: 10px;
}

.dropdown-check-list.visible .anchor {
    color: #ffffff;
}

.dropdown-check-list.visible .items {
    display: block;
}

.butn-com {
    position: relative;
}

.g-recaptcha {
    float: right;
    width: 100%;
    display: flex;
    justify-content: right;
    margin-bottom: 10px;
}

.g-recaptcha.left-fl {
    justify-content: start;
}

.g-recaptcha.cap {
    justify-content: center;
}

.form_main .form_in.left .snd {
    background: none;
    border: 1px solid #ffffff;
    color: #fff;
    padding: 10px 25px;
    border-radius: 4px;
    font-size: 15px;
    cursor: pointer;
    margin-right: 0;
    transition: 0.2s;
    position: relative;
    z-index: 0;
}

.form_main .form_in.left .snd:hover {
    color: #0b96cf;
}

.form_main .form_in.left .snd::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background: #fff;
    transform: scaleY(0);
    transform-origin: 50% 100%;
    transition: transform 0.3s ease-out;
    transition-timing-function: ease-out;
}

.form_main .form_in.left .snd:hover::after {
    transform: scaleY(1);
    transition-timing-function: cubic-bezier(.52, 1.64, .37, .66);
}


/********************THANKS PAGE**********************/

.tclose {
    width: 100%;
    font-size: 20px;
    float: right;
    background-color: #0e9ed3;
}

.tclose .thank-close {
    color: #ffffff;
    float: right;
    margin-right: 10px;
    margin-top: 10px;
}

.thankyou {
    width: 700px;
    margin: 50px auto;
    background: #fff;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, .5);
    text-align: center;
    padding-bottom: 50px;
}

.thankyou h1 {
    text-transform: uppercase;
    color: #37c1fd;
    font-size: 20px;
}

.thankyou p {
    border-top: 1px dotted #ccc;
    margin-top: 25px;
    padding-top: 10px;
    font-size: 14px;
    font-weight: 600;
}

.thankyou .para {
    font-size: 20px;
}

.thankyou .para2 {
    font-size: 15px;
    font-weight: 500;
}

.thankarea {
    width: 100%;
    float: left;
    background: #0e9ed3;
    padding: 50px 0;
    margin-bottom: 50px;
}

.thankarea .fa {
    background: #fff;
    width: 150px;
    font-size: 90px;
    color: #37c1fd;
    border-radius: 100%;
    line-height: 150px;
}


/********************footer**********************/

footer {
    width: 100%;
    float: left;
    font-weight: 300;
}

footer .main_up_foot {
    background: #071440;
    padding: 40px 0;
    float: left;
    width: 100%;
}

footer .main_up_foot .left {
    width: 50%;
    float: left;
}

footer .main_up_foot .right {
    width: 50%;
    float: right;
}

footer .main_up_foot h2 {
    color: #64b42b;
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 30px;
}

footer .main_up_foot input {
    width: 70%;
    float: left;
    height: 35px;
    padding-left: 12px;
}

footer .main_up_foot .search_btn {
    width: 20%;
    float: left;
    margin-left: 8px;
    background: #f58634;
    border: 1px solid #f58634;
    color: #fff;
    height: 35px;
    cursor: pointer;
}

footer .main_up_foot .search_btn:hover {
    filter: drop-shadow(0 0 2px #333);
    background: #000;
    border: 1px solid #110d0d;
}

footer .main_up_foot .social_media_icons {
    color: #64b42b;
    text-transform: uppercase;
    float: right;
    width: 100%;
    text-align: right;
    margin-bottom: 15px;
}

footer .main_up_foot .social_media_icons a {
    color: #fff;
}

footer .main_up_foot .social_media_icons a i {
    background: #3b5998;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    margin-left: 5px;
    font-size: 16px;
}

footer .main_up_foot .social_media_icons a i:hover {
    filter: drop-shadow(0 0 2px #738086);
}

footer .main_up_foot .chat_link {
    display: flex;
    flex-flow: row;
    width: 100%;
    margin-top: 30px;
    list-style: none;
}

footer .low_foot a:hover {
    color: #64b42b;
}

footer .low_foot .social-media i:hover {
    background: #000;
    border: 1px solid #fff;
    color: #fff;
}

footer .main_up_foot .chat_link li {
    width: 21%;
    margin: 2.5%;
    background: #fff;
    position: relative;
    text-align: center;
    padding: 15px 6px 30px;
    border-radius: 8px;
    cursor: pointer;
}

footer .main_up_foot .chat_link li img {
    margin: 3px 20px;
    -webkit-transition: 0.6s ease-out;
    -moz-transition: 0.6s ease-out;
    transition: 0.6s ease-out;
}

footer .main_up_foot .chat_link li img:hover {
    transform: scale(1.2);
}

footer .main_up_foot .chat_link li:nth-child(1) {
    margin-left: 0;
}

footer .main_up_foot .chat_link li:nth-child(3) {
    margin-right: 0;
}

footer .main_up_foot .chat_link li p {
    margin-top: 10px;
    text-transform: uppercase;
    font-size: 12px;
}

footer .main_up_foot .chat_link li img {
    width: 35px;
}

footer .main_up_foot .social_media_icons a i.fa-twitter {
    background: #00acee;
}

footer .main_up_foot .social_media_icons a i.fa-linkedin {
    background: #0e76a8;
}

footer .main_up_foot .social_media_icons a:nth-child(1) {
    margin-left: 10px;
}

footer .low_foot {
    background: #071440;
    width: 100%;
    float: left;
    padding: 40px 0 0;
    border-top: 1px solid #fff;
}

footer .low_foot h3 {
    color: #64b42b;
    margin-bottom: 10px;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 400;
    margin-top: 13px;
    font-family: 'Khand', sans-serif;
    letter-spacing: 1px;
}

footer .low_foot .ab_us {
    padding-left: 0;
}

footer .low_foot .what-we {
    margin-top: 12px;
}

footer .low_foot .inn_foot:nth-child(1),
footer .low_foot .inn_foot:nth-child(3) {
    width: 15%;
}

footer .low_foot .inn_foot.foot-1 {
    width: 45%;
    float: left;
    padding-left: 10px;
}

footer .low_foot .inn_foot.left_align {
    padding-left: 18px;
}

footer .low_foot .inn_foot.left-ali {
    padding-left: 20px;
}

footer .low_foot .inn_foot {
    width: 25%;
    float: left;
    margin-bottom: 10px;
}

footer .low_foot .inn_foot.foot-1 {
    position: relative;
}

footer .low_foot .inn_foot .inn {
    color: #fff;
    margin-bottom: 0;
    width: 48%;
    float: left;
    position: relative;
    margin-right: 2%;
    padding-right: 41px;
}

footer .low_foot .inn_foot .inn .phone-fot {
    font-size: 13px;
}

footer .low_foot .inn_foot .inn .map {
    margin-top: 0;
    margin-bottom: 10px;
}

footer .low_foot .inn_foot .inn .map a {
    margin-top: 10px;
    color: orange;
}

footer .low_foot .inn_foot .inn .map a:hover {
    color: #64b42b;
}

footer .low_foot .inn_foot .inn::before {
    content: '';
    position: absolute;
    top: 12px;
    height: 100%;
    width: 1px;
    left: 0;
    top: 0;
}

footer .low_foot .inn_foot .inn.ri::before {
    background: rgb(160, 160, 160);
    left: -50px;
}

footer .low_foot .inn_foot .inn.ri {
    margin-top: 26px;
}

footer .low_foot .inn_foot .inn.ri.hp::before {
    content: none;
}

footer .low_foot .inn_foot .inn.up {
    margin-top: 45px;
    margin-right: 0;
    width: 50%;
    padding-left: 0px;
}

footer .low_foot a {
    color: #fff;
    text-decoration: none;
}

footer .low_foot img {
    width: 180px;
}

footer .low_foot .social-media {
    margin: 9px 0 19px;
    color: #fff;
}

footer .low_foot .social-media i {
    padding: 5px;
    font-size: 16px;
    background: #fff;
    width: 23px;
    height: 23px;
    line-height: 15px;
    text-align: center;
    border-radius: 2px;
    color: #363435;
    margin-right: 0px;
    border: 1px solid #fff;
}

footer .low_foot ul {
    list-style: none;
}

footer .low_foot .inn_foot h4 {
    margin-bottom: 5px;
    color: #64b42b;
    font-weight: 500;
}

footer .low_foot .inn_foot h5 {
    color: #1e9acf;
    padding-bottom: 7px;
    font-size: 12px;
}

footer .low_foot .inn_foot p {
    line-height: 22px;
    font-size: 13px;
}

footer .low_foot .inn_foot ul li {
    padding-bottom: 13px;
    position: relative;
    margin-left: 0;
}

footer .low_foot .inn_foot-ryt {
    width: 40%;
    float: left;
}

footer .low_foot .inn_foot-ryt figure {
    padding-top: 10px;
    padding-bottom: 15px;
}

footer .low_foot .inn_foot-ryt figure img {
    width: 184px;
}

footer .low_foot .inn_foot-ryt figure img.tm {
    width: 50px;
    margin-bottom: 8px;
    margin-left: 6px;
}

footer .low_foot .in-foot-btm .inn-foot-l {
    width: 25%;
    float: left;
}

footer .low_foot .in-foot-btm .inn-foot-l span,
footer .low_foot .in-foot-btm .inn-foot-r span {
    color: #fff;
    float: left;
    line-height: 22px;
}

footer .low_foot .in-foot-btm .inn-foot-l span.phone,
footer .low_foot .in-foot-btm .inn-foot-r span.phone {
    float: left;
}

footer .in-foot-btm {
    width: 100%;
    float: left;
    padding: 50px 0 0;
}

footer .foot-bottom {
    width: 100%;
    float: left;
    background: #071440;
    padding: 13px 0;
    border-top: 1px solid #7c7c7c;
}

footer .foot-bottom .foot-cntr {
    width: 100%;
    display: table;
    margin: auto;
}

footer .foot-bottom .foot-cntr p {
    color: #fff;
    text-align: center;
    line-height: 20px;
    font-size: 10px;
}

footer .foot-bottom .foot-cntr span {
    color: #fff;
    display: table;
    margin: auto;
    padding-top: 20px;
    font-size: 12px;
    width: 45%;
    text-align: center;
}

footer .foot-bottom .foot-cntr .left {
    float: left;
}

footer .foot-bottom .foot-cntr .left img {
    width: 160px;
}

footer .foot-bottom .foot-cntr .social-media {
    float: right;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .container {
        width: 920px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .container {
        width: 740px;
    }
    .icos-sec .main .tec {
        margin: 0 10px;
    }
    .banner .content .main .para p {
        padding-right: 12px;
    }
    .banner .content .main .right {
        width: 55%;
    }
    .banner .content .main .right .panda img {
        width: 180px;
    }
    .banner .content .main .right .panda {
        right: 52%;
    }
    .partner-sec {
        height: auto;
        background-size: cover;
    }
    .partner-sec .main {
        margin-top: 20px;
        padding-bottom: 10px;
    }
    .partner-sec .main .lt h2 {
        font-size: 65px;
        line-height: 65px;
    }
    .partner-sec .main .lt h3 {
        line-height: 65px;
        font-size: 60px;
    }
    .highlight-sec ul li {
        margin-right: 20px;
    }
    .casestudy h2 {
        font-size: 61px;
    }
    .casestudy .casestudy-list {
        width: 89%;
        padding: 25px 24px;
    }
    .customer ul li img {
        width: 100%;
    }
    .customer ul li .img_dv {
        padding-right: 10px;
        padding-left: 0;
    }
    .our_client {
        padding: 12px 0px 33px;
    }
}

@media (max-width: 767px) {
    .container {
        width: 90%;
    }
    header .log {
        width: 125px;
    }
    .banner {
        background-size: cover;
        height: 100%;
    }
    .banner .content .main .para p {
        font-size: 15px;
        padding-right: 0;
    }
    .banner .content .main {
        flex-wrap: wrap;
    }
    .banner .content .main .head h1 {
        font-size: 30px;
    }
    .banner .content .main .left {
        width: 100%;
    }
    .banner .content .main .right {
        width: 100%;
    }
    .banner .content .main .right form {
        margin: 20px 0 0;
    }
    .banner .content .main .right .panda {
        display: none;
    }
    .icos-sec .main {
        flex-wrap: wrap;
        justify-content: flex-end;
    }
    .icos-sec .main .tec {
        width: 48%;
        margin: 0 0 15px;
    }
    .icos-sec .main .tec img {
        width: 90%;
    }
    .imp-sec .main .head h2 {
        font-size: 24px;
    }
    .popup .pop-in {
        width: 90%;
    }
    .port-sec .main {
        flex-wrap: wrap;
    }
    .port-sec .main .pp {
        margin-bottom: 60px;
    }
    .port-sec .main .pp:nth-child(2) {
        margin-bottom: 0;
    }
    .port-sec {
        padding: 30px 0;
    }
    .partner-sec {
        background-size: cover;
        height: auto;
    }
    .partner-sec .main {
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .partner-sec .main .lt h2 {
        font-size: 54px;
        line-height: 52px;
    }
    .partner-sec .main .lt h3 {
        font-size: 51px;
        line-height: 54px;
    }
    .inp .g-recaptcha {
        float: unset;
        margin-left: 12px;
    }
    .icos-sec {
        margin-top: 240px;
    }
    .banner .content {
        width: 100%;
    }
    .port-ban .desk {
        display: none;
    }
    .port-ban .mob {
        display: block;
    }
    .port-ban h1 {
        font-size: 40px;
        line-height: 40px;
        bottom: 0;
        top: unset;
    }
    .customer p {
        font-size: 14px;
        line-height: 20px;
    }
    .customer p span {
        display: unset;
    }
    .customer ul li p {
        font-size: 13px;
        text-align: center;
        padding-right: 0;
        line-height: 22px;
    }
    .customer ul li .cust_txt span {
        text-align: center;
        float: left;
    }
    .customer ul li {
        margin-top: 10px;
    }
    .customer ul li .cust_txt::before {
        content: none;
    }
    .customer .fa-angle-left {
        top: 102%;
        left: 43%;
    }
    .customer .fa-angle-right {
        top: 102%;
        right: 43%;
    }
    .casestudy .casestudy-list {
        width: 100%;
        margin: 0;
        padding: 25px 25px 0;
    }
    .casestudy .casestudy-list ul {
        flex-direction: column;
    }
    .casestudy .casestudy-list ul li {
        width: 100%;
        margin-top: 10px;
    }
    .casestudy .casestudy-list ul li .casestudy-bdr {
        height: auto;
    }
    .casestudy .casestudy-bg {
        height: auto;
        padding: 20px 0;
    }
    .casestudy .case-cntr {
        width: 100%;
    }
    .casestudy h2 {
        font-size: 45px;
    }
    .casestudy p {
        padding: 10px 0;
    }
    .customer ul li .img_dv {
        width: 100%;
        padding-bottom: 10px;
        height: auto;
    }
    .customer ul li .cust_txt {
        width: 100%;
    }
    .draggable {
        height: auto !important;
    }
    .customer .slick-slide {
        height: auto;
    }
    .customer ul li figure {
        padding-top: 10px;
    }
    .abouttech-sec .main .lt,
    .abouttech-sec .main .rt {
        width: 100%;
    }
    .both-sec {
        margin-top: 60px;
    }
    .our-prod-sec {
        padding: 20px 0;
    }
    .our-prod-sec .prod .inn {
        width: 100%;
    }
    .both-sec .main .lt {
        width: 100%;
    }
    .ex-space {
        height: 150px;
    }
    .get_in_touch h2 {
        font-size: 60px;
    }
    .get_in_touch h3 {
        font-size: 24px;
        line-height: 25px;
    }
    .get_in_touch .form_contact .form_main {
        width: 100%;
        margin-top: 3%;
        margin-left: 0;
        margin-right: 0;
    }
    .abouttech-sec .main {
        flex-direction: column;
    }
    .impl-sec {
        padding: 20px 0;
    }
    .impl-sec .head h2 {
        font-size: 40px;
    }
    .impl-sec .head p {
        font-size: 15px;
    }
    .impl-sec ul.imp-mag li {
        width: 49%;
    }
    .salseforce-us-imp .main-se {
        padding: 50px 0;
    }
    .salseforce-us-imp .main-se ul li {
        width: 48%;
        padding: 10px;
    }
    .highlight-sec ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    .highlight-sec ul li {
        width: 48%;
    }
    footer .foot-bottom .foot-cntr .left {
        width: 100%;
        text-align: center;
    }
    footer .low_foot img {
        width: 130px;
        margin-top: -20px;
    }
    footer .low_foot .inn_foot.foot-1::before {
        display: none;
    }
    footer .low_foot .inn_foot:nth-child(1),
    footer .low_foot .inn_foot:nth-child(3) {
        width: 50%;
    }
    footer .low_foot .social-media i {
        margin-right: 4px;
    }
    footer .main_up_foot .left {
        width: 100%;
    }
    footer .main_up_foot .right {
        width: 100%;
    }
    footer .low_foot .inn_foot {
        width: 50%;
    }
    footer .main_up_foot .social_media_icons {
        margin-bottom: 0;
        padding: 20px 0;
        text-align: left;
    }
    footer .low_foot .in-foot-btm .inn-foot-l {
        margin-bottom: 20px;
        width: 100%
    }
    footer .main_up_foot .chat_link {
        flex-flow: column;
    }
    footer .main_up_foot .chat_link li {
        width: 100%;
        margin: 3% 0;
    }
    footer .foot-bottom .foot-cntr {
        width: 100%;
    }
    footer .low_foot .inn_foot.left_align {
        width: 100%;
        padding-left: 0;
    }
    footer .low_foot .inn_foot.left-ali {
        width: 48%;
    }
    footer .low_foot .inn_foot.foot-1.last {
        padding-top: 50px;
    }
    footer .low_foot .inn_foot .inn {
        padding: 10px;
    }
    footer .low_foot .inn_foot.foot-1 {
        padding-left: 0;
        width: 50%;
    }
    footer .low_foot .inn_foot .inn {
        padding-left: 0;
        width: 100%;
    }
    footer .low_foot .inn_foot .inn.up {
        margin-top: 0;
        width: 100%;
    }
    footer .low_foot .inn_foot .inn::before {
        content: none;
    }
    footer .foot-bottom .foot-cntr span {
        width: 100%;
        text-align: justify;
    }
    footer .foot-bottom .foot-cntr .social-media {
        margin: 15px 0 4px;
        float: left;
        text-align: center;
        width: 100%;
    }
    footer .foot-bottom {
        padding-top: 30px;
    }
}