@charset "utf-8";
@font-face {
    font-family: 'Lato-medium';
    src: url('../font/Lato-Medium.woff2') format('woff2'), url('../font/Lato-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lato-semibold';
    src: url('../font/Lato-Semibold.woff2') format('woff2'), url('../font/Lato-Semibold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lato-regular';
    src: url('../font/Lato-Regular.woff2') format('woff2'), url('../font/Lato-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../font/Roboto-Black.woff2') format('woff2'), url('../font/Roboto-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto-medium';
    src: url('../font/Roboto-Medium.woff2') format('woff2'), url('../font/Roboto-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto-bold';
    src: url('../font/Roboto-Bold.woff2') format('woff2'), url('../font/Roboto-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'Roboto-medium';
    background: #fff;
    position: relative;
    user-select: none;
}

html {
    scroll-behavior: smooth;
    transition: all 1s;
}

a {
    color: #2cc76a
}

a:hover,
a:focus {
    color: #1eb45a
}

h1,
h2,
h3,
h4 {
    font-weight: 700;
}

p {
    color: #70747a
}

.text-black {
    color: #000 !important;
}

.navbar-header {
    min-height: 80px
}

.navbar-default .navbar-toggle {
    border-color: gray
}

.navbar-toggle {
    margin-top: 20px
}

.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
    max-height: 370px;
}


/********************************/


/*       Fade Bs-carousel       */


/********************************/

.fade-carousel {
    position: relative;
    height: 85vh;
}

.fade-carousel .carousel-inner .item {
    height: 85vh;
}

.fade-carousel .carousel-indicators>li {
    margin: 0 2px;
    background-color: #fff;
    border-color: #fff;
    opacity: .7;
}

.fade-carousel .carousel-indicators>li.active {
    width: 10px;
    height: 10px;
    background-color: #f39c12;
    border-color: #f39c12;
    opacity: 1;
}


/********************************/


/*          Hero Headers        */


/********************************/

.hero {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    z-index: 3;
    color: #fff;
    text-align: center;
    font-weight: 100 !important;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, .75);
    -webkit-transform: translate3d(-50%, -50%, 0);
    -moz-transform: translate3d(-50%, -50%, 0);
    -ms-transform: translate3d(-50%, -50%, 0);
    -o-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
}


/********************************/


/*        preloader             */


/********************************/

#preloder {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 999999;
    background: #000
}

.loader {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -13px;
    margin-left: -13px;
    border-radius: 60px;
    animation: loader .8s linear infinite;
    -webkit-animation: loader .8s linear infinite
}

@keyframes loader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        border: 4px solid #F7A91B;
        border-left-color: transparent
    }
    50% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
        border: 4px solid #332652;
        border-left-color: transparent
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
        border: 4px solid #F7A91B;
        border-left-color: transparent
    }
}

@-webkit-keyframes loader {
    0% {
        -webkit-transform: rotate(0deg);
        border: 4px solid #F7A91B;
        border-left-color: transparent
    }
    50% {
        -webkit-transform: rotate(180deg);
        border: 4px solid #332652;
        border-left-color: transparent
    }
    100% {
        -webkit-transform: rotate(360deg);
        border: 4px solid #F7A91B;
        border-left-color: transparent
    }
}


/********************************/


/*       top to bottom button   */


/********************************/

#button {
    display: inline-block;
    background-color: #FF9800;
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 4px;
    position: fixed;
    bottom: 30px;
    right: -30px;
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    transition: all 0.6s;
}

#button::after {
    content: "\f077";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 2em;
    line-height: 50px;
    color: #fff;
}

#button:hover {
    cursor: pointer;
    background-color: #333;
}

#button:active {
    background-color: #555;
}

#button.show {
    opacity: 1;
    visibility: visible;
    right: 30px;
    transition: all 0.6s;
}


/********************************/


/*       404                    */


/********************************/

.heading-404 h2 {
    font-size: 80px;
    font-weight: 900;
    text-align: center;
    padding-top: 60px;
    color: #F7A91B;
    -webkit-text-fill-color: white;
    /* Will override color (regardless of order) */
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #F7A91B;
}

.heading-404 h3 {
    font-size: 40px;
    font-weight: 900;
    text-align: center;
    padding-top: 20px;
    color: #F7A91B;
}

.heading-404 h4 {
    font-size: 20px;
    text-align: center;
    padding-top: 10px;
    color: black;
}


/********************************/


/*            Overlay           */


/*******************************
.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-color: #080d15;
    opacity: .7;
}*/


/********************************/


/*       Slides backgrounds     */


/********************************/

.fade-carousel .slides .slide-1,
.fade-carousel .slides .slide-2,
.fade-carousel .slides .slide-3 {
    height: 85vh;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
}

.fade-carousel .slides .slide-1 {
    background-image: url('../images/banner/banner_02.jpg');
}

.fade-carousel .slides .slide-2 {
    background-image: url('../images/banner/banner_01.jpg');
}

