		/*===========================
    1. Theme default css 
===========================*/


@import url('https://fonts.googleapis.com/css?family=Montserrat:300,400,500,600,700|Roboto:300,400,500,700');

 body {
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
	max-width: 100%;
}

a:focus,
input:focus,
textarea:focus,
button:focus {
	text-decoration: none;
	outline: none;
}

a:focus,
a:hover{
	text-decoration: none;
}

i,
span,
a{
    display: inline-block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	color: #1d2025;
	margin: 0px;
}

h1 {
	font-weight: 500;
}
h2 {
	font-size: 36px;
}
h3 {
	font-size: 28px;
}
h4 {
	font-size: 22px;
}
h5 {
	font-size: 18px;
}
h6 {
	font-size: 16px;
}
ul,ol {
	margin: 0px;
	padding: 0px;
    list-style-type: none;
}

p {
	font-size: 15px;
	font-weight: 400;
	line-height: 25px;
	color: #505050;
	margin: 0px;
}

.bg_cover{
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

/*===== All Button Style =====*/

.main-btn {
	display: inline-block;
	font-weight: 500;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	border: 1px solid #ffc600;
	padding: 0 25px;
	font-size: 15px;
    font-family: 'Montserrat', sans-serif;
	line-height: 45px;
	border-radius: 5px;
    color: #07294d;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 5;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    background-color: #ffc600;
}
.main-btn:hover{
    color: #ffc600;
    border-color: #07294d;
    background-color: #07294d;
}

.main-btn-2{
    color: #ffc600;
    border-color: #07294d;
    background-color: #07294d;
}
.main-btn-2:hover{
    color: #07294d;
    background-color: #ffc600;
    border-color: #ffc600;
}


/*===== All Section Title Style =====*/

.section-title{}
.section-title h5{
    color: #07294d;
    position: relative;
    padding-bottom: 12px;
}
.section-title h5::before{
    content: '';
    position: absolute;
    width: 35px;
    height: 2px;
    background-color: #ffc600;
    bottom: 0;
    left: 0;
}
.section-title h2{
    font-size: 38px;
    color: #07294d;
    padding-top: 10px;
}

/*=====================================================
    2. HEADER css 
======================================================*/


/*===== Header top =====*/

.header-top {
	background-color: #07294d;
	padding-top: 10px;
	padding-bottom: 10px;
}

.header-contact ul li{
    display: inline-block;
    margin-right: 20px;
    color: #c6c6c6;
	font-size: 15px;
	font-weight: 500;
}
.header-contact ul li a,
.header-contact ul li i {
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    -ms-transition: all .3s;
}
.header-contact ul li:hover a,
.header-contact ul li:hover i {
    color: #ffc600;
}
.header-contact ul li:last-child{
    margin-right: 0;
}
.header-contact {
	line-height: 24px;
}

.header-contact ul li i{
    margin-right: 10px;
}

.header-contact ul li a{
    color: #c6c6c6;
    font-weight: 500;
    font-size: 15px;
}
.navbar-brand{
	padding-top: 10px;
	padding-bottom: 12px;
}

.header-right{}
.header-right .social{}
.header-right .social .follow-us{
    font-size: 15px;
    color: #c6c6c6;
    padding-right: 10px;
    font-weight: 500;
}
.header-right .social ul{}
.header-right .social ul li{
    display: inline-block;
    padding: 0 5px;
}
.header-right ul li a {
    width: 27px;
    line-height: 27px;
    font-size: 15px;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    background-color: #021d3a;
    -webkit-transition: all 0.4s linear;
    transition: all 0.4s linear;
}
.header-right ul li a:hover {
    background-color: #ffc600;
    color: #021d3a;
    -webkit-transition: all 0.4s linear;
    transition: all 0.4s linear;
}

.login-register{}
.login-register ul{}
.login-register ul li{
    display: inline-block;
    margin-left: 25px;
    position: relative;
}
.login-register ul li::before {
	position: absolute;
	content: '/';
	color: #ffc600;
	font-size: 15px;
	top: 0;
	left: -16px;
}

.login-register ul li:first-child::before {
    display: none;
}


.login-register ul li a{
    color: #ffc600;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s linear;
}

.login-register ul li a:hover{
    color: #fff;
}



/*===== Header Menu =====*/

.navbar-brand {
	width: 220px;
}

.navigation{
	background-color: #ebfeff;
}

.navigation.sticky {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: #fff;
	z-index: 999;
    border-bottom: 1px solid #cecece;
    -webkit-box-shadow: 0px 0px 191px 0px rgba(0,0,0,0.06);
    box-shadow: 0px 0px 191px 0px rgba(0,0,0,0.06);
    -webkit-animation: sticky 2s;
    animation: sticky 2s;
}

@-webkit-keyframes sticky {
    0%{
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%)
    }
    100%{
        -webkit-transform: translateY(0%);
        transform: translateY(0%)
    }
}

