    /*Venox Business Consulting Template By AlexaTheme*/

/*  ==========================================================================
    Table of Contets
    ==========================================================================

    1.0 Common Styles
    2.0 Header Section
    3.0 Slider Section
    4.0 Hero Section
    5.0 Promo Section
    6.0 About Section
    7.0 Service Section
    8.0 Counter Section
    9.0 Team Section
    10.0 Project Section
    11.0 Request Section
    12.0 Pricing Section
    13.0 Testimonial Section
    14.0 CTA Section
    15.0 Sponsor Section
    16.0 Widget Section
    17.0 Page Header Section
    18.0 Gallery Section
	19.0 Blog Section
	20.0 SideBar Section
	21.0 Contact Section
	22.0 Footer Section
	23.0 Scroll To Top

    ==========================================================================
    AlexaTheme
    ========================================================================== */

    @import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700');
    @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800&family=Open+Sans:wght@300;400;600;700&display=swap');

/*  ==========================================================================
    1.0 Common Styles
    ========================================================================== */
*{
    padding: 0;
    margin: 0;
}
body{
    background-color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    line-height: 23px;
    color: #777;
    font-weight: 400;
    position: relative;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6{
    font-family: 'Open Sans', sans-serif;
    -webkit-font-smoothing:antialiased;
    color: #333;
}
h1{
    font-size: 50px;
    line-height: 50px;
    margin: 0 0 10px;
    letter-spacing: -4px;
    font-weight: 700;
    font-style: normal;
}
h2{
    font-size: 32px;
    color: #333;
    margin: 0 0 8px;
    font-weight: 600;
    line-height: 34px;
    letter-spacing: -0.04em;
}
h3,h4{
    margin: 0 0 10px;
    font-weight: 600;
    line-height: 1.4;
    color: #333;
    letter-spacing: -0.02em;
}
h3{
    font-size: 17px;
}
h4{
    font-size: 15px;
}
h5,h6{
    font-size: 14px;
    margin: 0 0 10px;
}
img{
    border: none;
    outline:none;
}
ul{
    display: block;
    list-style: none;
    padding: 0;
    margin: 0;
}
p{
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
    font-size: 14px;
    margin-bottom: 15px;
   
}
a{  font-family: 'Open Sans', sans-serif;
    letter-spacing: -0.04em;
}
a, a:hover{
    text-decoration: none;
}
a:focus{
    outline: 0;
    text-decoration: none;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder{
   color: #888 !important;
}

input:-moz-placeholder,
textarea:-moz-placeholder{ /* Firefox 18- */
   color: #888 !important;
}

input::-moz-placeholder,
textarea::-moz-placeholder{  /* Firefox 19+ */
   color: #888 !important;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder{
   color: #888 !important;
}
button{
    border: none;
    background: none;
}
/* Helper Class */
.padding{
    padding: 100px 100px;
}
.no-padding{
    padding: 0;
}
.mb-10{ margin-bottom: 10px; }
.mb-15{ margin-bottom: 15px; }
.mb-20{ margin-bottom: 20px; }
.mb-25{ margin-bottom: 25px; }
.mb-30{ margin-bottom: 30px; }
.mb-35{ margin-bottom: 35px; }
.mb-40{ margin-bottom: 40px; }
.mb-45{ margin-bottom: 45px; }
.mb-50{ margin-bottom: 50px; }
.mt-20{ margin-top: 20px; }
.mt-30{ margin-top: 30px; }
.mt-40{ margin-top: 40px; }
.ml-5{ margin-left: 5px; }
.ml-10{ margin-left: 10px; }
.mr-5{ margin-right: 5px; }
.mr-10{ margin-right: 10px; }
.mt-15{ margin-left: 15px; }
.mt-15{ margin-left: 15px; }
.padding-15{ padding: 15px; }

.display-block{ display: block; }
.text-black{
    color: #282828;
}
.text-white{
    color: #ffffff;
}
.align-left{
    text-align: left;
}
.align-right{
    text-align: right;
}
.align-center{
    text-align: center;
}
.fl-right{
    float: right;
}
.fl-left{
    float: left;
}
.display-table{
    width: 100%;
    height: 100%;
    display: table;
}
.table-cell{
    display: table-cell;
    vertical-align: middle;
}
.overlay{
    width: 100%;
    position: relative;
    z-index: 1;
}
.overlay:before{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}
.bg-grey{
    background-color: #f2f2f2;
}
.bd-bottom{
    border-bottom: 1px solid #eaeaea;
}
.bg-dark{
    background-color: #232323;
}

/* Preloader Styles */
.loaded .site-preloader-wrap {
    opacity: 0;
    visibility: hidden;
}
.site-preloader-wrap {
    position: fixed;
    z-index: 999;
    height: 100%;
    width: 100%;
    background: #272c30;
    top: 0;left: 0
}

.site-preloader-wrap .spinner {
    background-color: #ffd83f;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -20px;
    margin-top: -20px;
}

.spinner {
  width: 40px;
  height: 40px;

  border-radius: 100%;
  -webkit-animation: sk-scaleout 1.0s infinite ease-in-out;
  animation: sk-scaleout 1.0s infinite ease-in-out;
}

@-webkit-keyframes sk-scaleout {
  0% { -webkit-transform: scale(0) }
  100% {
    -webkit-transform: scale(1.0);
    opacity: 0;
  }
}

@keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  } 100% {
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
    opacity: 0;
  }
}


/* line */

.line-a{
	width: 60%;
	padding-top: 1px;
	border-bottom: 1px solid black;
	
}

