/*Import Fonts*/
@import url('https://fonts.googleapis.com/css?family=Dosis:200,300,400,500,600,700,800');
@import url('https://fonts.googleapis.com/css?family=Quicksand:300,400,500,700');

/*Common styles*/
body {
    font-family: 'Quicksand', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #0C0C0C;
    font-smoothing: antialiased;
    font-weight: 400;
}

.font-alt {
    font-family: 'Dosis', sans-serif;
}

img {
    max-width: 100%;
}

.section {
    padding: 90px 0;
}
@media (max-width: 991px){
    .section {
        padding: 70px 0;
    }
}
@media (max-width: 767px){
    .section {
        padding: 60px 0;
    }
}

.gray-bg {
    background: #f7fafc;
}
.white-bg {
    background: #fff;
}

.social-icons {
    margin: 0;
    padding: 0;
}
.social-icons li {
    display: inline-block;
    vertical-align: top;
    list-style: none;
}
.social-icons li a {
    display: block;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    color: #333;
    border-radius: 50%;
    -webkit-transition: ease all 0.3s;
    -moz-transition: ease all 0.3s;
    -o-transition: ease all 0.3s;
    transition: ease all 0.3s;
}
.social-icons li a:hover {
    background: #333;
    color: #fff;
}

/*Loading*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(45deg, #ffffff, #ffffff);
    z-index: 9999999;
}

#preloader #status {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

#preloader #status .spinner {
    width: 40px;
    height: 40px;
    position: relative;
    margin: 100px auto;
}

#preloader #status .spinner .double-bounce1, #preloader #status .spinner .double-bounce2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #be2026;
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: mcp-bounce 2.0s infinite ease-in-out;
    animation: mcp-bounce 2.0s infinite ease-in-out;
}

#preloader #status .spinner .double-bounce2 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

@-webkit-keyframes mcp-bounce {
    0%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes mcp-bounce {
    0%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}


/*Header*/

.header-nav {
    padding: 15px 10px;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.header-nav .navbar-toggler span {
    background: #fff;
}

.header-nav .navbar-brand {
    color: #fff;
    font-weight: 800;
    position: relative;
    font-size: 23px;
}
.header-nav .navbar-brand span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    position: absolute;
    bottom: 12px;
    right: -9px;
    float: left;
}
.header-nav .navbar-nav > li {
    margin: 0 0 0 20px;
}
.header-nav .navbar-nav .nav-link {
    position: relative;
    padding: 0;
    display: inline-block;
    font-size: 14px;
    vertical-align: top;
    color: #fff;
    font-weight: 400;
    letter-spacing: 0.115em;
}
.header-nav .navbar-nav .nav-link:after {
    content: '';
    position: absolute;
    z-index: 10;
    width: 0;
    left: 0;
    bottom: -5px;
    margin: auto;
    height: 1px;
    background: #fff;
    -webkit-transition: ease all 0.2s;
    -moz-transition: ease all 0.2s;
    -o-transition: ease all 0.2s;
    transition: ease all 0.2s;

}
.header-nav .navbar-nav .nav-link:hover:after {
    width: 45%;
    opacity: 0.5;
}
.header-nav .navbar-nav .nav-link.active:after {
    opacity: 1;
    width: 75%;
}

.header-nav .navbar-nav > li {
    position: relative;
}

@media(min-width: 992px) {
    .header-nav .navbar-nav > li .sub-menu {
        background: #fff;
        margin: 0;
        padding: 10px 0;
        min-width: 200px;
        max-width: 100%;
        position: absolute;
        left: 0;
        top: calc(100% + 30px);
        list-style: none;
        border-radius: 5px;
        opacity: 0;
        box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.16);
        pointer-events: none;
        -webkit-transition: ease all 0.3s;
        -moz-transition: ease all 0.3s;
        -o-transition: ease all 0.3s;
        transition: ease all 0.3s;
    }
    .header-nav .navbar-nav > li .sub-menu-toggle {
        float: right;
        color: #fff;
        font-size: 10px;
        margin-left: 5px;
        margin-top: 4px;
    }
    .header-nav .navbar-nav > li:hover .sub-menu {
        opacity: 1;
        pointer-events: auto;
        top: 100%;
    }
    .header-nav-light.header-nav .navbar-nav > li .sub-menu-toggle {
        color: #ffffff;
    }
}

