/*  ----------------------------------------------------
1. IMPORT GOOGLE FONTS
-------------------------------------------------------- */
@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,800);
@import url(https://fonts.googleapis.com/css?family=Pacifico);
@import url(https://fonts.googleapis.com/css?family=Montserrat);
@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,300,200);
@import url(https://fonts.googleapis.com/earlyaccess/droidarabickufi.css);

/*  ----------------------------------------------------
2. GENERAL STYLES
-------------------------------------------------------- */
* {

font-family: 'Droid Arabic Kufi', sans-serif;

}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
html {
    width: 100%;
    height: 100%;
    text-rendering: optimizeLegibility !important;
    -webkit-font-smoothing: antialiased !important;
}
body {
    width: 100%;
    height: 100%;
    font-family: 'Open Sans', sans-serif;
    background-color: #fff;
    color: #747474;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Droid Arabic Kufi', sans-serif;
    font-weight: normal;
    color: #000;
    -webkit-font-smoothing: antialiased;
}
h1 { font-size: 36px; line-height: 45px; }
h2 { font-size: 30px; line-height: 40px; }
h3 { font-size: 24px; line-height: 35px; }
h4 { font-size: 40px; line-height: 50px; font-weight: 700; }
h5 { font-size: 14px; line-height: 25px; }
h6 { font-size: 12px; line-height: 20px; }

h1 small { font-size: 50%; }
h2 small { font-size: 60%; }
h3 small { font-size: 70%; }
h4 small { font-size: 80%; }
h5 small { font-size: 90%; }
h6 small { font-size: 90%; }

small {
    font-size: 90%;
    font-family: 'Droid Arabic Kufi', sans-serif;
}

code { text-transform:none; font-family: monospace, serif;}

p {
    font-family: 'Droid Arabic Kufi', sans-serif !important;
    margin: 0 0 25px 0;
    font-size: 13px;
    line-height: 25px;
    color: #747474;
}
p strong { font-weight: 600; }
.lead {
    font-size: 14px;
    font-weight: 400;
    line-height: 25px;
}
.dropcap {
    float: left;
    width: 0.7em;
    font-size: 400%;
    font-family: algerian, courier;
    line-height: 80%;
    -webkit-border-radius: 2px;
       -moz-border-radius: 2px;
            border-radius: 2px;
    padding-left: 3px;
    margin-top: 5px;
    margin-right: 5px;
}

a {
    color: #111;
    outline: none;
    -webkit-transition: all .2s ease-in-out;
       -moz-transition: all .2s ease-in-out;
            transition: all .2s ease-in-out;
}
a:hover,
a:focus {
    color: #111;
    text-decoration: none;
    outline: none;
}
small {
    display: block;
    margin-top: 5px;
}
.animated { visibility:hidden; }
.visible { visibility:visible; }

.font-pacifico    { font-family: 'Droid Arabic Kufi', sans-serif !important; }
.font-open-sans   { font-family: 'Open Sans', sans-serif !important; }
.font-montserrat  { font-family: 'Montserrat', sans-serif !important; }
.font-source-sans-pro  { font-family: 'Source Sans Pro', sans-serif !important; }

.fs-75 { font-size: 75px !important; }
.fs-100 { font-size: 100px !important; }
.font-size-light { font-weight: 200 !important; }
.font-size-normal { font-weight: 300 !important; }
.font-size-bold { font-weight: 400 !important; }

.strong { font-weight: 600; }
#pageloader {
    background-color: #E74C3C;
    height: 100%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
}
#pageloader.bw {
    background-color: #000000;
}
.loader-item {
    margin: auto;
    position: absolute;
    top: 0; left: 0; bottom: 0; right: 0;
    height: 40px;
    width: 40px;
}
.loader-item img {
    width: 80px;
}
::-moz-selection { /* Code for Firefox */
    color: #fff;
}

::selection {
    color: #fff;
}

.intro-direction {
    position: absolute;
    left: 50%;
    bottom: 5%;
}
.mouse-icon {
    border: 2px solid #fff;
    height: 40px;
    width: 24px;
    display: block;
    z-index: 10;
    opacity: 0.7;
    background-color: rgba(255,255,255,.5);
    -webkit-border-radius: 16px;
       -moz-border-radius: 16px;
            border-radius: 16px;
}
.mouse-icon .wheel {
    -webkit-animation-name: mouse-anim-drop;
    -webkit-animation-duration: 1s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-delay: 0s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-play-state: running;
    -webkit-animation-name: mouse-anim-drop;
          animation-name: mouse-anim-drop;
    -webkit-animation-duration: 1s;
          animation-duration: 1s;
    -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
    -webkit-animation-delay: 0s;
          animation-delay: 0s;
    -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
    -webkit-animation-play-state: running;
          animation-play-state: running;
}
.mouse-icon .wheel {
    position: relative;
    width: 2px;
    height: 6px;
    top: 4px;
    margin-left: auto;
    margin-right: auto;
    -webkit-border-radius: 10px;
       -moz-border-radius: 10px;
            border-radius: 10px;
}
@-webkit-keyframes mouse-anim-drop {
  0% {
    top: 5px;
    opacity: 0;
  }
  30% {
    top: 10px;
    opacity: 1;
  }
  100% {
    top: 25px;
    opacity: 0;
  }
}
@keyframes mouse-anim-drop {
  0% {
    top: 5px;
    opacity: 0;
  }
  30% {
    top: 10px;
    opacity: 1;
  }
  100% {
    top: 25px;
    opacity: 0;
  }
}
.icon-svg {
    max-height: 80px;
}

.go-to-top {
    background-color: rgba(0,0,0,.1);
    color: #fff;
    position: fixed;
    bottom: 10px;
    right: 10px;
    text-align: center;
    padding-top: 5px;
    display: block;
    width: 30px;
    height: 30px;
    z-index: 99999;
    -webkit-border-radius: 2px;
       -moz-border-radius: 2px;
            border-radius: 2px;
}

