/* ----------------------------------------------- */
/* Grid.css */
/* ----------------------------------------------- */

/*  SECTIONS  ============================================================================= */

.section {
	clear: both;
	padding: 0px;
	margin: 0px;
}

/*  GROUPING  ============================================================================= */

.row {
    zoom: 1; /* For IE 6/7 (trigger hasLayout) */
}

.row:before,
.row:after {
    content:"";
    display:table;
}
.row:after {
    clear:both;
}

/*  GRID COLUMN SETUP   ==================================================================== */

.col {
	display: block;
	float:left;
	margin: 1% 0 1% 1.6%;
}

.col:first-child { margin-left: 0; } /* all browsers except IE6 and lower */

@media (min-width: 768px){
.col-sm-3 {width: 25%;}
.col-sm-4 {width: 33.33%;}
.col-sm-6 {width: 50%;}
.col-sm-8 {width: 66.66666667%;}
.col-sm-9 {width: 75%;}
.col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9 {
    float: left;
}
.col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9 {
    position: relative;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

}
/*  REMOVE MARGINS AS ALL GO FULL WIDTH AT 480 PIXELS */

@media only screen and (max-width: 480px) {
	.col { 
		/*margin: 1% 0 1% 0%;*/
        margin: 0;
	}
}

/*  GRID OF TWO   ============================================================================= */

.span-2-of-2 {
	width: 100%;
}

.span-1-of-2 {
	width: 49.2%;
}
.span-1-of-4 {
	width: 23.7%;
}

/*  GO FULL WIDTH AT LESS THAN 480 PIXELS */

@media only screen and (max-width: 480px) {
	.span-2-of-2 {
		width: 100%; 
	}
	.span-1-of-2 {
		width: 100%; 
	}
}

/*  GRID OF THREE   ============================================================================= */
	
.span-3-of-3 {
	width: 100%; 
}

.span-2-of-3 {
	width: 66.13%; 
}

.span-1-of-3 {
	width: 32.26%; 
}

/*  GO FULL WIDTH AT LESS THAN 480 PIXELS */

@media only screen and (max-width: 480px) {
	.span-3-of-3 {
		width: 100%; 
	}
	.span-2-of-3 {
		width: 100%; 
	}
	.span-1-of-3 {
		width: 100%;
	}
}

/* ----------------------------------------------- */
/* Common.css */
/* ----------------------------------------------- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background-color: #eca743;
    color: #eee;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 300;
    font-size: 18px;
    text-rendering: optimizeLegibility;
	padding:0 .8%;
	background-image:  url(../img/tile.jpg);
    background-position: center;
    background-attachment: fixed;
	background-size:cover;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

input {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}

input:focus {
  outline: 0;
}

input:active {
  outline: none;
  border: none;
}

.clearfix {zoom: 1;}
.clearfix:after {
    content: '.';
    clear: both;
    display: block;
    height: 0;
    visibility: hidden;
}

/* ----------------------------------------------- */
/* REUSABLE COMPONENTS */
/* ----------------------------------------------- */
.row {
    max-width: 1140px;
    margin: 0 auto;
}
section {
    padding: 80px 0;
	margin-bottom:18px;
	border-radius:15px;
}

.box {
    padding: 2% 1%;
}

/* ----- HEADINGS ----- */
h1,
h2,
h3,
h4,
h6 {
    font-weight: 300;
    text-transform: uppercase;
}

h1 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #fff;
    font-size: 240%;
    word-spacing: 4px;
    letter-spacing: 1px;
}