.header-nav .navbar-nav > li .sub-menu li > a {
    color: #333;
    font-size: 13px;
    display: block;
    padding: 5px 20px 5px 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    text-decoration: none;
    -webkit-transition: ease all 0.3s;
    -moz-transition: ease all 0.3s;
    -o-transition: ease all 0.3s;
    transition: ease all 0.3s;

}

.header-nav .navbar-nav > li .sub-menu li > a:after {
    width: 0px;
    bottom: 14px;
    left: 9px;
    content: "";
    position: absolute;
    height: 2px;
    background: #000;
    -webkit-transition: ease all 0.3s;
    -moz-transition: ease all 0.3s;
    -o-transition: ease all 0.3s;
    transition: ease all 0.3s;
}

.header-nav .navbar-nav > li .sub-menu li:hover > a {
    padding-left: 28px;
}
.header-nav .navbar-nav > li .sub-menu li:hover > a:after {
    width: 8px;
}

/*Navbar Toogle*/
.navbar-toggler {
    border: none;
    padding: 10px 6px;
    outline: none !important;
}
.navbar-toggler span {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px;
    background: #fff;
}
.navbar-toggler span + span {
    margin-top: 4px;
    width: 18px;
}
.navbar-toggler span + span + span {
    width: 10px;
}

/**/


.header-nav.fixed-header {
    top: 0;
    margin-top: 0;
    padding: 12px 10px;
    background: rgba(0,0,0,.9);
    box-shadow: 0px 1px 27px -3px rgba(0, 0, 0, 0.2);
}


@media (max-width: 991px){

    .header-nav {
        top: 0;
        padding:10px 15px;
    }
    .header-nav.fixed-header {
        padding:10px 15px;
    }
    .navbar-nav {
        padding-top: 5px;
    }
    .header-nav .navbar-nav > li {
        margin: 8px 0;
    }
    .header-nav .navbar-nav .nav-link {
        padding: 0;
    }


    .header-nav .navbar-nav > li .sub-menu-toggle {
        position: absolute;
        top: 0;
        right: 0;
        color: #fff;
        width: 100%;
        height: 25px;
        text-align: right;
        z-index: 1;
    }

    .header-nav .navbar-nav > li .sub-menu {
        margin: 0;
        padding: 0;
        list-style: none;
        display: none;
    }
    .header-nav .navbar-nav > li.show .sub-menu {
        display: block;
    }
    .header-nav .navbar-nav > li .sub-menu li > a {
        color: #fff;
        font-weight: 500;
        padding: 5px 20px 5px 30px
    }
    .header-nav .navbar-nav > li .sub-menu li > a:after {
        width: 9px;
        background: #fff;
    }

    .header-nav-light.header-nav .navbar-nav > li .sub-menu-toggle {
        color: #222;
    }
    .header-nav-light.header-nav .navbar-nav > li .sub-menu li > a {
        color: #BE2026
    }
    .header-nav-light.header-nav .navbar-nav > li .sub-menu li > a:after {
        background:  #BE2026
    }

}

.header-nav-light .navbar-toggler span {
    background: #1E3056
}

.header-nav-light .navbar-nav .nav-link {
    color: #BE2026;
    font-weight: 500;
}
.header-nav-light .navbar-nav .nav-link:after {
    background: #BE2026;
}
.header-nav-light .navbar-brand {
    color: #BE2026;
    font-weight: 500;
}
.header-nav-light.fixed-header {
    background: #fff;
}

.header-nav-light .navbar-nav .nav-link.nav-btn {
    padding: 0 20px;
    border: 1px solid #be2026;
    background-color: #be2026;
    border-radius: 3px;
    color: #fff;
}
.header-nav .navbar-nav .nav-link.nav-btn:hover:after  {
    width: 0;
    opacity: 0;
}

.navbar-brand img {
    transition: all 0.2s ease;
}
.fixed-header .navbar-brand img {
    max-height: 40px;
}
.header-nav-light .navbar-brand {
    /*color: #0C0C0C;*/
}

