body {
    font-size: 17px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    color: #666;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Roboto Slab", serif;
}

p:last-of-type {
    margin-bottom: 0;
}

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

#preloader {
    position: fixed;
    background: #fff;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

#preloader img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.header {
    position: fixed;
    width: 100%;
    background: transparent;
    padding: 20px 0;
    z-index: 100;
    transition: all 0.4s ease;
    font-family: 'Open Sans', sans-serif;
}

.header-logo a {
    display: inline-block;
}

.header-menu>ul {
    float: right;
    line-height: 20px;
    font-size: 14px;
}

.header-menu>ul>li {
    float: left;
}

.header-menu>ul>li>a {
    padding: 20px 15px;
    color: #fff;
    display: inline-block;
    text-decoration: none;
    transition: all 0.4s ease;
}

.mob-menu-btn {
    float: right;
    color: #fff;
    font-size: 25px;
    display: none;
    padding: 10px 15px;
    margin-right: -15px;
    cursor: pointer;
}

.header.scrolled .mob-menu-btn {
    color: #000;
}

.header.scrolled {
    padding: 10px 0px;
    background: #fff;
    box-shadow: 0 0 1px 0 #bbb;
}

.header.scrolled .header-menu>ul>li>a {
    color: #000;
}

.black-logo,
.header.scrolled .header-logo img {
    display: none;
}

.header.scrolled .header-logo img.black-logo {
    display: block;
}

.dropdown-li,
.dropdown-li>a {
    position: relative;
}

.dropdown-li>a:after {
    content: "\f107";
    font-family: "FontAwesome";
    font-size: 12px;
    margin-left: 5px;
}

.dropdown-li>ul {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    background: #fff;
    border-radius: 0;
    left: 0;
    border: 0;
    padding: 0;
    min-width: 180px;
    box-shadow: 0 1px 3px rgb(0 0 0 / 15%);
    transition: all 0.3s ease;
}

.dropdown-li:hover>ul {
    opacity: 1;
    visibility: visible;
}

.dropdown-li>ul>li>a {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 11px 20px;
    font-size: 13px;
    color: #000;
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown-li>ul>li:last-child>a {
    border: 0;
}

.dropdown-li>ul>li>a:hover {
    padding-left: 25px;
}

.mob-menu {
    position: absolute;
    bottom: 0;
    transform: translate(0, 100%);
    background: #f5f4f4;
    width: 100%;
    font-size: 14px;
    display: none;
}

.mob-menu>ul>li>a {
    position: relative;
    display: block;
    line-height: 20px;
    padding: 10px 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    color: #000;
    text-decoration: none;
}

.mob-menu>ul>li>a:hover {
    color: #b51b1b;
}

.mob-menu>ul>li>a>i {
    margin-right: 5px;
    font-size: 12px;
}

.mob-menu .dropdown-li>a:after {
    float: right;
}

.mob-menu .dropdown-li>ul {
    position: relative;
    width: 100%;
    display: none;
    visibility: visible;
    opacity: 1;
    box-shadow: none;
    background: #f5f4f4;
}

.mob-menu .dropdown-li.opened-li>ul {
    display: block;
}

.mob-menu .dropdown-li>ul>li>a {
    padding-left: 25px;
}

.home-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url("../images/homepagebg.jpg") no-repeat center center;
    background-size: cover;
    color: #fff;
}

.banner-center {
    position: absolute;
    top: 57%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.banner-heading>h1 {
    font-size: 45px;
    line-height: 1;
    text-transform: capitalize;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 1px;
    color: #fff;
}

.banner-heading>h1:last-child {
    margin-bottom: 0;
}

.banner-heading>p {
    font-size: 24px;
    line-height: 1;
    font-weight: 400;
}

.banner-form-area {
    width: 100%;
    max-width: 430px;
    background: rgba(0, 0, 0, 0.6);
    padding: 25px 30px;
    margin-top: 40px;
}

.banner-form-area>h2 {
    font-size: 26px;
    margin-bottom: 20px;
    text-transform: uppercase;
    line-height: 1.1;
    font-weight: 700;
    color: #fff;
}

.banner-form {
    width: 100%;
}

.banner-form input {
    width: 100%;
    height: 56px;
    padding: 16px;
    font-size: 18px;
    line-height: 25px;
    font-weight: 300;
    color: #202020;
    border: 1px solid #eee;
    border-radius: 0;
    outline: 0;
    margin-bottom: 30px;
    font-family: 'Open Sans', sans-serif;
}

.banner-form input:focus {
    border-color: #b51b1b;
}

.banner-submit {
    padding: 14px 45px;
    border: 0;
    font-size: 18px;
    background: #b51b1b;
    color: #fff;
    transition: all 0.4s ease;
    float: right;
    border-radius: 4px;
    font-family: 'Open Sans', sans-serif;
}

.banner-submit:hover {
    background: #273589;
}

.banner-scroll-down,
.banner-scroll-down:hover,
.banner-scroll-down:active,
.banner-scroll-down:focus {
    position: absolute;
    left: 50%;
    bottom: 0;
    font-size: 70px;
    transform: translate(-50%, 0);
    cursor: pointer;
    color: #fff;
    line-height: 1;
}

.white-section {
    padding: 80px 0;
}

.section-heading>h2 {
    position: relative;
    font-size: 35px;
    color: #b51b1b;
    text-transform: capitalize;
    font-weight: 400;
    margin: 0;
    padding: 0 0 20px;
}

.section-heading+.section-heading {
    margin-top: 60px;
}

.section-heading>h2:last-child {
    padding-bottom: 0;
}

.section-heading.line-below>h2 {
    margin-bottom: 5px;
}

.section-heading.line-below>h2:before {
    content: "";
    position: absolute;
    background: #b51b1b;
    width: 100px;
    height: 2px;
    left: 0;
    bottom: 7px;
}

.section-heading>h6 {
    font-size: 18px;
    font-family: 'Lato', sans-serif;
    line-height: 25px;
}

.section-heading.text-center {
    padding-bottom: 60px;
}

.section-heading.text-center.pb-40 {
    padding-bottom: 40px;
}

.section-heading.text-center>h6 {
    width: 100%;
    max-width: 840px;
    margin: 0 auto;
}

.service-tabs-area>ul>li {
    width: 20%;
    text-align: center;
}

.four-service-tabs-area>ul>li {
    width: 25%;
    text-align: center;
}

.section-heading>h5 {
    font-size: 18px;
    color: #202020;
    font-weight: 400;
    margin-bottom: 10px;
    line-height: 25px;
}

.section-heading>p {
    line-height: 30px;
}

.section-heading>p a:hover {
    color: #000;
}

.service-tabs-area .nav-tabs .nav-item .nav-link {
    position: relative;
    border-radius: 0;
    padding: 15px 20px;
    background: #f5f5f5;
    border: 0;
    border-right: 1px solid #b9b9b9;
    transition: all 0.4s ease;
}

.service-tabs-area .nav-tabs .nav-item:first-child .nav-link {
    border-left: 1px solid #b9b9b9;
}

.service-tabs-area>ul>li>a>i {
    font-size: 30px;
    color: #202020;
    transition: all 0.4s ease;
}

.service-tabs-area>ul>li>a>h4 {
    font-size: 18px;
    color: #202020;
    font-weight: 400;
    margin: 0;
    transition: all 0.4s ease;
}

.service-tabs-area .nav-tabs .nav-item .nav-link:hover {
    background: #eee;
}

.service-tabs-area .nav-tabs .nav-item .nav-link:hover i {
    color: #b51b1b;
}

.service-tabs-area .nav-tabs .nav-item .nav-link.active {
    background: #fff;
}

.service-tabs-area .nav-tabs .nav-item .nav-link.active i {
    color: #b51b1b;
}

.service-tabs-area .nav-tabs .nav-item .nav-link::after {
    content: "";
    border-bottom: 3px solid #b51b1b;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: all 0.4s ease;
}

.service-tabs-area .nav-tabs .nav-item .nav-link:hover::after,
.service-tabs-area .nav-tabs .nav-item .nav-link.active::after {
    opacity: 1;
}

.service-tabs-content {
    padding-top: 60px;
}

.service-detail-img {
    width: 100%;
}

.service-detail-ul {
    font-size: 14px;
    line-height: 20px;
    font-family: 'Open Sans', sans-serif;
}

.service-detail-ul li {
    position: relative;
    padding: 5px 0 5px 30px;
}

.service-detail-ul li::before {
    content: '\f00c';
    position: absolute;
    font-family: "FontAwesome";
    font-weight: 600;
    top: 5px;
    left: 0;
    font-size: 13px;
    color: #b51b1b;
}

.why-us-ul {
    display: flex;
    flex-wrap: wrap;
}

.why-us-ul>li {
    width: 33.33%;
    border-right: 1px solid #dedede;
    border-bottom: 1px solid #dedede;
    padding: 30px;
    background: transparent;
    transition: all 0.4s ease;
}

.why-us-ul>li:nth-child(3),
.why-us-ul>li:nth-child(6) {
    border-right: 0;
}

.why-us-ul>li:nth-child(4),
.why-us-ul>li:nth-child(5),
.why-us-ul>li:nth-child(6),
.why-us-ul.no-border-bottom>li {
    border-bottom: 0;
}

.why-us-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.why-us-icon {
    width: 55px;
    line-height: 1;
}

.why-us-icon>i::before {
    font-size: 40px;
    color: #b51b1b;
    transition: all 0.4s ease;
}

.why-us-heading {
    width: calc(100% - 55px);
}

.why-us-heading>h3 {
    font-size: 20px;
    font-weight: 400;
    text-transform: capitalize;
    color: #b51b1b;
    margin: 0;
    transition: all 0.4s ease;
}

.why-us-heading>h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: capitalize;
    color: #202020;
    margin: 0;
    padding: 3px 0;
    transition: all 0.4s ease;
}

.why-us-detail {
    padding: 40px 0;
    transition: all 0.4s ease;
    line-height: 22px;
}

.why-us-ul>li:hover {
    background: #b51b1b;
}

.why-us-ul>li:hover .why-us-icon>i::before,
.why-us-ul>li:hover .why-us-heading>h3,
.why-us-ul>li:hover .why-us-detail {
    color: #fff;
}

.counter-section {
    position: relative;
    background: url("../images/counter-bg.jpg") no-repeat center bottom;
    background-size: cover;
    color: #fff;
    text-align: center;
    font-family: 'Roboto Slab', serif;
}

.counter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(39 53 137);
}

.counter-text {
    padding: 45px 0;
    margin: 0 -15px;
    background: rgb(181 27 27);
}

.counter-text>p {
    font-size: 22px;
    line-height: 43px;
    text-transform: capitalize;
}

.counter-detail {
    padding: 40px 0;
    margin: 0 -15px;
}

.counter-detail>i {
    display: block;
    font-size: 50px;
    line-height: 30px;
    margin-bottom: 15px;
}

.counter-detail>i::before {
    font-size: 50px;
    line-height: 60px;
}

.counter-detail>strong {
    display: block;
    font-size: 60px;
    line-height: 1;
}

.counter-detail>span {
    display: block;
    font-size: 20px;
    white-space: nowrap;
}

.pricing-tabs-area {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    font-family: 'Roboto Slab', serif;
    padding-bottom: 20px;
}

.pricing-tabs-area>.nav-tabs {
    border-bottom: 0;
}

.pricing-tabs-area>.nav-tabs>.nav-item>.nav-link,
.pricing-tabs-area>.nav-tabs>li>a {
    font-size: 18px;
    line-height: 25px;
    display: block;
    padding: 10px 15px;
    border: 0;
    border-radius: 0;
    color: #a0a0a0;
    font-weight: 400;
    text-decoration: none;
}

.pricing-tabs-area>.nav-tabs>.nav-item>.nav-link.active {
    color: #b51b1b;
}

.pricing-tabs-area>.nav-tabs>li>a>sup {
    font-weight: 700;
    font-size: 11px;
    color: #b51b1b;
    padding: 2px;
    top: -10px;
    font-family: 'Open Sans', sans-serif;
}

.pricing-tabs-area>.nav-tabs>.nav-item>.nav-link.dropdown-toggle::after {
    display: none;
}

.pricing-tabs-area>.nav-tabs>.nav-item:hover>.dropdown-menu {
    display: block;
}

.pricing-tabs-area>.nav-tabs>.nav-item>.dropdown-menu {
    padding: 0;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgb(0 0 0 / 20%);
    border: 0;
    font-size: 14px;
    line-height: 30px;
    font-family: 'Open Sans', sans-serif;
}

.pricing-tabs-area>.nav-tabs>.nav-item>.dropdown-menu>a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.pricing-tabs-area>.nav-tabs>.nav-item>.dropdown-menu>a:hover,
.pricing-tabs-area>.nav-tabs>.nav-item>.dropdown-menu>a.active {
    background-color: #f1f1f1;
}

.pricing-section {
    background: #f0f0f0;
    padding: 40px 0;
}

.pricing-section .row {
    margin: 0 -8px;
}

.pricing-section [class^="col-"] {
    padding-left: 8px;
    padding-right: 8px;
}

.single-pricing {
    background: #fff;
    text-align: center;
}

.single-pricing-head {
    padding: 25px 0 15px;
}

.single-pricing-head>h3 {
    font-size: 25px;
    padding: 0 0 25px 0;
    margin: 0;
    color: #000;
    line-height: 1;
    font-weight: 400;
}

.single-pricing-head>h6 {
    font-size: 12px;
    font-weight: 400;
    color: #202020;
    margin: 0;
    text-transform: uppercase;
}

.single-pricing-price {
    background: rgba(255, 42, 64, 0.1);
    color: #262b38;
    font-weight: 400;
    overflow: hidden;
    font-size: 42px;
    line-height: 30px;
    padding: 12px 0;
    font-family: 'Open Sans', sans-serif;
}

.single-pricing-price span {
    display: inline-block;
    position: relative;
}

.single-pricing-price sup {
    font-size: 20px;
    vertical-align: super;
    line-height: 30px;
    top: 0;
}

.single-pricing-price sub {
    font-size: 18px;
    line-height: 30px;
    bottom: 0;
    text-decoration: line-through;
    margin-left: 5px;
}

.single-pricing:hover .single-pricing-price span {
    -webkit-animation: moveUp 0.4s forwards;
    animation: moveUp 0.4s forwards;
    -webkit-animation-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
    animation-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
}

.pricing-body .card {
    border: 0;
}

.pricing-body .card .card-header {
    border: 0;
    background: transparent;
    padding: 0;
}

.pricing-body .card .card-header a {
    display: block;
    width: 100%;
    position: relative;
    color: #fff;
    background: #909497;
    line-height: 25px;
    padding: 17px 15px;
    transition: all 0.4s ease;
}

.pricing-body .card .card-header a.collapsed {
    color: #a0a0ac;
    background: #fff;
}

.pricing-body .card-body {
    background: #f5f4f4;
    padding: 15px 0;
}

.pricing-body .card .card-header a:after {
    content: '\f106';
    font-family: 'FontAwesome';
    font-size: 24px;
    text-align: center;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translate(-50%, -50%);
}

.pricing-body .card .card-header a.collapsed:after {
    content: '\f107';
}

.pricing-sec-heading {
    font-size: 20px;
    line-height: 25px;
    margin-bottom: 15px;
    font-weight: 400;
    color: #202020;
}

.pricing-body {
    padding: 25px 0 30px;
    font-size: 16px;
    color: #8b909d;
    line-height: 30px;
    font-family: 'Open Sans', sans-serif;
}

.pricing-body ul li {
    padding: 3px 0;
}

.pricing-body ul li strong {
    color: #000;
}

.pricing-btn {
    padding-bottom: 25px;
    font-family: 'Open Sans', sans-serif;
}

.pricing-btn a:nth-child(2) {
    display: none;
}

.pricing-btn a {
    display: inline-block;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ffffff;
    border-radius: 1px;
    border: 2px solid #b51b1b;
    background-color: #b51b1b;
    font-size: 12px;
    padding: 3px 16px;
    transition: all 0.3s;
    line-height: 30px;
}

.pricing-btn a:hover {
    box-shadow: 1px 1px 7px #505050;
    color: #fff;
    background: #273589;
    border: 2px solid #273589;
}

.pricing-view-more-area {
    display: none;
}

.pricing-view-more-btn {
    cursor: pointer;
    padding: 3px 0;
    color: #b51b1b;
}

#pricing_logo .pricing-body {
    height: 271px;
}

.big-pricing {
    background: #fff;
    padding: 50px 40px;
    text-align: center;
    position: relative;
}

.big-pricing .single-pricing-head {
    padding-top: 25px;
}

.big-pricing .single-pricing-price {
    font-size: 84px;
    background: transparent;
    overflow: initial;
}

.big-pricing .pricing-body>h4 {
    padding-bottom: 25px;
    font-size: 18px;
    line-height: 20px;
    margin: 0;
    color: #202020;
    font-weight: 400;
}

.big-pricing .single-pricing-head>h6 {
    text-transform: capitalize;
}

.pricing-left-border {
    border-left: 1px solid #cccccc;
}

.pricing-deal {
    position: absolute;
    right: -3px;
    top: -3px;
}

.simple-tabs-area {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.simple-tabs-area {
    padding-bottom: 45px;
}

.simple-tabs-area>.nav-tabs {
    border: 0;
}

.simple-tabs-area>.nav-tabs>.nav-item+.nav-item {
    margin-left: 20px;
}

.simple-tabs-area>.nav-tabs>.nav-item>.nav-link {
    position: relative;
    background: transparent;
    font-size: 14px;
    padding: 10px 22px;
    font-weight: 700;
    border-radius: 0px;
    color: #1b2834;
    border: 1px solid #ebebeb;
    transition: all .4s ease;
    text-align: center;
}

.portfolio-page>li {
    width: auto !important;
    padding: 5px !important;
}

.simple-tabs-area.portfolio-tabs-area>.nav-tabs>.nav-item>.nav-link {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
}

.simple-tabs-area>.nav-tabs>.nav-item>.nav-link:hover {
    background: #eee;
    color: #b51b1b;
}

.simple-tabs-area>.nav-tabs>.nav-item>.nav-link.nav-link.active {
    background: #b51b1b;
    color: #fff;
}

.simple-tabs-area>.nav-tabs>.nav-item>.nav-link::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 50%;
    color: #b51b1b;
    transform: translate(-50%, 50%);
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 7px solid #b51b1b;
    opacity: 0;
    visibility: hidden;
    transition: all .4s ease;
}

.simple-tabs-area>.nav-tabs>.nav-item>.nav-link.active::after {
    opacity: 1;
    visibility: visible;
}


.portfolio-imgs-ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.portfolio-imgs-ul>li {
    width: 20%;
    padding: 5px;
    display: flex;
}

.video-portfolio .portfolio-imgs-ul>li {
    width: 33.33%;
}

.portfolio-imgs-ul>li>a {
    display: inline-block;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    transition: all .4s ease;
}

.portfolio-imgs-ul>li>a::before {
    content: "\f002";
    position: absolute;
    font-family: "FontAwesome";
    font-weight: 600;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    background: #b51b1b;
    color: #fff;
    text-align: center;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0;
    transition: all .4s ease;
}

.portfolio-imgs-ul>li>a:hover::before {
    opacity: 1;
    top: 50%;
}

.portfolio-imgs-ul>li>a>img {
    width: 100%;
    transform: scale(1);
    transition: all .4s ease;
}

.portfolio-imgs-ul>li>a:hover>img {
    transform: scale(1.1);
}

.fancybox-image {
    background: #fff;
}

.link-area a {
    padding: 14px 45px;
    border: 0;
    font-size: 14px;
    background: #b51b1b;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    border-radius: 4px;
    transition: all 0.4s ease;
    font-family: 'Open Sans', sans-serif;
}

.link-area a+a {
    margin-left: 10px;
}

.link-area a:hover {
    background: #273589;
    color: #fff;
}

.about-us-img {
    width: 100%;
}

.work-detail-tabs-area {
    text-align: center;
}

.work-detail-tabs-area>.nav-tabs {
    border-bottom: 0;
}

.work-detail-tabs-area.logo-design-work>.nav-tabs>.nav-item {
    width: 14.2857%;
}

.work-detail-tabs-area.web-design-work>.nav-tabs>.nav-item {
    width: 16.6666%;
}

.work-detail-tabs-area>.nav-tabs>.nav-item>.nav-link {
    position: relative;
    border: 0;
    color: #7a6b66;
    border-bottom: 1px solid #666;
    padding: 0;
    transition: all .4s ease;
}

.work-detail-tabs-area>.nav-tabs>.nav-item>.nav-link::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    color: #b51b1b;
    transform: translate(-50%, 50%);
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid #b51b1b;
    opacity: 0;
    visibility: hidden;
    transition: all .4s ease;
}

.work-icon {
    width: 100px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    margin: 0 auto;
    border: 2px solid #b51b1b;
    color: #b51b1b;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.work-detail-tabs-area>.nav-tabs>.nav-item>.nav-link>p {
    line-height: 30px;
    padding: 20px 0;
    font-size: 16px;
    transition: all 0.4s ease;
    font-family: 'Open Sans', sans-serif;
}

.work-icon>i {
    line-height: 90px;
}

.work-detail-tabs-area>.nav-tabs>.nav-item>.nav-link.active {
    border-bottom-color: #b51b1b;
}

.work-detail-tabs-area>.nav-tabs>.nav-item>.nav-link.active>.work-icon {
    background: #b51b1b;
    color: #fff;
}

.work-detail-tabs-area>.nav-tabs>.nav-item>.nav-link.active>p {
    color: #b51b1b;
}

.work-detail-tabs-area>.nav-tabs>.nav-item>.nav-link.active::after {
    opacity: 1;
    visibility: visible;
}

.work-detail-content-area {
    padding-top: 60px;
}