h2 {
    font-size: 180%;
    word-spacing: 1px;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

h2:after {
    display: block;
    height: 2px;
    background-color: #d49e22;
    content: " ";
    width: 100px;
    margin: 0 auto;
    margin-top: 30px;
}
h3{
    font-size: 150%;
    margin-bottom: 15px;
    word-spacing: 4px;  
    letter-spacing: 1px;
    color:#222222;
    line-height: 150%;   
}

h4 {
    font-size: 150%;
    margin-bottom: 15px;
    word-spacing: 3px;  
    letter-spacing: 1px;
    color:#454545;
    line-height: 150%;
    text-align: center;
}
h6{
    font-size: 90%;
    margin-bottom: 15px;
    word-spacing: 4px;  
    letter-spacing: 1px;
    color:#fff;
    line-height: 150%;
    text-transform: none;
}

p{
  word-spacing: 3px;  
    letter-spacing: .3px; 
    line-height: 95%;
}

h1.topsection {
    background-color: #eca743;
    color: #eee;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 300;
    font-size: 18px;
    text-rendering: optimizeLegibility;
	padding:10px 5px 0 5px;
	background-image:  url(../img/tile.jpg);
    background-position: center;
    background-attachment: fixed;
	background-size:cover;
	margin: 0;
z-index: 1000;
position: fixed;
width: 100%;
left: 0;
top: 0;
}


/* ----- PARAGRAPHS ----- */
.long-copy {
    line-height: 180%; text-align: left;    
}
.author{
    text-align: right;
}
.box p {
    font-size: 18px;
    line-height: 180%;
	text-align: center;
}


/* ----- ICONS ----- */
.icon-big {
    width:50px;
    font-size: 200%;
    display: block;
    color: #d4555b;
    padding:0 10px;
    margin:0px;
    text-align: center;
    border-radius: 200px;
    border: #d4555b solid 1px;
}

.icon-small {
    display: inline-block;
    width: 30px;
    text-align: center;
    color: #d4555b;
    font-size: 120%;
    margin-right: 10px;
    
    /*secrets to align text and icons*/
    line-height: 120%;
    vertical-align: middle;
    margin-top: -5px;
}

/* ----- LINKS ----- */

a:link,
a:visited {
    color: #555;
    text-decoration: none;
    padding-bottom: 1px;
    border-bottom: 1px solid #e67e22;
    -webkit-transition: border-bottom 0.2s, color 0.2s;
    transition: border-bottom 0.2s, color 0.2s;
}

a:hover,
a:active {
    color: #999;
    border-bottom: 1px solid transparent;
}

/* ----- BUTTONS ----- */
.btn:link,
.btn:visited,
input[type=submit] {
    display: inline-block;
    padding: 10px 30px;
    font-weight: 300;
    text-decoration: none;
    border-radius: 200px;
    -webkit-transition: background-color 0.2s, border 0.2s, color 0.2s;
    transition: background-color 0.2s, border 0.2s, color 0.2s;
    margin-bottom: 20px;
    margin-top: 35px;
}



.btn-full:link,
.btn-full:visited,
input[type=submit] {
    background-color: #ca2c28;
    border: 1px solid #ca2c28;
    color: #fff;
	min-width:200px; height:50px;
	font-size:16px;
	letter-spacing:0.6px;
	cursor:pointer;
}

.btn-ghost:link,
.btn-ghost:visited {
    border: 1px solid #943136;
    color: #943136;
}

.btn:hover,
.btn:active,
input[type=submit]:hover,
input[type=submit]:active {
    background-color: #d4555b;
}

.btn-full:hover,
.btn-full:active {
    border: 1px solid #d4555b;
}

.btn-ghost:hover,
.btn-ghost:active {
    border: 1px solid #d4555b;
    color: #fff;
}


.btn-ghost-small:link,
.btn-ghost-small:visited{
    padding: 7px 15px;
    font-size: 80%;
    border: 1px solid #d4555b;
    color: #d4555b; 
}

.btn-ghost-small:hover,
.btn-ghost-small:active {
    border: 1px solid #d4555b;
    color: #fff;
}

.red-btn{
     padding: 7px 15px;
    font-size: 80%;
    border: 1px solid #777777;
    color: #777777; 
    background-color: white;
    border-radius: 200px;
}

.red-btn:hover,
.red-btn:active {
    border: 1px solid #d4555b;
    color: #fff;
        background-color: #d4555b;
}

/* ----------------------------------------------- */
/* HEADER */
/* ----------------------------------------------- */

header {
    height: 97vh;
	background-color: #010101;
border-radius: 15px;
margin: 10px 0 35px 0;
position:relative;
}

.top-section { position: fixed;
padding: 20px 40px;
width: 98.3%;
z-index: 1000;
background-color: #010101; border-radius:15px 15px 0 0}

.top-section:after{text-align: left;
    display: block;
    height: 0;
    background-color: transparent;
    /*background-color: #eca743;*/
    content: " ";
    width: 100%;
    margin: 0 auto;}

.main-image-section {
    position: absolute;
    width: 98%;
    max-width:100%;
    /*top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);	*/
	background-image:  url(../img/mainimage.jpg);
    background-size: contain;
    background-position: center;
    height: 95vh;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.main-image {
    position: absolute;
    width: 98%;
    max-width: 100%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    height: 58vh;
}

.mainimage-row {
vertical-align: middle;}

/*.main-image {
    position: relative;
    width: 100%;
	background-image:  url(../img/mainimage.jpg);
    background-size: contain;
    background-position: center;
    height: 60vh;
	background-repeat:no-repeat;
}*/
.main-image h6{padding-bottom: 20px;}
.main-image h3 {text-transform: uppercase; font-size:27px;  font-weight:400; line-height:180%;}
.main-image p {font-size:24px; font-weight:300; line-height:180%;}
.main-image span { font-weight:300; line-height:180%;}

.main-image .col {text-align: center; position:relative; margin-bottom:0}
.logo {
    /*height: 170px;*/
    width: auto;
    margin-top: 0;
    margin-bottom: 20px;
}

.main-image h3:before {width: 34%; height: 3px; display: table; vertical-align: middle; content: ""; margin: 0px auto 55px; background:#fff;}

.logo-black { 
    height: 50px;
    width: auto;
    float: left;
    margin: 5px 0;
}
.mititle {display:tabel; vertical-align:middle; height: 60vh; width:100%;}
.mititle h1 {color:#e2a545; font-weight:600; font-size:45px; padding:0 0 0 8%; text-align: center; display:tabel-cell; vertical-align:middle;}
.mititle h1 p {color:#9b5f00; font-weight: 300; font-size: 64px; line-height: 120%; }



/* Main navi */
nav{padding:0 0 0 0;}

.main-nav {
    float: right;
    list-style: none;
    margin-top: 25px;
}

.main-nav li {
    display: inline-block;
    margin-left: 40px;
    font-size: 80%;
    letter-spacing: .5px;
}

.main-nav li a:link,
.main-nav li a:visited {
    padding: 0;
    color: #eca743;
    text-decoration: none;
    text-transform: uppercase;
    border-bottom: 2px solid transparent;
    -webkit-transition: border-bottom 0.2s;
    transition: border-bottom 0.2s;
	font-size: 14px;
font-weight: 500;
}

.main-nav li a:hover,
.main-nav li a:active {
    border-bottom: 2px solid #eca743;
}


/* Mobile navi */
.mobile-nav-icon {
    float: right;
    margin-top: 55px;
    cursor: pointer;
    display: none;
	position:absolute;
	right:5%;
	z-index:2;
}

.mobile-nav-icon i {
    font-size: 200%;
    color: #fff;
}


/* Sticky navi 
nav.sticky{padding:10px 15px;}*/
/*.sticky {
    position: fixed;
    top: 5px;
    left: 0.8%;
    width: 98.4%;
    background-color: #010101;
    box-shadow: 0 2px 2px #333;
    z-index: 9999;
}

.sticky .main-nav { margin-top: 18px; }

.sticky .main-nav li a:link,
.sticky .main-nav li a:visited {
    padding: 18px 0 0 0;
    color: #eca743;
}

.sticky .logo { display: none; }
.sticky .logo-black { display: block; }*/

/* ----------------------------------------------- */
/* what-you-get */
/* ----------------------------------------------- */
.section-what-you-get {background-color: rgba(0, 0, 0, 0.98);
	/*background-image:  url(../img/intro.jpg);*/
    background-size: cover;
    background-position: bottom right;}
.section-what-you-get .long-copy {
    margin-bottom: 30px; text-align: center;     line-height: 160%;
}

.section-what-you-get {padding: 100px 5% 120px 5%;
text-shadow: 1px 1px 1px #333;
font-size: 25px;
font-weight: 500;
text-align: center; color:#f6c75a}
.section-what-you-get h2 {font-family: 'Lobster', cursive; font-size: 50px; color: #d49e22; font-weight: 500; word-spacing: 1px; text-align: center; margin-bottom: 30px; letter-spacing: 3px; text-transform: none; text-shadow: 2px 2px 2px #000;}

.section-what-you-get h2:after {background-color: #d49e22;}

.logo-position{text-align: center;}
.what-you-get-icon {width:100px;}
.section-what-you-get h4{font-size: 100%;
    margin-bottom: 15px;
    word-spacing: 0;
    letter-spacing: 2px;
    color: #eca743;
    line-height: 150%;
    text-align: center;
	text-transform: none;
}
.section-what-you-get h4:after {
    text-align: left;
    display: block;
    height: 1px;
    background-color: #eca743;
    content: " ";
    width: 75%;
    margin: 0 auto;
    margin-top:10px;
    margin-bottom:30px;
}

.long-copy .col {margin: 1% 0; width:16.4%}
.long-copy img {width:100%; padding:0 25px}
.long-copy p {font-size:16px}


/* ----------------------------------------------- */
/* aboutus */
/* ----------------------------------------------- */

.section-aboutus {background-color: rgba(0, 0, 0, 0.98);
	background-image:  url(../img/bg.jpg);
    background-size: cover;
    background-position: center; padding:180px 0; background-attachment:fixed;}
	
.aboutus-txt {padding:0 75px 0 30px; text-shadow: 1px 1px 1px #333;
font-size: 25px;
font-weight: 500;
text-align: center; color:#f6c75a; line-height:160%;}
.aboutus-txt h2 {font-family: 'Lobster', cursive; font-size: 50px; color: #d49e22; font-weight: 500; word-spacing: 1px; text-align: center; margin-bottom: 30px; letter-spacing: 2px; text-transform: none;}

.aboutus-icon {text-align: center;}	
.aboutus-icon img{height:310px;}	

/*.tunel-panel:before {
    content: url(../img/01-min.png);
    position: absolute;
    left: -47px;
    top: -52px;
}
.tunel-panel:after {
    content: url(../img/02-min.png);
    position: absolute;
    left: -47px;
    top: -52px;
}*/


/* ----------------------------------------------- */
/* train */
/* ----------------------------------------------- */

.section-train {background-color: rgba(0, 0, 0, 0.98);
	background-image:  url(../img/tunnel-train.jpg);
    background-size: cover;
    background-position: center;
	background-attachment:fixed; padding:250px 0;}
	
.train-txt {padding: 0; 
text-shadow: 1px 1px 1px #333;
font-size: 25px;
font-weight: 500;
text-align: center;}
.train-txt h2 {font-family: 'Lobster', cursive; font-size: 50px; color: #d49e22; font-weight: 500; word-spacing: 1px; text-align: center; margin-bottom: 30px; letter-spacing: 1px; text-transform: none; text-shadow: 2px 2px 2px #000;}

/* ----------------------------------------------- */
/* melting */
/* ----------------------------------------------- */

.section-melting {
    background-color: rgba(0, 0, 0, 0.98);
    background-image: url(../img/melting.png);
    background-size: contain;
    background-position: left;
    padding: 100px 0;
	background-repeat:no-repeat;
}
	
.melting-txt {padding: 0 40px; 
text-shadow: 1px 1px 1px #333;
font-size: 23px;
font-weight: 500;
text-align: center;  color:#f6c75a; line-height:160%;}
.melting-txt h2 {font-family: 'Lobster', cursive; font-size: 50px; color: #d49e22; font-weight: 500; word-spacing: 1px; text-align: center; margin-bottom: 30px; letter-spacing: 3px; text-transform: none; text-shadow: 2px 2px 2px #000;}


/* ----------------------------------------------- */
/* nugget */
/* ----------------------------------------------- */

.section-nugget {background-color: rgba(0, 0, 0, 0.98); background-image:  url(../img/nugget.jpg); background-size: cover;    background-position: center; /*background-attachment:fixed;*/ padding:300px 0;}


/* ----------------------------------------------- */
/* Processing */
/* ----------------------------------------------- */

.section-processing {background-color: rgba(0, 0, 0, 0.98);
	background-image:  url(../img/processing.jpg);
    background-size: cover;
    background-position: center; padding:150px 0;}
	
.processing-txt {padding:25px; 
text-shadow: 1px 1px 1px #333;
font-size: 23px;
font-weight: 500;
text-align: center; color:#000; line-height:160%; max-width: 750px; float: none; background: rgba(212, 158, 34, 0.3); border-radius: 15px;}
.processing-txt h2 {font-family: 'Lobster', cursive; font-size: 50px; color: #d49e22; font-weight: 500; word-spacing: 1px; text-align: center; margin-bottom: 30px; letter-spacing: 3px; text-transform: none; text-shadow: 2px 2px 2px #000;}


/* ----------------------------------------------- */
/* Calc */
/* ----------------------------------------------- */

.section-calc {background-color: rgba(0, 0, 0, 0.98);
	background-image:  url(../img/price-calc.jpg);
    background-size: cover;
    background-position: center; padding:70px 0;}
	
.calc-txt {padding: 20px 50px; 
text-shadow: 1px 1px 1px #333;
font-size: 25px;
font-weight: 500;
text-align: center; color:#f6c75a; line-height:150%; max-width: 500px; background: #010101;}
.calc-txt h2 {font-family: 'Lobster', cursive; font-size: 40px; color: #d49e22; font-weight: 500; word-spacing: 1px; text-align: center; margin-bottom: 30px; letter-spacing: 3px; text-transform: none; text-shadow: 2px 2px 2px #000;}



fieldset {
	border: medium none !important;
	margin: 0 0 10px;
	min-width: 100%;
	padding: 0;
	width: 100%;
}


#contact label
{
    width: 50%;
    padding: 0;
    float: left;
	font-size: 15px;
	text-align: left;
}

#contact input
{
    width: 50%;
    padding: 10px;
    float: left;
}

#contact input[type="text"], #contact input[type="email"], #contact input[type="tel"], #contact input[type="url"], #contact textarea {
	border: 1px solid #CCC; background: #FFF; margin: 0 0 5px;  margin-left: 0px; padding: 7px; font-size: 13px; letter-spacing: 1px; color: #555; border-radius: 5px;
}

#contact input[type="text"]:hover, #contact input[type="email"]:hover, #contact input[type="tel"]:hover, #contact input[type="url"]:hover, #contact textarea:hover {
	-webkit-transition:border-color 0.3s ease-in-out;
	-moz-transition:border-color 0.3s ease-in-out;
	transition:border-color 0.3s ease-in-out;
	border:1px solid #AAA;
}

#contact button[type="submit"] {
	cursor:pointer;
	border:none;
	background:#d49e22;
	color:#FFF;
	margin:0 0 5px;
	padding:10px 55px;
	font-size:15px;
}

#contact button[type="submit"]:hover {
	background:#d49e22;
	-webkit-transition:background 0.3s ease-in-out;
	-moz-transition:background 0.3s ease-in-out;
	transition:background-color 0.3s ease-in-out;
}

#contact button[type="submit"]:active { box-shadow:inset 0 1px 3px rgba(0, 0, 0, 0.5); }

#contact input:focus, #contact textarea:focus {
	outline:0;
	border:1px solid #999;
}

#contact select {
    padding: 0 10px 0 10px;
}

#contact select {
   border: 1px solid #CCC; background: #FFF; margin: 0 0 5px;  margin-left: 0px; padding: 7px; font-size: 13px; letter-spacing: 1px; color: #555; float:left; width:50%; 
    background-image: url(../img/dropdown_arrow.png);
    background-position: right;
background-repeat: no-repeat; border-radius: 5px;
}
 select.selectdiv{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: block;
    float: right;
    font-size: 16px;
    color: #555;
    background-color: #fff;
    background-image: none;
    -ms-word-break: normal;
    word-break: normal;
}

#contact input[type="radio"] {

    border: 1px solid #CCC;
    margin: 0 0 5px;
    padding: 10px;
    font-size: 5px;
    letter-spacing: 1px;
    color: #555;
    width: auto;
	-webkit-appearance: radio;
    -moz-appearance: radio;
    appearance: radio;
    height: 33px;

}

#contact select:after {
    content: '';
    right: 5px;
    top: 4px;
    width: 25px;
    height: 22px;
    padding: 15px 0 0 8px;
    position: absolute;
    pointer-events: none;
}

::-webkit-input-placeholder {
 color:#888;
}
:-moz-placeholder {
 color:#888;
}
::-moz-placeholder {
 color:#888;
}
:-ms-input-placeholder {
 color:#888;
}



input:invalid {
  
}

input:focus:invalid {
  box-shadow: 0 0 1px 1px red;
}

input.nmfield{width: 44%! important; margin-left: 1%! important;}
.septxt{background: #ccc; margin: 20px 0 15px 0;}

.section-calc p {font-size: 17px; text-align: left; margin: 15px 0; line-height: normal; color:#d49e22;}
.section-calc p span{color:#fff;font-weight:bold;    font-size: 17px;}
.section-calc p span.section-calcterms{color:#fff;font-size: 12px;padding-top:10px;font-weight:normal;}




/* ----------------------------------------------- */
/* chart */
/* ----------------------------------------------- */

.chart-section {width: 100%; height: 578px; position:relative}
.logohide{position:absolute; top:52px; right:0; width:200px; height:80px;}
.navhide{position:absolute; top:0; right:0; width:50%; height:52px; background-color:#f2f2f2}

/* ----------------------------------------------- */
/* FORM */
/* ----------------------------------------------- */

.section-form{background-color: rgba(255,255,255,0.8); padding:40px;box-shadow: 0 1px 2px #8b1b20;}
.section-form h4{text-align: center;}

.contact-form {
    width: 90%;
    margin: 0 auto;
}
.form-cell{margin:10px 15px;text-align: center;}
input[type=text],
input[type=email],
select,
textarea {
    width: 100%;
    padding: 10px;
    border-radius: 0;
    border: 1px solid #ccc;
    border:none;
    font-size: 10%;
    border-bottom: 1px solid #f4b8b8;
    background-color: transparent;
}

textarea {
    height: 100px;
}

input[type=checkbox] {
    margin: 10px 5px 10px 0;
}

*:focus {outline: none;}

/* ----------------------------------------------- */
/* FOOTER */
/* ----------------------------------------------- */

/* ----------------------------------------------- */
/* Calc */
/* ----------------------------------------------- */

.section-footer {background-color:#000000;
	background-image:  url(../img/bgfooter.jpg);
    background-size: contain;
    background-position: center; padding:350px 0; background-repeat: no-repeat; position:relative; margin:1px 0; border-radius:15px 15px 0 0;}
	
.footer-txt {padding: 20px 30px 50px; margin:0;  
text-shadow: 1px 1px 1px #333;
font-size: 25px;
font-weight: 500;
text-align: center; color:#f6c75a; line-height:150%; max-width: 500px; position: absolute; bottom: 0;}

.footer-txt h2 {font-size: 25px; color: #d49e22; font-weight: 500; word-spacing: 1px; text-align: center; margin-bottom: 10px; letter-spacing: 0; text-transform: none; text-shadow: 2px 2px 2px #000; font-family: 'Philosopher', sans-serif;}
.footer-txt h2:after {margin-top: 10px;}
.footer-txt p {font-size: 16px; line-height: 180%; text-align: center; color:#f6c75a;}
.footer-txt p a {color:#f6c75a; border-bottom:none;}
.footer-txt p a:hover {border-bottom: 1px solid #f6c75a;}

.uae-tooltip {position: absolute; left: 57%; top: 44%; width: 100px; height: 60px;}
.uae-tooltip a{position: relative; display:block; width: 100px; height: 60px; border:transparent}

.ind-tooltip {position: absolute; left: 64%; top: 50%; width: 100px; height: 60px;}
.ind-tooltip a{position: relative; display:block; width: 100px; height: 60px; border:transparent}

.tooltip{position:absolute;z-index:1070;display:block; font-style:normal;font-weight:400;line-height:1.42857143;line-break:auto;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;font-size:14px;filter:alpha(opacity=0);opacity:0}.tooltip.in{filter:alpha(opacity=90);opacity:.9}.tooltip.top{padding:5px 0;margin-top:-3px}.tooltip.right{padding:0 5px;margin-left:3px}.tooltip.bottom{padding:5px 0;margin-top:3px}.tooltip.left{padding:0 5px;margin-left:-3px}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{right:5px;bottom:0;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}

.foot2 {background-color: rgba(0, 0, 0, 0.98);
	background-image:  url(../img/bgfooter.jpg);
    background-size: contain;
    background-position: left; padding:100px 0; background-repeat: no-repeat;}
	

footer {
    background-color: #000;
    padding: 10px;
    font-size: 80%;
	color:#f6c75a; border-radius:0 0 15px 15px; margin-bottom: 10px; letter-spacing: 1px;
}

footer a, footer a:link, footer  a:visited{
	color:#f6c75a;
	padding-bottom: 1px;
	border-bottom: transparent;
}
footer a:hover{
	color:#eca743;
	border-bottom: transparent;
	transition: border-bottom 0.2s, color 0.2s;
}
.trademark {float: right; text-align: right; width: auto;}
.trademark h4{font-size: 20px; color: #d49e22; font-weight: 500; word-spacing: 1px; margin-bottom: 10px; letter-spacing: 0; text-transform: none; text-shadow: 2px 2px 2px #000; font-family: 'Philosopher', sans-serif; border-right: 2px solid #d49e22; padding-right: 20px; float: left;     text-align: right; margin-right: 20px;}
.trademark h4 img{width: 25px; float: left; margin-right: 10px;}

.subtrademark {float: left; font-size: 16px; text-align: left; width: 80px;}
.subtrademark p{font-size: 14px; text-align:center;}
.subtrademark span{text-align:right; display:block}

.social-section{text-align:left; float:left}
.social-section ul{margin:0; padding:0; list-style:none;float: right;}
.social-section li{margin:0; padding:0; list-style:none; float: left;}
.copy {display: table; width: 100%; padding-top: 15px;}
.mail {text-align:right; }
.mail i{display: block;
	width:40px;
	height:25px;
	background-image: url(../img/images_sprite.png);
	background-position: -172px -248px;}

.facebook i{display: block;
	width:40px;
	height:25px;
	background-image: url(../img/images_sprite.png);
	background-position:-253px -248px}
.twitter i{display: block;
	width:40px;
	height:25px;
	background-image: url(../img/images_sprite.png);
	background-position: -215px -248px;}

.footer-link{
    display: inline-block;
    margin-left: 25px;
}
a.footer-link{border-right: 1px solid #f6c75a; padding:0 10px 0 0; margin:0 10px 0 0}

.terms-txt{margin:0; padding:0}
.terms-txt ol {counter-reset: item; padding:0 25px}

.terms-txt ol > li {counter-increment: item; margin:0; padding:0; color:#d49e22; font-size:20px; text-align:left; margin-bottom:8px; line-height: 150%; letter-spacing: 1px; word-spacing: 1px;}

.terms-txt ol ol{ padding:10px 15px 10px 40px}
.terms-txt ol ol > li {display: block;}

.terms-txt ol ol > li:before {content: counters(item, ".") ". ";  margin-left: -40px;}

.terms-txt ol ol ol{ padding:10px 15px 10px 60px}
.terms-txt ol ol ol > li {display: block;}

.terms-txt ol ol ol > li:before {content: counters(item, ".") ". ";  margin-left: -55px;}

.section-form h4 {margin-bottom: 0;}
section h2{font-size:50px; color:#eca743; font-weight:500;}
.section-aboutus p{padding-bottom:15px;}
.lg_desc {font-size:12px; margin-bottom: 0;}
.position-relative {position: relative;}
.login_container1 {padding: 0; width: 90%; margin: 0 auto;}
.displayflex {
    display: flex;
}
.wb_draktext {
    color: #777;
    font-size: 14px;
    font-weight: 500;
}
.image-upload-wrap { margin:37px 0 0 0; background:transparent; border: 1px solid #f4b8b8; position: relative; width: 100%; border-radius:0;
  -webkit-border-radius:0;
  -moz-border-radius: 0;
  -o-border-radius: 0;
  -ms-border-radius: 0; color: #747474; cursor:pointer; padding: 16px 8px;}
.image-dropping,
.image-upload-wrap:hover { background-color: #f4b8b8;}


.lgmaxlabelfield {position:absolute; font-size:15px; margin-top:28px; margin-left:10px;  margin-right:20px;  margin-bottom:20px; color: #747474; font-weight:300; letter-spacing: 0.4px; text-align:left;}
.lgminlabelfield {position:absolute; font-size:11px; margin-top:2px; margin-left:10px;  margin-right:20px;  margin-bottom:20px; color: #4b4b4b; font-weight:normal; letter-spacing: 0.3px;}
input.lgtextfield, textarea.lgtextfield {color:#8a8a8a; font-size: 15px; font-weight:normal; background: transparent; border: 1px solid #f4b8b8; margin:27px 0 0 0; width:100%; border-radius:0;
  -webkit-border-radius:0;
  -moz-border-radius: 0;
  -o-border-radius: 0;
  -ms-border-radius: 0;
  /*height: 30px;*/
  padding:16px 10px;
  box-shadow: inset 0 0 0 0px #ddd;
   letter-spacing: 0.6px; font-weight: 300;
}
textarea.lgtextfield {height: 100px;}
.lgmaxlabelfield {margin-top:44px;}
.lgminlabelfield {margin-top:8px;}

.drag-text { text-align: left; position:relative;}
.drag-text h3 {font-weight: 300; padding: 0; font-size: 15px; margin:0 4px; color:#747474;  letter-spacing: 0.4px; text-transform: none; line-height: 130%; padding-right: 35px;}
.drag-text h3:hover, .image-upload-wrap:hover {color:#747474}
.drag-text h3:before {display:none;}
.file-upload-image { max-height: 200px; max-width: 200px; margin: auto; padding: 20px;}
.upload-wrap { margin: 15px 1% 5px 1%; border: 2px dashed #c2c2c2; position: relative; width: 46%; border-radius: 10px; -webkit-border-radius: 10px; -moz-border-radius: 10px; -o-border-radius: 10px; -ms-border-radius: 10px; float:left; color: #aaa;}
.upload-wrap:hover {background-color: #c2c2c2; border: 2px dashed #ffffff; color:#fff;}

.logoimageitem-sec {
    -webkit-user-select: none;
    border-radius: 3px;
    display: flex;
    align-items: center;
    flex-direction: column;
    flex-wrap: nowrap;
    position: relative;
    transition: opacity 0.2s ease-in-out;
	padding:60px 0;
}
.logoimage-image {
    /*width: 95px;*/
    height: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
    overflow: hidden;
}
.selected-logoimage li {
    text-align: left;
    cursor: pointer;
}
.logoimage-image img {
    flex-shrink: 0;
    max-height: 100%;
}
.signuplink span {
    color: #d4555b; margin-left: 5px; cursor: pointer; text-decoration:underline;}
	
	
	
.gallery-slider {background-color:#101010;  position: relative;
    width: 100%;
	background-image:  url(../img/1.jpg);
    background-size: cover;
background-position: center;}

.gallery-slider .nbs-flexisel-inner {width:78%;}

.gallery-slider .nbs-flexisel-nav-left, .gallery-slider .nbs-flexisel-nav-right {
	top:40%;	
}

.gallery-slider .box{max-width:1400px; margin:0 auto;}

.gallery-txt {display:block;}
.gallery-txt h4{font-size: 150%; font-weight:600;
    margin-bottom: 5px;
    word-spacing: 3px;  
    letter-spacing: 1px;
    color:#eca743;
    line-height: 150%;
    text-align: center;}
.gallery-txt p{font-size: 100%; margin-bottom: 0; color:#ccc; line-height: 100%; text-align: center;}
.img-sprite {	
	display: block;
	background:  transparent url("../img/images_sprite.png")no-repeat 0 0; 
	}
.icon-infinity{margin: 0 auto 7px; background-position: -88px 0; width: 90px; height: 90px;}
.icon-www{margin: 0 auto 7px; background-position: -91px -181px; width: 90px; height: 90px;}
.icon-performance{margin: 0 auto 7px; background-position: 0 -181px; width: 90px; height: 90px;}
.icon-hosting{margin: 0 auto 7px; background-position: -272px -90px; width: 90px; height: 90px;}
.icon-seo{margin: 0 auto 7px; background-position: -182px -90px; width: 90px; height: 90px;}
.icon-webapp{margin: 0 auto 7px; background-position: -91px -90px; width: 90px; height: 90px;}
.icon-security{margin: 0 auto 7px; background-position: 0 -90px; width: 90px; height: 90px;}
.icon-privacy{margin: 0 auto 7px; background-position: -268px 0; width: 90px; height: 90px;}
.icon-other{margin: 0 auto 7px; background-position: -177px 0; width: 90px; height: 90px;}
.icon-cimg{margin: 0 auto 7px; background-position: -182px -181px; width: 90px; height: 90px;}



/* ----------------------------------------------- */
/* Slick.css */
/* ----------------------------------------------- */

/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;
	border:2px solid #eca743;
	padding:25px;
    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

@charset 'UTF-8';

/* Icons */
@font-face
{
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;

    src: url('../fonts/slick.eot');
    src: url('../fonts/slick.eot?#iefix') format('embedded-opentype'), url('../fonts/slick.woff') format('woff'), url('../fonts/slick.ttf') format('truetype'), url('../fonts/slick.svg#slick') format('svg');
}
/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;

    opacity: .75;
    color: #eca743;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev
{
    left: -25px;
}
[dir='rtl'] .slick-prev
{
    right: -25px;
    left: auto;
}
.slick-prev:before
{
    content: '?';
}
[dir='rtl'] .slick-prev:before
{
    content: '?';
}

.slick-next
{
    right: -25px;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: -25px;
}
.slick-next:before
{
    content: '?';
}
[dir='rtl'] .slick-next:before
{
    content: '?';
}

/* Dots */
.slick-dotted.slick-slider
{
    margin-bottom: 30px;
}

.slick-dots
{
    position: absolute;
    bottom: -25px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '•';
    text-align: center;

    opacity: .25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: black;
}

 .rslides {
        max-width: 1140px;
        margin: 100px auto;
    }

    .slick-slide {
      margin: 0px 20px;
    }

    .slick-slide img {
      width: 100%;
	  padding:0;
	  
    }

    .slick-prev:before,
    .slick-next:before {
      color: black;
    }


    .slick-slide {
      transition: all ease-in-out .3s;
      opacity: .2;
    }
    
    .slick-active {
      opacity: 1;
    }

    .slick-current {
      opacity: 1;
	  
    }



#LogoImg, #MiImg {
	position:absolute;
	width:35px;
	height:35px;
	top:-7px;
	right:0px;
	background-image: url(../img/images_sprite.png);
	background-position: -290px -212px;
}

@media only screen and (max-width: 1450px) {
	#toolbar-popup {left: 70%! important}
}
@media only screen and (max-width: 1300px) {
	#toolbar-popup {left: 50%! important}
}
@media only screen and (max-width: 800px) {
	#toolbar-popup {display:none;}
}

.head-col {display:tabel-cell; vertical-align:middle; flaot:none;}
.readmore {display:none;}
.bottombtn{position:fixed;z-index:200;bottom:30px;/*right:100px;color:red;display:none; left: 45%; right: 45%;*/ width: 98%; height: 0px;}
.bottombtn a{display: inline-block;
font-weight: 300;
text-decoration: none;
border-radius: 15px 15px 0 0;
/*-webkit-transition: background-color 0.2s, border 0.2s, color 0.2s;
transition: background-color 0.2s, border 0.2s, color 0.2s;
background-color: #ca2c28;
padding: 10px 30px;
    border: 1px solid #ca2c28;*/
    color: #fff;
	font-size:16px;
	letter-spacing:0.6px;
cursor:pointer; border:none;}


/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

@charset 'UTF-8';
/* Slider */
.slick-loading .slick-list
{
    background: #fff url('./ajax-loader.gif') center center no-repeat;
}

/* Icons */
@font-face
{
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;

    src: url('./fonts/slick.eot');
    src: url('./fonts/slick.eot?#iefix') format('embedded-opentype'), url('./fonts/slick.woff') format('woff'), url('./fonts/slick.ttf') format('truetype'), url('./fonts/slick.svg#slick') format('svg');
}
/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;

    opacity: .75;
    color: #eca743;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev
{
    left: -25px;
}
[dir='rtl'] .slick-prev
{
    right: -25px;
    left: auto;
}
.slick-prev:before
{
    content: '?';
}
[dir='rtl'] .slick-prev:before
{
    content: '?';
}

.slick-next
{
    right: -25px;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: -25px;
}
.slick-next:before
{
    content: '?';
}
[dir='rtl'] .slick-next:before
{
    content: '?';
}

/* Dots */
.slick-dotted.slick-slider
{
    margin-bottom: 30px;
}

.slick-dots
{
    position: absolute;
    bottom: -25px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '•';
    text-align: center;

    opacity: .25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: black;
}


/* Menu.css */
.top-nav ul ul {display: none; top:0; z-index:10;}
.top-nav ul li:hover > ul {display: block;}
.top-nav ul {	list-style: none; position: relative; padding:0;}
.top-nav ul:after {content: ""; clear: both; display: block;}
.top-nav ul li a:hover{text-decoration:none;}
.top-nav ul li:hover {}
	
.top-nav ul li a {font-size:15px; color:#626262; padding: 2em 0; display: block;  text-decoration: none; letter-spacing:1px;}
.top-nav ul ul li a {color:#010101! important; border-bottom:1px solid #010101! important; padding:7px 0! important; font-size:12px! important;}
.top-nav ul ul {background: #eca743; border-radius: 0px; padding: 0; margin:0; 	position: absolute; top: 90%; width:175px;}
.top-nav ul ul li {float: none;  position: relative; width:175px; background:transparent; border:0 ! important; margin: 0;
padding: 0 20px; }
.top-nav ul ul li a:hover {color:#555! important;}
.more_menu {right:0;}

.top-nav > ul > li > a .downarror {
    background-image: url("../img/marrow_nor.png");
    background-repeat: no-repeat;
    background-position: 97% 56%;
	 display: inline-block;
    height: 10px;
    width: 10px;
	margin-left:5px;
	display:none;
}
.top-nav  > ul > li > a:hover .downarror {
    background-image: url("../img/marrow_over.png");
    background-repeat: no-repeat;
    background-position: 97% 56%;
	 display: inline-block;
    height: 10px;
    width: 10px;
	display:none;
}
.top-nav ul li:hover .downarror {
    background-image: url("../img/marrow_over.png");
    background-repeat: no-repeat;
    background-position: 97% 56%;
	 display: inline-block;
    height: 10px;
    width: 10px;
	display:none;
}

.top-nav ul ul li a span {
    padding-left: 35px;
    background-size: 36px;
    border-left: 0 none;
}

.os_india {
 background:url(../img/india.png) no-repeat center left
}
.os_qatar {
 background:url(../img/qatar.png) no-repeat center left
}
.oa_bahrain {
 background:url(../img/bahrain.png) no-repeat center left
}
.os_kuwait {
 background:url(../img/kuwait.png) no-repeat center left
}
.os_malaysia {
 background:url(../img/malaysia.jpg) no-repeat center left
}
.os_oman {
 background:url(../img/oman.png) no-repeat center left
}
.os_saudi {
 background:url(../img/saudi.jpg) no-repeat center left
}
.os_singapore {
 background:url(../img/singapore.jpg) no-repeat center left
}
.os_uae {
 background:url(../img/uae.png) no-repeat center left
}
.os_us {
 background:url(../img/us.jpg) no-repeat center left
}
.os_cyprus {
 background:url(../img/cyprus.jpg) no-repeat center left
}

/* marque.css */
.marquee {
      padding: 0;
      -moz-animation: marquee 10s linear infinite;
      -webkit-animation: marquee 10s linear infinite;
      animation: marquee 10s linear infinite;
	  display:inline-block;
	  color: #333;
font-weight: bold;
      }
      @-moz-keyframes marquee {
      0%   { transform: translate(0, 0); }
      100% { transform: translate(0, -100%); }
      }
      @-webkit-keyframes marquee {
      0%   { transform: translate(0, 0); }
      100% { transform: translate(0, -100%); }
      }
      @keyframes marquee {
      0%   { 
      -moz-transform: translate(0, 0);
      -webkit-transform: translate(0, 0);
      transform: translate(0, 0); }
      100% { 
      -moz-transform: translate(0, -100%);
      -webkit-transform: translate(0, -100%);
      transform: translate(0, -100%); }
      }

.marquee p{padding:20px 0;} 

.liveprice {height: 35px;
overflow: hidden;
vertical-align: top;
background: #eca743; border-radius:15px; padding:0 20px;}
.liveprice-txt {display: inline-table;
vertical-align: top;
color: #000;} 
.gold-rateslider:before/*, .gold-rateslider:after*/ {width: 100%; height: 3px; display: table; vertical-align: middle; content: ""; margin: 0 auto;  border-bottom: 3px solid #eca743; padding-top:15px;}
/*.gold-rateslider:after {padding-top:0px;}*/
.content {
	display: block;
	max-width: 1200px;
	padding: 0;
	overflow: hidden;
	margin: 0 auto;

}
.content *{
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	-o-box-sizing:border-box;
	box-sizing:border-box;
}
.simple-marquee-container *{
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	-o-box-sizing:border-box;
	box-sizing:border-box;
}
.simple-marquee-container {
	width: 100%;
	float: left;
	display: inline-block;
	overflow: hidden;
	box-sizing: border-box;
	height: 35px;
	position: relative;
	cursor: pointer;
}

.simple-marquee-container .marquee-sibling {
	padding: 0;
	background: #eca743;
	width: 20%;
	height: 35px;
	line-height: 32px;
	font-size: 20px;
	font-weight: bold;
	color: #010101;
	text-align: center;
	float: left;
	left: 0;
	z-index: 2000;
}

.simple-marquee-container .marquee, .simple-marquee-container *[class^="marquee"] {
	display: inline-block;
	white-space: nowrap;
	position:absolute;
}

.simple-marquee-container .marquee{
  margin-left: 25%;
}

.simple-marquee-container .marquee-content-items{
  display: inline-block;
  padding: 0;
  margin: 0;
  height: 35px;
  position: relative;
}

.simple-marquee-container .marquee-content-items li{
  display: inline-block;
  line-height: 35px;
  color: #eca743;
}

.simple-marquee-container .marquee-content-items li:after{
	content: "|";
	margin: 0 1em;
}
.down-arrow-section {position: absolute; left: 50%;  bottom: 0;}
.blurp--top {
    position: absolute;
    bottom: 0%;
    left: 50%;
    margin-left: 0;
    margin-bottom: -45px;
    z-index: 10;
	 -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);	
	background-image:  url(../img/more-icon.png);
    background-size: contain;
    background-position: center;
    
	background-repeat:no-repeat;
	width: 210px;
height: 70px;
}

.blurp--top {
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
}
svg:not(:root) {
    overflow: hidden;
}
.down-arrow {
    display: block;
    width: 80px;
    height: 50px;
    opacity: 0.7;
    position: absolute;
    left: 50%;
    margin-left: -38px;
    cursor: pointer;
    z-index: 100;
}
.down-arrow--bubble {
    bottom: 100%;
    margin-bottom: -12px;
}
.down-arrow .arrow {
    position: absolute;
    top: 10%;
    left: 50%;
    z-index: 20;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.down-arrow--bubble .arrow {
    width: 16px;
    height: 16px;
    margin-left: -8px;
    margin-top: -8px;
    border-right: 2px solid black;
        border-right-color: black;
    border-bottom: 2px solid black;
        border-bottom-color: black;
}
.down-arrow .uparrow {
    position: absolute;
    top: 10%;
    left: 50%;
    z-index: 20;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.down-arrow--bubble .uparrow {
    width: 13px;
    height: 13px;
    margin-left: -6px;
    margin-top: -8px;
    border-left: 2px solid black;
        border-right-color: black;
    border-top: 2px solid black;
        border-bottom-color: black;
}
.down-arrow--bubble .uparrow {
    border-color: #101010;
}

.mizz .slick-slide{border:0! important; margin:0;padding:0}
.mizz .slick-slide img{height:540px; width:auto}

header.innerhead {height: 111px; margin: 10px 0;}
header.innerhead .main-nav {margin-top: 55px;}
.innercontent-section {background: rgba(0, 0, 0, 0.98); padding:50px 0; min-height: 78vh; margin-bottom: 1px; border-radius: 15px 15px 0 0;}
.innerhead .top-section{border-radius: 15px;}
.innerhead .top-section:after {background-color: transparent;}
.section-what-you-get .long-copy {
    margin-bottom: 30px; text-align: center;     line-height: 160%;
}

.innercontent-block {padding:0; max-width: 1080px; margin: 0 auto; font-size: 18px; font-weight: 500; text-align: center; color:#f6c75a}
.innercontent-block h2 {font-family: 'Lobster', cursive; font-size: 50px; color: #d49e22; font-weight: 500; word-spacing: 1px; text-align: center; margin-bottom: 30px; letter-spacing: 3px; text-transform: none; text-shadow: 2px 2px 2px #000;}

.innercontent-block h2:after {background-color: #d49e22;}
.innercontent-block p {font-size: 20px; color: #d49e22; font-weight: normal; word-spacing: 1px; text-align: left; margin-bottom: 20px; letter-spacing: 1px; line-height:140%;}
.innercontent-block p b{font-size: 25px; font-weight: bold; line-height:200%;}
.contact-row {margin-bottom:25px;}
.contact-detail {min-height: 270px; background: #fff; padding: 50px; background-image: url(../img/tile.jpg);
    background-position: center;
    background-size: cover; border-radius: 10px;}
	
.contact-detail h4 {margin-bottom: 15px; word-spacing: 3px; letter-spacing: 0; color: #010101; line-height: 150%; text-align: center;   font-weight: 600; text-shadow: none; font-size: 28px;   font-family: 'Philosopher', sans-serif;}
.contact-detail p {margin-bottom: 15px; word-spacing: 3px; letter-spacing: 0; color: #333; line-height: 150%; text-align: center;   font-weight: 400; text-shadow: none; font-size: 18px;}
.contact-detail p a{color: #333; border-bottom: none;}
.contact-detail p a:hover{border-bottom: 1px solid #333;}


.contact-txt {padding: 5px; 
text-shadow: 1px 1px 1px #333;
font-size: 25px;
font-weight: 500;
text-align: center; color:#f6c75a; line-height:150%; max-width: 500px; background: #010101;}
.contact-txt h2 {font-family: 'Lobster', cursive; font-size: 35px; color: #d49e22; font-weight: 500; word-spacing: 1px; text-align: left; margin-bottom: 5px; letter-spacing: 3px; text-transform: none; text-shadow: 2px 2px 2px #000;}
.contact-txt h2:after {margin:15px 0 0 0; height: 0;}

.contact-txt input
{
    width: 48%;
    padding: 10px;
    float: left;
}

.contact-txt input[type="text"], .contact-txt input[type="email"], .contact-txt input[type="tel"], .contact-txt input[type="url"], .contact-txt textarea {
	border: 1px solid #fff; background: #777; margin: 0 2%;  margin-left: 0px; padding: 7px; font-size: 13px; letter-spacing: 1px; color: #fff; border-radius: 5px;
}

.contact-txt input[type="text"]:hover, .contact-txt input[type="email"]:hover, .contact-txt input[type="tel"]:hover, .contact-txt input[type="url"]:hover, .contact-txt textarea:hover {
	-webkit-transition:border-color 0.3s ease-in-out;
	-moz-transition:border-color 0.3s ease-in-out;
	transition:border-color 0.3s ease-in-out;
	border:1px solid #AAA;
}

.contact-txt button[type="submit"] {
	cursor:pointer;
	border:none;
	background:#d49e22;
	color:#FFF;
	margin:0 0 5px;
	padding:10px 55px;
	font-size:15px;
}

.contact-txt button[type="submit"]:hover {
	background:#d49e22;
	-webkit-transition:background 0.3s ease-in-out;
	-moz-transition:background 0.3s ease-in-out;
	transition:background-color 0.3s ease-in-out;
}



/* ----------------------------------------------- */
/* About us */
/* ----------------------------------------------- */

.abouts-row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}
.abt-lg-3 {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

.zoomin, .zoomin img {
    transform: translateY(0) scale(1);
    transition: ease all .3s;
    overflow: hidden;
}
.zoomin:hover img {
    transform: translateY(0) scale(1.03);
    transition: ease all .3s;
}

.abt-detail {padding: 20px 30px 0 30px; background-image: url(../img/tile.jpg); background-position: center; background-size: cover; border-radius: 10px;     margin: 25px 0;}
.abt-detail img{width:100%}

	
.abt-detail h1 {margin-bottom: 0; word-spacing: 3px; letter-spacing: 0; color: #010101; line-height: 150%; text-align: center;   font-weight: 600; text-shadow: none; font-size: 25px;}
.abt-detail p {margin-bottom: 15px; word-spacing: 3px; letter-spacing: 0; color: #333; line-height: 150%; text-align: left;   font-weight: 400; text-shadow: none; font-size: 18px;}
.abt-detail p a{color: #333; border-bottom: none;}
.abt-detail p a:hover{border-bottom: 1px solid #333;}

p.mb-3 {color:#666; font-size:15px; margin-bottom:15px; line-height: 170%;}
.mb-3 h1{font-size: 35px; text-align: left; margin: 20px 20px 0; text-transform: none; font-weight: bold; font-family: 'Lobster', cursive; color: #000;  font-family: 'Philosopher', sans-serif;}
.mb-3 p {color:#333; font-size:15px; text-align: left; margin: 0 0 20px 20px; line-height: 170%;}
.card {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: .25rem;
	background-image: url(../img/tile.jpg);
    background-position: center;
    background-size: cover;
    border-radius: 10px;
}
.b-o-director {
    height: 225px;
    overflow: hidden;
	border-radius: 10px 10px 0 0;
}
.img-fluid {
    max-width: 100%;
    height: auto;
}
.card-img-top {
    width: 100%;
    border-top-left-radius: calc(.25rem - 1px);
    border-top-right-radius: calc(.25rem - 1px);
}
.b-o-director img {
    width: 100%;
    border-radius: 10px;
}
.directors-tile .card-body {
    min-height: 80px;
}
.card-title {
    font-size: 22px;
    margin: 5px;
    text-transform: none;
    color: #000;
    font-weight: 600;
    text-shadow: none;
}
.directors-tile p {
    margin: 5px;
    color: #333;
    font-size: 15px;
    text-align: center;
    text-shadow: none;
}
.directors-tile a{}
.directors-tile a:hover, .directors-tile a:active, .directors-tile a:link, .directors-tile a:visited{text-decoration: none;}
.modal-header {
    padding: 0! important;
    border-bottom: 0! important;
}
.modal-header .close {
    margin: 10px 10px 0 0! important;
}
@media (min-width: 768px){
.abt-md-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}
.modal-dialog {
    width: auto! important;
    max-width: 1020px! important;
    margin: 30px auto;
}
}
@media (min-width: 992px) {
.abt-lg-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}
.navig.top-nav{position: relative; display: flex; justify-content: space-between;}
.top-nav ul {padding: 0; display: flex;justify-content: end; align-items: end;}
.height-100 {height:100%}
.d-flex {display:flex}
.justify-content-end {justify-content: flex-end;}
.align-items-end {align-items: flex-end ;}
.mb-4 {margin-bottom: 1.5rem ;}
}


.rate-info {position:absolute; max-width:800px; right:0; top:16px; text-align: left; color:#e2a545; z-index:10000; font-weight:bold; letter-spacing:1px}
/*.sticky .rate-info {right:10px;}*/
.rate-info span{color:#fff! important;}
.rate-info svg{width: 45px; position: absolute; left: -60px; top: -25px;}
.rate-info img{float:left; width:23px; margin:0 5px 0 0;}
.rate-block {display: flex; width: 50%; float: left; justify-content: flex-start; align-items: center;}
.slick-vertical .slick-slide {padding:0px;}
.rate-sec{float: left; width: 140px; text-align: center;  font-size: 17px;}
.rateslide {float: left; width:150px;  font-size: 17px;}
.rateslide .slick-slide {margin:0! important; padding:0! important}
.silverrate .slider.rateslide{ width: 110px;}
.border-left {
    border-left: 5px solid #000;
}



/* ----------------------------------------------- */
/* queries.css */
/* ----------------------------------------------- */

@media only screen and (max-width: 1400px) {
	.mizz .slick-slide img{height:460px;}
	.mititle h1 {font-size:37px;}
	.mititle h1 p {font-size: 54px;}
	.main-nav {margin-top: 25px;}
	.rslides {margin: 50px auto;}
	.main-image h3 {margin:0; font-size: 26px;}
	.main-image h3:before{margin: 0px auto 35px;}
	.main-image p {font-size: 23px;}
	.section-form{padding: 30px;}
	.drag-text h3 { font-size: 15px;}
}
/* Big tablet to 1200px (widths smaller taht the 1140px row) */
@media only screen and (max-width: 1300px) {
	.mititle h1 {font-size:35px;}
.mititle h1 p {font-size: 50px; line-height: 120%; }
}
@media only screen and (max-width: 1200px) {
    .main-image {width: 100%;}    
    .row { padding: 0 2%; }
	.main-image h3 {font-size: 25px;}
	.main-image p {font-size:22px;}
	.drag-text h3 {font-size: 15px;}
	.mititle h1 {font-size: 28px;}
	.mititle h1 p {font-size: 40px;}
	.mizz .slick-slide img {height: 400px;}
	.section-what-you-get {padding:5%;}
	.section-aboutus, .section-melting, .section-processing {padding: 12% 0;}
	.section-what-you-get h2, .aboutus-txt h2, .melting-txt h2, .processing-txt h2 {font-size: 35px;}
	.aboutus-txt, .melting-txt, .processing-txt {font-size: 18px; line-height: 170%;}
}

/* Small tablet to big tablet: from 768px to 1023px */
@media only screen and (max-width: 1023px) {
    body { font-size: 18px; }
    section { padding: 60px 0; }
    .app-screen { width: 50%; }
    
    .icon-small { 
        width: 17px;
        margin-right: 5px;
    }
    



    .contact-form { width: 80%; }
	
}

@media screen and (max-width:992px){
	section{padding:30px 0}
	section h2{font-size:30px;}
	header {height: 75vh;}
	.main-image-section {height: 75vh;}
	.main-image {height: 47vh;}

.section-form h4 {font-size:19px;}
.signuplink {font-size: 15px;}
.logo {height:110px; margin-top: 50px; margin-bottom: 0px;}
.main-image h3::before {width: 20%; height: 2px; margin: 0px auto 20px;}
.main-image h3 {font-size:18px;}
.main-image p {font-size:16px;}
.drag-text h3 {font-size:13px;}
    .section-form{padding:20px 10px;}
	.login_container1{width:95%}
	input.lgtextfield, textarea.lgtextfield, .image-upload-wrap {padding:8px 10px;}
	.lgmaxlabelfield {margin-top: 37px; font-size: 14px;}
	/*.lg_desc {margin-bottom: 5px;}*/
	.section-what-you-get h4{font-size:18px;}
	.gallery-slider .nbs-flexisel-inner {width: 100%;}
	.gallery-slider {padding: 30px 5px;}
	.btn-full:link,
.btn-full:visited,
input[type=submit] {min-width:170px; height:40px;}
header {background-attachment: initial;}
.span-1-of-3{width: 100%;}
.rslides {width: 80%; margin: 30px auto;}
.btn:link, .btn:visited, input[type=submit] {margin-top: 25px;}
.footer_link {display: block; margin-left: 0; padding: 10px 0; }
#LogoImg, #MiImg {background-size:240px; background-position: -187px -496px; width: 22px; height: 22px; top: 0;}
.image-upload-wrap {padding:10px;}
.main-image, .row{padding:0 1%;}
.bottombtn{right:10px;}
.bottombtn a  {padding: 5px 20px; font-size: 13px;}
.section-calc {padding:30px 0;}
.innercontent-section {padding: 20px 15px;}
.innercontent-block h2 {margin-bottom: 10px;font-size: 30px;}
.innercontent-block h2:after {margin-top: 10px;}
.innercontent-block p{font-size: 15px;}
.rate-info {position: relative; top: 0;}
.abt-detail {padding: 10px;}
.social-section ul {float: left; margin: 20px 0 0;}
.subtrademark {margin-bottom: 15px;}
.section-footer {background-position: top; padding: 270px 0;}
.mb-3 h1 {font-size: 25px;}
.contact-txt input{width: 100%;}
.contact-txt input[type="text"], .contact-txt input[type="email"], .contact-txt input[type="tel"], .contact-txt input[type="url"], .contact-txt textarea {margin: 2%;}
fieldset {margin: 0;}
}

/* Small phones to small tablets: from 481px to 767px */
@media screen and (max-width: 800px){
	nav {padding:0}
	section h2{font-size:22px; margin-bottom:20px;}
	header {background-position: 32% 0;}
	header, .main-image-section {height: 60vh;}
    body { font-size: 16px;}
    section { padding: 30px 20px; }
    .slick-slide {margin:0 10px; padding:15px 0}
    .row { padding: 0 3% 0; }
    .main-image { padding: 0; }
	.main-image-section{width: 100%; max-width: 100%; padding:0}
    .box p {font-size: 16px;}
    .col { width: 100%; margin: 0;}

    .logo{height:100px; margin-top: 10px;}
    
    
    /*.sticky .main-nav { margin-top: 10px; width: 100%;}

    .sticky .main-nav li a:link,
    .sticky .main-nav li a:visited { padding: 8px 0; }
    .sticky .mobile-nav-icon { margin-top: 55px; }
    .sticky .mobile-nav-icon i { color: #555; }*/
	    
    input[type="text"], input[type="email"], select, textarea { width:100%; }
    .form-cell {	margin: 5px 0;text-align: center;}
    .rights-desk{display:none;}
    .rights-mobile{display:block;}
    
    .social-links {
	   text-align: center;
       float:none;}
    
    .footer-nav {float: none;text-align: center;}
    footer {padding: 10px;}
 
    h1 { font-size: 180%; }
    h2 { font-size: 150%; }
    h3{font-size: 130%;line-height: 110%;word-spacing: 2px;padding:5px;}
    
    .long-copy {width: 100%;  margin-left: 0%;}
    
.main-image h3 {font-size:24px;}
.main-image p {font-size:20px;}
.drag-text h3 {font-size:15px;}
.ion-navicon-round {display: block; 	background:  transparent url("../img/images_sprite.png")no-repeat 0 0; margin: 0 auto 7px; background-position: -6px -64px; width: 26px; height: 22px;}
.ion-close-round {display: block; 	background:  transparent url("../img/images_sprite.png")no-repeat 0 0; margin: 0 auto 7px; background-position: -346px -202px; width: 20px; height: 22px;}
/*.sticky .ion-navicon-round {display: block; 	background:  transparent url("../img/images_sprite.png")no-repeat 0 0; margin: 0 auto 7px; background-position: -6px -64px; width: 26px; height: 22px;}
.sticky .ion-close-round {display: block; 	background:  transparent url("../img/images_sprite.png")no-repeat 0 0; margin: 0 auto 7px; background-position: -345px -200px; width: 20px; height: 22px;}*/
 .rslides {width: 90%; margin: 30px auto;}
 .mail {text-align: left; float: none; padding-bottom: 15px;}
 .footer_link{display: inline-block;  margin-left: 25px;}
 .section-form {margin:10px 0 20px 0;}
 .image-upload-wrap {padding:10px;}
 .top-section {padding: 8px 2%; }
 .mainimage-row .mitxt {width:50%}
 .mainimage-row .miimg {width:50%}
 .mititle h1 {padding:0}
 .blurp--top {margin-bottom: -26px; height: 40px;}
 .down-arrow--bubble {margin-bottom: -28px;}
 .down-arrow--bubble .arrow {width: 10px; height: 10px; left: 53%; top: 40%;}
 .down-arrow--bubble .uparrow {width: 8px; height: 8px; margin-top: -6px; left: 51%;}
 .mizz .slick-slide img {height: 260px;}
 .mititle {height: 40vh;}
 .main-image {height: 32vh;}
 .long-copy .col {width: 33.33%;}
 .aboutus-txt {padding: 0;}
 .processing-txt {padding: 0 4%;}
 .section-what-you-get h2, .aboutus-txt h2, .melting-txt h2, .processing-txt h2, .calc-txt h2 {font-size: 28px; line-height:130%}
 .calc-txt {padding: 20px;}
 .rate-block {width: 100%;}
 .rate-sec,.rateslide {font-size: 13px;}
 .rate-info{letter-spacing: 0;}
 .rate-sec {width: 110px; margin-left: 40px; text-align: left;}
 .rateslide {width: 100px;}
 .rate-info img {width: 17px;}
 .rate-info {right: 0;}
 .rate-info svg {width: 30px; left: 5px; top: -10px;}
 header.innerhead .main-nav {margin-top: 5px;}
 body {padding: 0;}
 h1.topsection {padding: 0;}
 .top-section {position: relative;}
 
 .main-nav { display: none; }
 .mobile-nav-icon {display: inline-block;}
 .main-nav {float: left; margin-top: 5px; margin-left: 0;}
 .main-nav li {display: block; margin:5px 10px;}
 .main-nav li a:link, .main-nav li a:visited { display: block; border: 0; padding: 10px 0; font-size: 100%; color: #fdfdfd;}
 .top-nav ul {width: 100%;background-color: #eca743;}
 .top-nav ul ul {position: relative; width: 100%; display: block;}
 .top-nav ul ul li {width: 100%;}
 .top-nav ul ul li a {padding: 10px 0! important;}
}

@media screen and (max-width:600px){
	.main-image h3 {font-size:20px;}
.main-image p {font-size:18px;}
.drag-text h3 {font-size:15px;}
.footer_link {display: block; margin-left: 0; padding: 10px 0; }
}

/* Small phones: from 0 to 480px */
@media screen and (max-width:480px){
    section { padding: 25px 0; }
    .contact-form {width: 100%; }
	.main-image h3 {font-size:14px;}
.main-image p {font-size:14px;}
.drag-text h3 {font-size:12px;}
.section-form h4 {font-size:15px}
.lgmaxlabelfield {margin-top: 37px; font-size: 12px;}
}

@media only screen and (max-width: 992px) {
	.readmore {display:inline; cursor:pointer;}
	 #aboutus-textarea {
    display: none;
	transition: all 1.2s ease-in-out;
}

#aboutus:checked + #aboutus-textarea {
    display: initial;
	transition: all 1.2s ease-in-out;
}

.section-aboutus input[type="checkbox"] {
    position: absolute;
    left: -1000px;
	transition: all 1.2s ease-in-out;
}
.section-aboutus label {
	transition: all 1.2s ease-in-out;
	text-align:right;
	color:#d4555b;
}

#aboutus:checked + #aboutus-textarea + label {
	display:none;
}

.readmore + #aboutus:checked   {
	display:none;
}

#aboutus + #aboutus-textarea + label::before {
    content: '';
	transition: all 1.2s ease-in-out;
}

#aboutus:checked ~ #aboutus-textarea + label::before {
    content: '';
}


#youget-textarea {
    display: none;
	transition: all 1.2s ease-in-out;
}

#youget:checked + #youget-textarea {
    display: initial;
	transition: all 1.2s ease-in-out;
}

.section-what-you-get input[type="checkbox"] {
    position: absolute;
    left: -1000px;
	transition: all 1.2s ease-in-out;
}
.section-what-you-get label {
	transition: all 1.2s ease-in-out;
	text-align:right;
	color:#d4555b;
}

#youget:checked + #youget-textarea + label {
	display:none;
}

.readmore + #youget:checked   {
	display:none;
}

#youget + #youget-textarea + label::before {
    content: '';
	transition: all 1.2s ease-in-out;
}

#youget:checked ~ #youget-textarea + label::before {
    content: '';
}
#youget-textarea-2 {display:none;}

}


#toolbar-popup {
	visibility: hidden;
	min-width: 300px;
	max-width: 300px;
	/*margin-left: -125px;*/
	background-color: #2f373a;
	color: #fff;
	text-align: center;
	border-radius: 2px;
	padding: 10px 16px;
	position: absolute;
	z-index: 10;
	left: 100%;
	top: 10px;
	font-size: 14px;
	border-radius:6px;

}

#toolbar-popup::before {
	content: "";
	position: absolute;
	top: 12px;
	left: -8px;
	margin-left: -8px;
	border-width: 8px;
	border-style: solid;
	border-color:  transparent #2f373a transparent transparent ;

}
#toolbar-popup.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 5.5s;
  animation: fadein 0.5s, fadeout 0.5s 5.5s;
}

@-webkit-keyframes fadein {
  from {left: 105%; opacity: 0;} 
  to {left: 100%; opacity: 1;}
}

@keyframes fadein {
  from {left: 105%; opacity: 0;}
  to {left: 100%; opacity: 1;}
}

@-webkit-keyframes fadeout {
  from {left: 100%; opacity: 1;} 
  to {left: 105%; opacity: 0;}
}

@keyframes fadeout {
  from {left: 100%; opacity: 1;}
  to {left: 105%; opacity: 0;}
}

@media only screen and (max-width: 1100px) {
#toolbar-popup {
	min-width: 200px;
	max-width: 200px;
}
}