/* general */
body {
    padding-top: 3.5rem;
}

h1,
h2,
h3,
h4,
h4,
h6 {
    font-family: 'Helvetica Neue';
}

p {
    font-family: 'Helvetica Neue';
    font-weight: 300;
    font-size: 18px;
}

a {
    font-family: 'Helvetica Neue';
    font-weight: 300;
    color: #17a2b8;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

a:hover {
    text-decoration: none;
    color: #138496;
}

p.lead {
    font-weight: 300;
}

@media (max-width: 576px) {
    .display-3 {
        font-size: 3.5rem;
    }
}

.bg-darker {
    background: #1e2225;
}

.btn {
    border-radius: 1px;
}

.fw-300 {
    font-weight: 300;
}

.ls--1 {
    letter-spacing: -1px;
}

.sr_shadow {
    position: relative;
}

.sr_shadow:before {
    background: #fff none repeat scroll 0 0;
    border-radius: 50%;
    box-shadow: 0.5px 18px 0 rgba(0, 0, 0, 0.1);
    content: "";
    height: 80px;
    left: 50%;
    margin-left: -30px;
    margin-top: -65px;
    position: absolute;
    top: 0;
    width: 60px;
}

.bg-blue {
    background-color: #f1f4fa;
}

/* modals */
.close {
  position: absolute;
  right: 1rem;
}

.modal-footer {
  background: rgba(23, 162, 184, 0.05);
}

/* animated button */
.button {
    position: relative;
    display: inline-flex;
    text-decoration: none;
    color: #fff;
    background-color: #41bed2;
    padding-left: 2rem;
    overflow: hidden;
    z-index: 1;
    align-items: center;
    box-shadow: 0px 3px 4px -4px rgba(0, 0, 0, 0.75);
}

.button:hover {
    color: #fff;
}

.button::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    transform: scaleX(0);
    transform-origin: 0 50%;
    width: 100%;
    height: 100%;
    background-color: #17a2b8;
    z-index: -1;
    transition: transform 750ms;
}

.button span {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 2rem;
    padding: 1rem;
    overflow: hidden;
    background-color: #17a2b8;
}

.button span.small {
    padding: 0.5rem;
}

.button svg {
    max-width: 20px;
    width: 100%;
    height: auto;
    max-height: 18px;
    fill: white;
}

.button:hover::before {
    transform: scaleX(1);
}

.button:hover svg {
    animation: moveArrow 750ms;
}

@keyframes moveArrow {
    0% {
        transform: translateX(0px);
    }

    49% {
        transform: translateX(50px);
    }

    50% {
        transform: translateX(-50px);
    }

    100% {
        transform: translateX(0px);
    }
}

.carousel-indicators li {
    border: 1px solid #ddd;
}

/* top-bar */
.top-bar ul,
ol {
    margin-bottom: 0;
    padding: 0;
}

.top-bar.color-bar ul.social-list .svg-inline--fa {
    border-left: 1px solid rgba(255, 255, 255, .1);
}

