/* Table Content
=============================
	# General
		- Fonts
		- Dropdown Menu
		- Page Overlay
		- Menu Button
		- Misc
	# Headings 
	# Paragraph 
	# Links	
	# Images
	# Buttons
	# Forms
		- Main Search
	# Tables
	# Lists
		- topheader-list
		- Social-List
		- Important Links
		- Side Category
		- Icon-List 
		- Share-Icon List
		- True List
	# Price Table
	# Progress Bars
	# accordion and toogle
	# Icon Box
	# Widgets
		- Contact Widget 
		- Side Widget
	# Section Settings
	# Header
	# Footer
	# Home Slider
	# page-head
	# Home Page
		- program-img--section
		- home-feature
		- Home Price
		- 
		- Banks Section
	# About Program
	# Media Center Pages
		- News Page
		- Blog-Post-Page
	# New Program
	# Login & Register Page
	# Profile Pages
*/


/* General
==========================*/
*, *:focus {
	outline: none!important;
}
/*Fonts*/

@font-face {
    font-family: 'DIN-NEXT-BOLD';
    src: url(../../fonts/DIN-NEXT-BOLD.otf);
}
@font-face {
    font-family: 'DIN-NEXT-MEDIUM';
    src: url(../../fonts/DIN-NEXT-MEDIUM.otf);
}
@font-face {
    font-family: 'DIN-NEXT-REGULAR';
    src: url(../../fonts/DIN-NEXT-REGULAR.otf);
}

body{
	background: #F6F6F6;
    color: #727272;
    font-size: 14px;
    line-height: 25px;
	font-family: 'DIN-NEXT-REGULAR';
	overflow-x: hidden;
}
.wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.main {
}
/*
@media(min-width:2300px){
	.wrapper {
		width: 2000px!important;
		margin: 0 auto;
		overflow: hidden;
	}
}*/
/*Dropdown Menu*/
.dropdown-menu {
	transition: all 0.5s ease;
	display: block;
	box-shadow: none;
	opacity: 0;
	visibility: hidden;
	min-width: 180px;
	-webkit-transform: rotateX(-90deg);
	   -moz-transform: rotateX(-90deg);
	    -ms-transform: rotateX(-90deg);
	     -o-transform: rotateX(-90deg);
	        transform: rotateX(-90deg);
    -webkit-transform-origin: 0 0 0;
	   -moz-transform-origin: 0 0 0;
	    -ms-transform-origin: 0 0 0;
	     -o-transform-origin: 0 0 0;
	        transform-origin: 0 0 0;	
}
.open > .dropdown-menu {
	display: block;
	opacity: 1;
	visibility: visible;
    -webkit-transform: rotateX(0deg);
       -moz-transform: rotateX(0deg);
        -ms-transform: rotateX(0deg);
         -o-transform: rotateX(0deg);
            transform: rotateX(0deg);
}
.dropup .dropdown-menu, 
.navbar-fixed-bottom .dropdown .dropdown-menu {
	-webkit-transform-origin: bottom;
	   -moz-transform-origin: bottom;
	    -ms-transform-origin: bottom;
	     -o-transform-origin: bottom;
	        transform-origin: bottom;
}

/*Page Overlay*/
.page-overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.2s;
       -moz-transition: all 0.2s;
            transition: all 0.2s;
}
.page-overlay.in {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.4s;
       -moz-transition: all 0.4s;
            transition: all 0.4s;
}


/*Preloader*/
#preloader {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    height: 100%;
    width: 100%;
    overflow: hidden;
    z-index: 9999999;
	background: #098FAF;
	direction: ltr;
    opacity: 1;
	-webkit-transition: all ease 0.5s;
	   -moz-transition: all ease 0.5s;
	        transition: all ease 0.5s;  
}
#loading-bar {
	position: fixed;
	left: 0;
	top: 0;
	height: 3px;
    background: transparent linear-gradient(to right,#b4c535,#006B8B,#fcc645,#006B8B,#b4c535,#006B8B) repeat scroll 0 0/500% auto;
	animation:1s linear 0s normal none infinite running loading-gradient;
    z-index: 99999999;
	opacity: 1;
    -webkit-box-shadow: 0 0 3px 0 #000;
       -moz-box-shadow: 0 0 3px 0 #000;
            box-shadow: 0 0 3px 0 #000;
	-webkit-transition: all ease 0.5s;
	   -moz-transition: all ease 0.5s;
	        transition: all ease 0.5s;
}
#loading {
    position: absolute;
    top: 40%;
    left: calc(50% - 80px);
    text-align: center;
	-webkit-transition: all ease 0.5s;
	   -moz-transition: all ease 0.5s;
	        transition: all ease 0.5s;    
}
#preloader.complete #loading,
#preloader.loaded,
#loading-bar.loaded{
	opacity: 0;
    visibility: hidden;
}
#loading-bar.uninitialized{width: 25%;}
#loading-bar.loading{width: 30%;}
#loading-bar.interactive{width: 80%;}
#loading-bar.complete{width: 100%;}
.loading-letter {
 	font-size:50px;
 	display:inline-block;
 	position:relative;
 	color:rgba(255,255,255,.3);
}
.loading-letter:before {
 	content:attr(data-preloader);
 	position:absolute;
 	top:0;
 	left:0;
 	animation-duration:3.5s;
 	animation-iteration-count:infinite;
 	animation-fill-mode:backwards;
 	color:rgba(255,255,255,.8);
	animation-name:loading-letter
}
.loading-letter:nth-child(2):before {
 	animation-delay:.4s
}
.loading-letter:nth-child(3):before {
 	animation-delay:.6s
}
.loading-letter:nth-child(4):before {
 	animation-delay:.8s
}
.loading-letter:nth-child(5):before {
 	animation-delay:1s
}
.loading-letter:nth-child(6):before {
 	animation-delay:1.2s
}
.loading-letter:nth-child(7):before {
 	animation-delay:1.4s
}


@-webkit-keyframes loading-letter {
 0%,to {
	 transform:scale(0) rotateY(-90deg);
	 opacity:0
 }
 5% {
	 opacity:.5
 }
 50%,85% {
	 transform:scale(1) rotateY(0);
	 opacity:1
 }
}
@-moz-keyframes loading-letter {
 0%,to {
	 transform:scale(0) rotateY(-90deg);
	 opacity:0
 }
 5% {
	 opacity:.5
 }
 50%,85% {
	 transform:scale(1) rotateY(0);
	 opacity:1
 }
}
@keyframes loading-letter {
 0%,to {
	 transform:scale(0) rotateY(-90deg);
	 opacity:0
	}
 5% {
	 opacity:.5
 	}
 50%,85% {
	 transform:scale(1) rotateY(0);
	 opacity:1
	}
}

@-moz-keyframes loading-gradient {
    0% {
        background-position: 0 0
    }
    100% {
        background-position: 100% 0
    }
}

@-webkit-keyframes loading-gradient {
    0% {
        background-position: 0 0
    }
    100% {
        background-position: 100% 0
    }
}

@keyframes loading-gradient {
    0% {
        background-position: 0 0
    }
    100% {
        background-position: 100% 0
    }
}

/*Menu Button*/
#menu-btn {
    position: relative;
    width: 45px;
    height: 45px;
    cursor: pointer;
    background: white;
    border: none;
    border-radius: 100%;
}
#menu-btn span {
    position: absolute;
    width: 26px;
    height: 3px;
    top: 50%;
    left: 50%;
    background: #262626;
    border-radius: 2px;
    overflow: hidden;
    -webkit-transition: all 0.3s;
       -moz-transition: all 0.3s;
            transition: all 0.3s;
}
#menu-btn span::before {
  content: "";
  position: absolute;
  width: 0;
  height: 100%;
  top: 0;
  right: 0;
  background: #ff0000;
  -webkit-transition: all 0.3s;
     -moz-transition: all 0.3s;
          transition: all 0.3s;
}
#menu-btn:hover span::before {
    width: 100%;
}
#menu-btn span:nth-child(1) {
  animation: span-first-off 0.5s ease-in-out;
  animation-fill-mode: forwards;
}
#menu-btn span:nth-child(2) {
  animation: span-second-off 0.5s ease-in-out;
  animation-fill-mode: forwards;
}
#menu-btn span:nth-child(3) {
  animation: span-third-off 0.5s ease-in-out;
  animation-fill-mode: forwards;
}

#menu-btn.in:hover span::before {
  width: 100%;
  -webkit-transition: all 0.3s;
     -moz-transition: all 0.3s;
          transition: all 0.3s;
      
}

#menu-btn.in span:nth-child(1) {
    -webkit-animation: span-first-on 0.5s ease-in-out;
       -moz-animation: span-first-on 0.5s ease-in-out;
            animation: span-first-on 0.5s ease-in-out;
    -webkit-animation-fill-mode: forwards;
       -moz-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
    
}
#menu-btn.in span:nth-child(2) {
    -webkit-animation: span-second-on 0.5s ease-in-out;
       -moz-animation: span-second-on 0.5s ease-in-out;
            animation: span-second-on 0.5s ease-in-out;
    -webkit-animation-fill-mode: forwards;
       -moz-animation-fill-mode: forwards;
            animation-fill-mode: forwards;    
}
#menu-btn.in span:nth-child(3) {
    -webkit-animation: span-third-on 0.5s ease-in-out;
       -moz-animation: span-third-on 0.5s ease-in-out;
            animation: span-third-on 0.5s ease-in-out;
    
    -webkit-animation-fill-mode: forwards;
       -moz-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
    
}

@keyframes span-first-on {
  0% {
    -webkit-transform: translate(-50%, -300%);
       -moz-transform: translate(-50%, -300%);
            transform: translate(-50%, -300%);
      
  }
  30% {
    -webkit-transform: translate(-50%, -50%);
       -moz-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
      
  }
  100% {
    -webki-transform: translate(-50%, -50%) rotate(-45deg);
      -moz-transform: translate(-50%, -50%) rotate(-45deg);
           transform: translate(-50%, -50%) rotate(-45deg);
        
  }
}
@keyframes span-first-off {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
       -moz-transform: translate(-50%, -50%) rotate(-45deg);
            transform: translate(-50%, -50%) rotate(-45deg);
        
  }
  30% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
       -moz-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
      
  }
  100% {
    -webkit-transform: translate(-50%, -300%);
       -moz-transform: translate(-50%, -300%);
            transform: translate(-50%, -300%);
      
  }
}
@keyframes span-second-on {
  0% {
    -webkit-transform: translate(-50%, -50%);
       -moz-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
      
  }
  25% {
    background: gray;
  }
  50% {
    -webkit-transform: translate(-50%, -50%) scale(1);
       -moz-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
      
  }
  100% {
    -webkit-transform: translate(-150%, -50%) scale(0);
       -moz-transform: translate(-150%, -50%) scale(0);
            transform: translate(-150%, -50%) scale(0);
  }
}
@keyframes span-second-off {
  0% {
    -webkit-transform: translate(-150%, -50%) scale(0);
       -moz-transform: translate(-150%, -50%) scale(0);
            transform: translate(-150%, -50%) scale(0);
      
  }
  25% {
    background: gray;
  }
  50% {
    -webkit-transform: translate(-50%, -50%) scale(1);
       -moz-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
      
  }
  100% {
    -webkit-transform: translate(-50%, -50%);
       -moz-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
      
  }
}
@keyframes span-third-on {
  0% {
    -webkit-transform: translate(-50%, 200%);
       -moz-transform: translate(-50%, 200%);
            transform: translate(-50%, 200%);
      
  }
  30% {
    -webkit-transform: translate(-50%, -50%);
       -moz-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
      
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
       -moz-transform: translate(-50%, -50%) rotate(45deg);
            transform: translate(-50%, -50%) rotate(45deg);
      
  }
}
@keyframes span-third-off {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
       -moz-transform: translate(-50%, -50%) rotate(45deg);
            transform: translate(-50%, -50%) rotate(45deg);
      
  }
  30% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
       -moz-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
      
  }
  100% {
    -webkit-transform: translate(-50%, 200%);
       -moz-transform: translate(-50%, 200%);
            transform: translate(-50%, 200%);
      
  }
}
/*Misc*/
.hiden {
  display: none;
}
.owl-carousel{
    direction: ltr;
}
.no-margin {
	margin: 0!important;
}
.no-padding {
	padding: 0!important;
}
.no-padding-left {
	padding-left: 0!important;
}
.spacer-xs {
	display: block;
	width: 100%;
	height: 10px;
	clear: both;
}
.white-box{
	display: block;
    padding: 30px 20px;
	background: #fff;
	border-radius: 5px;
	overflow: hidden;
	-webkit-box-shadow: 0 2px 3px rgba(0,0,0,.08);
       -moz-box-shadow: 0 2px 3px rgba(0,0,0,.08);
            box-shadow: 0 2px 3px rgba(0,0,0,.08);
}
/*Affix*/
.affix-top{
	position: static;
	width:265px !important;
}
.affix{
	position:fixed !important;
	top:80px;
	width:265px !important;
}
@media(min-width:992px) and (max-width:1200px){
	.affix-top{
		width:230px !important;
	}
	.affix{
		width:230px !important;
	}
}
@media (max-width:991px){
	.affix{
		position: static!important;
		width: auto!important;
	}
	.affix-top{
		width:auto;
	}
}
/* Headings
==========================*/
h1, h2, h3, h4, h5, h6 {
    margin: 0;
}

