@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700|Playfair+Display:400,700,900');
* {
    margin: 0;
    padding: 0;
    outline: 0;
    z-index: 1;
}

ul,
ol {
    list-style: none;
}

input:focus {
    outline: none !important;
    box-shadow: 0 0 10px transparent !important;
}

a:focus,
a:hover {
    text-decoration: none;
    border-color: transparent;
    outline: 0;
    color: transparent;
}

img {
    border: 0;
}

.clr {
    clear: both;
}

h1,
h2,
h3,
h4,
h5,
h6,
ol,
ul,
p,
address,
strong {
    cursor: auto;
    margin-top: 0px;
    margin-bottom: 0px;
    line-height: normal;
}

body {
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

a:focus {
    outline: none;
}

a:hover {
    text-decoration: none;
}


/*
==========================================
    Preloader
==========================================
*/

.preloader {
    overflow: hidden;
    height: 100%;
    width: 100%;
    position: fixed;
    background: #fff;
    top: 0;
    left: 0;
    z-index: 9999999;
}

.wrapper {
    height: 50px;
    margin-top: calc(50vh - 25px);
    margin-left: calc(50vw - 85px);
    width: 180px;
}

.circle {
    border-radius: 0 37px;
    border: 3px #bd2299 solid;
    float: left;
    height: 83px;
    margin: 0 5px;
    width: 50px;
}

.circle-1 {
    -webkit-animation: move 1s ease-in-out infinite;
    animation: move 1s ease-in-out infinite;
}

.circle-1a {
    -webkit-animation: fade 1s ease-in-out infinite;
    animation: fade 1s ease-in-out infinite;
}

@-webkit-keyframes fade {
    0% {
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
    100% {
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    }
}

@keyframes fade {
    0% {
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
    100% {
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    }
}

.circle-2 {
    -webkit-animation: move 1s ease-in-out infinite;
    animation: move 1s ease-in-out infinite;
}

@-webkit-keyframes move {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(60px);
        transform: translateX(60px);
    }
}

@keyframes move {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(60px);
        transform: translateX(60px);
    }
}

.circle-1a {
    margin-left: -55px;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

.circle-3 {
    -webkit-animation: circle-3 1s ease-in-out infinite;
    animation: circle-3 1s ease-in-out infinite;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

@-webkit-keyframes circle-3 {
    0% {
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    }
    100% {
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
}

@keyframes circle-3 {
    0% {
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    }
    100% {
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
}

.preloader h1 {
    color: #fff;
    margin: 40px auto;
    text-align: center;
}


/* ============================
            common 
========================= */

.m-b-30 {
    margin-bottom: 30px;
}

.m-b-60 {
    margin-bottom: 60px;
}

.m-b-25 {
    margin-bottom: 25px;
}

.m-b-80 {
    margin-bottom: 80px;
}

.m-b-50 {
    margin-bottom: 50px;
}

.pr0 {
    padding-right: 0;
}

.pl0 {
    padding-left: 0;
}

.no-padding {
    padding-left: 0;
    padding-right: 0;
}

.mt0 {
    margin-top: 0 !important;
}

img {
    max-width: 100%
}

.section {
    padding-top: 80px;
}

.heading h5 {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    line-height: 24px;
}

.color h2 {
    color: #bb1093;
}

.heading h2 {
    font-family: "Playfair Display", sans-serif;
    font-weight: 600;
    line-height: 50px;
    letter-spacing: -1px;
    word-spacing: 6px;
    font-size: 50px;
}

.heading p {
    font-size: 14px;
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    line-height: 24px;
    padding-top: 40px;
}

.btn {
    color: #fff !important;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    position: relative;
    transition: ease all .3s;
    padding: 12px 38px !important;
    font-family: "Open Sans", sans-serif !important;
    /* border-radius: 100px; */
    border-radius: 0 100px;
    cursor: pointer;
    text-decoration: none;
    border: 0 none;
}

.btn-br {
    border: 1px solid #fff;
}

.btn-br:hover {
    border: 1px solid #fff;
}

.btn.focus,
.btn:focus {
    outline: 0;
    box-shadow: none !important;
    border: 1px solid transparent;
    background: #bb1093;
}

.navbar-collapse .btn:focus {
    border: 1px solid #fff
}

.btn-4 {
    overflow: hidden;
    position: relative;
}

.btn-4 span {
    z-index: 20;
}

.btn-4:after {
    background: #fff;
    content: "";
    height: 155px;
    left: -75px;
    opacity: 0.2;
    position: absolute;
    top: -40px;
    -webkit-transform: rotate(35deg);
    transform: rotate(35deg);
    transition: all 2s cubic-bezier(0.19, 1, 0.22, 1);
    width: 50px;
    z-index: 8;
}

.btn-4:hover:after {
    border: 1px solid #fff;
    left: 120%;
    transition: all 2s cubic-bezier(0.19, 1, 0.22, 1);
}


/* ===============================
        Header Top Part css
==================================*/

.header-top {
    position: relative;
    overflow: hidden;
    background-color: #fff;
    z-index: 99;
}

.header-top ul li {
    display: inline-block;
}

.phone-mail {
    padding-top: 10px;
}

.phone-mail li a i {
    margin-right: 5px;
    color: #bd2299;
    transition: all ease 0.5s 0s;
    font-size: 13px;
    padding: 2px 6px 2px 6px;
    border-radius: 0 10px;
    background-color: white;
}

.phone-mail li:last-child {
    padding-left: 20px;
}

.header-top ul li a {
    color: #fff;
    font-size: 14px;
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    line-height: 24px;
    position: relative;
}

.social_icon {
    float: right;
}

.social_icon {
    text-align: center;
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.social_icon ul li {
    list-style: none;
    margin: 10px 0px 10px 10px;
}

.social_icon ul li a {
    color: #bd2299;
    transition: all ease 0.5s 0s;
    font-size: 13px;
    padding: 2px 6px 2px 6px;
    border-radius: 0 10px;
    background-color: white;
}

.social_icon ul li a:hover {
    color: white;
    background-color: black;
    padding: 2px 6px 2px 6px;
    border-radius: 0 10px;
}

.navbar .btn-menu {
    margin-top: 8px;
}


/* ===============================
        Main Menu Part css
==================================*/

.header_area {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 999;
}

.navbar {
    position: relative;
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
    transition: all ease .5s;
    background: rgba(189, 34, 153, 0.9);
    /* opacity: 0.7; */
}

.navcss {
    position: fixed;
    background: rgba(189, 34, 153, 0.96);
    transition: all ease .5s;
    margin-top: 0px;
    box-shadow: 0 0px 5px 0px rgba(0, 0, 0, .2);
}

.header-nav .navbar-nav li a {
    position: relative;
    display: inline-block;
    margin: 30px 30px 25px 0;
    padding: 0px 10px;
    outline: none;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 400;
    text-shadow: 0 0 1px rgba(255, 255, 255, 0.3);
    font-size: 14px;
    transition: all ease 0.6s;
    -webkit-transition: all ease 0.6s;
    -moz-transition: all ease 0.6s;
    -ms-transition: all ease 0.6s;
    -o-transition: all ease 0.6s;
    cursor: pointer;
}

.header-nav .navbar-nav li a span {
    position: relative;
    display: inline-block;
    -webkit-transition: -webkit-transform 0.3s;
    -moz-transition: -moz-transform 0.3s;
    transition: transform 0.3s;
    margin-right: 4px;
}

.header-nav .navbar-nav li .active {
    font-weight: 700;
    cursor: pointer;
}

.header-nav .navbar-nav li a span::before {
    position: absolute;
    top: 100%;
    content: attr(data-hover);
    font-weight: 700;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.header-nav .navbar-nav li a {
    overflow: hidden;
}

.header-nav .navbar-nav li .active span,
.header-nav .navbar-nav li a:hover span,
.header-nav .navbar-nav li a:focus span {
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    transform: translateY(-100%);
}

.navcss .navbar-nav li a {
    color: #fff;
}

.header-nav .navbar-brand span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    position: absolute;
    bottom: 12px;
    right: -9px;
    float: left
}

.header-nav .navbar-nav .nav-item {
    position: relative;
}

.header-nav .m-nav {
    margin-right: 60px;
}

.navbar-toggler {
    border: none;
    padding: 10px 6px;
    outline: 0 !important;
}

.navbar-toggler span {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px;
}

.navbar-toggler span+span {
    margin-top: 4px;
    width: 18px;
}

.navbar-toggler span+span+span {
    width: 10px;
}

.navbar .btn-shape:before,
.navbar .btn-shape:after {
    background: transparent;
}

.dropdown-toggle::after {
    margin-left: -1px !important;
    vertical-align: .05em !important;
}

.custom_nav ul>li>a:focus:after,
.custom_nav ul>li.active>a:after,
.custom_nav ul>li:hover>a:after {
    opacity: 1;
}


/* dropdown menu */

.dropdown-menu {
    background: #fff;
    min-width: 210px;
    box-shadow: 0 2px 3px 0px rgba(0, 0, 0, .2);
    border-radius: 0;
    border: none;
    margin-top: 12px;
    padding: 0;
    -webkit-transition: all ease 0.4s;
    -moz-transition: all ease 0.4s;
    -ms-transition: all ease 0.4s;
    -o-transition: all ease 0.4s;
}

.nav .open>a,
.nav .open>a:focus,
.nav .open>a:hover {
    background: none;
}

.dropdown-menu>li:hover {
    background: rgba(189, 34, 153, 0.9);
}

.dropdown-menu>li>a:focus,
.dropdown-menu>li:hover a {
    background: none;
    color: #fff !important;
    font-weight: 600;
    transition: all .4s;
    -webkit-transition: all ease 0.4s;
    -moz-transition: all ease 0.4s;
    -ms-transition: all ease 0.4s;
    -o-transition: all ease 0.4s;
}

.dropdown-menu>li>a {
    padding: 16px 0 30px !important;
    color: #bb1093 !important;
    padding: 10px 18px !important;
    text-align: left;
    margin: 0 !important;
    font-weight: 600 !important;
}


/* dropdown menu css */

@media(min-width:999px) {
    .dropdown-menu {
        display: block;
        visibility: hidden;
        opacity: 0;
        top: 110%;
    }
    .custom_nav ul>li:hover>.dropdown-menu {
        opacity: 1;
        visibility: visible;
        top: 100%;
    }
    .navbar-right .dropdown-menu {
        right: 0;
        left: 2px;
        width: 240px;
    }
}


/* =====================================
           Banner Css 
======================================= */

.tg-sliderholder {
    overflow: hidden;
    position: relative;
    margin-top: 42px;
}

.pogoSlider-slide {
    background-size: cover !important;
}

.tg-homeslider .pogoSlider-slide {
    float: left;
    opacity: 0;
    width: 100%;
    height: 100%;
    padding: 0 100px;
    overflow: hidden;
    position: absolute;
    background-size: cover;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    justify-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.tg-slidercontent {
    padding-top: 130px;
}

.tg-slidercontent h6 {
    color: #fff;
    font-size: 16px;
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 10px;
    padding-bottom: 10px;
}

.tg-slidercontent h1 {
    color: #fff;
    font-size: 100px;
    font-family: "Playfair Display", sans-serif;
    font-weight: 600;
    line-height: 100px;
    letter-spacing: -3px;
    word-spacing: 6px;
    padding-bottom: 60px;
}

.banner-btn {
    background: rgba(0, 0, 0, 0) -o-linear-gradient(left, #bb1093 0%, #ff3dd2 100%) repeat scroll 0 0;
    background: rgba(0, 0, 0, 0) -webkit-linear-gradient(left, #bb1093 0%, #ff3dd2 100%) repeat scroll 0 0;
    background: rgba(0, 0, 0, 0) -moz-linear-gradient(left, #bb1093 0%, #ff3dd2 100%) repeat scroll 0 0;
    background: rgba(0, 0, 0, 0) linear-gradient(to right, #bb1093 0%, #ff3dd2 100%) repeat scroll 0 0;
}

.pogoSlider-nav-btn {
    background: transparent;
    border: 2px solid #fff;
    border-radius: 50%;
    width: 12px;
    height: 12px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.pogoSlider-nav-btn--selected {
    background: #fff;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}


/* ===========================================================
     Start: About us
=============================================================== */

.aboutus {
    position: relative;
}

.about-cont {
    padding-top: 90px;
    padding-left: 80px;
}

.about-cont p,
.about-cont h5 {
    color: #444;
}

.about-cont p {
    padding-bottom: 60px;
}


/* ===========================================================
     End: About us
=============================================================== */


/* ===========================================================
     Start: Service Part
=============================================================== */

.service {
    position: relative;
    z-index: 0;
    overflow: hidden;
}

.services-details-thumb-img {
    position: relative;
    padding: 0;
}

.test-3 {
    position: relative;
    z-index: 99;
}

.test-1 {
    background: #7d002e;
    position: relative;
    z-index: 99;
}

.test-1:after {
    position: absolute;
    content: '';
    top: 0;
    left: -300%;
    height: 139.5%;
    width: 300%;
    background: #7d002e;
    opacity: 1;
    z-index: 9;
}

.test-2 {
    position: absolute;
    top: 0;
    right: -17px;
    z-index: 0;
    height: 485px;
    overflow: hidden;
}

.test-4 {
    position: absolute;
    top: 0;
    left: 35%;
    z-index: 9;
    height: 485px;
    overflow: hidden;
}

.service-cont {
    color: #fff;
    padding: 90px 95px 90px 0;
}

.slide-service img {
    width: 100%;
    height: 485px;
    object-fit: cover;
}

.services-slider-img .col-md-12 {
    padding: 0;
}

.services-details-thumb-img img {
    cursor: grab;
}

.services-details-thumb-img {
    position: relative;
}

.services-details-thumb-img:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #bb1093;
    opacity: 0.6;
    z-index: 9;
}

.services-details-thumb-img.slick-center:after {
    opacity: 0;
}

.service-top {
    position: absolute;
    top: 0;
    width: 100%;
    left: 51%;
    transform: translateX(-50%);
    background: rgba(125, 0, 46, 0.8);
    z-index: 999;
    opacity: 0.7;
}

.service-right-cont {
    color: #fff;
    width: 80%;
    padding: 20px 0px 20px 70px;
}

.service-right-cont .heading h2 {
    font-size: 40px;
}

.service-right-cont {
    color: #fff;
    width: 747px;
    padding: 23px 30px 23px 0px;
    margin-left: 12%;
}

.slidNext4 {
    position: absolute;
    right: -35px;
    height: 35px;
    width: 35px;
    line-height: 35px;
    text-align: center;
    font-size: 14px;
    cursor: pointer;
    bottom: 0%;
    transform: translateY(-50%);
    z-index: 99;
    padding-left: 3px;
    padding-top: 1px;
    background: #7d002e;
    color: #ffffff;
    border-radius: 20px 0;
}

.slidNext4:hover {
    background: #fff;
    color: #7d002e;
    -webkit-box-shadow: 0px 0px 12px 0px rgba(105, 90, 166, 0.8);
    -moz-box-shadow: 0px 0px 12px 0px rgba(105, 90, 166, 0.8);
    box-shadow: 0px 0px 12px 0px rgba(105, 90, 166, 0.8);
    transition: all 0.4s ease;
}

.slidprev4 {
    position: absolute;
    right: 0px;
    height: 35px;
    width: 35px;
    line-height: 35px;
    text-align: center;
    font-size: 14px;
    cursor: pointer;
    border-radius: 0 20px;
    bottom: 0%;
    transform: translateY(-50%);
    z-index: 99;
    padding-top: 1px;
    background: #bb1093;
    color: #ffffff;
}

.slidprev4:hover {
    background: #fff;
    color: #bb1093;
    -webkit-box-shadow: 0px 0px 12px 0px rgba(105, 90, 166, 0.8);
    -moz-box-shadow: 0px 0px 12px 0px rgba(105, 90, 166, 0.8);
    box-shadow: 0px 0px 12px 0px rgba(105, 90, 166, 0.8);
    transition: all 0.4s ease;
}

.ser-btn {
    margin-top: 10px;
}


/* ===========================================================
     End: Service Part
=============================================================== */


/*------------------------------
    6. PORTFOLIO AREA
--------------------------------*/

.portfolio-menu {
    margin-bottom: 60px;
    margin-top: 50px;
}

.portfolio-area {
    background: #ffffff;
}

.portfolio-menu ul {
    list-style: outside none none;
    margin: 0;
    padding: 0;
    text-align: center;
}

.portfolio-menu ul li {
    /* background: #000000 none repeat scroll 0 0; */
    color: #bb1093;
    cursor: pointer;
    display: inline-block;
    letter-spacing: 1px;
    padding: 7px 15px;
    text-transform: uppercase;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    border: 1px dashed #bb1093;
    /* border-radius: 0 0 0 11px; */
    border-radius: 0 100px;
    text-transform: capitalize;
}

.portfolio-menu ul li.active,
.portfolio-menu ul li:hover {
    /*    background: #24bbc9 none repeat scroll 0 0;
       color: #363636;*/
    background: #DC143C none repeat scroll 0 0;
    color: white;
}

.single-portfolio {
    -moz-box-align: center;
    -moz-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 30px;
    min-height: 300px;
    position: relative;
}

.portfolio-bg {
    background-size: cover;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    background: #ddd;
}

.portfolio-bg::after {
    background: #000000 none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    width: 100%;
}

.portfolio-view-details {
    opacity: 0;
    -webkit-transform: scale(2);
    transform: scale(2);
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    z-index: 9;
}

.portfolio-view-details a {
    border: 1px solid;
    color: #24bbc9;
    display: inline-block;
    font-size: 20px;
    height: 50px;
    padding-top: 0;
    text-align: center;
    width: 50px;
    line-height: 50px;
    border-radius: 100%;
}

.portfolio-view-details a:hover {
    background: #24bbc9;
    border-color: #24bbc9;
    color: #fff;
}

.single-portfolio:hover .portfolio-bg::after {
    opacity: 0.8;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.single-portfolio:hover .portfolio-view-details {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}


/* =====================================
      Testimonial Css Start
======================================== */

.testimoni {
    background: url(../images/testimonial-bg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 0;
    position: relative;
}

.testimoni:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #bb1093;
    opacity: 0.8;
    z-index: -9;
}

.testimonial-cont,
.testimoni-cont h2,
.testimoni-cont h5,
.testimoni-cont p {
    color: #ffffff;
}

.testimonial-content {
    color: #ffffff;
    padding-top: 60px;
}

.testimonial-content img {
    border-radius: 100%;
    width: 80px;
    height: 80px;
    display: inline-block;
    margin-bottom: 30px;
}

.testimonial-content p {
    margin-left: 50%;
    transform: translateX(-50%);
    width: 50%;
}

.testimoni .slick-dots li {
    display: inline-block;
    cursor: pointer;
    border-radius: 0 13px;
    margin: 0px -16px;
    color: #48416f;
    margin-top: 60px;
    margin-bottom: 15px;
}

.testimoni .slick-dots .slick-active {
    background: #fff;
}

.testimoni .slick-dots li button {
    display: block;
    outline: none;
    font-size: 0;
    line-height: 24px;
    font-weight: 500;
    font-family: "Arimo";
    background: transparent;
    color: transparent;
    cursor: pointer;
    transition: all .3s ease;
    border-radius: 0 10px;
    border: 2px solid #fff;
    padding: 0;
    height: 21px;
    width: 14px;
}

.form {
    background: #ffffff;
    width: 100%;
    padding: 44px 20px 7px 20px;
    border-radius: 5px;
    border: transparent;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(105, 90, 166, 0.2);
    -moz-box-shadow: 0px 0px 10px 0px rgba(105, 90, 166, 0.2);
    box-shadow: 0px 0px 10px 0px rgba(105, 90, 166, 0.2);
    z-index: 999;
    position: inherit;
}

.flato2 {
    margin-bottom: 21%;
}

.cont-inline2 .cont-group .form-control,
.cont-inline2 .cont-group textarea {
    width: 100%;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    border: 1px solid #dddddd;
    padding: 5px 10px;
    height: 40px;
    color: #777777 !important;
    font-size: 14px;
    text-transform: capitalize;
    margin-bottom: 20px;
    background-color: transparent;
    border-radius: 20px;
    padding-left: 17px;
}

.cont-inline2 .cont-group textarea {
    position: relative;
    height: 120px;
    resize: none;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #777777 !important;
    border-radius: 5px;
}


/* =====================================
16. Testimonial Css End
======================================== */


/* =====================================
16. Footer Css Start
======================================== */

footer {
    background: url(../images/footer-bg-image.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

footer hr {
    border-top: 1px solid rgb(125 125 125 / 25%);
}

footer::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0.8;
    z-index: -9;
    background-color: black;
}

#contact {
    padding: 60px 0;
}

.footer-social p {
    font-size: 16px;
    color: #ffffff;
    font-weight: 400;
    margin-top: 30px;
    font-family: "Open Sans", sans-serif;
}

.footer-social ul li {
    float: left;
}

.footer-social ul li i {
    color: #fff;
    opacity: 0.5;
    padding-right: 17px;
    margin-top: 30px;
}

.footer-social ul li i:hover {
    color: #ffffff;
    opacity: 1;
}

.footer-location li h3 {
    font-size: 16px;
    color: #ffffff;
    font-weight: 400;
    font-family: "Open Sans", sans-serif;
    padding-right: 30px;
}

.footer-location ul li i {
    padding-right: 30px;
}

.footer-openning h5 {
    font-size: 16px;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 30px;
    font-family: "Open Sans", sans-serif;
}

.footer-openning ul li {
    font-size: 16px;
    color: #ffffff;
    font-weight: 400;
    font-family: "Open Sans", sans-serif;
}

.footer-location h5 {
    font-size: 16px;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 30px;
    font-family: "Open Sans", sans-serif;
}

.footer-location ul li {
    font-size: 16px;
    color: #ffffff;
    font-weight: 400;
    font-family: "Open Sans", sans-serif;
}

.footer-facebook h5 {
    font-size: 16px;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 30px;
    font-family: "Open Sans", sans-serif;
}

.footer-facebook ul li {
    float: left;
    margin: 2px;
    transition: all 0.5s ease 0s;
}

.footer-facebook ul li:hover {
    transform: scale(1.14);
}

.copy-right p {
    font-size: 13px;
    color: #ffffff;
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    margin-top: 20px;
}


/* ===================================
        Start: About banner Slider
   =====================================*/


/* === BACK TO TOP CSS == */

#back-top-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #bb1093;
    width: 50px;
    height: 70px;
    display: block;
    text-decoration: none;
    -webkit-border-radius: 0 40px;
    -moz-border-radius: 0 40px;
    border-radius: 0 40px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, .2);
    display: none;
    -webkit-transition: ease all .5s;
    -moz-transition: ease all .5s;
    -o-transition: ease all .5s;
    transition: ease all .5s;
    z-index: 999;
    padding: 14px;
    text-align: center;
}

#back-top-btn i {
    position: relative;
    color: #fff;
    -webkit-transition: ease all .5s;
    -moz-transition: ease all .5s;
    -o-transition: ease all .5s;
    transition: ease all .5s;
}

#back-top-btn:hover {
    background: #7d002e;
    box-shadow: 0px 0px 40px 4px rgba(0, 0, 0, .3);
    -webkit-box-shadow: 0px 0px 40px 4px rgba(0, 0, 0, .3);
    -moz-box-shadow: 0px 0px 40px 4px rgba(0, 0, 0, .3);
    -o-box-shadow: 0px 0px 40px 4px rgba(0, 0, 0, .3);
}


/* ========== animation ================ */

@keyframes bulb {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
        opacity: 0.6;
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes stretch {
    0% {
        transform: scale(.3);
        background-color: #bb1093;
        border-radius: 100%;
    }
    50% {
        background-color: #bb1093;
    }
    100% {
        transform: scale(1);
        background-color: #bb1093;
    }
}

@keyframes zoom {
    0% {
        transform: scale(1, 1);
    }
    50% {
        transform: scale(1.2, 1.2);
    }
    100% {
        transform: scale(1, 1);
    }
}


/* Conatct start */

.contact-us .form-outer {
    margin-top: 63px;
}

.contact-us .contact-form {
    padding: 40px 10px 7px 20px;
    border: 15px solid #00000017;
}

.header-title {
    text-align: center;
    color: #00bfff;
}

#tip {
    display: none;
}

.fadeIn {
    animation-duration: 3s;
}

.form-control {
    border-radius: 0px;
    border: 1px solid #EDEDED;
}

.form-control:focus {
    border: 1px solid #00bfff;
}

.textarea-contact {
    resize: none;
}

.btn-send {
    border-radius: 0px;
    border: 1px solid #00bfff;
    background: #00bfff;
    color: #fff;
}

.btn-send:hover {
    border: 1px solid #00bfff;
    background: #fff;
    color: #00bfff;
    transition: background 0.5s;
}

.second-portion {
    margin-top: 50px;
}

.box-contact>.icon {
    text-align: center;
    position: relative;
}

.box-contact>.icon>.image {
    position: relative;
    z-index: 2;
    margin: auto;
    width: 70px;
    height: 70px;
    border: 5px solid white;
    line-height: 65px;
    border-radius: 0 38px;
    background: #bb1093;
    vertical-align: middle;
}

.box-contact>.icon:hover>.image {
    background: #333;
}

.box-contact>.icon>.image>i {
    font-size: 25px !important;
    color: #fff !important;
}

.box-contact>.icon:hover>.image>i {
    color: white !important;
}

.box-contact>.icon>.info {
    margin-top: -15px;
    border: 1px solid #bb10931f;
    padding: 15px 0 10px 0;
}

.box-contact>.icon:hover>.info {
    background: rgba(0, 0, 0, 0.04);
    border-color: #e0e0e0;
    color: white;
}

.box-contact>.icon>.info>h3.title {
    font-size: 16px;
    color: #222;
    font-weight: 700;
}

.box-contact>.icon>.info>p {
    color: #666;
    margin: 10px;
    ;
}

.box-contact>.icon:hover>.info>h3.title,
.box-contact>.icon:hover>.info>p,
.box-contact>.icon:hover>.info>.more>a {
    color: #222;
}

.box-contact>.icon>.info>.more a {
    font-family: "Robot", sans-serif !important;
    font-size: 12px;
    color: #222;
    line-height: 12px;
    text-transform: uppercase;
    text-decoration: none;
}

.box-contact>.icon:hover>.info>.more>a {
    color: #fff;
    padding: 6px 8px;
    background-color: #63B76C;
}

.box-contact .space {
    height: 30px;
}

@media only screen and (max-width: 768px) {
    .contact-form {
        margin-top: 25px;
    }
    .btn-send {
        width: 100%;
        padding: 10px;
    }
    .second-portion {
        margin-top: 25px;
    }
}


/* Conatct end */

.ekko-lightbox-nav-overlay a span {
    /* padding: 0 30px;
    font-size: 29px; */
    color: white;
}