/*Title*/

.section-title {
    position: relative;
}
.section-title .st-icon i {
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    font-size: 20px;
    background: #fff;
    display: inline-block;
    box-shadow: 0px 1px 27px -3px rgba(0, 0, 0, 0.2);
    margin-bottom: 30px;
}
.section-title h2 {
    font-weight: 500;
    font-size: 30px;
    color: #BE2026;
    letter-spacing: 1px;
    line-height: 38px;
    margin-bottom: 5px;
    text-transform: capitalize;
}
.section-title p {
    text-align: center;
    font-weight: 400;
    font-size: 16px;
    color: #0C0C0C;
    line-height: 28px;
    letter-spacing: 0.5px;
}

.section-title .title-border {
    display: inline-block;
    vertical-align: top;
    text-align: center;
    margin-bottom: 15px;
}

.section-title .title-border span {
    display: inline-block;
    vertical-align: middle;
    height: 5px;
    border-radius: 3px;
    background: #BE2026;
    margin: 0 4px;
}
.section-title .title-border span.lg {
    width: 40px;
}
.section-title .title-border span.md {
    width: 30px;
    opacity: 0.8
}
.section-title .title-border span.sm {
    width: 12px;
    opacity: 0.5
}

@media (max-width: 767px){
    .section-title h2 {
        font-size: 25px;
    }
}

.page-title {
    padding: 130px 0 60px 0;
    text-align: center;
    background-size: cover;
    background-position: center;
    position: relative;
}
.page-title:after {
    content: "";
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0.9;
}

.page-title .container {
    position: relative;
    z-index: 1;
}

.page-title h1 {
    color: #fff;
    margin: 0;
}

@media(max-width: 991px) {
    .page-title {
        padding: 80px 0 40px 0
    }
}

@media(max-width: 600px) {
    .header-nav .navbar-brand {
        font-size: 18px;
    }
    .navbar-brand img {
        max-height: 50px;
    }
}


/*-----------------------------------------
* 04. Buttons
-----------------------------------------*/
.m-btn {
    height: 45px;
    line-height: 45px;
    padding: 0 30px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 500;
    border: none;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease 0s;
    cursor: pointer;
    outline: none;
    display: inline-block;
    text-decoration: none !important;
    border-radius: 3px;
    position: relative;
    -webkit-transition: ease all 0.3s;
    -moz-transition: ease all 0.3s;
    -o-transition: ease all 0.3s;
    transition: ease all 0.3s;
}
.m-btn:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 0px;
    height: 1px;
    -webkit-transition: ease all 0.3s;
    -moz-transition: ease all 0.3s;
    -o-transition: ease all 0.3s;
    transition: ease all 0.3s;
}
.m-btn:hover {
    padding-left: 40px;
}
.m-btn:hover:after {
    width: 20px;
    left: 10px;
}
.m-btn-white {
    color: #323d47;
    background-color: #fff;
}
.m-btn-white:after {
    background: #fff;
}
.m-btn-white:hover {
    background: #000;
    color: #fff;
}

.m-btn-theme {
    color: #fff;
}
.m-btn-theme:after {
    background: #fff;
}

.m-btn-theme:hover {
    color: #fff;
    background: #323d47;
}


.m-btn-t-theme {
    border: 1px solid;
    box-shadow: none;
    background: transparent;
}
.m-btn-t-theme:after {
    background: #fff;
}
.m-btn-t-theme:hover {
    color: #fff;
    background: #323d47;
}

.more-btn {
    color: #323d47;
    font-weight: 600;
    position: relative;
    padding: 3px;
    display: inline-block;
    line-height: 18px;
    font-size: 13px;
    text-transform: uppercase;
    text-decoration: none !important;
    -webkit-transition: ease all 0.4s;
    -moz-transition: ease all 0.4s;
    -o-transition: ease all 0.4s;
    transition: ease all 0.4s;
}
.more-btn i {
    position: absolute;
    right: 0;
    top: 5px;
    opacity: 0;
    -webkit-transition: ease all 0.4s;
    -moz-transition: ease all 0.4s;
    -o-transition: ease all 0.4s;
    transition: ease all 0.4s;
}
.more-btn:hover {
    color: #000;
}
.more-btn:hover i {
    right: -20px;
    opacity: 1;
}