.title{
    color: #333;
    font-size: 18px;
    line-height: 35px;
}
.custom-title{
    position: relative;
    font-size: 25px;
    line-height: 50px;
	font-family: 'DIN-NEXT-MEDIUM';
    text-transform: capitalize;
    margin-bottom: 25px;
	color: #098FAF;
}

/* Paragraph
===========================*/
p {
    color: #727272;
	line-height: 30px;
	margin: ;
}
/* Links
==========================*/

a, a:hover, a:focus{
    text-decoration: none;
}
a.more{
    position: relative;
	display: inline-block;
    color: #098FAF;
    font-size: 16px;
	line-height: 30px;
	font-family: 'DIN-NEXT-MEDIUM';
    text-transform: capitalize;
    text-decoration: none;
    border-bottom: 1px solid #098FAF;
    -webkit-transition: all .35s ease-in-out;
       -moz-transition: all .35s ease-in-out;
            transition: all .35s ease-in-out;
}
a.more:after{
    position: absolute;
    content: "\f30a";
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
    top: 7px;
    left: 0px;
    font-size: 17px;
    line-height: 23px;
    margin-left: -25px;
    width: 32px;
    padding-right: 15px;
    border-bottom: 1px solid;
	
}
a.more:hover{
    color: #333;
    border-bottom-color: #333;
}


/* Images
==========================*/
img {
    display: block;
    max-width: 100%;
    height: auto;
}