.fade-carousel .slides .slide-3 {
    background-image: url('../images/banner/banner_03.jpg');
}

.navbar {
    background: #332652;
    border-bottom: 0;
}

.navbar-collapse {
    background: 0 0;
    border: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    padding-top: 5px;
    filter: none;
    -ms-filter: none;
}

.navbar .nav>li>a {
    color: #fff;
    text-transform: uppercase;
    text-shadow: 0 1px 0 #666;
    font-family: 'Lato-regular';
    font-size: 13px;
    letter-spacing: 1px;
}

.navbar .nav>li>a:focus,
.navbar .nav>li>a:hover {
    color: #f7a91b;
}

.navbar .nav>.active>a,
.navbar .nav>.active>a:hover,
.navbar .nav>.active>a:focus {
    background: 0 0;
    color: #f7a91b;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    font-family: 'Lato-regular';
}

.navbar .nav {
    padding: 12px
}

.navbar .btn,
.navbar .btn-group {
    margin-top: 0
}

.navbar .nav li.dropdown.open>.dropdown-toggle,
.navbar .nav li.dropdown.active>.dropdown-toggle,
.navbar .nav li.dropdown.open.active>.dropdown-toggle {
    color: #fff;
    background-color: transparent
}

.navbar-default+div {
    margin-top: 68px
}

.btn-lg {
    font-size: 18px;
    padding: 20px 50px;
    margin: 5px 10px
}

.btn-success {
    background-color: #F7A91B;
    background-image: none;
    border-color: rgba(0, 0, 0, .1) rgba(0, 0, 0, .1) rgba(0, 0, 0, .25);
    color: black;
    font-size: 12px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    font-family: 'Lato-semibold';
}

.btn-success:hover,
.btn-success:focus,
.btn-success:active {
    background-color: #f7b234 !important;
    color: #fff!important
}

.btn-primary {
    background-color: #2db6d8;
    background-image: none;
    border-color: rgba(0, 0, 0, .1) rgba(0, 0, 0, .1) rgba(0, 0, 0, .25)
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: #209ab8!important;
    color: #fff!important
}

.btn-danger {
    background-color: #f45c57;
    background-image: none;
    border-color: rgba(0, 0, 0, .1) rgba(0, 0, 0, .1) rgba(0, 0, 0, .25)
}

.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active {
    background-color: #eb534e!important;
    color: #fff!important;
}

.navbar .nav>.active>a.btn {
    background-color: #22bb5f!important;
    color: #fff!important;
}

.hero .hero-unit {
    background: 0 0;
    text-align: center;
    padding: 60px;
    padding-top: 0px;
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 30px;
    color: inherit;
}

.hero .hero-unit h1 {
    padding-bottom: 5px;
    font-weight: 100;
    font-size: 44px;
    letter-spacing: 2px;
    line-height: 1.3;
    font-family: 'Roboto-medium' !important;
}

.hero .hero-unit h3 {
    font-weight: 200;
    padding-bottom: 15px;
    line-height: 1.5;
    color: #d5d5d5;
    font-size: 19px;
    font-family: 'Lato-regular' !important;
}

.flex-control-paging li a.flex-active {
    background: #000;
    background: #f8a805;
    cursor: default;
    width: 11px;
    height: 11px;
    margin-bottom: 40px;
}

.flex-control-paging li a {
    width: 14px;
    height: 14px;
    display: block;
    background: #666;
    background: #fff;
    cursor: pointer;
    text-indent: -9999px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -o-border-radius: 20px;
    border-radius: 20px;
    box-shadow: inset 0 0 3px rgb(0 0 0 / 30%);
}

.slide2 {
    background: 0 0;
    text-align: center;
    padding-top: 90px
}

.slide2 h1 {
    font-size: 50px;
    font-weight: 700
}

.slide3 {
    background: 0 0;
    text-align: left;
    padding-top: 100px
}

.slide3 h1 {
    font-size: 50px;
    padding-top: 90px;
    font-weight: 700
}

.slide3 h3 {
    font-size: 20px;
    padding-right: 20px;
    color: #d5d5d5;
    line-height: 1.5
}

.mainFeatures {
    margin-top: 50px
}

.img-thumbnail {
    border: 0;
    padding: 20px 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    text-align: center
}

.img-thumbnail h4,
.img-thumbnail p {
    text-align: center
}

.PageHead {
    margin-top: 50px
}

.PageHead h1,
.PageHead h3 {
    text-align: center
}

.PageHead h3 {
    color: #9aa5aa;
    font-weight: 400;
    margin-bottom: 20px;
    margin-top: 10px;
    font-size: 17px;
    font-family: 'Montserrat-Regular';
    letter-spacing: 1px;
    line-height: 1.5;
}

.PageHead h2 {
    text-align: center;
    font-weight: 600;
    margin-bottom: 20px;
    margin-top: 10px;
    font-size: 28px;
    font-family: 'Montserrat-bold';
    letter-spacing: 3px;
    line-height: 1.5;
}