/*  ----------------------------------------------------
3. LIST STYLES
-------------------------------------------------------- */
ul, ol {
    font-family: 'Open Sans', sans-serif;
    font-size: 20px;
    color: #747474;
    margin: 0;
    padding: 0;
}
ol li {
    line-height: 25px;
    padding: 0;
    margin-left: 20px;
}
ul.icon-list {
    text-align: left;
}
ul.icon-list li,
ul.icon-list-underline li {
    list-style: none;
    line-height: 25px;
}
ul.icon-list li i,
ul.icon-list-underline li i {
    margin-right: 10px;
}
ul.icon-list-underline li {
    padding-bottom: 5px;
    margin-bottom: 5px;
}
.underline-solid li {
    border-bottom: 1px solid #b9b9b9;
}
.underline-dotted li {
    border-bottom: 1px dotted #b9b9b9;
}
.underline-dashed li {
    border-bottom: 1px dashed #b9b9b9;
}
.underline-double li {
    border-bottom: 3px double #b9b9b9;
}
ul.no-icon-list {
    margin: 0;
    padding: 0;
}
ul.no-icon-list li {
    padding: 0;
    margin: 0;
    list-style: none;
}
/*  ----------------------------------------------------
4. HEADING STYLE
-------------------------------------------------------- */
.heading {
    height: 20px;
    display: block;
    margin-bottom: 20px;
    font-size: 15px;
    opacity: 1 !important;
}
.heading-desc {
    display: block;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    line-height: 25px;
    margin-left: auto;
    margin-right: auto;
}
.heading-solid,
.heading-dotted,
.heading-dashed,
.heading-double {
    width: 50px;
    border-bottom-width: 3px;
}
.heading-solid {
    border-bottom-style: solid;
}
.heading-dotted {
    border-bottom-style: dotted;
}
.heading-dashed {
    border-bottom-style: dashed;
}
.heading-double {
    border-bottom-style: double;

}

.heading-solid-icon,
.heading-dotted-icon,
.heading-dashed-icon,
.heading-double-icon {
    width: 120px;
    margin-top: 20px;
}
.heading-solid-icon span,
.heading-dotted-icon span,
.heading-dashed-icon span,
.heading-double-icon span {
    width: 40px;
    height: 2px;
    float: left;
}
.heading-solid-icon span span,
.heading-dotted-icon span span,
.heading-dashed-icon span span,
.heading-daouble-icon span span {
    width: 40px;
    height: 2px;
    float: right;
}
.heading-solid-icon span,
.heading-dotted-icon span,
.heading-dashed-icon span,
.heading-solid-icon span span,
.heading-dotted-icon span span,
.heading-dashed-icon span span {
    border-top-width: 2px;
    border-top-style: solid;
    display: block;
}
.heading-double-icon span,
.heading-double-icon span span {
    border-bottom-width: 3px;
    border-top-style: solid;
    display: block;
}
.heading-solid-icon i,
.heading-dotted-icon i,
.heading-dashed-icon i,
.heading-double-icon i {
    float: left;
    margin-left: 10px;
    margin-right: 10px;
    margin-top: -5px;
}

.heading-solid-icon div,
.heading-solid-icon div div {
    border-bottom-style: solid;
}
.heading-dotted-icon div,
.heading-dotted-icon div div {
    border-bottom-style: dotted;
}
.heading-dashed-icon div,
.heading-dashed-icon div div {
    border-bottom-style: dashed;
}
.heading-double-icon div,
.heading-double-icon div div {
    border-bottom-style: double;
}

.heading-icon,
.heading-icon-o {
    width: 60px;
    height: 60px;
    font-size: 20px;
    padding-top: 20px;

}
.heading-icon {
    color: #fff;
}
.heading-icon-o {
    background-color: transparent;
    border-width: 2px;
    border-style: solid;
}
.heading-icon-rounded {
    -webkit-border-radius: 5px;
       -moz-border-radius: 5px;
            border-radius: 5px;
}
.heading-icon-circle {
    -webkit-border-radius: 100%;
       -moz-border-radius: 100%;
            border-radius: 100%;
}

/*  ----------------------------------------------------
8. BUTTONS
-------------------------------------------------------- */
.button,
.button-3d,
.button-o {
	display: inline-block;
	padding: 8px 16px;
	margin-bottom: 5px;
	font-size: 12px;
	font-weight: normal;
	line-height: 1.42857143;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	-ms-touch-action: manipulation;
	  touch-action: manipulation;
	cursor: pointer;
	-webkit-user-select: none;
	 -moz-user-select: none;
	  -ms-user-select: none;
		  user-select: none;
	background-image: none;
	border: 1px solid transparent;
	font-family: 'Montserrat', sans-serif;
	text-transform: uppercase;
    text-shadow: none;
	font-weight: normal !important;
	letter-spacing: 1px;
	-webkit-transition: all .25s ease-in-out;
	   -moz-transition: all .25s ease-in-out;
			transition: all .25s ease-in-out;
    -webkit-border-radius: 4px;
       -moz-border-radius: 4px;
            border-radius: 4px;
}
.button,
.button:hover,
.button-3d,
.button-3d:hover {
	color: #fff !important;
}
.button-o {
	background: transparent !important;
	border-width: 1px;
	border-style: solid;
}
.button i,
.button-3d i,
.button-o i {
    margin-left: 15px;
    margin-right: 0;
    font-size: 14px;
}
.button small,
.button-3d small,
.button-o small {
    margin-top: 0px;
}
.button:focus {
    outline: none;
    color: #fff;
}
.button-xs { font-size: 9px; padding: 5px 12px; }
.button-sm { font-size: 10px; padding: 8px 20px;}
.button-md { font-size: 11px; padding: 12px 25px;}
.button-lg { font-size: 13px; padding: 15px 30px;}
.button-square {
    -webkit-border-radius: 0;
       -moz-border-radius: 0;
            border-radius: 0;
}

.button-xs.button-rounded,
.button-rounded.button-xs { -webkit-border-radius: 2px;-moz-border-radius: 2px;border-radius: 2px;}
.button-sm.button-rounded,
.button-rounded.button-sm { -webkit-border-radius: 4px;-moz-border-radius: 4px;border-radius: 4px;}
.button-md.button-rounded,
.button-rounded.button-md { -webkit-border-radius: 7px;-moz-border-radius: 7px;border-radius: 7px;}
.button-lg.button-rounded,
.button-rounded.button-lg { -webkit-border-radius: 10px;-moz-border-radius: 10px;border-radius: 10px;}

