@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&amp;display=swap');
* {
    outline: none;
}

html {
    font-family: sans-serif;
    /* 1 */
    -ms-text-size-adjust: 100%;
    /* 2 */
    -webkit-text-size-adjust: 100%;
    /* 2 */
}

html,
body {
    height: 100%
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8em;
    margin: 0px;
    color: #193B49;
}

/* Webfont: keep visible text and reduce CLS */
@font-face {
  font-display: swap; /* or optional for body text */
  size-adjust: 100%;
  ascent-override: 90%;
  descent-override: 10%;
  line-gap-override: 0%;
}


a {
    outline: none;
    text-decoration: none;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

a:hover,
a:focus {
    outline: none;
    text-decoration: none;

}

img {
    max-width: 100%;
    height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    margin: 0 0 15px;
    line-height: 1.2em;
    font-family: 'Poppins', sans-serif;
    color: #0e2129;
}

/* Remove Chrome Input Field's Unwanted Yellow Background Color */

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px white inset !important;
}

/* HTML5 display definitions
   ========================================================================== */

/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
    outline: none;
    display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */

audio,
canvas,
progress,
video {
    display: inline-block;
    /* 1 */
    vertical-align: baseline;
    /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */

audio:not([controls]) {
    display: none;
    height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */

[hidden],
template {
    display: none;
}

/* Links
   ========================================================================== */

/**
 * Remove the gray background color from active links in IE 10.
 */

a {
    background-color: transparent;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */

a:active,
a:hover {
    outline: 0;
    text-decoration: none;
}

/* Text-level semantics
   ========================================================================== */

/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */

abbr[title] {
    border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */

b,
strong {
    font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */

dfn {
    font-style: italic;
}

/**
 * Address styling not present in IE 8/9.
 */

mark {
    background: #ff0;
    color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */

small {
    font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

img {
    border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

svg:not(:root) {
    overflow: hidden;
}

/**
 * Address differences between Firefox and other browsers.
 */

hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
}

/**
 * Contain overflow in all browsers.
 */

pre {
    overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

/* Forms
   ========================================================================== */

/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */

/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */

button,
input,
optgroup,
select,
textarea {
    color: inherit;
    /* 1 */
    font: inherit;
    /* 2 */
    margin: 0;
    /* 3 */
    box-sizing: border-box;
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */

button {
    overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */

button,
select {
    text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */

button,
html input[type="button"],
/* 1 */
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    /* 2 */
    cursor: pointer;
    /* 3 */

}

/**
 * Re-set default cursor for disabled elements.
 */

button[disabled],
html input[disabled] {
    cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */

input {
    line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */

input[type="checkbox"],
input[type="radio"] {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    /* 1 */
    padding: 0;
    /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
 */

input[type="search"] {
    -webkit-appearance: textfield;
    /* 1 */
    box-sizing: border-box;
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */

fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */

legend {
    border: 0;
    /* 1 */
    padding: 0;
    /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */

textarea {
    overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */

optgroup {
    font-weight: bold;
}

/* Tables
   ========================================================================== */

/**
 * Remove most spacing between table cells.
 */

table {
    border-collapse: collapse;
    border-spacing: 0;
}

td,
th {
    padding: 0;
}

[class|=space] {
    display: block;
    width: 100%;
    overflow: hidden
}



.toggle-menu,
.slicknav_menu {
    display: none;
}

.slicknav_menu > a {
    display: inline-block;
}

@media screen and (max-width: 992px) {
    .slicknav_menu {
        display: block;
    }

    .primary-menu {
        display: none !important;
    }

    .toggle-menu {
        display: block !important;
    }
}

.slicknav_menu {
    background-color: #ffffff;
    z-index: 99999;
    overflow: hidden;
    width: 100%;
}

.slicknav_menu .slicknav_icon {
    display: inline-block;
    height: 26px;
    width: 35px;
    position: relative;
}

.slicknav_menu .slicknav_icon .slicknav_icon-bar {
    width: 100%;
    height: 2px;
    margin-top: 5px;
    border-radius: 5px;
    display: block;
    background-color: #7e8085;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform: rotate(0);
    transform: rotate(0)
}

.slicknav_menu .slicknav_icon .slicknav_icon-bar:nth-child(2) {
    top: calc(50% - 1px);
}

.slicknav_menu .slicknav_icon .slicknav_icon-bar:nth-child(3) {
    top: calc(100% - 2px);
}

.slicknav_menu .slicknav_open .slicknav_icon .slicknav_icon-bar {
    top: calc(50% - 1px);
}

.slicknav_menu .slicknav_open .slicknav_icon .slicknav_icon-bar:nth-child(1) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.slicknav_menu .slicknav_open .slicknav_icon .slicknav_icon-bar:nth-child(2) {
    opacity: 0
}

.slicknav_menu .slicknav_open .slicknav_icon .slicknav_icon-bar:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.slicknav_menu .slicknav_nav {
    margin: 10px 0 0 0;
    padding: 0px;
    width: 100%;
    list-style: none;
    border-radius: 2px;
    max-height: 80vh;
    overflow: auto;
    padding-bottom: 30px;
}

.slicknav_menu .slicknav_nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

.slicknav_menu .slicknav_nav ul ul {
    padding-left: 16px;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.slicknav_menu .slicknav_nav ul.nav > li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.slicknav_menu .slicknav_nav ul.nav li {
    padding: 13px 15px;
    position: relative;
    width: 100%;
    display: block;
}

.slicknav_menu .slicknav_nav ul.nav li li {
    padding: 0 0 8px 8px;
}

.slicknav_menu .slicknav_nav ul.nav li li:first-child {
    padding-top: 8px;
}

.slicknav_menu .slicknav_nav ul.nav li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.slicknav_menu .slicknav_nav ul li a {
    margin: 0;
    padding: 0;
    display: inline-block;
    font-weight: 500;
    color: #000a2d;
}

.slicknav_menu .slicknav_nav li.slicknav_open > a,
.slicknav_menu .slicknav_nav li.slicknav_open > a a,
.slicknav_menu .slicknav_nav li:focus > a,
.slicknav_menu .slicknav_nav li:hover > a,
.slicknav_menu .slicknav_nav li:focus > a a,
.slicknav_menu .slicknav_nav li:hover > a a,
.slicknav_menu .slicknav_nav ul li a:focus {
    background: none;
    color: #F64032;
}

.slicknav_menu .slicknav_nav ul li > a {
    display: block;
}

.slicknav_menu .slicknav_nav ul li > a .slicknav_arrow {
    width: 14px;
    height: 14px;
    line-height: 10px;
    text-align: center;
    float: right;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    margin-top: 7px;
}

.slicknav_menu .slicknav_nav ul li.slicknav_open > a .slicknav_arrow {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg)
}

@font-face{font-family:Flaticon;src:url(../fonts/Flaticon.eot);src:url(../fonts/Flaticond41d.eot?#iefix) format("embedded-opentype"),url(../fonts/Flaticon.woff) format("woff"),url(../fonts/Flaticon.ttf) format("truetype"),url(../fonts/Flaticon.svg#Flaticon) format("svg");font-weight:400;font-style:normal}@media screen and (-webkit-min-device-pixel-ratio:0){@font-face{font-family:Flaticon;src:url(Flaticon.html#Flaticon) format("svg")}}[class*=" flaticon-"]:after,[class*=" flaticon-"]:before,[class^=flaticon-]:after,[class^=flaticon-]:before{font-family:Flaticon;font-style:normal;line-height:1em}.flaticon-antenna:before{content:"\f100"}.flaticon-battery:before{content:"\f101"}.flaticon-camera:before{content:"\f102"}.flaticon-connection:before{content:"\f103"}.flaticon-control:before{content:"\f104"}.flaticon-control-1:before{content:"\f105"}.flaticon-control-2:before{content:"\f106"}.flaticon-control-3:before{content:"\f107"}.flaticon-control-4:before{content:"\f108"}.flaticon-drone:before{content:"\f109"}.flaticon-drone-1:before{content:"\f10a"}.flaticon-drone-10:before{content:"\f10b"}.flaticon-drone-11:before{content:"\f10c"}.flaticon-drone-12:before{content:"\f10d"}.flaticon-drone-13:before{content:"\f10e"}.flaticon-drone-14:before{content:"\f10f"}.flaticon-drone-15:before{content:"\f110"}.flaticon-drone-16:before{content:"\f111"}.flaticon-drone-17:before{content:"\f112"}.flaticon-drone-18:before{content:"\f113"}.flaticon-drone-19:before{content:"\f114"}.flaticon-drone-2:before{content:"\f115"}.flaticon-drone-3:before{content:"\f116"}.flaticon-drone-4:before{content:"\f117"}.flaticon-drone-5:before{content:"\f118"}.flaticon-drone-6:before{content:"\f119"}.flaticon-drone-7:before{content:"\f11a"}.flaticon-drone-8:before{content:"\f11b"}.flaticon-drone-9:before{content:"\f11c"}.flaticon-hands-free-device:before{content:"\f11d"}.flaticon-helicopter:before{content:"\f11e"}.flaticon-lens:before{content:"\f11f"}.flaticon-map:before{content:"\f120"}.flaticon-map-1:before{content:"\f121"}.flaticon-map-2:before{content:"\f122"}.flaticon-navigation:before{content:"\f123"}.flaticon-navigation-1:before{content:"\f124"}.flaticon-navigation-2:before{content:"\f125"}.flaticon-photo:before{content:"\f126"}.flaticon-pin:before{content:"\f127"}.flaticon-propeller:before{content:"\f128"}.flaticon-propeller-1:before{content:"\f129"}.flaticon-propeller-2:before{content:"\f12a"}.flaticon-propeller-3:before{content:"\f12b"}.flaticon-propeller-4:before{content:"\f12c"}.flaticon-radar:before{content:"\f12d"}.flaticon-radar-1:before{content:"\f12e"}.flaticon-socket:before{content:"\f12f"}.flaticon-target:before{content:"\f130"}.flaticon-viewfinder:before{content:"\f131"}



/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8; }

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; }

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box; }

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.mfp-align-top .mfp-container:before {
  display: none; }

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045; }

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto; }

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }

.mfp-loading.mfp-figure {
  display: none; }

.mfp-hide {
  display: none !important; }

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044; }
  .mfp-preloader a {
    color: #CCC; }
    .mfp-preloader a:hover {
      color: #FFF; }

.mfp-s-ready .mfp-preloader {
  display: none; }

.mfp-s-error .mfp-content {
  display: none; }

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation; }

button::-moz-focus-inner {
  padding: 0;
  border: 0; }

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace; }
  .mfp-close:hover,
  .mfp-close:focus {
    opacity: 1; }
  .mfp-close:active {
    top: 1px; }

.mfp-close-btn-in .mfp-close {
  color: #333; }

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%; }

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap; }

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent; }
  .mfp-arrow:active {
    margin-top: -54px; }
  .mfp-arrow:hover,
  .mfp-arrow:focus {
    opacity: 1; }
  .mfp-arrow:before,
  .mfp-arrow:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent; }
  .mfp-arrow:after {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px; }
  .mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7; }

.mfp-arrow-left {
  left: 0; }
  .mfp-arrow-left:after {
    border-right: 17px solid #FFF;
    margin-left: 31px; }
  .mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid #3F3F3F; }

.mfp-arrow-right {
  right: 0; }
  .mfp-arrow-right:after {
    border-left: 17px solid #FFF;
    margin-left: 39px; }
  .mfp-arrow-right:before {
    border-left: 27px solid #3F3F3F; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }
  .mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px; }
  .mfp-iframe-holder .mfp-close {
    top: -40px; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }
  .mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000; }

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure {
  line-height: 0; }
  .mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444; }
  .mfp-figure small {
    color: #BDBDBD;
    display: block;
    font-size: 12px;
    line-height: 14px; }
  .mfp-figure figure {
    margin: 0; }

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto; }

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px; }

.mfp-image-holder .mfp-content {
  max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }
  .mfp-img-mobile img.mfp-img {
    padding: 0; }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box; }
    .mfp-img-mobile .mfp-bottom-bar:empty {
      padding: 0; }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0; } }

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75); }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0; }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%; }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; } }

    /* Slider */