.work-detail-img {
    width: 100%;
    margin: -60px 0;
}

.single-testimonial>p {
    font-style: italic;
    margin-bottom: 20px;
}

.single-testimonial-details {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.single-testimonial-img {
    width: 92px;
    padding-right: 20px;
}

.single-testimonial-img>img {
    width: 100%;
    border-radius: 50%;
}

.single-testimonial-info>p {
    font-size: 18px;
    font-family: 'Open Sans', sans-serif;
}

.single-testimonial-info>span {
    font-style: italic;
}

.flexslider {
    margin: 0;
}

#testimonial-slider .flex-viewport {
    width: 100%;
    max-width: 410px;
    float: left;
}

#testimonial-slider .flex-control-thumbs {
    float: right;
    width: 50%;
    text-align: right;
}

#testimonial-slider .flex-control-thumbs li {
    width: auto;
    float: none;
    margin-left: 8px;
}

.flex-control-thumbs img:hover,
.flex-control-thumbs .flex-active {
    opacity: 1;
}

.flex-control-thumbs img {
    opacity: .1;
}

.flex-direction-nav {
    display: none;
    margin-top: 200px;
}

.flex-direction-nav a:before {
    font-size: 25px;
    color: #b51b1b;
}

.flex-direction-nav .flex-prev {
    left: 0;
}

.flex-direction-nav .flex-next {
    right: 0;
}

.footer {
    padding: 135px 0;
    background-color: #202020;
    color: #fff;
    position: relative;
    font-family: 'Open Sans', sans-serif;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo img {
    width: 100%;
    max-width: 180px;
}

.footer-social {
    margin-bottom: 30px;
}

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

.footer-social ul li {
    padding: 0 7px;
}

.footer-social ul li a {
    display: inline-block;
    font-size: 24px;
    line-height: 50px;
    color: #fff;
    width: 50px;
    height: 50px;
    border: 1px solid #fff;
    border-radius: 50%;
    transition: all 0.4s ease-in-out;
}

.footer-social ul li a:hover {
    border-color: #b51b1b;
    color: #b51b1b;
}

.footer a.footer-terms {
    color: #b51b1b;
    text-decoration: none;
    font-size: 14px;
}

.footer a.footer-terms:hover {
    color: #fff;
}

.back-to-top {
    position: absolute;
    background: #b51b1b;
    color: #fff;
    width: 100px;
    height: 100px;
    font-size: 70px;
    line-height: 85px;
    top: 0px;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 5px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
}

.back-to-top:hover {
    -moz-transform: translate(-50%, -50%) scale(1.1);
    -webkit-transform: translate(-50%, -50%) scale(1.1);
    transform: translate(-50%, -50%) scale(1.1);
    background: #273589;
}


.inner-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    color: #fff;
    max-height: 350px;
}

.inner-banner::before {
    position: absolute;
    content: "";
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.lb-banner {
    background: url("../images/logo-banner.jpg") no-repeat !important;
    background-size: cover !important;
    background-position: 50% -45px !important;
}

.web-banner {
    background: url("../images/web-banner.jpg") no-repeat !important;
    background-size: cover !important;
    background-position: 50% -45px !important;
    max-height: 590px !important;
}

.video-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    color: #fff;
    max-height: 100vh;
    overflow: hidden;
    min-height: 450px;
}

.about-banner {
    background: url("../images/about-banner.jpg") no-repeat !important;
    background-size: cover !important;
}

.banner-back-video {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: -1;
    min-width: 100%;
    min-height: 100%;
}

.banner-link {
    margin-top: 40px;
}

.banner-link a {
    font-size: 18px;
    display: inline-block;
    padding: 7px 25px;
    color: #fff;
    border-radius: 4px;
    border: 1px solid #fff;
    text-decoration: none;
}

.banner-link a.filled-a {
    background: #b51b1b;
    border-color: #b51b1b;
}

.banner-link a.filled-a:hover {
    color: #fff;
}

.banner-link a+a {
    margin-left: 10px;
}

.service-tabs-area>ul>li>a>h3 {
    font-size: 35px;
    line-height: 50px;
    color: #202020;
    font-weight: 400;
    margin-bottom: 0;
}

.service-tabs-area.inner-service-tabs-area>ul>li>a>h4 {
    line-height: 1.42857143;
}

.service-tabs-area>ul>li>a>h6 {
    font-size: 11px;
    color: #202020;
    margin-bottom: 0;
    line-height: 1.42857143;
    font-weight: 400;
}

.service-inner-pricing {
    background: #f5f5f5;
    padding: 25px 52px;
}

.service-inner-pricing.small-padding-div {
    padding: 25px 35px;
}

.service-inner-pricing h2 {
    font-size: 25px;
    margin: 0;
    padding-bottom: 25px;
    color: #000000;
    text-align: center;
    font-weight: 400;
}

.service-inner-pricing h6 {
    font-size: 12px;
    color: #202020;
    text-align: center;
    font-weight: 400;
    text-transform: uppercase;
}

.service-inner-pricing-detail {
    padding: 25px 0 30px;
    font-size: 16px;
    color: #8b909d;
    line-height: 30px;
    font-family: 'Open Sans', sans-serif;
}

.service-inner-pricing .pricing-btn {
    text-align: center;
    padding-bottom: 0;
}

.service-inner-pricing-detail .pricing-view-more-btn {
    text-align: center;
}

.grey-section {
    background: #f4f4f4;
    border-top: 1px solid #d2d2d2;
    padding: 80px 0;
}

.why-us-ul.inner-why-us-ul>li {
    width: 50%;
    border-right: 1px solid #dedede;
    border-bottom: 1px solid #dedede;
    padding: 30px 42px;
}

.why-us-ul.inner-why-us-ul>li:nth-child(2),
.why-us-ul.inner-why-us-ul>li:nth-child(4) {
    border-right: 0;
}

.why-us-ul.inner-why-us-ul>li:nth-child(3),
.why-us-ul.inner-why-us-ul>li:nth-child(4) {
    border-bottom: 0;
}

.why-us-ul.inner-why-us-ul .why-us-detail {
    padding: 25px 0;
}


.inner-portfolio-div {
    margin-bottom: 30px;
}

.inner-portfolio-div a {
    display: inline-block;
    width: 100%;
    position: relative;
    background: #fff;
}

.inner-portfolio-div a img {
    width: 100%;
}

.inner-portfolio-div a::after {
    content: "\f002";
    position: absolute;
    font-family: "FontAwesome";
    font-weight: 600;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    background: #b51b1b;
    color: #fff;
    text-align: center;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0;
    transition: all .4s ease;
}

.inner-portfolio-div a:hover::after {
    opacity: 1;
    top: 50%;
}

.inner-portfolio-div a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.2s;
    -moz-transition: opacity 0.2s;
    -o-transition: opacity 0.2s;
    transition: opacity 0.2s;
}

.inner-portfolio-div a:hover::before {
    opacity: 1;
    visibility: visible;
}

.inner-portfolio-div h3 {
    text-align: center;
    margin: 10px 0 0 0;
    color: #616161;
    font-weight: 600;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    line-height: 30px;
}

