/* Basic css */

body {
    font-family: 'Maven Pro', sans-serif;
    overflow-x: hidden;
}

ul,
li {
    list-style: none;
    padding: 0;
    margin: 0;
}

a,
button,
input,
textarea {
    text-decoration: none !important;
    outline: none !important;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #fff;
}

::-webkit-scrollbar {
    width: 5px;
    background-color: #fff;
}

::-webkit-scrollbar-thumb {
    background-color: #999;
    border-radius: 50px;
}

.flex {
    display: flex;
    align-items: center;
    -ms-justify-content: center;
    justify-content: center;
    flex-direction: column;
    flex-wrap: wrap;
}

.animated {
    opacity: 0;
}

.visible {
    opacity: 1 !important;
}

div#preload {
    display: none;
}

/* 2. Navigation Css */


/* Navbar Css */

.navbar {
    border: none;
    transition: 0.4s all ease;
    background: transparent;
    border: none;
    color: #4e4e4e;
    font-size: 15px;
    border: none;
    margin: 0px auto;
    padding: 30px 0px;
}

.navbar * {
    transition: 0.4s all ease;
}

.navbar-brand {
    background-image: url('../images/logo_white.svg');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 150px;
}

.nav>li>a:focus,
.nav>li>a:hover {
    text-decoration: none;
    background-color: transparent;
}

.toggle-menu li a {
    position: relative;
}

.toggle-menu li a {
    position: relative;
}

.navbar-default .navbar-nav>li>a {
    color: #fff;
    font-size: 15px;
    letter-spacing: 1px;
}

.navbar-default .navbar-nav>li>a:hover {
    color: #50c68c;
}

.navbar-default .navbar-nav>.active>a,
.navbar-default .navbar-nav>.active>a:focus,
.navbar-default .navbar-nav>.active>a:hover {
    background-color: transparent;
    color: #50c68c;

}

.navbar-default .navbar-toggle {
    border-color: #000;
}

.navbar-default .navbar-toggle .icon-bar {
    background-color: #000;
}

.navbar-default .navbar-toggle:focus,
.navbar-default .navbar-toggle:hover {
    background-color: transparent;
}

.nav-white {
    background-color: #fff;
    box-shadow: 0 2px 3px 0px rgba(0, 0, 0, 0.16);
    padding: 15px 0px;
}

.nav-white .navbar-brand {
    background-image: url('../images/logo_black.svg') !important;
}

.nav-white .navbar-nav>li>a {
    color: #101626;
    font-weight: 600;
    letter-spacing: 1px;
}

.nav-white .navbar-nav>.active>a,
.nav-white .navbar-nav>.active>a:focus,
.nav-white .navbar-nav>.active>a:hover {
    color: #50c68c;
}

.navbar-default .navbar-nav li:active {
    color: #50c68c !important;
}

.nav>li>a {
    padding-left: 50px;
    padding-right: 0px;
}

.navbar-brand {
    opacity: 0;
    transform: translate(0px, -15px);
    display: flex;
    align-items: center;
}


.navbar-brand.animate {
    opacity: 1 !important;
    -webkit-animation: logo-anim 1s forwards;
    animation: logo-anim 1s forwards;
}

.navbar-nav li.animate {
    -webkit-animation: nav-anim 1s forwards;
    animation: nav-anim 1s forwards;
}

.navbar-nav li {
    transform: translate(0px, -65px);
    opacity: 0;
}

.navbar-nav li.animate:nth-of-type(1) {
    -webkit-animation-delay: .2s;
    animation-delay: .2s;
    opacity: 1 !important;
}

.navbar-nav li.animate:nth-of-type(2) {
    -webkit-animation-delay: .3s;
    animation-delay: .3s;
    opacity: 1 !important;
}

.navbar-nav li:nth-of-type(3) {
    -webkit-animation-delay: .4s;
    animation-delay: .4s;
    opacity: 1 !important;
}

.navbar-nav li:nth-of-type(4) {
    -webkit-animation-delay: .5s;
    animation-delay: .5s;
    opacity: 1 !important;
}

.navbar-nav li:nth-of-type(5) {
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
    opacity: 1 !important;
}

.navbar-nav li:nth-of-type(6) {
    -webkit-animation-delay: .7s;
    animation-delay: .7s;
    opacity: 1 !important;
}

.navbar-nav li:nth-of-type(7) {
    -webkit-animation-delay: .8s;
    animation-delay: .8s;
    opacity: 1 !important;
}

@-webkit-keyframes nav-anim {
    100% {
        transform: translate(0, 0);
    }
}

@-webkit-keyframes logo-anim {
    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}

.background-svg {
    position: relative;
}

.svg-box {
    position: absolute;
    overflow: visible;
    width: 100vw;
    height: 50vh;
    z-index: -99;
    opacity: 0;
    transform: scale(0.5);
    transform-origin: top left;
    transition: 0.5s all ease-in-out;
}

.svg-box.animate {
    opacity: 1;
    transform: scale(1);
}

.d-white {
    opacity: 0;
}

.d-white.animate {
    opacity: 1;
}

.d-white .rect {
    height: 0;
    transition: height .5s ease-out;
    overflow: hidden;
}

.d-white.animate .rect {
    opacity: 1;
    height: 500px;
    transition: max-height .5s ease-in;
}

.landing-home {
    color: #fff;

}

.landing-home h1 {
    margin: 8px 0;
    font-size: 43px;
    font-weight: 500;
    color: #fff;
    transition: all .5s ease-in;
}

.landing-home h6 {
    font-size: 18px;
    letter-spacing: 2px;
    transition: all .5s ease-in;
}

.landing-home p {
    font-size: 18px;
    color: #fff;
    letter-spacing: 1px;
    line-height: 35px;
    margin: 60px 0px 50px;
}

.landing-home h1 span {
    color: #21b2eb;
}

.tlt {
    transition: all .5s ease-in-out;

}

.color-21b2eb {
    background: #21b2eb !important;
}

.bg-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;

}

.bg-container {
    width: 50%;
}

.bg-image-container {
    width: 50%;
}

.bg-image-container svg {
    height: 650px;
    transform: translateY(10%);
    overflow: visible;
}