.slick-slider {
    position: relative;
    display: block;
    -webkit-box-sizing: border-box;
    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;
    outline: none;
}

.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);
    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: inline-block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
    outline: none;
}

.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('../images/ajax-loader.gif') center center no-repeat;
}


/* Arrows */

.slick-slider {
    position: relative;
}

.slick-prev,
.slick-next {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    position: absolute;
    left: 0;
    top: calc(50% - 20px);
    display: inline-block;
    z-index: 999;
    border: none;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background-color: #ffffff;
    color: #f83600;
    font-size: 16px;
    outline: none;
    border-radius: 100px;
    box-shadow: 0 16px 32px 0 rgba(0,0,0,0.05)
}

.slick-next {
    left: auto;
    right: 0px;
}

.slick-prev:before,
.slick-next:before {
    content: '' !important;
}

.slick-arrow:hover {
    background-color: #f83600;
    color: #ffffff;
}
/* Dots */

.slick-dots {
    position: static;
    display: block;
    width: 100%;
    padding: 0px 10px;
    margin: 0;
    list-style: none;
    text-align: center;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    margin: 25px 3px 0 3px;
    padding: 0;
    cursor: pointer;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 8px;
    height: 8px;
    margin: 5px 5px 0px 5px;
    padding: 0px;
    cursor: pointer;
    border: none;
    border-radius: 2px;
    outline: none;
    background: transparent;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    content: "";
    background-color: #f83600;
    opacity: 0.2;
}


.slick-dots li button:hover,
.slick-dots li button:focus {
    outline: none;
}

.slick-dots li button:hover,
.slick-dots li.slick-active button {
    opacity: 1;
}

.slick-dots li.slick-active button {
    width: 30px; 
}

.photo-slider .slick-prev,
.photo-slider .slick-next {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 30px;
    opacity: 0;
}

.photo-slider .slick-next {
    left: auto;
    right: 30px;
}

.photo-slider.slick-slider:hover .slick-next,
.photo-slider.slick-slider:hover .slick-prev {
    opacity: 1;
}


@font-face {
    font-family: 'themify';
    src:url('../fonts/themify9f24.eot?-fvbane');
    src:url('../fonts/themifyd41d.eot?#iefix-fvbane') format('embedded-opentype'),
        url('../fonts/themify9f24.woff?-fvbane') format('woff'),
        url('../fonts/themify9f24.ttf?-fvbane') format('truetype'),
        url('../fonts/themify9f24.svg?-fvbane#themify') format('svg');
    font-weight: normal;
    font-style: normal;
}