.thumb-wrapper {
    display: block;
    position: relative;
    overflow: hidden;
	border: 2px solid #ddd;
	margin-bottom: 30px;
}
.thumb-wrapper > img {
    display: block;
    width: 100%;
    -webkit-transition: transform 0.4s;
       -moz-transition: transform 0.4s;
            transition: transform 0.4s;
}
.thumb-wrapper:hover > img {
    -webkit-transform: scale(1.1);
       -moz-transform: scale(1.1);
            transform: scale(1.1);
}
.thumb-title {
	
}
.thumb-title .title {
	display: block;
	line-height: 45px;
	background: #fff;
	text-align: center;
	font-family: 'DIN-NEXT-MEDIUM';
	font-size: 18px;
	color: #757575;
}
.thumb-wrapper .half-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    background: none;
    padding: 0;
    margin: 0;
    z-index: 9;
    visibility: hidden;
    -webkit-transition: all 0.3s ease 0.5s;
       -moz-transition: all 0.3s ease 0.5s;
            transition: all 0.3s ease 0.5s;  
}
.thumb-wrapper .half-1 .half-2 {
    position: relative;
    height: 100%;
    width: 100%;
}
.thumb-wrapper .half-1:before, 
.thumb-wrapper .half-1:after,
.thumb-wrapper .half-1 .half-2:before,
.thumb-wrapper .half-1 .half-2:after {
  content: '';
  display: block;
  position: absolute;
  width: 50%;
  height: 50%;
  background-color: rgba(255, 255, 255, 0.70);
  z-index: -1;
  opacity: 0;
  -webkit-transform: scale(0.1);
     -moz-transform: scale(0.1);
          transform: scale(0.1);
    -webkit-transition: all 0.2s linear;
       -moz-transition: all 0.2s linear;
            transition: all 0.2s linear;
}
.thumb-wrapper .half-1:before {
  top: 0;
  left: 0;
  -webkit-transition-delay: 0.3s;
     -moz-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.thumb-wrapper .half-1:after {
  top: 0;
  right: 0;
  -webkit-transition-delay: 0.2s;
     -moz-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.thumb-wrapper .half-1 .half-2:after {
  bottom: 0;
  right: 0;
  -webkit-transition-delay: 0.1s;
     -moz-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.thumb-wrapper .half-1 .half-2:before {
  bottom: 0;
  left: 0;
  -webkit-transition-delay: 0s;
     -moz-transition-delay: 0s;
          transition-delay: 0s;
}
.thumb-wrapper .half-1 > .half-2 > h2 {
  opacity: 0;
  -webkit-transform: translateY(-50px);
     -moz-transform: translateY(-50px);
          transform: translateY(-50px);
  -webkit-transition: all 0.3s ease;
     -moz-transition: all 0.3s ease;
          transition: all 0.3s ease;
    margin: 0;
    padding: 0;
    line-height: 40px;
    text-align: center;
    background: #FFB129;
    color: #fff;
    font-size: 22px;
}
.thumb-wrapper .half-1 > .half-2 > img {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 43%;
  -webkit-transition: all 0.4s ease;
     -moz-transition: all 0.4s ease;
          transition: all 0.4s ease;    
}
.thumb-wrapper:hover .half-1 {
  visibility: visible;
  -webkit-transition-delay: 0s;
     -moz-transition-delay: 0s;
          transition-delay: 0s;
}
.thumb-wrapper:hover .half-1:before, 
.thumb-wrapper:hover .half-1:after,
.thumb-wrapper:hover .half-1 .half-2:before,
.thumb-wrapper:hover .half-1 .half-2:after {
  opacity: 1;
  -webkit-transform: scale(1);
     -moz-transform: scale(1);
          transform: scale(1);
}
.thumb-wrapper:hover .half-1:before {
  top: 0;
  left: 0;
  -webkit-transition-delay: 0s;
     -moz-transition-delay: 0s;
          transition-delay: 0s;
}
.thumb-wrapper:hover .half-1:after {
  top: 0;
  right: 0;
  -webkit-transition-delay: 0.1s;
     -moz-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.thumb-wrapper:hover .half-1 .half-2:after {
  bottom: 0;
  right: 0;
  -webkit-transition-delay: 0.2s;
     -moz-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.thumb-wrapper:hover .half-1 .half-2:before {
  bottom: 0;
  left: 0;
  -webkit-transition-delay: 0.3s;
     -moz-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.thumb-wrapper:hover .half-1 > .half-2 > h2 {
  opacity: 1;
  -webkit-transform: translateY(0);
     -moz-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-delay: 0.5s;
     -moz-transition-delay: 0.5s;
          transition-delay: 0.5s;    
}
.thumb-wrapper:hover .half-1 > .half-2 > img{
    opacity: 1;
    top: 43%;
  -webkit-transition-delay: 0.5s;
     -moz-transition-delay: 0.5s;
          transition-delay: 0.5s;      
}

/* Buttons
========================*/
/* Custom-btn*/
.custom-btn{
    display: inline-block;
    line-height: 45px;
    background-color: #098faf;
    border-radius: 5px;
    color: #fff;
    padding: 0 18px;
    border: none;
    box-shadow: none;
	font-family: 'DIN-NEXT-MEDIUM';
	font-size: 17px;
    -webkit-transition: all 0.3s ease-in-out;
       -moz-transition: all 0.3s ease-in-out;
            transition: all 0.3s ease-in-out;
}
.custom-btn:focus,
.custom-btn.active,
.custom-btn:hover{
    background-color: #b4c535;
    color: #fff;
}
.custom-btn.active:hover {
	background-color: #b4c535;
}

/*Forms
==========================*/

.form-group{
    margin-bottom: 20px;
}
.form-control{
    height: 48px;
    background-color: #f9f9f9;
    border: 1px solid #e6e6e6;
    box-shadow: none;
    outline: none;
    padding: 7px 20px;
    border-radius: 7px;
	font-size: 18px;
}
.form-control:focus{
    border-color: #ddd;
    -webkit-box-shadow: inset 0 0 9px 0 #f1f1f1;
       -moz-box-shadow: inset 0 0 9px 0 #f1f1f1;
            box-shadow: inset 0 0 9px 0 #f1f1f1;
	
}
textarea.form-control{
    resize: none;
    margin-bottom: 20px;
}
.form-group .custom-btn{
    width: 100%;
}
.form-control::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color: #b5b5b5;
}
.form-control:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color: #b5b5b5;
}
.form-control::-moz-placeholder { /* Mozilla Firefox 19+ */
    color: #b5b5b5;
}

/*radio check-item*/

.radio-check-item {
	display: inline-block;
	margin-left: 10px;	
}
.radio-check-item input[type="radio"],
.radio-check-item input[type="checkbox"]{
    display: none;
}
.radio-check-item input[type="radio"] + label,
.radio-check-item input[type="checkbox"] + label {
    position: relative;
    margin: 0;
    font-size: 16px;
	font-family: 'DIN-NEXT-MEDIUM';
    color: #505050;
    cursor: pointer;
    display: block;
    padding-right: 30px;
    text-transform: capitalize;
    font-weight: normal;
	letter-spacing: 0.5px;
}
.radio-check-item input[type="radio"] + label::before,
.radio-check-item input[type="checkbox"] + label::before{
    position: absolute;
    content: "";
    width: 25px;
    height: 25px;
	border: 2px solid #e1d7c2;
    border-radius: 100%;
    background-color: #fefbf5;
    top: 0px;
    right: 0px;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
    text-align: center;
    line-height: 20px;
}

.radio-check-item input[type="radio"]:checked + label::before,
.radio-check-item input[type="checkbox"]:checked + label::before{
    content: "\f00c";
    font-size: 14px;
	background: #098FAF;
	border-color: #098FAF;
	color: #fff;
}

.radio-check-item.hidden-check input[type="radio"] + label,
.radio-check-item.hidden-check input[type="checkbox"] + label {
	padding: 0 25px;
	line-height: 35px;
	border: 1px solid #e0d6c1;
	border-radius: 50px;
	background: #fefbf5;
	font-size: 16px;
	font-family: 'DIN-NEXT-MEDIUM';
}
.radio-check-item.hidden-check input[type="radio"]:checked + label,
.radio-check-item.hidden-check input[type="checkbox"]:checked + label{
    content: "\f00c";
    font-size: 14px;
	background: #098FAF;
	border-color: #098FAF;
	color: #fff;
}

.radio-check-item.hidden-check input[type="radio"] + label::before,
.radio-check-item.hidden-check input[type="checkbox"] + label::before {
	display: none;
}


/* Main Search */
.main-search {
    position: fixed;
    left: 50%;
    top: 40%;
    width: 100%;
    max-width: 800px;
    padding: 10px 25px;
    opacity: 0;
    visibility: hidden;
    z-index: 350;
    background: none;
    color: #fff;
    -webkit-transition: 0.5s opacity ease, 0.5s transform ease;
       -moz-transition: 0.5s opacity ease, 0.5s transform ease;
            transition: 0.5s opacity ease, 0.5s transform ease;
    -webkit-transform: translate3d(-50%, -50%, 0);
       -moz-transform: translate3d(-50%, -50%, 0);
            transform: translate3d(-50%, -50%, 0);
    -webkit-transition: all 0.2s;
       -moz-transition: all 0.2s;
            transition: all 0.2s;
}
.main-search.in {
    visibility: visible;
    opacity: 1;
    top: 50%;
    -webkit-transition: all 0.3s;
       -moz-transition: all 0.3s;
            transition: all 0.3s;
}
.main-search form {
    position: relative;
}
.main-search .form-control{
    height: 90px;
}
.main-search .custom-btn {
    position: absolute;
    top: 0px;
    left: 20px;
    height: 50px;
    width: 50px;
	margin-top: 23px!important;
}
.main-search #menu-btn {
    position: fixed;
    left: calc(50% - 22px);
    top: -100px;
}

.subscribe-form {
    position: relative;
}
.subscribe-form .form-group {
	margin: 0;
}
.subscribe-form .form-control {
    color: gray;
	font-size: 18px;
    background-color: #EFEFEF;
    height: 55px;
    border-radius: 0;
    border: 2px solid #EFEFEF;
}
.subscribe-form .subscribe-btn {
    border: none;
    box-shadow: none; 
    position: absolute;
    top: 5px;
    left: 5px;
    height: 45px;
    padding: 0 20px;
    color: #fff;
    background-color: #595959;
	font-size: 18px;
	font-family: 'DIN-NEXT-MEDIUM';
}

.subscribe-form .form-control::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color: gray;
}
.subscribe-form .form-control:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color: gray;
}
.subscribe-form .form-control::-moz-placeholder { /* Mozilla Firefox 19+ */
    color: gray;
}


/*Count Number*/
.count-number {
    margin: 0;
	border: 1px solid #e0d6c1;
	display: inline-block;
	overflow: hidden;
	border-radius: 50px;
	height: 40px;
}
.count-number a{
    display: block;
    width: 40px;
    height: 40px;
	float: right;
    line-height: 38px;
    text-align: center;
    font-size: 12px;
    color: #333;
    background-color: #faf5ec;
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    bottom: auto;
	
}
.count-number a:last-child {
	float: left;
}

.count-number .form-control{
	font-family: 'Droid Arabic Kufi', sans-serif;
	font-weight: bold;
    width: 60px;
    padding: 0;
    text-align: center;
    height: auto;
    display: inline-block;
    background-color: transparent;
    border: 0;
	height: 40px;
}
.count-number.count-sm {
	height: 35px;
}
.count-number.count-sm .form-control {
	width: 40px;
	height: 35px;
}
.count-number.count-sm a {
    width: 30px;
    height: 33px;
    line-height: 35px;
}

/* Tables 
============================*/
table {
	min-width: 620px;
    width: 100%;
    table-layout: fixed;
    margin-bottom: 10px;
	border: 1px solid #f5f5f5;
}
@media(max-width:991px){
	.table-wrap {
		overflow-x: scroll;
	}
	
}

.table{
    position: relative;
    border-collapse: separate;
    border-spacing: 0;
    margin: 0;
	border: 1px solid #ddd;
}
.table > tbody > tr > td:first-child,
.table > tbody > tr > td:nth-child(3) {
    background: #f0f0f0;
	width: 40%
}
.table > tbody > tr > td{
	font-family: 'DIN-NEXT-MEDIUM';
    padding: 12px 15px 12px 10px;
	font-size: 16px;
    text-align: center;
    vertical-align: middle;
    background-color: #f5f5f5;
	border: none;
	border-bottom: 1px solid #ddd;
	border-left: 1px solid #e2e2e2;
	color: #5e5b54;
	line-height: 30px;	
}
.table > tbody > tr:last-child > td{
	border-bottom: none;
}
.table > tbody > tr > td:nth-child(2),
.table > tbody > tr > td:nth-child(4) {
	width: 60%;
}


.report-table {

}
.report-table > thead{
	background: #098FAF;
    background-size: auto auto;
	background-size: contain;
	border-bottom: 1px solid #f5f5f5;
}
.report-table th {
    font-weight: normal;
    line-height: 50px;
	color: #fff;
	font-size: 18px;
    text-align: center;
	font-family: 'DIN-NEXT-MEDIUM';
}
.report-table > thead tr th {
	border-left: 1px solid #bbbb;
}
.report-table tbody {
	background: #F6F6F6;
}
.report-table tbody tr{
    border-bottom: 1px solid #e2e2e2;
}
.report-table tbody tr:last-child{
    border-bottom: 0;
}
.report-table td {
    text-align: center;
	border-left: 1px solid #e2e2e2;
}
.report-table tbody tr td:last-child {
	border-left: none;
}

.report-table .report-date,
.report-table .report-down {
	width: 20%;
}
.report-table .report-name {
	width: 80%;
}

.report-table td.report-date {
	font-size: 18px;
	padding: 10px 0;
}
.report-table td.report-name {
	font-family: 'DIN-NEXT-MEDIUM';
	font-size: 16px;
}
.report-table td.report-down {
	padding: 10px 0;
}
.report-table td.report-down .custom-btn {
	height: 37px;
	line-height: 30px;
	padding: 0 25px;
}



.subscribe-table {
	min-width: 750px;
}
.subscribe-table > thead{
	background: #098FAF;
    background-size: auto auto;
	background-size: contain;
	border-bottom: 1px solid #f5f5f5;
}
.subscribe-table th {
    font-weight: normal;
    line-height: 50px;
	color: #fff;
	font-size: 18px;
    text-align: center;
	font-family: 'DIN-NEXT-MEDIUM';
}
.subscribe-table > thead tr th {
	border-left: 1px solid #bbbb;
}
.subscribe-table tbody {
	background: #F6F6F6;
}
.subscribe-table tbody tr{
    border-bottom: 1px solid #e2e2e2;
}
.subscribe-table tbody tr:last-child{
    border-bottom: 0;
}
.subscribe-table td {
    text-align: center;
	border-left: 1px solid #e2e2e2;
	font-family: 'DIN-NEXT-MEDIUM';
	font-size: 16px;
	padding: 12px 0;
}
.subscribe-table tbody tr td:last-child {
	border-left: none;
}

.subscribe-table .table-num {
	width: 5%;
}

.subscribe-table .subscribe-code {
	width: 17%;
}

.subscribe-table .subscribe-date,
.subscribe-table .subscribe-name {
	width: 18%;
}
.subscribe-table .subscribe-num {
	width: 13%;
}
.subscribe-table .device-code {
	width: 35%;
}

.subscribe-table .subscribe-delete,
.subscribe-table .subscribe-status,
.subscribe-table .subscribe-desc,
.subscribe-table .subscribe-report {
	width: 12%;
}



.subscribe-table td.subscribe-desc a {
	color: #098FAF;
	-webkit-transition: all 0.4s;
	   -moz-transition: all 0.4s;
	        transition: all 0.4s;
	
}
.subscribe-table td.subscribe-desc a:hover {
	color: #B4C535;
}
.subscribe-table td.subscribe-report a {
	color: #098FAF;
	-webkit-transition: all 0.4s;
	   -moz-transition: all 0.4s;
	        transition: all 0.4s;
	
}
.subscribe-table td.subscribe-report a:hover {
	color: #B4C535;
}
.subscribe-table .subscribe-delete a {
	color: red;
}
.subscribe-table .program-name {
	width: 40%;
}
.subscribe-table .program-quantity,
.subscribe-table .program-quantity{
	width: 18%;
}
.subscribe-table .program-price,
.subscribe-table .program-total{
	width: 12%;
}

.subscribe-table td.program-name {
	line-height: 33px;
	padding: 10px;
}
.green {
	color: green;
}


















.tickets-table {
	min-width: 750px;
}
.tickets-table > thead{
	background: #098FAF;
    background-size: auto auto;
	background-size: contain;
	border-bottom: 1px solid #f5f5f5;
}
.tickets-table th {
    font-weight: normal;
    line-height: 50px;
	color: #fff;
	font-size: 18px;
    text-align: center;
	font-family: 'DIN-NEXT-MEDIUM';
}
.tickets-table > thead tr th {
	border-left: 1px solid #bbbb;
}
.tickets-table tbody {
	background: #F6F6F6;
}
.tickets-table tbody tr{
    border-bottom: 1px solid #e2e2e2;
}
.tickets-table tbody tr:last-child{
    border-bottom: 0;
}
.tickets-table td {
    text-align: center;
	border-left: 1px solid #e2e2e2;
	font-family: 'DIN-NEXT-MEDIUM';
	font-size: 16px;
	padding: 12px 0;
}
.tickets-table tbody tr td:last-child {
	border-left: none;
}

.tickets-table .ticket-number,
.tickets-table .ticket-update,
.tickets-table .ticket-kind,
.tickets-table .ticket-status {
	width: 18%;
}
.tickets-table .ticket-name {
	width: 28%;
}
.tickets-table td.ticket-name a {
	color: #098FAF;
	-webkit-transition: all 0.4s;
	   -moz-transition: all 0.4s;
	        transition: all 0.4s;
	
}
.tickets-table td.ticket-name a:hover {
	color: #B4C535;
}

/* Lists 
========================== */
ul {
    display: block;
    list-style: none;
    margin: 0;
    padding: 0;
}
/* topheader-list */
ul.topheader-list{
    position: relative;
}
ul.topheader-list > li{
    color: #fff;
    display: inline-block;
    margin-left: 20px;
    line-height: 40px;
    font-size: 16px;
	
}
ul.topheader-list > li:last-child{
    margin-left: 0;
}
ul.topheader-list > li > a {
	display: block;
	line-height: 40px;
	color: #fff;
	font-size: 16px;
}
ul.topheader-list > li i{
    margin-left: 5px;
	font-size: 16px;
    color: #fff;
}
/* Social-List */
 ul.social-list {
	width: auto;
	float: left;
	margin: 3px 0 0 0px;
	padding: 0px;
}
 ul.social-list li {
	 width: auto;
	float: left;
	width: 37px;
	height: 37px;
	margin: 0px;
	padding: 0px;
	position: relative;
	overflow: hidden;
	margin-right: 7px;
	 border-radius: 100%;
	 overflow: hidden;
}
 ul.social-list li a {
     position: absolute;
     left: 0px;
     top: 0px;
     width: 100%;
     line-height: 37px;
     height: 37px;
     float: left;
     text-align: center;
     background: #e4e4e4;
     color: #333;
}

ul.social-list li a.hover {
	top: 37px;
    color: #fff!important;
}

ul.social-list.social-hover-2 {
	float: right;
	overflow: hidden;
	margin: 0;
}
ul.social-list.social-hover-2 li {
	width: 55px;
	height: 55px;
	border-radius: 0;
	margin-right: 10px;
}
ul.social-list.social-hover-2 li:last-child {
	margin-right: 0;
}
 ul.social-list.social-hover-2 li a {
     line-height: 55px;
     height: 55px;
	 font-size: 25px;
}

ul.social-list.social-hover-2 li a.hover {
	top: 55px;
}

ul.social-list li.facebook a.hover {
    background-color : #5176C9;
}

ul.social-list li.linkedin a.hover {
    background-color : #1A92BD;
}

ul.social-list li.twitter a.hover {
	background-color : #3FAEEE;
}

ul.social-list li.youtube a.hover {
    background-color : #D20800;
}

ul.social-list li.instagram a.hover {
    background-color : #2A6792;
}

/*Important Links*/
ul.important-links {
	overflow: hidden;
}
ul.important-links li {
	display: block;
	
	padding-left: 5px;
}
ul.important-links li a {
	display: block;
	color: #fff;
	font-size: 16px;
	line-height: 30px;
	margin-bottom: 6px;
	font-family: 'DIN-NEXT-REGULAR';
}

/*Side Category*/
ul.side-category li {
    float: none;
    margin: 0;
}
ul.side-category li a {
    position: relative;
    display: block;
    padding: 0 20px;
    background: #fff;
    color: #707070;
    height: 50px;
    line-height: 50px;
	font-family: 'DIN-NEXT-MEDIUM';
	font-size: 17px;
	border-bottom: 1px solid #ddd;
    overflow: hidden;    
    -webkit-transition: all 0.4s;
       -moz-transition: all 0.4s;
            transition: all 0.4s;
}
ul.side-category li:hover a,
ul.side-category li.active a,
ul.side-category li:hover a:hover,
ul.side-category li.active a:focus {
    background: #fff;
    color: #3498DD;
    border: none!important;
    border-bottom: 1px solid #ddd!important;
}
ul.side-category li a > i {
	line-height: 50px;
    font-size: 20px;
	margin-left: 6px;
}

/* Icon-List */
ul.icons{
    display: inline-block;
    margin-right: 30px;
}
ul.icons > li{
    display: inline-block;   
    margin-left: 10px;
}
/* Share-Icon List */
ul.share-icon{
    margin-top: 20px;
    display: inline-block;
}
ul.share-icon > li {
    display: inline-block;
    width: 35px;
    height: 35px;
    background-color: #f2f2f2;
    border-radius: 10px;
    margin-left: 5px;
    text-align: center;
    line-height: 35px;
    color: #333;
    -webkit-transition: all 0.3s ease-in-out;
       -moz-transition: all 0.3s ease-in-out;
            transition: all 0.3s ease-in-out;
}
ul.share-icon > li:first-child{
    background-color: transparent;
	font-size: 22px;
	
}
ul.share-icon > li:hover{
	background-color: #098FAF;
}
ul.share-icon > li:first-child:hover{
    background-color: transparent
}
ul.share-icon > li > a{
    -webkit-transition: all 0.3s ease-in-out;
       -moz-transition: all 0.3s ease-in-out;
            transition: all 0.3s ease-in-out;
}
ul.share-icon > li:hover > a{
    color: #fff;
}

/*True List*/
ul.true-list {
    position: relative;
}
ul.true-list li {
    line-height: 35px;
    color: #727272;
    font-size: 16px;
	font-family: 'DIN-NEXT-MEDIUM';
}
ul.true-list li:before {
    content: "\f00c";
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    margin-left: 5px;
    text-align: center;
    color: #098FAF;
    font-size: 18px;
}

/*Price Table
==========================*/
.price-table {
	position: relative; 
	z-index: 0;
	color: #fff;
	display: inline-block;
	margin: 80px 5px 80px 5px;
	-webkit-transition: all .25s  linear;
	   -moz-transition: all .25s  linear;
	        transition: all .25s  linear;
}
.price-table:after {
	content: "";
	position: absolute;  
	-webkit-transform: rotate(60deg);
	   -moz-transform: rotate(60deg);
	    -ms-transform: rotate(60deg);
	     -o-transform: rotate(60deg);
	        transform: rotate(60deg);
}
.price-table:before {
	content: "";
	position: absolute; 
	-webkit-transform: rotate(-60deg);
	   -moz-transform: rotate(-60deg);
	    -ms-transform: rotate(-60deg);
	     -o-transform: rotate(-60deg);
	        transform: rotate(-60deg);
} 
.price-table:after,
.price-table:before { 
	-webkit-transition: all .25s  linear;
	   -moz-transition: all .25s  linear;
	        transition: all .25s  linear;	
}
.price-table,
.price-table:after,
.price-table:before { 
	width: 250px;
	height: 143px;
	background: #B4C535;
}
.price-table-wrap {
	position: absolute; 
	z-index: 1;
	left: 12px;
	right: 12px;
	top: 6px;
	bottom: 6px; 
	-webkit-transition: all .25s  linear;
	   -moz-transition: all .25s  linear;
	        transition: all .25s  linear;	
}
.price-table-wrap:after {
	content: "";
	position: absolute;  
	-webkit-transform: rotate(60deg);
	   -moz-transform: rotate(60deg);
	    -ms-transform: rotate(60deg);
	     -o-transform: rotate(60deg);
	        transform: rotate(60deg);
}
.price-table-wrap:before {
	content: "";
	position: absolute; 
	-webkit-transform: rotate(-60deg);
	   -moz-transform: rotate(-60deg);
	    -ms-transform: rotate(-60deg);
	     -o-transform: rotate(-60deg);
	        transform: rotate(-60deg);
}
.price-table-wrap,
.price-table-wrap:after,
.price-table-wrap:before { 
	background: #098FAF;
} 
.price-table-wrap:after,
.price-table-wrap:before {
	width: 100%;
    height: 100%;
}
.price-table-inner {
	z-index: 2;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
}
.price-table-front {
	font-weight: 300; 
	text-align: center;
}
.price-table-front .price-title {
	font-size: 25px;
	font-family: 'DIN-NEXT-MEDIUM';
	margin: -15px 0 20px 0;
}

.table-price-box {
	font-weight: 300!important;
	display: inline-block;
	position: relative;
	color: #fff;
}
.table-price-box .price-value {
	font-size: 90px;
	line-height: 60px;
	font-family: 'DIN-NEXT-BOLD';
}

.table-price-box .price-currency {
	position: absolute;
	left: -20px;
	top: -8px;
	font-size: 40px;
	font-family: 'DIN-NEXT-MEDIUM';
}
.table-price-box .price-duration {
	position: absolute;
	font-size: 23px;
	bottom: -40px;
	left: 0;
	right: 0;
	font-family: 'DIN-NEXT-MEDIUM';
}
.price-table-back {
	position: absolute;
	left: 0;
	right: 0;
	top: 50px;
	opacity: 0;
	padding: 0 35px;
	margin-top: -10px;
}
.price-table-front,
.price-table-back {
	-webkit-transition: all .25s  linear;
	   -moz-transition: all .25s  linear;
	        transition: all .25s  linear;	
}

.price-back-list {
	margin-top: -5px;
}
.price-back-list li {
	display: block;
	line-height: 22px;
	font-size: 15px;
	padding: 4px 0;
	position: relative;
	font-family: 'DIN-NEXT-MEDIUM';
} 
.price-back-list li i {
	display: block;
	float: right;
	line-height: 22px;
	margin-left: 10px;
	font-size: 15px;
}
.price-table-btn {
	display: block;
	font-family: 'DIN-NEXT-MEDIUM';
	font-size: 18px;
	color: #fff;
	line-height: 30px;
	padding-top: 10px;
} 
.price-table-btn i {
	position: relative;
	margin-left: 10px;
	top: 3px;
}
.price-table-btn:hover {
	color: #fff;
} 
.price-table:hover .price-table-front {
	opacity: 0;
}
.price-table:hover .price-table-back {
	opacity: 1;
	top: 0;
}
.price-table:hover .price-table-wrap {
	-webkit-transform: rotate(60deg);
	   -moz-transform: rotate(60deg);
	    -ms-transform: rotate(60deg);
	     -o-transform: rotate(60deg);
	        transform: rotate(60deg);
}
.price-table:hover {
	-webkit-transform: rotate(-60deg);
	   -moz-transform: rotate(-60deg);
	    -ms-transform: rotate(-60deg);
	     -o-transform: rotate(-60deg);
	        transform: rotate(-60deg);
}

@media(min-width:992px)and (max-width:1200px){
	.price-table-box {
		padding: 30px 5px;
	}
	.price-table,
	.price-table:after,
	.price-table:before { 
		width: 215px;
		height: 124px;
	}
	.price-table-front .price-title {
		font-size: 20px;
	}
	.table-price-box .price-value {
		font-size: 60px;
		line-height: 55px;
	}
	.table-price-box .price-currency {
		font-size: 33px;
	}
	.table-price-box .price-duration {
		font-size: 21px;
		bottom: -35px;
	}
	.price-table-back {
		padding: 0 25px;
		margin-top: 0px;
	}
	.price-back-list li {
		font-size: 14px;	
		padding: 0;
		line-height: 24px;
	} 
	.price-back-list li i {
		margin-left: 5px;
		font-size: 13px;
		line-height: 24px;
	}
	.price-table-btn {
		font-size: 15px;
	}
	.price-table-btn {
		padding-top: 5px;
	}

}	
@media(max-width:991px){
	.price-table {
		display: block;
		margin: 80px auto 160px auto;
	}
	.price-table-box .price-table:last-child {
		margin-bottom: 60px;
	}
}

/* Progress Bars
==================================*/

.progress {
	background: #FAFAFA;
	box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1) inset;
	border-radius:40px;
	-moz-border-radius:40px;
	-webkit-border-radius:40px;		
	-o-border-radius: 40px;	
	-ms-border-radius: 40px;	
	border-radius: 40px;	
	overflow: visible;
	height: 8px;
	margin: 50px 0 0 0;
}
.progress.lg, .progress-bar.lg {
	height: 40px;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;		
	-o-border-radius: 4px;	
	-ms-border-radius: 4px;	
	border-radius: 4px;	
	line-height: 40px;
	text-align: left;
	text-indent: 10px;
	font-size: 14px;
}