.form-wapper1 {
    width: 180px !important;

}

.form-wapper .form-btn1 {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #21b2eb;
    border: none;
    margin-left: 5px;
    transition: 0.6s all ease-in-out;
}



.form-wapper input {
    width: 75%;
    border: none;
    background: transparent;
    padding-left: 20px;
}

.form-wapper input::-webkit-input-placeholder {
    font-size: 16px;
    color: #fff;
    letter-spacing: 1px;
}

.form-wapper input::-moz-placeholder {
    font-size: 16px;
    color: #fff;
    letter-spacing: 1px;
}

.form-wapper input:-ms-input-placeholder {
    font-size: 16px;
    color: #fff;
    letter-spacing: 1px;
}

.form-wapper input::-ms-input-placeholder {
    font-size: 16px;
    color: #fff;
    letter-spacing: 1px;
}

.form-wapper input::placeholder {
    font-size: 16px;
    color: #fff;
    letter-spacing: 1px;
}


/* ---------------- svg animation css ------------ */

.round {
    -webkit-animation: magic 3s infinite linear;
    animation: magic 3s infinite linear;
    transform-box: fill-box;
    transform-origin: center;
    transition: 0.6s all ease;
}

@-webkit-keyframes magic {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    25% {
        transform: scale(1);
        opacity: 0.75;
    }

    50% {
        transform: scale(2);
        opacity: 0.25;
    }

    100% {
        transform: scale(3);
        opacity: 0;
    }
}

@keyframes magic {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    25% {
        transform: scale(1);
        opacity: 0.75;
    }

    50% {
        transform: scale(2);
        opacity: 0.25;
    }

    100% {
        transform: scale(3);
        opacity: 0;
    }
}

.right-hand {
    -webkit-animation: roundanimate1 10s infinite linear;
    animation: roundanimate1 10s infinite linear;
    transition: 0.6s all ease;
    transform-box: fill-box;
    transform-origin: center;
    transition: transform 1s linear;
}