[class^="ti-"], [class*=" ti-"] {
    font-family: 'themify';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;

    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ti-wand:before {
    content: "\e600";
}
.ti-volume:before {
    content: "\e601";
}
.ti-user:before {
    content: "\e602";
}
.ti-unlock:before {
    content: "\e603";
}
.ti-unlink:before {
    content: "\e604";
}
.ti-trash:before {
    content: "\e605";
}
.ti-thought:before {
    content: "\e606";
}
.ti-target:before {
    content: "\e607";
}
.ti-tag:before {
    content: "\e608";
}
.ti-tablet:before {
    content: "\e609";
}
.ti-star:before {
    content: "\e60a";
}
.ti-spray:before {
    content: "\e60b";
}
.ti-signal:before {
    content: "\e60c";
}
.ti-shopping-cart:before {
    content: "\e60d";
}
.ti-shopping-cart-full:before {
    content: "\e60e";
}
.ti-settings:before {
    content: "\e60f";
}
.ti-search:before {
    content: "\e610";
}
.ti-zoom-in:before {
    content: "\e611";
}
.ti-zoom-out:before {
    content: "\e612";
}
.ti-cut:before {
    content: "\e613";
}
.ti-ruler:before {
    content: "\e614";
}
.ti-ruler-pencil:before {
    content: "\e615";
}
.ti-ruler-alt:before {
    content: "\e616";
}
.ti-bookmark:before {
    content: "\e617";
}
.ti-bookmark-alt:before {
    content: "\e618";
}
.ti-reload:before {
    content: "\e619";
}
.ti-plus:before {
    content: "\e61a";
}
.ti-pin:before {
    content: "\e61b";
}
.ti-pencil:before {
    content: "\e61c";
}
.ti-pencil-alt:before {
    content: "\e61d";
}
.ti-paint-roller:before {
    content: "\e61e";
}
.ti-paint-bucket:before {
    content: "\e61f";
}
.ti-na:before {
    content: "\e620";
}
.ti-mobile:before {
    content: "\e621";
}
.ti-minus:before {
    content: "\e622";
}
.ti-medall:before {
    content: "\e623";
}
.ti-medall-alt:before {
    content: "\e624";
}
.ti-marker:before {
    content: "\e625";
}
.ti-marker-alt:before {
    content: "\e626";
}
.ti-arrow-up:before {
    content: "\e627";
}
.ti-arrow-right:before {
    content: "\e628";
}
.ti-arrow-left:before {
    content: "\e629";
}
.ti-arrow-down:before {
    content: "\e62a";
}
.ti-lock:before {
    content: "\e62b";
}
.ti-location-arrow:before {
    content: "\e62c";
}
.ti-link:before {
    content: "\e62d";
}
.ti-layout:before {
    content: "\e62e";
}
.ti-layers:before {
    content: "\e62f";
}
.ti-layers-alt:before {
    content: "\e630";
}
.ti-key:before {
    content: "\e631";
}
.ti-import:before {
    content: "\e632";
}
.ti-image:before {
    content: "\e633";
}
.ti-heart:before {
    content: "\e634";
}
.ti-heart-broken:before {
    content: "\e635";
}
.ti-hand-stop:before {
    content: "\e636";
}
.ti-hand-open:before {
    content: "\e637";
}
.ti-hand-drag:before {
    content: "\e638";
}
.ti-folder:before {
    content: "\e639";
}
.ti-flag:before {
    content: "\e63a";
}
.ti-flag-alt:before {
    content: "\e63b";
}
.ti-flag-alt-2:before {
    content: "\e63c";
}
.ti-eye:before {
    content: "\e63d";
}
.ti-export:before {
    content: "\e63e";
}
.ti-exchange-vertical:before {
    content: "\e63f";
}
.ti-desktop:before {
    content: "\e640";
}
.ti-cup:before {
    content: "\e641";
}
.ti-crown:before {
    content: "\e642";
}
.ti-comments:before {
    content: "\e643";
}
.ti-comment:before {
    content: "\e644";
}
.ti-comment-alt:before {
    content: "\e645";
}
.ti-close:before {
    content: "\e646";
}
.ti-clip:before {
    content: "\e647";
}
.ti-angle-up:before {
    content: "\e648";
}
.ti-angle-right:before {
    content: "\e649";
}
.ti-angle-left:before {
    content: "\e64a";
}
.ti-angle-down:before {
    content: "\e64b";
}
.ti-check:before {
    content: "\e64c";
}
.ti-check-box:before {
    content: "\e64d";
}
.ti-camera:before {
    content: "\e64e";
}
.ti-announcement:before {
    content: "\e64f";
}
.ti-brush:before {
    content: "\e650";
}
.ti-briefcase:before {
    content: "\e651";
}
.ti-bolt:before {
    content: "\e652";
}
.ti-bolt-alt:before {
    content: "\e653";
}
.ti-blackboard:before {
    content: "\e654";
}
.ti-bag:before {
    content: "\e655";
}
.ti-move:before {
    content: "\e656";
}
.ti-arrows-vertical:before {
    content: "\e657";
}
.ti-arrows-horizontal:before {
    content: "\e658";
}
.ti-fullscreen:before {
    content: "\e659";
}
.ti-arrow-top-right:before {
    content: "\e65a";
}
.ti-arrow-top-left:before {
    content: "\e65b";
}
.ti-arrow-circle-up:before {
    content: "\e65c";
}
.ti-arrow-circle-right:before {
    content: "\e65d";
}
.ti-arrow-circle-left:before {
    content: "\e65e";
}
.ti-arrow-circle-down:before {
    content: "\e65f";
}
.ti-angle-double-up:before {
    content: "\e660";
}
.ti-angle-double-right:before {
    content: "\e661";
}
.ti-angle-double-left:before {
    content: "\e662";
}
.ti-angle-double-down:before {
    content: "\e663";
}
.ti-zip:before {
    content: "\e664";
}
.ti-world:before {
    content: "\e665";
}
.ti-wheelchair:before {
    content: "\e666";
}
.ti-view-list:before {
    content: "\e667";
}
.ti-view-list-alt:before {
    content: "\e668";
}
.ti-view-grid:before {
    content: "\e669";
}
.ti-uppercase:before {
    content: "\e66a";
}
.ti-upload:before {
    content: "\e66b";
}
.ti-underline:before {
    content: "\e66c";
}
.ti-truck:before {
    content: "\e66d";
}
.ti-timer:before {
    content: "\e66e";
}
.ti-ticket:before {
    content: "\e66f";
}
.ti-thumb-up:before {
    content: "\e670";
}
.ti-thumb-down:before {
    content: "\e671";
}
.ti-text:before {
    content: "\e672";
}
.ti-stats-up:before {
    content: "\e673";
}
.ti-stats-down:before {
    content: "\e674";
}
.ti-split-v:before {
    content: "\e675";
}
.ti-split-h:before {
    content: "\e676";
}
.ti-smallcap:before {
    content: "\e677";
}
.ti-shine:before {
    content: "\e678";
}
.ti-shift-right:before {
    content: "\e679";
}
.ti-shift-left:before {
    content: "\e67a";
}
.ti-shield:before {
    content: "\e67b";
}
.ti-notepad:before {
    content: "\e67c";
}
.ti-server:before {
    content: "\e67d";
}
.ti-quote-right:before {
    content: "\e67e";
}
.ti-quote-left:before {
    content: "\e67f";
}
.ti-pulse:before {
    content: "\e680";
}
.ti-printer:before {
    content: "\e681";
}
.ti-power-off:before {
    content: "\e682";
}
.ti-plug:before {
    content: "\e683";
}
.ti-pie-chart:before {
    content: "\e684";
}
.ti-paragraph:before {
    content: "\e685";
}
.ti-panel:before {
    content: "\e686";
}
.ti-package:before {
    content: "\e687";
}
.ti-music:before {
    content: "\e688";
}
.ti-music-alt:before {
    content: "\e689";
}
.ti-mouse:before {
    content: "\e68a";
}
.ti-mouse-alt:before {
    content: "\e68b";
}
.ti-money:before {
    content: "\e68c";
}
.ti-microphone:before {
    content: "\e68d";
}
.ti-menu:before {
    content: "\e68e";
}
.ti-menu-alt:before {
    content: "\e68f";
}
.ti-map:before {
    content: "\e690";
}
.ti-map-alt:before {
    content: "\e691";
}
.ti-loop:before {
    content: "\e692";
}
.ti-location-pin:before {
    content: "\e693";
}
.ti-list:before {
    content: "\e694";
}
.ti-light-bulb:before {
    content: "\e695";
}
.ti-Italic:before {
    content: "\e696";
}
.ti-info:before {
    content: "\e697";
}
.ti-infinite:before {
    content: "\e698";
}
.ti-id-badge:before {
    content: "\e699";
}
.ti-hummer:before {
    content: "\e69a";
}
.ti-home:before {
    content: "\e69b";
}
.ti-help:before {
    content: "\e69c";
}
.ti-headphone:before {
    content: "\e69d";
}
.ti-harddrives:before {
    content: "\e69e";
}
.ti-harddrive:before {
    content: "\e69f";
}
.ti-gift:before {
    content: "\e6a0";
}
.ti-game:before {
    content: "\e6a1";
}
.ti-filter:before {
    content: "\e6a2";
}
.ti-files:before {
    content: "\e6a3";
}
.ti-file:before {
    content: "\e6a4";
}
.ti-eraser:before {
    content: "\e6a5";
}
.ti-envelope:before {
    content: "\e6a6";
}
.ti-download:before {
    content: "\e6a7";
}
.ti-direction:before {
    content: "\e6a8";
}
.ti-direction-alt:before {
    content: "\e6a9";
}
.ti-dashboard:before {
    content: "\e6aa";
}
.ti-control-stop:before {
    content: "\e6ab";
}
.ti-control-shuffle:before {
    content: "\e6ac";
}
.ti-control-play:before {
    content: "\e6ad";
}
.ti-control-pause:before {
    content: "\e6ae";
}
.ti-control-forward:before {
    content: "\e6af";
}
.ti-control-backward:before {
    content: "\e6b0";
}
.ti-cloud:before {
    content: "\e6b1";
}
.ti-cloud-up:before {
    content: "\e6b2";
}
.ti-cloud-down:before {
    content: "\e6b3";
}
.ti-clipboard:before {
    content: "\e6b4";
}
.ti-car:before {
    content: "\e6b5";
}
.ti-calendar:before {
    content: "\e6b6";
}
.ti-book:before {
    content: "\e6b7";
}
.ti-bell:before {
    content: "\e6b8";
}
.ti-basketball:before {
    content: "\e6b9";
}
.ti-bar-chart:before {
    content: "\e6ba";
}
.ti-bar-chart-alt:before {
    content: "\e6bb";
}
.ti-back-right:before {
    content: "\e6bc";
}
.ti-back-left:before {
    content: "\e6bd";
}
.ti-arrows-corner:before {
    content: "\e6be";
}
.ti-archive:before {
    content: "\e6bf";
}
.ti-anchor:before {
    content: "\e6c0";
}
.ti-align-right:before {
    content: "\e6c1";
}
.ti-align-left:before {
    content: "\e6c2";
}
.ti-align-justify:before {
    content: "\e6c3";
}
.ti-align-center:before {
    content: "\e6c4";
}
.ti-alert:before {
    content: "\e6c5";
}
.ti-alarm-clock:before {
    content: "\e6c6";
}
.ti-agenda:before {
    content: "\e6c7";
}
.ti-write:before {
    content: "\e6c8";
}
.ti-window:before {
    content: "\e6c9";
}
.ti-widgetized:before {
    content: "\e6ca";
}
.ti-widget:before {
    content: "\e6cb";
}
.ti-widget-alt:before {
    content: "\e6cc";
}
.ti-wallet:before {
    content: "\e6cd";
}
.ti-video-clapper:before {
    content: "\e6ce";
}
.ti-video-camera:before {
    content: "\e6cf";
}
.ti-vector:before {
    content: "\e6d0";
}
.ti-themify-logo:before {
    content: "\e6d1";
}
.ti-themify-favicon:before {
    content: "\e6d2";
}
.ti-themify-favicon-alt:before {
    content: "\e6d3";
}
.ti-support:before {
    content: "\e6d4";
}
.ti-stamp:before {
    content: "\e6d5";
}
.ti-split-v-alt:before {
    content: "\e6d6";
}
.ti-slice:before {
    content: "\e6d7";
}
.ti-shortcode:before {
    content: "\e6d8";
}
.ti-shift-right-alt:before {
    content: "\e6d9";
}
.ti-shift-left-alt:before {
    content: "\e6da";
}
.ti-ruler-alt-2:before {
    content: "\e6db";
}
.ti-receipt:before {
    content: "\e6dc";
}
.ti-pin2:before {
    content: "\e6dd";
}
.ti-pin-alt:before {
    content: "\e6de";
}
.ti-pencil-alt2:before {
    content: "\e6df";
}
.ti-palette:before {
    content: "\e6e0";
}
.ti-more:before {
    content: "\e6e1";
}
.ti-more-alt:before {
    content: "\e6e2";
}
.ti-microphone-alt:before {
    content: "\e6e3";
}
.ti-magnet:before {
    content: "\e6e4";
}
.ti-line-double:before {
    content: "\e6e5";
}
.ti-line-dotted:before {
    content: "\e6e6";
}
.ti-line-dashed:before {
    content: "\e6e7";
}
.ti-layout-width-full:before {
    content: "\e6e8";
}
.ti-layout-width-default:before {
    content: "\e6e9";
}
.ti-layout-width-default-alt:before {
    content: "\e6ea";
}
.ti-layout-tab:before {
    content: "\e6eb";
}
.ti-layout-tab-window:before {
    content: "\e6ec";
}
.ti-layout-tab-v:before {
    content: "\e6ed";
}
.ti-layout-tab-min:before {
    content: "\e6ee";
}
.ti-layout-slider:before {
    content: "\e6ef";
}
.ti-layout-slider-alt:before {
    content: "\e6f0";
}
.ti-layout-sidebar-right:before {
    content: "\e6f1";
}
.ti-layout-sidebar-none:before {
    content: "\e6f2";
}
.ti-layout-sidebar-left:before {
    content: "\e6f3";
}
.ti-layout-placeholder:before {
    content: "\e6f4";
}
.ti-layout-menu:before {
    content: "\e6f5";
}
.ti-layout-menu-v:before {
    content: "\e6f6";
}
.ti-layout-menu-separated:before {
    content: "\e6f7";
}
.ti-layout-menu-full:before {
    content: "\e6f8";
}
.ti-layout-media-right-alt:before {
    content: "\e6f9";
}
.ti-layout-media-right:before {
    content: "\e6fa";
}
.ti-layout-media-overlay:before {
    content: "\e6fb";
}
.ti-layout-media-overlay-alt:before {
    content: "\e6fc";
}
.ti-layout-media-overlay-alt-2:before {
    content: "\e6fd";
}
.ti-layout-media-left-alt:before {
    content: "\e6fe";
}
.ti-layout-media-left:before {
    content: "\e6ff";
}
.ti-layout-media-center-alt:before {
    content: "\e700";
}
.ti-layout-media-center:before {
    content: "\e701";
}
.ti-layout-list-thumb:before {
    content: "\e702";
}
.ti-layout-list-thumb-alt:before {
    content: "\e703";
}
.ti-layout-list-post:before {
    content: "\e704";
}
.ti-layout-list-large-image:before {
    content: "\e705";
}
.ti-layout-line-solid:before {
    content: "\e706";
}
.ti-layout-grid4:before {
    content: "\e707";
}
.ti-layout-grid3:before {
    content: "\e708";
}
.ti-layout-grid2:before {
    content: "\e709";
}
.ti-layout-grid2-thumb:before {
    content: "\e70a";
}
.ti-layout-cta-right:before {
    content: "\e70b";
}
.ti-layout-cta-left:before {
    content: "\e70c";
}
.ti-layout-cta-center:before {
    content: "\e70d";
}
.ti-layout-cta-btn-right:before {
    content: "\e70e";
}
.ti-layout-cta-btn-left:before {
    content: "\e70f";
}
.ti-layout-column4:before {
    content: "\e710";
}
.ti-layout-column3:before {
    content: "\e711";
}
.ti-layout-column2:before {
    content: "\e712";
}
.ti-layout-accordion-separated:before {
    content: "\e713";
}
.ti-layout-accordion-merged:before {
    content: "\e714";
}
.ti-layout-accordion-list:before {
    content: "\e715";
}
.ti-ink-pen:before {
    content: "\e716";
}
.ti-info-alt:before {
    content: "\e717";
}
.ti-help-alt:before {
    content: "\e718";
}
.ti-headphone-alt:before {
    content: "\e719";
}
.ti-hand-point-up:before {
    content: "\e71a";
}
.ti-hand-point-right:before {
    content: "\e71b";
}
.ti-hand-point-left:before {
    content: "\e71c";
}
.ti-hand-point-down:before {
    content: "\e71d";
}
.ti-gallery:before {
    content: "\e71e";
}
.ti-face-smile:before {
    content: "\e71f";
}
.ti-face-sad:before {
    content: "\e720";
}
.ti-credit-card:before {
    content: "\e721";
}
.ti-control-skip-forward:before {
    content: "\e722";
}
.ti-control-skip-backward:before {
    content: "\e723";
}
.ti-control-record:before {
    content: "\e724";
}
.ti-control-eject:before {
    content: "\e725";
}
.ti-comments-smiley:before {
    content: "\e726";
}
.ti-brush-alt:before {
    content: "\e727";
}
.ti-youtube:before {
    content: "\e728";
}
.ti-vimeo:before {
    content: "\e729";
}
.ti-twitter:before {
    content: "\e72a";
}
.ti-time:before {
    content: "\e72b";
}
.ti-tumblr:before {
    content: "\e72c";
}
.ti-skype:before {
    content: "\e72d";
}
.ti-share:before {
    content: "\e72e";
}
.ti-share-alt:before {
    content: "\e72f";
}
.ti-rocket:before {
    content: "\e730";
}
.ti-pinterest:before {
    content: "\e731";
}
.ti-new-window:before {
    content: "\e732";
}
.ti-microsoft:before {
    content: "\e733";
}
.ti-list-ol:before {
    content: "\e734";
}
.ti-linkedin:before {
    content: "\e735";
}
.ti-layout-sidebar-2:before {
    content: "\e736";
}
.ti-layout-grid4-alt:before {
    content: "\e737";
}
.ti-layout-grid3-alt:before {
    content: "\e738";
}
.ti-layout-grid2-alt:before {
    content: "\e739";
}
.ti-layout-column4-alt:before {
    content: "\e73a";
}
.ti-layout-column3-alt:before {
    content: "\e73b";
}
.ti-layout-column2-alt:before {
    content: "\e73c";
}
.ti-instagram:before {
    content: "\e73d";
}
.ti-google:before {
    content: "\e73e";
}
.ti-github:before {
    content: "\e73f";
}
.ti-flickr:before {
    content: "\e740";
}
.ti-facebook:before {
    content: "\e741";
}
.ti-dropbox:before {
    content: "\e742";
}
.ti-dribbble:before {
    content: "\e743";
}
.ti-apple:before {
    content: "\e744";
}
.ti-android:before {
    content: "\e745";
}
.ti-save:before {
    content: "\e746";
}
.ti-save-alt:before {
    content: "\e747";
}
.ti-yahoo:before {
    content: "\e748";
}
.ti-wordpress:before {
    content: "\e749";
}
.ti-vimeo-alt:before {
    content: "\e74a";
}
.ti-twitter-alt:before {
    content: "\e74b";
}
.ti-tumblr-alt:before {
    content: "\e74c";
}
.ti-trello:before {
    content: "\e74d";
}
.ti-stack-overflow:before {
    content: "\e74e";
}
.ti-soundcloud:before {
    content: "\e74f";
}
.ti-sharethis:before {
    content: "\e750";
}
.ti-sharethis-alt:before {
    content: "\e751";
}
.ti-reddit:before {
    content: "\e752";
}
.ti-pinterest-alt:before {
    content: "\e753";
}
.ti-microsoft-alt:before {
    content: "\e754";
}
.ti-linux:before {
    content: "\e755";
}
.ti-jsfiddle:before {
    content: "\e756";
}
.ti-joomla:before {
    content: "\e757";
}
.ti-html5:before {
    content: "\e758";
}
.ti-flickr-alt:before {
    content: "\e759";
}
.ti-email:before {
    content: "\e75a";
}
.ti-drupal:before {
    content: "\e75b";
}
.ti-dropbox-alt:before {
    content: "\e75c";
}
.ti-css3:before {
    content: "\e75d";
}
.ti-rss:before {
    content: "\e75e";
}
.ti-rss-alt:before {
    content: "\e75f";
}

/*-------------------------
-----Table-Of-Content------
---------------------------
01. Helper-Class 
02. Page-Wrapper 
03. Mainmenu-Area
    3.1 DropDown-Menu
    3.2 Menu-Right-Content 
    3.3 Toggle-Search-Form 
04. Header-Area-Start 
05. Service-Box-Start 
06. Feature-Product-Area
07. gallery-Area
08. Price-Table
09. Testimonial-Area-Start 
10. Video-Area-Start 
11. Contact-Form-Start
12. Preloader-CSS

--------------------------
01. Helper-Classes
---------------------------*/

.alignleft {
    float: left;
    margin-right: 15px;
    margin-bottom: 10px;
    margin-top: 10px;
}

.alignright {
    float: right;
    margin-left: 15px;
}

.aligncenter {
    display: block;
    margin: 0 auto 15px;
}

.flex-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.verticle-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.lead-text {
    color: #F64032;
}

.social-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.social-menu li {
    display: inline-block;
}

.section-overlay-bg {
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: 1;
}

.section-overlay-bg:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5)
}