.animate-work-content {
    -webkit-animation: animate_service_content;
    animation: animate_service_content;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.animate-work-img {
    -webkit-animation: animate_service_img;
    animation: animate_service_img;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes animate_service_content {
    0% {
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes animate_service_content {
    0% {
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes animate_service_img {
    0% {
        -webkit-transform: translateX(50px);
        transform: translateX(50px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes animate_service_img {
    0% {
        -webkit-transform: translateX(50px);
        transform: translateX(50px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}


.button-play {
    margin: auto;
    display: block;
    position: relative;
    border: 6px solid white;
    box-shadow: 0 4px 6px -3px rgba(black, .3), inset 0 3px 4px -2px rgba(black, .25);
    position: relative;
    width: 200px;
    height: 200px;
    background: #ff0000;
    background-image: linear-gradient(120deg, rgba(lighten(grey, 15%), .3) 50%, grey 51%);
    border-radius: 50%;
    transition: all .2s cubic-bezier(0.68, -0.55, 0.465, 1.55) .2s, border-width .4s cubic-bezier(0.68, -0.55, 0.465, 1.55);
}

.button-play:before {
    display: block;
    position: absolute;
    content: "";
    bottom: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border: 35px solid transparent;
    border-width: 35px 0px 35px 60px;
    border-left-color: white;
    transform: translate(-37%, 50%);
    border-radius: 6px;
}

.button-play:hover:before,
.button-play.active:before {
    animation: playJump 0.5s linear infinite;
}

.showreel {
    font-size: 25px;
    line-height: 30px;
    color: #fff;
    margin-top: 24px;
    text-align: center;
}

@keyframes playJump {

    0% {
        transform: translate(-37%, 60%) scale(1.1, 0.7);
    }

    10% {
        transform: translate(-37%, 30%) scale(0.9, 1.2);
    }

    20% {
        transform: translate(-37%, 15%);
    }

    40% {
        transform: translate(-37%, 10%);
    }

    45% {
        top: 160px;
        height: 40px;
        width: 60px;
        margin-left: -30px;
    }

    50% {
        transform: translate(-37%, 10%);
    }

    55% {
        transform: translate(-37%, 18%);
    }

    60% {
        transform: translate(-37%, 20%);
    }

    65% {
        transform: translate(-37%, 25%);
    }

    70% {
        transform: translate(-37%, 30%);
    }

    90% {
        transform: translate(-37%, 60%) scale(1.2, 0.7);
    }

    100% {
        transform: translate(-37%, 60%) scale(1.4, 0.7);
    }
}


.videotesti-img {
    margin-right: 20px;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.videotesti-detail-1 h5 {
    margin-bottom: 0;
    font-size: 15px;
    font-family: 'Roboto Slab', serif;
    color: #646567;

}

.videotesti-detail-img-div {
    display: flex;
}

.videotesti-detail-img {
    width: 85px;
    float: left;
}

.videotesti-detail-img img {
    border-radius: 50%;
    width: 100%;
}

.videotesti-detail-1 {

    width: calc(100% - 85px);
    float: left;
    padding-left: 20px;
}


#video-testimonial-slider .flex-viewport {
    padding: 15px 0;
}

.videotesti-img:before,
.videotesti-img:after {
    z-index: -1;
    position: absolute;
    content: "";
    bottom: 15px;
    left: 10px;
    width: 50%;
    top: 80%;
    max-width: 300px;
    background: #777;
    -webkit-box-shadow: 0 15px 10px #777;
    -moz-box-shadow: 0 15px 10px #777;
    box-shadow: 0 15px 10px #777;
    -webkit-transform: rotate(-3deg);
    -moz-transform: rotate(-3deg);
    -o-transform: rotate(-3deg);
    -ms-transform: rotate(-3deg);
    transform: rotate(-3deg);
}

.videotesti-img:after {
    -webkit-transform: rotate(3deg);
    -moz-transform: rotate(3deg);
    -o-transform: rotate(3deg);
    -ms-transform: rotate(3deg);
    transform: rotate(3deg);
    right: 10px;
    left: auto;
}

.videotesti-img a {
    display: block;
    position: relative;
    color: #b51b1b;
}

.videotesti-img a:before {
    content: "";
    position: absolute;
    background: rgba(0, 0, 0, .4);
    z-index: 1;
    width: 100%;
    height: 100%;
}

.videotesti-img a:after {
    content: "\f04b";
    font-family: FontAwesome;
    position: absolute;
    background: #fff;
    z-index: 2;
    width: 75px;
    height: 75px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    border-radius: 50%;
    font-weight: 600;
    line-height: 75px;
    font-size: 30px;
    padding-left: 6px;
}

.star-i {
    color: #ffa602;
}

.videotesti-img img {
    width: 100%;
}

.videotesti-detail-1 h2 {
    margin-top: 5px;
    font-weight: 600;
    font-family: 'Roboto Slab', serif;
    margin-bottom: 10px;
    font-size: 20px;
    color: #000;
}

.videotesti-detail p {
    margin: 15px 0 0 0;
}

.pt-0 {
    padding-top: 0;
}

.pb-0 {
    padding-bottom: 0;
}

.pt-10 {
    padding-top: 10px;
}

.pb-10 {
    padding-bottom: 10px;
}

.pt-15 {
    padding-top: 15px;
}

.pb-15 {
    padding-bottom: 15px;
}

.pt-20 {
    padding-top: 20px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pt-30 {
    padding-top: 30px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pt-40 {
    padding-top: 40px;
}

.pb-40 {
    padding-bottom: 40px;
}



@media (min-width: 1200px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1170px;
    }
}

@media (min-width: 1550px) {
    .banner-form-area {
        max-width: 488px;
    }
}

@media (min-width: 1800px) {
    .banner-form-area {
        max-width: 576px;
    }
}


@media (max-width: 992px) {
    .header-menu {
        display: none;
    }

    .mob-menu-btn {
        display: block;
    }

    .header,
    .header.scrolled {
        padding: 10px 0;
        background: #fff;
    }

    .black-logo,
    .header .header-logo img {
        display: none;
    }

    .header .header-logo img.black-logo {
        display: block;
    }

    .header .mob-menu-btn {
        color: #000;
    }
}

@media (max-width: 567px) {
    .home-banner .banner-heading {
        display: none;
    }

    .banner-form-area {
        margin-top: 0;
        padding: 75px 30px;
    }

    .banner-submit {
        width: 100%;
    }

    .service-tabs-area>ul>li>a>h4 {
        display: none;
    }

    .section-heading>h2 {
        line-height: 30px;
        text-align: center;
    }

    .service-detail-img {
        margin-top: 60px;
    }

    .why-us-ul>li {
        border: 0;
        width: 100%;
        text-align: center;
        padding: 30px 15px;
    }

    .why-us-icon,
    .why-us-heading {
        width: 100%;
    }

    #logo-design-pricing .pricing-body {
        height: auto;
    }

    .pricing-section .col-md-3 .single-pricing {
        margin-top: 15px;
    }

    .pricing-section .col-md-3:first-child .single-pricing {
        margin-top: 0;
    }

    .pricing-left-border {
        border: 0;
    }

    .simple-tabs-area .nav-tabs {
        justify-content: center;
    }

    .simple-tabs-area>.nav-tabs>.nav-item,
    .simple-tabs-area>.nav-tabs>.nav-item+.nav-item {
        margin: 7px;
    }

    .portfolio-imgs-ul>li {
        width: 50%;
    }

    #testimonial-slider .flex-control-thumbs {
        display: none;
    }

    .simple-tabs-area.work-tabs-area>.nav-tabs>.nav-item>.nav-link.nav-link {
        min-width: 190px;
    }

    .work-detail-tabs-area.logo-design-work>.nav-tabs>.nav-item,
    .work-detail-tabs-area.web-design-work>.nav-tabs>.nav-item {
        width: 50%;
    }

    .work-detail-tabs-area>.nav-tabs>.nav-item>.nav-link {
        border: 0;
    }

    .work-detail-tabs-area>.nav-tabs>.nav-item>.nav-link::after {
        display: none;
    }

    .work-detail-img {
        display: none;
    }

    .footer-social ul li {
        padding: 5px;
    }

    .flex-direction-nav {
        display: block;
    }

    .single-testimonial {
        padding: 0 30px;
    }

    .banner-scroll-down {
        display: none;
    }

    .counter-detail {
        margin: 0;
    }

    .banner-heading>h1 {
        font-size: 30px;
        line-height: 1.2;
    }

    .banner-heading>p {
        font-size: 17px;
        line-height: 30px;
    }

    .lb-banner,
    .web-banner {
        background-position: center center;
    }

    .service-tabs-area>ul>li>a>h3 {
        font-size: 16px;
    }

    .service-tabs-area>ul>li>a>h6 {
        display: none;
    }

    .reverse-on-mob {
        flex-flow: column-reverse;
    }

    .service-inner-pricing,
    .service-inner-pricing.small-padding-div {
        margin-bottom: 60px;
        padding: 25px;
    }

    .service-tabs-content .section-heading>h2 {
        text-align: left;
    }

    .service-inner-pricing-detail {
        text-align: center;
    }

    .section-heading.text-center>h6 br {
        display: none;
    }

    .why-us-ul.inner-why-us-ul>li {
        width: 100%;
        border: 0;
        padding: 30px 15px;
    }

    .video-side-banner {
        display: none;
    }

    .banner-link a {
        font-size: 16px;
    }

    .banner-heading>h1 {
        margin-bottom: 15px;
    }

    .banner-link {
        margin-top: 20px;
    }

    .video-portfolio .portfolio-imgs-ul>li {
        width: 100%;
    }

    .link-area a+a {
        margin-left: 0px;
        margin-top: 10px;
    }

    .mob-none {
        display: none;
    }

    .videotesti-detail-img-div {
        margin-top: 40px;
    }

    #video-testimonial-slider .flex-viewport {
        padding: 0 0;
    }

    .videotesti-detail-1 h2 {
        margin-top: 0;
        margin-bottom: 0px;
    }

    .videotesti-detail-img {
        width: 70px;
    }
}

.bounce-arrow {
    -webkit-animation-name: bounce-arrow;
    -moz-animation-name: bounce-arrow;
    -o-animation-name: bounce-arrow;
    animation-name: bounce-arrow;
}

.animated-infinite {
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -ms-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    animation-fill-mode: both;
    -webkit-animation-duration: 2s;
    -moz-animation-duration: 2s;
    -ms-animation-duration: 2s;
    -o-animation-duration: 2s;
    animation-duration: 2s;
}

@-webkit-keyframes bounce-arrow {

    0%,
    20%,
    50%,
    80%,
    100% {
        -webkit-transform: translate(-50%, 0);
    }

    40% {
        -webkit-transform: translate(-50%, -30px);
    }

    60% {
        -webkit-transform: translate(-50%, -15px);
    }
}

@-moz-keyframes bounce-arrow {

    0%,
    20%,
    50%,
    80%,
    100% {
        -moz-transform: translate(-50%, 0);
    }

    40% {
        -moz-transform: translate(-50%, -30px);
    }

    60% {
        -moz-transform: translate(-50%, -15px);
    }
}

@-o-keyframes bounce-arrow {

    0%,
    20%,
    50%,
    80%,
    100% {
        -o-transform: translate(-50%, 0);
    }

    40% {
        -o-transform: translate(-50%, -30px);
    }

    60% {
        -o-transform: translate(-50%, -15px);
    }
}

@keyframes bounce-arrow {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translate(-50%, 0);
    }

    40% {
        transform: translate(-50%, -30px);
    }

    60% {
        transform: translate(-50%, -15px);
    }
}


@-webkit-keyframes moveUp {
    50% {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    51% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    52% {
        opacity: 1;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes moveUp {
    50% {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    51% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    52% {
        opacity: 1;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

/* popup-css */
.custom-popup {
    width: 100%;
    /* height: 100%; */
    background-image: none;
    background-size: cover;
    border-radius: 10px;
    z-index: 99999999;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    transition: all .4s ease;
    padding: 50px 40px;
    flex-direction: column;
    opacity: 1;
    background: #b51b1b;
}

.custom-popup a.closed {
    position: relative;
    display: block;
    width: 100%;
}

.custom-popup a.closed:before {
    content: "\f00d";
    position: absolute;
    top: -36px;
    right: -26px;
    font-family: "Font Awesome 5 Free";
    font-size: 20px;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 50px;
    padding: 1px 10px;
    font-weight: 600;
}

.custom-popup h3 {
    font-size: 36px;
    color: #fff;
    font-weight: 700;
    padding: 0;
    margin: 0;
    margin-bottom: 10px;
}

.custom-popup p {
    color: #fff;
    font-size: 20px;
}

.fixedform-1 form {
    width: 100%;
    margin: 15px 0 0;
}

.fixedform-1 .mm-field {
    position: relative;
    border-radius: 2px;
}

.fixedform-1 .mm-field {
    margin-bottom: 15px;
    width: 100%;
    position: relative;
}


/* .fixedform-1 .jform .mm-field {
    position: relative;
}

.fixedform-1 .jform .mm-field:before {
    font-family: "FontAwesome";
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #000;
    z-index: 999;
} */


/* .namefield:before {
    content: "\f2c0";
}

.emailfield:before {
    content: "\f003";
}

.pnfields:before {
    font-family: "FontAwesome";
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px !important;
    color: #000;
    z-index: 999;
    content: "\f10b";
} */

.fixedform-1 label:first-child {
    position: absolute;
    top: 14px;
    left: 50px;
    z-index: 2;
    color: inherit;
    font-size: 15px;
    transform: translate3d(0, 0, 0);
    transition: all .2s ease-in-out;
    margin: 0;
    z-index: 99;
    font-weight: 400;
}

.fixedform-1 label.labelfocus {
    top: 2px;
    font-size: 13px;
    left: 46px;
}

.textarea label:first-child {
    left: 20px;
}

.fixedform-1 .mm-field input,
.fixedform-1 .mm-field textarea {
    width: 100%;
    color: #000 !important;
}

.fixedform-1 .mm-field input+label {
    color: #fff;
    font-size: 16px;
}

input.error {
    border-color: #b51b1b !important;
}

.fixedform-1 .mm-field input,
.fixedform-1 .mm-field input[type=text],
.fixedform-1 .mm-field select,
.fixedform-1 .mm-field textarea,
[type=email] {
    z-index: 10;
    position: relative;
    border: 1px solid #fff;
    padding: 15px 25px;
    height: 100%;
    width: 100%;
    border-radius: 8px;
    outline: none;
    color: #000;
}

.fixedform-1 .input-btn>input {
    font-size: 18px;
    color: #242424;
    background: #fff;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 25px;
    outline: 0;
    border: none;
    width: auto;
}

.fixedform-1 .input-btn>button {
    font-size: 18px;
    color: #ffffff;
    background: #273589;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 25px;
    outline: 0;
    border: none;
    width: auto;
}

.fixedform-1 .input-btn>button:hover {
    background: #fff;
    color: #000;
}

.gradient_form .modal-dialog {
    max-width: 700px;
    margin: 0 auto;
}

.gradient_form .modal-content {
    border: 0;
    /* border-radius: 20px; */
    /* border: 2px solid #000; */
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none !important;
    height: 100%;
    background-color: transparent;
}

.gradient_form .modal-body {
    padding: 0;
    height: 100%;
}

.gradient_form.modal {
    top: 57%;
    transform: translateY(-50%);
    z-index: 999999;
    overflow-y: hidden;
    height: 100%;
    align-items: center;
}

.modal.gradient_form.in {
    display: flex !important;
}

body.modal-open .main-wrapper {
    filter: blur(5px);
}

.modal-backdrop.in {
    filter: alpha(opacity=50);
    opacity: .6;
}

.modal-backdrop {
    background-color: #000;
    width: 100%;
    height: 100%;
}

.custom-popup h4 {
    color: #fff;
    font-size: 42px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 45px;
    margin-top: 10px;
}

/* portfolio-page-css */
.inner-banner {
    background:
        url('../images/Portfolio.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
    width: 100%;
    height: 100vh;
    color: #fff;
    max-height: 350px;
}

.inner-banner::before {
    position: absolute;
    content: "";
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.simple-tabs-area {
    justify-content: center;
}

.simple-tabs-area>.nav-tabs>.nav-item>.nav-link::after {
    display: none;
}

.portfolioother {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.portfolioother>li {
    width: 20% !important;
    padding: 5px;
}

.portfolio-imgs-ul>li>ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.portfolio-imgs-ul>li>ul>li {
    width: 20%;
    padding: 5px;
}

.portfolio-imgs-ul>li>ul>li a {
    display: inline-block;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    transition: all .4s ease;
}

.portfolio-imgs-ul>li>ul>li>a:hover::before {
    opacity: 1;
    top: 50%;
}

.portfolio-imgs-ul>li>ul>li a::before {
    content: "\f002";
    position: absolute;
    font-family: "FontAwesome";
    font-weight: 600;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    background: #b51b1b;
    color: #fff;
    text-align: center;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0;
    transition: all .4s ease;
}

.portfolio-imgs-ul>li>ul>li>a>img {
    width: 100%;
    transform: scale(1);
    transition: all .4s ease;
}

select.form-control {
    border: 0;
}

select.form-control:focus {
    box-shadow: none;
}

@media (max-width: 567px) {
    .simple-tabs-area .nav-tabs {
        display: block;
    }

    .portfolio-imgs-ul>li>ul>li {
        width: 100%;
    }

    .portfolioother>li {
        width: 100% !important;
    }

    .simple-tabs-area {
        justify-content: center;
    }
}

/* thankyou */
.thankyou_sec {
    padding: 100px 0 100px;
    display: flex;
    align-items: center;
    margin-bottom: 50px;
}

.main-thankyou {
    text-align: center;
}

.site-header__title {
    font-size: 120px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 3px;
    margin: 0px 0px 50px;
}

.main-content {
    text-align: center;
}

.main-content__checkmark {
    font-size: 9.75rem !important;
    line-height: 1 !important;
    color: #b51b1b;
}

.main-content__body {
    margin: 20px 0 0;
    font-size: 1.25rem;
    line-height: 1.4;
}

.main-content__body {
    margin: 20px 0 0;
    font-size: 1.25rem;
    line-height: 1.4;
}

.start_live_chat {
    font-size: 19px;
    background-color: #273589;
    padding: 10px 24px;
    display: inline-block;
    border-radius: 4px;
    margin: 20px 0 0;
    color: #fff !important;
    text-decoration: none;
    border-radius: 10px;
}

.inner-header {
    background-color: #000;
}


/* contact-page-css */
.detaildiv {
    margin-top: 70px;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    line-height: 30px;
    font-weight: 400;
    color: #666666;
    background-color: #fff;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    -webkit-overflow-scrolling: touch;
    -webkit-font-smoothing: antialiased !important;
}

html,
body {
    width: 100%;
    height: 100%;
}

a {
    color: #b51b1b;
}

a,
a>* {
    outline: none;
    cursor: pointer;
    text-decoration: none;
}

a:focus,
a:hover {
    color: #ffffff;
    outline: none;
    text-decoration: none;
}

.scrollable-menu {
    height: auto;
    max-height: 200px;
    overflow-x: hidden;
}

.navbar a,
.form-control {
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.custom-margin {
    margin-top: -40px;
}

a,
.btn {
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

[data-tooltip],
.tooltip {
    position: relative;
    cursor: pointer;
}

[data-tooltip]:before,
[data-tooltip]:after,
.tooltip:before,
.tooltip:after {
    position: absolute;
    visibility: hidden;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
    -webkit-transition: opacity 0.2s ease-in-out,
        visibility 0.2s ease-in-out,
        -webkit-transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
    -moz-transition: opacity 0.2s ease-in-out,
        visibility 0.2s ease-in-out,
        -moz-transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
    transition: opacity 0.2s ease-in-out,
        visibility 0.2s ease-in-out,
        transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    pointer-events: none;
}

[data-tooltip]:hover:before,
[data-tooltip]:hover:after,
[data-tooltip]:focus:before,
[data-tooltip]:focus:after,
.tooltip:hover:before,
.tooltip:hover:after,
.tooltip:focus:before,
.tooltip:focus:after {
    visibility: visible;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
}

.tooltip:before,
[data-tooltip]:before {
    z-index: 1001;
    border: 6px solid transparent;
    background: transparent;
    content: "";
}

.tooltip:after,
[data-tooltip]:after {
    z-index: 1000;
    padding: 8px;
    width: 160px;
    background-color: #000;
    background-color: hsla(0, 0%, 20%, 0.9);
    color: #fff;
    content: attr(data-tooltip);
    font-size: 14px;
    line-height: 1.2;
}

[data-tooltip]:before,
[data-tooltip]:after,
.tooltip:before,
.tooltip:after,
.tooltip-top:before,
.tooltip-top:after {
    bottom: 100%;
    left: 50%;
}

[data-tooltip]:before,
.tooltip:before,
.tooltip-top:before {
    margin-left: -6px;
    margin-bottom: -12px;
    border-top-color: #000;
    border-top-color: hsla(0, 0%, 20%, 0.9);
}

[data-tooltip]:after,
.tooltip:after,
.tooltip-top:after {
    margin-left: -80px;
}

[data-tooltip]:hover:before,
[data-tooltip]:hover:after,
[data-tooltip]:focus:before,
[data-tooltip]:focus:after,
.tooltip:hover:before,
.tooltip:hover:after,
.tooltip:focus:before,
.tooltip:focus:after,
.tooltip-top:hover:before,
.tooltip-top:hover:after,
.tooltip-top:focus:before,
.tooltip-top:focus:after {
    -webkit-transform: translateY(-12px);
    -moz-transform: translateY(-12px);
    transform: translateY(-12px);
}

.tooltip-bottom:before,
.tooltip-bottom:after {
    top: 100%;
    bottom: auto;
}

.tooltip-bottom:before {
    margin-top: -12px;
    margin-bottom: 0;
    border-top-color: transparent;
    border-bottom-color: #000;
    border-bottom-color: hsla(0, 0%, 20%, 0.9);
}

.tooltip-bottom:hover:before,
.tooltip-bottom:hover:after,
.tooltip-bottom:focus:before,
.tooltip-bottom:focus:after {
    -webkit-transform: translateY(12px);
    -moz-transform: translateY(12px);
    transform: translateY(12px);
}

.btn,
.form-control,
.form-control:hover,
.form-control:focus,
.navbar-custom .dropdown-menu {
    -webkit-box-shadow: none;
    box-shadow: none;
}

button:focus {
    outline: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Roboto Slab', serif;
    font-weight: 400;
    margin: 0 0 15px;
    color: #202020;
}

h1 {
    font-size: 35px;
    line-height: 50px;
}

h2 {
    font-size: 25px;
}

h3 {
    font-size: 20px;
    line-height: 25px
}

h4 {
    font-size: 18px;
    line-height: 20px
}

h5 {}

h6 {}

p img {
    margin: 0;
}

blockquote {
    padding: 20px 20px 20px 60px;
    font-size: 16px;
    color: #969595;
    border-left: 0;
    border: 1px solid #eee;
    position: relative;
    margin: 0;
}

blockquote::before {
    position: absolute;
    content: "\f10d";
    font-family: FontAwesome;
    font-size: 30px;
    color: #eee;
    left: 15px;
    top: 25px;
}

.row.no-margin.service-menu {
    margin-bottom: 60px;
    margin-top: 40px;
}

.single-service-tab {
    border-bottom: 1px solid;
    position: relative;
    text-align: center;
}

.single-service-tab::after {
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-top: 20px solid;
    content: "";
    height: 0;
    left: 50%;
    margin-left: -25px;
    position: absolute;
    width: 0;
    opacity: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.single-service-tab a {
    color: #7a6b66;
    display: block;
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
}

.single-service-tab p {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
}

.custom-mar {
    width: 167px;
}

.single-service-tab a p {
    margin-bottom: 20px;
}

.single-service-tab .service-icon {
    background: #fff none repeat scroll 0 0;
    border: 2px solid;
    border-radius: 50%;
    color: #b51b1b;
    display: block;
    font-size: 60px;
    height: 100px;
    margin: 0 auto 20px;
    padding-top: 22px;
    width: 100px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.single-service-tab.active a {
    color: #b51b1b;
}

.single-service-tab.active a .service-icon {
    background: #b51b1b none repeat scroll 0 0;
    border-color: #b51b1b;
    color: #fff;
}

.single-service-tab.active {
    border-color: #b51b1b;
}

.single-service-tab.active::after {
    border-top-color: #b51b1b;
    opacity: 1;
}

.image-two {
    position: absolute;
    right: 0;
    bottom: 0;
}

.custom_animateed {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.animate_service_content {
    -webkit-animation: animate_service_content;
    animation: animate_service_content;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.animate_service_img {
    -webkit-animation: animate_service_img;
    animation: animate_service_img;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    margin-top: -13%;
}

@-webkit-keyframes animate_service_content {
    0% {
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes animate_service_content {
    0% {
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes animate_service_img {
    0% {
        -webkit-transform: translateX(50px);
        transform: translateX(50px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes animate_service_img {
    0% {
        -webkit-transform: translateX(50px);
        transform: translateX(50px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.service-area a.readmore:hover {
    background: #fff;
    color: #b51b1b;
}

.btn {
    padding: 14px 45px;
}

.btn-group-lg>.btn,
.btn-lg {
    padding: 17px 35px;
}

.btn-primary {
    background-color: #b51b1b;
    border-color: #b51b1b;
}

.btn-primary:hover {
    background-color: #273589;
    border-color: #273589;
}

.learnmore-btn {
    font-size: 20px;
    line-height: 18px;
    font-weight: 300;
    color: #fff;
    background-color: transparent;
    border-color: #fff;
    border-radius: 30px;
    padding: 20px 57px;
}

.learnmore-btn:focus,
.learnmore-btn:hover {
    background: #fff;
    border-color: transparent;
    color: #b51b1b;
}

.btn:focus,
button:focus {
    outline: none !important;
}

.tt-alert {
    background-color: transparent;
}

.alert-dismissible .close {
    top: 5px;
}

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

.unorder-list {
    list-style: inherit;
}

.check {
    opacity: 0.2;
    color: #996;
}

.check-circle-list li {
    line-height: 33px;
    border: 0;
}

.check-circle-list li i {
    font-size: 12px;
    color: #b51b1b;
    margin-right: 10px;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    -ms-transition: all 0.4s ease-in-out 0s;
    -o-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
}

.check-circle-list li:hover i {
    color: #b51b1b;
    border: 0;
}

.form-group {
    margin-bottom: 30px;
}

.form-control {
    height: 56px;
    padding: 16px;
    font-size: 18px;
    line-height: 25px;
    font-weight: 300;
    color: #202020;
    border: 1px solid #eee;
    border-radius: 0;
}

.form-control:focus {
    border-color: #b51b1b;
}

.section-padding {
    padding: 40px 0;
}

.section-title {
    font-size: 35px;
    line-height: 30px;
    color: #b51b1b;
    margin-bottom: 25px;
    text-transform: capitalize;
}

.sub-title {
    margin: 0;
    font-size: 18px;
    line-height: 25px;
}

.row-content {
    margin-top: 80px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-80 {
    margin-top: 80px;
}

.mt-100 {
    margin-top: 100px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-80 {
    margin-bottom: 80px;
}

.no-padding {
    padding: 0 !important;
}

.pb-20 {
    padding-bottom: 20px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pt-20 {
    padding-top: 20px;
}

.pt-30 {
    padding-top: 40px;
}

.pt-100 {
    padding-top: 100px;
}

.pb-100 {
    padding-bottom: 100px;
}

.plr-padding {
    padding-right: 8px !important;
    padding-left: 8px !important;
    padding-bottom: 10px;
}

.ptb-50 {
    padding: 50px 0;
}

.ptb-20 {
    padding: 20px 0;
    margin-top: 20px;
}

.ptb-90 {
    padding: 90px 0;
}

.overlay-bg {
    background-color: rgba(0, 0, 0, 0.5);
}

.gray-bg {
    background-color: #fafafa;
}

.gutter {
    padding-left: 10px !important;
    padding-right: 10px !important;
}

.vertical-middle {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    -webkit-transform: translate(0%, -50%);
    -moz-transform: translate(0%, -50%);
    -ms-transform: translate(0%, -50%);
    -o-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
    padding: 0 15px;
}

.navbar-custom {
    background-color: #fff;
    border: 0;
    margin-bottom: 0;
    border-radius: 0;
    box-shadow: 0 0 1px 0px #bbb;
}

.navbar-custom .dropdown-menu {
    background: #fff;
    border-radius: 0;
    border: 0;
    padding: 0;
    min-width: 180px;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.navbar-custom .nav li>a {
    position: relative;
    color: #000;
}

.navbar-collapse {
    max-height: 340px;
}

.marginheader {
    margin-left: 480px;
}

@media (min-width:768px) {
    .transparent.white.navbar-custom .nav li>a {
        color: #fff;
    }

    .transparent.white.navbar-custom .nav li.dropdown li a,
    .transparent.white.navbar-custom.sticky .nav li>a {
        color: #000;
    }

    .transparent .navbar-brand.alter-logo {
        display: none;
    }

    .transparent.sticky .navbar-brand {
        display: none;
    }

    .transparent.sticky .navbar-brand.alter-logo {
        display: block;
    }
}

@media (max-width:767px) {
    .transparent .navbar-brand {
        display: none;
    }

    .transparent .navbar-brand.alter-logo {
        display: block;
    }
}

@media (min-width:992px) {
    .transparent.navbar-custom .nav>li:last-child {
        margin-right: 30px;
    }
}

.navbar-custom .dropdown-menu>li>a {
    border-top: 1px solid rgba(0, 0, 0, 0.05) !important;
    padding: 11px 20px;
    font-size: 13px;
    color: #000;
}

.navbar-custom .dropdown-menu>li:last-child>a {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.navbar-custom .dropdown-menu .dropdown-menu {
    border-left: 1px solid rgba(0, 0, 0, 0.05);
    left: 100%;
    right: auto;
    top: 0;
    margin-top: 0;
}

.navbar-custom .dropdown-menu.left-side .dropdown-menu {
    border: 0;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
    right: 100%;
    left: auto;
}

.navbar-custom .nav>li>a:focus,
.navbar-custom .nav>li>a:hover,
.navbar-custom .nav>li.active>a,
.navbar-custom .nav .open>a,
.navbar-custom .nav .open>a:focus,
.navbar-custom .nav .open>a:hover,
.navbar-custom .dropdown-menu>li>a:focus,
.navbar-custom .dropdown-menu>li>a:hover,
.navbar-custom .dropdown-menu>.active>a,
.navbar-custom .dropdown-menu>.active>a:focus,
.navbar-custom .dropdown-menu>.active>a:hover {
    background-color: transparent;
    color: #b51b1b;
}

.navbar-custom .dropdown-menu>li>a:hover {
    padding-left: 25px;
}

.navbar-custom .dropdown-toggle:after {
    position: absolute;
    display: block;
    right: 3px;
    top: 50%;
    margin-top: -6px;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: 12px;
    content: "\f107";
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.navbar-custom .navbar-toggle .icon-bar {
    background: #000;
}

.navbar-brand {
    float: left;
    height: 50px;
    padding: 15px 15px;
    font-size: 18px;
    line-height: 20px
}

@media (min-width:768px) {
    .tt-default-nav {
        width: 100%;
        height: 100px;
        z-index: 1000;
        -webkit-transition: height 0.4s ease;
        -moz-transition: height 0.4s ease;
        transition: height 0.4s ease;
    }

    .customnav.tt-default-navv {
        width: 100%;
        height: 60px;
        z-index: 1000;
        position: fixed;
        top: 0;
    }

    .tt-default-nav.sticky {
        height: 60px;
        z-index: 1000;
        position: fixed;
        top: 0;
    }

    .tt-default-nav .navbar-brand {
        height: 100px;
        padding: 36px 15px;
        -webkit-transition: all 0.4s ease;
        -moz-transition: all 0.4s ease;
        transition: all 0.4s ease;
    }

    .tt-default-nav.sticky .navbar-brand {
        height: 60px;
        padding: 15px 15px;
    }

    .tt-default-nav.navbar-custom .nav>li>a {
        line-height: 100px;
        padding: 0 12px;
    }

    .tt-default-nav.sticky.navbar-custom .nav>li>a {
        line-height: 60px;
    }

    .navbar-fixed-top.transparent {
        background: transparent;
        box-shadow: none;
        -webkit-transition: background .4s ease;
        -moz-transition: background .4s ease;
        transition: background .4s ease;
    }

    .navbar-fixed-top.transparent.sticky {
        background: #fff;
        box-shadow: 0 0 1px 0 #bbb;
    }

    .navbar-fixed-top .navbar-brand {
        padding: 27px 15px;
    }

    .navbar-fixed-top.sticky .navbar-brand {
        padding: 7px 15px;
    }

    .navbar-fixed-top .navbar-nav>li>a {
        padding: 40px 15px 40px 0;
        margin-right: 15px;
    }

    .navbar-fixed-top.sticky .navbar-nav>li>a {
        padding: 20px 15px 20px 0;
    }

    .navbar-custom .dropdown-menu {
        position: absolute;
        display: block;
        visibility: hidden;
        opacity: 0;
        -webkit-transition: opacity 0.3s ease 0s;
        -moz-transition: opacity 0.3s ease 0s;
        -o-transition: opacity 0.3s ease 0s;
        transition: opacity 0.3s ease 0s;
    }

    .navbar-custom .open>.dropdown-menu {
        visibility: visible;
        opacity: 1;
    }

    .navbar-custom .dropdown-menu .dropdown-toggle:after {
        position: absolute;
        display: block;
        right: 10px;
        top: 50%;
        margin-top: -6px;
        font: normal normal normal 14px/1 FontAwesome;
        font-size: 12px;
        content: "\f105";
        text-rendering: auto;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

@media (min-width:992px) {
    .tt-default-nav.navbar-custom .nav>li {
        margin-right: 15px;
    }
}

@media (max-width:767px) {
    .navbar-custom {
        background-color: #fff;
    }

    .navbar-custom .navbar-nav {
        margin-top: 1px;
        margin-bottom: 0;
    }

    .tt-default-nav.sticky {
        width: 100%;
        z-index: 1000;
        position: fixed;
        top: 0;
    }

    .navbar-custom .navbar-nav .open .dropdown-menu .dropdown-header,
    .navbar-custom .navbar-nav .open .dropdown-menu>li>a {
        padding: 10px 25px;
    }

    .navbar-custom .navbar-nav .open .dropdown-menu .dropdown-menu .dropdown-header,
    .navbar-custom .navbar-nav .open .dropdown-menu .dropdown-menu>li>a {
        padding: 10px 35px;
    }

    .navbar-custom li a {
        border-top: 1px solid rgba(0, 0, 0, 0.05) !important;
    }

    .navbar-custom .dropdown-toggle:after,
    .navbar-custom .dropdown-menu .dropdown-toggle:after {
        font-size: 14px;
        right: 20px;
        content: "\f107";
    }

    .navbar-custom .nav>.open>.dropdown-toggle:after,
    .navbar-custom .dropdown-menu .dropdown.open .dropdown-toggle:after {
        content: "\f106";
    }
}

#fullpage-nav.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 200;
    width: 100%;
    background: transparent;
    padding: 10px 0;
    -webkit-transition: background .4s ease-in-out, padding .4s ease-in-out;
    -moz-transition: background .4s ease-in-out, padding .4s ease-in-out;
    transition: background .4s ease-in-out, padding .4s ease-in-out;
}

#fullpage-nav.main-nav.sticky {
    background: #2f2f2f;
    padding: 0 0;
}

#fullpage-nav .logo-wrapper {
    float: left;
    position: relative;
    z-index: 10;
}

#fullpage-nav .logo {
    display: table-cell;
    vertical-align: middle;
    height: 70px;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

@media (min-width:768px) {
    #fullpage-nav .navbar-toggle {
        display: block;
    }
}

#fullpage-nav nav,
#fullpage-nav .navbar-toggle {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#fullpage-nav nav {
    position: fixed;
    top: 0;
    z-index: 300;
    background-color: rgba(0, 0, 0, 0.9);
    width: 100%;
    height: 100%;
    text-align: center;
}

#fullpage-nav .nav-hide {
    display: none;
}

#fullpage-nav nav ul {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    text-align: center;
    -webkit-transform: translate(0%, -50%);
    -moz-transform: translate(0%, -50%);
    -ms-transform: translate(0%, -50%);
    -o-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
}

#fullpage-nav .nav>li>a {
    font-family: 'Roboto Slab', serif;
    display: block;
    padding: 20px 15px;
    font-size: 36px;
    color: #fff;
    font-weight: 300;
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

#fullpage-nav .nav>li>a:focus,
#fullpage-nav .nav>li>a:hover {
    text-decoration: none;
    background: #fff;
    color: #b51b1b;
}

#fullpage-nav .nav>li.active>a {
    color: #b51b1b;
    background: #fff;
}

#fullpage-nav .navbar-toggle {
    top: 10px;
    padding: 9px 10px;
    margin-right: 0;
    width: 47px;
    height: 45px;
    z-index: 300;
    cursor: pointer;
}

#fullpage-nav .bar1,
#fullpage-nav .bar2,
#fullpage-nav .bar3 {
    width: 100%;
    height: 2px;
    margin-bottom: 5px;
    background-color: #fff;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#fullpage-nav .navbar-on .bar1,
#fullpage-nav .navbar-on .bar2,
#fullpage-nav .navbar-on .bar3 {
    background-color: #b51b1b;
}

#fullpage-nav .navbar-on .bar1 {
    transform-origin: 10% 40%;
    transform: rotate(45deg);
}

#fullpage-nav .navbar-on .bar3 {
    transform-origin: 10% 40%;
    transform: rotate(-45deg);
}

#fullpage-nav .navbar-on .bar2 {
    background-color: transparent;
}

.search-icon {
    position: relative;
    top: 35px;
    left: 0;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.search-icon:hover {
    cursor: pointer;
}

.sticky .search-icon {
    top: 15px;
}

.search-icon:after,
.search-icon.active:after {
    position: absolute;
    top: 0;
    right: 0;
    font-family: fontawesome;
    z-index: 100;
}

.search-icon:after {
    content: "\f002";
}

.search-icon.active:after {
    content: "\f00d";
    color: #b51b1b;
}

#search-box {
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    color: #555;
    font-family: sans-serif;
    padding: 0 15px;
    outline: none;
    font-size: 20pt;
    text-align: center;
    background-color: #ccc;
    position: absolute;
    right: 0;
    display: none;
    width: 100%;
    top: 100px;
    z-index: 1;
    line-height: 70px;
    height: 70px;
    color: #fff;
}

.sticky #search-box {
    top: 60px;
}

.transparent.white.navbar-custom .search-icon:after {
    color: #fff;
    -webkit-transition: color 0.3s ease;
    -moz-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
    transition: color 0.3s ease;
}

.transparent.white.navbar-custom.sticky .search-icon:after {
    color: #000;
}

.page-title-section {
    background: url(../images/cover-one.jpg) no-repeat center center #000;
    background-size: cover;
    position: relative;
    min-height: 350px;
}

.page-title-section.about-us-one {
    background: url(../images/cover-two.jpg) no-repeat center center #000;
    background-size: cover;
}

.page-title-section.about-us-two {
    background: url(../images/cover-three.jpg) no-repeat center center #000;
    background-size: cover;
}

.page-title-section.blog-page-cover {
    background: url(../images/cover-four.jpg) no-repeat center center #000;
    background-size: cover;
}

.page-title-section.portfolio-cover {
    background: url(../images/Portfolio.jpg) no-repeat center center #000;
    background-size: cover;
}

.page-title-section.contact-cover {
    background: url(../images/contact.jpg) no-repeat center center #000;
    background-size: cover;
}

.page-title-section.shortcode-cover {
    background: url(../images/covermy.jpg) no-repeat center center #000;
    background-size: cover;
}

.page-title-section.shortcode-coverweb {
    background: url(../images/coverweb.jpg) no-repeat center center #000;
    background-size: cover;
}

.page-title-section.homepage-blog {
    background: url(../images/slider/slide-1.jpg) no-repeat center center #000;
    background-size: cover;
    min-height: 450px;
}

.page-title-section.case-study-page {
    background: url(../images/slider/slide-1.jpg) no-repeat center center #000;
    background-size: cover;
    min-height: 460px;
    overflow: hidden;
}

.page-title-section.case-study-page.gradient-bottom {
    min-height: 600px;
}

.conector {
    display: block;
    width: 1px;
    height: 125px;
    background: #dedede;
    margin: 0 auto;
}

.page-title-section::before {
    content: "";
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.page-header {
    padding: 0;
    margin: 0;
    border-bottom: 0;
    position: absolute;
    top: 50%;
    width: 100%;
    left: 0;
    text-align: center;
    z-index: 15;
    -webkit-transform: translate(0%, -50%);
    -moz-transform: translate(0%, -50%);
    -ms-transform: translate(0%, -50%);
    -o-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
}

.case-study-page .page-header {
    padding: 120px 0 0;
}

.page-header h1 {
    font-size: 50px;
    line-height: 50px;
    font-weight: 700;
    color: #fff;
    text-transform: capitalize;
    margin: 0;
}

.case-study-page .page-header h1 {
    margin-bottom: 15px;
}

.page-header p {
    font-size: 16px;
    line-height: 30px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 60px;
}

.page-header a.btn {
    font-size: 20px;
    line-height: 18px;
    font-weight: 300;
    padding: 20px 57px;
    color: #fff;
    border-radius: 30px;
    background-color: transparent;
    border-color: #fff;
}

.page-header a.btn:hover {
    background-color: #fff;
    color: #b51b1b;
}

.trendy-slider {
    overflow: hidden;
    position: relative;
}

.trendy-slider img {
    width: 100%;
    background-size: cover;
}

.carousel-fade .carousel-inner .item {
    max-height: 700px;
    opacity: .8;
    -webkit-transition-property: opacity;
    -moz-transition-property: opacity;
    -o-transition-property: opacity;
    transition-property: opacity
}

.carousel-fade .carousel-inner .active {
    opacity: 1
}

.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
    left: 0;
    opacity: 0;
    z-index: 1;
}

.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
    opacity: 1
}

.carousel-fade .carousel-inner .item:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, .7);
}

.carousel-fade .carousel-control {
    z-index: 20
}

.trendy-slider .carousel-caption {
    position: absolute;
    top: 50%;
    margin-top: -165px;
    left: 0;
    right: 0;
    text-align: center;
    text-transform: uppercase;
    z-index: 15;
    color: #fff;
    bottom: inherit;
}

.trendy-slider .carousel-caption h1 {
    color: #FFFFFF;
    font-size: 75px;
    line-height: 80px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: -5px;
    margin-bottom: 40px;
    font-family: 'Open Sans', sans-serif;
}

.trendy-slider .carousel-caption h1 span {
    font-weight: 900;
}

.trendy-slider .carousel-caption p {
    color: #FFFFFF;
    font-size: 25px;
    text-transform: uppercase;
    margin-bottom: 70px;
}

.control-one .carousel-control {
    width: 50px;
    height: 50px;
    line-height: 46px;
    font-size: 40px;
    top: 50%;
    margin-top: -25px;
    border-radius: 50%;
    color: #000;
    background-color: #ddd;
    background-image: none;
    text-shadow: none;
    opacity: 0;
    visibility: hidden;
}

.control-one:hover .carousel-control {
    opacity: 1;
    visibility: visible;
}

.control-one .carousel-control:hover {
    background-color: #b51b1b;
    color: #fff;
}

.control-one .left.carousel-control {
    left: 30px;
}

.control-one .right.carousel-control {
    right: 30px;
}

.control-two .carousel-control {
    width: 30px;
    height: 60px;
    line-height: 58px;
    font-size: 30px;
    top: 50%;
    margin-top: -25px;
    color: #202020;
    background-color: rgba(255, 255, 255, 0.4);
    background-image: none;
    text-shadow: none;
    opacity: 0;
    visibility: hidden;
}

.control-two:hover .carousel-control {
    opacity: 1;
    visibility: visible;
}

.control-two:hover .carousel-control:hover {
    color: #b51b1b;
    background-color: rgba(255, 255, 255, 0.9);
}

.delay-1 {
    -webkit-animation-delay: 300ms;
    -moz-animation-delay: 300ms;
    animation-delay: 300ms;
}

.delay-2 {
    -webkit-animation-delay: 600ms;
    -moz-animation-delay: 600ms;
    animation-delay: 600ms;
}

.delay-3 {
    -webkit-animation-delay: 1200ms;
    -moz-animation-delay: 1200ms;
    animation-delay: 1200ms;
}

.delay-4 {
    -webkit-animation-delay: 1500ms;
    -moz-animation-delay: 1500ms;
    animation-delay: 1500ms;
}

.video-slider {
    top: 0%;
    left: 0%;
    max-height: 700px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.video-slider::before {
    content: "";
    background-color: rgba(0, 0, 0, 0.3);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.slider-caption {
    position: absolute;
    top: 50%;
    width: 100%;
    left: 0;
    text-align: center;
    text-transform: uppercase;
    z-index: 15;
    -webkit-transform: translate(0%, -50%);
    -moz-transform: translate(0%, -50%);
    -ms-transform: translate(0%, -50%);
    -o-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
}

.slider-caption h1 {
    color: #FFFFFF;
    font-size: 75px;
    line-height: 80px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: -5px;
    margin-bottom: 50px;
    font-family: 'Open Sans', sans-serif;
}

.slider-caption h1 span {
    font-weight: 900;
}

.slider-caption p {
    color: #FFFFFF;
    font-size: 25px;
    text-transform: uppercase;
    margin-bottom: 70px;
}

.slider-caption .btn {
    font-size: 20px;
    line-height: 18px;
    font-weight: 300;
    color: #fff;
    background-color: #b51b1b;
    border-color: transparent;
    border-radius: 0;
    padding: 12px 28px;
}

.slider-caption .btn:hover {
    background: #fff;
    border-color: transparent;
    color: #b51b1b;
}

.slider-caption .form-control {
    padding: 20px;
    height: 50px;
}

@media (max-width:767px) {
    .video-slider {
        max-height: 400px;
    }

    .slider-caption h1 {
        font-size: 22px;
        line-height: 35px;
        letter-spacing: 0;
        margin-bottom: 0;
    }

    .slider-caption p {
        font-size: 10px;
        margin-bottom: 15px;
    }

    .slider-caption .btn {
        font-size: 14px;
        padding: 10px 30px;
    }
}

@media only screen and (min-width:480px) and (max-width:767px) {
    .slider-caption h1 {
        font-size: 33px;
        line-height: 56px;
    }

    .slider-caption p {
        font-size: 14px;
        margin-bottom: 25px;
    }
}

.youtube-wrapper {
    min-width: 100%;
    min-height: 700px;
    top: 0;
    left: 0;
    background: url(../../assets/images/slider/video-falback.jpg) no-repeat center center #162E4A;
    background-size: cover;
    position: relative;
}

.youtube-wrapper::before {
    content: "";
    background-color: rgba(0, 0, 0, 0.3);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
}

@media (max-width:766px) {
    .youtube-wrapper {
        min-height: 400px;
    }
}

.creative-section {
    padding: 0 0;
    margin-top: 30px;
}

.service-tab {
    position: relative;
}

.service-tab .nav-tabs {
    border-bottom: 0;
}

.custom-margin {
    margin-top: 40px;
}

.service-tab li {
    position: relative;
    text-align: center;
    border-right: 1px solid #b9b9b9;
    padding: 0;
}

.service-tab.mytab li {
    position: relative;
    text-align: center;
    padding: 0;
}

.why-us {
    margin-top: 40px;
}

.service-tab li>a {
    padding: 15px 20px;
    background-color: #f5f5f5;
    color: #000000;
    border: 0;
    width: 100%;
}

.service-tab .nav-tabs>li.active>a,
.service-tab .nav-tabs>li.active>a:focus,
.service-tab .nav-tabs>li.active>a:hover {
    border: 0;
    background-color: #ffffff;
}

.service-tab .nav-tabs.nav-justified>li>a {
    border: 0;
    border-radius: 0;
}

.service-tab .nav-tabs.nav-justified>.active>a,
.service-tab .nav-tabs.nav-justified>.active>a:focus,
.service-tab .nav-tabs.nav-justified>.active>a:hover {
    border: 0;
}

.service-tab li:first-child {
    border-left: 1px solid #b9b9b9;
}

.service-tab li i:before {
    font-size: 30px;
    color: #202020;
}

.service-tab.mytab li i:before {
    font-size: 13px;
    color: #202020;
}

.service-tab li.active i:before,
.service-tab li:hover i:before {
    color: #b51b1b;
}

.service-tab li span {
    display: block;
    font-size: 18px;
    color: #202020;
    font-family: 'Roboto Slab', serif;
}

.service-tab li.active:after,
.service-tab li:hover:after {
    content: "";
    border-bottom: 3px solid #b51b1b;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.service-my li:hover:after {
    border-bottom: 0px;
}

.service-tab .tab-content {
    margin-top: 50px;
}

.creative-section h2 {
    text-transform: capitalize;
    font-weight: 700;
    margin-bottom: 45px;
    position: relative;
}

.creative-section h2::after {
    content: "";
    background-color: #b51b1b;
    width: 100px;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: -16px;
}

.creative-section .btn {
    margin-top: 42px;
}

.mac-screenshot {
    padding-top: 60px;
}

.mac-screenshot img {}

.teamwork-screenshot img {
    margin-top: -50px;
}

.recent-project-section {
    background-color: #fafafa;
    border-top: 1px solid #d2d2d2;
    border-bottom: 1px solid #d2d2d2;
}

.project-container {
    margin-top: 50px;
    position: relative;
}

.recent-project {
    position: relative;
    overflow: hidden;
}

.recent-project img {
    width: 100%;
}

.project-info {
    position: absolute;
    left: 0;
    top: 50%;
    color: #fff;
    width: 100%;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.recent-project:hover .project-info {
    top: 30%;
    opacity: 1;
    visibility: visible;
}

.project-info h3 {
    color: #fff;
    font-size: 18px;
    line-height: 18px;
}

ul.project-meta {
    margin-top: 15px;
}

ul.project-meta li {
    display: inline-block;
    padding: 0 10px;
    line-height: 15px;
    border-right: 1px solid #fff;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

ul.project-meta li:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: 0;
}

ul.project-meta li a {
    display: block;
    color: #fff;
}

ul.project-meta li a:hover {
    color: #b51b1b;
}

.project-link {
    position: absolute;
    left: 0;
    bottom: -50%;
    width: 100%;
    padding: 16px 30px;
    line-height: 18px;
    text-transform: capitalize;
    background: #b51b1b;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.recent-project:hover .project-link {
    bottom: 0;
    opacity: 1;
    visibility: visible;
}

.project-link:hover {
    background: #C02232;
}

.project-link a {
    color: #fff;
}

.project-link a i {
    line-height: 20px;
}

.recent-project .tt-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 62, 80, 0.9);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.2s;
    -moz-transition: opacity 0.2s;
    -o-transition: opacity 0.2s;
    transition: opacity 0.2s;
}

.recent-project:hover .tt-overlay {
    opacity: 1;
    visibility: visible;
}

.project-navigation .btn-prev {
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -40px;
    width: 20px;
    height: 80px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    line-height: 80px;
    text-align: center;
    font-size: 18px;
    opacity: 0;
    z-index: 997;
}

.project-navigation .btn-next {
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -40px;
    width: 20px;
    height: 80px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    line-height: 80px;
    text-align: center;
    font-size: 18px;
    opacity: 0;
    z-index: 997;
}

.project-navigation a:hover {
    width: 30px;
}

.project-container:hover .project-navigation .btn-prev,
.project-container:hover .project-navigation .btn-next {
    opacity: 1;
}

.project-container.version-two {}

.version-two ul.project-meta li a:hover {
    color: #000;
}

.version-two.border-style ul.project-meta li a:hover {
    color: #b51b1b;
}

.version-two .recent-project {
    width: 20%;
    float: left;
}

@media (max-width:767px) {
    .version-two .recent-project {
        width: 50%;
        margin-bottom: 0;
    }
}

@media (max-width:480px) {
    .version-two .recent-project {
        width: 100%;
        margin-bottom: 0;
    }
}

@media (min-width:768px) and (max-width:991px) {
    .version-two .recent-project {
        width: 33.33%;
    }
}

@media (min-width:992px) and (max-width:1199px) {
    .version-two .recent-project {
        width: 25%;
    }
}

.version-two .recent-project .btn {
    padding: 9px 28px;
    background-color: #fff;
    border-color: transparent;
    color: #b51b1b;
    border-radius: 30px;
}

.version-two .recent-project .btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

.version-two .project-link {
    text-align: center;
    background-color: transparent;
}

.version-two .recent-project:hover .project-link {
    bottom: 15px;
}

.version-two .recent-project .tt-overlay {
    background-color: rgba(255, 42, 64, 0.7);
}

.version-two.border-style .project-info,
.version-two.border-style .project-link {
    z-index: 300;
}

.version-two.border-style .recent-project::before {
    content: "";
    position: absolute;
    top: 10px;
    right: 10px;
    bottom: 10px;
    left: 10px;
    border: 1px solid #fff;
    opacity: 0;
    z-index: 200;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
    transition: opacity 0.5s, transform 0.5s;
}

.version-two.border-style .recent-project:hover::before {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.version-two.border-style .recent-project .tt-overlay {
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 100;
}

.version-four .recent-project .project-link {
    padding: 0;
    background-color: transparent;
    text-align: center;
}

.version-four .recent-project .project-link img {
    width: inherit !important;
}

.version-four .recent-project:hover .project-link {
    bottom: 20px;
}

@media (min-width:768px) and (max-width:991px) {
    .version-four .recent-project:hover .project-info {
        top: 15%;
    }
}

@media (max-width:767px) {
    .version-four .recent-project {
        margin-bottom: 30px;
    }
}

.version-five .recent-project .project-link {
    padding: 0;
    background-color: transparent;
    top: 0;
    bottom: auto;
}

.version-five .recent-project:hover .project-link {
    top: 30%;
    bottom: auto;
}

.version-five .recent-project .project-link a {
    display: block;
    width: 45px;
    height: 45px;
    font-size: 20px;
    line-height: 41px;
    text-align: center;
    margin: 0 auto;
    border: 2px solid #fff;
    border-radius: 50%;
}

.version-five .recent-project .project-link a:hover {
    background-color: #fff;
    border-color: transparent;
    color: #b51b1b;
}

.version-five .recent-project .project-info {
    top: auto;
    bottom: 0;
}

.version-five .recent-project:hover .project-info {
    top: auto;
    bottom: 25%;
}

.version-five .recent-project .project-info a {
    color: #fff;
}

.version-five .recent-project .tt-overlay {
    background-color: rgba(255, 42, 64, 0.8);
}

@media (min-width:768px) and (max-width:991px) {
    .version-five .recent-project:hover .project-link {
        top: 15%;
    }

    .version-five .recent-project:hover .project-info {
        top: auto;
        bottom: 15%;
    }
}

@media (min-width:992px) and (max-width:1199px) {
    .version-five .recent-project:hover .project-link {
        top: 25%;
    }
}

.version-eight .recent-project .project-link {
    bottom: 30%;
    padding: 0;
    text-align: center;
    background-color: transparent;
}

.version-eight .recent-project:hover .project-link {
    bottom: 50%;
    margin-bottom: -32px;
}

.version-eight .project-link ul li {
    display: inline-block;
}

.version-eight .project-link ul li a {
    display: block;
    width: 45px;
    height: 45px;
    font-size: 20px;
    line-height: 41px;
    color: #b51b1b;
    margin: 0 5px;
    border: 2px solid #b51b1b;
    border-radius: 50%;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.version-eight .project-link ul li a:hover {
    background-color: #b51b1b;
    border-color: transparent;
    color: #fff;
}

.info {
    margin-top: 10px;
    color: #616161;
}

.info span {
    font-weight: 600;
}

.info a.like {
    color: #616161;
}

.info a.like i,
.info a.like:hover {
    color: #b51b1b;
}

.version-eight.alter-bg .info span {
    display: block;
    font-size: 16px;
    line-height: 20px;
}

.version-eight .recent-project .tt-overlay {
    background-color: rgba(255, 255, 255, 0.8);
}

.version-eight.alter-bg .recent-project .tt-overlay {
    background-color: rgba(44, 62, 80, 0.8);
}

.version-eight.alter-bg .recent-project .project-link {
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.9);
}

.mfp-fade.mfp-bg {
    opacity: 0;
    -webkit-transition: all 0.4s ease-out;
    -moz-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
}

.mfp-fade.mfp-bg.mfp-ready {
    opacity: 0.75;
}

.mfp-bottom-bar {
    display: none;
}

.mfp-fade.mfp-bg.mfp-removing {
    opacity: 0;
}

.mfp-arrow-right::after,
.mfp-arrow-left::after {
    font-family: 'FontAwesome';
    border: none !important;
    color: #fff;
    font-size: 65px;
    -webkit-transition: .5s;
    transition: .5s;
}

.mfp-arrow-right::after {
    content: "\f105" !important;
}

.mfp-arrow-left::after {
    content: "\f104" !important;
}

.mfp-arrow-right::before,
.mfp-arrow-left::before {
    border: none !important;
}

.mfp-arrow {
    height: 60px;
}

.mfp-arrow::before,
.mfp-arrow::after,
.mfp-arrow .mfp-b,
.mfp-arrow .mfp-a {
    margin-top: 15px;
    top: -1px !important;
}

img.mfp-img {
    padding: 40px 0px 0;
    background-color: white;
}

.mfp-fade.mfp-wrap .mfp-content {
    opacity: 0;
    transform: scale(0.95);
    -webkit-transition: all 0.4s ease-out;
    -moz-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
    transform: scale(1);
    opacity: 1;
    -webkit-transition: all 0.4s ease-out;
    -moz-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
    opacity: 0;
    transform: scale(0.95);
    -webkit-transition: all 0.4s ease-out;
    -moz-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
}

.features .media {
    margin-top: 40px;
}

.features .media:first-child {
    margin-top: 0;
}

.features .media a i::before {
    display: block;
    font-size: 28px;
    line-height: 50px;
    text-align: center;
    width: 50px;
    height: 50px;
    color: #b51b1b;
    border: 1px solid #b51b1b;
    border-radius: 4px;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.features .media:hover a i::before {
    background-color: #b51b1b;
    color: #fff;
    border: 1px solid transparent;
}

.features .media-left,
.features .media>.pull-left {
    padding-right: 30px;
    float: left;
}

.features .media-heading {
    font-size: 18px;
    line-height: 25px;
    text-transform: capitalize;
}

.features .media-heading a {
    color: #202020;
}

.features .media-heading a:hover {
    color: #b51b1b;
}

.features .media-body p {
    color: #a7a7a7;
    line-height: 25px;
}

.about-info h2 {
    margin-bottom: 36px;
    font-weight: 700;
}

.creative-skills h2,
.faq-section h2 {
    font-weight: 700;
    margin-bottom: 30px;
}

.video-wrap iframe {
    border: 0;
    width: 100%;
    height: 310px;
}

.skill-title {
    font-size: 16px;
    display: block;
    margin-bottom: 8px;
}

.progress {
    padding: 6px 8px;
    border-radius: 10px;
    box-shadow: none;
    margin-bottom: 14px;
    background-color: #6d6c6c;
}

.progress-bar {
    background-color: #b51b1b;
    box-shadow: none;
    border-radius: 10px;
}

.progress .progress-bar.six-sec-ease-in-out {
    -webkit-transition: width 2s ease-in-out;
    -moz-transition: width 2s ease-in-out;
    -o-transition: width 2s ease-in-out;
    transition: width 0.5s ease-in-out;
}

.accordion-v1 .panel {
    box-shadow: none;
    border: 0;
    border-radius: 0;
}

.dropdownn {
    position: relative;
    display: inline-block;
}

.dropdownn-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    text-align: left;
}

.btndrop {
    text-align: left;
    font-family: 'Open Sans', sans-serif;
}

.anchor a {
    color: #666666;
}

.dropdownn-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.btndrop:focus,
.btndrop:active,
.btndrop.active {
    background-color: #eeebeb;
    border-color: #eeebeb;
}

.dropdownn-content a:hover {
    background-color: #f1f1f1
}

.dropdownn:hover .dropdownn-content {
    display: block;
}

.accordion-v1 .panel-default>.panel-heading h3 {
    font-family: 'Open Sans', sans-serif;
}

#htmlpanel {
    display: none;
}

#ecompanel {
    display: none;
}

#portalpanel {
    display: none;
}

#cmspanel {
    display: none;
}

.accordion-v1 .panel .panel-heading {
    position: relative;
    padding: 0;
}

.custom-price {
    margin-top: -40px;
}

.cmargin {
    margin-top: -18px;
}

.cmargin::after {
    margin-bottom: -18px;
}

.accordion-v1 .panel-title a.collapsed {
    display: block;
    color: #a0a0ac;
    background-color: #fff;
    padding: 17px 15px;
    border-radius: 4px;
}

.accordion-v1 .panel-title a {
    display: block;
    color: #fff;
    background-color: #909497;
    padding: 17px 15px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.accordion-v1 .panel-default>.panel-heading+.panel-collapse>.panel-body {
    border: 1px solid #EEEEEE;
}

.accordion-v1 .panel .panel-heading a:after {
    font-family: 'FontAwesome';
    content: "\f106";
    font-size: 24px;
    width: 50px;
    height: 60px;
    line-height: 58px;
    text-align: center;
    position: absolute;
    top: 0;
    right: 0;
}

.accordion-v1 .panel .panel-heading a.collapsed:after {
    content: "\f107";
}

.accordion-v2 {}

.accordion-v2.panel-group {
    margin-bottom: 0;
}

.accordion-v2.panel-group .panel+.panel {
    margin-top: 0;
}

.accordion-v2.panel-group .panel {
    border-radius: 0;
}

.accordion-v2 .panel-default:nth-child(1) {
    background: url(../../assets/images/blog/collapse-bg-1.jpg);
}

.accordion-v2 .panel-default:nth-child(2) {
    background: url(../../assets/images/blog/collapse-bg-1.jpg);
}

.accordion-v2 .panel-default:nth-child(3) {
    background: url(../../assets/images/blog/collapse-bg-1.jpg);
}

.accordion-v2 .panel-default>.panel-heading {
    background-color: transparent;
    border-color: #f1f1f1;
    padding: 0;
}

.accordion-v2 .panel-title>a {
    padding: 20px 15px;
    color: #fff;
    display: block;
    background-color: rgba(255, 42, 64, 0.9);
}

.accordion-v2 .panel-title>a.collapsed {
    color: #fff;
    background-color: rgba(0, 0, 0, 0.7);
}

.accordion-v2 .panel-heading {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.accordion-v2 .panel-body {
    padding: 0 15px 15px;
    line-height: 20px;
}

.accordion-v2 .panel-default>.panel-heading+.panel-collapse>.panel-body {
    border-top-color: transparent;
    background-color: rgba(255, 42, 64, 0.9);
    color: #fff;
}

.accordion-v3 .panel {
    box-shadow: none;
    border: 0;
    border-radius: 0;
}

.well-searchbox {
    min-height: 20px;
    width: 40%;
    text-align: left;
    padding: 25px 30px;
    position: absolute;
    display: table;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.6);
    margin-top: 40px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}

@media all and (min-width:768px) {
    .well-searchbox {
        width: 30%;
        left: 9%;
        top: 50%;
    }

    .well-searchbox h2 {
        font-size: 26px;
        margin-bottom: 20px;
    }
}

.well-searchbox h2 {
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
}

.well-searchbox label {
    color: #fff;
}

.accordion-v3 .panel-default>.panel-heading h3 {
    font-family: 'Open Sans', sans-serif;
}

.accordion-v3 .panel .panel-heading {
    position: relative;
    padding: 0;
}

.accordion-v3 .panel-title a.collapsed {
    display: block;
    color: #fff;
    background-color: #999;
    border-color: #999;
    padding: 17px 15px;
    border-radius: 4px;
}

.accordion-v3 .panel-title a {
    display: block;
    color: #fff;
    border-color: #999;
    padding: 17px 15px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    background-color: #333;
}

.accordion-v3 .panel-default>.panel-heading+.panel-collapse>.panel-body {
    border: 1px solid #EEEEEE;
}

.accordion-v3 .panel .panel-heading a:after {
    font-family: 'FontAwesome';
    content: "\f068";
    font-size: 14px;
    width: 50px;
    height: 60px;
    line-height: 58px;
    text-align: center;
    position: absolute;
    top: 0;
    right: 0;
}

.accordion-v3 .panel .panel-heading a.collapsed:after {
    content: "\f067";
}

.mocup-bg img {
    margin: 60px auto 0;
    display: block;
}

.mission-tab {}

.mission-tab .nav-tabs {
    border-bottom: 0 solid #f1f1f1;
    border-bottom: 0;
    margin-bottom: 5px;
}

.mission-tab .nav-tabs>li {
    margin-bottom: 0;
}

.mission-tab .nav-tabs>li>a {
    margin-right: 0;
    font-size: 18px;
    line-height: 25px;
    color: #a0a0a0;
    border: 0;
    border-radius: 0;
    font-family: 'Roboto Slab', serif;
    font-weight: 400;
}

.mission-tab .nav>li>a:focus,
.mission-tab .nav>li>a:hover {
    background-color: transparent;
}

.mission-tab .nav-tabs>li.active>a,
.mission-tab .nav-tabs>li.active>a:focus,
.mission-tab .nav-tabs>li.active>a:hover {
    border: 0;
    color: #b51b1b;
    position: relative;
}

.mission-tab .nav-tabs>li.active>a::before {
    content: "";
    background-color: #b51b1b;
    width: 100%;
    height: px;
    position: absolute;
    left: 0;
    bottom: 0;
}

.counter-section {
    -webkit-background-size: cover;
    background-size: cover;
    font-family: 'Roboto Slab', serif;
}

.css-overlay {
    background-color: rgba(26, 1, 1, 0.6);
}

.counter-section strong {
    display: block;
    font-size: 60px;
    line-height: 48px;
    color: #fff;
}

span.count-description {
    display: block;
    color: #fff;
    font-size: 20px;
    line-height: 25px;
    text-transform: capitalize;
    padding-top: 10px;
}

.counter-wrap {
    padding: 40px 0;
}

@media (max-width:767px) {
    .counter-wrap {
        padding: 40px 0;
    }
}

.counter-section .selected {
    background-color: rgba(255, 0, 0, 0.5);
}

#factsTwo {
    background: url(../images/counter-bg.jpg) bottom no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    font-family: 'Roboto Slab', serif;
    color: #ffffff;
}

#factsTwo .selected {
    background-color: rgba(255, 0, 0, 0.5);
    color: #fff;
}

#factsTwo i {
    display: block;
    margin-bottom: 20px;
}

#factsTwo i::before {
    font-size: 50px;
    line-height: 60px;
}

#factsTwo strong {
    display: block;
    font-size: 60px;
    line-height: 40px;
}

#factsTwo span.count-description {
    color: #ffffff;
}

#factsTwo .selected span.count-description {
    color: #fff;
}

.team-thumb {
    position: relative;
    overflow: hidden;
}

@media (max-width:767px) {
    .team-thumb {
        margin-bottom: 30px;
    }
}

.thumb-overlay {
    background-color: rgba(44, 62, 80, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.2s ease-out;
    -moz-transition: opacity 0.2s ease-out;
    -o-transition: opacity 0.2s ease-out;
    transition: opacity 0.2s ease-out;
}

.team-thumb:hover .thumb-overlay {
    opacity: 1;
    visibility: visible;
}

.team-thumb img {
    width: 100%;
}

.member-info {
    position: absolute;
    left: 0;
    bottom: -20%;
    width: 100%;
    background: #b51b1b;
    color: #fff;
    padding: 16px 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.2s ease-out .2s;
    -moz-transition: all 0.2s ease-out .2s;
    -o-transition: all 0.2s ease-out .2s;
    transition: all 0.2s ease-out .2s;
}

.team-thumb:hover .member-info {
    bottom: 0;
    opacity: 1;
    visibility: visible;
}

.member-info h3 {
    color: #fff;
    font-size: 22px;
    line-height: 25px;
    font-weight: 700;
    text-transform: uppercase;
}

.member-info .title {
    display: block;
    font-size: 18px;
    line-height: 25px;
    font-weight: 300;
}

.member-info .social-link {
    margin-top: 25px;
}

.member-info .social-link li a {
    display: block;
    width: 35px;
    height: 35px;
    font-size: 18px;
    line-height: 35px;
    background: #fff;
    color: #b51b1b;
    text-align: center;
    border-radius: 50%;
}

.member-info .social-link li a:hover {
    background: #D51428;
    color: #fff;
}

.team-intro-section {}

.team-intro {
    background-color: #b51b1b;
    padding: 60px 60px 50px 110px;
    min-height: 386px;
}

@media (max-width:768px) {
    .team-intro {
        padding: 60px 15px;
    }
}

@media (min-width:992px) and (max-width:1199px) {
    .team-intro {
        padding: 60px 60px 50px 50px;
    }
}

@media (min-width:1500px) {
    .team-intro {
        padding: 15% 60px 50px 30%;
        min-height: 545px;
    }
}

.team-intro,
.team-intro h1 {
    color: #fff;
}

.team-intro h1 {
    font-weight: 700;
}

.team-intro p {
    font-size: 18px;
    font-weight: 300;
}

.team-intro .btn {
    background-color: transparent;
    padding: 15px 30px;
    border-color: #fff;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 300;
    margin-top: 15px;
}

.team-intro .btn:hover {
    background-color: #fff;
    color: #b51b1b;
    border-color: transparent;
}

.team-intro-thumb img {
    width: 100%;
}

@media (min-width:992px) {
    .team-intro-thumb img {
        min-height: 386px;
    }
}

@media (min-width:1500px) {
    .team-intro-thumb img {
        min-height: 545px;
    }
}

.video-section {
    top: 0%;
    left: 0%;
    height: 400px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.overlay {
    min-height: 400px;
    background-color: rgba(0, 0, 0, 0.5);
}

video,
object {
    min-width: 100%;
    min-height: 100%;
}

.audio {
    width: 100%;
}

.video-button {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -50px;
    margin-left: -50px;
}

.video-button a i {
    display: inline-block;
    font-size: 44px;
    line-height: 87px;
    text-align: center;
    font-style: normal;
    color: #fff;
    background: none;
    border: 5px solid #fff;
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.video-button .pause i {
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.video-button .play i:before {
    left: 1px;
    position: relative;
    top: 1px;
}

.video-section:hover .video-button .pause i {
    opacity: 1;
}

.video-button a i:before {
    content: "\f04b";
    z-index: 10;
    font-family: FontAwesome;
}

.video-button a.pause i:before {
    content: "\f04c";
}

.html-video-wrapper video {
    width: 100%;
    height: 100%;
}

.popup-video-section {
    position: relative;
}

.popup-video-section::before {
    content: "";
    background-color: rgba(0, 0, 0, 0.3);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.popup-video-section img {
    width: 100%;
    max-height: 500px;
}

.popup-video-section .external-link {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    margin-top: -50px;
    margin-left: -50px;
    color: #fff;
    font-size: 44px;
    line-height: 90px;
    border: 6px solid #fff;
    text-align: center;
    border-radius: 50%;
    z-index: 20;
}

.popup-video-section .external-link i {
    margin-left: 10px;
}

.services-section {}

.sbox-gutter {
    border-right: 1px solid #dedede;
    border-bottom: 1px solid #dedede;
}

.sbox-gutter:nth-child(3),
.sbox-gutter:nth-child(6) {
    border-right: 0;
}

.sbox-gutter:nth-child(4),
.sbox-gutter:nth-child(5),
.sbox-gutter:nth-child(6) {
    border-bottom: 0;
}

.sbox-gutter:hover {
    background-color: #b51b1b;
}

.sbox-gutter,
.sbox-gutter i::before,
.sbox-gutter h3,
.sbox-gutter p {
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

.sbox-gutter:hover i::before,
.sbox-gutter:hover h3,
.sbox-gutter:hover p {
    color: #fff;
}

.service-box {
    padding: 30px 15px;
}

.service-box i::before {
    font-size: 40px;
    margin-bottom: 20px;
    color: #b51b1b;
}

.service-box h3 {
    color: #b51b1b;
    font-weight: 500;
    font-size: 20px;
    text-transform: capitalize;
    text-align: left;
    margin: -3px 0;
}

.service-box h4 {
    text-transform: capitalize;
    font-weight: 700;
    text-align: left;
    font-size: 14px;
    margin: 3px 0;
}

.service-box p {
    line-height: 22px;
    margin: 24px 0;
    padding-bottom: 15px;
    text-align: left;
}

@media (min-width:768px) {
    .service-box i::before {
        font-size: 40px;
        margin-bottom: 20px;
        float: left;
        color: #b51b1b;
        padding-right: 15px;
    }
}

.service-section-v2 {
    padding-top: 100px;
}

.service-box-v2 {
    margin-bottom: 50px;
}

.service-box-v2 h3 {
    font-size: 18px;
    color: #3f3f3f;
}

.service-box-v2 h3 i:before {
    font-size: 25px;
    margin-right: 5px;
}

.service-box-v2:hover h3 {
    color: #b51b1b;
}

.service-section-v3 {
    background-color: #f4f4f4;
    border-top: 1px solid #d2d2d2;
}

.service-section-v3 .sbox-gutter:nth-child(2),
.service-section-v3 .sbox-gutter:nth-child(4) {
    border-right: 0;
}

.service-section-v3 .sbox-gutter:nth-child(3) {
    border-right: 1px solid #dedede;
}

.service-section-v3 .sbox-gutter:nth-child(3),
.service-section-v3 .sbox-gutter:nth-child(4) {
    border-bottom: 0;
}

.service-section-v3 .service-box {
    padding: 40px 30px;
}

.service-section-v3 .service-box h3 {
    font-size: 18px;
}

.service-section-v3 .service-box i::before {
    font-size: 30px;
    margin-right: 7px;
}

.process-section {
    background: url(../images/process-bg.jpg) no-repeat #dedede;
    -webkit-background-size: cover;
    background-size: cover;
}

.process-box {
    background-color: #b51b1b;
    color: #fff;
    padding: 30px;
    border-radius: 10px;
}

.process-box i::before {
    font-size: 30px;
}

.process-box h3 {
    font-size: 16px;
    line-height: 45px;
    color: #fff;
    margin: 0;
}

ul#filter {
    margin-bottom: 50px;
}

ul#filter li {
    font-size: 16px;
    line-height: 25px;
    padding: 7px 20px;
    border-radius: 0;
    cursor: pointer;
}

ul#filter li.active {
    background-color: #b51b1b;
    color: #fff;
}

ul#filter li.active>a {
    background-color: #b51b1b;
    color: #fff;
}

ul#filter.filter-square li {
    border: 1px solid #ccc;
    border-radius: 0;
    padding: 5px 20px;
    margin: 2px;
}

ul#filter.filter-square li.active {
    border: 1px solid transparent;
}

.drpli {
    border: 0px;
    border-radius: 0;
    padding: 5px 20px;
    margin: 2px;
}

ul#filter.filter-rounded li {
    border: 0;
    border-radius: 3px;
    background-color: #E0E0E0;
    padding: 5px 20px;
    margin: 2px;
}

ul#filter.filter-rounded li.active {
    background-color: #1B2E3F;
}

ul#filter.filter-transparent li {
    color: #a9a8a8;
    padding: 5px 15px;
    font-size: 14px;
    text-transform: uppercase;
}

ul#filter.filter-transparent li.active {
    background-color: transparent;
    color: #b51b1b;
}

ul#portfolio-grid {
    overflow: hidden;
    background-color: #fff;
}

ul#portfolio-grid li img {
    width: 100%;
}

ul#portfolio-grid>li {
    float: left;
    display: block;
    height: auto;
}

ul#portfolio-grid.five-column>li {
    width: 20%;
    padding: 5px;
}

ul#portfolio-grid.four-column>li {
    width: 25%;
}

ul#portfolio-grid.three-column>li {
    width: 33.33%;
}

ul#portfolio-grid.two-column>li {
    width: 50%;
}

@media (max-width:1199px) {
    ul#portfolio-grid.five-column>li {
        width: 25%;
    }
}

@media (max-width:991px) {

    ul#portfolio-grid.five-column>li,
    ul#portfolio-grid.four-column>li {
        width: 33.33%;
    }
}

@media (max-width:767px) {

    ul#portfolio-grid.five-column>li,
    ul#portfolio-grid.four-column>li,
    ul#portfolio-grid.three-column>li {
        width: 50%;
    }
}

@media (max-width:480px) {

    ul#portfolio-grid.five-column>li,
    ul#portfolio-grid.four-column>li,
    ul#portfolio-grid.three-column>li,
    ul#portfolio-grid.two-column>li {
        width: 50%;
    }

    .mytabs {
        margin-left: -11%;
    }
}