@-webkit-keyframes roundanimate1 {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(10deg);
    }

    50% {
        transform: rotate(0deg);
    }

    75% {
        transform: rotate(-8deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

@keyframes roundanimate1 {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(10deg);
    }

    50% {
        transform: rotate(0deg);
    }

    75% {
        transform: rotate(-8deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.left-hand {
    -webkit-animation: roundanimate2 10s infinite linear;
    animation: roundanimate2 10s infinite linear;
    transition: 0.6s all ease;
    transform-box: fill-box;
    transform-origin: center;
    transition: transform 1s linear;
}

@-webkit-keyframes roundanimate2 {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(10deg);
    }

    50% {
        transform: rotate(0deg);
    }

    75% {
        transform: rotate(-8deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

@keyframes roundanimate2 {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(10deg);
    }

    50% {
        transform: rotate(0deg);
    }

    75% {
        transform: rotate(-8deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.em-box {
    -webkit-animation: icon3 8s ease infinite;
    animation: icon3 10s ease infinite;
    transform-box: fill-box;
    transform-origin: center;
}

@-webkit-keyframes icon3 {
    0% {
        transform: translate(0px, 0px) rotate(0deg);
    }

    25% {
        transform: translate(-15px, 10px) rotate(90deg);
    }

    50% {
        transform: translate(-10px, 20px) rotate(180deg);
    }

    75% {
        transform: translate(-15px, 10px) rotate(270deg);
    }

    100% {
        transform: translate(0px, 0px) rotate(360deg);
    }
}

@keyframes icon3 {
    0% {
        transform: translate(0px, 0px) rotate(0deg);
    }

    25% {
        transform: translate(-15px, 10px) rotate(90deg);
    }

    50% {
        transform: translate(-10px, 20px) rotate(180deg);
    }

    75% {
        transform: translate(-15px, 10px) rotate(270deg);
    }

    100% {
        transform: translate(0px, 0px) rotate(360deg);
    }
}

.ring {
    -webkit-animation: ring 10s ease infinite;
    animation: ring 10s ease infinite;
    transform-box: fill-box;
    transform-origin: center;
}

@-webkit-keyframes ring {
    0% {
        transform: translate(0px, 0px) rotate(90deg);
    }

    50% {
        transform: translate(10px, -20px) rotate(360deg);
    }

    100% {
        transform: translate(0px, 0px) rotate(90deg);
    }
}

@keyframes ring {
    0% {
        transform: translate(0px, 0px) rotate(90deg);
    }

    50% {
        transform: translate(10px, -20px) rotate(360deg);
    }

    100% {
        transform: translate(0px, 0px) rotate(90deg);
    }
}

.ring1 {
    -webkit-animation: ring1 10s ease infinite;
    animation: ring1 10s ease infinite;
    transform-box: fill-box;
    transform-origin: center;
}

@-webkit-keyframes ring1 {
    0% {
        transform: translate(0px, 0px) rotate(90deg);
    }

    50% {
        transform: translate(-10px, 20px) rotate(360deg);
    }

    100% {
        transform: translate(0px, 0px) rotate(90deg);
    }
}

@keyframes ring1 {
    0% {
        transform: translate(0px, 0px) rotate(90deg);
    }

    50% {
        transform: translate(-10px, 20px) rotate(360deg);
    }

    100% {
        transform: translate(0px, 0px) rotate(90deg);
    }
}

.main-wrapper {
    background: #fff;
    margin: 0 15%;
    border-radius: 11px 11px 0px 0px;
    position: relative;
    display: flex;
}

.main-wrapper:before {
    content: '';
    box-shadow: 0px 77px 90px 0px rgba(0, 0, 0, 0.07);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 480px;
    z-index: -1;
}

.pb-100 {
    padding: 70px 0px 0px;
}

.pb-30 {
    padding-bottom: 30px;
}

.mt-100 {
    margin-top: 100px;
}

.heading {
    font-size: 22px;
    color: #0395d0;
    font-weight: 500;
    padding-bottom: 50px;
    margin: 0;
}

.about-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.about-left {
    width: 42%;
}

.about-right {
    width: 52%;
}

.about-inner .about-head {
    font-size: 28px;
    color: #101626;
    line-height: 45px;
    text-align: justify;
}

.about-inner .about-text {
    font-size: 16px;
    color: #5b5e65;
    margin: 0;
    line-height: 35px;
    text-align: justify;
    letter-spacing: 0.5px;
}


/*Service Style*/

.service-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 130px;
    margin-top: 80px;
    flex-wrap: wrap;
}

.service-inner li {
    width: 50%;
    display: flex;
    flex-direction: column;
    height: 500px;
    padding: 3%;
    border-right: 1px solid #dcdcdc;
    border-bottom: 1px solid #dcdcdc;
}

.service-inner li:nth-child(even) {
    border-right: none;
}

.service-inner li:nth-child(3),
.service-inner li:nth-child(4) {
    border-bottom: none;
}

.serv-bold {
    font-size: 26px;
    letter-spacing: 1px;
    color: #101626;
    margin: 30px 0px;
    line-height: 45px;
    text-align: center;
    height: 80px;
}

.serv-img {
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    -ms-justify-content: center;
    justify-content: center;
    position: relative;
    z-index: 100;
    margin: 0px auto;
}

.serv-img svg {
    height: 100%;
    width: 100%;
    z-index: 100;
    position: relative;
    overflow: visible;
}

.serv-img img {
    max-width: 100%;
    max-height: 100%;
}

.serv-text {
    font-size: 16px;
    color: #5b5e65;
    margin: 0;
    line-height: 35px;
    text-align: center;
    height: auto;
}

.portfolio-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.port-left {
    width: 30%;
}

.port-right {
    width: 70%;
}

.port-left h2 {
    font-size: 30px;
    color: #101626;
    letter-spacing: 1px;
    margin: 0;
}

.port-right p {
    font-size: 16px;
    color: #6d6d6d;
    line-height: 30px;
    font-weight: 500;
    margin: 0;
}

.port-tab-left {
    width: 25%;
}

.port-tab-right {
    width: 65%;
}

.nav-tabs>li>a {
    line-height: 1.42857143;
    border: none;
    border-radius: 5px;
    background: #f7f8fa;
    margin-bottom: 10px;
    padding: 15px;
    text-align: center;
    font-size: 22px;
    color: #010101;
    transition: all .5s ease-in-out;
    font-weight: 500;
    letter-spacing: 1px;
}

.tabs-left {
    border-bottom: none;
}

.tabs-left>li {
    float: none;
    margin: 0px;
}

.tabs-left>li.active>a,
.tabs-left>li.active>a:hover,
.tabs-left>li.active>a:focus {
    background: #16214e;
    border: none;
    color: #fff;
}

.nav-tabs>li>a:hover {
    background: #16214e;
    border: none;
    color: #fff;
}

.tab-inner span {
    font-size: 16px;
    color: #6d6d6d;
}

.tab-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.tab-detail {
    width: 49%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.tab-detail span {
    width: 58%;
}

.logo-img {
    width: 40%;
}

.search-tag {
    padding: 100px 0px;
}

.search-tag li {
    display: inline-block;
    margin-left: 20px;
}

.search-tag li a {
    height: 46px;
    border-radius: 23px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 25px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: default;
}

.marquee-main {
    background: #161f35;
    padding: 50px 0px 30px;
}

.marquee {
    overflow: hidden;

}

.search-tag li a.orange {
    background: rgba(253, 182, 30, 0.2);
    color: rgba(253, 182, 30, 1);
}

.search-tag li a.blue {
    background: rgba(30, 173, 236, 0.2);
    color: rgba(30, 173, 236, 1);
}

.search-tag li a.green {
    background: rgba(135, 199, 50, 0.2);
    color: rgba(135, 199, 50, 1);
}

.search-tag li a.pink {
    background: rgba(218, 49, 164, 0.2);
    color: rgba(218, 49, 164, 1);
}

.search-tag li a.purple {
    background: rgba(198, 119, 255, 0.2);
    color: rgba(198, 119, 255, 1);
}

.search-tag li a.white {
    background: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 1);
}

.search-tag li a.d-green {
    background: rgba(41, 182, 158, 0.2);
    color: rgba(41, 182, 158, 1);
}

.product-main-container {
    background: url(../images/product-bg.png);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% 100%;
}

.heading-bg {
    color: #fff;
    font-size: 21px;
    letter-spacing: 1px;
    text-align: center;
    max-width: 600px;
    margin: 0px auto 0;
}

.heading-img {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transform: translateY(-100px);
}

.product-main-container .heading {
    color: #fff;
}

.product-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.product-list li {
    width: 363px;
    height: 343px;
    border-radius: 10px;
    background: #fff;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
    position: relative;
    top: 0;
    transition: all 0.5s;
}

.product-list li:hover {
    top: -15px;
}

.product-list li h5 {
    color: #000;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 20px;
}

.text-main-container {
    background: #161f35;
    padding: 0px 0px 50px;
}

.test-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.test-left,
.test-right {
    width: 48%;
}

.slick-list {}

.vertical-slider {
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden !important;
}

.item {
    height: 210px !important;
    border-radius: 7px;
    padding: 20px 20px 20px 50px;
    background: linear-gradient(rgba(255, 255, 255, 0.02), rgba(255, 255, 255, .04));
    margin: 15px 0px;
    border: none;
    width: 490px !important;
    float: right !important;
    transition: all 0.5s ease-in-out;
}

.item.slick-current {
    background: #fff;
}

.item:focus {
    outline: none;
}

.item .snip1192 {
    opacity: 0;
    transition: all 0.6s ease-in-out;
}

.item.slick-current .snip1192 {
    opacity: 1;
    transition: all 0.6s ease-in-out;
}

.author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 15px;
}

.author-right {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 85%;
}

.a-img {
    width: 50px;
    height: 50px;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    border-radius: 50%;
}

.play i {
    color: #161f35;
    font-size: 30px;
    background: #fff;
    border-radius: 50%;
    height: 40px;
    width: 40px;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #161f35;
}

.snip1192 span {
    font-size: 16px;
    color: #a5a5a7;
    line-height: 30px;
    letter-spacing: 1px;
}

.author-detail {
    text-align: right;
}

.author-detail h5 {
    margin: 0;
    font-size: 18px;
    color: #181f34;
    font-weight: 600;
}

.author-detail span {
    margin: 0;
    font-size: 14px;
    color: #70788b;
    font-weight: 600;
}

.why-slider-left {
    padding: 0;
    background-color: transparent;
    border: none;
    top: 48%;
    position: absolute;
    left: 10px;
    z-index: 1;
}

.why-slider-right {
    padding: 0;
    background-color: transparent;
    border: none;
    top: 55%;
    position: absolute;
    left: 10px;
}

.test-left {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
}

.heading-test {
    font-size: 22px;
    color: #ebaf28;
    font-weight: 500;
    margin: 0;
}

.test-left span {
    font-size: 30px;
    color: #fff;
    font-weight: 500;
    max-width: 420px;
    line-height: 40px;
    margin: 30px 0 20px;
}

.test-left p {
    max-width: 440px;
    font-size: 16px;
    color: #a5a5a7;
    font-weight: 500;
    line-height: 30px;
    margin: 0;
}

.content-section {
    padding: 100px 0px;
    background: #f4f5f9;
}

.gray {
    color: #141b2d;
    font-size: 30px;
    margin: 0 0 35px;
    font-weight: 500;
}

.team .heading {
    padding-bottom: 30px;
    letter-spacing: 1px;
}

.team-member {
    margin: 15px 0;
    padding: 0;
}

.team-member figure {
    position: relative;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

.team-member figure img {
    min-width: 100%;
}

.team-member h4 {
    margin: 25px 0 10px;
    padding: 0;
    color: #000000;
    font-weight: 600;
    letter-spacing: 1px;
}

.team-member p {
    margin: 0;
    color: #6a6a6a;
    font-size: 14px;
}

.team-member figure img {
    transform: scale(1) rotate(0) translateY(0);
    transition: all 0.4s ease-in-out;
    cursor: pointer;
}

.team-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.team-left {
    width: calc(100% - 68%);
    display: flex;
    flex-direction: column;
}

.team-right {
    width: 65%;
}

.team-right ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 100px;
}

.team-right ul li {
    width: 354px;
    height: 380px;
    border-radius: 9px;
    background: #fff;
    display: flex;
    justify-content: center;
    padding: 20px;
    flex-direction: column;
    box-shadow: 0 13px 90px 0 rgba(0, 0, 0, 0.07);
    transition: all 0.4s ease-in-out;
    cursor: pointer;
    position: relative;
    top: 0;
    border: 2px solid #fff;
}

.team-right ul li:hover {
    box-shadow: none !important;
    border: 2px solid #f6f6f6;
}

.team-right ul li img {
    margin-bottom: 20px;
}

.team-right ul li h5 {
    color: #000;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
}

.team-right ul li p {
    color: #a5a5a7;
    font-size: 13px;
    letter-spacing: 1px;
    text-align: left;
}

.team-member figcaption p {
    font-size: 16px;
}

.team-member figcaption ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.team-member figcaption ul {
    visibility: hidden;
    transition: all 0.1s ease-in-out;
}

.team-member figure:hover figcaption ul {
    visibility: visible;
}

.team-member figcaption ul li {
    display: inline-block;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    float: left;
    margin: 0 5px;
    transition: all 0.6s ease-in-out;
}

.team-member figcaption ul li:hover {}

.team-member figcaption ul li .con-btn {
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: auto;
    border-radius: 30px;
    color: rgba(255, 255, 255, 1);
    transition: all 0.6s ease-in-out;
    background: transparent;
    border: 1px solid #fff;
}

.team-member figcaption ul li .con-btn:hover {
    color: rgba(255, 255, 255, 1) !important;
    box-shadow: 0 4px 11px 0 rgba(255, 255, 255, 0.4);
}

.team-member figcaption ul li a .fa {
    color: rgba(255, 255, 255, 1);
    transition: all 0.6s ease-in-out;
}

.team-member figcaption ul li a .fa:hover {
    color: rgba(255, 255, 255, 1);
}

.team-member figcaption {
    color: transparent;
    background-color: transparent;
    position: absolute;
    z-index: 996;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    overflow: hidden;
    visibility: hidden;
    transition: all 0.6s ease-in-out;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0 0 10px 10px;
}

.team-member figure:hover figcaption {
    visibility: visible;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 0 0 10px 10px;
    height: 20%;
    transition: all 0.6s ease-in-out;
}

.heading-team {
    font-size: 22px;
    color: #bd56a8;
    font-weight: 500;
    margin: 0;
}

.team-left span {
    font-size: 30px;
    color: #141b2d;
    font-weight: 500;
    max-width: 420px;
    line-height: 40px;
    margin: 30px 0 30px;
}

.form-wapper {
    width: 165px;
    height: 45px;
    background: #efeff1;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 23px;
}



.form-wapper .form-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #bd56a9;
    border: none;
    transition: 0.6s all ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-wapper label {
    font-size: 15px;
    color: #000;
    letter-spacing: 1px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    width: 100%;
    padding: 0 5px 0 20px;
    margin: 0;
    cursor: pointer;
}

#blog {
    background: #161f35;
    background: url(../images/blog-bg.png);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 100% 100%;
}

.blog-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    color: #fff;
    padding: 100px 0px 80px;
}

.d-text {
    margin-top: 80px;
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 1px;
}

.blog-head-left {
    font-size: 30px;
    color: #fff;
    font-weight: 500;
    line-height: 40px;
    margin: 0;
}

#blog .form-wapper {
    width: 155px;
    height: 45px;
    background: #efeff1;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 23px;
}

#blog .form-wapper .form-btn:hover {
    box-shadow: 0px 4px 11px 0px rgba(117, 183, 46, 0.5);
}

#blog .form-wapper .form-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #75b72e;
    border: none;
    transition: 0.6s all ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
}

#blog .form-wapper .form-text {
    font-size: 16px;
    color: #000;
    letter-spacing: 1px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    width: 100%;
    padding: 0 5px 0 20px;
    margin: 0;
    cursor: pointer;
}