.section-padding {
    padding-top: 120px;
    padding-bottom: 120px;
}

.gray-bg {
    background-color: #f3fbfe;
    position: relative;
    overflow: hidden;
    padding-top: 140px;
    padding-bottom: 140px;
}

.gray-bg:after,
.gray-bg:before {
    content: "";
    width: 100%;
    height: 20px;
    position: absolute;
    left: 0px;
    bottom: 0px;
    background: url('../images/angle-box.png') repeat-x scroll top center;
}

.gray-bg:before {
    top: 0px;
    background-position: bottom center;
}


/*--------------------------
1.1 Button-Style 
---------------------------*/

.mouse-dir {
    overflow: hidden;
    position: relative;
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
    z-index: 1;
}

.mouse-dir .dir-part {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: #F64032;
    -webkit-transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
    -o-transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
    transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: -1;
}

.mouse-dir:hover .dir-part {
    width: 600px;
    height: 600px;
}

.button-lead,
.button-white {
    display: inline-block;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    padding: 16px 50px;
    background-color: #ffffff;
    color: #F64032;
    -webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.05);
    border: 0px solid #F64032;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    border-radius: 100px;
}

.button-lead:hover,
.button-white:hover {
    color: #ffffff;
    -webkit-box-shadow: 0 16px 32px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0 16px 32px 0 rgba(0, 0, 0, 0.05);
}