@keyframes sticky {
    0%{
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%)
    }
    100%{
        -webkit-transform: translateY(0%);
        transform: translateY(0%)
    }
}

.navigation .navbar{
    padding: 0;
}

.navigation .navbar .navbar-nav li{
    position: relative;
}
.navigation .navbar .navbar-nav li a {
	font-size: 15px;
	font-weight: 500;
	color: #2b356e;
	text-transform: uppercase;
	-webkit-transition: all 0.4s linear;
	transition: all 0.4s linear;
	padding: 32px 15px 32px 15px;
	display: block;
}

.navigation .navbar .navbar-nav > li > a.active,
.navigation .navbar .navbar-nav > li:hover > a{
    color: #ffc600;
}

.navigation .navbar .navbar-nav li .sub-menu {
    position: absolute;
    top: 110%;
    left: 0;
    background-color: #0093c7;
    width: 235px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.4s linear;
    transition: all 0.4s linear;
    z-index: 99;
}
.sub-menu li a {
	text-transform: capitalize !important;
}
.sub-menu-2 {
	position: absolute;
    top: 0;
    left: 100%;
    background-color: #07294d;
    width: 240px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.4s linear;
    transition: all 0.4s linear;
    z-index: 99;
}
.sub-menu-2-li {
	position: relative;
	cursor: pointer;
}
.navigation .navbar .navbar-nav li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    top: 100%;
}
.sub-menu-2-li:hover .sub-menu-2 {
    opacity: 1;
    visibility: visible;
}
.sub-menu-2-li a i {
    position: absolute;
    right: 20px;
    top: 8px;
}

.navigation .navbar .navbar-nav li .sub-menu li{
    margin-right: 0;
}
.navigation .navbar .navbar-nav li .sub-menu li a {
	padding: 6px 15px;
	display: block;
	border-bottom: 1px solid rgba(255, 255, 255, 0.5);
	color: #fff;
	font-weight:normal;
}
.navigation .navbar .navbar-nav li .sub-menu li a.active,
.navigation .navbar .navbar-nav li .sub-menu li a:hover{
    padding-left: 20px;
    color: #ffc600;
}

.sub-nav-toggler{
    display: none;
}

.navbar .navbar-toggler {
	padding: 3px 8px;
	margin: 18px 0;
     -webkit-transform: all 0.4s linear;
    transform: all 0.4s linear;
}

.navbar .navbar-toggler .icon-bar {
	width: 30px;
	height: 2px;
	background-color: #07294d;
	display: block;
	margin: 5px 0;
    position: relative;
     -webkit-transition: all 0.4s linear;
    transition: all 0.4s linear;
}

.navbar .navbar-toggler.active .icon-bar:nth-of-type(1){
    -webkit-transform: rotate(46deg);
    transform: rotate(46deg);
    top: 7px;
}
.navbar .navbar-toggler.active .icon-bar:nth-of-type(2){
    opacity: 0;
}
.navbar .navbar-toggler.active .icon-bar:nth-of-type(3){
    -webkit-transform: rotate(134deg);
    transform: rotate(134deg);
    top: -7px;
}
.main-hea-arrr {
    font-size: 12px;
    line-height: 20px;
    vertical-align: top;
}

/*===== HEADER TOW =====*/

.header-two {}

.header-two .header-top {
	background-color: #fff;
    border-bottom: 1px solid #edf0f2 ;
}

.header-two .header-contact ul li {
	color: #07294d;
}