.portfolio-item.gutter {
    margin-bottom: 20px !important;
}

.portfolio {
    position: relative;
    overflow: hidden;
}

.portfolioh {
    position: relative;
    overflow: hidden;
    padding: 20px;
}

.portfolio .tt-overlay {
    background-color: rgba(255, 42, 64, 0.9);
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.2s ease-out;
    -moz-transition: opacity 0.2s ease-out;
    -o-transition: opacity 0.2s ease-out;
    transition: opacity 0.2s ease-out;
}

.portfolio:hover .tt-overlay {
    opacity: 1;
    visibility: visible;
}

.portfolio-info .project-title,
.portfolio-info .links {
    position: absolute;
    left: 0;
    color: #fff;
    width: 100%;
    opacity: 0;
    visibility: hidden;
}

.portfolio-info .project-title {
    top: 60%;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.portfolio:hover .portfolio-info .project-title {
    top: 35%;
    opacity: 1;
    visibility: visible;
}

.portfolio-info .links {
    top: 90%;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.portfolio:hover .portfolio-info .links {
    top: 55%;
    opacity: 1;
    visibility: visible;
}

.portfolio-info .btn {
    background-color: transparent;
    ;
    border-color: #fff;
    padding: 12px 22px;
    border-radius: 20px;
}

.portfolio-info .btn:hover {
    background-color: #fff;
    ;
    border-color: #fff;
    color: #b51b1b;
}

.portfolio-container .btn.view-more {
    margin-top: 40px;
}

.hover-two .portfolio:hover .portfolio-info .links {
    top: 46%;
}

.hover-two .portfolio .tt-overlay {
    background-color: rgba(0, 0, 0, 0.7);
}

.portfolio-details {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
}

.portfolio-details li {
    display: inline-block;
    position: relative;
    bottom: -40px;
    opacity: 0;
    visibility: hidden;
    transform: translateZ(0);
}

.portfolio:hover .portfolio-details li {
    bottom: 0;
    opacity: 1;
    visibility: visible;
}

.portfolio:hover .portfolio-details li:nth-child(1) {
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.portfolio:hover .portfolio-details li:nth-child(2) {
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.portfolio-details li a {
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background-color: rgb(255, 42, 64);
    color: white;
}

.portfolio-details li a:hover {
    background-color: white;
    color: black;
}

.dd {
    position: absolute;
    margin-left: 307px;
}

.portfolio-nav {
    padding: 40px 0;
}

.portfolio-nav a {
    margin-right: 20px;
    color: #a7a7a7;
}

.portfolio-nav a:hover {
    color: #b51b1b;
}

.project-overview {
    padding: 90px 0;
}

.single-project-section.alter .project-overview {
    padding: 0;
}

.project-overview h2 {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 20px;
}

.project-overview p {
    margin-bottom: 25px;
}

.client-testimonial blockquote {
    font-size: 17px;
    border-left: 5px solid #b51b1b;
    background: #fafafa;
    font-style: italic;
}

.portfolio-meta li {
    margin: 15px 0;
    color: #666;
}

.portfolio-meta li {
    margin: 15px 0;
}

.portfolio-meta li span {
    display: inline-block;
    width: 130px;
    letter-spacing: 1px;
    color: #202020;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
}

.portfolio-meta li a {
    margin-right: 10px;
    color: #a7a7a7;
}

.portfolio-meta li a:hover {
    color: #b51b1b;
}

.quick-overview .btn {
    padding: 9px 20px;
    text-transform: capitalize;
    margin-top: 20px;
}

@media (max-width:991px) {
    .project-overview {
        padding: 60px 0;
    }

    .quick-overview {
        margin-top: 30px;
    }

    .single-project-section.alter .project-overview {
        padding-bottom: 90px;
    }

    .single-project-section.alter .pb-100 {
        padding-bottom: 60px;
    }
}

.trendy-slider {}

.bwWrapper {
    position: relative;
    display: block;
}

.case-study-section {
    color: #fff;
}

.case-study-left {
    background-color: #b51b1b;
    padding: 60px 40px 60px 110px;
}

.case-study-right {
    background-color: #2c3e50;
    padding: 60px 110px 60px 40px;
}

.case-study-section h1 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 15px;
}

.case-study-section p {
    font-size: 18px;
    margin-bottom: 30px;
}

.case-study-section .btn {
    font-weight: 300;
    text-transform: uppercase;
    background-color: transparent;
    border-color: #fff;
}

.case-study-section .btn:hover {
    background-color: #fff;
    border-color: #fff;
}

.case-study-left .btn:hover {
    color: #b51b1b;
}

.case-study-right .btn:hover {
    color: #2c3e50;
}

#myMap {
    height: 250px;
}

#mapcontent p {
    margin: 0;
    font-size: 16px;
}

.contact-section .btn {
    font-weight: 600;
    min-width: 350px;
    background-color: #b51b1b;
    border-color: #b51b1b;
    height: 65px;
}

.contact-section .btn:hover {
    background-color: #273589;
    border-color: #273589;
}

.footer-section {
    padding: 135px 0;
    background-color: #202020;
    color: #fff;
    position: relative;
    margin-top: 60px;
}

.customarrowicon {
    margin-top: -95px;
}

.toptodown i {
    font-size: 70px;
    line-height: 85px;
    color: #fff;
    width: 100px;
    height: 100px;
    position: absolute;
    top: -50px;
    left: 50%;
    margin-left: -50px;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.toptodown i:hover {
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.backToTop i {
    font-size: 70px;
    line-height: 85px;
    background: #b51b1b;
    color: #fff;
    width: 100px;
    height: 100px;
    position: absolute;
    top: -50px;
    left: 50%;
    margin-left: -50px;
    border: 5px solid #fff;
    border-radius: 50%;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.bounce {
    margin-top: 30px;
    -webkit-animation-name: bounce;
    -moz-animation-name: bounce;
    -o-animation-name: bounce;
    animation-name: bounce;
}

.animated {
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -ms-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    animation-fill-mode: both;
    -webkit-animation-duration: 2s;
    -moz-animation-duration: 2s;
    -ms-animation-duration: 2s;
    -o-animation-duration: 2s;
    animation-duration: 2s;
}

@-webkit-keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        -webkit-transform: translateY(0);
    }

    40% {
        -webkit-transform: translateY(-30px);
    }

    60% {
        -webkit-transform: translateY(-15px);
    }
}

@-moz-keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        -moz-transform: translateY(0);
    }

    40% {
        -moz-transform: translateY(-30px);
    }

    60% {
        -moz-transform: translateY(-15px);
    }
}