.SectionHead {
    padding-bottom: 20px;
}

.SectionHead h2 {
    font-size: 32px;
    font-weight: 100;
    letter-spacing: 3px;
    line-height: 1.5;
    font-family: 'Roboto-bold';
}

.SectionHead p {
    font-size: 17px;
    font-weight: 100;
    letter-spacing: 1px;
    line-height: 1.5;
    font-family: 'Lato-medium';
}

.SectionHead h3 {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.5;
    padding-bottom: 10px;
    padding-top: 20px;
    font-family: 'Roboto-bold';
}

.SectionHead h4 {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 1px;
    padding-bottom: 20px;
    font-family: 'Lato-medium';
}

#cloud_section .SectionHead h3 {
    font-size: 28px;
    font-weight: 100;
    line-height: 1.5;
    padding-top: 20px;
    padding-bottom: 0px;
    font-family: 'Roboto-medium';
    color: #fff;
}

#cloud_section .SectionHead h4 {
    font-size: 20px;
    font-weight: 100;
    line-height: 1.5;
    color: #fff;
    letter-spacing: 1px;
    padding-bottom: 20px;
    font-family: 'Lato-regular';
}

.sec-wid h2 {
    width: 80%;
}

.sec-wid p {
    width: 100%;
    margin-bottom: 20px;
}

.box-circle-txt h3 {
    font-size: 14px;
    font-weight: 100;
    line-height: 1.5;
    text-align: center;
    font-family: 'Lato-medium';
    color: #fff;
}

.features {
    margin: 25px 0;
    float: left;
}

.features img {
    float: left;
    padding: 10px 20px 0 0
}

.features p {
    padding-left: 80px
}

.FeatLayout {
    margin-top: 50px
}

.img-w img {
    width: 100%;
}

.imgSize80 {
    width: 80%;
    margin-bottom: 40px;
}

.ul-padding ul {
    padding-inline-start: 20px;
}

.ul-padding ul li {
    padding-top: 5px;
}

.our-scope-box {
    padding: 30px 0;
    -webkit-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    -webkit-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    border: 2px solid #000;
    border-radius: 20px;
}

.our-scope-box:hover {
    -webkit-box-shadow: 0 0 26px #00040c;
    -o-box-shadow: 0 0 26px #00040c;
    box-shadow: 0 0 26px #00040c;
    transform: translate3d(0px, -10px, 30px);
    -webkit-transform: translate3d(0px, -10px, 30px);
    -o-transform: translate3d(0px, -10px, 30px);
    border-radius: 20px;
}

.our-scope-box:hover img {
    transform: rotateY(360deg);
    transition: 1s ease-in-out;
}

.ous-scope-btn {
    padding-top: 30px;
}

.our-scope-box .box-circle .circle-img {
    text-align: center;
}

.FeatLayout .Featimg {
    text-align: center;
}

.Featimg {
    position: relative;
}

.img-pos {
    position: absolute;
    right: -102px;
    top: -30px;
    width: 100%;
}

.img-pos1 {
    position: absolute;
    top: -60px;
    width: 100%;
    left: 150px;
}

#productivity .img-pos {
    position: absolute;
    top: -25px;
    width: 100%;
}

.lead {
    color: #666;
}

.txt-white {
    color: #fff;
}

.margin-bottom-30 {
    margin-bottom: 30px;
}

.padding-top-80 {
    padding-top: 80px;
}

.padding-top-60 {
    padding-top: 60px !important;
}

.equal-padding {
    padding: 140px 0px;
}

.equal-padding20 {
    padding: 20px 0px;
}

.equal-padding40 {
    padding: 40px 0px;
}

.equal-padding60 {
    padding: 60px 0px;
}

.equal-padding80 {
    padding: 80px 0px;
}

.equal-padding90 {
    padding: 90px 0px;
}

.equal-padding100 {
    padding: 100px 0px;
}

.padding-left-50 {
    padding-left: 50px;
}

#why-us-bg {
    background-color: #33454f;
}

#why-us-bg .SectionHead h3 {
    color: #fff;
    font-weight: 100px;
}

#why-us-bg .SectionHead p {
    color: #fff;
    font-weight: 100px;
    font-size: 18px;
}

.why-us {
    background-color: #fafafa;
    padding: 10px 20px 10px 50px;
}

.why-us .SectionHead a {
    margin-top: 15px;
}


/**implementation**/

.our-scope .our-scope-box {
    padding: 30px 0;
    -webkit-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    -webkit-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    border: 2px solid #f7a91b;
    border-radius: 25px;
    background-color: #fff;
}

.our-scope .our-scope-box:hover {
    -webkit-box-shadow: 0 0 26px #00040c;
    -o-box-shadow: 0 0 26px #00040c;
    box-shadow: 0 0 26px #00040c;
    transform: translate3d(0px, -10px, 30px);
    -webkit-transform: translate3d(0px, -10px, 30px);
    -o-transform: translate3d(0px, -10px, 30px);
    border-radius: 20px;
}

