.navbar {
    padding: 20px 0px;
}

.btn-chat {
    position: absolute;
    right: 15px;
}

.main {
    width: 100%;
    height: 100%;
    background: #fff;
    background-image: linear-gradient(180deg, #F5F5F5, #fff);
  
    position: relative;
}

.close-nav {
    position: absolute;
    top: 5px;
    color: red;
    font-weight: 600;
    background: #fff;
    display: none;
}

.show-nav {
    display: none;
}


/* nav icon */


/* Icon 4 */

#nav-icon4 {
    width: 28px;
    height: 25px;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .7s ease-in-out;
    -moz-transition: .7s ease-in-out;
    -o-transition: .7s ease-in-out;
    transition: .7s ease-in-out;
    cursor: pointer;
}

#nav-icon4 span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: #27D95E;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

#nav-icon4 span:nth-child(1) {
    top: 0px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

#nav-icon4 span:nth-child(2) {
    top: 10px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

#nav-icon4 span:nth-child(3) {
    top: 20px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

#nav-icon4.open span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 0px;
    left: 8px;
    background: #FF4646;
}

#nav-icon4.open span:nth-child(2) {
    width: 0%;
    opacity: 0;
    background: #FF4646;
}

#nav-icon4.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 20px;
    left: 8px;
    background: #FF4646;
}


/* horizontal flip */