.m-btn-link {
    overflow: hidden;
    color: #111 !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    padding: 5px;
    font-weight: 600;
    position: relative;
    display: inline-block;
    text-decoration: none !important;
    -webkit-transition: ease all 0.3s;
    -moz-transition: ease all 0.3s;
    -o-transition: ease all 0.3s;
    transition: ease all 0.3s;
}
.m-btn-link:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ff4850;
    -webkit-transform: translate3d(-100%, 0, 0) translate3d(-1px, 0, 0);
    -moz-transform: translate3d(-100%, 0, 0) translate3d(-1px, 0, 0);
    -ms-transform: translate3d(-100%, 0, 0) translate3d(-1px, 0, 0);
    -o-transform: translate3d(-100%, 0, 0) translate3d(-1px, 0, 0);
    -webkit-transition: transform 0.7s cubic-bezier(0.7, 0, 0.3, 1);
    transition: transform 0.7s cubic-bezier(0.7, 0, 0.3, 1);
    content: "";
}
.m-btn-link:before {
    content: "";
    width: 0;
    height: 1px;
    position: absolute;
    right: 0;
    bottom: 0;
    opacity: 0.5;
    background: #444;
    -webkit-transition: ease all 0.3s;
    -moz-transition: ease all 0.3s;
    -o-transition: ease all 0.3s;
    transition: ease all 0.3s;
}
.m-btn-link:hover:after {
    transform: translate3d(100%, 0, 0) translate3d(1px, 0, 0);
}

.m-btn-link:hover:before {
    width: 100%;
    transition-delay: 0.4s
}

.m-btn-link-white {
    color: #fff !important;
}
.m-btn-link-white:before {
    background: #fff;
}

.m-btn-t-dark {
    height: 45px;
    line-height: 45px;
    padding: 0 30px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 500;
    cursor: pointer;
    outline: none;
    display: inline-block;
    text-decoration: none !important;
    border-radius: 3px;
    position: relative;
    border: 1px solid #BE2026;
    color: #BE2026;
    background: #fff;
    -webkit-transition: ease all 0.3s;
    -moz-transition: ease all 0.3s;
    -o-transition: ease all 0.3s;
    transition: ease all 0.3s;
}
.m-btn-t-dark:hover {
    color: #fff;
    background: #BE2026;
}

.m-btn-dark {
    height: 45px;
    line-height: 45px;
    padding: 0 30px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 500;
    cursor: pointer;
    outline: none;
    display: inline-block;
    text-decoration: none !important;
    border-radius: 3px;
    position: relative;
    border: 1px solid #BE2026;
    color: #fff;
    background: #BE2026;
    -webkit-transition: ease all 0.3s;
    -moz-transition: ease all 0.3s;
    -o-transition: ease all 0.3s;
    transition: ease all 0.3s;
}
.m-btn-dark:hover {
    color: #BE2026;
    background: #fff;
}

.store-btn {
    font-size: 12px;
    padding: 10px 20px 15px 60px;
    letter-spacing: 1.5px;
    font-weight: 500;
    border: none;
    transition: all 0.3s ease 0s;
    cursor: pointer;
    outline: none;
    display: inline-block;
    text-decoration: none !important;
    background: #212b36;
    position: relative;
    color: #fff;
    border-radius: 5px;
}
.store-btn:hover {
    background: #111;
    color: #fff;
    box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.2);
}
.store-btn + .store-btn {
    margin-left: 15px;
}

.store-btn i {
    position: absolute;
    left: 20px;
    top: 14px;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    font-size: 26px;
    pointer-events: none;
}
.store-btn em {
    display: inline-block;
    margin: 0;
    font-size: 9px;
    text-transform: capitalize;
    line-height: 9px;
    font-weight: 300;
    pointer-events: none;
    font-style: normal;
}
.store-btn span {
    font-size: 14px;
    font-weight: 600;
    display: block;
    line-height: 16px;
    pointer-events: none;
}