.progress-bar {
	position: relative;
	display: block;
	height: 8px;
	width: 0;
	-moz-border-radius:40px;
	-webkit-border-radius:40px;		
	-o-border-radius: 40px;	
	-ms-border-radius: 40px;	
	border-radius: 40px;	 
	-webkit-transition: width ease-in-out 1s;
	-ms-transition: width ease-in-out 1s;
	-o-transition: width ease-in-out 1s;
	-moz-transition: width ease-in-out 1s;
	transition: width ease-in-out 1s;
    background-color: #E84C3D;
}

.progress-bar label{
	border-radius: 3px;
	position: absolute;
	color: #FFFFFF;
	padding: 5px 15px;
	text-align: center;
	display: inline-block;
	font-size: 12px;
	line-height: 13px;
	-webkit-transform: translate(0%,-142%);
	-moz-transform: translate(0%,-142%);
	-ms-transform: translate(0%,-142%);
	-o-transform: translate(0%,-142%);
	
	
	top: 0px;
	left: 0;
}

.progress-bar label:after {
	content: '';
	position: absolute;
	display: block;
	bottom: -4px;
	left: 43%;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 4px 4px 0 4px;
	/*border-color: #E84C3D transparent;*/
}
.progress-bar label:after {
	/*border-color: #E84C3D transparent;*/
}
.progress-bar.not-loaded label {
	opacity: 0;
	visibility: hidden;
	filter: alpha(opacity=0);
}

.progress-bar label {
	opacity: 1;
	visibility: visible;
	filter: alpha(opacity=100);
	-webkit-transition: all ease-in-out 0.3s 1s;
	-moz-transition: all ease-in-out 0.3s 1s;
	-o-transition: all ease-in-out 0.3s 1s;
	-ms-transition: all ease-in-out 0.3s 1s;
	transition: all ease-in-out 0.3s 1s;
}
.progress-bar label.progress-bar-primary:after {
	border-color: #286090 transparent;
}
.progress-bar label.progress-bar-inverse:after {
	border-color: #ccc transparent;
}
.progress-bar label.progress-bar-info:after {
	border-color: #31B0D5 transparent;
}
.progress-bar label.progress-bar-success:after {
	border-color: #5CB85C transparent;
}
.progress-bar label.progress-bar-warning:after {
	border-color: #EC971F transparent;
}
.progress-bar label.progress-bar-danger:after {
	border-color: #C9302C transparent;
}
.progress-bar-primary {
  background-color: #286090;
}
.progress-bar-inverse {
  background-color: #ccc;
}
.progress-bar-info {
  background-color: #31B0D5;
}
.progress-bar-success {
  background-color: #5CB85C;
}
.progress-bar-warning {
  background-color: #EC971F;
}
.progress-bar-danger {
  background-color: #C9302C;
}

/* accordion and toogle
==================================*/

.toggle-container {
    border: 1px solid rgba(0, 0, 0, 0.05);
}
.toggle-container .panel {
	margin-bottom: 0;
	box-shadow: none;
	-webkit-border-radius: 0 0 0 0;
	-moz-border-radius: 0 0 0 0;
	-ms-border-radius: 0 0 0 0;
	-o-border-radius: 0 0 0 0;
	border-radius: 0 0 0 0;
	border: none;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	position: relative;
}
.toggle-container .panel:last-child {
	border: none; 
}
.toggle-container .panel .panel-title {
	padding: 0;
	color: #2d3e52;
	font-size: 1.1667em;
	position: relative; 
}
.toggle-container .panel .panel-title a {
	white-space: normal;
	display: block;
	padding: 15px; 
	line-height: 24px;
	background: #098FAF;
	color: #fff;
	font-size: 18px;
	font-family: 'DIN-NEXT-MEDIUM';
}
.toggle-container .panel h4.panel-title {
	font-size: 1.3333em; 
}

.toggle-container .panel .panel-title > a:before {
	display: block;
	content: "\f068";
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	margin-right: 16px;
	line-height: 24px;
	font-size: 10px;
	float: left;
	width: 24px;
	height: 24px;
	text-align: center;
	color: #505050;
	background: #fff;
	-webkit-border-radius: 50% 50% 50% 50%;
	-moz-border-radius: 50% 50% 50% 50%;
	-ms-border-radius: 50% 50% 50% 50%;
	-o-border-radius: 50% 50% 50% 50%;
	border-radius: 50% 50% 50% 50%; 
	transition: all 0.4s ease;
}
.toggle-container .panel .panel-title > a.collapsed {
	background: #f6f6f6;
	color: #606060
}
.toggle-container .panel .panel-title > a.collapsed:before {
	content: "\f067";
	color: #fff;
	background: #098FAF; 
}
.toggle-container .panel .panel-content {
	padding: 10px 15px 15px 55px;
}
.toggle-container .panel .panel-content p {
	line-height: 33px;
	font-size: 17px;
	word-spacing: 1px;
}
/*Icon Box
=============================*/
.icon-box {
    margin: 50px 0 50px 0;
    padding: 20px 20px;
    background-color: #fff;
    border-radius: 5px;
	text-align: center;
    -webkit-box-shadow: 0 2px 4px 0 rgba(0,0,0,.08);
       -moz-box-shadow: 0 2px 4px 0 rgba(0,0,0,.08);
            box-shadow: 0 2px 4px 0 rgba(0,0,0,.08);    
    -webkit-transition: 0.3s ease all;
       -moz-transition: 0.3s ease all;
            transition: 0.3s ease all;
}
.icon-box .feature-icon {
    display: block;
    margin-top: -50px;
}
.icon-box .feature-icon i {
    background: #fff;
    border: 3px solid #098FAF;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    text-align: center;
    line-height: 70px;
    font-size: 30px;
    font-weight: 100;
    color: #098FAF;
    -webkit-transition: 0.3s ease all;
       -moz-transition: 0.3s ease all;
            transition: 0.3s ease all;
}
.icon-box  h3{
    color: #098FAF;
    font-size: 20px;
    margin: 15px 0 10px 0;
}
.icon-box  p{
    line-height: 33px;
    font-size: 16px;
    color: #777;
}
.icon-box:hover{
    -webkit-box-shadow: 1px 1px 10px #d7d7d7;
       -moz-box-shadow: 1px 1px 10px #d7d7d7; 
            box-shadow: 1px 1px 10px #d7d7d7;
}
.icon-box:hover .feature-icon i{
    background: #098FAF;
    color: #fff;
}
/*Widgets
=============================*/
.widget {
	margin-bottom: 25px;
}
.widget .widget-head {
	margin-bottom: 15px;
}
.widget .widget-head .title {
	color: #fff;
	font-size: 22px;
	line-height: 33px;
	font-family: 'DIN-NEXT-MEDIUM';
}

