/* SkyNet TV HTML Template */

/************ TABLE OF CONTENTS ***************
1. Fonts
2. Reset
3. Global
4. Main Header / Style Two / Style Three
5. Banner Section

**********************************************/

/* 
	font-family: 'Lato', sans-serif;
	font-family: 'Oswald', sans-serif;
*/

/*** 

====================================================================
	Root Code Variables
====================================================================

 ***/

/* Theme Color */

:root {
	
	/* #d6111e in decimal RGB */
  --main-color: rgb(214,17,30);
  
  /* #c00f1b in decimal RGB */
  --main-color-two: rgb(192,15,27);
  
  /* #000000 in decimal RGB */
  --black-color:rgb(0,0,0);
  
  /* #ffffff in decimal RGB */
  --white-color:rgb(255,255,255);
  
  /* #ffffff in decimal RGBA */
  --white-color-opicity:rgba(255,255,255,0.80);
  
  /* #ffffff in decimal RGBA Two */
  --white-color-opicity-two:rgba(255,255,255,0.50);
  
  /* #ffffff in decimal RGBA Three */
  --white-color-opicity-three:rgba(255,255,255,0.20);
  
  /* #000000 in decimal RGB */
  --black-color:rgb(0,0,0);
  
  /* #ffffff in decimal RGBA Two */
  --black-color-opicity:rgba(0,0,0,0.80);
  
  /* #ffffff in decimal RGBA Two */
  --black-color-opicity-two:rgba(0,0,0,0.20);
  
  /* #222222 in decimal RGB */
  --dark-text-color:rgb(34,34,34);
  
  /* #333333 in decimal RGB */
  --dark-text-color-two:rgb(51,51,51);
  
  
  --font-family-lato: 'Lato', sans-serif;
  --font-family-oswald: 'Oswald', sans-serif;
	
/* Heading Fonts */
  
  --font-12: 12px;
  --font-14: 14px;
  --font-15: 15px;
  --font-16: 16px;
  --font-18: 18px;
  --font-17: 17px;
  --font-20: 20px;
  --font-22: 22px;
  --font-24: 24px;
  --font-26: 26px;
  --font-28: 28px;
  --font-30: 30px;
  --font-34: 34px;
  --font-36: 36px;
  --font-40: 40px;
  --font-44: 44px;
  --font-46: 46px;
  --font-48: 48px;
  --font-50: 50px;
  --font-55: 55px;
  --font-60: 60px;
  --font-64: 64px;
  --font-68: 68px;
  --font-70: 70px;
  --font-72: 72px;
  --margin-zero: 0px;
  
  /* Margin Left Variables */
  --margin-left-5: 5px;
  --margin-left-10: 10px;
  --margin-left-15: 15px;
  --margin-left-20: 20px;
  --margin-left-30: 30px;
  --margin-left-35: 35px;
  --margin-left-40: 40px;
  --margin-left-50: 50px;
  --margin-left-60: 60px;
  --margin-left-70: 70px;
  --margin-left-80: 80px;
  --margin-left-90: 90px;
  --margin-left-100: 100px;
  
  /* Margin Top Variables */
  --margin-top-5: 5px;
  --margin-top-10: 10px;
  --margin-top-15: 15px;
  --margin-top-20: 20px;
  --margin-top-25: 25px;
  --margin-top-30: 30px;
  --margin-top-35: 35px;
  --margin-top-40: 40px;
  --margin-top-50: 50px;
  --margin-top-60: 60px;
  --margin-top-70: 70px;
  --margin-top-80: 80px;
  --margin-top-90: 90px;
  --margin-top-100: 100px;
  
  /* Margin Right Variables */
  --margin-right-5: 5px;
  --margin-right-10: 10px;
  --margin-right-15: 15px;
  --margin-right-20: 20px;
  --margin-right-25: 25px;
  --margin-right-30: 30px;
  --margin-right-40: 40px;
  --margin-right-50: 50px;
  --margin-right-60: 60px;
  --margin-right-70: 70px;
  --margin-right-80: 80px;
  --margin-right-90: 90px;
  --margin-right-100: 100px;
  
  /* Margin Bottom Variables */
  --margin-bottom-5: 5px;
  --margin-bottom-10: 10px;
  --margin-bottom-15: 15px;
  --margin-bottom-20: 20px;
  --margin-bottom-25: 25px;
  --margin-bottom-30: 30px;
  --margin-bottom-35: 35px;
  --margin-bottom-40: 40px;
  --margin-bottom-45: 45px;
  --margin-bottom-50: 50px;
  --margin-bottom-60: 60px;
  --margin-bottom-70: 70px;
  --margin-bottom-80: 80px;
  --margin-bottom-90: 90px;
  --margin-bottom-100: 100px;
  
}