.clash-card-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.clash-card {
    width: 365px;
    height: 230px;
    border-radius: 10px;
    background: #fff;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    position: relative;
    top: 0;
    transition: all 0.4s ease-in-out;
}

.clash-card:hover {
    top: -15px;
}

.clash-up {
    height: 175px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
}

.clash-card__image {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.clash-card__level {
    margin-left: 15px;
    font-size: 20px;
    letter-spacing: 1px;
    font-weight: 600;
    color: #161f35;
}

.clash-card__unit-description {
    font-size: 15px;
    color: #4b5262;
    line-height: 25px;
    font-weight: 500;
}

.clash-card-down {
    height: 56px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ebebeb;
    border-radius: 0 0 10px 10px;
    cursor: pointer;
}

.stat-value {
    font-size: 16px;
    color: #161f35;
    font-weight: 600;
    margin-left: 5px;
}

.c-orange {
    color: #f1af1c;
}

.c-sky {
    color: #009ad5;
}

.img-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 100px;
}

.img-list div {
    width: 208px;
    height: 208px;
    border-radius: 10px;
    background-position: center !important;
    background-repeat: no-repeat !important;
    cursor: pointer;
    transform: scale(1, 1);
    transition: transform 0.4s;
}

.img-list div:hover {
    transform: scale(1.05, 1.05);
}