.header-two .header-contact ul li a {
	color: #07294d;
}
.header-two .header-right .social .follow-us {
	color: #07294d;
}
.header-two .header-right .social ul li a {
	color: #07294d;
}
.header-two .header-right .social ul li a:hover {
	color: #ffc600;
     -webkit-transition: all 0.4s linear;
    transition: all 0.4s linear;
}
.header-two .login-register ul li a {
	color: #07294d;
	font-size: 15px;
	font-weight: 500;
	padding: 6px 18px;
	background: #ffc600;
	border-radius: 5px;
    transition: all 0.3s linear;
}

.header-two .login-register ul li a:hover{
    background: #07294d;
    color: #fff;
}

.header-two .login-register ul li::before {
	display: none;
}
.header-two .login-register ul li {
	margin-left: 10px;
}
.header-two .header-right .social {
	margin-top: 5px;
}


.header-two .navigation .navbar .navbar-nav li .sub-menu {
	background-color: #fff;
}
.header-two .navigation .navbar .navbar-nav li .sub-menu li a {
	border-bottom: 1px solid #edeff2;
	color: #07294d;
}

.header-two .navigation .navbar .navbar-nav li .sub-menu li a.active,
.header-two .navigation .navbar .navbar-nav li .sub-menu li a:hover{
    color: #ffc600;
}

/*===== HEADER THREEE =====*/

.header-three{}
.header-three .navigation {
	background-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    padding: 10px 0;
}

.header-three .navigation .navbar .navbar-nav li a {
	color: #fff;
}

.header-three .navigation .navbar .navbar-nav li a:hover{
    color: #ffc600;
}
.header-three .navigation .right-icon ul li a {
	color: #fff;
}

.header-three .navigation.sticky {
	position: fixed;
	width: 100%;
    background-color: #fff;
    padding: 0 0;
}

.header-three .navigation.sticky .navbar .navbar-nav li a {
	color: #07294d;
}
.header-three .navigation.sticky  .navbar .navbar-nav li a:hover{
    color: #ffc600;
}
.header-three .navigation.sticky .right-icon ul li a {
	color: #07294d;
}

.header-three .navigation .navbar .navbar-nav li .sub-menu {
	background-color: #fff;
}
.header-three .navigation .navbar .navbar-nav li .sub-menu li a {
	border-bottom: 1px solid #edeff2;
	color: #07294d;
}
.header-three .navigation .navbar .navbar-nav li .sub-menu li a:hover {
	color: #ffc600;
}



/*===== HEADER FORE =====*/


.header-four .navigation .navbar .navbar-nav li .sub-menu {
	background-color: #fff;
}
.header-four .navigation .navbar .navbar-nav li .sub-menu li a {
	border-bottom: 1px solid #edeff2;
	color: #07294d;
}

.header-four .navigation .navbar .navbar-nav li .sub-menu li a.active,
.header-four .navigation .navbar .navbar-nav li .sub-menu li a:hover{
    color: #ffc600;
}


/*=====================================================
    3. SLIDER css 
======================================================*/

.single-slider{
    padding-bottom: 100px;
}

.slider-cont{
    position: relative;
    z-index: 5;
    overflow: hidden;
}
.slider-cont h1{
    font-size: 60px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #fff;
    padding-bottom: 25px;
}
.slider-cont ul{
    font-size: 18px;
    color: #fff;
    font-weight: 600;
    padding-bottom: 50px;
    list-style: disc;
    padding-left: 20px;
}


.slider-active {}
.slider-active .slick-arrow {
    position: absolute;
	top: 50%;
	left: 0;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.4s linear;
}
.slider-active .next.slick-arrow {
    left: auto;
    right: 0;
}
.slider-active:hover .slick-arrow{
    left: 30px;
    opacity: 1;
    visibility: visible;
}
.slider-active:hover .next.slick-arrow {
    left: auto;
    right: 30px;
}

.slider-active .slick-arrow i{
    font-size: 30px;
    color: #fff;
    cursor: pointer;
    width: 50px;
    height: 50px;
    line-height: 47px;
    border-radius: 50%;
    border: 1px solid #fff;
    text-align: center;
    -webkit-transition: all 0.4s linear;
    transition: all 0.4s linear;
}

.slider-active .slick-arrow i:hover{
    background-color: #ffc600;
    border-color: #ffc600;
}