.top-bar.color-bar ul.social-list li:last-child .svg-inline--fa {
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.top-bar.color-bar .contact-details li:before {
    color: rgba(255, 255, 255, .2);
}

.top-bar a {
    color: #fff;
}

.top-bar .contact-details li:first-child {
    margin-left: 0;
}

.top-bar .contact-details .svg-inline--fa {
    margin-right: 5px;
}

.top-bar .contact-details li {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 300;
    display: inline-block;
    line-height: 42px;
    color: #fff;
    margin-left: 20px;
}

/* top-bar Social icons */
ul.social-list {
    float: right;
    list-style-type: none;
}

ul.social-list li {
    float: left;
    margin-top: 10px;
}

ul.social-list li a {
    display: inline-block;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    color: #fff;
}

ul.social-list li a:hover {
    color: #17a2b8;
    text-decoration: none;
}

ul.social-list li a .svg-inline--fa {
    display: block;
    width: 34px;
    line-height: 42px;
    text-align: center;
    font-size: 15px;
}

/* hero */
.hero {
    padding: 8rem 1.5rem 3rem;
    text-align: center;
    background: #fff;
}

.hero h1 {
    line-height: 70px;
}

.hero p.lead {
    line-height: 26px;
}

/* hero text highlight */
.highlight {
    display: inline-block;
    transition: color 250ms, text-shadow 250ms;
    text-decoration: none;
    position: relative;
    z-index: 0;
}

.highlight::after {
    position: absolute;
    z-index: -1;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    content: '';
    width: 100%;
    height: 3px;
    background-color: #17a2b8;
    transition: all 250ms;
}

.highlight:hover {
    color: white !important;
}

.highlight:hover::after {
    height: 105%;
    width: 105%;
}

/* navbar */
.navbar {
    display: inline-block;
    padding: 0;
}

.navbar-light .navbar-nav .nav-link {
    color: rgba(0, 0, 0, 0.75) !important;
}

.navbar-light .navbar-nav .active>.nav-link {
    color: #17a2b8 !important;
}

.navbar-light .navbar-nav .nav-link:hover {
    color: #17a2b8 !important;
}

.navbar-brand {
    text-transform: uppercase;
    font-size: 1.5rem;
    line-height: 45px;
    font-weight: 700;
}

.navbar-brand::before {
    display: none;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}

.navbar-brand::before {
    font-family: "Font Awesome 5 Pro";
    font-weight: 300;
    content: "\f109";
}

a.nav-link {
    font-weight: 500;
    text-transform: uppercase;
}

/* feature area */
.feature_area .featured {
    position: relative;
    text-align: center;
}

.feature_area .featured .feature_img {
    display: inline-block;
}

.feature_area .featured .single_feature {
    line-height: 26px;
    position: absolute;
    display: inline-block;
    width: auto;
}

.feature_area .featured .single_feature .h4 {
    font-size: 19px;
    font-weight: 600;
    margin-top: 0;
    opacity: 0;
}

.feature_area .featured .single_feature p {
    opacity: 0;
}

.feature_area .featured .single_feature>*:last-child {
    margin-bottom: 0;
}

.feature_area .featured .single_feature.active .h4,
.feature_area .featured .single_feature.active p {
    opacity: 1;
    transition-duration: .4s;
    transition-delay: 1.1s;
}

.feature_area .featured .single_feature.active .two {
    display: none;
}

.feature_area .featured .single_feature.active .one {
    display: inline-block;
}

.feature_area .featured .single_feature .one {
    display: none;
}

.feature_area .featured .single_feature .two {
    display: inline-block;
}

@media only screen and (min-width: 0px) and (max-width: 1201px) {
    .feature_area .featured .single_feature {
        width: 33.33%;
        display: inline-block;
    }
}

@media only screen and (min-width: 0px) and (max-width: 1201px) {
    .feature_area .featured .single_feature {
        position: static;
        margin-top: 40px;
        width: 100%;
    }

    .feature_area .featured .single_feature .h4,
    .feature_area .featured .single_feature p {
        opacity: 1;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .feature_area .featured .single_feature {
        width: 45%;
        display: inline-block;
    }
}

.feature_area .featured .single_feature:nth-child(4).active .h4,
.feature_area .featured .single_feature:nth-child(4).active p {
    transition-delay: .7s;
}

.feature_area .featured .single_feature span.dot {
    position: absolute;
    height: 15px;
    width: 15px;
    background-color: #2b4dbc;
    border-radius: 50%;
    z-index: 1;
}

@media only screen and (min-width: 0px) and (max-width: 1201px) {
    .feature_area .featured .single_feature span.dot {
        display: none;
    }
}

.feature_area .featured .single_feature span.dot .mtooltip {
    background: #e02a27 none repeat scroll 0 0;
    border-radius: 25px;
    color: #fff;
    left: -55px;
    line-height: 30px;
    position: absolute;
    top: -45px;
    width: 130px;
    opacity: 0;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
    background: #e02a27;
    background: -webkit-linear-gradient(to bottom, #fd6921, #e02a27);
    background: linear-gradient(to bottom, #fd6921, #e02a27);
    border: 2px solid #ffffff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.feature_area .featured .single_feature span.dot .mtooltip::before {
    border-color: #e02a27 transparent transparent;
    border-style: solid;
    border-width: 8px;
    bottom: -16px;
    content: "";
    left: 50%;
    margin-left: -11px;
    position: absolute;
}

.feature_area .featured .single_feature span.dot:hover .mtooltip,
.feature_area .featured .single_feature span.dot.active .mtooltip {
    opacity: 1;
}

.feature_area .featured .single_feature span.dot.active .mtooltip {
    animation: mt_anim 1.2s infinite;
    animation-delay: 2s;
}

@-webkit-keyframes mt_anim {
    0% {
        opacity: 1;
    }

    20% {
        opacity: .05;
    }

    100% {
        opacity: 1;
    }
}

@keyframes mt_anim {
    0% {
        opacity: 1;
    }

    20% {
        opacity: .05;
    }

    100% {
        opacity: 1;
    }
}

.feature_area .featured .single_feature span.dot:hover .mtooltip {
    animation: none;
}

.feature_area .featured .single_feature span.dot:after {
    position: absolute;
    border-radius: 50%;
    background-color: #3094f1;
    opacity: .4;
    content: '';
    left: -6px;
    top: -6px;
    bottom: -6px;
    right: -6px;
    animation: dotAnim 1s infinite;
    z-index: -1;
}

@-webkit-keyframes dotAnim {
    0% {
        left: 0;
        top: 0;
        bottom: 0;
        right: 0;
    }

    60% {
        left: -6px;
        top: -6px;
        bottom: -6px;
        right: -6px;
    }

    100% {
        left: 0;
        top: 0;
        bottom: 0;
        right: 0;
    }
}

@keyframes dotAnim {
    0% {
        left: 0;
        top: 0;
        bottom: 0;
        right: 0;
    }

    60% {
        left: -6px;
        top: -6px;
        bottom: -6px;
        right: -6px;
    }

    100% {
        left: 0;
        top: 0;
        bottom: 0;
        right: 0;
    }
}

.feature_area .featured .single_feature:nth-child(2) {
    left: -50px;
    bottom: 45px;
    top: auto;
    right: auto;
}

.feature_area .featured .single_feature:nth-child(2):before {
    content: "";
    height: 40px;
    position: absolute;
    top: -60px;
    width: 3px;
    left: 50%;
}

.feature_area .featured .single_feature:nth-child(2).active:before {
    background-repeat: no-repeat;
    animation-name: f1_gra_a;
    background-position: center top;
    animation-delay: .7s;
    animation-duration: .4s;
    background-image: -webkit-linear-gradient(to left, #2b4dbc, #2b4dbc);
    background-image: linear-gradient(to left, #2b4dbc, #2b4dbc);
    background-size: 0;
    background-color: #2b4dbc;
    transition-delay: 1.1s;
}

@-webkit-keyframes f1_gra_a {
    0% {
        background-size: 3px 0;
    }

    100% {
        background-size: 3px 100%;
    }
}

@keyframes f1_gra_a {
    0% {
        background-size: 3px 0;
    }

    100% {
        background-size: 3px 100%;
    }
}

.feature_area .featured .single_feature:nth-child(2):after {
    content: "";
    height: 3px;
    position: absolute;
    top: -62px;
    width: 320px;
    left: 50%;
}

.feature_area .featured .single_feature:nth-child(2).active:after {
    background-image: -webkit-linear-gradient(to left, #3094f1, #2b4dbc);
    background-image: linear-gradient(to left, #3094f1, #2b4dbc);
    background-repeat: no-repeat;
    animation: f1_gra .7s;
    background-position: right center;
}

@-webkit-keyframes f1_gra {
    0% {
        background-size: 0 3px;
    }

    100% {
        background-size: 100% 3px;
    }
}

@keyframes f1_gra {
    0% {
        background-size: 0 3px;
    }

    100% {
        background-size: 100% 3px;
    }
}

.feature_area .featured .single_feature:nth-child(2) span.dot {
    right: -210px;
    top: -68px;
    cursor: pointer;
}

.feature_area .featured .single_feature:nth-child(3) {
    right: -60px;
    top: 20px;
    bottom: auto;
    left: auto;
}

.feature_area .featured .single_feature:nth-child(3):before {
    content: "";
    height: 40px;
    position: absolute;
    bottom: -42px;
    width: 3px;
    right: 50%;
    margin-right: -3px;
    background-position: center bottom;
}

.feature_area .featured .single_feature:nth-child(3).active:before {
    background-repeat: no-repeat;
    animation-name: f2_gra_a;
    animation-delay: .7s;
    animation-duration: .4s;
    background-image: -webkit-linear-gradient(to left, #2b4dbc, #2b4dbc);
    background-image: linear-gradient(to left, #2b4dbc, #2b4dbc);
    background-size: 0;
    background-color: #2b4dbc;
    transition-delay: 1.1s;
}

@-webkit-keyframes f2_gra_a {
    0% {
        background-size: 3px 0;
    }

    100% {
        background-size: 3px 100%;
    }
}

@keyframes f2_gra_a {
    0% {
        background-size: 3px 0;
    }

    100% {
        background-size: 3px 100%;
    }
}

.feature_area .featured .single_feature:nth-child(3):after {
    content: "";
    height: 3px;
    position: absolute;
    bottom: -42px;
    width: 320px;
    right: 50%;
    margin-right: -3px;
    right: 50%;
}

.feature_area .featured .single_feature:nth-child(3).active:after {
    background-image: -webkit-linear-gradient(to right, #3094f1, #2b4dbc);
    background-image: linear-gradient(to right, #3094f1, #2b4dbc);
    background-repeat: no-repeat;
    animation: f2_gra .7s;
    background-position: left center;
}

@-webkit-keyframes f2_gra {
    0% {
        background-size: 0 3px;
    }

    100% {
        background-size: 100% 3px;
    }
}

@keyframes f2_gra {
    0% {
        background-size: 0 3px;
    }

    100% {
        background-size: 100% 3px;
    }
}

.feature_area .featured .single_feature:nth-child(3) span.dot {
    left: -208px;
    bottom: -48px;
    cursor: pointer;
}

.feature_area .featured .single_feature:nth-child(4) {
    top: -15px;
    left: -50px;
    right: auto;
    bottom: auto;
}

.feature_area .featured .single_feature:nth-child(4):after {
    content: "";
    height: 3px;
    position: absolute;
    width: 292px;
    top: 50%;
    right: -313px;
    left: auto;
    margin-top: -5px;
}

.feature_area .featured .single_feature:nth-child(4).active:after {
    background-image: -webkit-linear-gradient(to left, #3094f1, #2b4dbc);
    background-image: linear-gradient(to left, #3094f1, #2b4dbc);
    background-repeat: no-repeat;
    animation: f3_gra .7s;
    background-position: right center;
}

@-webkit-keyframes f3_gra {
    0% {
        background-size: 0 3px;
    }

    100% {
        background-size: 100% 3px;
    }
}

@keyframes f3_gra {
    0% {
        background-size: 0 3px;
    }

    100% {
        background-size: 100% 3px;
    }
}

.feature_area .featured .single_feature:nth-child(4) span.dot {
    margin-top: -11px;
    right: -328px;
    top: 50%;
    cursor: pointer;
}

@media only screen and (min-width: 0px) and (max-width: 1201px) {
    .feature_area .featured .single_feature:before,
    .feature_area .featured .single_feature.active:before,
    .feature_area .featured .single_feature:after,
    .feature_area .featured .single_feature.active:after {
        display: none;
    }
}

.sp90 {
    padding: 90px 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .sp90 {
        padding: 60px 0;
    }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
    .sp90 {
        padding: 40px 0;
    }
}

.spb90 {
    padding-bottom: 90px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .spb90 {
        padding-bottom: 60px;
    }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
    .spb90 {
        padding-bottom: 40px;
    }
}

.spt90 {
    padding-top: 90px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .spt90 {
        padding-top: 60px;
    }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
    .spt90 {
        padding-top: 40px;
    }
}

.section_title {
    margin-bottom: 40px;
    text-align: center;
}

.section_title h1 {
    font-size: 48px;
    margin: 0 0 20px;
    font-weight: 600;
}

.section_title p {
    font-size: 18px;
    line-height: 32px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
    .section_title {
        margin-bottom: 50px;
    }

    .section_title br {
        display: none;
    }

    .section_title h1 {
        font-size: 25px;
        margin-bottom: 10px;
    }

    .section_title p {
        font-size: 14px;
        line-height: 28px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .section_title br {
        display: none;
    }

    .section_title h1 {
        font-size: 30px;
    }
}

.gradient_bg_two .section_title {
    color: #ffffff;
}

/* product area */
.product_area {
    position: relative;
    z-index: 1;
    padding: 120px 0;
}

@media only screen and (min-width: 0px) and (max-width: 991px) {
    .product_area {
        padding: 60px 0;
    }
}

.product_area .single_product {
    font-size: 18px;
}

.product_area .single_product .h2 {
    line-height: 46px;
    margin: 0 0 20px;
    font-weight: 600;
    font-size: 34px;
}

.product_area .single_product .product_list {
    margin: 35px 0 0;
    list-style: none;
}

@media only screen and (min-width: 0px) and (max-width: 991px) {
    .product_area .single_product .product_list {
        display: inline-block;
        text-align: left;
    }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
    .product_area .single_product .product_list {
        margin-top: 20px;
    }
}

.product_area .single_product .product_list li {
    font-size: 20px;
    font-weight: 500;
    line-height: 40px;
    margin-bottom: 10px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
    .product_area .single_product .product_list li {
        line-height: 25px;
        font-size: 15px;
    }
}

.product_area .single_product .product_list li:before {
    content: '\f00c';
    font-family: "FontAwesome";
    font-size: 14px;
    width: 38px;
    height: 38px;
    background-color: #17a2b8;
    display: inline-block;
    text-align: center;
    color: #ffffff;
    line-height: 38px;
    border-radius: 50%;
    margin-right: 15px;
    border: 1px solid #17a2b8;
    transition-duration: .4s;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
    .product_area .single_product .product_list li:before {
        width: 25px;
        height: 25px;
        line-height: 25px;
        font-size: 12px;
    }
}

.product_area .single_product .product_list li:hover:before {
    background-color: transparent;
    color: #0084ff;
}

.product_area .single_product .product_img {
    position: absolute;
    right: 0;
    bottom: 32px;
    z-index: -1;
    width: 50%;
}

@media only screen and (min-width: 0px) and (max-width: 991px) {
    .product_area .single_product .product_img {
        display: none;
    }
}

.product_area .single_product:first-child {
    margin-bottom: 125px;
}

.product_area .single_product:first-child .product_content {
    margin-left: 50px;
    margin-top: 35px;
}

@media only screen and (min-width: 0px) and (max-width: 991px) {
    .product_area .single_product:first-child {
        margin-bottom: 40px;
    }

    .product_area .single_product:first-child .product_content {
        margin-left: 0;
    }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
    .product_area .single_product:first-child {
        margin-bottom: 30px;
    }
}

.product_area .single_product:first-child .product_img {
    right: auto;
    left: 50%;
    width: 480px;
    bottom: auto;
    top: 120px;
    margin-left: -580px;
}

@media only screen and (min-width: 0px) and (max-width: 991px) {
    .product_area .single_product .product_content {
        text-align: center;
    }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
    .product_area .single_product .product_content {
        margin-left: 0;
    }

    .product_area .single_product .product_content .h2 {
        font-size: 24px;
        line-height: 30px;
    }

    .product_area .single_product .product_content .h2 p {
        font-size: 14px;
        line-height: 24px;
    }

    .product_area .single_product .product_content .h2 br {
        display: none;
    }
}

.static {
    position: static !important;
}

/* cards */
.wrap {
    display: flex;
    background: white;
    padding: 1rem 1rem 1rem 1rem;
    border-radius: 0.5rem;
    box-shadow: 7px 7px 20px -5px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.wrap:hover {
    background: rgba(23, 162, 184, 0.7);
    color: white;
}

.vcenter {
    margin: auto;
}

h2 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.display-5 {
    font-size: 1.4rem;
}

p {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    line-height: 25px;
}

.display-6 {
    font-size: 1rem;
}

/* product cards */
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .price_area .price {
        padding: 0 40px;
    }
}

.price_area .price .col-md-3:nth-child(1) {
    animation-delay: .2s;
}

.price_area .price .col-md-3:nth-child(2) {
    animation-delay: .4s;
}

.price_area .price .col-md-3:nth-child(3) {
    animation-delay: .6s;
}

.price_area .price .col-md-3:nth-child(4) {
    animation-delay: .8s;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
    .price_area .price .col-md-3:first-child .single_price {
        margin-top: 0;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .price_area .price .col-md-3 {
        padding: 0;
        border-right: 1px solid #ddd;
    }

    .price_area .price .col-md-3:last-child {
        border: none;
    }
}

.price_area .price .single_price {
    text-align: center;
    background-color: #ffffff;
    padding: 40px 35px;
    margin-top: 30px;
    border-radius: 3px;
    box-shadow: 7px 7px 20px -5px rgba(0, 0, 0, 0.1);
    -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;
}

.price_area .price .single_price:hover {
    box-shadow: none;
}

.price_area .price .single_price .product_img {
    margin-bottom: 20px;
    width: 200px;
    height: 120px;
    background-size: cover;
    background-position: center 100%;
    display: inline-block;
}

.price_area .price .single_price .product_img img {
    display: inline-block;
}

.price_area .price .single_price:hover .product_img {
    background-position: center 0;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
}

.price_area .price .single_price .h4 {
    font-weight: 300;
    margin: 0;
    margin-bottom: 10px;
}

.price_area .price .single_price .currency {
    color: #0084ff;
}

.price_area .price .single_price .price_bar {
    width: 100%;
    height: 1px;
    display: block;
    background-color: #e2e5e9;
    margin: 20px 0;
}

.price_area .price .single_price .price_btn {
    margin-top: 20px;
}

.price_area .price .single_price .price_btn a.big_btn {
    width: 170px;
}

/* contact */
.contact {
    padding: 0 0 5rem 0;
}

.contact .contact-details {
    padding-top: 5rem;
    padding-bottom: 1rem;
}

.contact h3 {
    margin-bottom: 0;
}

.constrain-width {
    max-width: 45rem;
    margin: 0 auto;
}

.divider {
    display: block;
    width: 6rem;
    height: 0.3rem;
    background-color: #dfe1e5;
    margin: 2rem auto;
}

#contact .contact-form {
  font-size: 18px;
  margin-top: 20px;
  text-align: center;
}

#contact .contact-form .control-group {
  max-width: 80%;
  margin-right: auto;
  margin-left: auto;
}

#contact .contact-form .control-group:nth-child(3) {
  display: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

#contact .contact-form label {
  font-size: 14px;
  font-weight: normal;
  width: 100%;
  margin-bottom: 10px;
  text-align: left;
  text-transform: uppercase;
  color: #888;
}

#contact .contact-form input, #contact .contact-form textarea {
  font-size: 14px;
  overflow: hidden;
  width: 100%;
  height: 50px;
  margin-bottom: 22px;
  padding-left: 10px;
  -webkit-transition: all .2s linear;
  -moz-transition: all .2s linear;
  transition: all .2s linear;
  letter-spacing: 1px;
  color: #888;
  border: none;
  border: 1px solid #d6d6d6 !important;
  border-radius: 3px;
  outline: none;
  background: rgba(255, 255, 255, 0);
  box-shadow: none;
}

#contact .contact-form input::-webkit-input-placeholder, #contact .contact-form textarea::-webkit-input-placeholder {
  color: #888;
}

#contact .contact-form input::-moz-placeholder, #contact .contact-form textarea::-moz-placeholder {
  color: #888;
}

#contact .contact-form.error input.active, #contact .contact-form.error textarea.active {
  border-color: rgba(251, 9, 9, 1) !important;
}

#contact .contact-form.success input, #contact .contact-form.success textarea {
  background: rgba(255, 255, 255, 0) !important;
}

#contact .contact-form textarea {
  height: 110px;
  padding-top: 10px;
  resize: none !important;
}

#contact .contact-form input:focus, #contact .contact-form input:active {
  border: 1px solid #d6d6d6;
  outline: none;
  background: rgba(255, 255, 255, .06);
}

#contact .contact-form textarea:focus, #contact .contact-form textarea:active {
  border: 1px solid #fff;
  outline: none;
  background: rgba(255, 255, 255, .06);
}

#contact .contact-form button {
  font-size: 13px;
  font-weight: 400;
  line-height: 50px;
  position: relative;
  display: block;
  overflow: hidden;
  width: 145px;
  height: 50px;
  margin: 38px auto 0 auto;
  -webkit-transition: all .3s ease 0s;
  -moz-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #000;
  border: 1px solid #d6d6d6;
  border-radius: 0;
  background: rgba(23, 162, 184, 1);
}

#contact .contact-form.success button {
  border-color: rgba(84, 165, 93, 1) !important;
  background: rgba(84, 165, 93, 1) !important;
}

#contact .contact-form.error button {
  border-color: rgba(251, 9, 9, 1) !important;
  background: rgba(251, 9, 9, 1) !important;
}

#contact .contact-form button:hover, #contact .contact-form button:focus, #contact .contact-form button:active {
  color: #000;
  border-color: #d6d6d6;
  outline: none !important;
  background: rgba(255, 255, 255, .00);
  box-shadow: none;
}

#contact .contact-form button:hover {
  background: rgba(23, 162, 184, 0.75) !important;
}