.our-scope .our-scope-box:hover img {
    transform: rotateY(360deg);
    transition: 1s ease-in-out;
}


/**.scope-sub-detail{
    padding: 0px 85px 0px 0px;
}**/

.scope-sub-detail .SectionHead h3 {
    padding-top: 0px !important;
    margin-top: 0px;
}

.our-scope .our-scope-box .box-circle .circle-img {
    text-align: center;
}

.our-scope {
    background-color: #f1eeee;
}

.our-scope .our-scope-box .box-circle-txt h3 {
    color: #000;
}

.h_circle img {
    width: 150px;
    height: 150px;
}

.img-width {
    width: 100% !important;
    padding-left: 20px;
    padding-right: 20px;
}

.img-width img {
    width: 100% !important;
}

.p-top {
    padding-top: 40px;
}

.our-scope-btn {
    text-align: center;
    padding-top: 20px;
}

.scope-sub-img {
    position: relative;
    width: 100%;
    padding: 10px;
}

.scope-sub-img img {
    width: 100%;
}

#cloud-implementation,
#digitization-process,
#conduct-user {
    padding-top: 50px;
}

.hr-line {
    border-bottom: 1px solid #000;
    padding: 20px 0px;
}


/**case study**/

.casestudy {
    margin-top: 60px;
}

.cloud-bg {
    background-image: url(../images/home/migrate_cloud.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.cloud-img {
    width: 25%;
}


/**banner**/

#contct-banner {
    background-image: url(../images/contact/contact_banner.jpg);
}

#why-us-banner {
    background-image: url(../images/why-us/whyus-banner.jpg);
}

.bg-banner {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    position: relative;
    top: 80px;
}

.banner-title {
    padding: 63px 0px;
}

.banner-heading h1 {
    color: #fff;
    font-size: 32px;
    letter-spacing: 6px;
    font-weight: 500;
}

.breadcrumb__option {
    padding: 15px 0;
}

.breadcrumb__option a {
    font-size: 15px;
    color: #fff;
    font-weight: 500;
    margin-right: 20px;
    display: inline-block;
    position: relative;
}

.breadcrumb__option span {
    font-size: 15px;
    color: #888;
    font-weight: 500;
    display: inline-block;
}

.breadcrumb__option a span {
    color: #fff;
    margin-right: 5px;
}

.breadcrumb__option a:after {
    position: absolute;
    right: -18px;
    top: 0;
    content: "/";
    font-family: eleganticons;
}


/**contact**/

#contact-sec-bg {
    background-image: url('../images/contact/contact-bg.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.contact_info-bg {
    background-color: #fafafa;
}

.contact-side-txt {
    padding: 5px 25px 12px 25px;
    background-color: #33265280;
    border: 1px solid #32332652;
    color: #fff;
    margin: 0px;
    letter-spacing: 1px;
    position: absolute;
    right: 0;
}

.contact-side-txt h2 {
    line-height: 1.2;
    font-size: 18px;
    font-weight: 500;
}

.contact-side-txt h2 span {
    font-size: 36px;
    font-weight: 700;
}

.contact_info {
    padding: 20px 20px;
}

.contact_info h2 {
    font-weight: 100;
}

.contact_info h3 {
    font-size: 14px;
    line-height: 1.3;
    color: #737370;
    font-family: 'Lato-regular';
    font-weight: 100;
}

#contact ul li {
    list-style: none;
    display: flex;
    padding-bottom: 10px;
    font-size: 16px;
    color: #000;
    font-family: 'Lato-regular';
}

#contact ul li span {
    font-size: 26px;
    padding-right: 10px;
}

#contact ul li a {
    font-size: 16px;
    color: #000;
}

#contact ul {
    padding-inline-start: 0px !important;
}

#contact h4 {
    padding-bottom: 10px;
}

.nav-heading li a {
    font-family: 'Roboto-bold';
    font-size: 15px !important;
}

.tabbable-panel .tab-content {
    padding: 20px 0 0 20px;
}

.tabbable-panel {
    border: 2px solid #332652;
    border-radius: 20px;
    padding: 13px 0 5px 0;
    margin-bottom: 10px;
}

.footer__social a {
    display: inline-block;
    font-size: 18px;
    color: #fff;
    background: #f7b234;
    margin-right: 20px;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    text-align: center;
    padding-top: 3px;
    margin-bottom: 20px;
    transition: all 0.4s;
}

.footer__social a:hover:nth-child(1) {
    background: #55acee;
    border: 1px solid #fff;
    transition: all 0.4s;
    transform: scale(1.5);
}

.footer__social a:hover:nth-child(2) {
    background: #0077bb;
    border: 1px solid #fff;
    transition: all 0.4s;
    transform: scale(1.5);
}

.footer__social a:hover:nth-child(3) {
    background: #3b5999;
    border: 1px solid #fff;
    transition: all 0.4s;
    transform: scale(1.5);
}

