/* -------------------------------------------------------------
  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
  By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets

  List of CSS3 Sass Mixins File to be @imported and @included as you need

  The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
  ENDING css files

  note: All CSS3 Properties are being supported by Safari 5
  more info: http://www.findmebyip.com/litmus/#css3-properties

------------------------------------------------------------- */
/* * Remove text-shadow in selection highlight: * https://twitter.com/miketaylr/status/12228805301 * * Vendor-prefixed and regular ::selection selectors cannot be combined: * https://stackoverflow.com/a/16982510/7133471 * * Customize the background color to match your design. */
@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600");
.section-padding {
  padding: 30px 0;
}

@media only screen and (max-width: 991px) {
  .section-padding {
    padding: 80px 0;
  }
}

@media only screen and (max-width: 767px) {
  .section-padding {
    padding: 60px 0;
  }
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
}

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

a:hover,
a:focus {
  color: #333;
  text-decoration: none;
}

/* * A better looking default horizontal rule */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/* * Remove the gap between audio, canvas, iframes, * images, videos and the bottom of their containers: * https://github.com/h5bp/html5-boilerplate/issues/440 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/* * Remove default fieldset styles. */
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/* * Allow only vertical resizing of textareas. */
textarea {
  resize: vertical;
}

p {
  line-height: 1.6;
  margin: 0 0 20px 0;
}

.mr10 {
  margin-right: 10px;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-weight: 600;
  color: #333;
  font-family: "Poppins", sans-serif !important;
}

img {
  max-width: 100%;
  height: auto;
}

.mb-20 {
  margin-bottom: 20px !important;
}

/* =========================================================
        Header STYLE 
============================================================ */
.header-section {
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
}

@media only screen and (max-width: 767px) {
  .header-section {
    position: relative;
  }
}

.header-section .top-bar {
  min-height: 60px;
  line-height: 60px;
  background-color: #092a48;
}

@media only screen and (max-width: 991px) {
  .header-section .top-bar {
    min-height: 50px;
    line-height: 50px;
  }
}

@media only screen and (max-width: 767px) {
  .header-section .top-bar {
    text-align: center;
    min-height: auto;
    line-height: 35px;
    padding: 5px 0;
  }
}

@media only screen and (max-width: 767px) {
  .header-section .top-bar {
    padding: 10px 0;
  }
}

.header-section .top-bar .header-left-bar .contact-wrapper {
  display: inline-block;
}

.header-section .top-bar .header-left-bar .contact-wrapper li {
  font-size: 14px;
  display: inline-block;
  color: #9daab8;
  margin-right: 30px;
}

@media only screen and (max-width: 1199px) {
  .header-section .top-bar .header-left-bar .contact-wrapper li {
    font-size: 15px;
  }
}

@media only screen and (max-width: 479px) {
  .header-section .top-bar .header-left-bar .contact-wrapper li {
    display: block;
    margin: 0;
    line-height: 30px;
  }
}

.header-section .top-bar .header-left-bar .contact-wrapper li:last-child {
  margin-right: 0;
}

.header-section .top-bar .header-left-bar .contact-wrapper li i {
  font-size: 20px;
  color: #48c7ec;
  vertical-align: middle;
  margin-right: 5px;
}

@media only screen and (max-width: 767px) {
  .header-section .top-bar .header-right-bar {
    text-align: center;
  }
}

.header-section .top-bar .header-right-bar .language {
  position: relative;
  display: inline-block;
  margin-right: 15px;
  z-index: 9;
}

.header-section .top-bar .header-right-bar .language .dropbar {
  color: #48c7ec;
  text-transform: uppercase;
  text-align: center;
}

.header-section .top-bar .header-right-bar .language .dropbar i {
  font-size: 20px;
  margin-right: 10px;
  vertical-align: middle;
}