/* Button Style */
.btn_group{}
.btn_group a{
    margin: 5px;
}
.default-btn{
    font-family: "Poppins",sans-serif;
    letter-spacing: 2px;
    background: #2b18dd!important;
    background: -webkit-linear-gradient(-45deg, #253f8e 0%, #253f8e 50%, #253f8e 100%)!important;
    background: linear-gradient(-45deg, #253f8e 0%, #253f8e 50%, #253f8e 100%)!important;
    color: #fff;
    line-height: 45px;
    display: inline-block;
    padding: 0 25px;
    border-radius: 0;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 700;
    position: relative;
    z-index: 1;
    -webkit-transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -ms-transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.default-btn:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #f2f2f2;
    -webkit-transform-origin: right center;
    -moz-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
    -webkit-transform: scale(0, 1);
    -moz-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    -o-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition: -moz-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -ms-transition: -ms-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: -o-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}
.default-btn:hover{
    color: #555;
}
.default-btn:hover:before{
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
}

/*Btn White*/
.btn-white{
    background: transparent;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 30px;
    padding: 12px 30px;
    display: inline-block;
}
.btn-white:hover{
    background-color: #fff;
    color: #555;
}


/*Section Heading Style*/
.section-heading{
    position: relative;
}
.section-heading h4{
    font-family: "Poppins",sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    color: #999;
}
.section-heading h2{
    font-size: 30px;
    line-height: 36px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 10px;
    margin: 0;
}
.section-heading h2:before{
    position: absolute;
    background: linear-gradient(-45deg, #253f8e 0%, #253f8e 50%, #253f8e 100%);
    content: "";
    position: absolute;
    width: 50px;
    height: 3px;
    left: calc(50% - 30px);
    bottom: 0;
    border-radius: 30px;
}
/* Transition Effect */
a,a:hover, .overlay, img, .form-control,  .form-control:hover, button{
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

/* ==========================================================================
   2.0 Header Section
   ========================================================================== */
.header-section{
    position: absolute;
    box-shadow: 5px -5px 5px 10px rgba(0, 0, 0, .05);
    width: 100%;
    left: 0;
    top: 0;
    z-index: 100;
}
.header-section.navbar-fixed-top{
    position: fixed;
}
.header-section.navbar-fixed-top .top-header{
    display: none;
}
.header-height {
    width: 100%;
    height: 122px;
}
/*Top Header*/
.top-header{
    background-color: #253f8e;
    padding: 10px 0;
}
.top-content-wrap ul li{
    font-family: "Poppins",sans-serif;
    margin-right: 20px;
    display: inline-block;
    color: #bbb;
    font-size: 12px;
    font-weight: 400;
}
.top-content-wrap ul li a{
    font-family: "Poppins",sans-serif;
    display: inline-block;
    color: #bbb;
    font-size: 12px;
    font-weight: 400;
}
.top-content-wrap ul li:hover a,
.top-content-wrap ul li:hover i,
.top-content-wrap .right-info li:hover{
    text-decoration: underline;
   
}
.top-content-wrap ul li i{
    color: #bbb;
    margin-right: 5px;
}
.top-content-wrap .right-info{
    text-align: right;
}
.top-content-wrap .right-info i{
    margin-right: -5px;
    background-color: #fff;
    color: #56a2ff;
    height: 25px;
    width: 25px;
    line-height: 25px;
    text-align: center;
    display: block;
    font-size: 12px;
    border-radius: 2px;
}
.top-content-wrap .right-info li:last-child{
    margin-right: 0;
}
/*Bottom Header */
.bottom-header{
    background-color: #fff;
    position: relative;
}
.bottom-content-wrap{
    display: flex;
    align-items: center;
}
#mainmenu{
    display: inline-block;
    margin-right: 20px;
}
#mainmenu li{
    position: relative;
    padding-left: 20px;
    display: inline-block;
    text-align: left;
}
#mainmenu li a{
    font-family: 'Montserrat', sans-serif;
    color: #232323;
    font-weight: 500;
    padding: 30px 5px;
    text-transform: uppercase;
    display: inline-block;
    font-size: 13px;
    line-height: 18px;
    letter-spacing:0.3px;
}
#mainmenu li a:hover{
    color: #253f8e;
}
/*Dropdown */
#mainmenu li ul{
    background-color: #fff;
    width: 200px;
    height: auto;
    position: absolute;
    left: 0;
    top: 140%;
    visibility: hidden;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    z-index: 999;
}
#mainmenu li:hover > ul{
    visibility: visible;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    top: 100%;
}
#mainmenu li ul li{
    border-bottom: 1px solid #eaeaea;
    display: block;
    position: relative;
}
#mainmenu li ul li:last-child{
    border: none;
}
#mainmenu li ul li a{
    line-height: 45px;
    display: block;
    padding: 0 15px;
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    color: #777;
    -webkit-transition: color 0.3s ease 0s, padding 0.3s ease 0s;
    transition: color 0.3s ease 0s, padding 0.3s ease 0s;
}
#mainmenu li > ul > li:hover a{
    color: #56a2ff;
}
#mainmenu li > ul ul{
    background-color: #fff;
    left: 200px;
}
#mainmenu li > ul li:hover > ul li a{
    color: #777;
}
#mainmenu li ul li:hover > ul{
    top: 0;
    opacity: 1;
    visibility: visible;
}
#mainmenu li > ul li:hover > ul li > a:hover{
    background-color: transparent;
    color: #fff;
}
#mainmenu li ul li li a:hover{
    color: #ffca3f !important;
}

/*Mobile Menu */
.slicknav_menu {
    background: none;
    padding: 4px 0;
    display:none;
    z-index: 999;
}
.slicknav_nav {
    background-color: #fff;
}
.js .slicknav_menu {
    width: 100%;
    position: absolute;
    right: 0;
    top: 0;
}
.slicknav_btn{
    background-color: transparent;
    margin: 13px 5px 14px;
}
.slicknav_nav .slicknav_row:hover,
.slicknav_nav .slicknav_row,
.slicknav_nav a,
.slicknav_nav a:hover{
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
}
.slicknav_nav .slicknav_row,
.slicknav_nav a {
    padding: 10px 15px;
    margin: 0;
    color: #777;
}
.slicknav_nav a .caret{
    display: none;
}
.slicknav_nav ul{
    margin: 0;
}
.slicknav_nav ul li a{
    padding-left: 30px;
    font-size: 12px;
}
.slicknav_nav .slicknav_row:hover,
.slicknav_nav a:hover{
    background-color: transparent;
    color: #333;
}

/* ==========================================================================
   3.0 Slider Section
   ========================================================================== */
.slider-section{}
.slider-text {
    width: 100%;
    text-align: left;
}
.slider-text h1{
    color: #fff;
    margin-bottom: 20px;
    font-size: 70px;
    line-height: 90px;
    font-weight: 700;
}
.slider-text h5{
    font-family: "Poppins",sans-serif;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 15px;
    font-weight: 700;
    color: #ddd;
}
.nivo-caption a{
    display: inline-block!important;
    margin-right: 5px;
}
.slider-text p {
    color: #ddd;
    font-size: 20px;
    margin-bottom: 15px;
}
.slider-wrapper {
    position: relative;
}
.nivo-caption {
    height: 100%;
    opacity: 1;
    background: transparent;
    overflow: visible;
}