#contact .contact-form button:focus, #contact .contact-form button:active {
  background: rgba(255, 255, 255, 1);
}

#contact .contact-form .btn-primary[disabled] {
  opacity: 1;
  color: #fff;
  border: 1px solid #fff;
  outline: none;
  background: rgba(255, 255, 255, 1);
}

#contact .contact-form.error button:hover, #contact .contact-form.error button:focus, #contact .contact-form.error button:active {
  border-color: rgba(251, 9, 9, 1);
}

#contact .contact-form.error button:focus {
  background: rgba(251, 9, 9, 1);
}

#contact .contact-form.success button:hover, #contact .contact-form.success button:focus, #contact .contact-form.success button:active {
  border-color: rgba(95, 234, 110, 1);
}

#contact .contact-form.success button:hover, #contact .contact-form.success button:focus {
  background: rgba(95, 234, 110, 1) !important;
}

#contact .contact-form button::before {
  position: absolute;
  z-index: -1;
  top: 0;
  right: auto;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  -webkit-transition: all .2s ease 0s;
  -moz-transition: all .2s ease 0s;
  transition: all .2s ease 0s;
  background: rgba(23, 162, 184, 1);
}

#contact .contact-form.success button::before {
  background: rgba(95, 234, 110, 1) !important;
}