.footer__social a:hover:nth-child(4) {
    background: #FF0000;
    border: 1px solid #fff;
    transition: all 0.4s;
    transform: scale(1.5);
}

.footer__social a:hover:nth-child(5) {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    border: 1px solid #fff;
    transition: all 0.4s;
    transform: scale(1.5);
}


/**.footer__social a:hover {
    color: #000;
    background: #f7b234;
    border: 1px solid #fff;
    transition: all 0.4s;
    transform: scale(1.5);
}**/


/**WHY-us**/

.why-us1 {
    position: relative;
    background-color: #fff;
    z-index: 1;
}

.why-us-bg {
    background-color: #fafafa;
}

.why-us-pos1 .why-us-contain {
    padding: 0px 153px 0px 70px;
}

.why-us-pos .why-us-contain {
    padding: 0px 164px 0px 70px;
}

.why-us-contain .SectionHead h3,
.why-us-contain .SectionHead h4 {
    padding-bottom: 0px;
}

.why-us-contain .SectionHead h3 {
    padding-top: 20px;
}

.why-us-img img {
    width: 100%;
}

.why-us-img1 img {
    width: 100%;
}

.why-us-info {
    margin-top: 100px;
}

.why-us-pos {
    position: absolute;
    left: -42px;
    top: 16px;
}

.why-us-pos1 {
    position: absolute;
    right: -42px;
    top: 7px;
}

#parallexBanner {
    background-image: url(../images/why-us/usp.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
}

.usp-banner {
    text-align: center;
    color: #fff;
}

.usp-banner h3 {
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 2px;
    font-family: 'Roboto-bold';
}

.usp-banner p {
    color: #fff;
    font-size: 17px;
    letter-spacing: 2px;
    line-height: 1.5;
    font-family: 'Lato-regular';
}

.why-us-img .content {
    position: relative;
    width: 100%;
    margin: auto;
    overflow: hidden;
}

.why-us-img .content .content-overlay {
    background: #EAA01E;
    position: absolute;
    height: 20%;
    width: 96%;
    left: 2%;
    /* top: 0; */
    bottom: 2%;
    right: 2%;
    opacity: 1;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
}

.why-us-img .content:hover .content-overlay {
    opacity: 1;
    height: 96%;
    bottom: 2%;
}

.why-us-img .content-image {
    width: 100%;
}

.why-us-img .content-details {
    position: absolute;
    text-align: center;
    padding-left: 1em;
    padding-right: 1em;
    width: 100%;
    bottom: 10%;
    left: 30%;
    opacity: 1;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.why-us-img .content:hover .content-details {
    top: 40%;
    left: 30%;
    opacity: 1;
}

.why-us-img .content-details h3 {
    color: #000;
    font-weight: 500;
    letter-spacing: 0.15em;
    margin-top: 45px;
    margin-bottom: 0.5em;
    text-transform: uppercase;
    font-family: 'Roboto-bold';
}

.why-us-img .content-details h3 span {
    float: right;
}

.why-us-img .content-details p {
    color: #000;
    font-size: 1.2em;
    opacity: 0;
    left: 40%;
    position: absolute;
    text-align: justify;
}

.why-us-img .content:hover .content-details p {
    opacity: 1;
}

.why-us-img .fadeIn-bottom {
    top: 80%;
}

.p-ul ul {
    padding-inline-start: 15px !important;
}

.why-us-slider-hide {
    display: none;
}

.why-us-slider h2 {
    text-align: center;
    font-weight: 500;
    margin-bottom: 50px;
    font-size: 40px;
}

.slider-box-text p {
    padding-top: 15px;
    font-size: 16px;
    font-style: italic;
    font-family: 'Lato-regular';
}

.slider-box-img img {
    height: 250px;
    width: 200px;
}

.slider-box-text h3 {
    font-family: 'Lato-regular';
    color: #fff;
}

.slider-box-text h5 {
    font-family: 'Lato-regular';
    font-style: italic;
    padding-top: 10px;
    font-size: 18px;
    font-weight: 700;
}

.owl-carousel .owl-nav.disabled {
    display: block;
}

.owl-nav .owl-prev {
    position: absolute;
    font-size: 60px !important;
    top: 100px;
    left: 60px;
    color: #fff !important;
}

.owl-nav .owl-next {
    position: absolute;
    font-size: 60px !important;
    top: 100px;
    right: 60px;
    color: #fff !important;
}

.testimonial-bg-shadow {
    background-color: #0f9defc9;
    box-shadow: 0 2px 2px 0 rgb(0 0 0 / 84%), 0 3px 1px -2px rgb(0 0 0 / 72%), 0 1px 5px 0 rgb(0 0 0 / 90%);
    padding: 40px 0px;
    border-radius: 25px;
}

.testimonial-bg-shadow .PageHead p {
    text-align: center;
}

#testi-bg-img {
    background-image: url(../images/home/testi-bg-img.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
}

#why-us-bg .text-center p {
    text-align: center !important;
}