.header-section .top-bar .header-right-bar .language .dropbar.closed .title::after {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

.header-section .top-bar .header-right-bar .language .dropbar.closed .dropbar-menu {
  margin-top: 0px;
}

.header-section .top-bar .header-right-bar .language .dropbar.closed .dropbar-menu li {
  height: 0px;
}

.header-section .top-bar .header-right-bar .language .dropbar .title {
  cursor: pointer;
  display: inline-block;
}

.header-section .top-bar .header-right-bar .language .dropbar .title::after {
  content: "\f107";
  font-family: "FontAwesome";
  position: absolute;
  right: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.header-section .top-bar .header-right-bar .language .dropbar .title img {
  margin-right: 8px;
}

.header-section .top-bar .header-right-bar .language .dropbar .dropbar-menu {
  position: relative;
  overflow: hidden;
  max-height: 200px;
  width: 130px;
  text-align: center;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-box-sizing: "border-box";
  box-sizing: "border-box";
}

.header-section .top-bar .header-right-bar .language .dropbar .dropbar-menu ul {
  position: absolute;
  top: 0;
  width: 100%;
  border: 1px solid #085370;
}

.header-section .top-bar .header-right-bar .language .dropbar .dropbar-menu ul li {
  width: 100%;
  height: 40px;
  line-height: 40px;
  border-bottom: 1px solid #085370;
  padding: 0 12px;
  vertical-align: top;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: margin-top 0.5s, height 0.5s;
  transition: margin-top 0.5s, height 0.5s;
}

.header-section .top-bar .header-right-bar .language .dropbar .dropbar-menu ul li:hover {
  background-color: #D9E1E4;
  color: #343C3F;
}

.header-section .top-bar .header-right-bar .language .dropbar .dropbar-menu ul li:last-child {
  border: 0;
}

.header-section .top-bar .header-right-bar .language .dropbar .dropbar-menu ul li img {
  margin-right: 8px;
}

.header-section .top-bar .header-right-bar .social-icon li {
  display: inline-block;
  margin-right: 15px;
}

.header-section .top-bar .header-right-bar .social-icon li:last-child {
  margin-right: 0;
}

.header-section .top-bar .header-right-bar .social-icon li i {
  font-size: 16px;
  color: #9daab8;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.header-section .top-bar .header-right-bar .social-icon li i:hover {
  color: #48c7ec;
}

.header-section .top-bar .contact-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 991px) {
  .header-section .top-bar .contact-bar {
    display: block;
  }
}

.header-section .top-bar .contact-bar li {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media only screen and (max-width: 991px) {
  .header-section .top-bar .contact-bar li {
    float: left;
    width: 50%;
    margin: 12px 0;
  }
}

@media only screen and (max-width: 510px) {
  .header-section .top-bar .contact-bar li {
    width: 100%;
    margin: 5px 0;
  }
}

.header-section .top-bar .contact-bar li .caption {
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: #48c7ec;
  border-radius: 50%;
  float: left;
  text-align: center;
  margin-right: 12px;
}

@media only screen and (max-width: 1199px) {
  .header-section .top-bar .contact-bar li .caption {
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
  .header-section .top-bar .contact-bar li .caption img {
    width: 15px;
  }
}

@media only screen and (max-width: 510px) {
  .header-section .top-bar .contact-bar li .caption {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
  .header-section .top-bar .contact-bar li .caption img {
    width: 10px;
  }
}

.header-section .top-bar .contact-bar li h4 {
  font-size: 20px;
  font-weight: 500;
  color: #fcfeff;
  margin: 0;
}

@media only screen and (max-width: 510px) {
  .header-section .top-bar .contact-bar li h4 {
    font-size: 18px;
  }
}

.header-section .top-bar .contact-bar li .time {
  font-size: 14px;
  color: #9a9a9a;
}

@media only screen and (max-width: 510px) {
  .header-section .top-bar .contact-bar li .time {
    font-size: 12px;
  }
}

.header-section .middle-wrapper {
  background: #FFFFFF;
  padding: 25px 0;
}

@media only screen and (max-width: 991px) {
  .header-section .middle-wrapper {
    padding: 15px 0 7px;
  }
}

@media only screen and (max-width: 767px) {
  .header-section .middle-wrapper {
    margin: 0 -15px;
    padding: 15px 15px;
  }
}

.header-section .middle-wrapper .header-left-bar .navbar-brand {
  margin: 0 0 0 30px;
  padding: 0;
}

@media only screen and (max-width: 991px) {
  .header-section .middle-wrapper .header-left-bar .navbar-brand {
    margin: 4px 0 0 15px;
    height: auto;
  }
}

@media only screen and (max-width: 767px) {
  .header-section .middle-wrapper .header-left-bar .navbar-brand {
    float: none !important;
    display: block;
    margin: 0 0 20px;
  }
}

.header-section .middle-wrapper .header-left-bar .navbar-brand img {
  max-width: 100%;
}

@media only screen and (max-width: 767px) {
  .header-section .middle-wrapper .header-left-bar .navbar-brand img {
    margin: 0 auto;
    width: 200px;
  }
}

.header-section .middle-wrapper .header-right-bar .finding-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 479px) {
  .header-section .middle-wrapper .header-right-bar .finding-section {
    display: block;
  }
}

.header-section .middle-wrapper .header-right-bar .finding-section li {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media only screen and (max-width: 479px) {
  .header-section .middle-wrapper .header-right-bar .finding-section li {
    margin-bottom: 20px;
  }
}

.header-section .middle-wrapper .header-right-bar .finding-section li:last-child {
  margin-bottom: 0;
}

.header-section .middle-wrapper .header-right-bar .finding-section li i {
  font-size: 20px;
  width: 42px;
  height: 42px;
  line-height: 42px;
  color: #FFFFFF;
  background: #48c7ec;
  border-radius: 50%;
  text-align: center;
  float: left;
  -webkit-box-shadow: 0 0 10px 0 #48c7ec;
          box-shadow: 0 0 10px 0 #48c7ec;
  margin: 3px 15px 0 0;
}

@media (min-width: 768px) and (max-width: 991px) {
  .header-section .middle-wrapper .header-right-bar .finding-section li i {
    width: 30px;
    height: 30px;
    line-height: 30px;
    margin: 3px 10px 0 0;
  }
}

@media only screen and (max-width: 767px) {
  .header-section .middle-wrapper .header-right-bar .finding-section li i {
    font-size: 16px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    margin: 3px 10px 0 0;
  }
}

.header-section .middle-wrapper .header-right-bar .finding-section li h5 {
  font-size: 18px;
  font-weight: 500;
  color: #031633;
  margin-bottom: 3px;
}

@media only screen and (max-width: 991px) {
  .header-section .middle-wrapper .header-right-bar .finding-section li h5 {
    font-size: 16px;
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 767px) {
  .header-section .middle-wrapper .header-right-bar .finding-section li h5 {
    font-size: 15px;
    margin-bottom: 0;
  }
}

.header-section .middle-wrapper .header-right-bar .finding-section li .location {
  font-size: 14px;
  color: #666666;
}

@media (min-width: 768px) and (max-width: 991px) {
  .header-section .middle-wrapper .header-right-bar .finding-section li .location {
    word-break: break-all;
  }
}

@media only screen and (max-width: 767px) {
  .header-section .middle-wrapper .header-right-bar .finding-section li .location {
    font-size: 12px;
  }
}

.header-section .navbar {
  border: 0;
  border-radius: 0;
  margin: 0;
  min-height: auto;
  background-color: #48c7ec;
  z-index: 998;
}

.header-section .navbar .navbar-header {
  position: relative;
  z-index: 5;
}

.header-section .navbar .navbar-header .navbar-brand {
  padding: 0;
  margin: 0;
}

.header-section .navbar .navbar-header .navbar-brand img {
  padding: 35px 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.header-section .navbar.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  -webkit-box-shadow: 0 0 20px 0px rgba(64, 64, 64, 0.16);
          box-shadow: 0 0 20px 0px rgba(64, 64, 64, 0.16);
  padding: 0;
  z-index: 998;
}

@media (min-width: 768px) and (max-width: 991px) {
  .header-section .navbar.sticky {
    margin-top: -88px;
  }
}

.header-section .navbar.sticky .navbar-header .navbar-brand img {
  padding: 20px 0;
}

.header-section .navbar.sticky .navbar-collapse {
  width: 1140px;
  margin: 0 auto;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .header-section .navbar.sticky .navbar-collapse {
    width: auto;
  }
}

.header-section .navbar.sticky .navbar-collapse .navbar-nav li:hover .dropdown {
  z-index: 9;
}

.header-section .navbar.sticky .navbar-collapse .navbar-nav li .dropdown {
  z-index: -1;
}

.header-section .navbar.sticky .navbar-collapse .navbar-nav li .cart::before {
  top: 12px;
  font-size: 10px;
}

.header-section .navbar.sticky .navbar-collapse .navbar-nav li .text {
  top: 10px;
}

.header-section .navbar .navbar-collapse {
  padding: 0;
}

.header-section .navbar .navbar-collapse .navbar-nav {
  margin: 0 30px;
}

.header-section .navbar .navbar-collapse .navbar-nav li {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  margin-right: 28px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .header-section .navbar .navbar-collapse .navbar-nav li {
    margin-right: 25px;
  }
}

.header-section .navbar .navbar-collapse .navbar-nav li:last-child {
  margin-right: 0;
}

.header-section .navbar .navbar-collapse .navbar-nav li img {
  margin-right: 8px;
}

.header-section .navbar .navbar-collapse .navbar-nav li a,
.header-section .navbar .navbar-collapse .navbar-nav li .search-view,
.header-section .navbar .navbar-collapse .navbar-nav li .cart-icon {
  color: #FFFFFF;
  padding: 0;
  line-height: 55px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.header-section .navbar .navbar-collapse .navbar-nav li a:hover,
.header-section .navbar .navbar-collapse .navbar-nav li .search-view:hover,
.header-section .navbar .navbar-collapse .navbar-nav li .cart-icon:hover {
  color: #313131;
  background-color: transparent;
}

.header-section .navbar .navbar-collapse .navbar-nav li .cart-icon i {
  color: #222222;
}

.header-section .navbar .navbar-collapse .navbar-nav li .cart-icon i:hover {
  color: #48c7ec;
}

.header-section .navbar .navbar-collapse .navbar-nav li .search-view {
  cursor: pointer;
}

.header-section .navbar .navbar-collapse .navbar-nav li.active a {
  color: #313131;
  background-color: transparent;
}

.header-section .navbar .navbar-collapse .navbar-nav li.dropdown:hover .dropdown-menu {
  top: 55px;
  visibility: visible;
  opacity: 1;
  z-index: 1;
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
  -webkit-transition-delay: 0s, 0s, 0.3s;
          transition-delay: 0s, 0s, 0.3s;
}

.header-section .navbar .navbar-collapse .navbar-nav li .dropdown-menu {
  top: 55px;
  left: -25px;
  min-width: 200px;
  background-color: #FFFFFF;
  padding: 10px 0;
  display: block;
  visibility: hidden;
  opacity: 0;
  border: 0;
  -webkit-transform: translateY(-2em);
          transform: translateY(-2em);
  z-index: -1;
  -webkit-transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
  transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
}

.header-section .navbar .navbar-collapse .navbar-nav li .dropdown-menu li {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid rgba(97, 109, 126, 0.12);
  margin: 0 25px;
  padding: 0 5px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.header-section .navbar .navbar-collapse .navbar-nav li .dropdown-menu li.active a {
  color: #48c7ec !important;
}

.header-section .navbar .navbar-collapse .navbar-nav li .dropdown-menu li:hover {
  border-bottom: 1px solid transparent;
}

.header-section .navbar .navbar-collapse .navbar-nav li .dropdown-menu li:hover::before {
  width: 100%;
}

.header-section .navbar .navbar-collapse .navbar-nav li .dropdown-menu li::before {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  left: 0;
  bottom: 0;
  background: #48c7ec;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.header-section .navbar .navbar-collapse .navbar-nav li .dropdown-menu li:last-child {
  border-bottom: 0;
}

.header-section .navbar .navbar-collapse .navbar-nav li .dropdown-menu li:last-child::before {
  display: none;
}

.header-section .navbar .navbar-collapse .navbar-nav li .dropdown-menu li a {
  color: #616d7e !important;
  line-height: 45px;
  font-weight: 500;
}

.header-section .navbar .navbar-collapse .navbar-nav li .dropdown-menu li a:hover {
  color: #48c7ec !important;
}

.header-section .navbar .navbar-collapse .navbar-nav li .dropdown-menu li:hover .sub-dropdown {
  opacity: 1;
  right: -136%;
}

.header-section .navbar .navbar-collapse .navbar-nav li .dropdown-menu .sub-dropdown {
  position: absolute;
  top: 0;
  right: -120%;
  width: 180px;
  background-color: #FFFFFF;
  opacity: 0;
  padding: 10px 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.header-section .navbar .navbar-collapse .navbar-nav li #search-bar {
  background: rgba(9, 42, 72, 0.98);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  visibility: hidden;
  opacity: 0;
  z-index: 99;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.header-section .navbar .navbar-collapse .navbar-nav li #search-bar.active {
  visibility: visible;
  opacity: 1;
}

.header-section .navbar .navbar-collapse .navbar-nav li #search-bar.active .form-bar .form-group {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.header-section .navbar .navbar-collapse .navbar-nav li #search-bar .close-bar {
  width: 100%;
  height: 100%;
  text-align: right;
  padding-right: 60px;
  padding-top: 20px;
}

.header-section .navbar .navbar-collapse .navbar-nav li #search-bar .close-bar i {
  color: #FFFFFF;
  font-size: 22px;
}

.header-section .navbar .navbar-collapse .navbar-nav li #search-bar .form-bar {
  position: relative;
  width: 50%;
  top: 50%;
  margin: -50px auto;
}

.header-section .navbar .navbar-collapse .navbar-nav li #search-bar .form-bar .form-group {
  margin: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
}

.header-section .navbar .navbar-collapse .navbar-nav li #search-bar .form-bar .form-group .form-control {
  font-size: 32px;
  color: #FFFFFF;
  background-color: transparent;
  border: 0;
  border-bottom: 3px solid #FFFFFF;
  -webkit-box-shadow: none;
          box-shadow: none;
  height: 50px;
  padding: 0;
}

.header-section .navbar .navbar-collapse .navbar-nav li #search-bar .form-bar .form-group .form-control::-webkit-input-placeholder {
  color: #FFFFFF;
}

.header-section .navbar .navbar-collapse .navbar-nav li #search-bar .form-bar .form-group .form-control:-ms-input-placeholder {
  color: #FFFFFF;
}