.con-list {
    height: 305px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    padding: 60px;
    box-shadow: 0 13px 90px 0px rgba(0, 0, 0, 0.09);
    transition: all 0.6s ease-in-out;
}

.con-head {
    font-size: 22px;
    color: #7ab73a;
    font-weight: 600;
    letter-spacing: 1px;
}

.con-text {
    font-size: 17px;
    color: #141b2d;
    font-weight: 600;
}

.con-btn {
    height: 44px;
    width: 155px;
    background: #000;
    color: #fff;
    border-radius: 22px;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.6s ease-in-out;
}

.con-btn:hover,
.con-btn:focus {
    box-shadow: 0 4px 20px 0px rgba(0, 0, 0, 0.4);
    color: #fff;
}

.foot-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin: 30px 0px;
}

.foot-inner {
    width: 150px;
}

.f_m {
    font-weight: 600;
    color: #161f35;
    font-size: 15px;
    letter-spacing: 1px;
    transition: all 0.6s ease-in-out;
}

.f_d_list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.f_d_list .fa {
    color: #161f35;
    margin: 0 0 0 10px;
    font-size: 25px;
    height: 35px;
    width: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.6s ease-in-out;
}

.f_d_list .fa:hover {
    color: #75b72e;
}

.bg-inner {
    opacity: 0;
    transition: all 0.6s ease-in-out;
}


.bg-inner.animate {
    opacity: 1;
}

.serv-ring1,
.late1 {
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
}

.serv1-8,
.cube,
.round1,
.serv-ring {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

.serv-mob,
.web,
.late,
.serv3-2,
.mob {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}


/*animation */

.animatable {
    /* initially hide animatable objects */
    visibility: hidden;
    /* initially pause animatable objects their animations */
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}


/* show objects being animated */

.animated {
    visibility: visible;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-play-state: running;
    animation-play-state: running;
}


/* CSS Animations (extracted from http://glifo.uiparade.com/) */

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    20% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    60% {
        opacity: 0;
    }

    20% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes bounceInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
    }

    60% {
        -webkit-transform: translateX(20px);
    }

    80% {
        -webkit-transform: translateX(-5px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
    }
}