/*** 

====================================================================
	Reset
====================================================================

 ***/
 
* {
	margin:0px;
	padding:0px;
	border:none;
	outline:none;
}

/*** 

====================================================================
	Global Settings
====================================================================

 ***/

body {
	font-family: var(--font-family-oswald);
	font-size:14px;
	color:var(--text-color);
	line-height:1.6em;
	font-weight:400;
	background:var(--white);
	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
}

.bordered-layout .page-wrapper{
	padding:0px 50px 0px;
}

a{
	text-decoration:none;
	cursor:pointer;
	color:var(--main-color);
}

button,
a:hover,a:focus,a:visited{
	text-decoration:none;
	outline:none !important;
}

h1,h2,h3,h4,h5,h6 {
	position:relative;
	font-weight:normal;
	margin:0px;
	background:none;
	font-family: var(--font-family-oswald);
}

input,button,select,textarea{
	
}

textarea{
	overflow:hidden;
}

p{
	position:relative;
	line-height:1.8em;
	color:var(--text-color);
	font-family: var(--font-family-lato);
}

/* Typography */

h1{
	line-height:1.2em;
	font-size:var(--font-50);
}

h2{
	line-height:1.4em;
	font-size:var(--font-40);
}

h3{
	line-height:1.3em;
	font-size:var(--font-30);
}

h4{
	line-height:1.3em;
	font-size:var(--font-24);
}

h5{
	line-height:1.6em;
	font-size:var(--font-20);
}

h6{
	line-height:1.6em;
	font-size:var(--font-18);
}

.auto-container{
	position:static;
	max-width:1200px;
	padding:0px 15px;
	margin:0 auto;
}

.medium-container{
	position:static;
	max-width:1000px;
	padding:0px 15px;
	margin:0 auto;
}

.page-wrapper{
	position:relative;
	margin:0 auto;
	width:100%;
	min-width:300px;
}

ul,li{
	list-style:none;
	padding:0px;
	margin:0px;	
}

img{
	display:inline-block;
	max-width:100%;
}

.theme-btn{
	cursor:pointer;
	display:inline-block;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
}

.centered{
	text-align:center;	
}

::-webkit-input-placeholder{color: inherit;}
::-moz-input-placeholder{color: inherit;}
::-ms-input-placeholder{color: inherit;}

/***

====================================================================
	Scroll To Top style
====================================================================

***/