/*Contact Widget*/

.contact-widget{
    margin-bottom: 24px;
}
.contact-info .contact-widget:last-child {
	margin-bottom: 0;
}
.contact-widget .contact-icon{
    position: relative;
    width: 60px;
    height: 60px;
    background-color: #098FAF;
    vertical-align: top;
    text-align: center;
	border-top-left-radius: 20px;
	float: right;
}
.contact-widget .contact-icon img{
    margin: 10px auto;
    display: inline-block;
}
.contact-widget .contact-body{
	display: block;
    padding: 0px 80px 10px 0;
}
.contact-widget .contact-body > span{
	display: block;
    color: #0c1b34;
    line-height: 26px;
    font-size: 16px;
	font-family: 'DIN-NEXT-REGULAR';
	
}
.contact-widget .contact-body > span:first-child{
    color: #979797;
    font-size: 16px;
	font-family: 'DIN-NEXT-MEDIUM';
}

@media(min-width:991px) and (max-width:1200px){
    .contact-widget .contact-body > span {
        font-size: 16px;
    }
}
@media(max-width:991px){
    .contact-widget {
        margin-bottom: 0;
        margin-top: 40px;
    }
}

/*Side Widget*/
.widget.side-widget {
    padding: 0;
    border-radius: 5px;
    overflow: hidden;
}
.widget.side-widget .widget-title{
    background-color: #098FAF;
    padding: 0 20px;
    color: #fff;
    margin: 0;    
    overflow: hidden;
}
.widget.side-widget .widget-title > i {
    display: block;
    float: right;
    line-height: 50px;
    font-size: 25px;
	margin-left: 10px;
}
.widget.side-widget .widget-title > .title{
	display: inline-block;
    color: #fff;
    line-height: 45px;
    font-family: 'DIN-NEXT-MEDIUM';
    font-size: 19px;
}
.widget.side-widget .widget-content{
    padding: 20px 15px;
}
/*Section Settings
==========================*/
.section-md {
	padding: 50px 0;
}
.section-head {
	margin-bottom: 20px;
}
.section-head .section-title{
    position: relative;
    display: inline-block;
    font-size: 30px;
	font-family: 'DIN-NEXT-MEDIUM';
	line-height: 55px;
    text-transform: capitalize;
    color: #505050;
    margin-bottom: 20px;
    z-index: 10;
}
.section-head .section-title .blue-color{
    position: relative;
    padding-left: 0px;
	color: #098FAF;
}

.section-head p{
	font-size: 18px;
	line-height: 34px;
	word-spacing: 1px;
	margin: 0;
}
.section-head .more{
    margin-top: 15px;
}
.section-img{
    text-align: center
}
.section-img img{
    display: inline-block;
}

.section-head.text-center{
    margin-right: 0;
}
/* Header
==========================*/


/* Top-Header */
.top-header{
    background: #f6f6f6;
}
.top-header .head-contact{
    background-color: #098faf;
    position: relative;
    min-height: 40px;
    border-bottom-left-radius: 50px;
}
.top-header .head-contact:before{
    position: absolute;
    content: "";
    background-color: #098faf;
    top: 0;
    right: -600px;
    width: 600px;
    height: 100%;
}
.top-header .head-contact .topheader-list.collapse {
    display: block;
    height: auto !important;
}
.top-header .head-contact .btn-responsive-nav{
    float: right;
    margin-top: 5px;
    color: #098faf;
    background-color: #fff;
    font-size: 15px;
    padding: 0 5px;
}
.top-header ul.topheader-list > li.dropdown ul.dropdown-menu {
	margin: 0;
	padding: 0;
	background: #098FAF;
	border-radius: 0;
	border: 1px solid #0A86A6;
}

.top-header ul.topheader-list > li.dropdown li > a {
	display: block;
	line-height: 30px;
	color: #fff;
	font-size: 16px;	
	border-bottom: 1px solid #0A86A6;
}

.top-header ul.topheader-list > li.dropdown li:last-child > a {
	border-bottom: none;
}
.top-header ul.topheader-list > li.dropdown li > a i {
	color: #fff;
}
.top-header ul.topheader-list > li.dropdown li > a:focus,
.top-header ul.topheader-list > li.dropdown li > a:hover {
	background: #0A86A6;
}
.top-header ul.topheader-list > li.dropdown:hover .dropdown-menu {
	visibility: visible;
	opacity: 1;
	-webkit-transform: rotateX(0deg);
	   -moz-transform: rotateX(0deg);
			transform: rotateX(0deg);  
}	







.top-header ul.topheader-list > li.contact-drop ul.dropdown-menu {
	min-width: 270px;
}

.top-header ul.topheader-list > li.contact-drop li {
	display: block;
	line-height: 40px;
	color: #fff;
	font-size: 16px;	
	padding: 0 15px;
	border-bottom: 1px solid #0A86A6;
}

.top-header ul.topheader-list > li.contact-drop li a{
	display: block;
	margin: 0 -15px;
	padding: 0 15px;
	line-height: 40px;
}







.top-header ul.topheader-list > li.dropdown li {
	
}

.top-header ul.topheader-list > li.color-drop ul.dropdown-menu {
	text-align: center;
	padding: 10px 10px;
	min-width: 120px;
}
.top-header ul.topheader-list > li.color-drop li {
	display: inline-block;
	margin-top: 15px;
	padding: 0;
}
.top-header ul.topheader-list > li.color-drop li img {
	display: block;
	margin: 0;
	width: 32px;
	height: 32px;
}


.top-header .head-social .lang {
	float: left;
	font-family: 'DIN-NEXT-BOLD';
    line-height: 30px;
    font-size: 18px;
	margin-right: 15px;
	color: #444
}
.top-header .head-social .lang > img {
    display: block;
    float: right;
    width: 22px;
    height: 22px;
    border-radius: 100%;
    margin-top: 10px;
    margin-left: 1px;
    opacity: 1;
    -webkit-transition: opacity 0.2s ease-in-out;
       -moz-transition: opacity 0.2s ease-in-out;
            transition: opacity 0.2s ease-in-out;     
}
.top-header .head-social .lang:hover {
    color: #ff0000;   
}
.top-header .head-social .lang:hover > img {
    opacity: 0.8;
}
@media (max-width:991px) {
    .top-header .head-contact .topheader-list{
        background-color: #098faf;
        position: absolute;
        top: 41px;
        padding: 0px 20px;
        border-radius: 5px;
        z-index: 130;
        min-width: 230px;
    }
    .top-header .head-contact .topheader-list.collapse {
        display: none!important
    }
    .top-header .head-contact .topheader-list.collapse.in {
        overflow: hidden!important;
        display: block!important
    }
    .top-header .head-contact .topheader-list > li{
        float: none;
        margin: 0;
		display: block;
    }
    .top-header .head-contact .topheader-list > li:last-child{
        margin-bottom: 15px;
    }
	
	.top-header ul.topheader-list > li.dropdown ul.dropdown-menu {
		position: static;
		display: none;
		width: 100%;
		opacity: 1;
		visibility: visible;
		    -webkit-transform: rotateX(0deg);
       -moz-transform: rotateX(0deg);
        -ms-transform: rotateX(0deg);
         -o-transform: rotateX(0deg);
            transform: rotateX(0deg);
	}
	.top-header ul.topheader-list > li.dropdown.open ul.dropdown-menu{
		display: block;
	}
}
@media (max-width:378px){
    .top-header .row{
        background-color: #098faf;
    }
    .top-header .row .col-xs-5,
    .top-header .row .col-xs-7{
        width: 100%;
    }
    .top-header .row .col-xs-7{
        position: absolute;
        width: 80%;
        left: 0;
    }
    .top-header .row .col-xs-7 ul.social-list > li > a > i{
        background-color: #fff;
        color: #222;
    }
    .top-header .row .col-xs-7 ul.social-list > li:hover i{
        background-color: #eee;
        color: #098faf;
    }
}
/*Main Header*/
.header{
	position: relative;
 	background: #f6f6f6;
	z-index: 100;
	width: 100%;
}
.header > .container{
    margin-bottom: -95px;
}
/* Header-Logo */
.header a.logo {
    display: block;
	float: right;
	height: 95px;
	padding: 10px 0;
	-webkit-transition: all 0.2s;
	   -moz-transition: all 0.2s;
	        transition: all 0.2s;	
}
.header a.logo img {
	height: 75px;
	-webkit-transition: all 0.2s;
	   -moz-transition: all 0.2s;
	        transition: all 0.2s;
	
}
.sticky-wrapper.is-sticky .header a.logo {
	padding: 5px 0;
	height: auto;
}
.sticky-wrapper.is-sticky .header a.logo img{
	height: 50px;
} 
.header .header-control {
	float: left;
}
.header .custom-btn{
    float: right;
    margin: 28px 0 0 10px;
	transition: all 0.2s;
}
.sticky-wrapper.is-sticky .header .custom-btn {
	margin: 18px 0 0 10px;
}
/* btn-responsive-nav */
.btn-responsive-nav{
    display: none;
}
/* Main-Nav */
.header ul.navbar-nav{
	position: relative;
    float: left;
    margin: 0;
    margin-left: 30px;
}
.header ul.navbar-nav > li{
    margin-right: 5px;
	padding: 15px 0;
    -webkit-transition: all 0.3s ease-in-out;
       -moz-transition: all 0.3s ease-in-out;
            transition: all 0.3s ease-in-out;
}
.header ul.navbar-nav > li.active,
.header ul.navbar-nav > li:hover{
    background-color: none;
}
.header ul.navbar-nav > li > a{
	font-family: 'DIN-NEXT-MEDIUM';
	padding: 0 17px;
	font-size: 20px;
	color: #707070;
    -webkit-transition: all 0.3s ease-in-out;
       -moz-transition: all 0.3s ease-in-out;
            transition: all 0.3s ease-in-out;
}
.header ul.navbar-nav > li > a > span {
	display: block;
	line-height: 30px;
}
.header ul.navbar-nav > li > a > i {
	display: block;
	text-align: center;
	font-size: 30px;
	line-height: 30px;
	margin-bottom: 5px;
}
.sticky-wrapper.is-sticky .header ul.navbar-nav > li > a > i {
	display: none;
}
.header ul.navbar-nav > li > a:focus {
	background: none;
	color: #707070;
}
.header ul.navbar-nav > li.active > a,
.header ul.navbar-nav > li:hover > a{
    color: #098faf;
    background-color: transparent;  
	
}
@media (min-width:992px) and (max-width:1199px){
   .header ul.navbar-nav{
	   margin-left: 10px;
	}
	.header ul.navbar-nav > li > a{
		padding: 0 12px;
		font-size: 17px;
	}
}


/*Dropdown Menu
=======================*/