.button-play {
    width: 60px;
    height: 60px;
    display: inline-block;
    text-align: center;
    line-height: 62px;
    color: #F64032;
    font-size: 20px;
    border-radius: 100px;
    background-color: #ffffff;
    -webkit-box-shadow: 0px 16px 32px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0px 16px 32px 0 rgba(0, 0, 0, 0.05)
}

.button-play:hover {
    color: #ffffff;
}

.button-play.mouse-dir .dir-part {
    background-color: #F64032;
}

.button-white.mouse-dir .dir-part {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#f64032+0,fda621+100 */
    background: #f64032;
    /* Old browsers */
    /* FF3.6-15 */
    /* Chrome10-25,Safari5.1-6 */
    background: -o-linear-gradient(315deg, #f64032 0%, #fda621 100%);
    background: linear-gradient(135deg, #f64032 0%, #fda621 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f64032', endColorstr='#fda621', GradientType=1);
    /* IE6-9 fallback on horizontal gradient */
}

.button-lead {
    cursor: pointer;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#f64032+0,fda621+100 */
    background: #f64032;
    /* Old browsers */
    /* FF3.6-15 */
    /* Chrome10-25,Safari5.1-6 */
    background: -o-linear-gradient(315deg, #f64032 0%, #fda621 100%);
    background: linear-gradient(135deg, #f64032 0%, #fda621 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f64032', endColorstr='#fda621', GradientType=1);
    /* IE6-9 fallback on horizontal gradient */
    color: #ffffff;
}

.button-lead:hover {
    color: #ffffff;
}

.button-lead .dir-part {
    background-color: #ffffff;
}

.play-button {
    width: 100px;
    height: 100px;
    line-height: 102px;
    background-color: #ffffff;
    color: #F64032;
    font-size: 20px;
    text-align: center;
    display: inline-block;
    border-radius: 200px;
    -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.06);
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.06)
}

.play-button:hover {
    background-color: #F64032;
    color: #ffffff;
    -webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.06);
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.06)
}

.box-space {
    margin-bottom: -30px;
}

.box-space>div {
    margin-bottom: 30px;
}

.container-fluid.wide {
    max-width: 1500px;
}


/*--------------------------
02. Page-Wrapper 
---------------------------*/

.full-wrapper {
    position: relative;
    z-index: 1;
    background-color: #ffffff;
}

.section-title {
    position: relative;
    text-align: center;
    margin-bottom: 60px;
}

.section-title .top-title {
    font-size: 20px;
    text-transform: capitalize;
    font-weight: 600;
    position: relative;
    margin-bottom: 25px;
    color: #F64032;
}

.section-title .main-title {
    font-size: 56px;
    line-height: 56px;
    margin-bottom: 0px;
    color: #0e2129;
    position: relative;
}

.desc p:last-child {
    margin-bottom: 0px;
}

.section-title.left-align {
    text-align: left;
}

.section-title.left-align .title-bar {
    margin-left: -5px;
}


/*---------------------------
03. Mainmenu-Area
--------------------------*/

.site-brand {
    font-size: 36px;
    display: block;
    padding-top: 8px;
    padding-bottom: 8px;
}

.site-brand a {
    color: #ffffff;
    display: inline-block;
}

