/*-----------------------------------------------------------------------------------

	Author: Fong Yi
	Author URI: http://www.utopia-adv.com
	
	All files, unless otherwise stated, are released under the GNU General Public License
	version 3.0 (http://www.gnu.org/licenses/gpl-3.0.html)

-----------------------------------------------------------------------------------

	1. CSS Reset & Clearfix
	2. Document Setup (body, common classes, etc)
	3. Columns
	4. Typography
	5. Header
	6. Main Content
	7. Footer
	8. Elements

-----------------------------------------------------------------------------------*/


/*-----------------------------------------------------------------------------------*/
/*	1.	CSS Reset & Clearfix 
/*-----------------------------------------------------------------------------------*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
html {height: 100%;}

body {line-height: 1;}

ol, ul {
    list-style: none;
}

input,textarea {	
    font:inherit;
    resize:none;
    vertical-align: bottom;
}

img {max-width: 100%;}

* { _noFocusLine: expression(this.hideFocus=true); } /* Removes dotted lines around links */

.clean, .clr {
    position:relative;
    display: block;
    clear: both;
}

/*-----------------------------------------------------------------------------------*/
/*	2.	Document Setup (body, common classes, structure etc)
/*-----------------------------------------------------------------------------------*/
body {
    font-family: 'Lato', Helvetica, Arial, sans-serif;
    font-size: 12px;
    line-height: 18px;
    background: #fff;
    margin: 0;
    padding: 0;
    color: #000;
    font-weight: 400;
    text-align: center;
    
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}
.wrapper {
    position:relative;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}
a {
    color: inherit;
    text-decoration:none;
    display: inline-block;
}
a, button, .btn,
a:hover, button:hover, .btn:hover,
a:active, button:active, .btn:active,
input[type="submit"], input[type="submit"]:hover, input[type="submit"]:active,
input[type="text"]:focus, input[type="email"]:focus, input[type="password"]:focus, textarea:focus, select:focus {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all  0.3s ease-in-out;
    -o-transition: all  0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
a:focus , a:link, a:active {
    outline:none;
}
p {
    margin-bottom: 8px;
}
.clr {
    clear:both;
}
.alignleft {
    text-align:left;
}
.alignright {
    text-align:right;
}
.space {
    height: 60px;
    width: 100%;
    clear: both;
}
.half-space {
    height: 20px;
    width: 100%;
    clear: both;
}
label {
    color:#7F7F7F;
    display:block;
    font-weight:normal;
}
input[type="submit"] {
    padding: 10px 18px;
    cursor:pointer;
}
input[type="text"], input[type="email"], input[type="password"], textarea, select {
    padding: 10px 18px;
    background: transparent;
    color: #282828;
    outline: none;
    box-shadow: none;
}

/*-----------------------------------------------------------------------------------*/
/*	3.	Columns
/*-----------------------------------------------------------------------------------*/
.col-full {width: 100%; display: block; height: auto;}
.col-one-half { width: 50%; }
.col-one-third { width: 33.33%; }
.col-two-third { width: 66.66%; }
.col-one-fourth { width: 25%; }
.col-three-fourth { width: 75%; }

.col-one-half,
.col-one-third,
.col-two-third,
.col-three-fourth,
.col-marg-one-half,
.col-marg-one-fourth,
.col-marg-three-fourth {
    position: relative;
    float: left;
}

.col-marg-one-half { width: 48%; }
.col-marg-one-fourth { width: 22%; }
.col-marg-three-fourth { width: 74%; }

.col-marg-one-half,
.col-marg-three-fourth,
.col-marg-one-fourth {
    margin-right: 4%;
}

.col-right {
    float:right;
}
.col-last {
    margin-right: 0!important;
    clear: right;
}
.bold-style {
    font-weight: 800;
    margin-bottom: 5px;
}

/*-----------------------------------------------------------------------------------*/
/*	4.	Typography & Buttons
/*-----------------------------------------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
    font-weight: 300;
    padding-left:2px;
}
h1 {
    font-size: 26px;
    text-transform: uppercase;
    position: relative;
        line-height: 1.25em;
    margin-bottom: 22px;
}
h1:after {
    width: 30px;
    height: 3px;
    display: block;
    background: #fff;
    content: "";
    margin-top: 25px;
}
h2 {
    font-size: 22px;
}

.btn {
    display: inline-block;
    text-decoration: none;
}
.btn-1 {
    padding: 10px 12px;
    border: 1px solid;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 16px;
}
.btn-2 {
    padding: 6px 18px;
    letter-spacing: 3px;
    font-size: 19px;
}
.btn-3 {
    padding: 8px 40px;
    letter-spacing: 3px;
    border-radius: 5px;
}
.btn-4 {
    padding: 10px;
}

/*-----------------------------------------------------------------------------------*/
/*	5.	Header
/*-----------------------------------------------------------------------------------*/
header {
	padding: 25px 0 30px;
	display: block;
        overflow: hidden;
	width: 100%;
	-webkit-transition:all 0.2s linear;
    -moz-transition:all 0.2s linear;
    -o-transition:all 0.2s linear;
    transition:all 0.2s linear;	
}
.logo {
    position:relative;
}
.logo img {
    display: inline-block;
    vertical-align: bottom;
}
#playhere, .unblock {
    padding-top: 23px;
}
#playhere {
    text-align: left;
}
.unblock form {
    float: right;
}
.unblock label {display:none;}
.unblock input[type="text"],
.unblock input[type="submit"] {
    display: inline-block;
    float: left;
}
.unblock input[type="submit"] {
    background: none;
    border-radius: 0;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 16px;
    line-height: 1.4em;
}