@-o-keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        -o-transform: translateY(0);
    }

    40% {
        -o-transform: translateY(-30px);
    }

    60% {
        -o-transform: translateY(-15px);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-30px);
    }

    60% {
        transform: translateY(-15px);
    }
}

.backToTop i:hover {
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    background: #C02232;
}

.footer-section p {
    font-size: 16px;
    line-height: 30px;
    color: #b5b5b5;
}

.footer-logo p {
    margin-bottom: 26px;
}

.footer-logo p span {
    color: #b51b1b;
    font-weight: 600;
}

.footer-logo img {
    width: initial;
    margin-bottom: 30px;
}

.copyright {
    margin-top: 26px;
}

.copyright p {
    margin: 0;
}

.social-icon ul li a i {
    font-size: 24px;
    line-height: 50px;
    color: #fff;
    width: 50px;
    height: 50px;
    border: 1px solid #fff;
    border-radius: 50%;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.social-icon ul li a i:hover {
    color: #b51b1b;
    border: 1px solid #b51b1b;
}

#preloader {
    background: #FFF;
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 9999;
}

#status,
.status-mes {
    background-image: url(../images/preloder.gif);
    background-position: center;
    background-repeat: no-repeat;
    height: 200px;
    left: 50%;
    margin: -100px 0 0 -100px;
    position: absolute;
    top: 50%;
    width: 200px;
}