.header-section .navbar .navbar-collapse .navbar-nav li #search-bar .form-bar .form-group .form-control::-ms-input-placeholder {
  color: #FFFFFF;
}

.header-section .navbar .navbar-collapse .navbar-nav li #search-bar .form-bar .form-group .form-control::placeholder {
  color: #FFFFFF;
}

.header-section .navbar .navbar-collapse .navbar-nav li #search-bar .form-bar input[placeholder],
.header-section .navbar .navbar-collapse .navbar-nav li #search-bar .form-bar [placeholder],
.header-section .navbar .navbar-collapse .navbar-nav li #search-bar .form-bar *[placeholder] {
  color: #FFFFFF !important;
}

.header-section .navbar .navbar-collapse .navbar-nav li .cart-wrapper {
  cursor: pointer;
}

.header-section .navbar .navbar-collapse .navbar-nav li .cart-wrapper.open .cart-item {
  display: block;
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  z-index: 5;
}

.header-section .navbar .navbar-collapse .navbar-nav li .text {
  width: 20px;
  height: 20px;
  color: #FFFFFF;
  background-color: #313131;
  border-radius: 50%;
  padding: 4px 6px;
  position: absolute;
  top: 25px;
  right: -11px;
  line-height: 11px;
  text-align: center;
  font-size: 10px;
}