/*-----------------------------------------------------------------------------------*/
/*	6.	Footer
/*-----------------------------------------------------------------------------------*/
#footer {
    padding: 15px 0 18px;
}
.connectwithus {
    display: inline-block;
    margin-left: 15px;
}
.connectwithus li, .misc li {
    display: inline-block;
    float: left;
}
.connectwithus li {
    margin-left: 8px;
}
.connectwithus li:first-child, .misc li:first-child {
    margin-left: 0;
}
.social-text {
    padding-top: 10px;
}
.social-icon {
    position: relative;
    top: 5px;
}
.social-icon a {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    text-align: center;
}
.social-icon .fa:before {
    font-size: 13px;
}
.social-icon .fa-facebook:before, .social-icon .fa-twitter:before {
    position: relative;
    top: 1px;
}
.social-icon .fa-twitter:before {
    left: 1px;
}
.social-icon:nth-child(1) a:hover, .social-icon:nth-child(1) a:focus {
    background-color: #3b5998;
    color: #fff;
}
.social-icon:nth-child(2) a:hover, .social-icon:nth-child(2) a:focus {
    background-color: #dd4b39;
    color: #fff;
}
.social-icon:nth-child(3) a:hover, .social-icon:nth-child(3) a:focus {
    background-color: #4099ff;
    color: #fff;
}
.social-icon:nth-child(4) a:hover, .social-icon:nth-child(4) a:focus {
    background-color: #bb0000;
    color: #fff;
}
.misc {
    float: right;
}
.misc li:before {
    content:"|";
}
.misc li:first-child:before {
    display: none;
}

/*-----------------------------------------------------------------------------------*/
/*	7.	Content
/*-----------------------------------------------------------------------------------*/
#content {
    padding: 20px 0 40px;
    font-size: 14px;
    flex: 1;
}
.web-desc {
    margin-bottom: 20px;
}
.web-desc p {
    display: block;
    margin-bottom: 5px;
    letter-spacing: 1px;
}
#unblock2 {display: none;}

.qna-item {
    display: block;
    width: 100%;
    height: auto;
    font-weight: 300;
}
.qna-q, .qna-a {
    width: 100%;
    clear: both;
    height: auto;
    overflow: hidden;
}
.qna-q, .a-icon {
    font-size: 18px;
    font-weight: 400;
}
.qna-q {line-height: 1.3em;}
.qna-a {
    margin-bottom: 8px;
}
.q-icon, .a-icon {
    display: block;
    float: left;
    width: 30px;
    height: 30px;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
}
.q-icon:before {
    content: "Q :";
}
.a-icon:before {
    content: "A :";
}
.qna-a-desc {
    padding-left: 41px;
    line-height: 1.3em;
}
.qna-a-desc {
    opacity: .9;
}
.qna-a-desc ol li {
    margin-left: 16px;
    margin-bottom: 8px;
    list-style-type: decimal;
    list-style-position: outside;
}
.qna-a-desc ol li span {
    padding-left: 8px;
    display: block;
}
.note-list {
    margin-left: 40px;
    margin-bottom: 8px;
}
.note-list li {
    margin-bottom: 8px;
    list-style-type: disc;
    list-style-position: outside;
}
.note-list-title, .note-list-title2 {
    text-transform: uppercase;
    text-decoration: underline;
    line-height: 1.8em;
    margin-bottom: 8px;
}
.note-list-title2 {
    text-indent: -8px;
}