.store-btn-white {
    color: #000;
    background: #fff;
}
.store-btn-white em {
    font-weight: 500;
}
.store-btn-white span {
    font-size: 16px;
}

@media (max-width: 767px) {
    .store-btn {
        padding: 20px;
    }
    .store-btn i {
        position: relative;
        top: auto;
        left: auto;
    }
    .store-btn span,
    .store-btn em {
        display: none;
    }
}

/*---------------------------------
* sec-round
-----------------------------------*/
.sec-round {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.sec-round .full-height {
    height: 100%;
}
.sec-round .round-item:first-child {
    border-left: 1px solid rgba(153, 153, 153, 0.11);
}
.sec-round .round-item {
    float: left;
    width: 20%;
    height: 100%;
    box-sizing: border-box;
    border-right: 1px solid rgba(153, 153, 153, 0.11);
    height: 100%;
    position: relative;
}

/*Home banner*/
.full-screen {
    min-height: 100vh;
}
.home-banner {
    background: #F7FAFD;
    position: relative;
    overflow:hidden;
}
.home-banner .home-text-center {
    position: relative;
    z-index: 1;
}
.home-banner h1 {
    font-size: 42px;
    font-weight: 400;
    color: #be2026;
    margin:0 0 25px;
    letter-spacing: 1.4px;
}
.home-banner p {
    width: 600px;
    max-width: 100%;
    font-weight: 400;
    font-size: 16px;
    padding: 0 0 40px;
    /*color: #fff;*/
    margin: 0;
    line-height: 28px;
}
.home-banner .m-btn { min-width: 140px; margin-right: 10px; text-align: center; }
@media(min-width: 992px) {
    .home-banner .home-right {
        position: absolute;
        top: 0;
        right: -15px;
        bottom: 0;
    }
    .home-banner .home-right img {
        position: absolute;
        top: 0;
        bottom: 0;
        margin: auto;
    }
}
@media (max-width: 767px){
    .home-banner h1 {
        font-size: 30px;
        margin: 0 0 20px;
    }
    .home-banner p {
        font-size: 14px;
        padding: 0 0 30px;
    }
}

/*TABS*/

.tab-style .nav {
    background: #fff;
    border-bottom: 1px solid #ddd;
}

.tab-style .nav .nav-item a {
    padding: 8px 10px;
    display: block;
    border-radius: 5px;
    text-decoration: none;
    font-size: 18px;
    color: #BE2026;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
}

.tab-style .nav .nav-item a.active {
    color: #BE2026;
}

.tab-style .nav .nav-item a:after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    width: 0;
    height: 2px;
    transition: ease all 0.5s;
    margin: auto;
    background: #BE2026;
}

.tab-style .nav .nav-item a.active:after {
    width: 100%;
}

.tab-style .tab-pane {
    padding: 50px 0 0;
}

/*Feature box*/
.feature-box h3 {
    font-size: 32px;
    font-weight: 600;
    color: #0C0C0C;
}


.partner-box {
    display: block;

    padding: 30px 20px 30px 30px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.06);

    transition: all 0.3s ease 0s;
}
.partner-box:hover {
    margin-top: -15px;
    box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.12);
}

.partner-box .partner-icon, .partner-box .partner-title {
    position: relative;
    display: table-cell;
    vertical-align: middle;
}

.partner-box .partner-title {
    padding: 0 0 0 15px;
    font-size: 22px;
    color: #BE2026;
    font-weight: 600;
}

.partner-box .partner-icon img  {
    width: 48px;
}

.contact-info {
    background-color: #BE2026;
    padding: 32px 25px 25px;
    box-shadow: -6px 11px 22px -3px rgba(0, 0, 0, 0.2), -3px -3px 15px -3px rgba(0, 0, 0, 0.2);
    height: 100%;
}
.phone-infos {
    color: #fff;}
.phone-infos span {
    display: inline-block;
    position: relative;
    padding-left: 30px;
}

.phone-infos span:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 20px;
    height: 1px;
    background: #fff;
}