#contact .contact-form.error button::before {
  background: rgba(251, 9, 9, 1) !important;
}

#contact .contact-form.success button::before {
  background: rgba(255, 255, 255, 1);
}

#contact .contact-form button:hover::before {
  right: 0;
  left: auto;
  width: 0;
}

#contact .contact-form.success button:hover::before {
  right: 0;
  left: 0;
  width: 100%;
}

#contact .contact-form button i {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: auto;
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
}

#contact .contact-form button:hover i {
  -webkit-transition: all .2s ease 0s;
  -moz-transition: all .2s ease 0s;
  transition: all .2s ease 0s;
}

#contact .contact-form button i.first {
  left: -200%;
  color: #fff;
}

#contact .contact-form button i.second {
  left: 0;
  color: #fff;
}

#contact .contact-form button:hover i.first {
  left: 0;
}

#contact .contact-form button:hover i.second {
  left: 200%;
}

#contact .contact-form.error button i.second:before {
  content: '\e646';
  color: #fff;
}

#contact .contact-form.success button i.second:before {
  content: '\e64c';
  color: #fff;
}

#contact .contact-form.success button:hover i.first {
  left: -200%;
}

#contact .contact-form.success button:hover i.second {
  left: 0;
}

#contact .social-icons {
  margin: 10px 0 0 0;
  padding: 0;
  list-style: none;
  text-align: center;
}

#contact .social-icons li {
  display: inline-block;
  margin: 0 15px;
}

#contact .social-icons li a {
  font-size: 16px;
  line-height: 40px;
  position: relative;
  overflow: hidden;
  width: 40px;
  height: 40px;
  color: #000;
  border-radius: 2px;
  background: rgba(255, 255, 255, .9);
  -webkit-transition: all .3s ease 0s;
  -moz-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
}

#contact .social-icons li a:hover {
  text-decoration: none;
  color: #fff;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .06);
}

#contact .overlay {
  position: absolute;
  top: 0;
  left: 0;
  /*background: url('assets/img/overlays/02.png');*/
  background-color: rgba(0, 0, 0, 0.75);
  width: 100%;
  height: 100%;
}

/* footer */
.footer {
    border-top: 1px solid #000;
}

.footer h4 {
    text-transform: uppercase;
}

.footer ul {
    padding-left: 10px;
}

.footer li a {
    color: #fff;
    line-height: 1.75rem;
    font-weight: 300;
}

.footer li a:hover {
    color: rgba(255, 255, 255, 0.6);
}

.copyright {
    border-top: 1px solid #000;
}

.copyright p {
    font-size: 16px;
}