/*=====================================================
    5. ABOUT css 
======================================================*/

.about-bg img{
    width: 100%;
}

.about-cont p{
    padding-top: 30px; text-align:justify;
}

.about-event{
    -webkit-box-shadow: 0px 0px 191px 0px rgba(0,0,0,0.06);
    box-shadow: 0px 0px 191px 0px rgba(0,0,0,0.06);
    /*padding: 20px 0 0 20px;*/
    background-color: #fff;
}

.about-single-items span{
    font-size: 60px;
    color: #dbdbdb;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    line-height: 46px;
    padding-bottom: 22px;
}
.about-single-items h4{
    color: #000;
    font-size: 24px;
    padding-bottom: 25px;
}
.about-single-items p,
.about-single-items ul {
    text-align: justify;
}
.about-single-items ul {
    list-style: disc;
    padding-left: 20px;
}

/*=====================================================
    7. COURSE css 
======================================================*/

.single-course{
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    margin: 15px 0;
}
.single-course > .thum{
    position: relative;
}
.single-course .thum .image{
    overflow: hidden;
}
.single-course .thum .image img{
    width: 100%;
    -webkit-transition: all 0.4s linear;
    transition: all 0.4s linear;
}
.single-course:hover .thum .image img{
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.single-course .cont{
    padding: 20px;
}
.single-course .cont h4{
    font-weight: 600;
    font-size: 22px;
    color: #000;
    padding-top: 10px;
    padding-bottom: 20px;
}
.single-course .cont h4 a {
    font-weight: 600;
    font-size: 22px;
    color: #000;
    padding-top: 5px;
    padding-bottom: 10px;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
    -ms-transition: all .4s;
}
.single-course .cont h4 a:hover {
    color: #ffc600;
}


/*=====================================================
    8. VIDEO FEATURES css 
======================================================*/


.why-jwalin {
	display: flex;
}
.why-jwalin-fst,
.why-jwalin-sec {
	width: 50%;
}
.why-jwalin-fst img {
	width: 100%;
	height: 100%;
}
.feature-bg{
    background-color: rgb(43 53 110);
}

.feature{
    position: relative;
    z-index: 5;
}
.feature .feature-title h3{
    font-size: 36px;
    color: #fff;
    padding-bottom: 15px;
}

.feature ul li .single-feature{
    padding-top: 40px;
    overflow: hidden;
    display: flex;align-items: center;
}
.feature ul li .single-feature .icon{
    float: left;
    overflow: hidden;
    display: inline-block;
    padding-right: 20px;
    width: 70px;
}
.feature ul li .single-feature .cont {
	float: left;
    overflow: hidden;
}
.feature ul li .single-feature .cont h4{
    font-size: 20px;
    color: #fff;
	font-weight:normal;
}

/*=====================================================
    10. PUBLICATION css 
======================================================*/


.single-publication {
	background-color: #fff;
	padding: 15px;
	border-radius: 5px;
}
.single-publication .image img{
    width: 100%;
}

/*=====================================================
    11. TEASTIMONIAL css 
======================================================*/

#testimonial{}
#testimonial .section-title{
    position: relative;
    z-index: 5;
}
#testimonial .section-title h5,
#testimonial .section-title h2{
    color: #fff;
}
#testimonial .section-title h5::before{
    background-color: #fff;
}