.header-section .navbar .navbar-collapse .navbar-nav li .cart-item {
  position: absolute;
  top: 55px;
  right: 0;
  background-color: #FFFFFF;
  border: 2px solid #48c7ec;
  padding: 15px 15px 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  visibility: hidden;
  opacity: 0;
  z-index: -9999;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

@media (min-width: 992px) and (max-width: 1250px) {
  .header-section .navbar .navbar-collapse .navbar-nav li .cart-item {
    right: 0;
  }
}

.header-section .navbar .navbar-collapse .navbar-nav li .cart-item ul {
  width: 300px;
}

.header-section .navbar .navbar-collapse .navbar-nav li .cart-item ul li {
  line-height: 30px;
  padding: 10px 0;
  border-bottom: 1px solid #48c7ec;
}

.header-section .navbar .navbar-collapse .navbar-nav li .cart-item ul li img {
  width: 75px;
  float: left;
}

.header-section .navbar .navbar-collapse .navbar-nav li .cart-item ul li .content {
  color: #313131;
  padding-left: 15px;
}

.header-section .navbar .navbar-collapse .navbar-nav li .cart-item ul li .content h5 {
  font-weight: 600;
  color: #313131;
  margin-bottom: 5px;
}

.header-section .navbar .navbar-collapse .navbar-nav li .cart-item ul li .content .rate {
  color: #48c7ec;
  display: block;
}

.header-section .navbar .navbar-collapse .navbar-nav li .cart-item ul li .content .option i {
  margin: 0;
}

.header-section .navbar .navbar-collapse .navbar-nav li .cart-item .amount {
  color: #333;
  line-height: 30px;
  padding: 10px 0 30px;
}

.header-section .navbar .navbar-collapse .navbar-nav li .cart-item .btn {
  border-radius: 8px;
  width: 100%;
  font-size: 16px;
  padding: 7px 44px;
  margin-bottom: 25px;
}

.header-section .navbar .navbar-collapse .navbar-nav li .cart-item .btn::before {
  display: none;
}

.header-section .navbar .navbar-collapse .navbar-nav li .cart-item .btn:hover {
  color: #313131;
}

/* =========================================================
        HomePageOne-STYLE 
============================================================ */
.wrapper {
  /* =========================================================
        Right-Choice-Section STYLE 
============================================================ */
  /*----------------------------------------*/
  /*   Slider section
/*----------------------------------------*/
}

.wrapper .header-section .top-bar {
  min-height: 65px;
  line-height: 65px;
}

@media only screen and (max-width: 991px) {
  .wrapper .header-section .top-bar {
    line-height: 35px;
    padding: 10px 0 20px;
  }
}

@media only screen and (max-width: 767px) {
  .wrapper .header-section .top-bar {
    line-height: 35px;
    padding: 10px 0;
  }
}

@media only screen and (max-width: 991px) {
  .wrapper .header-section .top-bar .header-left-bar {
    text-align: center;
  }
}

.wrapper .header-section .top-bar .header-left-bar .contact-wrapper li {
  font-size: 16px;
  color: #FFFFFF;
}

@media only screen and (max-width: 767px) {
  .wrapper .header-section .top-bar .header-left-bar .contact-wrapper li {
    font-size: 14px;
  }
}

.wrapper .header-section .top-bar .header-right-bar {
  margin-bottom: -20px;
}

@media only screen and (max-width: 991px) {
  .wrapper .header-section .top-bar .header-right-bar {
    text-align: center;
  }
}

@media only screen and (max-width: 767px) {
  .wrapper .header-section .top-bar .header-right-bar {
    margin-bottom: -10px;
  }
}

.wrapper .header-section .top-bar .header-right-bar .social-icon {
  display: inline-block;
  vertical-align: top;
}

@media only screen and (max-width: 991px) {
  .wrapper .header-section .top-bar .header-right-bar .social-icon {
    float: none !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .wrapper .header-section .top-bar .header-right-bar .social-icon li {
    margin-right: 10px;
  }
}

.wrapper .header-section .top-bar .header-right-bar .social-icon li:last-child {
  margin-right: 0;
}

.wrapper .header-section .top-bar .header-right-bar .social-icon li i {
  color: #FFFFFF;
}

.wrapper .header-section .top-bar .header-right-bar .social-icon li i:hover {
  color: #48c7ec;
}

.wrapper .header-section .navbar {
  background-color: #FFFFFF;
}

.wrapper .header-section .navbar.sticky .navbar-inner {
  width: auto;
}

.wrapper .header-section .navbar.sticky .navbar-inner .navbar-collapse {
  width: auto;
}

.wrapper .header-section .navbar .navbar-inner {
  padding: 0 30px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.wrapper .header-section .navbar .navbar-inner .navbar-header .navbar-brand img {
  padding: 22px 0;
}

.wrapper .header-section .navbar .navbar-inner .navbar-collapse {
  margin: 0;
}

.wrapper .header-section .navbar .navbar-inner .navbar-collapse .navbar-nav {
  margin: 0;
}

.wrapper .header-section .navbar .navbar-inner .navbar-collapse .navbar-nav li a,
.wrapper .header-section .navbar .navbar-inner .navbar-collapse .navbar-nav li .search-view,
.wrapper .header-section .navbar .navbar-inner .navbar-collapse .navbar-nav li .cart-icon {
  color: #222222;
  line-height: 95px;
}

.wrapper .header-section .navbar .navbar-inner .navbar-collapse .navbar-nav li.active a, .wrapper .header-section .navbar .navbar-inner .navbar-collapse .navbar-nav li:hover a {
  color: #48c7ec;
}

.wrapper .header-section .navbar .navbar-inner .navbar-collapse .navbar-nav li .dropdown-menu,
.wrapper .header-section .navbar .navbar-inner .navbar-collapse .navbar-nav li.dropdown:hover .dropdown-menu,
.wrapper .header-section .navbar .navbar-inner .navbar-collapse .navbar-nav li .cart-item {
  top: 95px;
}

.wrapper .header-section .navbar .navbar-inner .navbar-collapse .navbar-nav li .dropdown-menu li a {
  line-height: 45px;
}

.wrapper .slider-section .tp-banner-container .tp-banner .slide-content-box h1 {
  font-size: 55px;
  font-weight: 600;
  line-height: 62px;
  color: #FFFFFF;
  margin: 14px 0 27px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .wrapper .slider-section .tp-banner-container .tp-banner .slide-content-box h1 {
    font-size: 40px;
    line-height: 60px;
  }
}

@media only screen and (max-width: 991px) {
  .wrapper .slider-section .tp-banner-container .tp-banner .slide-content-box h1 {
    font-size: 30px;
    line-height: 50px;
  }
}

@media only screen and (max-width: 767px) {
  .wrapper .slider-section .tp-banner-container .tp-banner .slide-content-box h1 {
    font-size: 25px;
    line-height: 40px;
    margin: 0 0 9px;
  }
}

.wrapper .slider-section .tp-banner-container .tp-banner .slide-content-box p {
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
  color: #FFFFFF;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .wrapper .slider-section .tp-banner-container .tp-banner .slide-content-box p {
    font-size: 18px;
    line-height: 30px;
  }
}

@media only screen and (max-width: 991px) {
  .wrapper .slider-section .tp-banner-container .tp-banner .slide-content-box p {
    font-size: 16px;
    line-height: 27px;
  }
}

@media only screen and (max-width: 767px) {
  .wrapper .slider-section .tp-banner-container .tp-banner .slide-content-box p {
    font-size: 14px;
    line-height: 24px;
    word-break: break-all;
    margin: 0 0 10px;
  }
}

.wrapper .slider-section .tp-banner-container .tp-banner .button {
  margin-top: 53px;
}

@media only screen and (max-width: 767px) {
  .wrapper .slider-section .tp-banner-container .tp-banner .button {
    margin-top: 40px;
  }
}

.wrapper .slider-section .tp-banner-container .tp-banner .button .btn {
  border-radius: 0;
}

.wrapper .slider-section .tp-banner-container .tp-banner .button .btn::before {
  border-radius: 0;
}

.wrapper .right-choice-section .section-wrapper {
  margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
  .wrapper .right-choice-section .section-wrapper {
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .wrapper .right-choice-section {
    padding-bottom: 30px;
  }
}

.wrapper .right-choice-section .section-title {
  margin-bottom: 65px;
}

@media only screen and (max-width: 767px) {
  .wrapper .right-choice-section .section-title {
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 479px) {
  .wrapper .right-choice-section .section-title {
    margin-bottom: 30px;
  }
}

.wrapper .right-choice-section .section-wrapper {
  margin-bottom: 30px;
}

.wrapper .right-choice-section .section-wrapper .caption {
  position: relative;
}

.wrapper .right-choice-section .section-wrapper .caption:hover .hover-view {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.wrapper .right-choice-section .section-wrapper .caption:hover .hover .hover-one,
.wrapper .right-choice-section .section-wrapper .caption:hover .hover .hover-two,
.wrapper .right-choice-section .section-wrapper .caption:hover .hover .hover-three,
.wrapper .right-choice-section .section-wrapper .caption:hover .hover .hover-four {
  opacity: 1;
  -webkit-transform: translate(0, 0) scale(1);
  transform: translate(0, 0) scale(1);
}

.wrapper .right-choice-section .section-wrapper .caption img {
  width: 100%;
}

.wrapper .right-choice-section .section-wrapper .caption .hover-view {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 150px;
  font-size: 16px;
  line-height: 26px;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
  padding: 8px 0;
  margin: -24px auto 0;
  opacity: 0;
  z-index: 5;
  -webkit-transform: translateY(80px);
          transform: translateY(80px);
  -webkit-transition-delay: .1s;
          transition-delay: .1s;
}

@media only screen and (max-width: 991px) {
  .wrapper .right-choice-section .section-wrapper .caption .hover-view {
    width: 100px;
    font-size: 14px;
    padding: 2px 0;
    margin: -17px auto 0;
  }
}

.wrapper .right-choice-section .section-wrapper .caption .hover-view:hover {
  color: #313131;
}

.wrapper .right-choice-section .section-wrapper .caption .hover .hover-one,
.wrapper .right-choice-section .section-wrapper .caption .hover .hover-two,
.wrapper .right-choice-section .section-wrapper .caption .hover .hover-three,
.wrapper .right-choice-section .section-wrapper .caption .hover .hover-four {
  position: absolute;
  height: 50%;
  width: 50%;
  background: #48c7ec;
  opacity: 0;
  z-index: 2;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}

.wrapper .right-choice-section .section-wrapper .caption .hover .hover-one {
  bottom: 0;
  left: 0;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}

.wrapper .right-choice-section .section-wrapper .caption .hover .hover-two {
  top: 0;
  left: 0;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}

.wrapper .right-choice-section .section-wrapper .caption .hover .hover-three {
  top: 0;
  right: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
}

.wrapper .right-choice-section .section-wrapper .caption .hover .hover-four {
  bottom: 0;
  right: 0;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}

.wrapper .right-choice-section .section-wrapper .content {
  -webkit-box-shadow: 0 0 15px #e2e2e2;
          box-shadow: 0 0 15px #e2e2e2;
  padding: 15px 30px 12px;
}

@media only screen and (max-width: 991px) {
  .wrapper .right-choice-section .section-wrapper .content {
    padding: 15px 15px 12px;
  }
}

.wrapper .right-choice-section .section-wrapper .content h4 {
  font-size: 24px;
  font-weight: 400;
  line-height: 26px;
  color: #222222;
  margin: 14px 0;
}

@media only screen and (max-width: 1199px) {
  .wrapper .right-choice-section .section-wrapper .content h4 {
    font-size: 22px;
  }
}

@media only screen and (max-width: 991px) {
  .wrapper .right-choice-section .section-wrapper .content h4 {
    font-size: 20px;
  }
}

.wrapper .right-choice-section .section-wrapper .content p {
  font-size: 14px;
  line-height: 24px;
  color: #999999;
}

.wrapper .intro-content {
  position: relative;
  z-index: 1;
}

.wrapper .intro-content::after {
  background: rgba(27, 48, 83, 0.3);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}

.wrapper .slider-content {
  position: absolute;
  right: 0;
  text-align: left;
  top: 50%;
  z-index: 3;
  left: 0;
  margin: 0 auto;
  margin-top: -170px;
}

.wrapper .layer-1-2 {
  margin: 20px 0;
}

.wrapper .layer-1-1 p {
  color: #fff;
  font-size: 19px;
  letter-spacing: 0.60px;
  line-height: 30px;
  max-width: 700px;
}

.wrapper .layer-1-2 h1 {
  color: #fff;
  font-size: 50px;
  font-weight: 700;
  line-height: 60px;
  text-transform: uppercase;
  max-width: 880px;
  letter-spacing: 2px;
}

.wrapper .slider-content .align-center {
  text-align: center;
}

.wrapper .slider-content .align-center h1 {
  max-width: 100%;
  padding: 0 100px;
}

.wrapper .slider-content .align-center p {
  max-width: 100%;
  padding: 0 130px;
}

.wrapper .ped-btn {
  border: 1px solid #48c7ec;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  margin-top: 20px;
  padding: 12px 10px;
  text-align: center;
  text-transform: uppercase;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  z-index: 222;
  background: #48c7ec;
  width: 175px;
  border-radius: 3px;
}

.wrapper .ped-btn:hover {
  color: #fff;
  background: #000;
  border: 1px solid #000;
  text-decoration: none;
}

.wrapper .ped-btn.right-btn {
  margin-left: 15px;
  background: #000;
  border: 1px solid #000;
}

.wrapper .ped-btn.right-btn:hover {
  background: #000;
  border: 1px solid #000;
}

.wrapper .ped-btn.left-btn:hover {
  background: #252525;
  border: 1px solid #252525;
}

.wrapper .layer-1-2 .color {
  color: #000;
  font-weight: 900;
}

.wrapper .intro-carousel .owl-nav .owl-prev,
.wrapper .intro-carousel .owl-nav .owl-next {
  color: #fff;
  font-size: 18px;
  margin-top: -20px;
  position: absolute;
  top: 50%;
  text-align: center;
  line-height: 39px;
  opacity: 0;
  border: 1px solid #fff;
  width: 40px;
  height: 40px;
  border-radius: 2px;
  padding-top:10px;
}

.wrapper .intro-carousel.owl-nav.owl-prev {
  left: 10%;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  -ms-transition: 0.4s;
}

.wrapper .intro-carousel .owl-nav .owl-next {
  right: 10%;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  -ms-transition: 0.4s;
  padding-top:10px;
}

.wrapper .intro-carousel:hover .owl-nav .owl-next {
  right: 2%;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  -ms-transition: 0.4s;
  opacity: 1;
}

.wrapper .intro-carousel:hover .owl-nav .owl-prev {
  left: 2%;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  -ms-transition: 0.4s;
  opacity: 1;
}

.wrapper .intro-carousel:hover .owl-nav .owl-next:hover,
.wrapper .intro-carousel:hover .owl-nav .owl-prev:hover {
  color: #fff;
  background: #48c7ec;
  border: 1px solid #48c7ec;
}

.wrapper .intro-carousel .owl-item .layer-1-2 {
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  opacity: 0;
  -webkit-transition: all 1s ease-in-out 0.3s;
  transition: all 1s ease-in-out 0.3s;
}

.wrapper .intro-carousel .owl-item .layer-1-1 {
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  opacity: 0;
  -webkit-transition: all 1s ease-in-out 1s;
  transition: all 1s ease-in-out 1s;
}

.wrapper .intro-carousel .owl-item .layer-1-3 {
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  opacity: 0;
  -webkit-transition: all 1s ease-in-out 1.5s;
  transition: all 1s ease-in-out 1.5s;
}

.wrapper .intro-carousel .owl-item.active .layer-1-2,
.wrapper .intro-carousel .owl-item.active .layer-1-1,
.wrapper .intro-carousel .owl-item.active .layer-1-3 {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.wrapper .intro-carousel .owl-item.active .slider-images img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: 10s;
  transition: 10s;
}

@media (min-width: 768px) and (max-width: 991px) {
  .wrapper .slider-content {
    margin-top: -90px;
  }
  .wrapper .layer-1-2 h1 {
    font-size: 26px;
    line-height: 32px;
    max-width: 550px;
  }
  .wrapper .layer-1-1 p {
    font-size: 17px;
    line-height: 24px;
    max-width: 570px;
  }
}

@media (max-width: 767px) {
  .wrapper .slider-content {
    margin-top: -90px;
  }
  .wrapper .slider-3 .slider-content {
    margin-top: -50px;
  }
  .wrapper .layer-1-2 {
    margin: 5px 0;
  }
  .wrapper .layer-1-2 h1 {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 10px;
    letter-spacing: 0px;
    padding: 0 !important;
  }
  .wrapper .layer-1-1 p {
    font-size: 13px;
    letter-spacing: 0px;
    line-height: 20px;
    padding: 0 !important;
  }
}

@media (max-width: 450px) {
  .wrapper .layer-1-3 {
    display: none;
  }
  .wrapper .slider-content {
    margin-top: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

.wrapper .about-Company-Section {
  background: url(../images/about-company-bg-2.jpg) no-repeat center top;
  background-size: cover;
}

.wrapper .about-Company-Section .section-title {
  margin-bottom: 112px;
}

@media only screen and (max-width: 991px) {
  .wrapper .about-Company-Section .section-title {
    margin-bottom: 50px;
  }
}

@media only screen and (max-width: 479px) {
  .wrapper .about-Company-Section .section-title {
    margin-bottom: 30px;
  }
}

.wrapper .about-Company-Section .content-wrapper {
  margin-right: 60px;
  margin-bottom: 15px;
}

.wrapper .about-Company-Section .content-wrapper h3 {
  font-size: 26px;
  font-weight: 500;
  line-height: 38px;
  color: #222222;
  margin-bottom: 30px;
}

@media only screen and (max-width: 991px) {
  .wrapper .about-Company-Section .content-wrapper {
    margin-right: 0;
  }
}

.wrapper .about-Company-Section .content-wrapper p {
  color: #848484;
}

.wrapper .about-Company-Section .content-wrapper p:last-child {
  margin: 0;
}

.wrapper .about-Company-Section .content-wrapper .content {
  margin-bottom: 22px;
}

.wrapper .about-Company-Section .content-wrapper .content li .single-content {
  color: #848484;
}

.wrapper .btn-primary {
  position: relative;
  font-size: 16px;
  font-weight: 600;
  border: 0;
  border-radius: 5px;
  padding: 8px 25px;
  z-index: 5;
  overflow: hidden;
  background-color: #48c7ec;
  color: #FFFFFF;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.wrapper .btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  border-radius: 25px;
  -webkit-transform: translateX(-102%);
          transform: translateX(-102%);
  /*background-color: #3aaed0;*/
  background-color: #092a48;
  opacity: 0;
  -webkit-transform: scale(0.5, 1);
          transform: scale(0.5, 1);
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  border-radius: 5px;
  z-index: -1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.wrapper .btn-primary:hover::before {
  opacity: 1;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

@media only screen and (max-width: 767px) {
  .wrapper .btn-primary {
    font-size: 16px;
    padding: 6px 18px;
  }
}

@media only screen and (max-width: 479px) {
  .wrapper .btn-primary {
    font-size: 14px;
    padding: 2px 16px;
  }
}

.wrapper .btn-primary:hover,
.wrapper .btn-primary.focus,
.wrapper .btn-primary:focus,
.wrapper .btn-primary.active.focus,
.wrapper .btn-primary.active:focus,
.wrapper .btn-primary.active:hover,
.wrapper .btn-primary:active.focus,
.wrapper .btn-primary:active:focus,
.wrapper .btn-primary:active:hover,
.wrapper .open > .dropdown-toggle.btn-primary.focus,
.wrapper .open > .dropdown-toggle.btn-primary:focus,
.wrapper .open > .dropdown-toggle.btn-primary:hover {
  background-color: #48c7ec;
  color: #FFFFFF;
}

.wrapper .contact-form .form-group {
  position: relative;
  margin-bottom: 25px;
}

@media only screen and (max-width: 479px) {
  .wrapper .contact-form .form-group {
    margin-bottom: 10px;
  }
}

.wrapper .contact-form .form-group:last-child {
  margin-bottom: 0;
}

.wrapper .contact-form .form-group i {
  position: absolute;
  top: 12px;
  left: 0;
  font-size: 22px;
  color: #848484;
}

@media only screen and (max-width: 479px) {
  .wrapper .contact-form .form-group i {
    top: 14px;
    font-size: 18px;
  }
}

.wrapper .contact-form .form-group .form-control {
  font-size: 16px;
  font-weight: 300;
  line-height: 38px;
  color: #848484;
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid #848484;
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 22px 35px;
}

@media only screen and (max-width: 479px) {
  .wrapper .contact-form .form-group .form-control {
    font-size: 14px;
    padding: 22px;
  }
}

.wrapper .contact-form .form-group .form-control.form-message {
  padding: 5px 35px;
}

.wrapper .contact-form .form-group .btn {
  font-size: 18px;
  font-weight: 500;
  line-height: 38px;
  color: #e8f0f3;
  border-radius: 0;
  display: block;
  width: 100%;
  margin-top: 32px;
}

.wrapper .contact-form .form-group .btn:before {
  border-radius: 0;
}

@media only screen and (max-width: 479px) {
  .wrapper .contact-form .form-group .btn {
    font-size: 16px;
    margin-top: 20px;
  }
}

.wrapper .finance-service-section .section-title {
  margin-bottom: 40px;
}

.wrapper .finance-service-section a.link {
  font-weight: bold;
  color: #48c7ec;
  font-size: 20px;
}

.wrapper .finance-service-section .finance-wrapper .finance-wrapper {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #e7e8e8;
  border-bottom: 0;
  position: relative;
  margin-bottom: 30px;
}

.wrapper .finance-service-section .finance-wrapper .finance-wrapper h4 a {
  color: #000;
  font-size: 22px;
}

.wrapper .finance-service-section .finance-wrapper .finance-wrapper p {
  color: #8a8a8a;
  font-weight: 300;
}

.wrapper .finance-service-section .finance-wrapper .finance-wrapper:hover .wrapper-content {
  position: relative;
  z-index: 5;
}

.wrapper .finance-service-section .finance-wrapper .finance-wrapper:hover .wrapper-content h4 a {
  color: #FFFFFF;
}

.wrapper .finance-service-section .finance-wrapper .finance-wrapper:hover .wrapper-content h4 a:hover {
  color: #48c7ec;
}

.wrapper .finance-service-section .finance-wrapper .finance-wrapper:hover .wrapper-content p {
  color: #FFFFFF;
}

.wrapper .finance-service-section .finance-wrapper .finance-wrapper:hover .hover .hover-one,
.wrapper .finance-service-section .finance-wrapper .finance-wrapper:hover .hover .hover-two,
.wrapper .finance-service-section .finance-wrapper .finance-wrapper:hover .hover .hover-three,
.wrapper .finance-service-section .finance-wrapper .finance-wrapper:hover .hover .hover-four {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.wrapper .finance-service-section .finance-wrapper .finance-wrapper .icon {
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  margin: 30px auto 10px;
  position: relative;
  z-index: 99999;
  font-size: 30px;
}

.wrapper .finance-service-section .finance-wrapper .finance-wrapper .icon i {
  color: #48c7ec;
  z-index: 99999;
}

.wrapper .finance-service-section .finance-wrapper .finance-wrapper .wrapper-content {
  border-bottom: 4px solid #48c7ec;
}

.wrapper .finance-service-section .finance-wrapper .finance-wrapper .wrapper-content h4 {
  margin: 0 0 15px;
}

.wrapper .finance-service-section .finance-wrapper .finance-wrapper .wrapper-content p {
  padding: 0 35px 38px;
}

.wrapper .finance-service-section .finance-wrapper .finance-wrapper .hover .hover-one,
.wrapper .finance-service-section .finance-wrapper .finance-wrapper .hover .hover-two,
.wrapper .finance-service-section .finance-wrapper .finance-wrapper .hover .hover-three,
.wrapper .finance-service-section .finance-wrapper .finance-wrapper .hover .hover-four {
  position: absolute;
  left: 0;
  width: 100%;
  height: 25%;
  background: #092a48;
  opacity: 0;
  z-index: 1;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
}

.wrapper .finance-service-section .finance-wrapper .finance-wrapper .hover .hover-one {
  top: 0;
  -webkit-transition-delay: 0.25s;
  transition-delay: 0.25s;
}

.wrapper .finance-service-section .finance-wrapper .finance-wrapper .hover .hover-two {
  top: 25%;
  -webkit-transition-delay: 0.105s;
  transition-delay: 0.105s;
}

.wrapper .finance-service-section .finance-wrapper .finance-wrapper .hover .hover-three {
  top: 49%;
  -webkit-transition-delay: 0.105s;
  transition-delay: 0.105s;
}

.wrapper .finance-service-section .finance-wrapper .finance-wrapper .hover .hover-four {
  top: 74%;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.wrapper .news-section .link .btn,
.wrapper .project-section .link .btn {
  border-radius: 0;
}

.wrapper .news-section .link .btn:before,
.wrapper .project-section .link .btn:before {
  border-radius: 0;
}

/* =========================================================
        Counting-Section STYLE 
============================================================ */
.counting-section {
  background: url(../images/counter-bg.jpg) no-repeat center;
  background-size: cover;
  background-attachment: fixed;
}

@media only screen and (max-width: 991px) {
  .counting-section {
    padding-bottom: 50px;
  }
}

@media only screen and (max-width: 599px) {
  .counting-section {
    padding-bottom: 30px;
  }
}

@media only screen and (max-width: 479px) {
  .counting-section {
    background-attachment: inherit;
  }
}

.counting-section .counting-pusher {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 991px) {
  .counting-section .counting-pusher {
    display: block;
  }
}

.counting-section .counting-pusher .counting-wrapper {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media only screen and (max-width: 991px) {
  .counting-section .counting-pusher .counting-wrapper {
    width: 50%;
    float: left;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 499px) {
  .counting-section .counting-pusher .counting-wrapper {
    width: 100%;
    float: none;
    margin-bottom: 30px;
  }
}

.counting-section .counting-pusher .counting-wrapper .icon {
  width: 73px;
  height: 73px;
  text-align: center;
  border: 4px solid #48c7ec;
}

@media only screen and (max-width: 599px) {
  .counting-section .counting-pusher .counting-wrapper .icon {
    width: 50px;
    height: 50px;
    border: 2px solid #48c7ec;
  }
  .counting-section .counting-pusher .counting-wrapper .icon img {
    width: 40px;
  }
}

.counting-section .counting-pusher .counting-wrapper .icon img {
  padding: 10px;
}

.counting-section .counting-pusher .counting-wrapper .content {
  margin: 10px 0 0 90px;
}

@media only screen and (max-width: 599px) {
  .counting-section .counting-pusher .counting-wrapper .content {
    margin: 5px 0 0 65px;
  }
}

.counting-section .counting-pusher .counting-wrapper .content .count-description .counter {
  font-size: 48px;
  font-weight: 600;
  line-height: 24px;
  color: #48c7ec;
  margin-bottom: 20px;
}

@media only screen and (max-width: 599px) {
  .counting-section .counting-pusher .counting-wrapper .content .count-description .counter {
    font-size: 35px;
    line-height: 15px;
  }
}

@media only screen and (max-width: 479px) {
  .counting-section .counting-pusher .counting-wrapper .content .count-description .counter {
    font-size: 30px;
  }
}

.counting-section .counting-pusher .counting-wrapper .content p {
  font-size: 18px;
  line-height: 24px;
  color: #FFFFFF;
  margin-bottom: 0;
}

@media only screen and (max-width: 599px) {
  .counting-section .counting-pusher .counting-wrapper .content p {
    font-size: 16px;
  }
}

/* =========================================================
        Section-Title STYLE 
============================================================ */
.section-title {
  position: relative;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 600;
  line-height: 40px;
  color: #092a48;
  margin-bottom: 39px;
}

@media only screen and (max-width: 767px) {
  .section-title h2 {
    font-size: 25px;
    line-height: 35px;
  }
}

@media only screen and (max-width: 479px) {
  .section-title h2 {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 10px;
  }
}

.section-title .border-3 {
  max-width: 100%;
  height: 2px;
  background: url(../images/title-border-1.png) no-repeat center;
  margin: -20px auto 25px;
}

@media only screen and (max-width: 767px) {
  .section-title .border-3 {
    width: 100%;
  }
}

@media only screen and (max-width: 479px) {
  .section-title .border-3 {
    display: none;
  }
}

.section-title p {
  font-size: 16px;
  color: #6a6a6a;
}

@media only screen and (max-width: 767px) {
  .section-title p {
    font-size: 15px;
    line-height: 25px;
  }
}

/*----------------------------------------*/
/*  12. Footer section
/*----------------------------------------*/
.footer {
  background: #061d31;
  padding-bottom: 40px;
}

.footer .about-widget .logo img {
  max-width: 240px;
}

.footer .footer-widget {
  margin-bottom: 50px;
}

.footer h2,
.footer h4,
.footer ul,
.footer li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer p {
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: 24px;
  color: #838486;
}

.footer .title {
  margin-bottom: 6px;
}

.footer .title h4 {
  margin: 0;
  font-size: 19px;
  font-weight: 600;
  color: #fff;
  line-height: 26px;
  position: relative;
  top: -5px;
}

.subscribe-widget .tel-box {
  margin-bottom: 15px;
}

.footer .tel-box .icon,
.footer .tel-box .text {
  display: table-cell;
  vertical-align: top;
}

.footer .tel-box .icon i {
  font-size: 20px;
  color: #e7e7e7;
}

.footer .tel-box .text {
  padding-left: 10px;
}

.footer .tel-box .text h4 {
  font-size: 20px;
  line-height: 22px;
  color: #34baec;
  font-weight: 600;
}

.footer .tel-box .text p {
  color: #838486;
  font-size: 14px;
  line-height: 22px;
}

.footer .tel-box .text p a {
  color: #838486;
}

.footer .links-widget.links-widget-pac {
  padding: 0 0 0 25px;
}

.footer .links-widget ul {
  margin-top: 1px;
}

.footer .links-widget ul li {
  margin-bottom: 10px;
}

.footer .links-widget ul li:last-child {
  margin-bottom: 0;
}

.footer .links-widget ul li a {
  font-size: 15px;
  color: #838486;
  line-height: 18px;
  -webkit-transition: color .4s ease;
  transition: color .4s ease;
}

.footer .links-widget ul li a:before {
  content: '\f105';
  font-family: 'FontAwesome';
  margin-right: 11px;
}

.footer .links-widget ul li a:hover {
  color: #34baec;
}

.footer .social li a {
  width: 35px;
  height: 35px;
  border: 1px solid #484848;
  color: #6B6B6B;
  text-align: center;
  display: block;
  border-radius: 50%;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
  margin-right: 5px;
}

.footer .social li a i {
  font-size: 17px;
  line-height: 33px;
}

.footer .social li a i .fa-google-plus {
  font-size: 12px;
}

.footer .social li a:hover {
  color: #34baec;
  border-color: #34baec;
}

.footer .subscribe-widget input {
  width: 100%;
  height: 45px;
  background: #ffffff;
  font-size: 15px;
  line-height: 45px;
  border-radius: 4px;
  padding: 0 20px;
  color: #838486;
  border: none;
}

.footer .about-widget > p {
  margin-top: 22px;
}

.footer .footer-widget .ped-btn-footer {
  border: 1px solid #34baec;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  margin-top: 20px;
  padding: 0px 10px;
  text-align: center;
  text-transform: uppercase;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  z-index: 222;
  background: #34baec;
  width: 100%;
  border-radius: 3px;
  line-height: 45px;
}

.footer .about-widget .link {
  margin-top: 10px;
  display: inline-block;
  padding: 10px;
}

.footer .about-widget .link::after {
  content: '\f105';
  font-family: 'FontAwesome';
  color: #fff;
  margin-left: 5px;
}

.footer .about-widget .link a {
  font-size: 14px;
  text-transform: uppercase;
  color: #e7e7e7;
  font-weight: 600;
}

.footer .about-widget .tel-box {
  margin: 15px 0;
}

.footer-bottom {
  background: #0c0c0c;
  padding: 27px 0;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
}

.footer .newsletter-widget {
  position: relative;
  margin: 15px 0 20px 0;
}

.footer2 {
  background: #222229;
  padding: 65px 0;
}

.footer2 .footer-bottom p {
  color: #797a7c;
}

.footer-bottom2 {
  background: #1c1c21;
}

.footer-bottom2 .pull-right p {
  color: #33585c;
}

.footer2 .tel-box .icon-box i {
  color: #34baec;
}

.footer2 .twitter-widget,
.footer2 .about-widget {
  padding: 0 20px 0 0;
}

.footer .title2 h2 {
  margin: 0;
  font-size: 16px;
  font-weight: bold;
  color: #D5D5D5;
  line-height: 26px;
  position: relative;
  top: -5px;
  text-transform: uppercase;
}

.twitter-widget ul li span {
  color: #34baec;
}

.twitter-widget ul li a:before {
  display: none;
}

.twitter-widget p {
  display: inline;
  color: #797a7c;
}

.flickr-widget {
  width: 200px;
  float: right;
}

.flickr-widget img {
  float: left;
  padding: 0 5px 5px 0;
}

.flickr-widget li:nth-child(3) img,
.flickr-widget li:nth-child(6) img {
  padding: 0 0 5px 0 !important;
}

.copy-right {
  background-color: #061d31;
  padding: 16px 0;
  border-top: 1px solid #203548;
}

.copy-right a {
  color: #48c7ec;
}

.copy-right p {
  font-size: 16px;
  margin-bottom: 0;
  color: #FFFFFF;
}

@media only screen and (max-width: 767px) {
  .copy-right p {
    font-size: 14px;
  }
}

@media only screen and (max-width: 479px) {
  .copy-right p {
    font-size: 12px;
  }
}

/* =========================================================
        Testimonial-Section STYLE 
============================================================ */
.testimonial-section {
  background: url(../images/testimonial-bg.jpg) no-repeat center;
  background-size: cover;
  background-attachment: fixed;
}

@media only screen and (max-width: 479px) {
  .testimonial-section {
    background-attachment: inherit;
  }
}

.testimonial-section .testimonial-carousel {
  position: relative;
}

.testimonial-section .testimonial-carousel .carousel-inner .carousel-wrapper {
  padding: 0 55px;
}

@media only screen and (max-width: 1199px) {
  .testimonial-section .testimonial-carousel .carousel-inner .carousel-wrapper {
    padding: 0;
  }
}

.testimonial-section .testimonial-carousel .carousel-inner .carousel-wrapper p {
  font-size: 24px;
  line-height: 36px;
  color: #FFFFFF;
  margin-bottom: 43px;
  word-break: break-all;
}

@media only screen and (max-width: 991px) {
  .testimonial-section .testimonial-carousel .carousel-inner .carousel-wrapper p {
    font-size: 25px;
    line-height: 35px;
  }
}

@media only screen and (max-width: 767px) {
  .testimonial-section .testimonial-carousel .carousel-inner .carousel-wrapper p {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 30px;
  }
}

.testimonial-section .testimonial-carousel .carousel-inner .carousel-wrapper .reviewer {
  position: relative;
  padding-top: 25px;
}

.testimonial-section .testimonial-carousel .carousel-inner .carousel-wrapper .reviewer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 60px;
  height: 4px;
  background-color: #48c7ec;
  margin: 0 auto;
}

.testimonial-section .testimonial-carousel .carousel-inner .carousel-wrapper .reviewer h5 {
  font-size: 26px;
  line-height: 36px;
  color: #FFFFFF;
  margin-bottom: 0;
}

@media only screen and (max-width: 991px) {
  .testimonial-section .testimonial-carousel .carousel-inner .carousel-wrapper .reviewer h5 {
    font-size: 25px;
    line-height: 35px;
  }
}

@media only screen and (max-width: 767px) {
  .testimonial-section .testimonial-carousel .carousel-inner .carousel-wrapper .reviewer h5 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: -5px;
  }
}

.testimonial-section .testimonial-carousel .carousel-inner .carousel-wrapper .reviewer .location {
  font-size: 18px;
  color: #999;
}

@media only screen and (max-width: 767px) {
  .testimonial-section .testimonial-carousel .carousel-inner .carousel-wrapper .reviewer .location {
    font-size: 15px;
  }
}

.testimonial-section .testimonial-carousel .carousel-control.left, .testimonial-section .testimonial-carousel .carousel-control.right {
  position: absolute;
  top: auto;
  bottom: 0;
  width: 47px;
  height: 47px;
  line-height: 47px;
  background-color: transparent;
  border: 2px solid #48c7ec;
  text-align: center;
  background-image: none;
  opacity: 1;
  text-shadow: none;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  padding:10px 0 0 0;
}

@media only screen and (max-width: 767px) {
  .testimonial-section .testimonial-carousel .carousel-control.left, .testimonial-section .testimonial-carousel .carousel-control.right {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
}

.testimonial-section .testimonial-carousel .carousel-control.left:hover, .testimonial-section .testimonial-carousel .carousel-control.right:hover {
  background-color: #48c7ec;
}

.testimonial-section .testimonial-carousel .carousel-control.left {
  left: auto;
  right: 52px;
}

@media only screen and (max-width: 767px) {
  .testimonial-section .testimonial-carousel .carousel-control.left {
    right: 35px;
    padding:10px 0 0 0;
  }
}

#back_to_top {
  display: block;
  height: 40px;
  width: 40px;
  color: #FFFFFF;
  background-color: #48c7ec;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  font-size: 20px;
  position: fixed;
  padding-top: 8px;
  bottom: 35px;
  right: -50%;
  z-index: 99999;
  -webkit-transition: .3s all ease-in-out;
  transition: .3s all ease-in-out;
}

#back_to_top.visible {
  opacity: 1;
  visibility: visible;
  right: 10px;
}

#back_to_top:hover {
  opacity: .8;
}

#ecww-header {
  background-color: #48c7ec !important;
}

.mobile-menu {
  display: none;
}

@media (max-width: 991px) {
  .mobile-menu {
    display: block;
    padding: 10px 0;
  }
  .slicknav_brand {
    max-width: 60%;
  }
  .slicknav_menu {
    background-color: #fff;
  }
  .slicknav_nav {
    background-color: #48c7ec;
    overflow: auto;
    max-height: 350px;
  }
  .slicknav_btn {
    margin-top: 15px;
    border-radius: 0;
    background-color: transparent;
  }
  .slicknav_menu .slicknav_icon-bar {
    background-color: #222;
  }
  .slicknav_nav a:hover,
  .slicknav_nav .slicknav_row:hover {
    background: #232323;
    color: #fff;
    border-radius: 0;
  }
  .slicknav_nav .slicknav_row,
  .slicknav_nav a {
    margin-left: 0;
    margin-right: 0;
  }
  .menubar {
    display: none;
  }
}

@media (max-width: 450px) {
  .slicknav_btn {
    margin-top: 10px;
  }
}
/*# sourceMappingURL=style.css.map */

.news_panel {
    background-color: #EEE;
    height: 40px;
    position: relative;
    padding:5px 0 0 215px;
}
.news_panel:before {
    content: "Latest At Awsar Nidhi";
    position: absolute;
    width: 200px;
    height: 30px;
    background-color: #333;
    color: White;
    padding: 2px 5px;
    font-size: 22px;
    left: 0;
}

@import url('https://fonts.googleapis.com/css?family=Montserrat:400,600,700');

.gallery-title
{
    font-size: 36px;
    color: #42B32F;
    text-align: center;
    font-weight: 500;
    margin-bottom: 70px;
}

    .gallery-title:after
    {
        content: "";
        position: absolute;
        width: 7.5%;
        left: 46.5%;
        height: 45px;
        border-bottom: 1px solid #5e5e5e;
    }

a.filter-button
{
    color: #999999;
    font: 400 13px/22px 'Montserrat', sans-serif;
    border-radius: 5px;
    text-align: center;
    color: inherit;
    margin-bottom: 30px;
    text-decoration: none;
    padding: 0 15px;
}

.gallery_product
{
    position: relative;
    overflow: hidden;
}


.port-image
{
    width: 100%;
}



.gal_title
{
    color: #202020;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 3em;
    position: relative;
    padding-bottom: 20px;
}

    .gal_title:after
    {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        height: 2px;
        width: 40px;
        background-color: #dfdfdf;
    }

ul.gal_sort
{
    list-style: none;
    margin: 35px auto 5px;
    padding: 0;
}

    ul.gal_sort li
    {
        display: inline-block;
        color: black;
    }

        ul.gal_sort li.active a
        {
            font-weight: 700;
            color: #202020;
        }

.gallery_product
{
    margin-bottom: 30px;
    position: relative;
}

.gal_img img
{
   display: block;
    width: auto;
    height: auto;
    min-width: 100%;
    max-width: 100%;
}

.gal_img
{
    position: relative;
    width: 100%;
    z-index:2;
    top:0;transition:.3s  all ease-in;
}

.gallery_product:hover .gal_img
{

   top: -70px;
    
}

.gallery_product .details
{
    height: 70px;
    bottom: 0;
    position: relative;
    background-color: #282727;
    position: absolute;
    width: 100%;
    padding: 10px 0 0 10px;
    color: white;
    z-index:1;
}