@media all and (min-width:992px) {
    ul.navbar-nav > li.dropdown {
		position: static;
    }
    ul.navbar-nav > li.dropdown a.extra {
        display: none;        
    } 
    ul.navbar-nav > li.dropdown ul.dropdown-menu {
        background: #fff;
        color: #1E1E1E;       
		display: block;	
        border: 1px solid rgba(0, 0, 0, 0.07);
	}
	ul.navbar-nav > li.dropdown > ul.dropdown-menu {
		left: auto;
		right: auto;
		padding: 0;
	}
	ul.navbar-nav > li.dropdown:last-child > ul.dropdown-menu {
		left: 0px;
		
	}
	
	 ul.navbar-nav > li.dropdown > ul.dropdown-menu {
		opacity: 0;
		visibility: hidden;
	}	
	ul.navbar-nav > li.dropdown ul.dropdown-menu > li > a {
		font-family: 'DIN-NEXT-MEDIUM';
		font-size: 16px;
		padding: 10px 20px;
		color: #707070;
        -webkit-transition : color 0.4s;
           -moz-transition : color 0.4s;
            -ms-transition : color 0.4s;
             -o-transition : color 0.4s;
                transition : color 0.4s;  
	}
    ul.navbar-nav > li.dropdown ul.dropdown-menu > li + li > a {
        border-top: 1px solid #EEE;
    }
     
    ul.navbar-nav > li.dropdown:hover > .dropdown-menu {
        visibility: visible;
		opacity: 1;
		-webkit-transform: rotateX(0deg);
		   -moz-transform: rotateX(0deg);
		    -ms-transform: rotateX(0deg);
		     -o-transform: rotateX(0deg);
                transform: rotateX(0deg);  
	}		
}
ul.navbar-nav > li.dropdown ul.dropdown-menu li.active a,
ul.navbar-nav > li.dropdown ul.dropdown-menu a:hover {
    color: #098FAF;
	background: #F6F6F6;
}


@media all and (max-width:991px) {
    .btn-responsive-nav {
        display: block;
        float: left;
        background-color: #098faf;
        color: #fff;
        font-size: 25px;
        line-height: 25px;
        margin-top: 30px;
        -webkit-transition: all .3s ease-in-out;
           -moz-transition: all .3s ease-in-out;
                transition: all .3s ease-in-out;
    }
	.sticky-wrapper.is-sticky .header .btn-responsive-nav {
		margin-top: 18px;

margin-bottom: 10px;
	}
    .btn-responsive-nav:hover,
    .btn-responsive-nav:active,
    .btn-responsive-nav:focus {
        background-color: #b4c535;
        color: #fff;
        box-shadow: none;
    }
	
    .header > .container {
        margin-bottom: 0
    }
	ul.navbar-nav .dropdown-menu {
		display: none;
	}
	ul.navbar-nav .open > .dropdown-menu {
		display: block;
	}
    
    .header .custom-btn{
		margin: 30px 0 0 15px;
		line-height: 41px;
		padding: 0 17px;
    }
    .header .navbar-collapse {
		background: #098FAF;
    }
	
    .header .navbar-collapse.collapse {
        display: none!important;
    }
	
    .header .navbar-collapse.collapse.in {
        overflow: hidden!important;
        display: block!important
    }
    .header ul.navbar-nav {
		float: none;
        padding: 0;
        margin: 0
    }
    .header ul.navbar-nav li {
        display: block;
        float: none;
        text-align: right;
        margin: auto;
    }
	
    .header ul.navbar-nav > li:hover{
        background-color: transparent;
    }
	
	.header ul.navbar-nav ul.dropdown-menu {
		position: static;
		clear: both;
		float: none;
		border: none;
		background: none;
		box-shadow: none;          
		padding-right: 20px;
	}
	.header ul.navbar-nav li {
		padding: 0;
		margin: 0;
		
	}
    .header ul.navbar-nav li a {
		position: relative;
		display: block;
		z-index: 2;
		overflow: hidden;
		font-size: 17px;
		text-transform: uppercase;
		text-decoration: none;
		padding: 5px 10px;
		line-height: 40px;
		color: #fff;
		border-bottom: 1px solid #0084A4;
    }  
	.header ul.navbar-nav li:last-child a {
		border-bottom: 0;
	}
	.header ul.navbar-nav > li > a > i {
		float: right;
		line-height: 40px;
		margin-left: 10px;
		margin-bottom: 0;
		color: #fff;
		display: none;
	}
	.header ul.navbar-nav > li > a > span {
		line-height: 40px;
	}
    .header .navbar-nav li a:focus{
		background: none;
		color: #fff;
    }
    .header .navbar-nav li:hover > a {
        color: #b4c535!important;
    } 
    .header .navbar-nav li.active > a,
    .header .navbar-nav li.active > a:hover {
        color: #b4c535;
    }
	.header .navbar-nav li.open > a,
	.header .navbar-nav li.open > a:hover {
		background: #b4c535!important;
		color: #fff!important;
    }	
}
@media(max-width:420px){
	.head-social ul.social-list {
		display: none;
	}
}

/*Footer
=============================*/
.footer {
	padding-top: 25px;
	background: #595959;
}
.footer .footer-head {
	padding-bottom: 20px;
	border-bottom: 1px solid #484848;
}
.footer .footer-head .footer-logo {
	margin-top: 15px;
}
.footer .footer-head .footer-logo img {
	height: 90px;
}
.footer .footer-head .footer-subscribe {
	margin-right: 5%;
	margin-bottom: 0;
}

.footer .footer-head .footer-subscribe .subscribe-form {
	width: 90%;
}

.footer .footer-links-wrap{
	border-top: 1px solid #6f6f6f;
	border-bottom: 1px solid #484848;
	padding-top: 20px;
}
.footer .footer-links-wrap .spacer-xs {
	display: none;
}

.footer .copyright {
	padding: 10px 0 15px;
	border-top: 1px solid #6f6f6f;
}
.footer .copyright p {
	color: #fff;
	font-size: 17px;
	line-height: 30px;
	margin: 0;
	text-align: center;
}
.footer .maarouf-link{
	text-align: center
}
.footer .maarouf{
	display: inline-block;
	margin: 0 auto
}
@media(max-width:1200px){
	.footer .footer-head .footer-subscribe {
		margin-right: 0;
		margin-bottom: 0;
	}

	.footer .footer-head .footer-subscribe .subscribe-form {
		width: 100%;
	}
}
@media(max-width:991px){
	.footer .footer-links-wrap .spacer-xs {
		display: block;
	}
}
@media(max-width:650px){
	.footer .footer-head .col-xs-2,
	.footer .footer-head .col-xs-5 {
		width: 100%;
	}
	.footer .footer-head .footer-subscribe {
		margin: 30px 0;
	}
}
@media(max-width:650px){
	.footer .footer-links-wrap .col-xs-4 {
		width: 50%;
	}
	.footer .footer-links-wrap .spacer-xs {
		display: none;
	}
}
@media(max-width:400px){
	.footer .footer-links-wrap .col-xs-4 {
		width: 100%;
	}
	.footer .footer-links-wrap .spacer-xs {
		display: none;
	}
}

/* home-slider
========================== */
.home-slider{
    
}
#revolution-slider {
    width: 100%!important;
    max-height: 497px!important;	
}

.fullwidthbanner-container {
    width: 100%!important;
    max-height: 497px!important;
    position: relative;
    padding: 0;
    overflow: hidden;
    color: #fff;
}
/*
@media(min-width:1400px) and (max-width:1599px){
	#revolution-slider,
	.fullwidthbanner-container {
		max-height: 589px!important;
	}
}

@media(min-width:1600px) and (max-width:1920px){
	#revolution-slider,
	.fullwidthbanner-container {
		max-height: 707px!important;
	}
}
@media(min-width:1921px) and (max-width:2019px){
	#revolution-slider,
	.fullwidthbanner-container {
		max-height: 744px!important;
	}
}

@media(min-width:2200px) and (max-width:2500px) {
	#revolution-slider,
	.fullwidthbanner-container {
		max-height: 921px!important;
	}
}
*/

.custom-font-1 {
    font-size: 40px;
    line-height: 60px;
    color: #fff;
    font-family: 'Swissra-Bold';
}
.custom-font-2 {
    font-size: 17px;
    line-height: 28px;
    color: #fff;
    font-family: 'Swissra-Normal';
}


.slider-btn {
    border: none;
    padding: 0;
    font-size: 13px;
    font-weight: bold;
    display: inline-block;
    line-height: 1;
    text-transform: uppercase;
	border-radius: 7px;
	overflow: hidden;
	height: 50px;
    -webkit-transition: 0.3s;
       -moz-transition: 0.3s;
        -ms-transition: 0.3s;
         -o-transition: 0.3s;
            transition: 0.3s;       
}
.slider-btn img {
	height: 50px;
}
.btn-color {
    background: #4F74C3;
    color: #fff!important;
}
.btn-color:hover {
    background: #1C3254;
}
.btn-border {
    background: #32b58b;
    padding: 16px 30px;
    color: #fff!important;
}
.btn-border:hover,
.btn-border:focus {
    border-color: #ffae4e!important;
}
span.color {
    color: #ffae4e;
}

.tp-bullets.preview4,
.tparrows.preview4,
.tp-bannertimer {
    z-index: 20;
}
.tp-bannertimer {
    background: #098FAF;
    height: 5px;
}
.tp-bullets.preview4{
    left: auto!important;
    right: 8%!important;
    bottom: 10%!important;
	display: none;
}
.tp-bullets.preview4 .bullet:hover,
.tp-bullets.preview4 .bullet{
    background: #fff !important;
    width: 8px !important;
    height: 8px !important;
    border: 2px solid #fff!important;
    background-color: #fff!important;
    margin-right: 6px!important;
}
.tp-bullets.preview4 .bullet.selected{
    width: 8px !important;
    height: 8px !important;
    border: 2px solid #fff!important;
    background-color: transparent!important;
}
/* page-head
============================*/
.page-head {
    position: relative;
    background-image: url(../../../images/page-head-img.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 60px;
    padding: 10px 0;
    text-align: center;
}
.page-head:before{
    position: absolute;
    content: "";
    top: 0px;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    border-radius: 0;
}
.page-head > .container:after{
    position: absolute;
	display: block;
    content: "";
    top: 0px;
	left: 15px;
    width: 300%;
    height: 100%;
    background-color: rgba(9,143,175,0.8);
    border-radius: 5px 0 0 150px;
	z-index: -1;
}
.page-head > .container {
    position: relative;
    z-index: 1;
}
.page-head .breadcrumb{
    background-color: transparent;
	margin: 0;
	padding: 10px 0;
}
.page-head .breadcrumb li{
    display: inline-block;
    font-size: 18px;
}
.page-head .breadcrumb li > a,
.breadcrumb > .active{
    color: #fff; 
}
.breadcrumb > li + li:before{
    color: #fff;
    content: "|";
    padding: 0 10px;
}

/*Home Page
===========================*/

/* program-img--section*/
.program-img--section {
	padding: 50px 0 20px 0;
	background: #fff;
}
.program-img--section .section-head{
    margin-bottom: 30px;
}
.program-img--section .section-head .section-title {
	margin-bottom: 12px;
}
.program-img--item{
    position: relative;
    height: 180px;
    margin-bottom: 30px;
    border: 3px solid #098FAF;
    overflow: hidden;
    -webkit-transition: all 0.4s ease-in-out;
       -moz-transition: all 0.4s ease-in-out;
            transition: all 0.4s ease-in-out;
}
.grid-item {
    float: left;
    width: 25%;
    height: 300px;
    padding: 0 2.5px 5px 2.5px;
}
.grid-item .program-img--item{
    height: 100%;
    margin: 0;
}
.grid-item--width2 { width: 50%; }

.program-img--item:hover{
    border: 10px solid #098FAF;
}
.program-img--item.item-lg{
    height: 390px;
}
.program-img--item .program-img--item-img{
    position: relative;
    height: 100%;
}
.program-img--item .program-img--item-img:after{
    position: absolute;
    content: "";
    top: 0;
    width: 100%;
    height: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.39);
    -webkit-transition: all 0.4s ease-in-out;
       -moz-transition: all 0.4s ease-in-out;
            transition: all 0.4s ease-in-out;
}
.program-img--item:hover .program-img--item-img:after{
    height: 100%;
}
.program-img--item .program-img--item-img img{
    width: 100%;
    height: 100%;
}
.program-img--item .program-img--item-content{
    position: absolute;
    bottom: -70px;
    padding: 0 20px 10px 20px;
    z-index: 2;
    -webkit-transition: all 0.4s ease-in-out;
       -moz-transition: all 0.4s ease-in-out;
            transition: all 0.4s ease-in-out;
}
.program-img--item:hover .program-img--item-content{
    bottom: 0;
}
.program-img--item .program-img--item-content .title{
    color: #fff;
    font-size: 18px;
    line-height: 30px;
    text-transform: uppercase;
    -webkit-transition: all 0.3s ease-in-out;
       -moz-transition: all 0.3s ease-in-out;
            transition: all 0.3s ease-in-out;
}
.program-img--item .program-img--item-content .title:hover{
    color: #fff;
}