.ticklist {
    margin: 0;
    padding: 0;
    list-style: none
}

.ticklist li {
    width: 50%;
    float: left;
    padding: 5px 5px 5px 30px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background: url(../images/tick.png) no-repeat left
}

.Testimonials p {
    margin-top: 10px;
    font-family: 'Lato-regular';
}

.Testimonials .img-thumbnail img {
    width: 100%;
}

.Testimonials .img-thumbnail h5 {
    text-align: center;
    color: #646464;
    font-weight: 700;
    margin: 18px 0;
    font-size: 22px;
    font-family: 'Roboto-bold';
}

.PartnersList {
    text-align: center;
    margin-top: 30px
}

.Testimonials .tm-data {
    -moz-transition: all .6s ease;
    -webkit-transition: all .6s ease;
    -ms-transition: all .6s ease;
    -o-transition: all .6s ease;
    transition: all .6s ease
}

@media(min-width:767px) {
    .Testimonials .tm-data:hover {
        -moz-transform: scale(1.1);
        -webkit-transform: scale(1.1);
        -o-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1);
        z-index: 2
    }
}

.PlanPricing {
    margin-top: 100px;
    -moz-transition: all .6s ease;
    -webkit-transition: all .6s ease;
    -ms-transition: all .6s ease;
    -o-transition: all .6s ease;
    transition: all .6s ease
}

@media(min-width:767px) {
    .PlanPricing:hover {
        -moz-transform: scale(1.1);
        -webkit-transform: scale(1.1);
        -o-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1);
        z-index: 2
    }
}

.PlanPricing .planName {
    background: #202b34;
    padding-top: 50px;
    padding-bottom: 10px;
    text-align: center
}

.PlanPricing .price {
    background: #2cc76a;
    padding: 5px;
    color: #fff;
    font-size: 42px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    display: block;
    width: 100px;
    height: 100px;
    line-height: 100px;
    margin: 0 auto;
    position: relative;
    margin-top: -107px;
    margin-bottom: 10px;
    line-height: 2.2
}

.PlanPricing.Recommended .price {
    background: #f45c57
}

.PlanPricing .planName h3 {
    color: #fff;
    text-align: center;
    padding: 0;
    margin: 0;
    text-transform: uppercase;
}

.PlanPricing .planName p {
    color: #999;
    text-align: center
}

.PlanPricing .planFeatures {
    background: #e8e9ea;
    text-align: center;
    padding: 10px
}

.PlanPricing .planFeatures ul {
    margin: 0;
    padding: 0;
    list-style: none
}

.PlanPricing .planFeatures ul li {
    padding: 13px 0;
    list-style: none
}

.PlanPricing p {
    margin: 0
}