.testimonial-slide{
    position: relative;
    z-index: 5;
}
.single-testimonial{
    position: relative;
}
.single-testimonial .testimonial-thum{
    position: absolute;
    display: inline-block;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.single-testimonial .testimonial-thum img{
    border-radius: 5px;
	padding-bottom:10px;
}
.single-testimonial .testimonial-thum .quote{
    position: absolute;
    right: -22px;
    top: -22px;
}
.single-testimonial .testimonial-thum .quote i{
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    background-color: #ffc600;
    border-radius: 50%;
    color: #07294d;
    font-size: 18px;
}
.single-testimonial .testimonial-cont {
    padding-left: 145px;
}
.single-testimonial .testimonial-cont p {
    color: #fff;
    padding-bottom: 25px;
}
.single-testimonial .testimonial-cont h6 {
    color: #fff;
    padding-bottom: 4px;
}
.single-testimonial .testimonial-cont span {
    color: #fff;
    font-size: 15px;
}

.testimonial-slide .slick-dots{
    margin: 0 auto;
}
.testimonial-slide .slick-dots li{
    display: inline-block;
    margin-top: 15px;
}
.testimonial-slide .slick-dots li button{
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #fff;
    font-size: 0;
    padding: 0;
    border: 0;
    margin: 0 3px;
    cursor: pointer;
}

.testimonial-slide .slick-dots li.slick-active button{
    background-color: #ffc600;
}

.testimonial-slide .slick-arrow {
	position: absolute;
	top: -125px;
	right: 0;
}
.testimonial-slide .prev.slick-arrow{
    left: auto;
    right: 50px;
}
.testimonial-slide .slick-arrow i{
    width: 40px;
    height: 40px;
    line-height: 36px;
    border-radius: 5px;
    color: #fff;
    border: 2px solid #aaaaaa;
    font-size: 18px;
    text-align: center;
    cursor: pointer;
    -webkit-transition: all 0.4s linear;
    transition: all 0.4s linear;
}

.testimonial-slide .slick-arrow:hover i{
    color: #000;
    background-color: #ffc600;
}

/*=====================================================
	Logo slider
=======================================================*/

.patnar-slide .single-patnar {
	background-color: #fff;
	padding: 20px;
	border-radius: 5%;
    width: 160px;
    margin: 0 auto;
}

.patnar-slide .comptext{
	padding-top:10px;
	text-align:center;
	font-family: 'Montserrat', sans-serif;
	font-weight:500;
	font-size:15px;
}

/*=====================================================
    13. FOOTER css 
======================================================*/

.footer-top{
    background-color: #2b356e;
}

.footer-about {
	padding-right: 50px;
}
.footer-about .logo {
	width: 200px;
}
.footer-about p{
    color: #fff;
    padding-top: 15px;
}
.footer-about ul li{
    display: inline-block;
    margin-right: 15px;
}
.footer-about ul li:last-child{
    margin-right: 0;
}

.footer-about ul li a{
    width: 35px;
    line-height: 35px;
    font-size: 15px;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    background-color: #021d3a;
    -webkit-transition: all 0.4s linear;
    transition: all 0.4s linear;
    
}
.footer-about ul li a:hover{
    background-color: #ffc600;
    color: #021d3a;
    -webkit-transition: all 0.4s linear;
    transition: all 0.4s linear;
    
}


.footer-title h6{
    font-size: 18px;
    color: #fff;
}

.footer-link{
    overflow: hidden;
}
.footer-link ul{
    float: left;
    overflow: hidden;
}
.footer-link ul li{
    line-height: 35px;
}
.footer-link ul li a{
    color: #fff;
    font-size: 15px;
    -webkit-transition: all 0.4s linear;
    transition: all 0.4s linear;
}
.footer-link ul li a i{
    margin-right: 8px;
    color: #ffc600;
    -webkit-transition: all 0.4s linear;
    transition: all 0.4s linear;
}
.footer-link ul li a:hover {
    color: #ffc600;
}
.footer-link ul li a:hover i{
    margin-right: 15px;
}

.support ul{
    float: none;
    width: 100%;
}

.footer-address ul li{
    position: relative;
    margin-bottom: 10px;
}
.footer-address ul li:last-child{
    margin-bottom: 0;
}

.footer-address ul li .icon i{
    font-size: 18px;
    color: #ffc600;
    position: absolute;
    left: 0;
    top: 5px;
}
.footer-address ul li .cont{
    padding-left: 35px;
}
.footer-address ul li .cont p{
    color: #fff;
}
.footer-address ul li .cont p a,
.footer-copyright .copyright a {
    color: #fff;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
    -ms-transition: all .4s;
}

.footer-address ul li .cont p a:hover,
.footer-copyright .copyright a:hover {
    color: #ffc600;
}
.footer-copyright{
    background-color: #021d3a; 
}
.footer-copyright .copyright p{
    color: #fff; font-size:14px;
}
.footer-copyright .copyright p span{
    font-weight: 600;
}

.back-to-top{
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 40px;
    height: 40px;
    line-height: 35px;
    background-color: #ffc600;
    color: #fff;
    font-size: 28px;
    border-radius: 5px;
    z-index: 99;
    text-align: center;
    -webkit-transition: all 0.4s linear;
    transition: all 0.4s linear;
    display: none;
}
.back-to-top:hover{
    color: #fff;
    background-color: #021d3a;
}


/*=====================================================
    20. PAGE BANNER  css 
======================================================*/

.page-banner-cont{
    position: relative;
    z-index: 5;
}
.page-banner-cont h2{
    font-size: 52px;
    color: #fff;
    padding-bottom: 15px;
}
.page-banner-cont .breadcrumb{
    margin: 0;
    background: none;
    padding: 0;
}
.page-banner-cont .breadcrumb .breadcrumb-item {
    color: #ffc600;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 2px;
}
.page-banner-cont .breadcrumb .breadcrumb-item a{
    color: #fff;
}
.page-banner-cont .breadcrumb-item + .breadcrumb-item::before {
    color: #fff;
    content: "/";
    font-size: 18px;
}


/*=====================================================
     Jwalin Laser about page
======================================================*/

.jwalin-laser {
    list-style: disc;
    padding-left: 20px;
}
.jwalin-laser li {
    font-size: 15px;
    font-weight: 400;
    line-height: 28px;
    color: #505050;
}

/*=====================================================
    19. COUNT DOWN css - about us
======================================================*/

.count-down-cont{
    position: relative;
    z-index: 5;
}
.count-down-cont h3{
    font-size: 30px;
    color: #fff;
    font-weight: 500;
    padding-bottom: 5px;
}
.count-down-cont h2{
    font-size: 72px;
    color: #ffc600;
    font-weight: 700;
    padding-bottom: 37px;
}

.count-down-time{
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    
}
.count-down-time .single-count{
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    width: 25%;
}
.count-down-time .single-count .number{
    font-size: 72px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    display: block;
}
.count-down-time .single-count .title{
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 18px;
    display: block;
}

.single-counter{
    position: relative;
    z-index: 5;
}
.single-counter span{
    font-size: 50px;
    color: #ffc600;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}
.single-counter p{
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: #fff;
    font-size: 23px;
}

/*=====================================================
    19. MISSION-VISION-VALUE - about us
======================================================*/

.mission-main h3 {
    padding-bottom: 15px;
}
.mission-main p,
.mission-main ul {
    font-size: 15px;
    font-weight: 400;
    line-height: 28px;
    color: #505050;
    margin: 0px;
}
.mission-main ul {
    list-style: disc;
    padding-left: 20px;
}


/*=====================================================
    31. CONTACT PAGE css 
======================================================*/

.contact-from{
    background-color: #fff;
    padding: 50px;
    border-radius: 5px;
}
.contact-from .main-form{}
.contact-from .main-form .single-form{
    margin-top: 20px;
}
.contact-from .main-form .single-form input,
.contact-from .main-form .single-form textarea{
    width: 100%;
    height: 50px;
    padding: 0 20px;
    border: 1px solid #a1a1a1;
    border-radius: 5px;
    color: #8a8a8a;
    font-size: 15px;
}

.contact-from .main-form .single-form textarea{
    padding-top: 10px;
    height: 100px;
    resize: none;
}

.form-group{
    margin: 0;
}
.list-unstyled li {
    font-size: 13px;
    margin-left: 2px;
    margin-top: 5px;
    color: #f00;
}
p.form-message.success,
p.form-message.error {
    font-size: 15px;
    color: #353535;
    background: #ddd;
    padding: 10px 15px;
    margin-left: 15px;
    margin-top: 15px;
}

.contact-address{
    background-color: #fff;
    padding: 20px 50px 50px;
    border-radius: 5px;
}

.contact-address ul li{
    padding-top: 30px;
}
.contact-address ul li .single-address{
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.contact-address ul li .single-address .icon i{
    width: 50px;
    line-height: 50px;
    border-radius: 50%;
    border: 1px solid #07294d;
    color: #07294d;
    font-size: 24px;
    text-align: center;
}
.contact-address ul li .single-address .cont{
    padding-left: 20px;
}
.contact-address ul li .single-address .cont p,
.contact-address ul li .single-address .cont a {
    color: #505050;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    -ms-transition: all .3s;
}
.contact-address ul li .single-address .cont a:hover {
    color: #ffc600;
}

.map{}
.map #contact-map{
    width: 100%;
    height: 215px;
}

.map.map-big #contact-map{
    width: 100%;
    height: 415px;
}
.contact-address .contact-heading{
    padding-top: 35px;
}

.contact-address .contact-heading h5{
    padding-bottom: 15px;
}

/*====================================================
    Laser Machine Diode Module -product page
======================================================*/

.nrs-primium-main .single-course .cont {
    text-align: center;
    padding: 15px;
}
.nrs-primium-main .single-course .cont h4 {
    font-size: 16px;
    padding: 7px 0;
}
.nrs-pri-plus-tab tr td:first-child {
    width: 40%;
}
.nrs-pri-plus-tab tr td,
.nrs-pri-plus-tab tr th {
    padding: 10px 20px;
}
.nrs-pri-plus-tab tr th {
    background-color: #07294d;
    color: #fff;
}
.nrs-pri-plus-tab tr:nth-child(even) {
    background-color: #fff;
}
.sec-refurbised-ul h3 {
    font-size: 22px;
    color: #505050;
    font-weight: 700;
    padding-bottom: 15px;
}
.sec-refurbised-ul ul {
    font-size: 15px;
    font-weight: 400;
    line-height: 28px;
    color: #505050;
    padding-left: 20px;
    list-style: disc;
}

.laser-matchin-tbl-one,
.laser-matchin-tbl-two {
    display: table-cell;
    vertical-align: middle;
	font-size:15px;
}
.laser-machin-tab {
    width: 100%;
    border: 1px solid #b1b1b1;
    border-bottom: 0;
    display: table;
	color:#505050;
}
.laser-machin-tab-fst-div {
    background-color: #07294d;
    color: #fff;
    font-weight: 700;
}
.laser-matchin-tbl-one {
    padding: 8px 20px;
    border-right: 1px solid #b1b1b1;
    border-bottom: 1px solid #b1b1b1;
    width: 35%;
}
.laser-matchin-tbl-two {
    padding: 8px 20px;
    width: 65%;
    border-bottom: 1px solid #b1b1b1;
}
.laser-machin-tab-fst-div div {
    border: 0;
}
.laser-machin-tbl-fst-div {
    display: table-row;
    border-bottom: 1px solid #b1b1b1;
}
.laser-machin-tab .laser-machin-tbl-fst-div:nth-child(even) {
    background-color: #fff;
}

.subt {
  vertical-align: sub;
  font-size: smaller;
}

.supt {
  vertical-align: super;
  font-size: smaller;
}

/*====================================================
    3D Laser Marking Machine - product page
======================================================*/

.laser-main {
    padding-top: 20px;
    padding-bottom: 30px;
}    
.laser-main img {
    background-color: #fff;
    padding: 15px;
    border-radius: 5px;
}
.specification-main tr:nth-child(even) {
    background-color: #e8e8f4;
}
.specification-main tr:nth-child(odd) {
    background-color: #ceebfa;
}
.specification-main {
    font-weight: 500;
    text-align: center;
    margin-top: 20px;
    display: inline-table;
}
.specification-main tbody {
    width: 100%;
}
.specification-main tr td:first-child {
    width: 45%
}
.specification-main tr td:second-child {
    width: 55%
}
.samples-img {
/*  background-color: #fff; 
    border: 1px solid #e1e1e1; */
    padding: 10px;
    border-radius: 50%;
    margin-top: 25PX;
    width: 100%;
}
.laser-sec-sec h3 {
    font-size: 25px;
    font-weight: 600;
}
.laser-main-sec {
    background-color: #edf0f2;
}
.samples-img-squre {
    background-color: #fff;
    padding: 10px;
    border: 1px solid #e1e1e1;
    border-radius: 10px;
    margin-top: 25PX;
    width: 100%;
}



#download_brochure{ display: none; width: 100%; max-width: 400px; }
#download_brochure .brosharname .single-form{ margin-bottom: 15px; }
#download_brochure h2{ width: 100%; text-align: center; font-size: 23px; margin: 0px; padding: 0px; padding-bottom: 30px; }
#download_brochure .single-form button{ float: right; }