@keyframes bounceInLeft {
    0% {
        opacity: 0;
        transform: translateX(-2000px);
    }

    60% {
        transform: translateX(20px);
    }

    80% {
        transform: translateX(-5px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@-webkit-keyframes bounceInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
    }

    60% {
        -webkit-transform: translateX(-20px);
    }

    80% {
        -webkit-transform: translateX(5px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
    }
}

@keyframes bounceInRight {
    0% {
        opacity: 0;
        transform: translateX(2000px);
    }

    60% {
        transform: translateX(-20px);
    }

    80% {
        transform: translateX(5px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@-webkit-keyframes bounceIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(.3);
    }

    50% {
        -webkit-transform: scale(1.05);
    }

    70% {
        -webkit-transform: scale(.9);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(.3);
    }

    50% {
        transform: scale(1.05);
    }

    70% {
        transform: scale(.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@-webkit-keyframes moveUp {
    0% {
        opacity: 1;
        -webkit-transform: translateY(40px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@keyframes moveUp {
    0% {
        opacity: 1;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@-webkit-keyframes fadeBgColor {
    0% {
        background: none;
    }

    70% {
        background: none;
    }

    100% {
        background: #464646;
    }
}

@keyframes fadeBgColor {
    0% {
        background: none;
    }

    70% {
        background: none;
    }

    100% {
        background: #464646;
    }
}

.animated.animationDelay {
    animation-delay: .4s;
    -webkit-animation-delay: .4s;
}

.animated.bounceIn {
    -webkit-animation-name: bounceIn;
    animation-name: bounceIn;
}

.animated.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

.animated.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}


/* blog page css */

.blue {
    background: rgba(30, 173, 236, 0.1);
    color: rgba(30, 173, 236, 1);
}

.red {
    background: rgba(245, 65, 113, 0.1);
    color: rgba(245, 65, 113, 1);
}

.green {
    background: rgba(135, 199, 50, 0.1);
    color: rgba(135, 199, 50, 1);
}

.pink {
    background: rgba(218, 49, 164, 0.1);
    color: rgba(218, 49, 164, 1);
}

.purple {
    background: rgba(198, 119, 255, 0.1);
    color: rgba(198, 119, 255, 1);
}

.d-green {
    background: rgba(41, 182, 158, 0.1);
    color: rgba(41, 182, 158, 1);
}

.blue:hover {
    background: rgba(30, 173, 236, 0.1);
    color: rgba(30, 173, 236, 1);
}

.red:hover {
    background: rgba(245, 65, 113, 0.1);
    color: rgba(245, 65, 113, 1);
}

.green:hover {
    background: rgba(135, 199, 50, 0.1);
    color: rgba(135, 199, 50, 1);
}

.pink:hover {
    background: rgba(218, 49, 164, 0.1);
    color: rgba(218, 49, 164, 1);
}

.purple:hover {
    background: rgba(198, 119, 255, 0.1);
    color: rgba(198, 119, 255, 1);
}

.d-green:hover {
    background: rgba(41, 182, 158, 0.1);
    color: rgba(41, 182, 158, 1);
}

.contact-inner {
    height: 100vh;
    display: flex;
    flex-wrap: wrap;

}

.contact-head {
    color: #101626;
    font-size: 40px;
    font-weight: 700;
    padding: 0px 0px 40px;
}

#contact-form p {
    color: #424753;
    font-size: 18px;
    max-width: 400px;
    padding-bottom: 40px;
    line-height: 30px;
}

.contact-left {
    width: calc(100% - 850px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-left .edit-list {
    border-bottom: none;
}

.log-overlay {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(16, 22, 38, 0.8);
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}


.contact-left form {
    margin: 0px auto;
    max-width: 680px;
}

.contact-right {
    background-color: #b6701e;
    background-image: url(../images/contact-background.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 850px;
    position: relative;
}

.text-white {
    color: #fff;
}

.btn-sub {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-submit {
    width: 241px;
    height: 55px;
    border: none;
    background: #2e393d;
    border-radius: 4px;
    font-size: 18px;
    color: #fff;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 250ms ease;
}


.btn-submit:hover,
.btn-submit:focus {
    box-shadow: 0px 11px 29px 0px rgba(46, 57, 61, 0.3);
    color: #fff;
}

.modal-dialog {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
}

.modal-body {
    padding: 0;
}

.close {
    float: right;
    font-size: 21px;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0px;
    opacity: 1;
    transition: all .5s ease-in-out;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.close img {
    transform: rotate(180deg);
    transition: all .5s ease-in-out;
}

.modal-header:hover .close img {
    transform: rotate(360deg);
}

.close:hover {
    opacity: 1;
}

.modal-header {
    border-bottom: 0px;
    position: absolute;
    color: #fff;
    background: rgba(255, 255, 255, 0.4);
    z-index: 1;
    top: 50px;
    left: 50px;
    opacity: 1;
    cursor: pointer;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-open .modal {
    overflow: hidden;
}

.modal-content {
    height: 100%;
    border-radius: 0;
    overflow: hidden;
    border: none;
}

.popover {
    color: #270;
    background: transparent;
    border: 1px solid #270;
    box-shadow: none;

}

.popover.right>.arrow {
    top: 50%;
    left: -11px;
    margin-top: -11px;
    border-right-color: #999;
    border-right-color: #270;
    border-left-width: 0;
}

form input,
form textarea {
    width: 100% !important;
    padding: 20px;
    display: inline-block;
    height: 53px;
    border: 1px solid #e3e3e3;
    font-size: 15px;
    color: #444444;
    border-radius: 6px;
}

form textarea {
    height: 138px;
    resize: none;
}

#contact-form input::-webkit-input-placeholder,
#contact-form textarea::-webkit-input-placeholder {
    font-size: 15px;
    color: #d1d1d1;
}

#contact-form input::-moz-placeholder,
#contact-form textarea::-moz-placeholder {
    font-size: 15px;
    color: #d1d1d1;
}

#contact-form input:-ms-input-placeholder,
#contact-form textarea:-ms-input-placeholder {
    font-size: 15px;
    color: #d1d1d1;
}

#contact-form input::-ms-input-placeholder,
#contact-form textarea::-ms-input-placeholder {
    font-size: 15px;
    color: #d1d1d1;
}

#contact-form input::placeholder,
#contact-form textarea::placeholder {
    font-size: 15px;
    color: #d1d1d1;
}

form label {
    display: inline-block;
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #101626;
    letter-spacing: 0.5px;
}

.edit-list li {
    margin-bottom: 30px;
}

.con-logo {
    background: url('../images/logo_white.svg');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 300px;
    height: 100%;
}

#team {
    position: relative;
}

#team:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    height: 33%;
    background: #161f35;
    width: 100%;
}

.team-pic {
    position: relative;
    background-position: center !important;
    height: 329px;
    border-radius: 10px;
    transition: all 0.6s ease-in-out;
    cursor: pointer;
}

.team-pic1 {
    background: url(../images/team/gaurav-makhecha.png) no-repeat;
}

.team-pic1:hover {
    background: url(../images/team/gaurav-makhecha-funny.png) no-repeat;
}

.team-pic2 {
    background: url(../images/team/hiren-keraliya.png) no-repeat;
}

.team-pic2:hover {
    background: url(../images/team/hiren-keraliya-funny.png) no-repeat;
}

.team-pic3 {
    background: url(../images/team/rajan-parmar.jpg) no-repeat;
}

.team-pic3:hover {
    background: url(../images/team/rajan-parmar-funney.jpg) no-repeat;
}

.team-pic4 {
    background: url(../images/team/maybe-you.png) no-repeat;
}


.team-pic:hover {
    border-radius: 10px;
}

@media(max-width:1600px) {

    .contact-right,
    .contact-left {
        width: 50%;
    }

    .contact-left {
        padding: 30px;
    }
}

@media(max-width:1366px) {
    .main-wrapper {
        margin-top: 0px;

    }

    .pb-100 {
        padding: 40px 20px 0px;
    }

    .contact-head {
        font-size: 30px;
        padding: 0px 0px 20px;
        margin: 0;
    }

    #contact-form p {
        font-size: 16px;
        padding-bottom: 20px;
        line-height: 25px;
    }

    form label {

        font-size: 14px;

        margin-bottom: 10px;
    }

    .edit-list li {
        margin-bottom: 15px;
    }

    form textarea {
        height: auto;
    }

    .contact-left {
        padding: 30px;
    }

    .btn-submit {
        width: auto;
        height: auto;
        padding: 10px 40px;
    }

    .tabs-left>li>a {
        font-size: 16px;
        padding: 10px;
    }

    .port-tab-left {
        width: 30%;
    }

    .port-right {
        width: 67%;
    }

    .port-left {
        width: 30%;
    }

    .product-list {
        justify-content: center;
    }

    .product-list li {
        margin: 10px;
    }

    .team-right ul {
        justify-content: center;
    }

    .team-right ul li {
        width: 310px;
        margin: 10px;
        height: auto;
    }
}

@media (max-width:1200px) {

    .clash-card-main,
    .img-list {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }

    .clash-card-main .clash-card,
    .img-list div {
        margin: 20px;
    }
}

@media (max-width:1024px) {
    .bg-inner {
        height: 100vh;
    }

    .svg-box {
        background: #161f35;
        height: 100vh;
    }

    .svg-box svg {
        display: none;
    }

    .nav>li>a {
        padding-left: 20px;
        padding-right: 0px;
    }

    .main-wrapper {
        margin: 0 5%;
    }

    .service-inner {
        margin-bottom: 60px;
        margin-top: 40px;
    }

    .portfolio-inner {
        margin-bottom: 40px;
    }

    .search-tag {
        padding: 50px 0px;
    }

    .content-section {
        padding: 50px 0px;
    }

    .team-right ul {
        margin-top: 50px;
    }

    .blog-head {
        padding: 50px 0px;
    }

    .team-left,
    .team-right {
        width: 100%;
        margin-bottom: 10px;
    }

    .team-left {
        text-align: center;
    }

    .team-inner {
        padding: 40px 0px 0px;
    }

    .team-left span {
        font-size: 24px;
        max-width: 100%;
        line-height: 30px;
        margin: 10px 0px;
    }

    .form-wapper {
        margin: 0 auto;
    }
}

@media (max-width:990px) {
    .modal-header {
        background: rgba(0, 0, 0, 0.4);
        top: 10px;
        right: 10px;
        left: auto;
        width: 40px;
        height: 40px;
    }

    #team:before {
        height: 25%;
    }

    .contact-left {
        width: 100%;
    }

    .contact-right {
        display: none;
    }

    .main-wrapper {
        margin: 0 0%;
    }

    .pb-100 {
        padding: 40px 0px 0px;
    }

    .heading {
        padding-bottom: 30px;
    }

    .main-wrapper:before {
        display: none;
    }

    .bg-inner {
        text-align: center;
        padding-top: 40px;
    }

    .bg-inner {

        align-items: flex-end;

    }

    .bg-image-container svg {
        height: 300px;
        transform: translateY(3%);
        overflow: visible;
    }

    .landing-home h1 {
        margin: 0px 0;
        font-size: 30px;
    }

    .landing-home p {
        font-size: 16px;
        color: #fff;
        letter-spacing: 1px;
        line-height: 30px;
        margin: 20px 0px;
    }

    .bg-container .form-wapper {
        margin: 0 auto;
    }

    .bg-container {
        width: 100%;
    }

    .bg-image-container {
        width: 100%;
    }

    .landing-home {
        color: #fff;
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .serv-bold {
        font-size: 20px;
        margin: 20px 0px;
        line-height: 30px;
    }

    .service-inner li {
        height: 460px;
    }

    .serv-text {
        font-size: 14px;
        line-height: 30px;
    }

    .test-left,
    .test-right {
        width: 100%;
    }

    .test-left {
        text-align: center;
        margin-bottom: 20px;
    }

    .heading-test {
        text-align: center;
        width: 100%;
    }

    .test-left span {
        max-width: 100%;
        line-height: 30px;
        margin: 10px auto 20px;
    }

    .test-left p {
        max-width: 100%;
    }

    .item {
        height: auto !important;
        width: auto !important;
    }

    .text-main-container {
        padding: 40px 0px;
    }

    .product-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        padding: 40px 0px;
    }

    .product-list li {
        margin-bottom: 20px;
    }

    .search-tag {
        padding: 30px 0px;
    }

    .why-slider-left img,
    .why-slider-right img {
        display: none;
    }

    .clash-card-main,
    .img-list {
        display: flex;
        justify-content: center;
    }

    .img-list {
        margin-bottom: 50px;
    }

    .clash-card,
    .img-list div {
        margin: 10px;
    }

    #blog {
        background: #161f35;
        padding-bottom: 40px;
    }

    .con-list {
        height: auto;
        padding: 30px;
        text-align: center;
    }

    .con-text {
        margin: 15px 0px;
    }

    .blog-head {
        justify-content: center;
        text-align: center;
        align-items: center;
    }

    .blog-head-left {
        font-size: 24px;
        line-height: 30px;
        padding-bottom: 20px;
    }
}

@media(max-width:768px) {
    .team-member {
        margin: 10px 0;
        padding: 0;
    }
}

@media (max-width:767px) {
    .modal-content {

        overflow-y: auto;
    }

    .serv-img {
        display: flex;
        justify-content: center;
        align-items: center;

    }

    .contact-head {
        font-size: 28px;
        padding: 0px 0px 10px;
    }

    #contact-form p {
        max-width: 100%;
        padding-bottom: 20px;
    }

    .edit-list li {
        margin-bottom: 20px;
    }

    .contact-left form {
        margin: 0px auto;
        max-width: 100%;
    }

    .navbar-toggle .icon-bar.i1 {
        display: block;
        width: 19px;
    }

    .navbar-toggle .icon-bar.i2 {
        display: block;
        width: 22px;
    }

    .navbar-toggle .icon-bar.i3 {
        display: block;
        width: 17px;
    }

    .navbar-default {
        background-color: #fff;
        border-bottom: rgba(255, 255, 255, 0.29) solid 0px;
        box-shadow: 0 2px 3px 0px rgba(0, 0, 0, 0.16);
        padding: 10px;
    }

    .navbar-brand {
        background-image: url(../images/logo_black.svg);
    }

    .navbar-default .navbar-nav>li>a {
        color: #0b2240;
    }

    .navbar-default .navbar-toggle {
        border-color: transparent;
    }

    .navbar-toggle {
        margin-right: 0px;
    }

    .about-left,
    .about-right {
        width: 100%;
    }

    .heading {
        padding-bottom: 20px;
        text-align: center;
    }

    .about-inner .about-head {
        text-align: center;
    }

    .service-inner li {
        width: 100%;
        display: flex;
        flex-direction: column;
        height: auto;
        padding: 3%;
        align-items: center;
        border-right: none;
        border-bottom: 1px solid #dcdcdc;
    }

    .service-inner li:nth-child(3) {
        border-bottom: 1px solid #dcdcdc;
    }

    .service-inner {
        margin-top: 0px;
    }

    .serv-bold {
        margin: 20px 0px 0;
        text-align: center;
    }

    .serv-text {
        text-align: center;
    }

    .port-left,
    .port-right {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }

    .portfolio-inner {
        margin-bottom: 20px;
    }

    .port-tab-left,
    .port-tab-right {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }

    .tabs-left {
        border-bottom: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    .tabs-left>li {
        float: left;
        margin: 0px;
    }

    .tabs-left>li>a {
        padding: 10px 15px;
        font-size: 15px;
    }

    .tab-inner {
        justify-content: center;
    }

    .product-main-container {
        background: #161f35;
        padding: 40px 0px 0px;
    }

    .heading-img {
        transform: translateY(0px);
    }

    .heading-img img {
        width: 80%;
    }

    .content-section {
        padding: 40px 0px 0px;
    }

    .team-right ul li {
        width: auto;
        height: auto;
        margin: 20px;
        padding: 10px;
    }

    .blog-head {
        padding: 30px 0px;
    }
}

@media (max-width:600px) {
    .tabs-left {
        justify-content: center;
    }

    .item {
        padding: 20px;
        margin: 10px 0px;
    }

    .author-right {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 88%;
    }

    .snip1192 span {
        line-height: 25px;
        font-size: 12px;
    }

    .foot-inner {

        margin: 10px auto;
    }

    .f_m,
    .f_d {
        width: 100%;
        margin-bottom: 10px;
        text-align: center;
    }

    .f_d_list {
        justify-content: center;
    }

    .foot-main {
        margin: 10px 0px;
    }

    .tab-detail {
        width: 100%;
        margin-bottom: 20px;
        justify-content: center;
    }

    .logo-img {
        width: 30%;
    }

    #team:before {
        height: 10%;
    }
}

@media(max-width:400px) {

    .btn-submit {
        width: 100%;
    }

    .author-left {
        display: none;
    }

    .author-right {
        width: 100%;
    }

    .author-detail {
        text-align: left;
    }

    .team-member h4 {
        margin: 10px 0 10px;
        font-size: 12px;
    }

    .team-member p {
        font-size: 10px;
    }

    .team .heading {
        padding-bottom: 15px;
        letter-spacing: 1px;
    }

    .gray,
    .test-left span {
        margin: 10px 0 20px;
        font-size: 24px;
        line-height: 25px;
    }

    .author-detail h5 {
        margin-bottom: 5px;
    }

    .bg-inner {
        text-align: center;
        padding-top: 60px;
    }

    .landing-home h1 {
        font-size: 25px;
    }
}

.map {
    height: 335px;
    border-radius: 9px;
    box-shadow: 0px 13px 90px 0 rgba(0, 0, 0, 0.07);
    background-color: #ffffff;
    padding: 15px;
}

.map iframe {
    border-radius: 9px;
}

.text-white {
    color: #fff !important;
}

.mb-100 {
    margin-bottom: 70px;
}


/*---------------------------------------------------------
                    Case Study
-----------------------------------------------------------*/
.inline-block {
    display: inline-block;
}

.animate-span {
    position: relative;
    display: inline-block;
    width: 125px;
}

.svg-box.animate2 {
    opacity: 1;
    transform: scale(1, 0.50);
}

.avtar-img {
    position: relative;
    display: block;
    max-width: 100%;
    height: 250px;
    width: 250px;
    margin: auto;
    object-fit: cover;
    object-position: center;
}

.avtar-logo-img {
    position: relative;
    display: block;
    max-width: 100%;
}

.space-p {
    font-size: 16px;
    color: #6d6d6d;
    line-height: 30px;
    font-weight: 500;
    margin: 0;
    text-align: justify;
}

.h-flex {
    height: 300px;
    display: flex;
    padding: 35px;
    flex-direction: column;
    justify-content: center;
}

.pl-5 {
    padding-left: 3rem;
}

.pb-5 {
    padding-bottom: 3rem;
}

.pl-10 {
    padding-left: 10rem;
}

.pb-10 {
    padding-bottom: 10rem;
}

.mt-0 {
    margin-top: 0;
}

.w-full {
    width: 100%;
}

.container-fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.case-client-block {
    margin-bottom: 20rem;
}

.case-client {
    padding: 30px;
}

.case-client .author .author-right .author-detail h4 {
    color: #32bfea;
}

.case-client .author .author-right .author-detail h5 {
    color: #fff;
}

.case-client .author .author-right {
    width: 85%;
}

.case-client .author {
    width: 350px;
}

.client-words {
    position: absolute;
    top: -250px;
    left: 0;
    background: #fff;
    padding: 25px;
    box-shadow: 0 0 15px -5px #00000040;
    border-radius: 10px;
}

.client-words p {
    font-size: 15px;
    color: #a5a5a7;
    line-height: 24px;
    letter-spacing: 0;
    font-style: italic;
}

.quote-first {
    width: 15px;
    margin-right: 10px;
}

.quote-last {
    width: 15px;
    margin-left: 10px;
    transform: rotate(180deg);
}

.client-words2 p {
    font-style: italic;
}

@media (max-width: 768px) {
    .case-client-block {
        margin-bottom: 5rem;
    }

    .blog-home.casehome .blog-inner.text-center {
        text-align: left !important;
    }

    .blog-home.casehome h1 {
        font-size: 25px;
        line-height: 30px;
        text-align: justify;
        padding-left: 0;
    }

    .h-flex {
        height: auto;
        padding: 0;
    }

    .case-section .row.pb-10 {
        padding-bottom: 0px;
        display: flex;
        flex-direction: column;
    }

    .order-1 {
        order: 1;
    }

    .order-2 {
        order: 2;
    }

    .case-client {
        padding: 0;
    }

    .client-words {
        position: relative;
        top: 0;
        left: 0;
    }

    .case-client .test-left {
        text-align: justify;
        margin-bottom: 20px;
        margin-top: 20px;
    }
}

.blog-cover-image-div img {
    width: 100%;
    height: 13vw;
    object-fit: cover;
}

.blog-title-div {
    height: 120px;
}

.blog-title-div .truncate {
    width: 310px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media only screen and (max-width: 900px) {
    .img-fluid {
        width: 100%;
    }
}

@media only screen and (min-width: 600px) {
    .img-fluid {
        width: 100%;
    }
}