.PlanPricing .btn {
    width: 100%;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.ComparePlans {
    margin-top: 20px
}

.ComparePlans .planFeatures {
    text-align: center;
    padding: 10px
}

.ComparePlans .CompareList .planFeatures {
    text-align: right
}

.ComparePlans .planFeatures ul {
    margin: 0;
    padding: 0;
    list-style: none
}

.ComparePlans .planFeatures ul li {
    padding: 13px 0;
    list-style: none
}

.ComparePlans .planHead1 {
    height: 60px;
    background: #fff
}

.ComparePlans .planHead2 {
    height: 60px;
    background: #2cc76a
}

.ComparePlans .planHead3 {
    height: 60px;
    background: #f45c57
}

.ComparePlans .planHead2 h3,
.ComparePlans .planHead3 h3 {
    color: #fff;
    text-align: center;
    padding: 0;
    margin: 0;
    text-transform: uppercase;
    padding-top: 10px;
    line-height: 1.8
}

.ComparePlans .pricing1 .planFeatures {
    border-right: solid 1px #2cc76a;
    border-left: solid 1px #2cc76a
}

.ComparePlans .pricing2 .planFeatures {
    border-right: solid 1px #f45c57;
    border-left: solid 1px #f45c57
}

.ComparePlans .btn {
    width: 100%;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.domain {
    position: relative;
    background: #34454e;
    background-size: cover;
    overflow: hidden;
    margin-top: 80px
}

.domain h1 {
    color: #fff;
    margin-top: 0
}

.domain h3 {
    color: #d5d5d5;
    margin-bottom: 40px
}

.input-append,
.input-prepend {
    display: inline
}

.input-append input,
.input-prepend input {
    height: 50px
}

.domain .submitbtn {
    text-align: center;
    padding-top: 10px;
    padding-bottom: 40px
}

.input-append .btn-group:last-child>.dropdown-toggle {
    height: 50px;
    background: #e2e5e6;
    font-size: 18px;
    font-weight: 700;
    padding-left: 15px
}

.domain select,
.domain input[type=text] {
    padding: 10px;
    height: 50px
}

.ContactUs {
    margin-top: 180px;
}

.ContactUs input[type=text],
.ContactUs input[type=email] {
    height: 50px
}

.ContactUs textarea {
    height: 150px
}

.ContactUs .btn {
    width: 100%;
    margin: 5px 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.ContactUs .footer__widget-info li .fa-envelope {
    padding-top: 4px;
}

.contact_info .form-group .btn {
    width: 100%;
    margin: 0px 0px;
}

address {
    color: #70747a
}


/**.mapwrap iframe {
    margin-bottom: 20px
}**/

.footer {
    position: relative;
    color: #fff;
    background: url(../images/footer.jpg) no-repeat #232a31;
    background-size: cover;
    overflow: hidden;
    /**margin-top: 80px;**/
}

.footer-logo,
.footer-logo img {
    width: 100%;
    padding-top: 10px;
}

.footer h1,
.footer h3 {
    color: #fff
}

.footerlinks {
    margin: 20px 0
}

.footerlinks p {
    color: #68737b;
    text-transform: uppercase;
    padding-top: 15px
}

.footerlinks ul {
    margin: 0;
    padding: 0;
    list-style: none
}

.footerlinks ul li {
    color: #fff;
    padding: 2px 0
}

.footerlinks ul li a {
    color: #fff
}

.copyright {
    margin: 30px 0
}

.modal-header {
    padding: 10px 30px;
    padding-right: 15px
}

.modal-body {
    padding: 30px;
    padding-bottom: 15px
}

.LoginSignup input[type=text],
.LoginSignup input[type=password] {
    font-size: 14px;
    border-radius: 3px;
    font-weight: 400
}

.LoginSignup .btn {
    width: 100%;
    margin: 0
}

.sidebar {
    border: 1px solid #000;
    border-radius: 25px;
    padding: 0 0px 0 20px;
    background: #fafafa;
}

.blogpost {
    margin-bottom: 30px;
    padding-bottom: 20px;
}

.blogpost img {
    padding: 10px 0;
    max-width: 100%;
    min-width: 100%
}

.blog h1.title {
    font-size: 30px;
    line-height: 32px
}

.blog h3.subtitle {
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    padding-bottom: 5px;
    margin-top: 0;
    color: #5f5f5f
}

.b-img {
    width: 100% !important;
    text-align: center;
}

.b-img img {
    width: 50% !important;
    min-width: 50% !important;
    text-align: center;
    margin: 20px 0px;
}

.bloglist {
    margin: 0;
    padding: 0;
    list-style: none
}

.bloglist li {
    padding: 5px 0;
    color: #666
}

.bloglist li a {
    color: #666
}

.commentform input {
    height: 40px
}

.commentform textarea {
    height: 150px
}

.commentform p {
    text-align: right
}

.commentform .btn {
    margin-right: 0
}

.media-list p {
    margin-bottom: 30px
}

.media-list .timestamp {
    font-size: 12px;
    color: #999;
    display: block;
    padding: 5px 0
}

@media(max-width:1200px) {
    .img-pos {
        right: -18px;
    }
    .img-pos1 {
        top: -30px;
    }
}

@media(max-width:1024px) {
    .img-pos1 {
        top: 2px;
        left: 90px;
    }
    #productivity .img-pos {
        top: 5px;
    }
    .navbar .nav>li>a {
        font-size: 11px;
        letter-spacing: 1px;
    }
    .why-us-pos1 .why-us-contain {
        padding: 0px 10px 0px 20px;
    }
    .why-us-pos1 {
        top: -16px;
    }
    .why-us-pos .why-us-contain {
        padding: 0px 10px 0px 20px;
    }
    .why-us-pos {
        top: 5px;
    }
}

@media(max-width:979px) {
    .hero .hero-unit {
        /**padding: 190px 0;**/
        padding-bottom: 0
    }
    .hero .hero-unit h3 {
        font-size: 18px;
        line-height: 25px;
        padding-top: 5px;
        padding-bottom: 5px;
        font-weight: 400
    }
    .navbar .navbar-btn {
        margin-top: 20px;
        background: 0 0;
        text-shadow: none;
        border: 0;
        box-shadow: none
    }
    .navbar .navbar-btn:hover {
        background: 0 0
    }
    .navbar-fixed-top.navbar-absolute {
        position: absolute;
        margin: 0
    }
    .navbar-collapse .nav>li>a:hover,
    .navbar-collapse .nav>li>a:focus,
    .navbar-collapse .dropdown-menu a:hover,
    .navbar-collapse .dropdown-menu a:focus {
        background: 0 0
    }
    .slide2,
    .slide3 {
        padding-top: 150px
    }
    .slide3 h1,
    .slide2 h1 {
        font-size: 34px
    }
    .slide3 h3,
    .slide2 h3 {
        font-size: 18px;
        line-height: 25px;
        padding-top: 5px;
        padding-bottom: 5px;
        font-weight: 400
    }
    .SectionHead h2 {
        width: 100%;
        padding: 0px 0px;
        text-align: center;
    }
    .SectionHead p {
        width: 100%;
        padding: 0px 0px 40px 0px;
        text-align: left;
    }
    .padding-top-80,
    .padding-left-50 {
        padding-top: 0px;
        padding-left: 0px;
    }
    .img-pos {
        position: static;
        width: 100%;
    }
    .equal-padding {
        padding: 80px 0px;
    }
    .img-pos1 {
        position: static;
        width: 100%;
    }
    .equal-padding80 {
        padding: 0px 0px;
    }
    .why-us-pos1 {
        position: relative;
        right: 0px;
        top: 0px;
    }
    .why-us-pos {
        position: relative;
        left: 0px;
        top: -15px;
    }
    .owl-nav .owl-prev {
        left: -20px;
    }
    .owl-nav .owl-next {
        right: -20px;
    }
    .ul-padding p {
        text-align: left;
        padding: 0 0 0 0;
    }
    #productivity .img-pos {
        position: initial;
        margin-bottom: 40px;
    }
    .why-us .SectionHead h3 br,
    .why-us .SectionHead p br {
        display: none;
    }
    .why-us .SectionHead h3,
    .why-us .SectionHead p {
        text-align: left;
    }
    #productivity .SectionHead h4 br {
        display: none;
    }
    .contact-side-txt {
        position: relative;
        width: 100%;
        text-align: center;
    }
    .our-scope .our-scope-box {
        margin-bottom: 25px;
    }
    .p-top {
        padding-top: 80px;
    }
    .scope-sub-detail {
        padding: 0px 0px 0px 0px;
        text-align: center;
    }
    .navbar .nav>li>a {
        font-size: 10px;
    }
    #migrate-cloud {
        padding-top: 40px;
    }
    .mb-20 {
        margin-bottom: 20px !important;
    }
    .why-us-img .content-details {
        top: 30%;
        left: 30%;
        opacity: 1;
    }
    .why-us-img .content-details p {
        opacity: 1;
    }
    .why-us-img .content .content-overlay {
        opacity: 1;
        height: 96%;
        bottom: 2%;
    }
}