/*home-feature*/
.home-feature {
    padding: 40px 0;
    background-image: url(../../../images/bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.home-feature .section-head {
	margin-bottom: 0;
}
.home-feature .icon-box {
	background: none;
	box-shadow: none;
	margin: 0;
}
.home-feature .icon-box .feature-icon {
	margin-top: 0;
}
.home-feature .icon-box .feature-icon i {
    background: none;
    border: none;
    color: #098FAF;
	font-size: 50px;
	width: 65px;
	height: 65px;
}
/*Home Price*/
.home-price {
	background: #fff;
	padding: 50px 0 80px 0;
}
.home-price .section-head{
	padding-top: 35px;
}
.home-price .price-table {
	
}
.home-price .price-table, 
.home-price .price-table::after, 
.home-price .price-table::before {
    background: #B4C535;
}
/*Statistics Rate*/
.statistics-rate {
	padding: 40px 0 30px;
	background: #EEEEEE;
}
.statistics-rate .owl-controls .owl-page {
	width: 15px;
	height: 15px;
	border: 2px solid #ccc;
	display: inline-block;
	border-radius: 100%;
	margin: 0 2px;
}
.statistics-rate .owl-controls .owl-page.active {
	background: #ccc;
}
.vote-box {
	position: relative;
	border: 1px solid #ddd;
	padding: 25px 20px;	
}
.vote-box .title {
	font-family: 'DIN-NEXT-MEDIUM';
	margin-bottom: 25px;
	line-height: 35px;
}
    .vote-box:before {
        content: "";
        display: block;
        position: absolute;
        width: 146px;
        height: 146px;
        top: 0;
        left: 0;
        background: url(../../../images/vote_bg.png);
        opacity: 0.3;
    } 

.vote-box .radio-check-item:last-child  {
	margin-left: 0;
}
.vote-box .vote-btns {
	margin-top: 10px;
	border: 5px solid #098faf;
	overflow: hidden;
	text-align: center;
}
.vote-box .vote-btns button {
	display: block;
	float: right;
	border: none;
	border-left: 2px solid #098faf;
	background: none;
	box-shadow: none;
	font-size: 16px;
	font-family: 'DIN-NEXT-MEDIUM';
	line-height: 40px;
	padding: 0 12px;
	-webkit-transition: all 0.4s;
	   -moz-transition: all 0.4s;
	        transition: all 0.4s;
}
.vote-box .vote-btns button:last-child {
	border-left: none;
}
.vote-box .vote-btns button:hover {
	color: #098faf;
} 
/* Banks Section*/
.banks-section {
    background-color: #EEEEEE;
    max-height: 200px;
}
.banks-section .row .col-md-8{
    background-color: #098FAF;
	border-top-right-radius: 250px;
}
.banks-section .row .col-md-8:after{
    position: absolute;
    content: "";
    top: 0;
    left: -550%;
    background-color: #098FAF;
    width: 550%;
    height: 100%;
}
.carousel-banks-section {
	margin-right: 25px;
}
.banks-section .section-head{
    margin-bottom: 0;
}
.banks-section .section-head h3 {
	margin-bottom: 0;
}
.banks-section .section-head p{
}
.banks-section .section-head .more {
	margin-top: 5px;
}
.banks-section .client-box{
    background-color: #fff;
    padding: 7px;
    height: 80px;
    -webkit-box-shadow: 3px 0px 14px -1px rgba(0, 0, 0, 0.1);
       -moz-box-shadow: 3px 0px 14px -1px rgba(0, 0, 0, 0.1);
            box-shadow: 3px 0px 14px -1px rgba(0, 0, 0, 0.1);
}
.banks-section .client-box img{
    height: 100%;
    margin: auto;
}
.sliphover-overlay {
	padding: 5px!important;
}

/*Owel-carousel-overwrite*/
.banks-section .owl-theme .owl-controls{
    margin: 0;
    position: absolute;
    top: 10px;
    right: calc(50% - 44px);
}

.banks-section .owl-carousel .owl-wrapper-outer{
    overflow-x: hidden;
    padding: 60px 0 30px 0;
}
.banks-section .owl-controls .owl-buttons div{
    background-color: transparent;
    color: #fff!important;
    -webkit-transition: all .35s ease-in-out;
       -moz-transition: all .35s ease-in-out;
            transition: all .35s ease-in-out;
}
.banks-section .owl-controls .owl-buttons div:hover{
    background-color: transparent!important;
    color: #222!important;
}
@media (max-width:991px){
    .banks-section{
        max-height: none;
    }
    .banks-section .section-head{
        position: relative;
        margin: 0;
        z-index: 2;
        padding: 30px 0;
        text-align: center;
    }
}



/*About Program
===========================*/
/*about-program-section*/
.about-program-section .title {
	margin-bottom: 15px;
	word-spacing: 1px;
	font-family: 'DIN-NEXT-MEDIUM';
	font-size: 20px;	
}
.about-program-section p {
	line-height: 33px;
	word-spacing: 1px;
	margin-bottom: 15px;
	font-size: 17px;
}
.about-program-section p:last-child {
	margin-bottom: 0;
} 

.president-note-section {
	overflow: hidden;
	padding: 0;
}
.president-note-section .welcome-img {
	display: block;
	float: right;
	width: 35%;
	padding: 15px;
	text-align: center;
	margin-left: 20px;
	border-left: 1px solid #f1f1f1;
	border-bottom: 1px solid #f1f1f1;
	
}
.president-note-section .welcome-img h3 {
	font-size: 17px;
	color: #333;
	line-height: 30px;
	margin-top: 15px;
	font-family: 'DIN-NEXT-MEDIUM';
}
.president-note-section .welcome-img h4 {
	color: #444;
	font-size: 16px;
	line-height: 30px;
	font-family: 'DIN-NEXT-MEDIUM';
}
.president-note-section .welcome-cont {
	display: block;
	padding: 20px;
}
.president-note-section .welcome-cont p {
	line-height: 33px;
	word-spacing: 1px;
	margin-bottom: 15px;
	font-size: 17px;
}
.president-note-section .welcome-cont p:last-child {
	margin-bottom: 0;
} 
.president-note-section .welcome-cont .title {
	margin-bottom: 15px;
	word-spacing: 1px;
	font-family: 'DIN-NEXT-MEDIUM';
	font-size: 20px;
}


@media(max-width:991px){
	.president-note-section .welcome-img {
		width: 45%;
	}
}
@media(max-width:767px){
	.president-note-section .welcome-img {
		width: 100%;
		float: none;
		text-align: center;
	}
	.president-note-section .welcome-img img {
		width: 300px;
		display: inline-block;
	}
}

/*Media Center Pages
================================*/
/*News Page*/
.blog-item{
    position: relative;
    margin-bottom: 30px;
    background-color: #fff;
    padding: 7px;
    border-radius: 7px;
    -webkit-transition: all .35s ease-in-out;
       -moz-transition: all .35s ease-in-out;
            transition: all .35s ease-in-out;
    border: 1px solid #f0f0f0;
}
.blog-item:hover{
    -webkit-transform: translateY(-3px);
       -moz-transform: translateY(-3px);
            transform: translateY(-3px);
    -webkit-box-shadow: 0px 0px 22px 0px rgba(0, 0, 0, 0.08);
       -moz-box-shadow: 0px 0px 22px 0px rgba(0, 0, 0, 0.08);
            box-shadow: 0px 0px 22px 0px rgba(0, 0, 0, 0.08);
}

.blog-item .blog-item-img {
    position: relative;
    height: 170px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 5px;
}
.blog-item .blog-item-img img {
    height: 100%;
    width: 100%;
    -webkit-transition: all .1s ease-in-out .3s;
       -moz-transition: all .1s ease-in-out .3s;
            transition: all .1s ease-in-out .3s;
}

.blog-item .blog-item-content{
    padding: 0 5px;
}
.blog-item .blog-item-hover:before,
.blog-item .blog-item-hover:after{
    position: absolute;
    content: "";
    right: 0;
	background: #098FAF;
	opacity: 0.8;
    width: 100%;
    height: 50%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .35s ease-in-out .3s;
       -moz-transition: all .35s ease-in-out .3s;
            transition: all .35s ease-in-out .3s;
}
.blog-item .blog-item-hover:before{
    top: -50%;
}
.blog-item .blog-item-hover:after{
    bottom: -50%;
}

/*after blog item hover*/
.blog-item:hover .blog-item-hover:before,
.blog-item:hover .blog-item-hover:after{
    opacity: 0.8;
    visibility: visible;
    -webkit-transition: all .35s ease-in-out;
       -moz-transition: all .35s ease-in-out;
            transition: all .35s ease-in-out;
}
.blog-item:hover .blog-item-hover:before{
    top: 0;
}
.blog-item:hover .blog-item-hover:after{
    bottom: 0;
    -webkit-transition: all .35s ease-in-out;
       -moz-transition: all .35s ease-in-out;
            transition: all .35s ease-in-out;
}
.blog-item:hover .blog-item-hover a{
    top: calc(50% - 12px);
    -webkit-transition: top .35s ease-in-out .3s , color .35s ease-in-out;
       -moz-transition: top .35s ease-in-out .3s , color .35s ease-in-out;
            transition: top .35s ease-in-out .3s , color .35s ease-in-out;
}
.blog-item .blog-item-hover a{
    position: absolute;
    top: -100%;
    right: calc(50% - 49px);
    font-size: 14px;
    display: block;
    color: #fff;
    z-index: 1;
    -webkit-transition: all .35s ease-in-out;
       -moz-transition: all .35s ease-in-out;
            transition: all .35s ease-in-out;
}
.blog-item .blog-item-hover a:hover{
    color: #222;
    -webkit-transition: color .35s ease-in-out;
       -moz-transition: color .35s ease-in-out;
            transition: color .35s ease-in-out;
}
.blog-item .blog-item-hover a:hover i{
    color: #222;
    border-color: #222;
}
.blog-item .blog-item-hover a i{
    width: 30px;
    height: 30px;
    line-height: 27px;
    text-align: center;
    border-radius: 50%;
    color: #fff;
    border: 2px solid #fff;
    margin-right: 5px;
    font-weight: bold;
    -webkit-transition: all .35s ease-in-out;
       -moz-transition: all .35s ease-in-out;
            transition: all .35s ease-in-out;
}
.blog-item .blog-item-content .blog-info .text{
    font-size: 15px;
    color: #9a9a9a;   
	line-height: 30px;
}
.blog-item .blog-item-content .blog-info .text span:nth-of-type(2){
    color: #32b58b;
}
.blog-item .blog-item-content .blog-info .text span:nth-of-type(3){
}
.blog-item .blog-item-content .title{
    font-size: 19px;
    color: #555;
	font-family: 'DIN-NEXT-MEDIUM';
    margin: 5px 0 15px 0;
    line-height: 22px;
}
.blog-item .blog-item-content p{
    font-size: 16px;
    line-height: 32px;
	word-spacing: 1px;
}

.blog-item.blog-list {
	overflow: hidden;
	border: 1px solid #f9f9f9;
}
.blog-item.blog-list .blog-item-img {
	float: right;
	width: 32%;
	margin-left: 3%;
	margin-bottom: 0;
	height: 210px;
	border: 1px solid #f5f5f5;
}
.blog-item.blog-list .blog-item-img img {
	
}

.blog-item.blog-list .blog-item-content {
	width: 65%;
	float: right;
	padding-top: 5px;
}
.blog-item.blog-list .blog-item-content .blog-info .text {
    font-size: 14px;
	line-height: 25px;
}
.blog-item.blog-list .blog-item-content .title {
	font-size: 18px;
}
.blog-item.blog-list .blog-item-content .custom-btn {
	margin-top: 10px;
	padding: 0 30px;
	line-height: 36px;
	height: 40px;
}
/*page-pager*/
.page-pager .pager li > a{
    border: 0;
    padding: 0 10px;
	font-size: 17px;
    font-family: 'DIN-NEXT-MEDIUM';
	color: #333;
	background: none!important;
    -webkit-transition: all .3s ease-in-out;
       -moz-transition: all .3s ease-in-out;
            transition: all .3s ease-in-out;
}
.page-pager .pager li > a:hover, 
.page-pager .pager li > a:focus{
    background-color: transparent;
    color: #098FAF;
}
.page-pager .pager li > a:hover i, 
.page-pager .pager li > a:focus i{
    border-color: #098FAF;
    color: #098FAF
}
.page-pager .pager li > a i{
    width: 30px;
    height: 30px;
    line-height: 27px;
    border: 2px solid #333;
    border-radius: 50%;
    font-weight: bold;
    margin: 0 7px;
    -webkit-transition: all .3s ease-in-out;
       -moz-transition: all .3s ease-in-out;
            transition: all .3s ease-in-out;
}



/* Blog-Post-Page*/
.blog-post{
    padding-bottom: 20px;
    color: #9a9a9a;
    border-bottom: 1px solid #f2f2f2;
}
.blog-post .Blog-post-head .title{
    margin-bottom: 20px;
	font-family: 'DIN-NEXT-MEDIUM';
	font-size: 20px;
	color: #606060;
}
.blog-post .Blog-post-head .blog-post-info{
    padding: 7px;
    border-radius: 10px;
    background-color: #f9f9f9;
}
.blog-post .Blog-post-head .blog-post-info .blog-post-img img{
    border-radius: 10px;
	width: 100%;
}
.blog-post .Blog-post-head .blog-post-info .blog-post-detail{
    padding: 10px 14px;
    margin-top: 7px;
    border-radius: 10px;
    background-color: #fff;
}
.blog-post .Blog-post-head .blog-post-info .blog-post-detail p{
    display: inline-block;   
	font-size: 15px;
}
.blog-post .Blog-post-head .blog-post-info .blog-post-detail p span{
    color: #32b58b;
}
.blog-post .blog-post-content{
    margin-top: 30px;
}
.blog-post .blog-post-content > p{
    margin-bottom: 20px;
    line-height: 35px;
	font-size: 17px;
}
.blog-comments-title .title{ 
    padding-right: 15px;
    position: relative;
    margin-bottom: 10px;
	font-family: 'DIN-NEXT-MEDIUM';
}
.blog-comments-title .title:before{
    position: absolute;
    content: "";
    top: 17px;
    right: 0;
    width: 8px;
    height: 8px;
    background-color: #098FAF;
    border-radius: 50%;
}

/* Comments */
.blog-post-comments{
    padding-top: 40px;
}
.blog-post-comments .comment-item-img {
    float: right;
    overflow: hidden;
    border-radius: 10px;
}
.blog-post-comments .comment-item-img img {
	width: 60px;
	height: 60px;
}
.blog-post-comments .comment-item-content {
    padding-right: 75px;
}
.blog-post-comments .comment-item-content .title {
    margin: 0px 0;
	font-family: 'DIN-NEXT-MEDIUM';
}
.blog-post-comments .comment-item-content .blog-date {
    color: #ababab;
}
.blog-post-comments .comment-item-content p {
    margin: 15px 0;
	font-size: 16px;
	line-height: 33px;
}
.blog-post-comments .comment-item-content .reply {
    background-color: transparent;
    border: none;
    color: #098FAF;
	font-family: 'DIN-NEXT-MEDIUM';
	font-size: 16px;
    margin-bottom: 25px;
    -webkit-transition: all 0.3s ease-in-out;
       -moz-transition: all 0.3s ease-in-out;
            transition: all 0.3s ease-in-out;
}
.blog-post-comments .comment-item-content .reply:hover{
    color: #152B5B;
}
.blog-post-comments .comment.reply-comment {
    padding: 25px 0;
    border-top: 1px solid #f2f2f2;
}
@media(max-width:400px){
    .blog-post-comments .comment-item-content {
        padding-right: 0;
    }
    .blog-post-comments .comment-item-content .title {
        margin: 10px 0;
        margin-right: 85px;
    }
    .blog-post-comments .comment-item-content .blog-date {
        color: #ababab;
        margin-right: 15px;
    }
}
.write-comment .custom-btn{
    width: auto;
}


.update-program-item {
	margin-bottom: 30px;
}
.update-program-item .title {
	margin-bottom: 15px;
    word-spacing: 1px;
    font-family: 'DIN-NEXT-MEDIUM';
    font-size: 20px;
}

.title-lg {
	margin-bottom: 15px;
    word-spacing: 1px;
    font-family: 'DIN-NEXT-MEDIUM';
    font-size: 20px;
}

ul.update-list {
	border: 1px solid #ddd;
}
ul.update-list li {
	background: #F5F5F5;
	padding: 0 10px;
	line-height: 38px;
	font-size: 16px;
}
ul.update-list li:nth-child(even){
	background: #E6E6E6;
}

/* Login & Register Page
============================= */
.login-register{
    background-color: #fff;
    padding: 20px;
	box-shadow: 5px 8px 26px #777
}
.login-register .login-register-head{
    margin-bottom: 30px;
    text-align: center;
}

.login-register .login-register-content{}

.login-register .login-register-content .form-group{

}
.login-register .login-register-content .form-group > label{
    line-height: 30px;
	line-height: 30px;
	font-size: 16px;
	font-family: 'DIN-NEXT-MEDIUM';
	color: #707070;
}
.login-register .login-register-content .form-group .form-control{
    height: 50px;
    border: 1px solid #ececec;
}
.login-register .login-register-content .radio-check-item{
    display: inline-block;
}
.login-register .login-register-content .form-group a.forget-password{
    float: left;
    color: #ff0000;
	font-family: 'DIN-NEXT-MEDIUM';
	font-size: 15px;
}
.login-register .login-register-content .form-group span{
    display: block;
    position: relative;
    text-align: center;
    color: #b4b4b4;
    margin: 20px 0 10px;
	font-family: 'DIN-NEXT-MEDIUM';
	font-size: 17px;
}
.login-register .login-register-content .form-group span:before,
.login-register .login-register-content .form-group span:after{
    position: absolute;
    content: "";
    top: 15px;
    left: 0;
    width: calc(50% - 60px);
    border: 1px dashed #b4b4b4;
}
.login-register .login-register-content .form-group span:after{
    right: 0;
    left: auto;
}
.login-register .login-register-content .custom-btn{
    width: 100%;
    height: 50px;
    font-size: 17px;
    margin: 25px 0 15px;
    text-align: center;
	font-family: 'DIN-NEXT-MEDIUM';
}
.login-register .login-register-content a.custom-btn{
    padding: 0;
    line-height: 50px;
}
.login-register .login-register-content .gray-btn{
    background-color: #f2f3f4;
    color: #333;
    margin-top: 15px;
}
@media(max-width:400px){
    .login-register .login-register-content .form-group a.forget-password{
        float: none;
        display: block;
        margin-top: 15px;
    }
}



/*Profile Pages
===============================*/
.account-sidebar {
    display: block;
    background: #fff;
    -webkit-box-shadow: 0 2px 4px 0 rgba(0,0,0,.08);
       -moz-box-shadow: 0 2px 4px 0 rgba(0,0,0,.08);
            box-shadow: 0 2px 4px 0 rgba(0,0,0,.08);    
}
.account-sidebar .account-img {
    padding: 10px 5px;
    text-align: center;
} 
.account-sidebar .account-img img {
    width: 110px;
    height: 110px;
    border-radius: 100%;
    margin: 0 auto;
}
.account-sidebar li a {
    display: block;
    overflow: hidden;
    line-height: 40px;
    color: #505050 ;
    border-top: 1px solid #eaeaea;
    padding-right: 0px;
	font-size: 16px;
	font-family: 'DIN-NEXT-MEDIUM';
}
.account-sidebar li:hover a,
.account-sidebar li.active a {
    background: #098FAF;
    color: #fff;
}
.account-sidebar li a i {
    display: block;
    float: right;
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin-left: 10px;
    text-align: center;
    border-left: 1px solid #eaeaea;
}


















/*Price Table
=========================*/

.payment-methods {
	display: block;
	margin-top: 40px;
}



.radio-check-item.img-check {
	display: inline-block;
	margin-left: 10px;	
}
.radio-check-item.img-check input[type="radio"]{
    display: none;
}
.radio-check-item.img-check p {
	line-height: 30px;
	height: 40px;
	width: 220px;
	text-align: center;
	font-family: 'DIN-NEXT-MEDIUM';
	font-size: 20px;
	color: #707070;
	background: #f4f4f4;
}
.radio-check-item.img-check input[type="radio"] + label {
    position: relative;
	display: block;
	width: 220px;
	height: 120px;
	padding-right: 25px;
	padding-top: 30px;
    margin: 0;
    cursor: pointer;
	border: 2px solid #f0f0f0;
	border-bottom: 0;
}
.radio-check-item.img-check input[type="radio"] + label img {
	
}
.radio-check-item.img-check input[type="radio"] + label::before{
    position: absolute;
    content: "";
    width: 25px;
    height: 25px;
	border: 2px solid #e1d7c2;
    border-radius: 100%;
    background-color: #fefbf5;
    top: -15px;
    right: -15px;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
    text-align: center;
    line-height: 20px;
}

.radio-check-item.img-check input[type="radio"]:checked + label::before{
    content: "\f00c";
    font-size: 14px;
	background: #098FAF;
	border-color: #098FAF;
	color: #fff;
}

.payment-methods .custom-btn {
	display: inline-block;
	width: auto;
	padding: 0 40px;
}













/* Messages-Pages*/
.messages-nav {
    overflow: hidden;
    margin-bottom: 20px;
    padding: 20px 0;
    background: #efefef;
    border-radius: 5px;    
}
.messages-nav > li {
    float: right;
}
.messages-nav > li > a {
    display: block;
    line-height: 30px;
    color: #505050;
    padding: 0 15px;
    font-size: 18px;
	font-family: 'DIN-NEXT-MEDIUM';
    -webkit-transition: all 0.4s;
       -moz-transition: all 0.4s;
            transition: all 0.4s;
}
.messages-nav > li:hover > a, 
.messages-nav > li.active > a {
    color: #098FAF;
}

.message .section-head{
    margin-bottom: 10px;
}

.user-message{
    display: block;
    background-color: #f9f9f9;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 30px;
}
.user-message .ticket-number{
    float: right;
    width: 150px;
    height: 90px;
    overflow: hidden;
    margin-left: 10px;
}
.user-message .ticket-number p {
	line-height: 90px;
	font-size: 23px;
	text-align: center;
}
.user-message .title {
	line-height: 30px;
}
.user-message p{
    color: #aeaeae;
	line-height: 25px;
	margin: 0;
}
.user-message .message-head,
.user-message .message-content,
.user-message .message-action{
    display: inline-block;
    padding: 17px 15px;
    margin-left: calc(50% - 255px);
}
.user-message .message-action{
    margin-left: 0;
    font-size: 25px;
    color: #fa983f;
    padding: 0;
}
.user-message .message-action:hover i:before {
    content: "\f005";
}


.message-detail.box-item {
    padding: 0;
}
.message-detail .message-detail-head {
    padding: 0 0 30px 0;
    overflow: hidden;
}
.message-detail .message-detail-head .title {
    line-height: 40px;
    float: right;
}
.message-detail .message-detail-head .custom-btn {
    float: left;
}

.message-detail .user-input{
	overflow: hidden;
	padding-bottom: 25px;
	border-bottom: 1px solid #efefef
}
.message-detail form.user-input{
	margin-bottom: 25px
}
.message-detail form.user-input textarea{
	width: 100%;
	padding: 10px 20px;
	border: 1px solid #efefef;
	border-radius: 5px;
	margin-bottom: 10px;
	font-size: 22px
}.message-detail form.user-input input{
	float: right;
	display: inline-block;
	margin-left: 15px
}
.message-detail form.user-input button{
	background-color: #098faf;
	color: #fff;
	border: none;
	font-size: 20px;
	border-radius: 10px;
	float: left
	
}
.message-detail form button.custom-btn{
	margin-top: 0
}
.message-detail .message-detail-head table{
	margin: 0
}

/*** ticket-detail - comment **/ 
.officer-comment,
.user-comment {
	border: 1px solid #ccc;
	overflow: hidden;
	margin-bottom: 10px
}
.officer-comment{
	background-color: #f2f9ff
}
.message-detail-cont {
    overflow: hidden;
    padding: 0;
}
.message-detail-cont .comment-content{
	padding-left: 10px
}
.officer-comment .comment-head,
.user-comment .comment-head {
	float: right;
	width: 23%;
	margin-left: 2%;
	padding: 25px 20px;
	border-left: 1px solid #ccc
}
.officer-comment .comment-head span.statue,
.user-comment .comment-head span.statue{
	color: #f00
}
.officer-comment .comment-content,
.user-comment .comment-content {
	float: right;
	width: 75%;
}
.message-detail-cont .comment-content .comment-date{
	color: #098FAF;
	border-bottom: 1px solid #ccc;
	display: block
}
.officer-comment .comment-content p{
	color: #333
}