/* nivo directionNav css */
.nivo-directionNav a {
    font-size: 13px;
    background-color: rgba(255,255,255,0.1);
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    text-align: center;
    color: #fff!important;
    top: calc(50% - 20px);
    opacity: 0;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.nivo-directionNav a.nivo-prevNav {
    left: 25px;
}
.nivo-directionNav a.nivo-nextNav {
    right: 25px;
}
.slider-wrapper:hover .nivo-directionNav a.nivo-prevNav {
    left: 15px;
    opacity: 0.7;
}
.slider-wrapper:hover .nivo-directionNav a.nivo-nextNav {
    right: 15px;
    opacity: 0.7;
}
.nivo-directionNav a:hover{
    opacity: 1!important;
}

/* nivo controlNav css */
.nivo-controlNav {
    padding: 0;
    position: absolute;
    z-index: 12;
    bottom: 30px;
    width: 100%;
}
.nivo-controlNav a {
    background-color: transparent;
	width: 12px;
	height: 12px;
    background-color: rgba(0,0,0,0.5);
	border-radius: 50%;
	display: inline-block;
    font-size: 0;
    cursor: pointer;
    margin: 0 5px;
	transition: all 0.3s linear;
    line-height: 12px;
}
.nivo-controlNav a.active {
    background-color: #2caee2;
}

/*Slider Section 2*/
.slider-section{
    position: relative;
    z-index: 1;
}
.slider-section.section-2:before{
    background: linear-gradient(-46deg, #253f8e 0%, #253f8e 50%, #253f8e 100%);
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.8;
    z-index: -1;
}

/* ==========================================================================
   4.0 Hero Section
   ========================================================================== */
.hero-section{
    background-image: url(../img/slider-2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
    background-position: center center;
    position: relative;
    width: 100%;
    height: 530px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
.hero-section:before{
    background: linear-gradient(-46deg, #253f8e 0%, #253f8e 50%, #253f8e 100%);
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.8;
    z-index: -1;
}
.hero-content{}
.hero-content h1{
    color: #fff;
}
.hero-content h5{
    text-transform: uppercase;
}
.hero-content h5,
.hero-content p{
    color: #ddd;
}
.hero-content p{
    margin-bottom: 20px;
}
/* ==========================================================================
   5.0 Promo Section
   ========================================================================== */
.promo-section{}
.promo-section .section-heading h2{
    text-transform: capitalize;
}
.promo-wrap{}
.promo-box{
    position: relative;
    overflow: hidden;
}
.promo-box img{
    width: 100%;
}
.promo-box:hover .promo-details{
    bottom: 0;
    transition: all 0.3s ease-in-out;
}
.promo-details{
    position: absolute;
    width: 100%;
    height: auto;
    left: 0;
    bottom: -61%;
    display: block;
    background-color: #253f8e;
    transition: all 0.3s ease-in-out;
}
.promo-details h3{
    color: #fff;
    font-size: 18px;
    padding: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}
.promo-content{
    padding: 10px 20px 20px;
}
.promo-content p{
    color: #fff;
}
.read-more{
    font-family: "Poppins",sans-serif;
    text-transform: uppercase;
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 12px;
}
.read-more:hover{
    color: #fff;
    text-decoration: underline;
}
/*Promo Style 2*/
.promo-content-2{
    padding: 40px 25px;
    border: 1px solid #eee;
}
.promo-content-2 i{
    background: linear-gradient(-45deg, #253f8e 0%, #253f8e 50%, #253f8e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    font-size: 50px;
    margin-bottom: 20px;
}
/* ==========================================================================
   6.0 About Section
   ========================================================================== */
.about-section{
    position: relative;
    overflow: hidden;
}
.about-content{}
.about-content h4{
    text-transform: uppercase;
    font-weight: 600;
    color: #999;
    font-size: 12px;
}
.check-list{}
.check-list li{
    margin: 10px 0;
}
.check-list li i{
    background: linear-gradient(-45deg, #253f8e 0%, #253f8e 50%, #253f8e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    font-size: 15px;
    margin-right: 10px;
}
.about-wrap{ 
    position: relative;
    z-index: 1;
}
.about-bg{
    background-image: url(../img/about-bg.png);
    background-repeat: no-repeat;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 80px;
    bottom: 0;
    z-index: -1;
}
/*About Inner Page*/
.about-inner{}
.about-inner-wrap{
    display: flex;
    align-items: center;
}
.about-inner-content h3{
	font-size: 30px;
	font-weight: 500 !important;
	line-height:40px;
	
}
.about-inner-content p{
	line-height:26px;
}
.about-inner-content h2{

    font-size: 45px;
    padding: 0;
    margin-bottom: 2rem;
    font-family: inherit;
    font-weight: 500;
    line-height: 1.2;
    text-transform: uppercase;
}
.about-inner-bg{}
.about-inner-bg img{
    width: 100%;
    border-radius: 1px;
    box-shadow: 0 0 2px 0 ;
}
/* ==========================================================================
   7.0 Services Section
   ========================================================================== */
.service-section{}
.service-wrap{}
.service-wrap .col-md-4{
    padding: 15px;
}
.service-box{
    position: relative;
    margin-left: 10px;
    
}
.service-box i{
    background: linear-gradient(-45deg, #253f8e 0%, #253f8e 50%, #253f8e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    
}
.service-box .icon{
    font-size: 40px;
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: left;
    left: 0;
    top: 5px;
}
.service-content{
    padding-left: 70px;
}
.service-content h3{
    font-size: 18px;
    
}
/* ==========================================================================
   8.0 Counter Section
   ========================================================================== */
.counter-section{
	
	background-image: url(../img/counter-bg.jpg);
	background-repeat: no-repeat;
	background-attachment: scroll;
	background-position: center center;
	-webkit-background-size: cover;
	background-size: cover;
    padding: 100px 0;
    position: relative;
    z-index: 1;
}
.counters{}
.counters .counter-content{
	display: block;
	color: #fff;
    padding-left: 50px;
}
.counters .counter-content i{
	background: linear-gradient(-45deg, #253f8e 0%, #253f8e 50%, #253f8e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    font-size: 45px;
}
.counters .counter-content span{
    display: block;
    color: #fff;
    font-size: 40px;
}
.counters .counter-content h3{
	font-size: 40px;
	margin: 5px 0 0;
	color: #fff;
    font-weight: 700;
    display: block;
}
.counters .counter-content h4{
    color: #999;
    text-transform: uppercase;
    font-size: 12px;
}

/* ==========================================================================
   9.0 Team Section
   ========================================================================== */
.team-section{}
.team-wrap{
    padding: 0 0;
}
.team-wrap .col-md-6{
    padding: 5px;
}
.team-wrapper{
    display: flex;
    align-items: center;
}
.team-details img{
    width: 100%;
}
.team-details h3{
    color: #fff;
    text-transform: uppercase;
}
.team-details .hover h3 span{
    display: block;
    font-family: "Roboto", sans-serif;
    text-transform: uppercase;
    font-size: 10px;
    color: #fff;
}
.team-details{
    overflow: hidden;
    position: relative;
    box-shadow: 0px 0px 2px 0px rgba(34,34,34,0.09);
}
.team-details .hover{
    background: black; /* For browsers that do not support gradients */
    background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,4));
    text-align: center;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 70px 0 15px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s linear;
}
.team-details:hover .hover{
    visibility: visible;
    opacity: 1;
}
.team-details:hover img{
    transform: scale(1.1);
}
/* ==========================================================================
   10.0 Project Section
   ========================================================================== */
.project-section{}
.project-item{
    background-color: #fff;
    box-shadow: 0px 0px 5px 0px rgba(34,34,34,0.09);
}
.project-content{
    padding: 20px;
    border: 1px solid #ddd;
}
.project-content h3{
    margin-bottom: 0;
}
.project-content h3 a{
    color: #333;
    margin-bottom: 0;
}
.project-content h3 a:hover{
    color: #56a2ff;
}
.project-content .date{
    text-transform: uppercase;
}
.project-content .project-btn{
    background-color: #253f8e;
    padding: 5px 15px;
    color: #fff;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
}
.project-content .project-btn:hover{
    opacity: 0.8;
}

/*Owl Navigation*/
.owl-nav{}
.owl-nav div{
    color: #999;
    font-size: 20px;
    position: absolute;
    left: -40px;
    top: calc(50% - 25px);
    transition: all 0.5s ease-in-out;
}
.owl-nav div:hover{
    opacity: 1;
    transition: all 0.5s ease-in-out;
}
.owl-nav div.owl-next{
    left: auto;
    right: -40px;
}

/* ==========================================================================
   11.0 Request Section
   ========================================================================== */
.request-section{
    position: relative;
    overflow: hidden;
}
.request-wrap{}
.request-wrap{}
.request-heading h2{
    text-transform: uppercase;
}
.request-bg{
    background-image: url(../img/contct7.jpg);
    background-repeat: no-repeat;
    background-position: top right;
    background-size: cover;
    position: absolute;
    width: 50%;
    height: 100%;
    right: 0;
    top: 0;
}
.request-form{
   
}
.request-form .form-group{
    margin-bottom: 10px;
}
.request-form .form-control{
    border: 1px solid #ddd;
    border-radius: 2px;
    height: 45px;
    font-size: 0.8rem;
    color: lightgray;
}
.request-form .form-control:focus{
    border: 1px solid #56a2ff;
    outline: none;
    box-shadow: none;
}
.request-form .form-group textarea{
    height: 100px;
}
/* ==========================================================================
   12.0 Pricing Section
   ========================================================================== */
.pricing-section{}
.pricing-box{
    background-color: #fff;
    border-radius: 5px;
    transition: all 0.2s ease-in-out;
}
.pricing-box:hover{
    box-shadow: 0px 0px 15px 5px rgba(34,34,34,0.09);
    transition: all 0.2s ease-in-out;
}
.pricing-box.center .pricing-head h2{
    color: #56a2ff;
}
.pricing-head{
    padding: 50px 20px 30px;
}
.pricing-head .icon{
    font-size: 50px;
    display: block;
    margin-bottom: 15px;
}
.pricing-head i{
    background: linear-gradient(-45deg, #253f8e 0%, #253f8e 50%, #253f8e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}
.pricing-head span{
    text-transform: uppercase;
    font-weight: 600;
    color: #999;
    margin-bottom: 10px;
    display: block;
}
.pricing-head h2{
    font-size: 50px;
}
.pricing-list{}
.pricing-footer{
    padding: 30px 0 50px;
}
/* ==========================================================================
   13.0 Testimonial Section
   ========================================================================== */
.testimonial-section{}
.testimonial-item{
    background-color: #fff;
    padding: 30px;
    border-radius: 5px;
    margin-bottom: 20px;

}
.testimonial-item img{
    max-width: 80px;
    height: 80px;
    text-align: center;
    border-radius: 50%;
    margin: 0 auto;
    margin-bottom: 20px;
}
.testimonial-item h4{}
.testimonial-item h4 span{
    display: block;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 400;
}
.rattings{
    display: inline-block;
}
.rattings li{
    display: inline-block;
    color: #fab702;
}
.testimonial-carousel.owl-carousel .owl-stage{
    padding: 20px 0;
}
.testimonial-carousel .owl-item.center{
    box-shadow: 0px 0px 15px 5px rgba(34,34,34,0.09);
}
/*Owl Carousel Dots*/
.testimonial-carousel .owl-dots{
    display: block;
    text-align: center;
}
.testimonial-carousel .owl-dots .owl-dot{
    background-color: #ddd;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    margin: 0 3px;
    transition: all 0.5s ease-in-out;
}
.testimonial-carousel .owl-dots .owl-dot.active{
    background-color: #253f8e;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    transition: all 0.5s ease-in-out;
}
/* ==========================================================================
   14.0 CTA Section
   ========================================================================== */
.cta-section{
    background-image: url(../img/cta-bg.jpg);
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 120px 0;
}
.cta-content{}
.cta-content h2{
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 36px;
    line-height: 40px;
    text-transform: uppercase;
}
.cta-content p{
    color: #ddd;
    margin-bottom: 20px;
}
/* ==========================================================================
   15.0 Sponsor Section
   ========================================================================== */
.sponsor-section{
    padding: 20px 0;
}
.sponsor-section .sponsor-item img{
    width: 100%;
    padding: 20px;
    opacity: 0.8;
}
.sponsor-section .sponsor-items li img:hover{
    opacity: 1;
}

/* ==========================================================================
   16.0 Widget Section
   ========================================================================== */
.widget-section{
    background-color: #151515;
    padding: 40px 0;
    width: 100%;
    height: 100%;
}
.widget-content{}
.widget-content img{
    margin-bottom: 15px;
}
.widget-content p{
    color: #999;
}
.widget-content h3{
    color: #ddd;
    margin-bottom: 15px;
    text-transform: uppercase;
}
.widget-content .social-icon li{
    display: inline-block;
    margin-right: 5px;
}
.widget-content .widget-link li p{
	 color: #777;
    margin-bottom: 5px;
    display: block;
    font-family: "Poppins",sans-serif;
    font-size: 14px;
    font-weight: 400;
}
.widget-content .social-icon li a{
    display: inline-block;
    background-color: transparent;
    color: #ddd;
    width: 30px;
    height: 30px;
    line-height: 26px;
    text-align: center;
    font-size: 16px;
   
}
.widget-content .social-icon li a:hover{
    color: #253f8e;
}
.widget-content .widget-link li{
    display: block;
    list-style: inside;
}
.widget-content .widget-link li a{
    color: #777;
    margin-bottom: 5px;
    display: block;
    font-family: "Poppins",sans-serif;
    font-size: 14px;
}
.widget-content .widget-link li a:hover{
    color: #253f8e;
    text-decoration: underline;
}
.subscribe-form{
    position: relative;
}
.subscribe-form .form-input{
    background-color: #222;
    border: none;
    width: 100%;
    height: 45px;
    padding: 15px;
    padding-right: 50px;
    display: inline-block;
    border-radius: 3px;
    position: relative;
    color: #fff;
}
.subscribe-form .form-input:focus,
.subscribe-form .form-input:hover{
    outline: none;
}
.subscribe-form .submit {
    display: block;
    text-align: center;
    position: absolute;
    width: 50px;
    height: 100%;
    right: 0;
    top: 0;
    color: #56a2ff;
}
.subscribe-form .submit:focus,
.subscribe-form .submit:hover{
    outline: none;
    color: #ddd;
    cursor: pointer;
}

/* ==========================================================================
   17.0 Page Header Section
   ========================================================================== */
.pager-header{
    background-image: url(../img/cta-bg.jpg);
	background-repeat: no-repeat;
	background-attachment: scroll;
	background-position: center center;
	-webkit-background-size: cover;
	background-size: cover;
    min-height: 250px;
    display: flex;
    align-items: center;
    text-align: center;
}
.pager-header h2{
    color: #fff;
    text-transform: uppercase;
}
.pager-header p{
    color: #ddd;
}

/*Breadcrumb */
.breadcrumb{
    background-color: transparent;
    padding: 0;
    margin: 0;
}
.breadcrumb li{}
.breadcrumb li a{
    font-weight: 700;
    color: #ddd;
    font-family: "Poppins",sans-serif;
    text-transform: uppercase;
    font-size: 12px;
}

.breadcrumb li a:hover{
    text-decoration: underline;
}
.breadcrumb .active{
    color: #253f8e;
    font-weight: 700;
    font-family: "Poppins",sans-serif;
    text-transform: uppercase;
    font-size: 12px;
}

/*404 Error Section*/
.error-section{
    padding: 150px 0;
}
.error-content h2{
    font-size: 40px;
}
/* ==========================================================================
   18.0 Gallery Section
   ========================================================================== */
.gallery-items .col-lg-4{
    padding: 15px;
}
.gallery-filter{
    width: 100%;
}
.gallery-filter li{
    margin-right: 10px;
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    background-color: #f7f7f7;
    padding: 10px 20px;
    border-radius: 2px;
    cursor: pointer;
}
.gallery-filter li.active{
    background-color: #253f8e;
    color: #fff;
}
.gallery-wrap{
    position: relative;
    overflow: hidden;
}
.gallery-wrap img{
    width: 100%;
}
.gallery-wrap .hover{
    background-color: rgba(0, 0, 0, 0.8);
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: center;
    left: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.9);
    transition: all 0.3s ease-in-out;
}
.gallery-wrap .hover a{
    background-color: #253f8e;
    color: #fff;
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    display: inline-block;
    border-radius: 50%;
}
.gallery-wrap:hover .hover{
    visibility: visible;
    opacity: 1;
    transform: scale(1);
    transition: all 0.3s ease-in-out;
}
/* ==========================================================================
   19.0 Blog Section
   
   .blog-post img:hover{
    box-shadow: 0px 16px 28px 0px rgba(0, 0, 0, 0.20);
    }
   ========================================================================== */
.blog-section{}
.blog-items{
    
}
.blog-items .blog-post{
	
	box-shadow: 0 0 1px 0 rgba(0,0,0,0.25);
  }
 
.blog .blog-items{
    margin-top: -15px;
}
.left-sidebar .blog-items{
    border-right: none;
    padding-right: 0;
    padding-left: 10px;
}
.blog-post{}
.blog-post img{
    width: 100%;
    margin-bottom: 10px;
}

.blog-post .blog-content h3{
    font-weight: 700;
    font-size: 18px;
 
}
.blog-post .blog-content a{
    color: #333;
 
}
.blog-post .blog-content a:hover{
    opacity: 0.8;
}
span.date{
    font-family: "Poppins",sans-serif;
    color: #999;
    font-weight: 700;
    font-size: 10px;
    display: block;
    margin-bottom: 5px;
}
.blog-post .blog-content .post-meta{
    text-transform: uppercase;
    font-weight: 700;
    font-size: 12px;
    color: #333;
    letter-spacing: -0.2px
}

.blog-post .blog-content .post-meta:hover{
    opacity: 0.8;
    
}

/*Blog List*/
.list-items .blog-post{
    border: 1px solid #eee;
    margin: 0;
    margin-bottom: 25px;
}
.list-items .blog-post img{
    margin-bottom: 0;
}
.list-items .blog-post .col-md-6:first-child{
    padding-left: 0;
}
.list-items .blog-post .blog-content{
    padding: 34px 0;
}

/*Classic List*/
.grid-list,
.list-classic{
    border: none;
}
.list-classic img{
    position: relative;
}
.list-classic .cat{
    position: absolute;
    left: 25px;
    top: 10px;
    font-family: "Poppins",sans-serif;
    font-weight: 700;
    color: #fff;
    font-size: 12px;
    background-color: rgba(244, 66, 89, 0.8);
    box-shadow: 0px 16px 28px 0px rgba(0, 0, 0, 0.20);
    border-radius: 3px;
    padding: 5px 10px;
}

/*Single Post Style*/
.single-post{}
.single-post img{
    width: 100%;
    height: 100%;
    border-radius: 5px;
    margin-bottom: 20px;
}
.single-post h2{
    font-weight: 800;
}
.single-post .meta-info{
    margin-bottom: 25px;
}
.single-post .meta-info span{
    font-family: "Poppins",sans-serif;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    font-size: 12px;
    margin-right: 15px;
}
.single-post .meta-info a{
    font-weight: 800;
    color: #777;
}
.single-post .meta-info i{
    color: #777;
}

/*Social Share*/
.share-wrap{
    margin-top: 25px;
    margin-bottom: 50px;
    width: 100%;
}
.share-wrap h4{
    text-transform: uppercase;
    font-weight: 800;
    font-size: 14px;
}
.share-icon{
    display: inline-block;
}
.share-icon li{
    display: inline-block;
    margin-right: 10px;
}
.share-icon i{
    margin-right: 5px;
}
.share-icon li:nth-child(1) a{ background-color: #3B5998; }
.share-icon li:nth-child(2) a{ background-color: #1DCAFF; }
.share-icon li:nth-child(3) a{ background-color: #25D366; }
.share-icon li:nth-child(4) a{ background-color: #e4405f; }
.share-icon li:nth-child(5) a{ background-color: #0077B5; }
.share-icon li a{
    display: inline-block;
    font-size: 13px;
    color: #fff;
    padding: 5px 10px;
    border-radius: 3px;
    font-weight: 600;
}
.share-icon li a:hover{
    box-shadow: 0px 16px 28px 0px rgba(0, 0, 0, 0.20);
}

/*Comments Style*/
.comments-wrapper{
    width: 100%;
}
.comments-wrapper h4{
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 800;
}

.comments-list {
	margin-top: 30px;
	position: relative;
    margin-bottom: 50px;

}

/*Lines Details*/
.comments-list:before {
	content: '';
	width: 2px;
	height: 100%;
	background: #eee;
	position: absolute;
	left: 32px;
	top: 0;
}

.comments-list:after {
	content: '';
	position: absolute;
	background: #eee;
	bottom: 0;
	left: 29px;
	width: 7px;
	height: 7px;
	border: 3px solid #dee1e3;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}

.reply-list:before, .reply-list:after {display: none;}
.reply-list li:before {
	content: '';
	width: 60px;
	height: 2px;
	background: #eee;
	position: absolute;
	top: 25px;
	left: -55px;
}


.comments-list li {
	margin-bottom: 15px;
	display: block;
	position: relative;
}

.comments-list li:after {
	content: '';
	display: block;
	clear: both;
	height: 0;
	width: 0;
}

.reply-list {
	padding-left: 88px;
	clear: both;
	margin-top: 15px;
}
/*Avatar*/
.comments-list .comment-avatar {
	width: 65px;
	height: 65px;
	position: relative;
	z-index: 99;
	float: left;
	border: 3px solid #FFF;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	-webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.2);
	-moz-box-shadow: 0 1px 2px rgba(0,0,0,0.2);
	box-shadow: 0 1px 2px rgba(0,0,0,0.2);
	overflow: hidden;
    margin-right: 10px;
}

.comments-list .comment-avatar img {
	width: 100%;
	height: 100%;
}

.reply-list .comment-avatar {
	width: 50px;
	height: 50px;
}

.comment-main-level:after {
	content: '';
	width: 0;
	height: 0;
	display: block;
	clear: both;
}

/*Comment List*/
.comments-list .comment-box {
	width: 740px;
	float: right;
	position: relative;
	-webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.15);
	-moz-box-shadow: 0 1px 1px rgba(0,0,0,0.15);
	box-shadow: 0 1px 1px rgba(0,0,0,0.15);
}

.comments-list .comment-box:before, .comments-list .comment-box:after {
	content: '';
	height: 0;
	width: 0;
	position: absolute;
	display: block;
	border-width: 10px 12px 10px 0;
	border-style: solid;
	border-color: transparent #FCFCFC;
	top: 8px;
	left: -11px;
}

.comments-list .comment-box:before {
	border-width: 11px 13px 11px 0;
	border-color: transparent rgba(0,0,0,0.05);
	left: -12px;
}

.reply-list .comment-box {
	width: 665px;
}
.comment-box .comment-head {
	background: #FCFCFC;
	padding: 10px 12px;
	border-bottom: 1px solid #E5E5E5;
	overflow: hidden;
	-webkit-border-radius: 4px 4px 0 0;
	-moz-border-radius: 4px 4px 0 0;
	border-radius: 4px 4px 0 0;
}

.comment-box .comment-head i {
	float: right;
	margin-left: 14px;
	position: relative;
	top: 2px;
	color: #A6A6A6;
	cursor: pointer;
	-webkit-transition: color 0.3s ease;
	-o-transition: color 0.3s ease;
	transition: color 0.3s ease;
}

.comment-box .comment-head i:hover {
	color: #03658c;
}

.comment-box .comment-name {
	color: #283035;
	font-size: 14px;
	font-weight: 700;
	float: left;
	margin-right: 10px;
}

.comment-box .comment-name a {
	color: #283035;
}

.comment-box .comment-head span {
	float: left;
	color: #999;
	font-size: 13px;
	position: relative;
	top: 1px;
}

.comment-box .comment-content {
	background: #FFF;
	padding: 12px;
	font-size: 15px;
	color: #595959;
	-webkit-border-radius: 0 0 4px 4px;
	-moz-border-radius: 0 0 4px 4px;
	border-radius: 0 0 4px 4px;
}

.comment-box .comment-name.by-author, .comment-box .comment-name.by-author a {color: #03658c;}
.comment-box .comment-name.by-author:after {
	content: 'autor';
	background: #03658c;
	color: #FFF;
	font-size: 12px;
	padding: 3px 5px;
	font-weight: 700;
	margin-left: 10px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
/*Comment Form*/
.comment-form h4{
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 800;
}
.comment-form .form-control{
    border: 1px solid #ddd;
    border-radius: 0;
    height: 45px;
    background-color: transparent;
}
.comment-form .form-control.message{
    height: 150px;
}
#form-messages{
    display: none;
}
#form-messages.alert-danger,
#form-messages.alert-success{
    display: block;
}

/* ==========================================================================
   20.0 Sidebar Section
   ========================================================================== */
.sidebar-wrap{
   
}
.left-sidebar .sidebar-wrap{
    padding-right: 10px;
    padding-left: 0;
}
.sidebar-widget h4{
    text-transform: uppercase;
    font-weight: 800;
    font-size: 14px;
    color: #555;
    margin-bottom: 25px;
}
.search-form{
    position: relative;
    margin-left: -2px;
}
.search-form .form-control{
    background-color: transparent;
    box-shadow: none;
    width: 100%;
    display: block;
    border: 1px solid #ddd;
    clear: #444;
    height: auto;
    padding: 10px 20px;
    border-radius: 3px;
    padding-right: 60px;
}
.search-form .search-btn{
    background-color: transparent;
    font-size: 24px;
    color: #888;
    width: 60px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    padding: 10px 0;
    opacity: 0.6;
}
.search-form .search-btn:focus,
.search-form .search-btn:hover{
    opacity: 1;
}
.search-form input::-webkit-input-placeholder{
    color: #888 !important;
}
.search-form input:-moz-placeholder{ /* Firefox 18- */
    color: #888 !important;
}
.search-form input::-moz-placeholder{  /* Firefox 19+ */
    color: #888 !important;
}
.search-form input:-ms-input-placeholder{
    color: #888 !important;
}

/*Category List*/
.cat-list{
    margin-top: -10px;
}
.cat-list li a{
    font-weight: 700;
    font-size: 12px;
    color: #444;
    letter-spacing: -.4px;
    line-height: 3;
    font-style: normal;
}
.cat-list li span{
    font-family: "Poppins",sans-serif;
    font-weight: 700;
    color: #bbb;
    margin-left: 5px;
    font-size: 10px;
}

/*Recent Posts*/
.recent-posts{}
.recent-posts li{
    position: relative;
    padding-left: 90px;
    display: flex;
    align-items: center;
    min-height: 50px;
    margin-bottom: 15px;
}
.recent-posts li a{
    color: #555;
}
.recent-posts li a:hover{
    opacity: 0.8;
}
.recent-posts li img{
    position: absolute;
    left: 0;
    top: 0;
    width: 80px;
}
.recent-posts li img:hover{
    box-shadow: 0px 16px 28px 0px rgba(0, 0, 0, 0.20);
}
.recent-posts li h4{
    text-transform: inherit;
    margin-bottom: 0;
    display: block;
}

/*Tags*/
.tags{
    margin: -3px 0;
}
.tags li{
    display: inline-block;
    float: left;
    margin: 3px;
}
.tags li a{
    display: inline-block;
    font-weight: 700;
    font-size: 10px;
    color: #777;
    background-color: #ddd;
    padding: 5px 15px;
    border-radius: 3px;
}
.tags li a:hover{
    box-shadow: 0px 16px 28px 0px rgba(0, 0, 0, 0.20);
}

/* Pagination
=============== */
.pagination_wrap{}
.pagination_wrap li{
    display: inline-block;
    margin: 0 5px;
}
.pagination_wrap li a{
    border: 1px solid #ddd;
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 38px;
    text-align: center;
    color: #777;
    font-weight: 600;
}
.pagination_wrap li a:hover{
    opacity: 1;
    text-decoration: none;
    box-shadow: 0px 16px 28px 0px rgba(0, 0, 0, 0.20);
}
.pagination_wrap li a.active{
    background-color: #253f8e;
    border: 1px solid #56a2ff;
    color: #fff;
}

/* ==========================================================================
   21.0 Contact Section
   ========================================================================== */
.contact-section{
    position: relative;
    z-index: 1;
}
.contact-wrap{
    background-color: #ffffff;
    padding: 80px 50px;
    box-shadow: 0px 16px 28px 0px rgba(0, 0, 0, 0.15);
    margin-top: 110px;
    border-radius: 5px;
    width: 60%;
}
.contact-section h3{
    font-weight: 800;
    text-transform: uppercase;
    font-size: 18px;
}
.contact-info ul li{
    line-height: 40px;
    display: flex;
    align-items: center;
    display: block;
	
}
.contact-info ul li a{
	color:#777;
}
.contact-info ul li i{
    margin-right: 10px;
    color: #999;
    font-size: 20px;
}
.contact-info ul li{
    font-family: "Poppins",sans-serif;
    font-weight: 400;
    font-size: 12px;
}
.contact-info ul li p{
	line-height: 20px;
    display: flex;
    font-family: "Poppins",sans-serif;
    font-weight: 400;
    font-size: 12px;
}

/*Contact Form*/
.contact-form .form-control{
    border: 1px solid #ddd;
    border-radius: 0;
    height: 45px;
    background-color: transparent;
    font-size: 0.8rem;
}
.contact-form .form-control.message{
    height: 150px;
}
#form-messages{
    display: none;
}
#form-messages.alert-danger,
#form-messages.alert-success{
    display: block;
}
/*Google Map*/
#google_map{
    width: 60%;
    height:90%;
    position: absolute;
    right: 0;
    bottom:30px;
    z-index: -1;
    -webkit-filter: grayscale(100%)
}

/* ==========================================================================
   22.0 Footer Section
   ========================================================================== */
.footer-section{
    display: block;
    background-color: #151515 ;
    border-top: 1px solid #222;
    padding: 10px 0;
}
.footer-section .copyright{
    font-size: 12px;
    color: #777;
    text-transform: uppercase;
}
.footer-social{
    display: block;
    text-align: right;
}
.footer-social li{
    display: inline-block;
}
.footer-social li a{
    color: #ddd;
    font-size: 12px;
    text-transform: uppercase;
    margin-left: 20px;
}
.footer-social li a:hover{
    color: #56a2ff;
}

/* ==========================================================================
   23.0 Scroll To Top
   ========================================================================== */
#scroll-to-top{
    background-color: #253f8e;
    display: none;
    width: 45px;
    height: 45px;
    text-align: center;
    font-size: 14px;
    line-height: 45px;
    border-radius: 50%;
    color: #fff;
    position: fixed;
    bottom: 50px;
    right: 50px;
    z-index: 999;
}
#scroll-to-top:hover{
    opacity: 0.8;
    color: #fff;
}


.subscribe-formz{
    position: relative;
}
.subscribe-formz .form-input{
    background-color: #222;
    border: none;
    width: 100%;
    height: 45px;
    padding: 15px;
    padding-right: 50px;
    display: inline-block;
    border-radius: 3px;
    position: relative;
    color: #fff;
}
.subscribe-formz .form-input:focus,
.subscribe-formz .form-input:hover{
    outline: none;
}
.subscribe-formz .submit {
    display: block;
    text-align: center;
    position: absolute;
    width: 50px;
    height: 100%;
    right: 0;
    top: 0;
    color: #253f8e;
}
.subscribe-formz .submit:focus,
.subscribe-formz .submit:hover{
    outline: none;
    color: #ddd;
    cursor: pointer;
}



 .sidebar-wrap .dropdown {
   position: relative;
   font-size: 14px;

   color: #333;
   
  
}
 .sidebar-wrap .dropdown .dropdown-list {
   padding: 16px;
   background: #f2f2f2;
   position: absolute;
   top: 40px;
   left: 2px;
   right: 2px;
   box-shadow: 0 1px 2px 1px rgba(0, 0, 0, .15);
   transform-origin: 50% 0;
   transform: scale(1, 0);
   transition: transform 0.15s ease-in-out 0.15s;
   max-height: 66vh;
   overflow-y: scroll;
}
 .sidebar-wrap .dropdown .dropdown-option {
   display: block;
   padding: 8px 12px;
   opacity: 0;
   transition: opacity 0.15s ease-in-out;
}
 .sidebar-wrap .dropdown .dropdown-label {
 
   cursor: pointer;
    background-color: transparent;
    box-shadow: none;
    width: 100%;
    display: block;
    border: 1px solid #ddd;
    clear: #444;
    height: auto;
    padding: 10px 20px;
    border-radius: 3px;
    padding-right: 60px;
   

}
.sidebar-wrap  .dropdown .dropdown-label:before {
   content: '▼';
   float: right;
}
 .sidebar-wrap .dropdown.on .dropdown-list {
   transform: scale(1, 1);
   transition-delay: 0s;
   z-index: 999;
}
 .sidebar-wrap .dropdown.on .dropdown-list .dropdown-option {
   opacity: 1;
   transition-delay: 0.2s;
}
 .sidebar-wrap .dropdown.on .dropdown-label:before {
   content: '▲';
}
 .sidebar-wrap .dropdown [type="checkbox"] {
   position: relative;
   top: -1px;
   margin-right: 4px;
   padding: 3px;
}







.cards-list {
  z-index: 0;
  width: auto;
  display: flex;
  justify-content: space-around;
  margin: 50px auto;
}
.cardd {
  margin:auto;
 
 
  transition: 0.4s;
}
@media all and (max-width: 500px) {
  .card-list {
    /* On small screens, we are no longer using row direction but column */
    flex-direction: column;
  }
}
.detail-top{
padding: 30px 0; 
border-bottom: 1px solid gray;
}
.detail-bottom{
padding: 40px 0; 
}


 .detail-top h5{
 color:gray;

 line-height: 30px;
 text-transform: uppercase;
 font-size:22px ;
}
.detail-bottom h3{
	font-size: 16px;
 color:gray;
 text-transform: uppercase;
}
.detail-top p{
  margin-top: 20px;
 color: darkgray;
 line-height: 25px;
 font-size: 14px;
}
.detail-bottom a{
 color: darkgray;
 text-decoration: none;
 line-height: 20px;
 font-size: 16px;
 text-transform: lowercase;
  cursor: pointer;
}
.detail-bottom .btn{
  margin-top: 20px;
text-transform: uppercase;
background-color:#253f8e;
}
.detail-bottom .btn:hover{
 text-decoration: none;
 color: white;
}




@media only screen and (max-width: 767px) {
  .product-details-area.pb-95 {
    padding-bottom: 38px; }
  .product-details-area.pb-70 {
    padding-bottom: 38px; } }
    /*-------- 15. Product details style ---------*/
.product-details-img {
  position: relative; }
  .product-details-img .zoompro-span {
    position: relative; }
    .product-details-img .zoompro-span .zoompro {
      width: 100%; }
    .product-details-img .zoompro-span > span {
      background-color: #ff3535;
      color: #fff;
      left: 20px;
      line-height: 1;
      padding: 4px 11px 5px;
      position: absolute;
      top: 20px;
      z-index: 99;
      font-weight: 700;
      font-size: 14px;
      text-transform: uppercase;
      font-family: "Roboto", sans-serif; }
    .product-details-img .zoompro-span .product-video {
      text-align: center;
      position: absolute;
      bottom: 20px;
      left: 20px;
      z-index: 99; }
      .product-details-img .zoompro-span .product-video a {
        background-color: #ff3535;
        color: #fff;
        display: inline-block;
        padding: 7px 20px 8px;
        font-weight: 500;
        font-size: 14px; }
        @media only screen and (max-width: 767px) {
          .product-details-img .zoompro-span .product-video a {
            padding: 5px 12px 6px;
            font-size: 13px; } }
        .product-details-img .zoompro-span .product-video a:hover {
          background-color: #1f2226; }
        .product-details-img .zoompro-span .product-video a i {
          position: relative;
          top: 1px; }
  .product-details-img .product-dec-slider {
    padding: 0 50px 0 70px; }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .product-details-img .product-dec-slider {
        padding: 0 0px 0 15px; } }
    @media only screen and (max-width: 767px) {
      .product-details-img .product-dec-slider {
        padding: 0 30px 0 45px;
        margin-bottom: 20px; } }
    .product-details-img .product-dec-slider .product-dec-icon {
      color: #1f2226;
      display: inline-block;
      font-size: 13px;
      left: 30px;
      opacity: 1;
      position: absolute;
      top: 50%;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%);
      cursor: pointer;
      z-index: 99;
      width: 30px;
      height: 30px;
      line-height: 30px;
      border-radius: 100%;
      border: 1px solid #e1e2e2;
      text-align: center; }
      @media only screen and (min-width: 768px) and (max-width: 991px) {
        .product-details-img .product-dec-slider .product-dec-icon {
          left: 0px; } }
      @media only screen and (max-width: 767px) {
        .product-details-img .product-dec-slider .product-dec-icon {
          left: 0px; } }
      .product-details-img .product-dec-slider .product-dec-icon:hover {
        background-color: #ff3535;
        border: 1px solid #ff3535;
        color: #ffffff; }
      .product-details-img .product-dec-slider .product-dec-icon.product-dec-next {
        left: auto;
        right: 30px; }
        @media only screen and (min-width: 768px) and (max-width: 991px) {
          .product-details-img .product-dec-slider .product-dec-icon.product-dec-next {
            right: 0px; } }
        @media only screen and (max-width: 767px) {
          .product-details-img .product-dec-slider .product-dec-icon.product-dec-next {
            right: 0px; } }
  .product-details-img .product-dec-slider-2 {
    display: inline-block;
    padding: 0;
    width: 20%;
    margin: 12px 0 0px;
    float: left; }
    @media only screen and (max-width: 767px) {
      .product-details-img .product-dec-slider-2 {
        width: 30%; } }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .product-details-img .product-dec-slider-2 {
        width: 20%; } }
    .product-details-img .product-dec-slider-2 .slick-slide {
      margin-bottom: 3px;
      margin-top: 3px; }
      @media only screen and (min-width: 992px) and (max-width: 1199px) {
        .product-details-img .product-dec-slider-2 .slick-slide {
          margin-bottom: 5px; } }
      @media only screen and (min-width: 768px) and (max-width: 991px) {
        .product-details-img .product-dec-slider-2 .slick-slide {
          margin-bottom: 10px; } }
      .product-details-img .product-dec-slider-2 .slick-slide img {
        width: 100%; }
    .product-details-img .product-dec-slider-2 .product-dec-icon {
      cursor: pointer;
      display: inline-block;
      left: 50%;
      position: absolute;
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      transform: translateX(-50%);
      z-index: 99;
      width: 30px;
      height: 30px;
      line-height: 30px;
      border-radius: 100%;
      border: 1px solid #e1e2e2;
      text-align: center;
      font-size: 13px;
      color: #1f2226; }
      .product-details-img .product-dec-slider-2 .product-dec-icon:hover {
        background-color: #ff3535;
        border: 1px solid #ff3535;
        color: #ffffff; }
      .product-details-img .product-dec-slider-2 .product-dec-icon.product-dec-prev {
        top: -13px; }
      .product-details-img .product-dec-slider-2 .product-dec-icon.product-dec-next {
        bottom: -7px; }
  .product-details-img .product-zoom-right {
    display: inline-block;
    position: relative;
    width: 80%;
    float: left; }
    @media only screen and (max-width: 767px) {
      .product-details-img .product-zoom-right {
        width: 70%; } }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .product-details-img .product-zoom-right {
        width: 80%; } }


        #summary {
  font-size: 14px;
  line-height: 1.5;
}

#summary p.collapse:not(.show) {
    height: 42px !important;
    overflow: hidden;
  
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;  
}

#summary p.collapsing {
    min-height: 42px !important;
}

#summary a.collapsed:after  {
    content: '+ Read More';
}

#summary a:not(.collapsed):after {
    content: '- Read Less';
}


article.card {
   width: auto;
   height: 350px;
   border-radius: 1px;
   text-align: center;
   overflow: hidden;
}
 article.card .thumb {
   width: auto;
   height:80%;
   justify-content: center;
}
article.card .thumb img{
   width: auto;
   height: 100%; 
}
 article.card .infos {
    position: absolute;
    width: auto;
    height: 350px;
    top: 260px;
    padding: 14px 24px;
    background: #fff;
    transition: 0.4s 0.15s cubic-bezier(0.17, 0.67, 0.5, 1.03);
}
 article.card .infos .title {
   position: relative;
   margin: 10px 0;
   color: #152536;
   font-family: 'Open Sans', sans-serif;
   font-size: 1rem;
   text-transform: uppercase;
   text-shadow: 0 0 0px #32577f;
}

 article.card .infos .date, article.card .infos .seats {
   margin-bottom: 10px;
   text-transform: uppercase;
   font-size: 0.85rem;
   color: rgba(21, 37, 54, .7);
   font-family: 'Open Sans', sans-serif;
}
 article.card .infos .seats {
   display: inline-block;
   margin-bottom: 24px;
   padding-bottom: 24px;
   border-bottom: 1px solid rgba(0, 0, 0, .2);
   opacity: 0;
   transition: 0.5s 0.25s cubic-bezier(0.17, 0.67, 0.5, 1.03);
}
 article.card .infos .txt {
   font-family: 'Open Sans', sans-serif;
   font-size: 14px;
   color: rgba(21, 37, 54, .7);
   opacity: 0;
   transition: 0.5s 0.25s cubic-bezier(0.17, 0.67, 0.5, 1.03);
}

 article.card:hover .infos {
   transform: translateY(-260px);
}
 article.card:hover .infos .seats, article.card:hover .infos .txt{
   opacity: 1;
}