@media(max-width:767px) {
    .jumbotron {
        padding: 20px;
        margin-top: -20px;
        height: auto
    }
    .hero .hero-unit {
        padding: 50px 0;
        padding-bottom: 0
    }
    .hero .hero-unit h1 {
        font-size: 30px
    }
    .flex-direction-nav {
        display: none
    }
    .PageHead h3,
    .FeatLayout h3 {
        font-size: 20px;
        line-height: 25px;
        padding-top: 5px;
        padding-bottom: 5px
    }
    .jumbotron .navbar-fixed-top.navbar-absolute {
        top: 20px
    }
    .navbar .navbar-btn {
        margin-top: 23px
    }
    .domain {
        padding: 0 20px;
        margin-bottom: -20px
    }
    .domain .input-append input.span11 {
        width: 83%
    }
    .footer {
        padding: 20px;
        margin-bottom: -20px
    }
    .owl-nav .owl-prev {
        left: -20px;
    }
    .owl-nav .owl-next {
        right: -20px;
    }
    #productivity .img-pos {
        position: initial;
    }
}

@media(max-width:480px) {
    .domain .input-append input.span11 {
        width: 74%
    }
    .ticklist li {
        width: 100%
    }
    .modal {
        width: auto
    }
    .hero .hero-unit h1 {
        font-size: 26px;
    }
    .banner-heading h1 {
        font-size: 30px;
        letter-spacing: 2px;
    }
    .copyright .d-class {
        display: contents;
    }
    .why-us-img .content-details p {
        font-size: 1.0em !important;
    }
    .owl-nav .owl-prev {
        left: -20px;
        top: 140px;
    }
    .owl-nav .owl-next {
        right: -20px;
        top: 140px;
    }
}

@media(max-width:375px) {
    .why-us-img .content-details p {
        font-size: 1.0em !important;
    }
    .why-us-img .content-details {
        top: 25%;
        left: 30%;
        opacity: 1;
    }
}

@media(max-width:360px) {
    .why-us-img .content-details p {
        font-size: 1.0em !important;
    }
    .why-us-img .content-details {
        top: 22%;
        left: 30%;
        opacity: 1;
    }
}

@media(max-width:320px) {
    .hero .hero-unit h1 {
        font-size: 20px;
    }
    .why-us-img .content-details p {
        font-size: 0.9em !important;
    }
    .why-us-img .content-details {
        top: 21%;
    }
}

@media(min-width:768px) {
    .navbar li.dropdown:hover ul {
        display: block
    }
}

.navbar .pull-right>li>.dropdown-menu,
.navbar .nav>li>.dropdown-menu.pull-right {
    top: 97%
}

.scrollup {
    width: 40px;
    height: 40px;
    opacity: .4;
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: none;
    text-indent: -9999px;
    background: url(../images/icon_top.html) no-repeat
}

.navbar li.dropdown ul {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none
}

.img-responsive {
    width: auto \9;
}