.hm5-scroll-to-top{
	position:fixed;
	bottom:15px;
	right:15px;
	width:40px;
	height:40px;
	color:#ef0061;
	font-size:13px;
	text-transform:uppercase;
	line-height:38px;
	text-align:center;
	z-index:100;
	cursor:pointer;
	background:var(--white-color);;
	display:none;
	border-radius:50px;
	box-shadow:0px 0px 10px rgba(0,0,0,0.15);
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.hm5-scroll-to-top:hover{
	color:var(--white-color);
	background:var(--main-color);
}

/* List Style One */

.hm5-list-style-one{
	position:relative;
}

.hm5-list-style-one li{
	position:relative;
	color:#555555;
	font-size:var(--font-18);
	padding-left:30px;
	font-weight:400;
	line-height:1.8em;
	font-family: var(--font-family-lato);
}

.hm5-list-style-one li a{
	position:relative;
	color:var(--white-color);
	-webkit-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	transition:all 300ms ease;
}

.hm5-list-style-one li a:hover{
	color:var(--main-color);
}

.hm5-list-style-one li:before{
	position:absolute;
	content:'';
	left:0px;
	top:8px;
	content: "\f186";
	color:var(--main-color);
	font-size:var(--font-18);
	line-height:1em;
	-webkit-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	transition:all 300ms ease;
	font-family: "flaticon";
}

/* Btn Style One */

.hm5-btn-style-one{
	position: relative;
	display: inline-block;
	font-size: var(--font-17);
	line-height: 30px;
	color: var(--white-color);
	font-weight: 700;
	overflow: hidden;
	background:none;
	border-radius:50px;
	padding: 16px 50px;
	text-transform: uppercase;
	letter-spacing:0px;
	background-color:var(--main-color);
	-webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s; 
	font-family: var(--font-family-lato);
}

.hm5-btn-style-one:before{
	position: absolute;
	content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-transform: scale(0.2, 1);
    transform: scale(0.2, 1);
	background-color:var(--dark-text-color);
}

.hm5-btn-style-one .txt{
	position:relative;
	z-index:1;
	font-family:Lato;
}

.hm5-btn-style-one:hover::before{
    opacity: 1;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}

.hm5-btn-style-one:hover{
	color: var(--white-color);
}

/* Btn Style Two */

.hm5-btn-style-two{
	position: relative;
	display: inline-block;
	font-size: var(--font-17);
	line-height: 30px;
	color: var(--white-color);
	font-weight: 700;
	overflow: hidden;
	background:none;
	border-radius:50px;
	padding: 16px 50px;
	text-transform: uppercase;
	letter-spacing:0px;
	background-color:var(--main-color);
	-webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s; 
	font-family: var(--font-family-lato);
}

.hm5-btn-style-two:before{
	position: absolute;
	content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-transform: scale(0.2, 1);
    transform: scale(0.2, 1);
	background-color:var(--white-color);
}

.hm5-btn-style-two .txt{
	position:relative;
	z-index:1;
}

.hm5-btn-style-two:hover::before{
    opacity: 1;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}

.hm5-btn-style-two:hover{
	color: var(--main-color);
}


.theme_color{
	color:#0060ff;
}

.hm5-preloader{ position:fixed; left:0px; top:0px; width:100%; height:100%; z-index:999999; background-color:#ffffff; background-position:center center; background-repeat:no-repeat; background-image:url(../../../assets/images/preloader.svg); background-size:90px; }

img{
	display:inline-block;
	max-width:100%;
	height:auto;	
}

/*** 

====================================================================
	Section Title
====================================================================

***/

.hm5-sec-title{
	position:relative;
	z-index:1;
	margin-bottom:40px;
}

.hm5-sec-title h2{
    font-weight: 700;
    line-height: 1.3em;
	text-transform:uppercase;
	color:var(--dark-text-color);
}

.hm5-sec-title .separator{
	position:relative;
	width:101px;
	height:30px;
	margin-top:var(--margin-top-15) !important;
	background:url(../../images/separater.png) no-repeat;
}

.hm5-sec-title.centered .icon{
	left:50%;
	margin-left:-45px;
}

.hm5-sec-title .text{
	position: relative;
    color:#555555; 
    font-weight: 400;
    line-height: 1.7em;
	font-size:var(--font-20);
	margin-top:var(--margin-top-5);
	font-family: var(--font-family-lato);
}

.hm5-sec-title.light .text,
.hm5-sec-title.light h2{
	color:#ffffff;
}

.hm5-sec-title.centered{
	text-align: center !important;
}

.hm5-sec-title.centered .separator{
	margin:0 auto;
}