.button-circle {
    -webkit-border-radius: 100px;
       -moz-border-radius: 100px;
            border-radius: 100px;
}
.button-block {
	display: block;
	width: 100%;
	margin-top: 5px;
}
/* Main Colors */
.button.button-pasific {
	color: #fff;
}
.button-3d.button-pasific {
	color: #fff;
	-webkit-box-shadow: 0 5px 0 #ee3135;
	   -moz-box-shadow: 0 5px 0 #ee3135;
			box-shadow: 0 5px 0 #ee3135;
}
.button-3d:hover.button-pasific {
	-webkit-box-shadow: 0 3px 0 #ee3135;
	   -moz-box-shadow: 0 3px 0 #ee3135;
			box-shadow: 0 3px 0 #ee3135;
}
.button-o.button-pasific {
	background: transparent !important;
}
.button-o.button-pasific:hover {
    color: #fff !important;
}
/* Secondary Colors */
.button.button-red, .button-3d.button-red 		    { background-color: #fd3635; }
.button.button-pink, .button-3d.button-pink 		{ background-color: #fd40b3; }
.button.button-orange, .button-3d.button-orange 	{ background-color: #ff8b34; }
.button.button-purple, .button-3d.button-purple 	{ background-color: #a85ad4; }
.button.button-blue, .button-3d.button-blue 		{ background-color: #3dace1; }
.button.button-cyan, .button-3d.button-cyan 		{ background-color: #1abc9c; }
.button.button-green, .button-3d.button-green 	    { background-color: #b2cc71; }
.button.button-yellow, .button-3d.button-yellow 	{ background-color: #ffc501; }
.button.button-gray, .button-3d.button-gray 		{ background-color: #e0e0e0; color: #111 !important; }
.button.button-dark, .button-3d.button-dark 		{ background-color: #5f6467; }
.button.button-black, .button-3d.button-black 		{ background-color: #000000; }
.button.button-white, .button-3d.button-white 		{ background-color: #ffffff; color: #111 !important;}

.button-3d.button-red 		{ -webkit-box-shadow: 0 5px 0 #d92726; -moz-box-shadow: 0 5px 0 #d92726; box-shadow: 0 5px 0 #d92726; }
.button-3d.button-pink 	    { -webkit-box-shadow: 0 5px 0 #dc2193; -moz-box-shadow: 0 5px 0 #dc2193; box-shadow: 0 5px 0 #dc2193; }
.button-3d.button-orange 	{ -webkit-box-shadow: 0 5px 0 #e1660b; -moz-box-shadow: 0 5px 0 #e1660b; box-shadow: 0 5px 0 #e1660b; }
.button-3d.button-purple 	{ -webkit-box-shadow: 0 5px 0 #8632b5; -moz-box-shadow: 0 5px 0 #8632b5; box-shadow: 0 5px 0 #8632b5; }
.button-3d.button-blue 	    { -webkit-box-shadow: 0 5px 0 #1f8abe; -moz-box-shadow: 0 5px 0 #1f8abe; box-shadow: 0 5px 0 #1f8abe; }
.button-3d.button-cyan 	    { -webkit-box-shadow: 0 5px 0 #148d75; -moz-box-shadow: 0 5px 0 #148d75; box-shadow: 0 5px 0 #148d75; }
.button-3d.button-green 	{ -webkit-box-shadow: 0 5px 0 #7d9345; -moz-box-shadow: 0 5px 0 #7d9345; box-shadow: 0 5px 0 #7d9345; }
.button-3d.button-yellow 	{ -webkit-box-shadow: 0 5px 0 #deac02; -moz-box-shadow: 0 5px 0 #deac02; box-shadow: 0 5px 0 #deac02; }
.button-3d.button-gray 	    { -webkit-box-shadow: 0 5px 0 #a7a7a7; -moz-box-shadow: 0 5px 0 #a7a7a7; box-shadow: 0 5px 0 #a7a7a7; }
.button-3d.button-dark 	    { -webkit-box-shadow: 0 5px 0 #404345; -moz-box-shadow: 0 5px 0 #404345; box-shadow: 0 5px 0 #404345; }
.button-3d.button-black 	{ -webkit-box-shadow: 0 5px 0 #555555; -moz-box-shadow: 0 5px 0 #555555; box-shadow: 0 5px 0 #555555; }
.button-3d.button-white 	{ -webkit-box-shadow: 0 5px 0 #f9f9f9; -moz-box-shadow: 0 5px 0 #f9f9f9; box-shadow: 0 5px 0 #f9f9f9; }

.button-3d:hover.button-red 	{ -webkit-box-shadow: 0 3px 0 #d92726; -moz-box-shadow: 0 3px 0 #d92726; box-shadow: 0 3px 0 #d92726; }
.button-3d:hover.button-pink 	{ -webkit-box-shadow: 0 3px 0 #dc2193; -moz-box-shadow: 0 3px 0 #dc2193; box-shadow: 0 3px 0 #dc2193; }
.button-3d:hover.button-orange  { -webkit-box-shadow: 0 3px 0 #e1660b; -moz-box-shadow: 0 3px 0 #e1660b; box-shadow: 0 3px 0 #e1660b; }
.button-3d:hover.button-purple  { -webkit-box-shadow: 0 3px 0 #8632b5; -moz-box-shadow: 0 3px 0 #8632b5; box-shadow: 0 3px 0 #8632b5; }
.button-3d:hover.button-blue 	{ -webkit-box-shadow: 0 3px 0 #1f8abe; -moz-box-shadow: 0 3px 0 #1f8abe; box-shadow: 0 3px 0 #1f8abe; }
.button-3d:hover.button-cyan 	{ -webkit-box-shadow: 0 3px 0 #148d75; -moz-box-shadow: 0 3px 0 #148d75; box-shadow: 0 3px 0 #148d75; }
.button-3d:hover.button-green 	{ -webkit-box-shadow: 0 3px 0 #7d9345; -moz-box-shadow: 0 3px 0 #7d9345; box-shadow: 0 3px 0 #7d9345; }
.button-3d:hover.button-yellow  { -webkit-box-shadow: 0 3px 0 #deac02; -moz-box-shadow: 0 3px 0 #deac02; box-shadow: 0 3px 0 #deac02; }
.button-3d:hover.button-gray 	{ -webkit-box-shadow: 0 3px 0 #a7a7a7; -moz-box-shadow: 0 3px 0 #a7a7a7; box-shadow: 0 3px 0 #a7a7a7; }
.button-3d:hover.button-dark 	{ -webkit-box-shadow: 0 3px 0 #404345; -moz-box-shadow: 0 3px 0 #404345; box-shadow: 0 3px 0 #404345; }
.button-3d:hover.button-black 	{ -webkit-box-shadow: 0 3px 0 #555555; -moz-box-shadow: 0 3px 0 #555555; box-shadow: 0 3px 0 #555555; }
.button-3d:hover.button-white 	{ -webkit-box-shadow: 0 3px 0 #f9f9f9; -moz-box-shadow: 0 3px 0 #f9f9f9; box-shadow: 0 3px 0 #f9f9f9; }

.button-o.button-red		{ border-color: #fd3635; color: #fd3635; }
.button-o.button-pink 		{ border-color: #fd40b3; color: #fd40b3; }
.button-o.button-orange 	{ border-color: #ff8b34; color: #ff8b34; }
.button-o.button-purple	    { border-color: #a85ad4; color: #a85ad4; }
.button-o.button-blue 		{ border-color: #3dace1; color: #3dace1; }
.button-o.button-cyan 		{ border-color: #1abc9c; color: #1abc9c; }
.button-o.button-green		{ border-color: #b2cc71; color: #b2cc71; }
.button-o.button-yellow	    { border-color: #edc951; color: #edc951; }
.button-o.button-gray 		{ border-color: #e0e0e0; color: #e0e0e0; }
.button-o.button-dark 		{ border-color: #323a45; color: #323a45; }
.button-o.button-black 		{ border-color: #000000; color: #000000; }
.button-o.button-white 		{ border-color: #ffffff; color: #ffffff; }
.button-o.button-white:hover{ color: #000000 !important;}
/* Bootstrap Colors */
.button.button-primary, .button-3d.button-primary { background-color: #286090; }
.button.button-success, .button-3d.button-success { background-color: #5cb85c; }
.button.button-info, .button-3d.button-info       { background-color: #5bc0de; }
.button.button-warning, .button-3d.button-warning { background-color: #ec971f; }
.button.button-danger, .button-3d.button-danger   { background-color: #c9302c; }

.button-3d.button-primary { -webkit-box-shadow: 0 5px 0 #1a456b; -moz-box-shadow: 0 5px 0 #1a456b; box-shadow: 0 5px 0 #1a456b; }
.button-3d.button-success { -webkit-box-shadow: 0 5px 0 #408940; -moz-box-shadow: 0 5px 0 #408940; box-shadow: 0 5px 0 #408940; }
.button-3d.button-info    { -webkit-box-shadow: 0 5px 0 #398ca5; -moz-box-shadow: 0 5px 0 #398ca5; box-shadow: 0 5px 0 #398ca5; }
.button-3d.button-warning { -webkit-box-shadow: 0 5px 0 #bb7614; -moz-box-shadow: 0 5px 0 #bb7614; box-shadow: 0 5px 0 #bb7614; }
.button-3d.button-danger  { -webkit-box-shadow: 0 5px 0 #9d201c; -moz-box-shadow: 0 5px 0 #9d201c; box-shadow: 0 5px 0 #9d201c; }

.button-3d:hover.button-primary { -webkit-box-shadow: 0 3px 0 #1a456b; -moz-box-shadow: 0 3px 0 #1a456b; box-shadow: 0 3px 0 #1a456b; }
.button-3d:hover.button-success { -webkit-box-shadow: 0 3px 0 #408940; -moz-box-shadow: 0 3px 0 #408940; box-shadow: 0 3px 0 #408940; }
.button-3d:hover.button-info    { -webkit-box-shadow: 0 3px 0 #398ca5; -moz-box-shadow: 0 3px 0 #398ca5; box-shadow: 0 3px 0 #398ca5; }
.button-3d:hover.button-warning { -webkit-box-shadow: 0 3px 0 #bb7614; -moz-box-shadow: 0 3px 0 #bb7614; box-shadow: 0 3px 0 #bb7614; }
.button-3d:hover.button-danger  { -webkit-box-shadow: 0 3px 0 #9d201c; -moz-box-shadow: 0 3px 0 #9d201c; box-shadow: 0 3px 0 #9d201c; }

.button-o.button-primary    { border-color: #286090; color: #286090; }
.button-o.button-success    { border-color: #5cb85c; color: #5cb85c; }
.button-o.button-info       { border-color: #5bc0de; color: #5bc0de; }
.button-o.button-warning    { border-color: #ec971f; color: #ec971f; }
.button-o.button-danger     { border-color: #c9302c; color: #c9302c; }


/* Gradient Colors */
.button-grad-violet {
    background: #5f2c82;
    background: -webkit-linear-gradient(-45deg, #4776E6, #8E54E9);
    background: -o-linear-gradient(-45deg, #4776E6, #8E54E9);
    background: -moz-linear-gradient(-45deg, #4776E6, #8E54E9);
    background: linear-gradient(-45deg, #4776E6, #8E54E9);
}
.button-grad-violet:hover {
    background: #5f2c82;
    background: -webkit-linear-gradient(45deg, #4776E6, #8E54E9);
    background: -o-linear-gradient(45deg, #4776E6, #8E54E9);
    background: -moz-linear-gradient(45deg, #4776E6, #8E54E9);
    background: linear-gradient(45deg, #4776E6, #8E54E9);
}
.button-grad-blood-mary {
    background: #FF512F;
    background: -webkit-linear-gradient(-45deg, #FF512F, #DD2476);
    background: -o-linear-gradient(-45deg, #FF512F, #DD2476);
    background: -moz-linear-gradient(-45deg, #FF512F, #DD2476);
    background: linear-gradient(-45deg, #FF512F, #DD2476);
}
.button-grad-blood-mary:hover {
    background: #FF512F;
    background: -webkit-linear-gradient(45deg, #FF512F, #DD2476);
    background: -o-linear-gradient(45deg, #FF512F, #DD2476);
    background: -moz-linear-gradient(45deg, #FF512F, #DD2476);
    background: linear-gradient(45deg, #FF512F, #DD2476);
}
.button-grad-bora {
    background: #2BC0E4;
    background: -webkit-linear-gradient(45deg, #2BC0E4, #EAECC6);
    background: -o-linear-gradient(45deg, #2BC0E4, #EAECC6);
    background: -moz-linear-gradient(45deg, #2BC0E4, #EAECC6);
    background: linear-gradient(45deg, #2BC0E4, #EAECC6);
}
.button-grad-bora:hover {
    background: #2BC0E4;
    background: -webkit-linear-gradient(-45deg, #2BC0E4, #EAECC6);
    background: -o-linear-gradient(-45deg, #2BC0E4, #EAECC6);
    background: -moz-linear-gradient(-45deg, #2BC0E4, #EAECC6);
    background: linear-gradient(-45deg, #2BC0E4, #EAECC6);
}
.button-grad-mojito {
    background: #68e9b6;
    background: -webkit-linear-gradient(45deg, #68e9b6, #4e75b9);
    background: -o-linear-gradient(45deg, #68e9b6, #4e75b9);
    background: -moz-linear-gradient(45deg, #68e9b6, #4e75b9);
    background: linear-gradient(45deg, #68e9b6, #4e75b9);
}
.button-grad-mojito:hover {
    background: #4e75b9;
    background: -webkit-linear-gradient(-45deg, #4e75b9, #68e9b6);
    background: -o-linear-gradient(-45deg, #4e75b9, #68e9b6);
    background: -moz-linear-gradient(-45deg, #4e75b9, #68e9b6);
    background: linear-gradient(-45deg, #4e75b9, #68e9b6);
}
.button-grad-orange {
    background: #FFB75E;
    background: -webkit-linear-gradient(-45deg, #FFB75E, #ED8F03);
    background: -o-linear-gradient(-45deg, #FFB75E, #ED8F03);
    background: -moz-linear-gradient(-45deg, #FFB75E, #ED8F03);
    background: linear-gradient(-45deg, #FFB75E, #ED8F03);
}
.button-grad-orange:hover {
    background: #FFB75E;
    background: -webkit-linear-gradient(45deg, #FFB75E, #ED8F03);
    background: -o-linear-gradient(45deg, #FFB75E, #ED8F03);
    background: -moz-linear-gradient(45deg, #FFB75E, #ED8F03);
    background: linear-gradient(45deg, #FFB75E, #ED8F03);
}
.button-grad-purple {
    background: #DA22FF;
    background: -webkit-linear-gradient(-45deg, #DA22FF, #9733EE);
    background: -o-linear-gradient(-45deg, #DA22FF, #9733EE);
    background: -moz-linear-gradient(-45deg, #DA22FF, #9733EE);
    background: linear-gradient(-45deg, #DA22FF, #9733EE);
}
.button-grad-purple:hover {
    background: #DA22FF;
    background: -webkit-linear-gradient(45deg, #DA22FF, #9733EE);
    background: -o-linear-gradient(45deg, #DA22FF, #9733EE);
    background: -moz-linear-gradient(45deg, #DA22FF, #9733EE);
    background: linear-gradient(45deg, #DA22FF, #9733EE);
}
.button-grad-stellar {
    background: #7474BF;
    background: -webkit-linear-gradient(-45deg, #7474BF, #348AC7);
    background: -o-linear-gradient(-45deg, #7474BF, #348AC7);
    background: -moz-linear-gradient(-45deg, #7474BF, #348AC7);
    background: linear-gradient(-45deg, #7474BF, #348AC7);
}
.btn-grad-stellar:hover {
    background: #7474BF;
    background: -webkit-linear-gradient(45deg, #7474BF, #348AC7);
    background: -o-linear-gradient(45deg, #7474BF, #348AC7);
    background: -moz-linear-gradient(45deg, #7474BF, #348AC7);
    background: linear-gradient(45deg, #7474BF, #348AC7);
}
.button-grad-day-tripper {
    background: #f857a6;
    background: -webkit-linear-gradient(-45deg, #f857a6, #ff5858);
    background: -o-linear-gradient(-45deg, #f857a6, #ff5858);
    background: -moz-linear-gradient(-45deg, #f857a6, #ff5858);
    background: linear-gradient(-45deg, #f857a6, #ff5858);
}
.button-grad-day-tripper:hover {
    background: #f857a6;
    background: -webkit-linear-gradient(45deg, #f857a6, #ff5858);
    background: -o-linear-gradient(45deg, #f857a6, #ff5858);
    background: -moz-linear-gradient(45deg, #f857a6, #ff5858);
    background: linear-gradient(45deg, #f857a6, #ff5858);
}

.button-grad-violet,
.button-grad-blood-mary,
.button-grad-bora,
.button-grad-mojito,
.button-grad-orange,
.button-grad-purple,
.button-grad-stellar,
.button-grad-tripper {
    border: 0 !important;
    color: #ffffff !important;
}


/*  ----------------------------------------------------
12. PRICE
-------------------------------------------------------- */
#price [class*="col-md"],
#price [class*="col-sm"],
#price [class*="col-xs"] {
    padding: 1px;
}
.price {
	margin-top: 10px;
	margin-bottom: 10px;
	-webkit-transition: all .3s ease-in-out;
	   -moz-transition: all .3s ease-in-out;
			transition: all .3s ease-in-out;
	-webkit-border-radius: 4px;
	   -moz-border-radius: 4px;
			border-radius: 4px;

}

.price ul {
	margin: 0;
	padding: 0;
}
.price ul li {
	list-style: none;
	line-height: 25px;
}
sup {
    font-size: 30px;
}

/* Price Four */
.price-four {
    /*float: left;*/
    padding: 10px 0;
    border-bottom: 4px solid #ccc;
    -webkit-border-radius: 3px;
       -moz-border-radius: 3px;
            border-radius: 3px;
}

.price-four h3 small {
    font-family: 'Droid Arabic Kufi', sans-serif;
    display: block;
    font-size: 30px;
    text-transform: uppercase;
    width: 120px;
    color: #fff;
    padding: 3px 2px;
    line-height: 40px;
    margin: 0 auto;
    -webkit-border-radius: 2px;
       -moz-border-radius: 2px;
            border-radius: 2px;
}
.price-four img {
    width: 200px;
    margin: 10px auto;
}
.price-four .price-header {
    display: block;
    text-align: center;
    width: 100%;
}

.price-four .price-header span {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 80px;
    font-weight: 200;
    line-height: 1;
}
.price-four .price-body {
    display: block;
    float: left;
    padding: 20px 0;
    width: 100%;
}
.price-four .price-body ul {
    margin: 20px 20px 10px 20px;
    background-color: #fff;
    -webkit-border-radius: 4px;
       -moz-border-radius: 4px;
            border-radius: 4px;
    -webkit-box-shadow: 0 1px 1px #ddd;
       -moz-box-shadow: 0 1px 1px #ddd;
            box-shadow: 0 1px 1px #ddd;
}
.price-four .price-body ul li {
    padding: 10px 0 10px 20px;
    text-align: left;
    border-bottom: 1px dotted #ddd;
}
.price-four .price-body ul li:last-child {
    border-bottom: 0;
}
.price-four .price-body ul li i,
.price-four .price-body ul li span {
    margin-right: 10px;
}
.price-four .price-footer {
    float: left;
    padding-bottom: 25px;
    width: 100%;
    text-align: center;
}

.row-centered {
    text-align:center;
}
.col-centered {
    display:inline-block;
    float:none;
    /* reset the text-align */
    text-align:left;
    /* inline-block space fix */
    margin-right:-4px;
    text-align: center;
}

/*  ----------------------------------------------------
16. HEADER CAROUSEL STYLE
-------------------------------------------------------- */
.overlay{
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  background-color: #000;
  opacity: 0.6;
}

.carousel, .item, .active {
    height:100%;
    position: relative;
}
.carousel-inner {
    height:100%;
}

.carousel-control {
    z-index: 0;
}
.carousel-caption {
    z-index: 10;
}
.carousel .item {
    background-color: #777;

}
.carousel .carousel-inner .carousel-img {
    background-repeat:no-repeat;
    background-size:cover;
    animation-delay: 1s !important;
    animation-name: slideOutDown !important;
}
.carousel .carousel-inner .carousel-img1 {
    background-image:url(../../../assets/img/bg/img-bg-1.jpg);
    background-position: center top;
}
.carousel .carousel-inner .carousel-img2 {
    background-image:url(../../../assets/img/bg/img-bg-2.jpg);
    background-position: center center;
}
.carousel .carousel-inner .carousel-img3 {
    background-image:url(../../../assets/img/bg/img-bg-3.jpg);
    background-position: center bottom;
}
.carousel .carousel-inner .carousel-img4 {
    background-image:url(../../../assets/img/bg/img-bg-4.jpg);
    background-position: center bottom;
}
.carousel .carousel-inner .carousel-img5 {
    background-image:url(../../../assets/img/bg/img-bg-5.jpg);
    background-position: center bottom;
}
.carousel-caption {
    position: absolute;
    top: 10%;
}
.carousel-caption h1 {
    font-size: 45px;
    line-height: 60px;
}
.carousel-caption p {
    font-size: 18px;
}
@media(max-width:768px) {
  .carousel-caption h1 {
        font-size: 200%;
        line-height: 1.5;
    }
    .carousel-caption p {
        font-size: 100%;
    }
}
.svg-container {
    position: absolute;
    width: 100%;
    bottom: -10%;
    height: 300px;
    z-index: 1;
}
.svg-container-middle {
    position: absolute;
    width: 100%;
    top: 50%;
    height: 300px;
    z-index: 1;
    font-family: 'Open Sans', sans-serif;
}
.svg-container-bottom {
    position: absolute;
    width: 100%;
    bottom: -20px;
    max-height: 300px;
    z-index: 1;
    font-family: 'Open Sans', sans-serif;
}
.svg-container3 {
    position: absolute;
    width: 100%;
    bottom: 0;
    height: 400px;
    z-index: 1;
    font-family: 'Open Sans', sans-serif;
}
.svg-container2 {
    width: 100%;
    height: 300px;
    z-index: 1;
}
@media(max-width: 1170px) {
    .svg-container3 {
        height: 500px;
    }
}
@media (max-width: 768px) {
    .svg-container {
        position: absolute;
        width: 100%;
        bottom: -8%;
        height: 300px;
        z-index: 1;
    }
}

/*  --------------------------------------------------------
17. NAVBAR
-------------------------------------------------------- */
.navbar-pasific {
    background-color: transparent;
    padding: 20px 0;
    -webkit-border-radius: 0;
       -moz-border-radius: 0;
            border-radius: 0;
    -webkit-transition: background .5s ease-in-out,padding .5s ease-in-out;
       -moz-transition: background .5s ease-in-out,padding .5s ease-in-out;
            transition: background .5s ease-in-out,padding .5s ease-in-out;
}
.navbar-container {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 20;
    margin-top: 20px;
}
.navbar-container ul.navbar-nav .dropdown-menu {
    margin-top: -10px;
}
.navbar-pasific .navbar-brand {
    color: #fff;
    font-family: 'Pacifico', cursive;
    font-size: 24px;
}
.navbar-pasific .navbar-brand img {
    float: left;
    margin-right: 10px;
    margin-top: -5px;
}
.navbar-pasific .container-fluid .navbar-brand img {
    margin-left: 20px;
}
.navbar-pasific .container .navbar-brand img {
    margin-left: 0;
}
.navbar-pasific .navbar-brand:hover,
.navbar-pasific .navbar-brand:focus {
    background-color: transparent;
}
.navbar-pasific .navbar-text {
    color: #777;
}
.navbar-pasific .navbar-nav > li {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight:600;
    margin-bottom: 5px;
    text-transform: uppercase;
}
.navbar-pasific .navbar-nav > li > a {
    color: rgba(255,255,255,.7);
}
.navbar-pasific .navbar-nav > li > a:hover {
    color: rgba(255,255,255,1);
}
.navbar-pasific .navbar-nav > li > a:hover,
.navbar-pasific .navbar-nav > li > a:focus {
    background-color: transparent;
}
.navbar-pasific .navbar-nav > li a:hover,
.navbar-pasific .navbar-nav > .active > a,
.navbar-pasific .navbar-nav > .active > a:hover,
.navbar-pasific .navbar-nav > .active > a:focus {
    background: transparent !important;
}
.navbar-pasific .navbar-nav > .disabled > a,
.navbar-pasific .navbar-nav > .disabled > a:hover,
.navbar-pasific .navbar-nav > .disabled > a:focus {
    color: #ccc;
    background-color: transparent;
}
.top-nav-collapse {
    padding: 10px 0;
    background: #fff !important;
}
.top-nav-collapse-inverse {
    padding: 10px 0;
    background: #000 !important;
}

.top-nav-collapse .navbar-brand {
    color: #555 !important;
}
.top-nav-collapse-inverse .navbar-brand {
    color: #fff !important;
}
.navbar-pasific.navbar-center {
    -webkit-border-radius: 3px;
       -moz-border-radius: 3px;
            border-radius: 3px;
}
/* navbar one-page */
@media (max-width: 1200px) {
    .navbar-pasific.navbar-op {
        background-color: #fff;
        border-color: #e7e7e7;
        padding: 0;
        margin: 0;
    }
    .navbar-pasific.top-nav-collapse-inverse {
        background-color: #000;
    }
    .navbar-op.top-nav-collapse,
    .navbar-op.top-nav-collapse-inverse {
        padding: 0;
        margin: 0;
    }
    .navbar-op .navbar-header {
        float: none;
    }
    .navbar-op .navbar-brand {
        color: #333;
    }
    .navbar-op .navbar-left,.navbar-right {
        float: none !important;
    }
    .navbar-op .navbar-toggle {
        display: block;
    }
    .navbar-op .navbar-toggle:hover {
        background-color: #f8f8f8;
    }
    .navbar-op .navbar-collapse {
        border-top: 1px solid transparent;
    }
    .navbar-op.navbar-fixed-top {
		top: 0;
		border-width: 0 0 1px;
	}
    .navbar-op .navbar-collapse.collapse {
        display: none!important;
    }
    .navbar-op .navbar-nav {
        float: none!important;
		margin-top: 7.5px;
	}
	.navbar-op .navbar-nav>li {
        float: none;
        font-size: 18px;
    }
    .navbar-op .navbar-nav>li>a {
        padding-top: 5px;
        padding-bottom: 5px;
    }
    .navbar-op .navbar-collapse {
        background: transparent;
    }
    .navbar-op .collapse.in{
  		display:block !important;
        background-color: #222;
	}
    .navbar-op .collapsing, .in {
        background-color: #222;
    }
    .navbar-op.navbar-center {
        border: 1px solid #fff;
        -webkit-border-radius: 4px;
           -moz-border-radius: 4px;
                border-radius: 4px;
    }
}
.navbar-op.top-nav-collapse,
.navbar-mp.top-nav-collapse {
    border-bottom: 1px solid #eee;
}
.navbar-op.top-nav-collapse-inverse,
.navbar-mp.top-nav-collapse-inverse {
    border-bottom: 1px solid #333;
}
.navbar-op.top-nav-collapse .navbar-nav li a {
    color: #555 !important;
}
.navbar-op.top-nav-collapse-inverse .navbar-nav li a {
    color: #f5f5f5 !important;
}

/* navbar multipage */
@media(min-width:766px) {
    .navbar-mp .dropdown:hover > .dropdown-menu {
        display: block;
    }
    .navbar-mp .navbar-main-collapse {
        float: right;
    }
    .navbar-mp.top-nav-collapse .navbar-nav li a {
        color: #555 !important;
    }
    .navbar-mp.top-nav-collapse-inverse .navbar-nav li a {
        color: #fff !important;
    }
    .navbar-mp .navbar-nav > li > a {
        color: rgba(255,255,255,.7) !important;
    }
    .navbar-mp .navbar-nav > li > a:hover {
        color: rgba(255,255,255,1) !important;
    }
}
@media (max-width: 766px) {
    .navbar-mp {
        background-color: #fff;
        border-color: #e7e7e7;
        padding: 0 !important;
        margin: 0;
    }
    .navbar-mp.top-nav-collapse .navbar-nav li a {
        color: #fff !important;
    }
    .navbar-mp.top-nav-collapse .navbar-brand,
    .navbar-mp .navbar-brand {
        color: #555 !important;
    }
    .navbar-mp .dropdown-submenu > ul.dropdown-menu {
        display: block;
        overflow: hidden;
        padding-left: 20px;
    }
    .navbar-mp .collapse.in{
  		display:block !important;
        background-color: #222;
	}
    .navbar-mp .collapsing, .in {
        background-color: #222;
    }
    .navbar-mp .navbar-brand img {
        margin-left: 0 !important;
    }
    .navbar-mp.navbar-center {
        border: 1px solid #fff;
        -webkit-border-radius: 4px;
           -moz-border-radius: 4px;
                border-radius: 4px;
    }
}

/* megamenu */
.megamenu .dropdown .dropdown-menu li a {
	color: #999 !important;
}

.megamenu .dropdown-menu li a{
    text-transform: capitalize;
    font-family: 'Open Sans', sans-serif !important;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0 !important;
}
.megamenu .dropdown-menu li i {
    margin-right: 10px;
    color: #fff;
}
.megamenu .dropdown-menu li:first-child {
    padding-top: 10px;
}

.megamenu .dropdown-menu > li > a {
	padding:6px 15px;
}
.megamenu .navbar-nav > li > .dropdown-menu a {
	margin-top:1px;
}

.megamenu .dropdown-menu {
	box-shadow:none;
	padding:0;
    border: 1px solid #222;
}

.megamenu .dropdown-menu .withoutdesc{
	margin-top:0;
	padding:15px 20px;
    display: block;
    text-align: left;
    text-transform: none;
    width: 100%;
}
.megamenu a:hover {
	text-decoration:none
}
.megamenu .dropdown-menu .withoutdesc ul li {
	padding: 7px 10px 7px 0;
}
.megamenu .dropdown-menu .withoutdesc ul li a {
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0 !important;
    color: #999 !important;
}
.megamenu .dropdown-menu .withoutdesc ul li:hover,
.megamenu .dropdown-menu .withoutdesc ul li:focus{
	color:#262626;
	text-decoration:none;
	background-color:#181818 !important
}
.megamenu .dropdown-menu .withoutdesc li:last-child {
	border-bottom:0 solid #fff;
}
.megamenu .megamenu-content.withdesc a:after {
    display: block;
    font-size: 11px;
    font-weight: 400;
    line-height: 0;
    margin: 10px 0 15px;
}

.megamenu .dropdown-submenu{
	position:relative;
}
.megamenu .dropdown-submenu>.dropdown-menu{
	top:0;
	left:100%;
	margin-top:0;
	margin-left: 0;
	-webkit-border-radius:1px;
	   -moz-border-radius:1px;
	        border-radius:1px;
}
.megamenu .dropdown-submenu:hover>.dropdown-menu{
	display:block;
}

.megamenu .dropdown-submenu>a:after{
	display:block;
	content:" ";
	float:right;
	width:0;
	height:0;
	border-color:transparent;
	border-style:solid;
	border-width:5px 0 5px 5px;
	border-left-color:#cccccc;
	margin-top:5px;
	margin-right:-10px;
}

.megamenu .dropdown-menu.has-submenu.pull-left {
    position: absolute;
    text-align: right;
    position: absolute;
    right: 30px;
}
@media (min-width: 780px) {
    .megamenu .dropdown-menu.has-submenu .dropdown-submenu .dropdown-menu {
        position: absolute;
        left: -160px;
    }
    .megamenu .dropdown-menu.has-submenu {
        margin-left: -100px;
    }
    .navbar-center .megamenu {
        background-color: #fff !important;
    }
}
.megamenu p {
    font-size: 13px;
	color:#747474;
}
.megamenu .nav,
.megamenu .collapse,
.megamenu .dropup,
.megamenu .dropdown {
	position: static;
}

.megamenu .container-fluid,
.megamenu .container {
	position: relative;
}
.megamenu .container-fluid .fullwidth {
    margin-left: auto !important;
    margin-right: auto !important;
}

.megamenu .container-fluid .fullwidth {
    width: 100%;
}
.megamenu .half {
    width: 50%;
	left: auto !important;
    right: auto !important;
}

.megamenu .dropdown-menu {
	left: auto;
    padding-bottom: 10px;
    background-color: #222222;
}
.megamenu .navbar-right .dropdown-menu {
    width: 250px;
}
.megamenu .megamenu-content {
	padding: 15px 25px;
	background:#222222;
}
.megamenu .dropdown.megamenu-fw .dropdown-menu {
	left: 0;
	right: 0;
}
.megamenu .title {
	font-size:13px;
	font-weight:bold;
	margin-top:15px;
	text-transform:uppercase;
	border-bottom:1px solid #494949;
	padding-bottom:10px;
}
.megamenu ul {
	list-style:none;
	padding-left:0px;
}

/*  --------------------------------------------------------
18. INTRO STYLE
-------------------------------------------------------- */
.intro {
    display: table;
    width: 100%;
    height: auto;
    text-align: center;
    background-color: #fff;
}

.intro .intro-body {
    display: table-cell;
    vertical-align: middle;
}

.intro .intro-body .brand-heading {
    margin-bottom: 25px;
    box-sizing: border-box;
    color: #545454;
    line-height: 1.3;
}
.intro .intro-body .intro-text {
    font-size: 16px;
    color:#545454;
    font-weight: 400;
    line-height: 25px;
}

@media(min-width:960px) {
    .intro {
        height: 100%;
        padding: 0;
    }
    .intro .intro-body .brand-heading{
        font-size: 50px;
    }
    .intro .intro-body .brand-heading-big{
        font-size: 60px;
        line-height: 1.3;
    }
    .intro .intro-body .brand-heading-big2{
        font-size: 80px;
        line-height: 1.3;
    }
    .intro .intro-body .intro-text {
        font-size: 15px;
    }
    .intro .intro-body .intro-text-big {
        font-size: 18px;
        line-height: 1.5;
    }
}

@media(max-width:960px) {
    .intro {
        -webkit-background-size: cover;
        -moz-background-size: cover;
        background-size: cover;
        -o-background-size: cover;
        height: 100%;
        background-size: cover;
    }
    .intro .intro-body .brand-heading {
        font-size: 250%;
    }

    .intro .intro-body .intro-text {
        font-size: 100%;
    }
}

@media(max-width:768px) {
    .intro {
        -webkit-background-size: cover;
        -moz-background-size: cover;
        background-size: cover;
        -o-background-size: cover;
        height: 100%;
        background-size: cover;
    }
}
/* Particles */
canvas {
    display: block;
    vertical-align: bottom;
}
#particles-js1,
#particles-js2 {
    width: 100%;
    height: 100%;
}
#particles-js1 {
    position: absolute;
}
#particles-js2 {
    position: fixed;
}

/*  --------------------------------------------------------
19. TEAM
-------------------------------------------------------- */
/* Team Seven */
.team-seven {
    width:320px;
    height:320px;
    position: relative;
    float: center;
    text-align: center;
}

.team-seven-content {
    display:block;
    width: 100%;
    height: 100%;
    background: #333;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
    -webkit-border-radius: 5px;
       -moz-border-radius: 5px;
            border-radius: 5px;
}
.team-seven-content h5 {
    color: #fff;
    font-weight: 600;
}

.team-seven-content ul {
    color: #fff;
    font-weight: 600;
}
.team-seven-content i {
    margin: 0 5px;
}
.team-seven-content a {
    color: #545454;
    -webkit-transition: color .5s ease-in-out;
       -moz-transition: color .5s ease-in-out;
            transition: color .5s ease-in-out;
}
.team-seven-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top:0px;
    left:0;
    z-index:10;
}

/*  --------------------------------------------------------
24. BANNER
-------------------------------------------------------- */
#banner img {
    background-size: cover;
}
#info h2 {
    font-family: 'Open Sans', sans-serif;
    text-transform: capitalize;
}

/*  --------------------------------------------------------
29. FOOTER
-------------------------------------------------------- */
.footer.footer-one .copyright {
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    margin: 0 auto 25px auto;
    text-align: center;
}

.navbar-brand-footer {
    background: url('../../img/logo/logo-gray.png') 0 0 no-repeat;
    display: block;
    width: 100px;
    height: 50px;
    font-family: 'Pacifico', cursive;
    font-size: 20px;
    color: #8b949b;
    padding-left: 40px;
}
#footer .copyright {
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    color: #8b949b;
    display: block;
    width: 160px;
}
.copyright a:hover {
    border-bottom-width: 1px;
    border-bottom-style: dotted;
}

.footer-one ul {
    margin: 0 30px;
    padding: 0 0 25px 0;
}
.footer-one ul li {
    list-style: none;
    display: inline;

}
.footer-one ul li a {
    color: #8b949b;
    font-size: 12px;
    margin: 0 10px;
}

#footer .social-container {
    margin-top: 10px;
}
#footer .social-container ul.footer-social li a {
    font-size: 15px;
    display: inline-block;
    width: 30px;
    height: 30px;
    margin: 0 0 5px 0;
    line-height: 30px;
    border: 1px solid #f1f1f1;
    -webkit-border-radius: 3px;
       -moz-border-radius: 3px;
            border-radius: 3px;
}

.footer-two a {
    color: #747474;
}
.footer-two ul li {
    line-height: 25px;
}

/*  --------------------------------------------------------
30. SOCIAL MEDIA
-------------------------------------------------------- */
.social.social-one {
    text-align: center;
    margin-top: 20px;
}

.social.social-one a {
    width: 30px;
    height: 30px;
    display: inline-block;
    border: 1px solid #ddd;
    padding-top: 4px;
    -webkit-border-radius: 50px;
       -moz-border-radius: 50px;
            border-radius: 50px;
}
.social.social-two a {
    width: 30px;
    height: 30px;
    padding: 5px 8px;
    text-align: center;
    border: 1px solid #ddd;
    float: left;
    display: block;
    margin-right: 5px;
    -webkit-border-radius: 2px;
       -moz-border-radius: 2px;
            border-radius: 2px;
}
.social.social-three a {
    width: 30px;
    height: 30px;
    padding: 5px 8px;
    text-align: center;
    background-color: rgba(255,255,255,.1);
    float: left;
    display: block;
    margin-right: 5px;
    -webkit-border-radius: 2px;
       -moz-border-radius: 2px;
            border-radius: 2px;
}
/*  --------------------------------------------------------
31. PARALLAX
-------------------------------------------------------- */
.parallax-window {
    min-height: 400px;
    background: transparent;
}
.parallax-window-2 {
    min-height: 350px;
    background: transparent;
}
.parallax-window-3 {
    min-height: 250px;
    max-width: 1920px;
    background: transparent;
}
.parallax-window-4 {
    min-height: 92%;
    max-width: 1920px;
    background: transparent;
}
.parallax-window-5 {
    min-height: 600px;
    max-width: 1920px;
    background: transparent;
}
.bg-image {
  background-image: url("assets\img\other\flags.jpg") 50% 50% no-repeat;
  background: transparent;
}