.mainmenu-area {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    padding-top: 15px;
    padding-bottom: 15px;
    white-space: nowrap;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mainmenu-area.affix {
    position: fixed;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mainmenu-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.site-logo {
    padding-bottom: 15px;
    padding-top: 15px;
}

.site-logo .logo-image {
    padding-left: 15px;
    display: block;
}

.site-logo .logo-text a {
    max-width: 150px;
    text-align: center;
    display: block;
    font-size: 40px;
    overflow: hidden;
    position: relative;
    padding: 0;
    color: #ffffff;
}

.mainmenu-area.affix .site-logo .logo-text a {
    color: #0e2129;
}

.site-logo .logo-text {
    margin-bottom: 0;
}

.transparent-menu .mainmenu-area {
    background-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
}

.mainmenu-area.affix {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 1);
}

.admin-bar .mainmenu-area.affix {
    top: 30px;
}

.primary-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.primary-menu>ul>li {
    display: inline-block;
    position: relative;
    margin-left: -5px;
    padding: 15px 0;
}

.primary-menu ul li li a {
    border-left: 1px solid #f6f6f6;
}

.primary-menu>ul>li:first-child {
    border-left: none;
}

.mainmenu-area #mainmenu ul li>a i.plus {
    float: right;
    width: 12px;
    height: 12px;
    line-height: 12px;
    margin-top: 10px;
    margin-left: 10px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    display: block;
    position: relative;
}

.mainmenu-area #mainmenu ul li>a i.plus:before,
.mainmenu-area #mainmenu ul li>a i.plus:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 12px;
    height: 2px;
    display: block;
    background-color: #ededed;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.mainmenu-area #mainmenu ul li>a i.plus:before {
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
    -ms-transform: translate(-50%, -50%) rotate(90deg);
    transform: translate(-50%, -50%) rotate(90deg);
}

.mainmenu-area #mainmenu ul li:hover>a i.plus:before {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    -ms-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
}

.primary-menu ul li {
    position: relative;
}

.primary-menu ul.nav li a {
    padding: 0px 20px;
    position: relative;
    font-weight: 600;
    color: #ffffff;
    text-transform: capitalize;
    background: none;
    font-size: 15px;
    display: block;
}

.mainmenu-area.affix .primary-menu ul.nav li a {
    color: #282e44;
}

.mainmenu-area.affix .primary-menu ul.nav li:hover>a {
    color: #F64032;
}

.primary-menu ul.nav>li:last-child>a {
    padding-right: 0px;
}

.primary-menu ul.nav>li.current-menu-item>a,
.primary-menu ul.nav li:hover>a,
.primary-menu ul.nav li:hover>i {
    color: #F64032;
}

.menu-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
}

.menu-buttons>* {
    margin: 0 10px;
}

.menu-buttons:last-child {
    margin-right: 0;
}

.nav-alignmenu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}


/*-----------------------
3.1 DropDown-Menu
------------------------*/

.primary-menu ul.nav li {
    position: relative;
}

.primary-menu ul.nav .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    min-width: 220px;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    padding-top: 15px;
    padding-bottom: 15px;
    -webkit-box-shadow: 0px 20px 40px 0px rgba(25, 31, 160, 0.1);
    box-shadow: 0px 20px 40px 0px rgba(25, 31, 160, 0.1);
}

.primary-menu ul.nav .sub-menu .sub-menu {
    left: auto;
    right: 100%;
    top: 0;
}

.primary-menu ul.nav .sub-menu li:hover>.sub-menu {
    top: -15px;
}

.primary-menu ul.nav .sub-menu li {
    display: block;
    padding-left: 10px;
    padding-right: 10px;
}

.primary-menu ul.nav .sub-menu li a {
    padding: 2px 10px;
    display: block;
}

.primary-menu ul.nav .sub-menu li.current-menu-item>a,
.primary-menu ul.nav .sub-menu li.active>a,
.primary-menu ul.nav .sub-menu li:hover>a {
    color: #F64032;
    border-left: 1px solid #ffcdbf;
}

.primary-menu ul.nav li:hover>.sub-menu {
    visibility: visible;
    opacity: 1;
}


/*----------------------
 3.2 Menu-Right-Content 
----------------------*/

.menu-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.navi-trigger {
    width: 24px;
    height: 17px;
    line-height: 40px;
    border: none;
    position: relative;
    margin: 0;
    padding: 0;
    background: none;
    margin-left: 30px;
}

.navi-trigger .bar {
    width: 24px;
    height: 2px;
    background-color: #ffffff;
    display: block;
    margin-bottom: 5px;
    border-radius: 10px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.affix .navi-trigger .bar {
    background-color: #626262;
}

.navi-trigger .bar:nth-child(3) {
    width: 13px;
    margin-bottom: 0px;
}

.navi-trigger.active .bar:nth-child(1) {
    width: 13px;
}

.navi-trigger.active .bar:nth-child(3) {
    width: 24px;
}


/*---------------------
04. Header-Area-Start 
---------------------*/

.header-area {
    position: relative;
    overflow: hidden;
    z-index: 1;
    padding-top: 250px;
    padding-bottom: 150px;
    background: url('../images/header-bg.jpg') no-repeat scroll center bottom 0px / cover;
}

.header-area:before {
    content: "";
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(14, 33, 41, 0.5);
    z-index: -2;
}

.header-area .button-play {
    position: relative;
    z-index: 99;
    margin-left: 25px;
}

.header-text {
    z-index: 1;
}

.header-text .top-title {
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.header-text .main-title {
    font-size: 52px;
    line-height: 62px;
    color: #ffffff;
    margin-bottom: 30px;
}

.header-text .desc {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 50px;
    font-weight: 400;
}

.section-title .desc p:last-child,
.header-text .desc p:last-child {
    margin-bottom: 0px;
}

.button-link {
    position: relative;
    padding: 15px 30px 15px 0px;
    padding-right: 3.1rem;
    font-size: 1.4rem;
    color: #F64032;
    letter-spacing: 1rem;
    text-transform: uppercase;
    -webkit-transition: all 600ms cubic-bezier(0.77, 0, 0.175, 1);
    -o-transition: all 600ms cubic-bezier(0.77, 0, 0.175, 1);
    transition: all 600ms cubic-bezier(0.77, 0, 0.175, 1);
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 1;
    display: inline-block;
}

.button-link:before,
.button-link:after {
    content: '';
    position: absolute;
    -webkit-transition: inherit;
    -o-transition: inherit;
    transition: inherit;
    z-index: -1;
}

.button-link:hover {
    color: #fff;
    -webkit-transition-delay: 0.5s;
    -o-transition-delay: 0.5s;
    transition-delay: 0.5s;
    padding: 15px 30px 15px 30px;
}

.button-link:hover:before {
    -webkit-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
}

.button-link:hover:after {
    background: #F64032;
    -webkit-transition-delay: 0.5s;
    -o-transition-delay: 0.5s;
    transition-delay: 0.5s;
}

.button-link:before,
.button-link:after {
    top: 0;
    width: 0;
    height: 100%;
}

.button-link:before {
    right: 0;
    border: 1px solid #F64032;
    border-left: 0;
    border-right: 0;
}

.button-link:after {
    left: 0;
}

.button-link:hover:before,
.button-link:hover:after {
    width: 100%;
}

.home-slider {
    width: 80vw;
    z-index: 2;
}

.home-slider .slick-prev,
.home-slider .slick-next {
    left: 0;
    bottom: 0;
    top: auto;
}

.home-slider .slick-prev {
    left: -100px;
}

.home-slide-item {
    -webkit-transform: scale(0.9, 0.9);
    -ms-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.slick-current.home-slide-item {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
}

.home-image {
    border: 15px solid #ffffff;
    -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.06);
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.06);
    margin: 100px 0px;
}


/*------------------------
 05. Service-Box-Start 
 ------------------------*/

.single-service {
    border: 1px solid #f7f7f7;
    border-radius: 5px;
    padding: 60px 40px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    text-align: center;
    background-color: #ffffff;
    -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px)
}

.single-service:hover {
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
    -webkit-box-shadow: 0 16px 32px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0 16px 32px 0 rgba(0, 0, 0, 0.05);
}

.single-service .title {
    font-size: 20px;
    text-transform: capitalize;
}