/*Contact*/
.form-group {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}
.form-group .form-control {
    border:none;
    outline: none;
    box-shadow: none;
    height: 40px;
    padding-left: 0;
    padding-right: 0;
    border-bottom: 1px solid #ddd;
    border-radius: 0;
    width: 100%;
    font-size: 14px;
    color: #000;
}

.form-group textarea.form-control {
    height: 100px;
}

.form-group select {
    border:none;
    outline: none;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    padding-left: 0;
    padding-right: 0;
    border-bottom: 1px solid #ddd;
    border-radius: 0;
    width: 100%;
}

.form-group .input-focus-effect {
    width: 0 !important;
    position: absolute;
    bottom: 0;
    left: 0;
    -webkit-transition: ease all 0.3s;
    -o-transition: ease all 0.3s;
    transition: ease all 0.3s;
    height: 2px;
    background: #be2026;
}

.form-group textarea:focus:not([readonly]) + span.input-focus-effect,
.form-group input:focus:not([readonly]) + span.input-focus-effect,
.form-group select:focus:not([readonly]) + span.input-focus-effect {
    width: 100% !important;
}

.contact-form {
    box-shadow:0 2px 48px 0 rgba(0, 0, 0, 0.06);
    background: #fff;
    padding: 25px;
    border-radius: 5px;
}
.contact-form h2 {
    margin: 0;
    padding: 0 0 20px;
    font-size: 14px;
    text-transform: uppercase;
    color: #3B566E;
    font-weight: 600;
}

.contact-form .send {
    margin-top: 10px;
}

.contact-info {
    padding: 32px 25px 25px;
    box-shadow: -6px 11px 22px -3px rgba(0, 0, 0, 0.2), -3px -3px 15px -3px rgba(0, 0, 0, 0.2);
    height: 100%;
}
.contact-info .ci-row {
    margin-bottom: 20px;
}
.contact-info .ci-row label {
    margin: 0;
    padding: 0 0 6px;
    font-size: 11px;
    text-transform: uppercase;
    display: block;
    color: #fff;
    opacity: 0.8;
    line-height: normal;
    font-weight: 600;
}
.contact-info .ci-row span {
    margin: 0;
    font-size: 13px;
    text-transform: uppercase;
    color: #fff;
    display: block;
    letter-spacing: 1px;
}

.contact-info ul {
    margin-top: 40px;
}
.contact-info li  {
    margin-right: 8px;
}
.contact-info li a {
    background: #fff;
    font-size: 13px;
}

/*FOOTER*/
.footer {
    background-color: #0c0c0c;
}

.footer-section {
    padding-top: 60px;
}

.footer-section h4 {
    color: #fff;
    font-size: 16px;
    margin: 0 0 25px;
    letter-spacing: 0.055em;
    font-weight: 500;
    position: relative;
    padding: 0 0 15px;
}
.footer-section h4:after {
    position: absolute;
    width: 30px;
    height: 3px;
    content: "";
    left: 0;
    bottom: 0;
    background: #fff;
    opacity: 0.2;
    border-radius: 5px;
}

.footer-section .social-icons {
    margin: 20px 0 0 0;
    padding: 0;
}
.footer-section .social-icons li {
    display: inline-block;
    vertical-align: top;
}
.footer-section .social-icons li a {
    display: block;
    padding: 0;
    color: #fff;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
    background: transparent;
    -webkit-transition: ease all 0.3s;
    -moz-transition: ease all 0.3s;
    -o-transition: ease all 0.3s;
    transition: ease all 0.3s;
}
.footer-section .social-icons li a:hover {
    background: rgba(0,0,0,0.5);
}

.footer-section .footer-link li {
    width: 100%;
    display: inline-block;
    vertical-align: top;
    margin-bottom: 8px;
    font-size: 12px;
}
.footer-section .footer-link a {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    letter-spacing: 0.066em;
}
.footer-section p {
    margin: 0;
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    letter-spacing: 0.066em;
    line-height: 24px;
}

.footer-copy {
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 15px 0;
    text-align: center;
}
.footer-copy p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.43);
}

@media (max-width: 767px) {
    .footer-section {
        padding-top: 30px;
    }
    .footer-section h4 {
        margin: 0 0 20px;
    }
    .footer-copy {
        margin-top: 20px;
    }
}