.back-left {
    width: 50%;
    padding: 0.8em;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.back-right {
    background: url(../images/banner-art1.png);
    width: 50%;
    background-size: cover;
    padding: 0.8em;
}


/* vertocal flip card */

.flipper {
    position: relative;
}

.flipper {
    perspective: 600px;
    -webkit-perspective: 600px;
    -moz-perspective: 600px;
    -webkit-transform-origin: 100% center;
    -moz-transform-origin: 100% center;
    -ms-transform-origin: 100% center;
    transform-origin: 100% center;
}

.front-card,
.back-card {
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    -o-transition: transform .6s ease-in-out;
    -moz-transition: transform .6s ease-in-out;
    -webkit-transition: transform .6s ease-in-out;
    transition: transform .6s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
}

.front-card.active {
    z-index: 2;
    -webkit-transform: rotateX(0deg)!important;
    -moz-transform: rotateX(0deg)!important;
    transform: rotateX(0deg)!important;
}

.flipper .front-card {
    -webkit-transform: rotateX(180deg);
    -moz-transform: rotateX(180deg);
    transform: rotateX(180deg);
}

.back-card {
    -webkit-transform: rotateX(-180deg);
    -moz-transform: rotateX(-180deg);
    transform: rotateX(-180deg);
}

.flipper .back-card.active {
    -webkit-transform: rotateX(0deg)!important;
    -moz-transform: rotateX(0deg)!important;
    transform: rotateX(0deg)!important;
}


/*Styling*/

.header-front {
    background: SteelBlue;
}

.header-back {
    background: YellowGreen;
}

.card-v {
    margin-top: 10px;
    box-sizing: border-box;
    border-radius: 2px;
    background-clip: padding-box;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}

.card-v span.card-title {
    color: #fff;
    font-size: 24px;
    font-weight: 300;
    text-transform: uppercase;
}

.card-v .card-image {
    position: relative;
    overflow: hidden;
}

.card-v .card-image .header-front,
.card-v .card-image .header-back {
    border-radius: 2px 2px 0 0;
    background-clip: padding-box;
    position: relative;
    z-index: -1;
    width: 500px;
    height: 150px;
}

.card-v .card-image span.card-title {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 16px;
}

.card-v .card-content {
    padding: 16px;
    border-radius: 0 0 2px 2px;
    background-clip: padding-box;
    box-sizing: border-box;
}

.card-v .card-content p {
    margin: 0;
    color: inherit;
}

.card-v .card-content span.card-title {
    line-height: 48px;
}


/* end */

.navbar .navbar-brand {
    width: 185px;
    -o-object-fit: contain;
    object-fit: contain;
}

.nav-item {
    margin-right: 10px;
    padding: 0rem 0.5rem;
}

.navbar .navbar-nav .nav-link {
    font-family: 'Segoe UI Semibold';
    font-size: 14px;
    font-weight: normal;
    color: #fff;
    position: relative;
    padding: 0.5rem 0px;
}


/* banner */

.banner {
    background-image: url(../images/banner-bg-new.png);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 15rem 0px 8rem 0px;
    margin: -7rem 0px 0px 0px;
}

.banner .banner-left-container__desc h1 {
    margin-bottom: 25px;
}

.banner .banner-left-container__desc h3 {
    color: #A5AAA6;
}

.banner .banner-left-container__controls {
    margin-top: 45px;
}

.banner .banner-left-container__controls .btn__secondary {
    margin-left: 25px;
}


/*end */

.banner-detail {
    max-width: 1280px;
    margin: 0 auto;
    background: #fff;
    padding: 65px 0px 0px 0px;
    margin-top: -6rem;
}

.services .services-title {
    padding: 0px 0px 80px 0px;
    text-align: center;
}

.services .services-title h3 {
    border-bottom: 1.5px solid #EBEBEB;
    display: inline-block;
    padding-bottom: 5px;
    position: relative;
}

.services .services-title h3::after {
    position: absolute;
    content: '';
    bottom: -1.5px;
    left: 0;
    width: 25%;
    height: 1.5px;
    background-color: #27D95E;
}

.card-container {
    height: 250px;
    margin-bottom: 30px;
    width: 100%;
    -webkit-perspective: 1000px;
    perspective: 1000px;
}

.card-container:hover .card {
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
    -webkit-transform-origin: right right;
    transform-origin: right right;
}

.card {
    width: 100%;
    height: 100%;
    position: relative;
    -webkit-transition: -webkit-transform 0.8s;
    transition: -webkit-transform 0.8s;
    transition: transform 0.8s;
    transition: transform 0.8s, -webkit-transform 0.8s;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.front {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #F5F5F5;
    background-image: url(../images/card2-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    z-index: 2;
}

.front::before {
    content: '';
    background-color: rgba(7, 7, 7, 0.85);
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.front .front-top {
    padding: 25px;
}

.front .front-top h3 {
    font-size: 20px;
    color: #fff;
}

.front .front-top h3 span {
    color: #27D95E;
}

.front .front-bottom {
    padding: 25px;
}

.front .front-bottom img {
    width: 30px;
    height: 30px;
    -o-object-fit: contain;
    object-fit: contain;
}

.back {
    position: absolute;
    background-color: #27D95E;
    width: 100%;
    height: 100%;
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
    -webkit-transform-origin: right right;
    transform-origin: right right;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.back .back-top {
    padding: 25px;
}

.back .back-top h3 {
    font-size: 20px;
    color: #fff;
}

.back .back-bottom {
    padding: 25px;
}

.back .back-bottom p {
    font-family: 'Segoe UI Regular';
    font-size: 12px;
    font-weight: normal;
    color: #fff;
}

.card.card-1 .front {
    background-image: url(../images/card1-bg.png);
}

.card.card-2 .front {
    background-image: url(../images/card2-bg.png);
}

.card.card-3 .front {
    background-image: url(../images/card3-bg.png);
}

.card.card-4 .front {
    background-image: url(../images/card4-bg.png);
}

.card.card-5 .front {
    background-image: url(../images/card5-bg.png);
}

.card.card-6 .front {
    background-image: url(../images/card6-bg.png);
}

.card.card-7 .front {
    background-image: url(../images/card7-bg.png);
}

.card.card-8 .front {
    background-image: url(../images/card8-bg.png);
}

.growth {
    background-image: url(../images/global-bg-new.png);
    background-repeat: no-repeat;
    background-size: cover;
}



.growth .growth-left .growth-left__desc h2 {
    color: #fff;
}

.growth .growth-left .growth-left__desc h2 span {
    color: #27D95E;
}

.growth .growth-left .growth-left__stats {
    padding-top: 40px;
}

.growth .growth-left .growth-left__stats ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.growth .growth-left .growth-left__stats ul li {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 15px;
    padding-right: 15px;
}

.growth .growth-left .growth-left__stats ul li .growth-left__stats__icon {
    display: inline-block;
}

.growth .growth-left .growth-left__stats ul li .growth-left__stats__icon img {
    width: 50px;
    height: 50px;
    -o-object-fit: contain;
    object-fit: contain;
}

.growth .growth-left .growth-left__stats ul li .growth-left__stats__icon img:hover,
.growth .growth-left .growth-left__stats ul li .growth-left__stats__icon img:focus {
    opacity: 0.6;
}

.growth .growth-left .growth-left__stats ul li .growth-left__stats__desc {
    display: inline-block;
    padding-left: 15px;
}

.growth .growth-left .growth-left__stats ul li .growth-left__stats__desc h3 {
    color: #fff;
    font-family: 'Segoe UI Semibold';
    font-size: 25px;
    font-weight: normal;
}

.growth .growth-right {
    padding-top: 2rem;
}

.clients {
    background-color: #fff;
}

.clients .clients-right .clients-right__desc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.clients .clients-right .clients-right__desc .clients-right__desc__left {
    display: inline-block;
    width: 100%;
}

.clients .clients-right .clients-right__desc .clients-right__desc__left .flip-text {
    position: relative;
}

.clients .clients-right .clients-right__desc .clients-right__desc__left .flip-text .flip-text1 {
    position: relative;
    top: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.4s all linear;
    transition: 0.4s all linear;
}

.clients .clients-right .clients-right__desc .clients-right__desc__left .flip-text .flip-text1.active {
    opacity: 1;
    visibility: visible;
}

.clients .clients-right .clients-right__desc .clients-right__desc__left .flip-text .flip-text2 {
    position: absolute;
    top: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.4s all linear;
    transition: 0.4s all linear;
}

.clients .clients-right .flip-paragraph{
    opacity: 0;
    display: none;
    -webkit-transition: 0.4s all linear;
    transition: 0.4s all linear;
}

.clients .clients-right .flip-paragraph.active{
    opacity: 1;
    display: block;
}

.clients-left {
    position: relative;
    width: 100%;
    height: 100%;
}

.clients-left::before {
    position: absolute;
    background-image: url(../images/dots-bg.png);
    background-size: contain;
    background-position: left bottom;
    background-repeat: no-repeat;
    bottom: -11px;
    left: -27px;
    content: '';
    width: 100%;
    height: 70px;
    z-index: 99;
}

.clients .clients-right .clients-right__desc .clients-right__desc__left .flip-text .flip-text2.active {
    opacity: 1;
    visibility: visible;
}

.clients .clients-right .clients-right__desc .clients-right__desc__right {
    display: inline-block;
}

.clients .clients-right .clients-right__desc .clients-right__desc__right .flip-card-btn {
    width: 40px;
    height: 40px;
    line-height: 34px;
    text-align: center;
    background: #fff;
    display: inline-block;
    border-bottom-left-radius: 6px;
    border: 1.5px solid #C2C2C2;
}

.clients .clients-right .clients-right__desc .clients-right__desc__right .flip-card-btn:hover,
.clients .clients-right .clients-right__desc .clients-right__desc__right .flip-card-btn:focus {
    background: #27D95E;
}

.clients .clients-right .clients-right__desc .clients-right__desc__right .flip-card-btn:hover svg .arrow-icon {
    fill: #fff;
}

.clients .clients-right .clients-right__desc .clients-right__desc__right .flip-card-btn:focus svg .arrow-icon {
    fill: #fff;
}

.clients .clients-right .clients-right__desc .clients-right__desc__right .flip-card-btn img,
.clients .clients-right .clients-right__desc .clients-right__desc__right .flip-card-btn svg {
    width: 20px;
    height: 20px;
    -o-object-fit: contain;
    object-fit: contain;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.clients .clients-right ul.client-contacts {
    margin: 0;
    padding: 0;
    list-style: none;
    padding-top: 25px;
    display: none;
}

.clients .clients-right ul.client-contacts.active {
    display: block;
}

.clients .clients-right ul.client-contacts li {
    display: inline-block;
    padding: 0;
    margin-right: 5px;
    margin-bottom: 5px;
}

.clients .clients-right ul.client-contacts li .client-contact-btn {
    border-bottom-left-radius: 6px;
    background-color: #27D95E;
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    text-align: center;
}

.clients .clients-right ul.client-contacts li .client-contact-btn:hover,
.clients .clients-right ul.client-contacts li .client-contact-btn:focus {
    background-color: #18863a;
}

.clients .clients-right ul.client-contacts li .client-contact-btn img,
.clients .clients-right ul.client-contacts li .client-contact-btn svg {
    width: 18px;
    height: 18px;
    -o-object-fit: contain;
    object-fit: contain;
}

.company {
    background-color: #F5F5F5;
}

.company .company-container ul {
    list-style: none;
    display: block;
    padding: 0;
    margin: 0;
    text-align: center;
}

.company .company-container ul li {
    display: inline-block;
    width: 195px;
    height: 95px;
    background: transparent;
    text-align: center;
    line-height: 95px;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 10px;
    margin-bottom: 15px;
}

.company .company-container ul li:hover {
    background: white;
    -webkit-box-shadow: 8px 6px 30px rgba(210, 210, 210, 0.16);
    box-shadow: 8px 6px 30px rgba(210, 210, 210, 0.16);
}

.company .company-container ul li figure {
    width: 75%;
    height: 50%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0px;
    background-color:transparent;
}

.company .company-container ul li:hover figure.company1 {
    background-image: url(../images/company1.svg);
}

.company .company-container ul li figure.company1 {
    background-image: url(../images/company1-grey.svg);
}


/* 2nd  */

.company .company-container ul li:hover figure.company2 {
    background-image: url(../images/company2.svg);
}

.company .company-container ul li figure.company2 {
    background-image: url(../images/company2-grey.svg);
}


/* 3rd */

.company .company-container ul li:hover figure.company3 {
    background-image: url(../images/company3.svg);
}

.company .company-container ul li figure.company3 {
    background-image: url(../images/company3-grey.svg);
}


/* 4 */

.company .company-container ul li:hover figure.company4 {
    background-image: url(../images/company4.svg);
}

.company .company-container ul li figure.company4 {
    background-image: url(../images/company4-grey.svg);
}


/* 5 */

.company .company-container ul li:hover figure.company5 {
    background-image: url(../images/company5.svg);
}

.company .company-container ul li figure.company5 {
    background-image: url(../images/company5-grey.svg);
}


/* 6 */

.company .company-container ul li:hover figure.company6 {
    background-image: url(../images/company6.svg);
}

.company .company-container ul li figure.company6 {
    background-image: url(../images/company6-grey.svg);
}


/* 7 */

.company .company-container ul li:hover figure.company7 {
    background-image: url(../images/company7.svg);
}

.company .company-container ul li figure.company7 {
    background-image: url(../images/company7-grey.svg);
}


/* 8 */

.company .company-container ul li:hover figure.company8 {
    background-image: url(../images/company8.svg);
}

.company .company-container ul li figure.company8 {
    background-image: url(../images/company8-grey.svg);
}


/* 9 */

.company .company-container ul li:hover figure.company9 {
    background-image: url(../images/company9.svg);
}

.company .company-container ul li figure.company9 {
    background-image: url(../images/company9-grey.svg);
}


/* 10 */

.company .company-container ul li:hover figure.company10 {
    background-image: url(../images/company10.svg);
}

.company .company-container ul li figure.company10 {
    background-image: url(../images/company10-grey.svg);
}

.contact {
    background-image: url(../images/contact-us-bg-new.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 6rem 0px;
}

.contact .contact-left h2 {
    color: #fff;
}

.contact-right__title h4 {
    color: #fff;
}

.contact-right__form form {
    margin-bottom: 30px;
    margin-top: 10px;
}

.contact-right__form form .input-view label {
    font-size: 15px;
    color: #818181;
    font-family: 'Segoe UI Semibold';
    font-weight: normal;
}

.contact-right__form form .input-view input {
    width: 100%;
    height: 41px;
    outline: none;
    border: none;
    background: #fff;
    border-radius: 0px;
    margin-bottom: 10px;
    padding: 5px 10px;
    font-family: 'Segoe UI Regular';
    font-size: 15px;
    font-weight: normal;
    color: #000;
}

.contact-right__form form .input-view input:hover,
.contact-right__form form .input-view input:focus {
    outline: none;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.contact-right__form form .input-view textarea {
    width: 100%;
    outline: none;
    border: none;
    background: #fff;
    margin-bottom: 10px;
    border-radius: 0px;
    resize: none;
    padding: 5px 10px;
    font-family: 'Segoe UI Regular';
    font-size: 15px;
    font-weight: normal;
    color: #000;
}

.contact-right__form form .input-view textarea:hover,
.contact-right__form form .input-view textarea:focus {
    outline: none;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

footer {
    background: #1E1E1E;
    padding: 4rem 0px 0px 0px;
}

footer .footer-left {
    position: relative;
}

footer .footer-left::after {
    position: absolute;
    content: '';
    right: 0;
    top: 0;
    height: 120%;
    width: 1px;
    background-color: rgba(129, 129, 129, 0.4);
}

footer .footer-left img {
    width: 150px;
    height: 25px;
    -o-object-fit: contain;
    object-fit: contain;
}

footer .footer-left h3 {
    color: #fff;
    padding-top: 35px;
}

footer .footer-left h3 span {
    color: #27D95E;
}

footer .footer-right .footer-right__list h4 {
    color: #fff;
}

footer .footer-right .footer-right__list ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

footer .footer-right .footer-right__list ul li {
    margin-bottom: 10px;
    color: #818181;
    font-family: 'Segoe UI Regular';
    font-size: 15px;
    font-weight: normal;
}

footer .footer-right .footer-right__list ul li a {
    color: #818181;
    font-family: 'Segoe UI Regular';
    font-size: 15px;
    font-weight: normal;
    transition: all 0.1s ease-in-out;
}

footer .footer-right .footer-right__list ul li a:hover {
    color: #dad6d6;
}

footer .copyright-container {
    background-color: #323232;
    padding: 15px 0px;
    margin-top: 2rem;
}

footer .copyright-container .copyright-left p {
    color: #818181;
}

footer .copyright-container .copyright-right ul.client-contacts {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: right;
}

footer .copyright-container .copyright-right ul.client-contacts li {
    display: inline-block;
    padding: 0;
    margin-right: 5px;
    margin-bottom: 5px;
}

footer .copyright-container .copyright-right ul.client-contacts li .client-contact-btn {
    border-bottom-left-radius: 6px;
    background-color: #27D95E;
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    text-align: center;
}

footer .copyright-container .copyright-right ul.client-contacts li .client-contact-btn:hover,
footer .copyright-container .copyright-right ul.client-contacts li .client-contact-btn:focus {
    background-color: #18863a;
}

footer .copyright-container .copyright-right ul.client-contacts li .client-contact-btn img,
footer .copyright-container .copyright-right ul.client-contacts li .client-contact-btn svg {
    width: 18px;
    height: 18px;
    -o-object-fit: contain;
    object-fit: contain;
}