.status-mes {
    background: none;
    left: 0;
    margin: 0;
    text-align: center;
    top: 65%;
}

.promo-section {
    background-color: #b51b1b;
    color: #fff;
}

.promo-section .section-title {
    color: #fff;
}

.promo-block {}

.promo-block i {
    display: block;
    margin: 0 auto 18px;
    width: 74px;
    height: 74px;
    font-size: 30px;
    line-height: 70px;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 100%;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.promo-block:hover i {
    color: #b51b1b;
    background-color: #fff;
    border: 1px solid transparent;
}

.promo-block h3 {
    color: #fff;
    font-size: 18px;
    line-height: 25px;
    font-weight: 400;
}

@media (max-width:767px) {
    .promo-block {
        margin-bottom: 30px;
    }
}

.gallery-section {}

#gallerySlider {
    margin-top: 55px;
    position: relative;
}

#gallerySlider img {
    width: 100%;
}

#gallerySlider .flex-control-thumbs li {
    width: auto;
    margin: 0 6px 0 0;
}

#gallerySlider .flex-control-thumbs li:last-child {
    margin: 0 0 0 0;
}

#gallerySlider .flex-control-thumbs img {
    width: 185px !important;
    opacity: .5;
}

#gallerySlider .flex-control-thumbs .flex-active {
    opacity: 1;
}

.flex-direction-nav a:before {
    font-size: 20px;
    color: #b51b1b;
    text-shadow: none;
}

@media (max-width:767px) {
    .flex-control-thumbs {
        display: none;
    }
}

@media (min-width:768px) and (max-width:991px) {
    #gallerySlider .flex-control-thumbs img {
        width: 115px !important;
    }
}

@media (min-width:992px) and (max-width:1199px) {
    #gallerySlider .flex-control-thumbs img {
        width: 151px !important;
    }
}

.work-showcase-section {
    background-color: #fafafa;
    border-top: 1px solid #d2d2d2;
    border-bottom: 1px solid #d2d2d2;
    padding: 100px 0 70px;
}

#work-showcase {
    margin-top: 45px;
}

#work-showcase img {
    width: 100%;
}

#work-showcase .carousel-control {
    top: 50%;
    margin-top: -26px;
    width: 52px;
    height: 52px;
    font-size: 40px;
    line-height: 50px;
    color: #000;
    background-color: #fff;
    text-shadow: none;
    background-image: none !important;
    border-radius: 100%;
}

#work-showcase .carousel-control:focus,
#work-showcase .carousel-control:hover {
    color: #000;
    background-color: #b51b1b;
    filter: alpha(opacity=100);
    opacity: 1;
}

#work-showcase .carousel-control.left {
    left: 5%;
}

#work-showcase .carousel-control.right {
    right: 5%;
}

#work-showcase .carousel-indicators li {
    width: 12px;
    height: 12px;
    margin: 0 0 0 5px;
    background-color: #c7c7c7;
    border: 1px solid transparent;
}

#work-showcase .carousel-indicators .active {
    background-color: #b51b1b;
}

@media screen and (min-width:768px) {
    #work-showcase .carousel-indicators {
        bottom: -50px;
    }
}

.work-showcase-section .loadmore-btn {
    margin-top: 80px;
}

.work-together-wrapper {}

.work-together-thumb img {
    width: 100%;
}

@media (max-width:991px) {
    .work-together-thumb img {
        margin-bottom: 30px;
    }
}

.intro-block {
    width: 25%;
    min-height: 300px;
    float: left;
    color: #fff;
    background-color: #ccc;
    position: relative;
    overflow: hidden;
}

.intro-block:nth-child(odd) {
    background: #b51b1b;
}

.intro-block:nth-child(even) {
    background: #2a2425;
}

.intro-content {
    position: absolute;
    top: 50%;
    width: 100%;
    left: 0;
    padding: 0 50px;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    -webkit-transform: translate(0%, -50%);
    -moz-transform: translate(0%, -50%);
    -ms-transform: translate(0%, -50%);
    -o-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
}

.intro-block:hover .intro-content {
    -webkit-transform: translate(0%, -65%);
    -moz-transform: translate(0%, -65%);
    -ms-transform: translate(0%, -65%);
    -o-transform: translate(0%, -65%);
    transform: translate(0%, -65%);
}

.intro-block h2 {
    color: #fff;
}

.intro-block p {
    line-height: 24px;
    margin: 0;
}

.intro-block a.learn-more {
    position: absolute;
    color: #b51b1b;
    background-color: rgba(255, 255, 255, 0.9);
    width: 100%;
    left: 0;
    bottom: -50px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.intro-block:hover a.learn-more {
    bottom: 0;
    opacity: 1;
    visibility: visible;
}

.intro-block a.learn-more:hover {
    background: #fff;
}

.intro-block a.learn-more i {
    margin-left: 15px;
}

@media (min-width:992px) and (max-width:1199px) {
    .intro-content {
        padding: 0 30px;
    }
}

@media (max-width:991px) {
    .intro-block {
        width: 50%;
        border-bottom: 1px solid #f1f1f1;
    }
}

@media (max-width:650px) {
    .intro-block {
        width: 100%;
        border-bottom: 0;
    }
}

.client-slider-v4-wrapper h2 {
    margin-bottom: 40px;
}

.about-intro .section-title {
    margin-bottom: 35px;
    text-align: center;
}

.about-intro p {
    margin-bottom: 25px;
}

.about-intro img {
    width: 100%;
}

.video-intro {
    position: relative;
}

.video-intro::before {
    content: "";
    background-color: rgba(0, 0, 0, 0.3);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.video-intro .external-link {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -37px;
    margin-left: -37px;
    width: 74px;
    height: 74px;
    font-size: 30px;
    line-height: 64px;
    text-align: center;
    color: #fff;
    border: 5px solid #fff;
    border-radius: 100%;
}

.video-intro .external-link i.fa-play {
    margin-left: 5px;
}

.advantage-section {
    padding: 100px 0;
    background-color: #fafafa;
    border-top: 1px solid #d2d2d2;
}

@media (max-width:991px) {
    .advantage-section {
        padding: 100px 0;
    }
}

.advantage-section .features .media-body p {
    color: #666;
}

.advantage-img-wrapper img {
    float: right;
}

@media (min-width:992px) {
    .advantage-section.advantage-home {
        background: url(../../assets/images/feature-bg.png) no-repeat scroll 100% 80px;
        padding: 100px 0;
        border-top: 0;
    }
}

.history-section {}

.history-cover,
.history-wrapper {
    min-height: 550px;
}

@media (max-width:991px) {

    .history-cover,
    .history-wrapper {
        min-height: 380px;
    }
}

.history-cover {
    background: url(../../assets/images/history-bg.jpg) center center no-repeat #5E5E5E;
    background-size: cover;
}

.history-wrapper {
    background-color: #2c3e50;
    color: #fff;
    padding: 70px 40% 70px 70px;
}

@media (max-width:1199px) {
    .history-wrapper {
        padding: 50px;
    }
}

@media (min-width:1200px) {
    .history-wrapper {
        padding: 70px 16% 70px 70px;
    }
}

@media (min-width:1920px) {
    .history-wrapper {
        padding: 70px 40% 70px 70px;
    }
}

.history-wrapper h2 {
    font-size: 30px;
    color: #fff;
    margin-bottom: 30px;
}

#historyCarousel h3 {
    color: #fff;
    font-size: 18px;
    line-height: 30px;
    font-weight: 700;
    font-family: 'Open Sans', sans-serif;
}

#historyCarousel p {
    font-size: 14px;
    line-height: 30px;
    font-weight: 300;
    margin-bottom: 30px;
}

#historyCarousel .carousel-control {
    top: 6px;
    width: 20px;
    height: 20px;
    font-size: 15px;
    line-height: 16px;
    border: 1px solid #fff;
    text-align: center;
    text-shadow: none;
    filter: alpha(opacity=100);
    opacity: 1;
}

#historyCarousel .carousel-control.left {
    right: 25px;
    left: auto;
}

#historyCarousel .carousel-control.left,
#historyCarousel .carousel-control.right {
    background-image: none;
}

#historyCarousel .carousel-control:focus,
#historyCarousel .carousel-control:hover {
    color: #2c3e50;
    background-color: #fff;
}

.client section {}

.client {
    border-right: 1px solid #ededed;
    border-bottom: 1px solid #ededed;
}

.client:nth-child(4),
.client:nth-child(8),
.client:nth-child(12) {
    border-right: 0;
}

.client:nth-child(9),
.client:nth-child(10),
.client:nth-child(11),
.client:nth-child(12) {
    border-bottom: 0;
}

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

    .client:nth-child(9),
    .client:nth-child(10) {
        border-bottom: 1px solid #ededed;
    }
}

.client {
    padding: 38px;
}

@media (max-width:991px) {
    .client {
        padding: 30px 0;
    }
}

.awards-section {
    background: url(../../assets/images/awards-bg.png) repeat #2C3E50;
    color: #fff;
}

.awards-section .section-title {
    color: #fff;
}

.awards-img-wrapper img {
    width: 100%;
    margin-bottom: 30px;
}

.post-wrapper {
    margin-bottom: 50px;
    border: 1px solid #eee;
}

.featured-wrapper img {
    width: 100%;
}

.blog-content {
    padding: 20px;
}

.entry-header {
    margin-bottom: 15px;
}

.entry-header .entry-meta {
    text-transform: capitalize;
}

.entry-header .entry-meta li {
    float: left;
    margin-right: 20px;
}

.entry-header .entry-meta li:last-child {
    margin-right: 0;
}

.entry-header .entry-meta li a {
    display: block;
    color: #a7a7a7;
    font-size: 13px;
    line-height: 24px;
}

.entry-header .entry-meta li a:hover {
    color: #b51b1b;
}

.entry-header h2 {
    font-size: 25px;
    line-height: 25px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 7px;
}

.entry-header h2 a {
    color: #b51b1b;
}

.entry-header h2 a:hover {
    color: #C02232;
}

.entry-footer {
    font-size: 12px;
    padding: 13px;
    border-top: 1px solid #eee;
}

.entry-footer .entry-meta li {
    display: inline-block;
    margin-right: 7px;
}

.entry-footer a {
    display: block;
    padding: 0px 15px;
    font-size: 10px;
    line-height: 28px;
    color: #a7a7a7;
    background: #fff;
    text-transform: uppercase;
    border: 1px solid #eee;
    border-radius: 30px;
}

.entry-footer a:hover {
    color: #fff;
    background: #b51b1b;
    border: 1px solid transparent;
}

@media (max-width:479px) {
    .entry-footer a {
        padding: 0px 8px;
        font-size: 8px;
        line-height: 24px;
    }
}

.gallery-slider .carousel-control {
    top: 50%;
    margin-top: -18px;
    width: 34px;
    height: 34px;
    line-height: 34px;
    color: rgba(0, 0, 0, 0.7);
    background-color: rgba(255, 255, 255, 0.5);
    text-shadow: none;
    filter: alpha(opacity=100);
    opacity: 1;
    border-radius: 100%;
    z-index: 300;
    background-image: none;
}

.gallery-slider .carousel-control:focus,
.gallery-slider .carousel-control:hover {
    color: #fff;
    background-color: #b51b1b;
}

.gallery-slider .carousel-control.left {
    left: 12px;
}

.gallery-slider .carousel-control.right {
    right: 12px;
}

.post-wrapper.format-video iframe {
    width: 100%;
    min-height: 344px;
}

.post-wrapper.format-audio .featured-wrapper::before {
    top: auto;
    bottom: 0;
    height: 50px;
}

.post-wrapper.format-audio iframe {
    width: 100%;
    height: 203px;
}

@media (min-width:992px) and (max-width:1199px) {
    .post-wrapper.format-audio iframe {
        height: 165px;
    }
}

.post-wrapper.format-quote {
    border: 0;
}

.format-quote .blog-content {
    padding: 0;
}

.post-wrapper blockquote {
    padding: 20px 20px 20px 60px;
    font-size: 16px;
    color: #969595;
    border-left: 0;
    border: 1px solid #eee;
    position: relative;
    margin: 0;
}

.post-wrapper blockquote::before {
    position: absolute;
    content: "\f10d";
    font-family: FontAwesome;
    font-size: 30px;
    color: #eee;
    left: 15px;
    top: 25px;
}

.blog-grid .post-wrapper blockquote {
    border: 0;
}

.post-wrapper.format-link .entry-header {
    margin-bottom: 35px;
}

.post-wrapper .link-post {
    text-align: center;
}

.post-wrapper .link-post a {
    display: block;
    color: #b51b1b;
    font-size: 22px;
    font-weight: 600;
    padding: 35px 20px;
    background-color: #f1f1f1;
}

.post-wrapper .link-post:hover a {
    color: #fff;
    background-color: #b51b1b;
}

@media (max-width:479px) {
    .post-wrapper .link-post a {
        font-size: 16px;
        font-weight: 600;
        padding: 20px 20px;
    }
}

.blog-pagination {}

@media (max-width:767px) {
    .blog-pagination {
        margin-bottom: 40px;
    }
}

.pagination {
    margin: 0;
}

.pagination>li>a,
.pagination>li>span {
    font-size: 13px;
    margin-left: 10px;
    color: #a7a7a7;
    border: 1px solid #eee;
    padding: 8px 12px;
}