.single-service .icon {
    font-size: 60px;
    color: #F64032;
    margin-bottom: 35px;
    background: -webkit-linear-gradient(#FDA621, #F64032);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.single-feature {
    position: relative;
    padding-left: 80px;
    padding-bottom: 40px;
}

.single-feature:last-child {
    padding-bottom: 0px;
}

.single-feature.align-right {
    padding-left: 0px;
    padding-right: 80px;
    text-align: right;
}

.single-feature .icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#f64032+0,fda621+100 */
    background: #f64032;
    /* Old browsers */
    /* FF3.6-15 */
    /* Chrome10-25,Safari5.1-6 */
    background: -o-linear-gradient(315deg, #f64032 0%, #fda621 100%);
    background: linear-gradient(135deg, #f64032 0%, #fda621 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f64032', endColorstr='#fda621', GradientType=1);
    /* IE6-9 fallback on horizontal gradient */
    text-align: center;
    line-height: 60px;
    border-radius: 100px;
    color: #FCA86E;
    font-size: 20px;
    z-index: 1;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.single-feature.align-right .icon {
    left: auto;
    right: 0px;
}

.single-feature:before {
    content: "";
    position: absolute;
    left: 30px;
    top: 0px;
    width: 2px;
    height: 100%;
    border-radius: 100px;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#f64032+0,fda621+100 */
    background: #f64032;
    /* Old browsers */
    /* FF3.6-15 */
    /* Chrome10-25,Safari5.1-6 */
    background: -o-linear-gradient(315deg, #f64032 0%, #fda621 100%);
    background: linear-gradient(135deg, #f64032 0%, #fda621 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f64032', endColorstr='#fda621', GradientType=1);
    /* IE6-9 fallback on horizontal gradient */
}

.single-feature.align-right:before {
    left: auto;
    right: 30px;
}

.single-feature:last-child:before {
    display: none;
}

.single-feature .icon:before {
    content: "";
    position: absolute;
    left: 2px;
    top: 2px;
    height: calc(100% - 4px);
    width: calc(100% - 4px);
    background-color: #ffffff;
    border-radius: 100px;
    z-index: -1;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    opacity: 1;
}
.single-feature:hover .icon:before {
    opacity: 0;
}
.single-feature:hover .icon {
    color: #ffffff;
}
.single-feature .title {
    font-size: 18px;
    font-weight: 600;
}
.feature-image {
    -webkit-transform: scale(1.2, 1.2);
    -ms-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
}
.feature-images {
    margin-top: -50px;
    margin-bottom: -50px;
}
.home-slider.feature-images {
    margin-top: -50px;
    margin-bottom: -50px;
}


/*--------------------------
06. Feature-Product-Area
----------------------------*/

.pro-exp-box .top-title {
    font-size: 14px;
    text-transform: capitalize;
    font-weight: 600;
    position: relative;
    margin-bottom: 15px;
    color: #F64032;
}

.pro-exp-box .title {
    font-size: 36px;
    line-height: 46px;
    margin-bottom: 15px;
}

.pro-exp-box .price {
    font-size: 26px;
    color: #F64032;
    margin-bottom: 15px;
}

.pro-exp-box .price del {
    color: #282e44;
}

.pro-exp-box .desc {
    margin-bottom: 15px;
}

.dot-list {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

.dot-list li:before {
    content: "";
    width: 6px;
    height: 6px;
    display: inline-block;
    border-radius: 100px;
    margin-right: 10px;
    background-color: #acacac;
    -webkit-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    transform: translateY(-3px)
}

.pro-exp-box .dot-list {
    margin-bottom: 50px;
}

.pro-exp-box .dot-list li {
    margin-bottom: 5px;
}

.pro-exp-box .dot-list li:last-child {
    margin-bottom: 0px;
}


/*--------------------------
07. gallery-Area
----------------------------*/

.service-area,
.gallery-area {
    padding-bottom: 100px;
}

.single-gallery {
    position: relative;
    overflow: hidden;
    background-color: #ffffff;
    border: 1px solid #f7f7f7;
    border-radius: 5px;
}

.single-gallery .gallery-image {
    display: block;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.single-gallery .gallery-image img {
    -webkit-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
}

.single-gallery:hover .gallery-image img {
    -webkit-transform: scale(1.2, 1.2);
    -ms-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2)
}

.single-gallery .gallery-image:after {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: 1;
    opacity: 0;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.single-gallery:hover .gallery-image:after {
    opacity: 0.9;
}

.single-gallery .gallery-image:before {
    content: "\e611";
    font-family: 'themify';
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 2;
    color: #F64032;
    font-size: 30px;
    opacity: 0;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.single-gallery:hover .gallery-image:after {
    opacity: 0.9;
}

.single-gallery:hover .gallery-image:before {
    opacity: 1;
}


/*------------------------
08. Price-Table
 -----------------------*/

.price-table {
    text-align: center;
    position: relative;
    -webkit-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
    border-radius: 5px;
    overflow: hidden;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    background-color: #ffffff;
}

.price-table:hover {
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
    -webkit-box-shadow: 0px 20px 40px 0px rgba(0, 0, 0, 0.06);
    box-shadow: 0px 20px 40px 0px rgba(0, 0, 0, 0.06);
}

.price-table .price-header {
    padding: 40px;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#f64032+0,fda621+100 */
    background: #f64032;
    /* Old browsers */
    /* FF3.6-15 */
    /* Chrome10-25,Safari5.1-6 */
    background: -o-linear-gradient(315deg, #f64032 0%, #fda621 100%);
    background: linear-gradient(135deg, #f64032 0%, #fda621 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f64032', endColorstr='#fda621', GradientType=1);
    /* IE6-9 fallback on horizontal gradient */
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.price-table .price-header:before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 1;
    background-color: #fff8f8;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.price-table.active .price-header:before {
    opacity: 0;
}

.price-table .price-header .info {
    font-size: 30px;
    font-weight: 400;
    color: #0e2129;
}

.price-table .price-header .amount {
    font-size: 60px;
    color: #193B49;
    line-height: 60px;
    display: block;
    font-weight: 700;
    margin-bottom: 30px;
}

.price-table.active .price-header .info,
.price-table.active .price-header .amount {
    color: #ffffff;
}

.price-table .price-header .amount sup,
.price-table .price-header .amount sub {
    font-weight: 400;
    font-size: 26px;
    line-height: 26px;
    display: inline-block;
    position: relative;
}

.price-table .price-header .amount sup {
    top: -22px;
}

.price-table .price-header .amount sub {
    top: 0px;
}

.price-table .product-desc {
    padding: 40px;
    margin: 0px;
    list-style: none;
}

.price-table .product-desc li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ededed;
}

.price-table .product-desc li:last-child {
    margin-bottom: 0px;
    padding-bottom: 0px;
    border-bottom: 0px solid #ededed;
}

.price-table.active .button-lead {
    color: #F64032;
    background: #ffffff;
}

.price-table.active .button-lead .dir-part {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#f64032+0,fda621+100 */
    background: #f64032;
    /* Old browsers */
    /* FF3.6-15 */
    /* Chrome10-25,Safari5.1-6 */
    background: -o-linear-gradient(315deg, #f64032 0%, #fda621 100%);
    background: linear-gradient(135deg, #f64032 0%, #fda621 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f64032', endColorstr='#fda621', GradientType=1);
    /* IE6-9 fallback on horizontal gradient */
    opacity: 0.2;
}


/*------------------------
09. Testimonial-Area-Start 
 -------------------------*/

.testimonial-area {
    overflow: hidden;
}

.single-testimonial {
    position: relative;
    left: 0;
    z-index: 1;
    text-align: center;
}

.testimonial-slider .single-testimonial {
    padding: 0px 50px;
}

.single-testimonial .quote {
    font-size: 150px;
    line-height: 150px;
    position: absolute;
    right: 0px;
    left: 0px;
    bottom: 30px;
    color: rgba(0, 0, 0, 0.02);
    z-index: -1;
}

.testimonial-page .single-testimonial .quote {
    right: 60px;
    bottom: 20px;
}

.single-testimonial .desc {
    font-size: 24px;
    color: #0e2129;
    margin-bottom: 30px;
    line-height: 34px;
    font-weight: 500;
}

.single-testimonial .desc:after,
.single-testimonial .desc:before {
    content: '"';
}

.single-testimonial .client-photo {
    width: 100px;
    height: 100px;
    line-height: 0px;
    border-radius: 100px;
    overflow: hidden;
    display: inline-block;
    margin-bottom: 25px;
}

.single-testimonial .client-info .name {
    margin-bottom: 5px;
    font-size: 20px;
}

.single-testimonial .client-info .sub-title {
    font-size: 14px;
    color: #282e44;
}


/*------------------------
10. Video-Area-Start 
 -----------------------*/

.video-area {
    overflow: hidden;
    max-width: 100%;
}

.video-slider {
    width: 100vw;
}

.single-video {
    position: relative;
    margin: 0px 15px;
    border-radius: 5px;
    overflow: hidden;
}

.single-video .video-image img {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
    -webkit-filter: brightness(1);
    filter: brightness(1)
}

.single-video:hover .video-image img {
    -webkit-transform: scale(1.1, 1.1);
    -ms-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
    -webkit-filter: brightness(0.7);
    filter: brightness(0.7)
}

.single-video .video-button {
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 2px solid #ffffff;
    text-align: center;
    line-height: 60px;
    color: #ffffff;
    border-radius: 100px;
}

.single-video .video-button:hover {
    background-color: #ffffff;
    color: #F64032;
}


/*--------------------------
11. Contact-Form-Start
----------------------------*/

.contact-area {
    padding-top: 110px;
}

.contact-area:after {
    display: none;
}

.input-box {
    padding: 18px 20px;
    width: 100%;
    background-color: #ffffff;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    border: 1px solid #ededed;
    border-radius: 5px;
    outline: none;
    color: #0e2129;
}

.input-box:focus {
    -webkit-box-shadow: 16px 16px 32px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 16px 16px 32px 0 rgba(0, 0, 0, 0.05);
}

.contact-form .input-box {
    margin-bottom: 30px;
}

.contact-form .form-double:after {
    clear: both;
    display: block;
    content: "";
}

.contact-form .form-double .form-box {
    width: calc(50% - 15px);
    float: left;
    margin-right: 30px;
}

.contact-form .form-double .form-box.left {
    margin-right: 0;
}

.form-box {
    position: relative;
}

.form-box .icon {
    position: absolute;
    right: 5px;
    top: 12px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 100px;
    color: #868a98;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.contact-form ::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #868a98;
}

.contact-form ::-moz-placeholder {
    /* Firefox 19+ */
    color: #868a98;
}

.contact-form :-ms-input-placeholder {
    /* IE 10+ */
    color: #868a98;
}

.contact-form :-moz-placeholder {
    /* Firefox 18- */
    color: #868a98;
}

.footer-bottom {
    margin-top: 60px;
    margin-bottom: 60px;
}

.social-menu {
    margin-bottom: -10px;
}

.social-menu a {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 52px;
    border: 1px solid #ededed;
    background-color: #ffffff;
    border-radius: 50%;
    color: #193B49;
    margin: 0 5px 10px 5px;
}

.social-menu a:hover {
    background-color: #f83600;
    border: 1px solid #f83600;
    color: #ffffff;
}

.copyright-text {
    margin-top: 30px;
    color: #6e7c90;
    font-style: 14px;
}


/*----------------------
12. Preloader-CSS
 ---------------------*/

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ECF0F1;
    z-index: 999999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    pointer-events: none;
}

#scrollUp {
    position: fixed;
    right: 2%;
    top: 100%;
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 16px;
    border: 2px solid #F64032;
    color: #F64032;
    text-align: center;
    background-color: #ffffff;
    border-radius: 100%;
    z-index: 999;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

#scrollUp.active {
    top: calc(100% - 90px)
}

.mfp-zoom-out-cur #scrollUp.active {
    top: 100%;
}

#scrollUp:hover {
    background-color: #F64032;
    color: #ffffff;
}

.no-js #loader {
  display: none;
}
.js #loader {
  display: block;
  position: absolute;
  left: 100px; top: 0;
}
.se-pre-con {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: url(plugins/simple-pre-loader/images/loader-64x/Preloader_2.gif) center no-repeat #fff;
}
.feedback {
  background-color : #f66400;
  color: #fff !important;
  padding: 10px 20px;
  padding-bottom: 10px !important;
  border-radius: 4px;
  border-color: #46b8da;
}
#mybutton {
  position: fixed;
  bottom: 50%;
  right: -40px;
  z-index: 99999;
  cursor: pointer;
  transform: rotate(-90deg);
}
.main-heading h2{
  background-color: #054d9a;
  color: #fff;
  padding: 10px;
  border-radius: 10px;
  text-align: center;
}
.mainmenu-area{
  padding-top: 0px;
  padding-bottom: 0px;  
}
.primary-menu ul.nav li a {
  font-size: 20px;
}
.form-control:focus, .select2-container--default .select2-search--dropdown .select2-search__field, .select2-container--default.select2-container--focus .select2-selection--multiple, .select2-container--open .select2-selection--single {
    border: 1px solid green !important;
}
/* ========= Enter Your CSS ========== */
#callme {
    position: fixed;
    right: 30px;
    bottom: 100px;
    width: 70px;
    height: 70px;
    cursor: pointer;
  
    z-index: 99990;
}
#callme #callmeMain {
    -moz-border-radius: 50% !important;
    -webkit-border-radius: 50% !important;
    border-radius: 50% !important;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    background-color: rgb(40 167 69);
    width: 60px;
    height: 60px;
    -webkit-animation: zcwmini2 1.5s 0s ease-out infinite;
    -moz-animation: zcwmini2 1.5s 0s ease-out infinite;
    animation: zcwmini2 1.5s 0s ease-out infinite;
}
#callme #callmeMain:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: -6px;
    left: -6px;
    background-image: url(./images/mini.png);
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-animation: zcwphone2 1.5s linear infinite;
    -moz-animation: zcwphone2 1.5s linear infinite;
    animation: zcwphone2 1.5s linear infinite;
}
@-webkit-keyframes zcwphone {
    0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
    50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
    100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
}
@-moz-keyframes zcwphone {
    0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
    50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
    100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
}
@keyframes zcwphone {
    0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
    50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
    100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
}
@-webkit-keyframes zcwphone2 {
    0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
    50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
    100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
}
@-moz-keyframes zcwphone2 {
    0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
    50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
    100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
}
@keyframes zcwphone2 {
    0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
    50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
    100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
}
@-webkit-keyframes zcwmini {
    0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
    10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
    100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
}
@-moz-keyframes zcwmini {
    0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
    10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
    100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
}
@keyframes zcwmini {
    0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
    10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
    100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
}
@-webkit-keyframes zcwmini2 {
    0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
    10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
    100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
}
@-moz-keyframes zcwmini2 {
    0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
    10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
    100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
}
@keyframes zcwmini2 {
    0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
    10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
    100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
}
.modal-title {
    color: #fff;
    margin: 0;
    font-weight: 400;
    font-size: 18px;
}

/* Responsive code start here */
@media only screen and (max-width: 1024px) {
    #mybutton {
        display: none !important;
    }
}
/* Mobile Layout: 320px. */
@media only screen and (max-width: 992px) {
    .header-text {
        text-align: center;
        margin-bottom: 60px;
    }
    .header-area {
        padding-top: 200px;
        padding-bottom: 100px;
    }
    .feature-images {
        margin-bottom: -100px;
    }
    .feature-image {
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        transform: scale(1, 1);
        margin: 0px;
    }
    .single-feature.align-right {
        padding-right: 0px;
        padding-left: 80px;
        text-align: left;
    }
    .single-feature.align-right .icon {
        right: auto;
        left: 0px;
    }
    .single-feature.align-right:before {
        right: auto;
        left: 30px;
    }
    .price-table {
        margin-bottom: 30px;
    }
    .price-area {
        padding-bottom: 100px;
    }
    .header-text .main-title {
        font-size: 40px;
        line-height: 50px;
    }
    .home-slider {
        width: 100%;
    }
    .section-title .top-title {
        margin-bottom: 5px;
    }
    .section-title .main-title {
        font-size: 40px;
        line-height: 50px;
    }
    .contact-form .form-double .form-box {
        width: 100%;
    }
    .video-slider {
        width: 100%
    }
    .testimonial-slider .single-testimonial {
        padding: 5px;
    }
    .single-testimonial .desc {
        font-size: 18px;
        line-height: 28px;
    }
    .feature-images {
        margin: 0px 0px -60px 0px;
    }
    .feature-image {
        -webkit-transform: translate(0px, 0px) !important;
        -ms-transform: translate(0px, 0px) !important;
        transform: translate(0px, 0px) !important;
    }
    .feature-image.image-2 {
        margin: 60px 0px;
    }
}

@media only screen and (max-width: 580px) {
    .gallerys .col-xs-6 {
        width: 100%;
    }
}

.float{
    position:fixed;
    width:60px;
    height:60px;
    bottom:10px;
    right:10px;
    background-color:#25d366;
    color:#FFF;
    border-radius:50px;
    text-align:center;
    font-size:30px;
    box-shadow: 2px 2px 3px #999;
    z-index:100;
}
.my-float {
    margin-top:16px;
}
.btn.btn-orange {
  display: inline-block;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 10px;
  background-color: #ffffff;
  color: #F64032;
  -webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.05);
  border: 0px solid #F64032;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  border-radius: 10px;
  border-radius: 0;
}