.pagination>li:first-child>a,
.pagination>li:first-child>span {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.pagination>li:last-child>a,
.pagination>li:last-child>span {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.pagination>li>a:hover,
.pagination>li>span:hover,
.pagination>li>a:focus,
.pagination>li>span:focus {
    color: #fff;
    background-color: #b51b1b;
    border-color: transparent;
}

.pagination>.active>a,
.pagination>.active>span,
.pagination>.active>a:hover,
.pagination>.active>span:hover,
.pagination>.active>a:focus,
.pagination>.active>span:focus {
    background-color: #b51b1b;
    border-color: #b51b1b;
}

.pagination>.disabled>a,
.pagination>.disabled>a:focus,
.pagination>.disabled>a:hover,
.pagination>.disabled>span,
.pagination>.disabled>span:focus,
.pagination>.disabled>span:hover {
    border-color: #eee;
}

.page-count {
    font-size: 13px;
    border: 1px solid #eee;
    color: #a7a7a7;
    padding: 2px 12px;
}

@media (max-width:479px) {

    .pagination>li>a,
    .pagination>li>span {
        margin-bottom: 10px;
    }
}

.pager {}

.pager li {
    float: left;
    width: 48%;
    margin-right: 2%;
}

.pager li:last-child {
    margin-right: 0;
}

.pager li>a,
.pager li>span {
    display: block;
    background-color: #dadada;
    color: #fff;
    border: 1px solid #dadada;
    border-radius: 0;
}

.pager li>a:focus,
.pager li>a:hover {
    background-color: #b51b1b;
    border: 1px solid transparent;
}

.pager li>a i {
    padding: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}

.pager li>a:hover i {
    opacity: 1;
    visibility: visible;
}

.pager li:first-child>a:hover i {
    padding-right: 10px;
}

.pager li:last-child>a:hover i {
    padding-left: 10px;
}

@media (max-width:350px) {

    .pager li>a,
    .pager li>span {
        padding: 5px 0;
    }
}

.sidebar-wrapper {}

@media (max-width:991px) {
    .sidebar-wrapper {
        margin-top: 50px;
    }
}

.sidebar-wrapper .widget {
    margin-bottom: 45px;
}

.sidebar-wrapper .widget h2 {
    font-size: 20px;
    font-weight: 700;
    color: #b51b1b;
}

.sidebar-wrapper .widget_search {
    position: relative;
}

.sidebar-wrapper .widget_search .form-control {
    font-size: 14px;
    font-weight: 300;
    color: #666666;
}

.sidebar-wrapper .widget_search button {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 60px;
    background-color: transparent;
    border: 0;
}

.widget_recent_entries ul li {
    margin-top: 30px;
}

.widget_recent_entries h2 {
    margin-bottom: 25px;
}

.widget-post-media {
    display: table-cell;
    padding: 0px 15px 0px 0px;
}

.widget-post-media img {
    width: 70px;
    height: 60px;
}

.widget-post-info {
    display: table-cell;
    vertical-align: top;
}

.widget-post-info h3 {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    line-height: 22px;
    margin: 0;
}

.widget-post-info h3 a {
    color: #202020;
}

.widget-post-info h3 a:hover {
    color: #b51b1b;
}

.widget-post-info .post-meta {
    color: #a7a7a7;
    font-size: 13px;
    line-height: 22px
}

.widget_categories h2 {
    margin-bottom: 25px;
}

.widget_categories ul li a {
    font-size: 14px;
    display: block;
    color: #666;
    line-height: 27px;
    padding: 6px 0;
}

.widget_categories ul li a:hover {
    color: #b51b1b;
}

.widget_categories ul li a i {
    font-size: 18px;
    margin-right: 10px;
}

.widget_categories ul li a .badge {
    float: right;
    background-color: transparent;
    color: #d1d1d1;
    border: 1px solid #eee;
    padding: 6px 15px;
    border-radius: 50px;
    font-weight: 400;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    -ms-transition: all 0.4s ease-in-out 0s;
    -o-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
}

.widget_categories ul li a:hover .badge {
    background-color: #b51b1b;
    color: #fff;
    border: 1px solid transparent;
}

.widget_tag_cloud h2 {
    margin-bottom: 25px;
}

.widget_tag_cloud ul li {
    float: left;
    margin-right: 7px;
    margin-bottom: 7px;
}

.widget_tag_cloud ul li a {
    display: block;
    font-size: 13px;
    line-height: 28px;
    padding: 0px 11px;
    color: #666;
    border: 1px solid #eee;
    border-radius: 50px;
}

.widget_tag_cloud ul li a:hover {
    background-color: #b51b1b;
    color: #fff;
    border: 1px solid transparent;
}

.blog-grid .post-wrapper {
    margin-bottom: 30px;
    border: 0;
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
    -webkit-transition: box-shadow 300ms;
    -moz-transition: box-shadow 300ms;
    -o-transition: box-shadow 300ms;
    -ms-transition: box-shadow 300ms;
    transition: box-shadow 300ms;
}

.blog-grid .post-wrapper:hover {
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}

.blog-grid .featured-wrapper {
    position: relative;
    min-height: 70px;
}

.blog-grid .featured-wrapper::before {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    background: -webkit-linear-gradient(top, rgba(255, 0, 0, 0), rgba(69, 67, 80, 0.52));
    background: -o-linear-gradient(bottom, rgba(255, 0, 0, 0), rgba(69, 67, 80, 0.52));
    background: -moz-linear-gradient(bottom, rgba(255, 0, 0, 0), rgba(69, 67, 80, 0.52));
    background: linear-gradient(to bottom, rgba(255, 0, 0, 0), rgba(69, 67, 80, 0.52));
    background: linear-gradient(to bottom, rgba(255, 0, 0, 0), rgba(69, 67, 80, 0.52));
    width: 100%;
    height: 70px;
    z-index: 100;
}

.blog-grid .featured-wrapper .entry-meta {
    position: absolute;
    left: 3px;
    bottom: 3px;
    width: 100%;
    z-index: 200;
}

.blog-grid .featured-wrapper .entry-meta li {
    float: left;
    padding-left: 10px;
    padding-right: 10px;
}

.blog-grid .featured-wrapper .entry-meta li a {
    display: block;
    color: #fff;
}

.blog-grid .featured-wrapper .entry-meta li a:hover {
    color: #b51b1b;
}

@media (max-width:479px) {
    .blog-grid .featured-wrapper .entry-meta li {
        padding-left: 5px;
        padding-right: 5px;
        line-height: 20px;
    }

    .blog-grid .featured-wrapper .entry-meta li a {
        font-size: 12px;
    }
}

.blog-grid .featured-wrapper .external-link {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 50px;
    height: 50px;
    margin-left: -25px;
    margin-top: -25px;
    border: 0;
    border-radius: 50%;
    color: rgba(0, 0, 0, 0.7);
    background-color: rgba(255, 255, 255, 0.5);
    font-size: 20px;
    line-height: 50px;
    text-align: center;
    z-index: 300;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.blog-grid .featured-wrapper .external-link:hover {
    color: #fff;
    background-color: #b51b1b;
}

.blog-grid .featured-wrapper .external-link i.fa-play {
    margin-left: 5px;
}

.blog-grid.v2 .post-wrapper {
    margin-bottom: 55px;
}

.blog-grid a.author img {
    width: 60px;
    height: 70px;
    position: absolute;
    top: -30px;
    left: 50%;
    margin-left: -30px;
    background-color: #fff;
    padding: 4px;
    border-radius: 30px;
    z-index: 100;
}

.blog-grid .entry-content .readmore {
    margin: 30px 0 40px;
}

.blog-grid .entry-content .readmore a {
    padding: 11px 24px;
    border-radius: 30px;
    border: 2px solid #b51b1b;
}

.blog-grid .entry-content .readmore a:hover {
    color: #fff;
    background-color: #b51b1b;
    border: 2px solid transparent;
}

.blog-grid .entry-footer {
    padding: 0;
    border-top: 0;
}

.blog-grid .entry-footer .entry-meta li {
    margin-right: 20px;
}

.blog-grid .entry-footer .entry-meta li:last-child {
    margin-right: 0;
}

.blog-grid .entry-footer .entry-meta li a {
    padding: 0;
    font-size: 16px;
    color: #b1b1b1;
    background: transparent;
    border: 0;
}

.blog-grid .entry-footer .entry-meta li a:hover i.fa-facebook {
    color: #3b5998;
}

.blog-grid .entry-footer .entry-meta li a:hover i.fa-twitter {
    color: #55acee;
}

.blog-grid .entry-footer .entry-meta li a:hover i.fa-tumblr {
    color: #35465c;
}

.blog-grid .entry-footer .entry-meta li a:hover i.fa-linkedin {
    color: #0077b5;
}

.blog-grid .entry-footer .entry-meta li a:hover i.fa-dribbble {
    color: #ea4c89;
}

.blog-grid .entry-footer .entry-meta li a:hover i.fa-behance {
    color: #1769ff;
}

.single-post .post-wrapper {
    border: 0;
    margin-bottom: 0;
}

.single-post .blog-content {
    padding: 20px 0;
}

.author-box {
    border: 1px solid #eee;
}

.author-box .media {
    padding: 30px 20px;
}

.author-box-image {
    padding-right: 20px;
}

.author-box-info h3 {
    font-family: 'Open Sans', sans-serif;
}

.author-box-info h3 small {
    color: #b51b1b;
    padding-left: 10px;
}

.author-social-info {
    border-top: 1px solid #eee;
    padding: 15px 20px;
}

.authors-post {
    float: left;
}

.authors-post a,
.authors-post i {
    color: #a7a7a7;
}

.authors-post a:hover {
    color: #b51b1b;
}

.authors-post i {
    margin-right: 10px;
}

.author-social {
    float: right;
}

.author-social ul li a {
    color: #a7a7a7;
}

.author-social ul li a:hover {
    color: #b51b1b;
}

@media (max-width:350px) {
    .author-box .author-box-image {
        display: block;
        padding-right: 0;
    }

    .author-box .author-box-image img {
        margin: 0 auto 20px;
    }
}

.comments-wrapper {}

.comment-list .media {
    margin-top: 40px;
}

.comment-list .media:first-child {
    margin-top: 0;
}

.comment-list .media .media-left {
    padding-right: 20px;
}

.comment-list .media .media-left img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.comment-list .comment-info,
.comment-list .comment-info a {
    color: #a7a7a7;
    font-size: 13px;
    line-height: 22px;
}

.comment-list .comment-info i {
    padding: 0 10px;
}

.comment-list .comment-author a {
    font-size: 14px;
    color: #202020;
    font-weight: 600;
}

.comment-list .comment-author a:hover,
.comment-list .comment-info a:hover {
    color: #b51b1b;
}

.comment-respond .btn {
    border-radius: 0;
}

.hero-block-v1 {
    background-color: #fafafa;
}

@media(min-width:992px) {
    .hero-block-v1 {
        background-image: url(../../assets/images/cta-one-bg.jpg);
        -webkit-background-size: cover;
        background-size: cover;
    }
}

.hero-block-v1 h2 {
    font-size: 30px;
    color: #202020;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.hero-block-v1 h2 span {
    color: #b51b1b;
}

.hero-block-v1 .btn {
    margin-top: 30px;
}

.hero-block-v2 {
    background-color: #fff;
}

.hero-block-v2 h2 {
    font-size: 30px;
    line-height: 45px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 38px;
}

.hero-block-v2 h2 span {
    display: block;
    font-size: 45px;
    color: #b51b1b;
}

.hero-block-v2 p {
    font-size: 16px;
    line-height: 35px;
    margin-bottom: 35px;
}

.hero-block-v2 img {
    width: initial;
}

.hero-block-v3 {
    padding: 100px 0;
    background-color: #fafafa;
    border-top: 1px solid #d2d2d2;
    border-bottom: 1px solid #d2d2d2;
}

.hero-block-v3 p {
    font-size: 18px;
}

.hero-block-v4 p {
    font-size: 18px;
}

@media (max-width:991px) {
    .hero-block-v3 img {
        margin-bottom: 30px;
    }
}

.hero-block-v4 {
    padding-top: 30px;
}

.hero-block-v4 .company-overview {
    padding-top: 20px;
}

.hero-block-v4 .company-overview h2 {
    margin-bottom: 35px;
}

.hero-block-v4 .company-overview p {
    margin-bottom: 20px;
    font-size: 18px;
}

@media (min-width:992px) {
    .hero-block-v4 .overview-img-wrapper img {
        float: right;
    }
}

.hero-block-v5 {
    background-color: #f4f4f4;
    padding-top: 100px;
}

.hero-block-v5 .hero-thumb img {
    width: 100%;
}

.hero-block-v5 .hero-intro h2 {
    font-size: 25px;
    line-height: 40px;
    margin-bottom: 30px;
}

.hero-block-v5 .hero-intro p {
    margin-bottom: 18px;
}

.hero-block-v5 .hero-intro a.btn {
    margin-top: 22px;
}

@media (min-width:992px) and (max-width:1199px) {
    .hero-block-v5 .hero-intro h2 {
        line-height: 36px;
        margin-bottom: 10px;
    }

    .hero-block-v5 .hero-intro p {
        margin-bottom: 10px;
    }

    .hero-block-v5 .hero-intro a.btn {
        margin-top: 10px;
    }
}

@media(max-width:991px) {
    .hero-block-v5 .hero-intro {
        margin: 20px 0 50px;
    }
}

.hero-block-v6 {
    padding: 150px 0 90px;
}

.hero-block-v6 h2 {
    margin-bottom: 30px;
}

.hero-block-v6 .btn {
    margin-top: 30px;
}

@media (max-width:767px) {
    .hero-block-v6 .company-overview {
        margin-bottom: 30px;
    }
}

.cta-v1 {
    background-color: #b51b1b;
    color: #fff;
    padding: 50px 40px;
}

.cta-v1 h2 {
    font-family: 'Open Sans', sans-serif;
    font-size: 25px;
    line-height: 27px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 5px;
}

.cta-v1 p {
    font-size: 18px;
    line-height: 27px;
    font-weight: 400;
    margin: 0;
}

.cta-v1 .btn {
    background-color: transparent;
    border-color: #fff;
    font-size: 16px;
}

.cta-v1 .btn:hover {
    background-color: #fff;
    border-color: #fff;
    color: #b51b1b;
}

.cta-v1 .btn {
    float: right;
}

@media (max-width:767px) {
    .cta-v1 .btn {
        float: none;
        margin-top: 15px;
    }
}

.cta-v2-wrapper {
    padding-bottom: 110px;
}

.cta-v2 {
    border: 1px solid #ddd;
    padding: 35px 38px;
}

.cta-v2 h2 {
    font-family: 'Open Sans', sans-serif;
    font-size: 30px;
    line-height: 30px;
    font-weight: 700;
    text-transform: capitalize;
    color: #273589;
    margin-bottom: 10px;
}

.cta-v2 p {
    font-size: 18px;
    line-height: 27px;
    font-weight: 400;
    margin: 0;
}

.cta-v2 .btn {
    margin-top: 9px;
    float: right;
}

@media (max-width:767px) {
    .cta-v2 .btn {
        margin-top: 25px;
        float: none;
    }
}

.cta-v3 {
    padding: 74px 0;
    background-color: #b51b1b;
    color: #fff;
}

.cta-v3.dark {
    background-color: #f11128;
}

.cta-v3 h2 {
    font-family: 'Open Sans', sans-serif;
    font-size: 25px;
    line-height: 27px;
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 5px;
}

.cta-v3 p {
    font-size: 18px;
    line-height: 27px;
    font-weight: 400;
    margin: 0;
}

.cta-v3 .btn {
    background-color: transparent;
    border-color: #fff;
    font-size: 16px;
    float: right;
}

.cta-v3 .btn:hover {
    background-color: #fff;
    border-color: #fff;
    color: #b51b1b;
}

@media (max-width:767px) {
    .cta-v3 .btn {
        margin-top: 20px;
        float: left;
    }
}

.custom-title {
    margin-top: 30px;
}

.cta-v4 {
    padding: 55px 0;
    background-color: #273589;
    color: #fff;
}

.cta-v4 h2 {
    font-size: 30px;
    line-height: 50px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.cta-v4 .btn {
    font-size: 14px;
    font-weight: 700;
    color: #273589;
    border-color: #fff;
    background-color: #fff;
}

.cta-v4 .btn:hover {
    color: #fff;
    border-color: #b51b1b;
    background-color: #b51b1b;
}

@media (max-width:767px) {
    .cta-v4 .btn {
        margin-top: 20px;
        float: left;
    }
}

.client-slider-v1-wrapper {
    background-color: #fafafa;
    border-top: 1px solid #d2d2d2;
    border-bottom: 1px solid #d2d2d2;
}

#client-slider-v1 {
    padding: 0 10px 30px 10px;
}

#client-slider-v1 .carousel-control {
    background: none;
    top: auto;
    bottom: 40px;
    z-index: 100;
    text-shadow: none;
}

#client-slider-v1 .carousel-control i {
    color: rgba(0, 0, 0, 0.7);
    font-size: 12px;
    border: 1px solid rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
}

#client-slider-v1 .carousel-control:hover i,
#client-slider-v1 .carousel-control:focus i {
    color: #b51b1b;
    border-color: #b51b1b;
}

#client-slider-v1 .carousel-control.left {
    left: 30%;
}

#client-slider-v1 .carousel-control.right {
    right: 30%;
}

#client-slider-v1 .carousel-indicators {
    right: 50%;
    top: auto;
    bottom: 0;
    margin-right: -19px;
}

#client-slider-v1 .carousel-indicators li {
    width: 50px;
    height: 50px;
    margin: 5px;
    cursor: pointer;
    opacity: 0.4;
    overflow: hidden;
    background-color: transparent;
    border: 0;
    border-radius: 0;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

#client-slider-v1 .carousel-indicators .active {
    background: #333333;
    width: 85px;
    height: 85px;
    opacity: 1;
    overflow: hidden;
}

#client-slider-v1 .carousel-inner {
    min-height: 300px;
}

#client-slider-v1 .item blockquote {
    border-left: none;
    margin: 0;
    padding: 0;
    border: 0;
}

#client-slider-v1 .item blockquote::before {
    display: none;
}

#client-slider-v1 .testimonial-content {
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 30px;
    font-size: 16px;
    font-weight: 300;
    border-radius: 6px;
}

#client-slider-v1 .testimonial-content .author {
    font-weight: 700;
}

#client-slider-v1 .testimonial-content .author a:hover {
    color: #ffffff;
}

@media (max-width:991px) and (min-width:768px) {
    #client-slider-v1 .carousel-control {
        bottom: 0;
    }

    #client-slider-v1 .carousel-indicators {
        bottom: -45px;
    }
}

@media (max-width:766px) {
    #client-slider-v1 .carousel-control {
        bottom: 0;
    }

    #client-slider-v1 .carousel-control.left {
        left: 0;
    }

    #client-slider-v1 .carousel-control.right {
        right: 0;
    }

    #client-slider-v1 .carousel-indicators {
        bottom: -45px;
        left: 40%;
        width: 90%;
        margin-left: -35%;
    }
}

.client-slider-v2-wrapper {
    background: url(../../assets/images/client-testimonial-bg.jpg) center center no-repeat #5E5E5E;
    background-size: cover;
}

#client-slider-v2 .carousel-inner {
    min-height: 220px;
}

@media (max-width:700px) {
    #client-slider-v2 .carousel-inner {
        min-height: 300px;
    }
}

@media (max-width:479px) {
    #client-slider-v2 .carousel-inner {
        min-height: 400px;
    }
}

#client-slider-v2 blockquote {
    border-left: none;
    margin: 0;
    padding: 0;
    border: 0;
}

#client-slider-v2 blockquote::before {
    display: none;
}

#client-slider-v2 .testimonial-content {
    color: #000;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 30px;
    font-size: 16px;
    line-height: 27px;
    font-weight: 300;
    border-radius: 6px;
    text-align: center;
    position: relative;
}

#client-slider-v2 .testimonial-content::before {
    content: "";
    border-top: 15px solid rgba(255, 255, 255, 0.9);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    position: absolute;
    left: 50%;
    bottom: -15px;
    margin-left: -10px
}

#client-slider-v2 .testimonial-content .author {
    color: #fff;
    font-weight: 700;
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
}

#client-slider-v2 .testimonial-content .author span {
    color: #b51b1b;
}

#client-slider-v2 .carousel-control {
    background: none;
    top: auto;
    bottom: 12px;
    z-index: 100;
    width: 20px;
    height: 20px;
    font-size: 14px;
    line-height: 17px;
    text-shadow: none;
    filter: alpha(opacity=100);
    opacity: 1;
    border: 1px solid #fff;
    border-radius: 100%;
}

#client-slider-v2 .carousel-control:focus,
#client-slider-v2 .carousel-control:hover {
    color: #b51b1b;
    border: 1px solid #b51b1b;
}

#client-slider-v2 .carousel-control.left {
    left: 38%;
}

#client-slider-v2 .carousel-control.right {
    right: 38%;
}

@media (max-width:991px) {
    #client-slider-v2 .carousel-control.left {
        left: 30%;
    }

    #client-slider-v2 .carousel-control.right {
        right: 30%;
    }
}

.client-slider-v3 {
    margin-top: 45px;
    position: relative;
}

.client-slider-v3 blockquote {
    padding: 0;
    margin: 0;
    font-size: 15px;
    line-height: 25px;
    color: #585858;
    border-left: 0;
    border: 0;
    width: 90%;
}

.client-slider-v3 blockquote::before {
    display: none;
}

.client-slider-v3 blockquote p {
    font-style: italic;
    margin-bottom: 20px;
}

.client-slider-v3 blockquote .small:before,
.client-slider-v3 blockquote footer:before,
.client-slider-v3 blockquote small:before {
    content: '';
}

.client-slider-v3 blockquote footer {
    display: table;
}

.client-slider-v3 blockquote footer .client-info {
    display: table-cell;
    vertical-align: middle;
}

.client-slider-v3 blockquote footer img {
    width: 72px;
    height: 72px;
    border-radius: 100%;
    float: left;
    margin-right: 20px;
}

.client-slider-v3 blockquote footer .client-name {
    display: block;
    font-size: 18px;
    line-height: 25px;
    font-weight: 500;
    color: #323232;
}

.client-slider-v3 .flex-viewport {
    width: 40%;
    float: left;
}

.client-slider-v3 .flex-control-nav {
    width: 50%;
    float: right;
    text-align: right;
}

.client-slider-v3 .flex-control-thumbs li {
    width: auto;
    float: none;
    margin-left: 8px;
}

@media (max-width:1199px) {
    .client-slider-v3 .flex-control-thumbs img {
        width: 110px;
    }
}

@media (max-width:767px) {

    .client-slider-v3 .flex-viewport,
    .client-slider-v3 .flex-control-nav {
        width: 100%;
        float: none;
    }

    .client-slider-v3 .flex-viewport {
        margin-bottom: 30px;
    }

    .client-slider-v3 .flex-control-nav {
        text-align: left;
    }
}

.client-slider-v4 {
    position: relative;
}

.client-slider-v4 blockquote {
    padding: 0;
    margin: 0 0 35px;
    font-size: 18px;
    line-height: 30px;
    border-left: 0;
    color: #666666;
    font-family: 'Roboto Slab', serif;
    font-weight: 300;
    border: 0;
}

.portfolio-section {
    margin-top: 20px;
}

.color {
    background-color: rgb(247, 247, 247);
}

ul#portfolio-color {
    overflow: hidden;
    background-color: rgb(247, 247, 247);
}

ul#portfolio-color li img {
    width: 100%;
}

ul#portfolio-color>li {
    float: left;
    display: block;
    height: auto;
}

ul#portfolio-color.five-column>li {
    width: 19%;
}

.footersticky {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 60px;
    background-color: #f5f5f5;
}

ul#portfolio-color.four-column>li {
    width: 25%;
}

.color-picker>li {
    float: left
}

ul#portfolio-color.three-column>li {
    width: 33.33%;
}

ul#portfolio-color.two-column>li {
    width: 50%;
}

@media (max-width:1199px) {
    ul#portfolio-color.five-column>li {
        width: 25%;
    }
}

@media (max-width:991px) {

    ul#portfolio-color.five-column>li,
    ul#portfolio-color.four-column>li {
        width: 33.33%;
    }
}

@media (max-width:767px) {

    ul#portfolio-color.five-column>li,
    ul#portfolio-color.four-column>li,
    ul#portfolio-color.three-column>li {
        width: 50%;
    }
}

@media (max-width:480px) {

    ul#portfolio-color.five-column>li,
    ul#portfolio-color.four-column>li,
    ul#portfolio-color.three-column>li,
    ul#portfolio-color.two-column>li {
        width: 100%;
    }
}

.center-block {
    display: table;
    position: relative;
    margin: 0 auto;
    width: 90%;
}

.center-block ul {
    left: 70px;
    display: block;
    position: relative;
}

.center-block li {
    float: left;
}

ul#portfolio-colorp {
    background-color: rgb(247, 247, 247);
}

ul#portfolio-colorp li img {
    width: 100%;
}

ul#portfolio-colorp>li {
    float: left;
    display: block;
    height: auto;
}

ul#portfolio-colorp.five-column>li {
    width: 19%;
    margin-left: 11px;
}

.footersticky {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 60px;
    background-color: #f5f5f5;
}

ul#portfolio-colorp.four-column>li {
    width: 25%;
}

ul#portfolio-colorp.three-column>li {
    width: 25.33%;
}

ul#portfolio-colorp.two-column>li {
    width: 50%;
}

@media (max-width:1199px) {
    ul#portfolio-colorp.five-column>li {
        width: 25%;
    }

    .center-block ul {
        left: 0px;
        display: block;
        position: relative;
    }
}

@media (max-width:991px) {

    ul#portfolio-colorp.five-column>li,
    ul#portfolio-colorp.four-column>li {
        width: 33.33%;
    }

    .center-block ul {
        left: 0px;
        display: block;
        position: relative;
    }

    .nav.nav-tabs.tabtop {
        display: -moz-groupbox;
    }
}

@media (max-width:767px) {

    ul#portfolio-colorp.five-column>li,
    ul#portfolio-colorp.four-column>li,
    ul#portfolio-colorp.three-column>li {
        width: 50%;
    }

    .center-block ul {
        left: 0px;
        display: block;
        position: relative;
    }

    .nav.nav-tabs.tabtop {
        display: -moz-groupbox;
    }
}

@media (max-width:480px) {

    ul#portfolio-colorp.five-column>li,
    ul#portfolio-colorp.four-column>li,
    ul#portfolio-colorp.three-column>li,
    ul#portfolio-colorp.two-column>li {
        width: 100%;
    }

    .center-block ul {
        left: 0px;
        display: block;
        position: relative;
    }

    .col-md-2.col-lg-2.col-sm-2.col-xs-2.custom-mar.no-padding {
        width: 50%;
    }

    .col-xs-2 {
        width: 20%;
        !important
    }

    .plr-padding {
        width: 90%;
        padding-bottom: 10px;
    }

    ;

    .custom-mar.col-xs-2 {
        width: 40%;
        !important
    }

    .nav.nav-tabs.tabtop {
        display: inline-grid;
        padding-left: 18px;
    }

    .well-searchbox {
        background: rgba(0, 0, 0, 0.6);
    }

    .tabtop .active a:before {
        display: none;
    }
}

.client-slider-v4 blockquote::before {
    display: none;
}

.client-slider-v4 blockquote p {
    margin-bottom: 14px;
}

.client-slider-v4 blockquote .small:before,
.client-slider-v4 blockquote footer:before,
.client-slider-v4 blockquote small:before {
    content: '';
}

.client-slider-v4 .client-info {
    font-family: 'Open Sans', sans-serif;
}

.client-slider-v4 .client-info .client-name {
    display: block;
    font-size: 16px;
    line-height: 27px;
    font-weight: 700;
    color: #2e2e2e;
}

.client-slider-v4 .client-info .client-name span {
    color: #ff2a2a;
}

.client-slider-v4 .client-info .client-title {
    font-size: 12px;
    color: #666666;
}

.client-slider-v4 .flex-control-thumbs li {
    width: auto;
    margin: 7px;
}

.client-slider-v4 .flex-control-thumbs img {
    width: 176px;
    border: 1px solid #eee;
}

@media (max-width:1199px) {
    .client-slider-v4 .flex-control-thumbs img {
        width: 105px;
    }
}

.flex-control-thumbs img {
    opacity: .1;
}

.flex-control-thumbs img:hover,
.flex-control-thumbs .flex-active {
    opacity: 1;
}

.basecamp-intro {}

.basecamp-intro h2 {
    font-size: 25px;
    line-height: 25px;
    font-weight: 700;
}

.tt-content-box {
    position: relative;
    overflow: hidden;
    text-align: center;
    min-height: 268px;
    border: 1px solid #dedede;
    margin-bottom: 30px;
}

.content-wrapper {
    color: #fff;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.content-wrapper::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #b51b1b;
    content: '';
    opacity: 0;
    -webkit-transform: translate3d(0, 50%, 0);
    -moz-transform: translate3d(0, 50%, 0);
    -ms-transform: translate3d(0, 50%, 0);
    transform: translate3d(0, 50%, 0);
}

.content-wrapper header {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    color: #b51b1b;
    -webkit-transition: -webkit-transform 0.35s, color 0.35s;
    -ms-transition: -webkit-transform 0.35s, color 0.35s;
    transition: transform 0.35s, color 0.35s;
    -webkit-transform: translate3d(0, -50%, 0);
    -ms-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
}

.tt-content-box:hover .content-wrapper header {
    -webkit-transform: translate3d(0, -50%, 0) translate3d(0, -60px, 0);
    -ms-transform: translate3d(0, -50%, 0) translate2d(0, -60px, 0);
    transform: translate3d(0, -50%, 0) translate3d(0, -60px, 0);
}

.content-wrapper header i {
    font-size: 40px;
    color: #b51b1b;
}

.content-wrapper header h2 {
    font-size: 20px;
    line-height: 25px;
    font-weight: 700;
    color: #b51b1b;
}

.tt-content-box:hover .content-wrapper header i,
.tt-content-box:hover .content-wrapper header h2 {
    color: #fff;
}

.ie9 .tt-content-box .content-wrapper header {
    top: 30%;
}

.tt-content-box .content-wrapper .content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 20px;
    width: 100%;
    opacity: 0;
    -webkit-transform: translate3d(0, 10px, 0);
    -ms-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
}

.tt-content-box .content-wrapper::before,
.tt-content-box .content-wrapper .content {
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    -ms-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
}

.tt-content-box:hover .content-wrapper::before,
.tt-content-box:hover .content {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.tt-content-box .content-wrapper .content p {
    margin-bottom: 20px;
}

.basecamp-solution {
    padding: 100px 0 0;
    background-color: #fafafa;
    border-top: 1px solid #d2d2d2;
}

.solution-intro-wrapper {
    display: table;
}

.basecamp-solution-thumb {
    display: table-cell;
    vertical-align: bottom;
}

@media (max-width:991px) {
    .basecamp-solution-intro {
        margin-bottom: 50px;
    }
}

@media (min-width:1200px) {
    .basecamp-solution-intro {
        padding-left: 12%;
    }
}

@media (min-width:1920px) {
    .basecamp-solution-intro {
        padding-left: 35%;
    }
}

.basecamp-solution-thumb {
    padding-right: 0;
}

.basecamp-solution-thumb img {
    width: 100%;
}

.basecamp-testimonial {
    padding: 100px 0;
    background-color: #b51b1b;
}

.basecamp-testimonial blockquote {
    padding: 0;
    margin: 0;
    text-align: center;
    border-left: 0;
    color: #fff;
    font-size: 25px;
    line-height: 35px;
    font-weight: 300;
    border: 0;
}

.basecamp-testimonial blockquote::before {
    display: none;
}

.basecamp-testimonial blockquote footer {
    font-size: 18px;
    line-height: 21px;
    font-weight: 700;
    font-family: 'Roboto Slab', serif;
    color: #fff;
    margin-top: 35px;
}

.basecamp-testimonial blockquote footer cite {
    display: block;
    font-size: 16px;
    font-weight: 300;
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
}

.basecamp-testimonial blockquote footer:before {
    content: "";
}

.image-holder img {
    margin: 0 auto;
}

.case-study-page.gradient-bottom::after {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    background: -webkit-linear-gradient(top, rgba(255, 0, 0, 0), rgba(0, 0, 0, 0.5));
    background: -o-linear-gradient(bottom, rgba(255, 0, 0, 0), rgba(0, 0, 0, 0.5));
    background: -moz-linear-gradient(bottom, rgba(255, 0, 0, 0), rgba(0, 0, 0, 0.5));
    background: linear-gradient(to bottom, rgba(255, 0, 0, 0), rgba(0, 0, 0, 0.5));
    background: linear-gradient(to bottom, rgba(255, 0, 0, 0), rgba(0, 0, 0, 0.5));
    width: 100%;
    height: 70px;
    z-index: 100;
}

.hero-section {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-section::before {
    content: '';
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.parallax-home {
    background: transparent url(../../assets/images/parallax/parallax-1.jpg) 0 0 no-repeat;
    background-size: cover;
}

.service-bg {
    background: transparent url(../../assets/images/parallax/parallax-2.jpg) 0 0 no-repeat;
    background-size: cover;
    padding: 100px 0;
}

.device-bg {
    background: transparent url(../../assets/images/parallax/parallax-3.jpg) 0 0 no-repeat;
    background-size: cover;
    padding: 100px 0;
}

.hero-block-v3.focus-bg {
    border-top: 0;
    border-bottom: 0;
}

.focus-bg {
    background: #fff;
    padding: 100px 0;
}

.overview-bg {
    background: transparent url(../../assets/images/parallax/parallax-4.jpg) 0 0 no-repeat;
    background-size: cover;
    padding: 100px 0;
}

.overview-bg .company-overview {
    color: #fff;
}

.blog-homepage-bg {
    background: transparent url(../../assets/images/slider/blog-slider.jpg) 0 0 no-repeat;
    background-size: cover;
    min-height: 500px;
}

.portfolio-home-bg {
    background: transparent url(../../assets/images/slider/protfolio-slider.jpg) 0 0 no-repeat;
    background-size: cover;
}

.portfolio-home-two {
    background: transparent url(../../assets/images/slider/portfolio-slider-2.jpg) 0 0 no-repeat;
    background-size: cover;
}

.text-rotator-bg {
    background: transparent url(../../assets/images/slider/protfolio-slider-2.jpg) 0 0 no-repeat;
    background-size: cover;
}

.static-bg {
    background: transparent url(../../assets/images/homepagebg.jpg) 0 0 no-repeat;
    background-clip: content-box;
    background-size: cover;
}

.particle-bg {
    background: transparent url(../../assets/images/homepagebg.jpg) 0 0 no-repeat;
    background-size: cover;
    background-clip: content-box;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.shortcode-alert-wrapper h2 {
    margin-bottom: 25px;
}

.contact-info address {
    margin-bottom: 30px;
    line-height: 24px;
}

.contact-info h3 {
    text-transform: capitalize;
}

@media (max-width:991px) {
    .contact-info {
        margin-top: 50px
    }
}

.error-wrapper {
    padding: 200px 0;
}

.error-wrapper i {
    font-size: 145px;
    line-height: 170px;
    text-align: center;
    display: block;
    color: #a7a7a7;
}

.error-info {
    padding-left: 60px;
    border-left: 1px solid #eee;
}

.error-info h1 {
    color: #b51b1b;
    font-size: 90px;
    line-height: 90px;
    font-weight: 700;
}

.error-sub {
    display: block;
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
}

.error-info .btn {
    padding: 10px 30px;
}

@media (max-width:767px) {
    .error-info {
        padding-left: 0;
        border-left: 0;
        text-align: center;
    }
}

.error-wrapper-alt {
    background: url(../../assets/images/not-found-cover.jpg) 0 0 no-repeat;
    background-size: cover;
    position: relative;
}

.error-wrapper-alt::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.error-info-alt {
    position: absolute;
    top: 50%;
    width: 100%;
    left: 0;
    text-align: center;
    text-transform: uppercase;
    z-index: 15;
    -webkit-transform: translate(0%, -50%);
    -moz-transform: translate(0%, -50%);
    -ms-transform: translate(0%, -50%);
    -o-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
}

.error-info-alt h1 {
    color: #b51b1b;
    font-size: 150px;
    font-weight: 700;
    line-height: 150px;
}

.error-info-alt .error-sub {
    margin-bottom: 10px;
}

.error-info-alt .error-sub,
.error-info-alt p {
    color: #fff;
}

.error-info-alt .btn {
    background: #fff;
    color: #b51b1b;
    border-color: #fff;
}

.error-info-alt .btn:hover {
    background: #b51b1b;
    color: #fff;
    border-color: #b51b1b;
}

.typography-btn-wrapp {}

.typography-btn-wrapp .btn {
    margin-bottom: 4px;
}

.tt-container {
    width: 100%;
    position: relative;
    padding: 0;
}

.tt-banner {
    width: 100%;
    position: relative;
    z-index: -1
}

.tt-slider-title {
    font-family: 'Roboto Slab', serif;
    font-size: 45px;
    line-height: 45px;
    font-weight: bold;
    color: #fff;
    text-transform: capitalize;
    letter-spacing: 1px;
}

.tt-slider-title span {
    font-weight: 300;
}

.tt-slider-title.dark {
    color: #202020;
}

.tt-slider-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 24px;
    line-height: 25px;
    font-weight: 330;
    color: #fff;
}

.tt-slider-subtitle.dark {
    color: #202020;
}

.tt-btn {
    font-size: 16px;
    text-transform: uppercase;
    padding: 10px 35px;
    border-radius: 30px;
    display: block;
}

.btn-solid.light {
    color: #b51b1b;
    background-color: #fff;
}

.btn-solid.light:hover {
    color: #b51b1b;
}

.btn-bordered.light {
    color: #fff;
    border: 1px solid #fff;
}

.btn-bordered.light:hover {
    color: #b51b1b;
    background-color: #fff;
    border: 1px solid transparent;
}

.btn-solid.dark {
    color: #fff;
    background-color: #202020;
}

.btn-solid.dark:hover {
    color: #fff;
}

.btn-bordered.dark {
    color: #202020;
    border: 1px solid #202020;
}

.btn-bordered.dark:hover {
    color: #fff;
    background-color: #202020;
    border: 1px solid transparent;
}

.tt-container-gallery {
    width: 100%;
    position: relative;
    padding: 0;
}

.tt-banner-gallery {
    width: 100%;
    position: relative;
}

.tt-banner-gallery .tt-slider-title {
    color: #b51b1b;
    font-size: 75px;
    line-height: 80px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -3px;
}

.tt-banner-gallery .tt-slider-title span {
    color: #fff;
    margin-left: 20px;
    font-weight: 700;
}

.tt-banner-gallery .tt-slider-subtitle {
    font-size: 50px;
    font-weight: 700;
    letter-spacing: -2px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.portfolio img {
    max-width: 100%;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    background-color: white;
}

.portfolioh img {
    max-width: 100%;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    background-color: white;
}

.portfolio:hover img {
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.portfolioh:hover img {
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.tt-banner-gallery .tt-slider-small-text {
    color: #fff;
    font-size: 18px;
    line-height: 30px;
    font-weight: 300;
}

.heading4 {
    font-size: 18px;
    font-weight: 400;
    font-family: 'Lato', sans-serif;
    color: #111111;
    margin: 0px 0px 5px 0px;
}

.heading1 {
    font-size: 30px;
    line-height: 20px;
    font-family: 'Lato', sans-serif;
    text-transform: uppercase;
    color: #1b2834;
    font-weight: 900;
}

.content-quality {
    float: left;
    width: 193px;
}

.content-quality p {
    margin-left: 10px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 17px;
}

.content-quality p span {
    display: block;
}

.tabtop {
    display: table;
    margin: 0 auto;
}

.tabtop li a {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    color: #1b2834;
    border-radius: 0px;
    margin-right: 22.008px;
    border: 1px solid #ebebeb !important;
}

.tabtop .active a:before {
    position: absolute;
    top: 15px;
    left: 82px;
    color: #b51b1b;
    font-size: 30px;
}

.tabtop li a:hover {
    color: #b51b1b !important;
    text-decoration: none;
}

.tabtop .active a:hover {
    color: #fff !important;
}

.tabtop .active a {
    background-color: #b51b1b !important;
    color: #FFF !important;
}

.margin-tops {
    margin-top: 30px;
}

.tabtop li a:last-child {
    padding: 10px 22px;
}

.thbada {
    padding: 10px 28px !important;
}

section p {
    font-family: 'Lato', sans-serif;
    font-size: 17px;
}

.margin-tops4 {
    margin-top: 20px;
}

.tabsetting {
    padding-top: 6px;
}

.services {
    background-color: #d4d4d4;
    min-height: 710px;
    padding: 65px 0 27px 0;
}

.services a:hover {
    color: #000;
}

.services h1 {
    margin-top: 0px !important;
}

.heading-container p {
    font-family: 'pini', sans-serif;
    text-align: center;
    font-size: 24px !important;
    text-transform: uppercase;
}

.process-step .btn:focus {
    outline: none;
}

.process {
    display: table;
    width: 100%;
    position: relative
}

.process-row {
    display: table-row
}

.process-step button[disabled] {
    opacity: 1 !important;
    filter: alpha(opacity=100) !important
}

.process-row:before {
    top: 40px;
    bottom: 0;
    position: absolute;
    content: " ";
    width: 100%;
    height: 1px;
    background-color: #ccc;
    z-order: 0
}

.process-step {
    display: table-cell;
    text-align: center !important;
    position: relative
}

.process-step p {
    margin-top: 4px
}

.btn-circle {
    width: 80px;
    height: 80px;
    text-align: center;
    font-size: 12px;
    border-radius: 50%;
    padding: 0
}

.process-step.active:before {
    content: " ";
    position: absolute;
    width: 20px;
    height: 20px;
    bottom: 37px;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: -1;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    background: #b51b1b
}

.btn-info {
    color: #fff;
    background-color: #b51b1b;
    border-color: #b51b1b;
}

.btn-info.active,
.btn-info.focus,
.btn-info:active,
.btn-info:focus,
.btn-info:hover,
.open>.dropdown-toggle.btn-info {
    color: #fff;
    background-color: #b51b1b;
    border-color: #b51b1b
}

.btn-info.active,
.btn-info.focus,
.btn-info:active,
.btn-info:focus,
.btn-info:hover,
.open>.dropdown-toggle.btn-info {
    color: #fff;
    background-color: #b51b1b;
    border-color: #b51b1b
}

.minimal-distance {
    color: #999999 !important;
    padding-right: 9px !important;
}

@media screen and (max-width:600px) {
    .well-searchbox {
        width: auto;
        margin-top: 100px;
        height: 450px;
        left: 50%;
        transform: translateX(-50%);
    }

    .customarrowicon {
        display: none;
        visibility: hidden;
    }

    .well-searchbox h2 {
        margin-top: 50px;
    }

    .tp-caption {
        display: none;
    }
}

@media screen and (max-width:768px) {
    .service-box h3 {
        text-align: center;
    }

    .service-box h4 {
        text-align: center;
    }

    .service-box p {
        text-align: center;
    }

    .section-title {
        text-align: center;
    }

    .client-slider-v3 blockquote {
        padding: 0 35px;
        width: 100%;
    }
}


@media only screen and (min-width: 1600px) {
    .well-searchbox {
        left: 400px;
    }
}


#regForm input::-webkit-input-placeholder {
    font-size: 16px;
    color: #d1d1d1;
}

#regForm input::-moz-placeholder {
    font-size: 16px;
    color: #d1d1d1;
}

#regForm input:-ms-input-placeholder {
    font-size: 16px;
    color: #d1d1d1;
}

#regForm input::-ms-input-placeholder {
    font-size: 16px;
    color: #d1d1d1;
}

#regForm input::placeholder {
    font-size: 16px;
    color: #d1d1d1;
}

#regForm .tab {
    display: none;
    margin: 0;
}

#regForm input {
    width: 100%;
    height: 56px;
    padding: 16px;
    font-size: 18px;
    line-height: 25px;
    font-weight: 300;
    color: #202020;
    border: 1px solid #eee;
    border-radius: 0;
    outline: 0;
    margin-bottom: 20px;
    font-family: 'Open Sans', sans-serif;
}

.btn-1 {
    padding: 14px 45px;
    border: 0;
    font-size: 18px;
    background: #ff2a40;
    color: #fff;
    transition: all 0.4s ease;
    float: right;
    border-radius: 4px;
    font-family: 'Open Sans', sans-serif;
    margin-left: 20px;
}

.btn-1:focus,
.btn-2:focus {
    outline: none;
}

.cta-form-btn {
    justify-content: flex-end;
}

.privicylink {
    margin-bottom: 0;
}

.privicylink a {
    font-size: 10px;
    color: #fff;
    font-weight: 400;
    background: none;
    height: 0;
    display: inline;
    line-height: 100%;
}

.privicylink p {
    font-weight: 400;
    display: block;
    margin-bottom: 0;
    line-height: 150%;
}

.privicylin {
    margin-bottom: 0;
}


.cookie-bar {
    position: fixed;
    bottom: 0;
    padding: 12px 15px;
    width: 100%;
    z-index: 15;
    background-size: cover;
    text-align: left;
    z-index: 99999;
    background: #050b33;
    display: none
}

.cookie-bar .col-nopadd {
    padding-left: 0;
    padding-right: 0
}

.cookie-bar p {
    display: inline-block;
    margin-bottom: 0;
    color: #fff;
    font-size: calc(11px + (13 - 11) * (100vw - 320px) / (1920 - 320));
    line-height: 150%;
    margin-right: 10px;
}

.cookie-bar .setcokies {
    color: #fff;
    display: inline-block
}

.cookie-bar .cookie-btn {
    color: #fff;
    background: #e00030;
    padding: 3px 10px 3px 6px;
    border-radius: 0;
    font-weight: 700;
    font-size: calc(11px + (13 - 11) * (100vw - 320px) / (1920 - 320));
    text-decoration: none;
    text-transform: uppercase;
    margin-left: 0
}

.cookie-bar .cookie-btn-3 {
    border: 1px solid #fff;
    padding: 2px 4px;
    background: #36454f;
    border-radius: 2px;
    color: #fff
}

.setcokies a:hover {
    color: #fff;
}

a.cookie-btn.ml-1.js-acceptcookiebtn {
    color: #fff;
}