@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,800,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap");
.background_color {
  background: rgba(65, 128, 255, 0.75);
  background: -webkit-gradient(linear, left top, right top, from(rgba(65, 128, 255, 0.75)), to(rgba(65, 127, 253, 0.9)));
  background: linear-gradient(left, rgba(65, 128, 255, 0.75), rgba(65, 127, 253, 0.9));
}

.form-label-group input:-webkit-input-placeholder, .form-label-group input::-ms-input-placeholder, .form-label-group input::-moz-placeholder {
  color: transparent;
}

a,
.btn {
  color: #121921;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}

a:focus,
a:hover,
.btn:hover,
.btn:focus,
.btn:active {
  text-decoration: none;
  outline: 0;
}

.under-line {
  text-decoration: underline;
}

p {
  margin-bottom: 15px;
  line-height: 1.8;
}

ul,
ol {
  padding-left: 0;
  list-style: none;
  margin-bottom: 20px;
}

ul ul,
ol ul,
ul ol,
ol ol {
  padding-left: 20px;
}

h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", sans-serif;
  margin-top: 10px;
  margin-bottom: 10px;
}

/* Global */
body {
  font-family: "Poppins", sans-serif;
  background: #fff;
  color: #121921;
  font-size: 15px;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: all 0.4s ease-out 0s;
  -webkit-transition: all 0.4s ease-out 0s;
}

img {
  max-width: 100%;
}

input:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

/* padding & margin */
.nopadding {
  padding: 0 !important;
}

.nopadd-bottom {
  padding-bottom: 0 !important;
}

.nomargin {
  margin: 0 !important;
}

.nomargin-bottom {
  margin-bottom: 0 !important;
}

.section-heading {
  margin-bottom: 30px;
}

.section-heading h4 {
  color: #1e2e5c;
  font-size: 26px;
  font-weight: 600;
}

.section-heading span {
  font-weight: 600;
  text-transform: uppercase;
}

.section-heading::after {
  position: relative;
  content: "";
  width: 80px;
  display: block;
  height: 3px;
  background: #faa229;
  margin-top: 15px;
  top: 0;
}

.section-heading.text-center {
  max-width: 300px;
  margin: 0 auto 30px;
}

.section-heading.text-center:after {
  margin: 15px auto 0;
}

.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white p,
.text-white .title-small {
  color: #fff !important;
}

.theme-btn {
  position: relative;
  display: inline-block;
  font-size: 15px;
  line-height: 30px;
  background: #1e2e5c;
  color: #fff;
  padding: 10px 20px;
  overflow: hidden;
  border-radius: 2px;
  margin-right: 10px;
}

.theme-btn i {
  margin-right: 10px;
}

.theme-btn:hover {
  background: #00c1cf;
  color: #fff;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

/* bg */
.grey-bg {
  background: #f6f6f6;
}

.yellow-text {
  color: #faa229;
}

b {
  font-weight: 600;
}

/* owl-carousel */
.owl-carousel .owl-nav [class*="owl-"] {
  position: absolute;
  background: #fff;
  top: 50%;
  width: 60px;
  height: 60px;
  line-height: 55px;
  margin-top: -30px;
  overflow: hidden;
  border-radius: 50%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.owl-carousel .owl-nav [class*="owl-"]::after, .owl-carousel .owl-nav [class*="owl-"]::before {
  position: absolute;
  border: 2px #eee solid;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  content: "";
  border-radius: inherit;
  -webkit-border-radius: inherit;
}

.owl-carousel .owl-nav [class*="owl-"]:hover::after, .owl-carousel .owl-nav [class*="owl-"]:hover::before {
  border: 2px #faa229 solid;
}

.owl-carousel .owl-nav .owl-prev {
  left: -20px;
}

.owl-carousel .owl-nav .owl-next {
  right: -20px;
}

.owl-carousel .owl-dots .owl-dot {
  margin: 3px;
}

.owl-carousel .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background: #eee;
  transition: all 0.15s;
  -webkit-transition: all 0.15s;
  -webkit-box-shadow: 2px 1px 3px rgba(0, 0, 0, 0.35);
          box-shadow: 2px 1px 3px rgba(0, 0, 0, 0.35);
}

.owl-carousel .owl-dots .owl-dot span:hover {
  background: #faa229;
}

.owl-carousel .owl-dots .owl-dot.active span {
  background: #faa229;
  transform: scale(1);
  -webkit-transform: scale(1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* home-product */
.section-title {
  font-family: "Roboto", sans-serif;
  text-align: center;
  margin: 0 auto 50px;
}

.section-title span {
  position: relative;
  padding: 0 24px;
}

.section-title .f16 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 0;
  color: #1e2e5c;
}

.section-title .f30 {
  text-transform: uppercase;
  font-size: 36px;
  font-weight: 500;
  position: relative;
  line-height: 1;
  color: #faa229;
}

.section-title .f30:before, .section-title .f30::after {
  content: "";
  position: relative;
  display: inline-block;
  max-width: 125px;
  width: 100%;
  height: 1px;
  background: #faa229;
  vertical-align: middle;
}

@media screen and (max-width: 480px) {
  .section-title .f30 {
    font-size: 26px;
  }
  .section-title .f30:before {
    display: none;
  }
  .section-title .f30::after {
    top: 15px;
    display: block;
    margin: 0 auto;
  }
}

.section-title h3 {
  text-transform: uppercase;
  font-size: 36px;
  font-weight: 500;
  position: relative;
  line-height: 1;
  color: #faa229;
}

/* container */
@media screen and (max-width: 1200px) {
  .container {
    max-width: 100%;
  }
}

.home-page .header {
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 9999;
}

@media screen and (max-width: 991px) {
  .home-page .header {
    position: relative;
  }
}

.header .header-top {
  position: relative;
  background: #1e2e5c;
}

.header .header-top .top-right {
  position: relative;
  padding-right: 40px;
}

.header .header-top .info-list {
  position: relative;
  margin: 0;
}

.header .header-top .info-list li {
  position: relative;
  float: left;
  font-size: 14px;
  line-height: 30px;
  color: #fff;
  font-weight: 300;
  padding: 5px 0;
  margin-right: 20px;
  padding-right: 20px;
}

.header .header-top .info-list li i {
  margin-right: 10px;
}

.header .header-top .info-list li:before {
  position: absolute;
  right: 0;
  top: 5px;
  font-size: 15px;
  line-height: 30px;
  color: #fff;
  font-weight: 400;
  content: "|";
}

.header .header-top .info-list li > a {
  color: #fff;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.header .header-top .info-list li > a:hover {
  color: #fff;
}

.header .header-top .info-list li:last-child:before {
  display: none;
}

@media screen and (max-width: 480px) {
  .header .header-top .info-list {
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
  }
  .header .header-top .info-list li::before {
    display: none;
  }
  .header .header-top .searchbar {
    top: 23px;
    right: 0;
  }
}

.header .navbar-toggler {
  border: 0 solid #faa229;
  font-size: 16px;
  line-height: 24px;
  margin: 34px 0 30px 15px;
  padding: 0;
  float: right;
  outline: none;
}

.header .navbar-toggler.menuicon {
  width: 20px;
  height: 14px;
  position: relative;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

.header .navbar-toggler.menuicon span {
  background: #121921;
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  border-radius: 1px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.header .navbar-toggler.menuicon span:nth-child(1) {
  top: 0px;
}

.header .navbar-toggler.menuicon span:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.header .navbar-toggler.menuicon span:nth-child(3) {
  bottom: 0;
}

.header .navbar-toggler.menuicon.open span:nth-child(1) {
  top: 7px;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.header .navbar-toggler.menuicon.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

.header .navbar-toggler.menuicon.open span:nth-child(3) {
  top: 7px;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.header .sticky-header .navbar-brand {
  padding: 10px;
}

.header .sticky-header .navbar-brand img {
  max-width: 150px;
}

.header .sticky-header .menu-bar {
  background: rgba(255, 255, 255, 0.75);
  width: 100%;
  position: relative;
  -webkit-box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.2);
}

.header .sticky-header .menu-bar .menu-links {
  float: right;
  margin-right: 0px !important;
}

@media screen and (max-width: 991px) {
  .header .sticky-header .menu-bar .menu-links {
    position: absolute;
    right: 0;
    background: #fff;
    left: 20px;
    z-index: 9;
    height: calc(100vh - 80px);
    overflow: auto;
    float: none;
    border-top: 3px solid #faa229;
    margin: 0 -20px !important;
    right: 0;
  }
}

.header .sticky-header .menu-bar .menu-links .nav i {
  font-size: 9px;
  margin-left: 3px;
  margin-top: -3px;
  vertical-align: middle;
}

.header .sticky-header .menu-bar .menu-links .nav > li {
  margin: 0px;
  font-weight: 400;
  text-transform: uppercase;
}

.header .sticky-header .menu-bar .menu-links .nav > li > a {
  position: relative;
  font-weight: 500;
  border-radius: 0px;
  font-size: 15px;
  padding: 30px 20px;
  cursor: pointer;
  display: inline-block;
}

.header .sticky-header .menu-bar .menu-links .nav > li > a::after {
  position: absolute;
  content: "";
  width: 3px;
  height: 0;
  left: 50%;
  margin-left: 1px;
  top: 0;
  background: #faa229;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.header .sticky-header .menu-bar .menu-links .nav > li > a:active, .header .sticky-header .menu-bar .menu-links .nav > li > a:focus {
  background-color: transparent;
}

.header .sticky-header .menu-bar .menu-links .nav > li:hover, .header .sticky-header .menu-bar .menu-links .nav > li.active {
  background-color: transparent;
  color: #faa229;
}

.header .sticky-header .menu-bar .menu-links .nav > li:hover a::after, .header .sticky-header .menu-bar .menu-links .nav > li.active a::after {
  height: 25px;
}

.header .sticky-header .menu-bar .menu-links .nav > li.active > a,
.header .sticky-header .menu-bar .menu-links .nav > li.current-menu-item > a {
  background-color: transparent;
  color: #faa229;
}

.header .sticky-header .menu-bar .menu-links .nav > li .sub-menu {
  background-color: #fff;
  border: 1px solid #f6f6f6;
  display: block;
  left: 0;
  list-style: none;
  opacity: 0;
  position: absolute;
  width: 100%;
  visibility: hidden;
  z-index: 1000;
  top: 100%;
  -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
  margin: 0;
  padding: 20px 40px;
}

.header .sticky-header .menu-bar .menu-links .nav > li .sub-menu .menu-content-list {
  width: calc(100% / 6);
  padding: 0;
}

.header .sticky-header .menu-bar .menu-links .nav > li .sub-menu .menu-content-list .menu-content {
  padding: 10px;
  text-align: center;
}

.header .sticky-header .menu-bar .menu-links .nav > li .sub-menu .menu-content-list .menu-content .menu--img img {
  max-width: 150px;
}

.header .sticky-header .menu-bar .menu-links .nav > li .sub-menu .menu-content-list .menu-content ul {
  padding: 0;
}

.header .sticky-header .menu-bar .menu-links .nav > li .sub-menu .menu-content-list .menu-content h5 {
  font-size: 15px;
  color: #1e2e5c;
  font-weight: 400;
}

.header .sticky-header .menu-bar .menu-links .nav > li .sub-menu .menu-content-list .menu-content:hover {
  -webkit-box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.2);
}

.header .sticky-header .menu-bar .menu-links .nav > li .sub-menu li {
  position: relative;
}

.header .sticky-header .menu-bar .menu-links .nav > li .sub-menu li a {
  color: #121921;
  display: block;
  font-size: 14px;
  padding: 6px 5px;
  transition: all 0.15s linear;
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
}

.header .sticky-header .menu-bar .menu-links .nav > li .sub-menu li a:hover {
  color: #faa229;
  text-decoration: none;
}

.header .sticky-header .menu-bar .menu-links .nav > li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.header .sticky-header.is-fixed .menu-logo {
  top: 0;
  height: 70px;
  width: 140px;
}

.header .sticky-header.is-fixed .menu-logo img {
  height: 70px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
}

.header .sticky-header.is-fixed .menu-bar {
  position: fixed;
  background: #fff;
  z-index: 9999;
  top: 0;
  left: 0;
}

@media screen and (max-width: 991px) {
  .header .sticky-header .menu-bar .menu-links .nav > li > a {
    padding: 15px 20px;
    display: block;
  }
  .header .sticky-header .menu-bar .menu-links .nav > li > a::after {
    display: none;
  }
  .header .sticky-header .menu-bar .menu-links .nav > li > a .fa {
    display: none;
  }
  .header .sticky-header .menu-bar .menu-links .nav > li .sub-menu {
    display: none;
  }
}

.searchbar {
  position: absolute;
  top: 2px;
  right: 30px;
  margin-bottom: auto;
  margin-top: auto;
  height: 35px;
  background-color: #ffc107;
  border-radius: 30px;
  padding: 0;
}

.searchbar .search_input {
  color: #fff;
  border: 0;
  outline: 0;
  background: none;
  width: 0;
  caret-color: transparent;
  line-height: 35px;
  -webkit-transition: width 0.4s linear;
  transition: width 0.4s linear;
}

.searchbar .search_icon {
  border: none;
  background: transparent;
  cursor: pointer;
  outline: none;
  height: 35px;
  width: 30px;
  float: right;
  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;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
}

.searchbar .search_icon i {
  position: relative;
  right: 2px;
}

.searchbar:hover .search_input {
  padding: 0 10px;
  width: 250px;
  caret-color: #faa229;
  -webkit-transition: width 0.4s linear;
  transition: width 0.4s linear;
}

.searchbar:hover .search_icon {
  width: 35px;
  background: #fff;
  color: #faa229;
}

.searchbar:hover .search_icon i {
  right: 0px;
}

@media screen and (max-width: 767px) {
  .searchbar .search_icon {
    width: 35px;
  }
  .searchbar .search_icon i {
    right: 0px;
  }
}

/* footer Start */
footer {
  font-size: 14px;
  background: #1e2e5c;
  color: rgba(255, 255, 255, 0.8);
  border-top: 5px solid #ffc107;
  overflow: hidden;
}

footer .footer-inner .footer-middle {
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

footer .footer-inner .footer-middle .f-col.paddleft40 {
  padding-left: 40px;
}

footer .footer-inner .footer-middle .footer-static-block ul {
  margin: 0;
}

footer .footer-inner .footer-middle .footer-static-block ul li {
  padding: 8px 0;
}

footer .footer-inner .footer-middle .footer-static-block ul li a {
  color: rgba(255, 255, 255, 0.8);
}

footer .footer-inner .footer-middle .footer-static-block ul li a:hover {
  color: #faa229;
}

footer .footer-inner .footer-middle .footer-static-block .f-logo {
  margin-bottom: 20px;
}

footer .footer-inner .footer-middle .footer-static-block .f-logo img {
  max-width: 250px;
}

footer .footer-inner .footer-middle .footer-static-block .title {
  text-transform: uppercase;
  position: relative;
  font-size: 18px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 30px;
}

footer .footer-inner .footer-middle .footer-static-block .title span {
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 50px;
  height: 3px;
  background: #faa229;
}

footer .footer-inner .footer-middle .footer-static-block .footer-block-contant {
  display: block;
}

footer .footer-inner .footer-middle .footer-static-block .footer-block-contant.link {
  margin-bottom: 5px;
}

footer .footer-inner .footer-middle .footer-static-block .footer-block-contant.link li {
  display: inline-block;
  padding: 0 10px;
  border-right: 1px solid rgba(246, 246, 246, 0.28);
  margin-bottom: 5px;
  font-size: 13px;
}

footer .footer-inner .footer-middle .footer-static-block .footer-block-contant.link li:first-child {
  position: relative;
  font-size: 14px;
  border-right: none;
  padding-left: 0;
  padding-right: 20px;
  font-weight: 600;
}

footer .footer-inner .footer-middle .footer-static-block .footer-block-contant.link li:first-child::after {
  content: "";
  width: 10px;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 10px;
  right: 0;
}

footer .footer-inner .footer-middle .footer-static-block .footer-block-contant.link li:first-child a {
  color: #faa229;
}

footer .footer-inner .footer-middle .footer-static-block .footer-block-contant.link li:last-child {
  border-right: none;
}

footer .footer-inner .footer-middle .footer-static-block .footer-block-contant.footer-address li {
  position: relative;
  display: block;
  padding: 10px 0 10px 30px;
  font-size: 13px;
}

footer .footer-inner .footer-middle .footer-static-block .footer-block-contant.footer-address li:last-child {
  padding-bottom: 0;
}

footer .footer-inner .footer-middle .footer-static-block .footer-block-contant.footer-address li b {
  font-size: 14px;
}

footer .footer-inner .footer-middle .footer-static-block .footer-block-contant.footer-address li i {
  position: absolute;
  color: #fff;
  left: 0;
  top: 8px;
  font-size: 18px;
}

footer .footer-inner .footer-middle .footer-static-block .footer-block-contant.footer-address li a {
  display: block;
  width: auto;
  height: auto;
  border-radius: inherit;
  border: none;
}

footer .footer-inner .footer-middle .footer-static-block .footer-block-contant.footer-address li a:hover {
  color: #fff;
}

footer .footer-inner .footer-middle .footer-static-block.newsletter {
  margin-top: 10px;
}

footer .footer-inner .footer-middle .footer-static-block.newsletter .subscribe-form form {
  position: relative;
}

footer .footer-inner .footer-middle .footer-static-block.newsletter .subscribe-form form .mc-form > input {
  background: transparent none repeat scroll 0 0;
  border: 1px solid #fff;
  border-radius: 50px;
  color: #fff;
  font-weight: 500;
  height: 54px;
  line-height: 54px;
  padding: 15px;
  width: 100%;
}

footer .footer-inner .footer-middle .footer-static-block.newsletter .subscribe-form form .mc-form .subscribe-button {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

footer .footer-inner .footer-middle .footer-static-block.newsletter .subscribe-form form .mc-form .subscribe-button .button {
  width: 150px;
  font-size: 15px;
  line-height: 30px;
  background: #faa229;
  color: #fff;
  padding: 12px 40px;
  margin-left: 20px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
}

footer .footer-inner .footer-bottom {
  padding: 20px 0;
}

footer .footer-inner .footer-bottom a {
  color: #fff;
}

footer .footer-inner .footer-bottom .title {
  text-align: right;
}

footer .footer-inner .footer-bottom .title a {
  color: #faa229;
}

@media screen and (max-width: 776px) {
  footer .footer-inner .footer-middle {
    padding-bottom: 0;
  }
  footer .footer-inner .footer-middle .f-col {
    margin-bottom: 30px;
  }
  footer .footer-inner .footer-middle .footer-block-contant.link {
    margin-bottom: 15px;
  }
  footer .footer-inner .footer-bottom .title {
    text-align: left;
  }
}

/* footer End */
/* loading Start */
#loading-icon-bx {
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: fixed;
  left: 0;
  top: 0;
  opacity: 1;
  z-index: 9999;
  background-image: url(../images/loading.gif);
  background-repeat: no-repeat;
  background-size: 60px;
  background-position: center;
}

/* loading End */
/* scroll top Start */
button.back-to-top {
  background: #faa229;
  border-radius: 4px;
  border-style: solid;
  border-width: 0;
  bottom: 15px;
  -webkit-box-shadow: 2px 2px 12px -5px #121921;
          box-shadow: 2px 2px 12px -5px #121921;
  color: #fff;
  outline: none;
  cursor: pointer;
  display: none;
  height: 40px;
  line-height: 26px;
  margin: 0;
  position: fixed;
  right: 15px;
  text-align: center;
  width: 40px;
  z-index: 999;
}

/* scroll top End */
/*  */
.homeslider {
  -webkit-box-shadow: 4px 5px 8px 0px rgba(0, 0, 0, 0.33);
          box-shadow: 4px 5px 8px 0px rgba(0, 0, 0, 0.33);
  overflow: hidden;
}

.homeslider .item .cover .header-content {
  position: absolute;
  left: 0;
  bottom: 50px;
  background: rgba(255, 255, 255, 0.63);
  padding: 15px 30px;
  border-right: 10px solid #ffc107;
}

.homeslider .item .cover .header-content h2 {
  font-weight: 700;
  font-size: 50px;
  color: #1e2e5c;
  margin-bottom: 10px;
}

.homeslider .item .cover .header-content h2 b {
  font-weight: 700;
  color: #ffc107;
}

.homeslider .item .cover.right .header-content {
  left: auto;
  right: 0;
  border-right: none;
  border-left: 10px solid #ffc107;
}

@media screen and (max-width: 991px) {
  .homeslider .item .cover .header-content h2 {
    font-size: 30px;
  }
}

@media screen and (max-width: 640px) {
  .homeslider .item {
    height: initial;
  }
  .homeslider .item .cover .header-content {
    position: static;
    padding: 0 20px;
    min-height: 75px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -moz-align-items: center;
    -ms-align-items: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .homeslider .item .cover .header-content h2 {
    font-size: 22px;
    line-height: 1.2;
  }
  .homeslider .item .cover .header-content h2 b {
    font-weight: normal;
  }
}

.homeslider .owl-item.active h1 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInDown;
          animation-name: fadeInDown;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.homeslider .owl-item.active h2 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInDown;
          animation-name: fadeInDown;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.homeslider .owl-item.active h4 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.homeslider .owl-item.active .line {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInLeft;
          animation-name: fadeInLeft;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.homeslider .owl-nav {
  margin: 0;
}

.homeslider .owl-nav .owl-prev,
.homeslider .owl-nav .owl-next {
  position: absolute;
  opacity: 0;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  background: #00c1cf !important;
  width: 50px;
  cursor: pointer;
  height: 50px;
  text-align: center;
  line-height: 45px;
  color: #fff;
  z-index: 1000;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-pack: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.homeslider .owl-nav .owl-prev span,
.homeslider .owl-nav .owl-next span {
  font-size: 1.6875rem;
  color: #fff;
}

.homeslider .owl-nav .owl-prev:focus,
.homeslider .owl-nav .owl-next:focus {
  outline: 0;
}

.homeslider .owl-nav .owl-prev:hover,
.homeslider .owl-nav .owl-next:hover {
  background: #faa229 !important;
  color: #fff;
}

.homeslider:hover .owl-prev {
  left: 0px;
  opacity: 1;
}

.homeslider:hover .owl-next {
  right: 0px;
  opacity: 1;
}

/* Testimonials */
.testimonial-section {
  overflow: hidden;
  padding: 50px 0;
}

.testimonial-section .testimonial-bx {
  text-align: center;
}

.testimonial-section .testimonial-bx .testimonial-thumb {
  width: 80px;
  border-radius: 50px;
  overflow: hidden;
  margin: 20px auto;
  border: 3px solid #fff;
  -webkit-box-shadow: 0 0 8px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 8px 5px rgba(0, 0, 0, 0.1);
}

.testimonial-section .testimonial-bx .testimonial-info {
  margin-bottom: 15px;
}

.testimonial-section .testimonial-bx .testimonial-info h5 {
  color: #1e2e5c;
  margin-bottom: 0;
}

.testimonial-section .testimonial-bx .testimonial-info p {
  color: #faa229;
  font-size: 15px;
  margin: 0;
}

.testimonial-section .testimonial-bx .testimonial-content {
  position: relative;
  max-width: 800px;
  margin: 20px auto;
  padding: 40px;
  border: 1px solid #eee;
  -webkit-box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.2);
}

.testimonial-section .testimonial-bx .testimonial-content::before, .testimonial-section .testimonial-bx .testimonial-content::after {
  color: #faa229;
  font-family: fontawesome;
  position: absolute;
  font-size: 20px;
}

.testimonial-section .testimonial-bx .testimonial-content::before {
  top: 10px;
  content: "\f10d";
  left: 10px;
}

.testimonial-section .testimonial-bx .testimonial-content::after {
  bottom: 10px;
  content: "\f10e";
  right: 10px;
}

.testimonial-section .testimonial-bx .testimonial-content p {
  color: #121921;
  font-size: 15px;
  margin: 0;
}

/* slider-banner-sec */
.slider-banner-sec {
  padding: 50px 0;
}

.slider-banner-sec .banner-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-align-items: center;
  -ms-align-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  overflow: hidden;
  border: 1px solid #faa229;
  -webkit-box-shadow: 0 1px 12px rgba(0, 0, 0, 0.08);
          box-shadow: 0 1px 12px rgba(0, 0, 0, 0.08);
  background: #f8f3ef url(../images/banner-bg.jpg) no-repeat;
}

.slider-banner-sec .banner-col::before {
  position: absolute;
  width: 20%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  content: "";
  transform: skew(-20deg);
  -webkit-transform: skew(-20deg);
  -ms-transform: skew(-20deg);
  -moz-transform: skew(-20deg);
  -o-transform: skew(-20deg);
  left: -40%;
}

.slider-banner-sec .banner-col img {
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
}

.slider-banner-sec .banner-col .media {
  width: 50%;
}

.slider-banner-sec .banner-col .content {
  width: 50%;
  padding-left: 20px;
}

.slider-banner-sec .banner-col .content h2 {
  font-size: 32px;
  font-weight: 400;
  color: #1e2e5c;
  margin-bottom: 10px;
}

.slider-banner-sec .banner-col .content h2 strong {
  font-weight: 600;
}

.slider-banner-sec .banner-col .content h4 {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
  color: #121921;
}

.slider-banner-sec .banner-col .content .link-box {
  margin-top: 20px;
}

.slider-banner-sec .banner-col .content .link-box .theme-btn {
  padding: 5px 20px;
}

.slider-banner-sec .banner-col:hover::before {
  left: 120%;
  transition: left 0.5s ease;
  -webkit-transition: left 0.5s ease;
  -moz-transition: left 0.5s ease;
  -ms-transition: left 0.5s ease;
  -o-transition: left 0.5s ease;
}

.slider-banner-sec .banner-col:hover .content .link-box .theme-btn {
  color: #fff;
  background-color: #ce1a01;
}

/* home-product-section */
.home-product-section {
  overflow: hidden;
  padding: 50px 0;
}

.home-product-section .home-product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.product-thumb {
  background: #fff;
  width: calc(25% - 20px);
  border: 1px solid #eee;
  -webkit-box-shadow: 0 1px 12px rgba(0, 0, 0, 0.08);
          box-shadow: 0 1px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  margin: 0 10px 20px 10px;
  overflow: hidden;
  text-align: center;
  padding: 10px 10px 0;
}

.product-thumb .product-thumb-img .product-image {
  overflow: hidden;
}

.product-thumb .product-thumb-img img {
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
}

.product-thumb h3 {
  font-size: 15px;
  margin: 0;
  padding: 20px 0;
}

.product-thumb h3 a {
  color: #faa229;
}

.product-thumb .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.product-thumb .overlay .view-icon {
  position: absolute;
  top: 0;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: inline-block;
  line-height: 30px;
  font-size: 25px;
  background: #faa229;
  color: #fff;
  padding: 10px;
  margin: 0 5px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.product-thumb:hover .overlay {
  opacity: 1;
  cursor: pointer;
}

.product-thumb:hover .overlay .view-icon {
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}

.product-thumb:hover .overlay .view-icon .fa {
  margin-right: 5px;
}

.product-thumb:hover .product-thumb-img img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

@media screen and (max-width: 1023px) {
  .product-thumb {
    width: calc(33% - 20px);
  }
}

@media screen and (max-width: 480px) {
  .product-thumb {
    width: calc(50% - 20px);
  }
}

/* whychoose-section */
.whychoose-section {
  overflow: hidden;
  padding: 50px 0;
}

.whychoose-section .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-align-items: center;
  -ms-align-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.whychoose-section .content.blue-content {
  background: #1e2e5c;
}

.whychoose-section .content.yellow-content {
  background: #faa229;
}

.whychoose-section .content .desc,
.whychoose-section .content .media {
  width: 50%;
}

.whychoose-section .content .desc {
  padding: 0 30px;
}

.whychoose-section .content .desc h4 {
  font-size: 22px;
  color: #fff;
}

.whychoose-section .content .desc p {
  color: #fff;
}

.whychoose-section .content .media {
  max-width: 700px;
  overflow: hidden;
}

.whychoose-section .content .media img {
  -webkit-transition: all 1s;
  transition: all 1s;
}

.whychoose-section .content:hover .media img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

@media screen and (max-width: 991px) {
  .whychoose-section .content {
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
  }
  .whychoose-section .content .desc,
  .whychoose-section .content .media {
    width: 100%;
  }
  .whychoose-section .content .desc {
    padding: 30px;
  }
  .whychoose-section .content.yellow-content .media {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .whychoose-section .content.yellow-content .desc {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

/* service-section */
.service-section {
  position: relative;
  background: url(../images/slider/slider-2.jpg) no-repeat;
  background-attachment: fixed;
  padding: 50px 0 0;
}

.service-section::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(30, 46, 92, 0.9);
}

.service-section .section-title p {
  color: #fff;
}

.service-section .content {
  color: #fff;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

/* heightlight-section */
.heightlight-section {
  overflow: hidden;
  position: relative;
  padding: 50px 0;
  background: rgba(0, 0, 0, 0.24);
  margin-top: 50px;
}

.heightlight-section .heightlight-lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-pack: center;
}

.heightlight-section .heightlight-lists .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-align-items: center;
  -ms-align-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  color: #fff;
  padding: 0 50px;
}

.heightlight-section .heightlight-lists .list:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.5);
}

.heightlight-section .heightlight-lists .list i {
  font-size: 60px;
  margin-right: 30px;
}

.heightlight-section .heightlight-lists .list h4 {
  font-weight: 500;
  font-size: 40px;
  line-height: 1;
  margin: 0 10px 0 0;
}

.heightlight-section .heightlight-lists .list p {
  font-size: 20px;
  margin-bottom: 0;
}

@media screen and (max-width: 991px) {
  .heightlight-section .heightlight-lists .list {
    padding: 0 20px;
  }
}

@media screen and (max-width: 767px) {
  .heightlight-section {
    padding: 20px 0;
  }
  .heightlight-section .heightlight-lists .list i {
    font-size: 30px;
    margin-right: 15px;
  }
  .heightlight-section .heightlight-lists .list h4 {
    font-size: 22px;
  }
}

@media screen and (max-width: 480px) {
  .heightlight-section .heightlight-lists {
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    margin: 0 -20px;
  }
  .heightlight-section .heightlight-lists .list {
    padding: 10px 20px;
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -webkit-box-pack: center;
            justify-content: center;
    -ms-flex-pack: center;
  }
  .heightlight-section .heightlight-lists .list:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  }
}

/* brand-section */
.brand-section {
  overflow: hidden;
  padding: 50px 0 30px;
}

.brand-section h3 {
  color: #fff;
}

.brand-section .brand-slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-pack: center;
}

.brand-section .brand-slider li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-align-items: center;
  -ms-align-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 15px;
}

.brand-section .brand-slider li:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.5);
}

.brand-section .brand-slider li img {
  max-width: 300px;
}

@media screen and (max-width: 540px) {
  .brand-section .brand-slider li {
    padding: 0;
  }
}

/* partners-section */
.partners-section {
  overflow: hidden;
  background: #faa229;
  padding: 50px 0 30px;
}

.partners-section .section-title p {
  color: #fff;
}

.partners-section .section-title p::before, .partners-section .section-title p::after {
  background: #fff;
}

.partners-section .partners-slider li {
  background: #fff;
  border: 1px solid #eee;
  -webkit-box-shadow: 0 1px 12px rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.08);
  padding: 20px;
}

.partners-section .partners-slider li img {
  padding: 0 15px;
}

.partners-section .partners-slider .owl-dots {
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .partners-section .partners-slider .owl-dots {
    display: none !important;
  }
}

/* home-banner-bg */
.home-banner-bg {
  margin-top: -100px;
}

.home-banner-bg img {
  width: 100%;
}

/** breadcrumb **/
.page-banner {
  background: #1e2e5c;
  border-bottom: 5px solid #faa229;
}

.page-banner .breadcrumb {
  padding: 30px 0;
  margin: 0;
  background: none;
}

.page-banner .breadcrumb h2 {
  text-transform: uppercase;
  font-size: 36px;
  font-weight: 500;
  color: #fff;
  margin-top: 0;
}

@media screen and (max-width: 767px) {
  .page-banner .breadcrumb h2 {
    font-size: 26px;
  }
}

.page-banner .breadcrumb h2 span {
  font-weight: 700;
}

.page-banner .breadcrumb ul[class*="list-"] {
  margin-bottom: 0;
}

.page-banner .breadcrumb ul[class*="list-"] li {
  position: relative;
  padding: 0;
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  color: #faa229;
}

.page-banner .breadcrumb ul[class*="list-"] li:after {
  content: "/";
  position: relative;
  margin: 0 8px;
  color: #fff;
}

.page-banner .breadcrumb ul[class*="list-"] li:last-child::after {
  display: none;
}

.page-banner .breadcrumb ul[class*="list-"] li a {
  color: #fff;
}

/* main-content */
.main-content {
  padding: 50px 0;
  min-height: 400px;
  overflow: hidden;
}

/* about-page */
.about-content .top-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -15px 30px;
}

.about-content .top-content .content {
  background: #faa229;
  width: 50%;
  padding: 15px;
  margin: 0 10px;
  color: #fff;
}

.about-content .top-content .content:first-child {
  background: #1e2e5c;
}

@media screen and (max-width: 480px) {
  .about-content .top-content {
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
  }
  .about-content .top-content .content {
    width: 100%;
  }
  .about-content .top-content .content:first-child {
    margin-bottom: 20px;
  }
}

.timeline {
  position: relative;
  padding: 1rem;
  margin: 0 auto;
  max-width: 1300px;
}

.timeline:before {
  content: "";
  position: absolute;
  height: 100%;
  border: 2px solid #1e2e5c;
  right: 40px;
  top: 0;
}

.timeline:after {
  content: "";
  display: table;
  clear: both;
}

@media screen and (min-width: 768px) {
  .timeline {
    padding: 0 2rem;
  }
  .timeline:before {
    left: calc(50% - 1px);
    right: auto;
  }
}

.timeline__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: warp;
  flex-wrap: warp;
  -moz-align-items: center;
  -ms-align-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 1rem 3rem 1rem 1rem;
  clear: both;
  background: #1e2e5c;
  color: #fff;
}

.timeline__item .media {
  width: 200px;
  overflow: hidden;
}

.timeline__item .media img {
  -webkit-transition: all 1s;
  transition: all 1s;
}

.timeline__item .content {
  padding: 1rem;
  width: calc(100% - 200px);
}

.timeline__item:after, .timeline__item:before {
  content: "";
  position: absolute;
}

.timeline__item:before {
  right: -10px;
  top: calc(50% - 5px);
  border-style: solid;
  border-color: #1e2e5c #1e2e5c transparent transparent;
  border-width: 10px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.timeline__item:nth-of-type(2n) {
  background: #faa229;
  color: #fff;
}

.timeline__item:nth-of-type(2n)::before, .timeline__item:nth-of-type(2n)::after {
  border-color: #faa229 !important;
}

.timeline__item:hover .media img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

@media screen and (min-width: 767px) and (max-width: 991px) {
  .timeline__item {
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
  }
  .timeline__item .media {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    z-index: 1;
    width: 100%;
  }
  .timeline__item .content {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 100%;
    padding: 20px;
  }
}

@media screen and (min-width: 768px) {
  .timeline__item {
    width: 44%;
    margin: 1rem;
  }
  .timeline__item:nth-of-type(2n) {
    float: right;
    margin: 1rem;
    -o-border-image: linear-gradient(to right, #1e2e5c 0%, #1e2e5c 100%);
       border-image: -webkit-gradient(linear, left top, right top, from(#1e2e5c), to(#1e2e5c));
       border-image: linear-gradient(to right, #1e2e5c 0%, #1e2e5c 100%);
    border-image-slice: 1;
  }
  .timeline__item:nth-of-type(2n):before {
    right: auto;
    left: -10px;
    border-color: transparent transparent #1e2e5c #1e2e5c;
  }
}

@media screen and (max-width: 767px) {
  .timeline__item .media {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    z-index: 1;
  }
  .timeline__item .content {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

@media screen and (max-width: 640px) {
  .timeline__item {
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
  }
  .timeline__item .media {
    width: 100%;
  }
  .timeline__item .content {
    width: 100%;
    padding: 20px;
  }
}

.timeline__item--year {
  text-align: center;
  max-width: 160px;
  margin: 0 48px 0 auto;
  font-size: 1.5rem;
  background-color: #faa229;
  line-height: 1;
  -o-border-image: none;
     border-image: none;
  padding: 10px;
  color: #fff;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-pack: center;
}

.timeline__item--year:nth-of-type(2n) {
  background: #1e2e5c;
}

.timeline__item--year:first-child {
  margin-bottom: 50px;
  max-width: 220px;
  border-color: #faa229;
}

.timeline__item--year:before {
  display: none;
}

@media screen and (min-width: 768px) {
  .timeline__item--year {
    text-align: center;
    margin: 0 auto;
  }
  .timeline__item--year:nth-of-type(2n) {
    float: none;
    margin: 0 auto;
    -o-border-image: none;
       border-image: none;
  }
  .timeline__item--year:nth-of-type(2n):before {
    display: none;
  }
}

.timeline__title {
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-size: 1.5em;
}

.timeline__blurb {
  line-height: 1.5;
  font-size: 14px;
  margin: 0.5rem 0 0;
}

/* download-page */
.download-page .download-thumb {
  position: relative;
  background: #fff;
  width: 100%;
  border: 1px solid #eee;
  -webkit-box-shadow: 0 1px 12px rgba(0, 0, 0, 0.08);
          box-shadow: 0 1px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  margin: 10px 5px;
  overflow: hidden;
  text-align: center;
  padding: 10px 10px 0;
}

.download-page .download-thumb .download-image {
  overflow: hidden;
}

.download-page .download-thumb img {
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
}

.download-page .download-thumb h5 {
  font-size: 15px;
  margin: 0;
  padding: 20px 0;
  font-weight: 400;
}

.download-page .download-thumb .icon {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.download-page .download-thumb .icon a {
  background: #faa229;
  font-size: 25px;
  position: absolute;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  line-height: 60px;
  border: 2px solid #fff;
}

.download-page .download-thumb:hover img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.download-page .download-thumb:hover .icon {
  background: rgba(255, 255, 255, 0.8);
}

/* contact-page */
.contact-page {
  padding: 0 0 40px;
}

.contact-page .contact-details {
  position: relative;
  background: #fff;
  -webkit-box-shadow: 0px 10px 24.3px 2.7px rgba(42, 42, 42, 0.26);
          box-shadow: 0px 10px 24.3px 2.7px rgba(42, 42, 42, 0.26);
  margin: 0;
  margin-top: -100px;
  margin-bottom: 50px;
  padding: 15px 15px 15px 0;
}

.contact-page .contact-text {
  background: #faa229;
  padding: 30px;
  border: 1px solid #eee;
  color: #fff;
}

.contact-page .contact-text .heading-bx.left .title-head {
  font-weight: 300;
  padding-left: 15px;
  border-left: 5px solid #fff;
}

.contact-page .contact-text .heading-bx.left p {
  color: #fff;
}

.contact-page .contact-text ul li {
  position: relative;
  padding: 13px 0 13px 30px;
  border-bottom: 1px solid #eee;
  line-height: 30px;
  margin-bottom: 10px;
}

.contact-page .contact-text ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.contact-page .contact-text ul li i {
  position: absolute;
  left: 0;
  top: 18px;
  font-size: 18px;
  color: #fff;
}

.contact-page .contact-bx {
  padding: 30px 0;
}

.contact-page .contact-bx .title-head {
  font-weight: 300;
}

.contact-page .contact-bx .form-group .input-group {
  display: block;
  position: relative;
}

.contact-page .contact-bx .form-group .input-group .form-control {
  width: 100%;
  border-width: 0 0 1px 0;
  background-color: rgba(0, 0, 0, 0);
  padding: 10px 0;
}

.contact-page .contact-bx .form-group .input-group .form-control textarea {
  height: 120px;
}

.contact-page .contact-bx .form-group .input-group input:focus,
.contact-page .contact-bx .form-group .input-group select:focus,
.contact-page .contact-bx .form-group .input-group textarea:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-bottom: 1px solid #faa229;
}

.contact-page .contact-bx .btn {
  text-transform: uppercase;
  margin-top: 10px;
}

/* career-content */
.career-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.career-content .link {
  color: #ffc107;
  font-weight: 700;
}

/* product-page */
.product-page .product-section .product-sidebar .category-sidebar {
  margin-bottom: 30px;
}

.product-page .product-section .product-sidebar .category-sidebar h3 {
  background: #1e2e5c;
  margin: 0;
  padding: 15px 15px;
  font-size: 20px;
  text-transform: uppercase;
  color: #fff;
}

.product-page .product-section .product-sidebar .category-sidebar h3 .fa {
  float: right;
  font-size: 25px;
}

.product-page .product-section .product-sidebar .category-sidebar ul {
  padding: 0;
  margin: 0;
}

.product-page .product-section .product-sidebar .category-sidebar ul > li {
  position: relative;
  list-style: none;
}

.product-page .product-section .product-sidebar .category-sidebar ul > li > a {
  display: block;
  color: #121921;
}

.product-page .product-section .product-sidebar .category-sidebar ul > li.dropdown {
  padding: 15px;
  border-bottom: 1px solid #e9eaea;
}

.product-page .product-section .product-sidebar .category-sidebar ul > li.dropdown > a {
  font-size: 15px;
}

.product-page .product-section .product-sidebar .category-sidebar ul > li.dropdown > a:before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: 20px;
  right: 5px;
  background: url(../images/icons/icon-1.png) no-repeat;
}

.product-page .product-section .product-sidebar .category-sidebar ul > li.dropdown ul li a {
  font-size: 14px;
  padding: 5px 0px;
}

.product-page .product-section .product-sidebar .category-sidebar ul > li.active > a {
  position: relative;
  color: #faa229;
  padding: 10px 0;
}

.product-page .product-section .product-sidebar .category-sidebar ul > li.active > a:before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: 5px;
  right: 0;
  background: url(../images/icons/icon-1.png) no-repeat bottom;
}

.product-page .product-section .product-sidebar .category-sidebar ul > li.active ul {
  display: block;
}

.product-page .product-section .product-sidebar .category-sidebar ul > li > ul {
  display: none;
  margin: 0 -15px;
  padding: 0 15px;
}

.product-page .product-section .product-heading {
  margin-bottom: 5px;
}

.product-page .product-section .product-heading h4 {
  color: #1e2e5c;
  margin: 0;
}

.product-page .product-section .product-heading p {
  text-align: right;
}

.product-page .product-section .product-heading p b {
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .product-page .product-section .product-heading {
    margin-top: 20px;
    margin-bottom: 20px;
    background: #eee;
    padding: 15px 0;
  }
  .product-page .product-section .product-heading p {
    text-align: left;
    margin-bottom: 0;
  }
}

.product-page .product-section .product-thumb {
  width: 100%;
  margin: 0 0 20px 0;
}

.product-page .product-section .product-thumb .product-name {
  padding: 15px;
  text-align: center;
}

.product-page .product-section .product-thumb .product-name h5 {
  font-size: 15px;
  color: #faa229;
  margin: 0;
  padding-bottom: 10px;
  line-height: 1.5;
}

.product-page .product-section .product-thumb .product-name h5 a {
  color: #faa229;
}

.product-page .product-section .product-thumb .product-name p {
  font-size: 14px;
  padding-top: 10px;
  margin-bottom: 0;
}

.product-page .product-section .col-sm-9 .col-sm-6 {
  padding: 0 5px;
}

.product-page .product-section .pagination li {
  margin: 0 5px;
}

.product-page .product-section .pagination li a {
  text-align: center;
  line-height: 35px;
  width: 35px;
  height: 35px;
  border-radius: 50% !important;
  padding: 0;
  color: #121921;
  border-radius: 50%;
}

.product-page .product-section .pagination li a:hover, .product-page .product-section .pagination li a.selected {
  background: #faa229;
  color: #fff;
}

/* product-detailspage  */
.product-detailspage .product-details-section {
  padding-bottom: 50px;
}

.product-detailspage .product-details-section .product-images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-align-items: center;
  -ms-align-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.product-detailspage .product-details-section .product-images .modal-product-thumb {
  border-top: 1px solid transparent;
  clear: both;
  display: block;
  text-align: center;
  position: relative;
  z-index: 999;
  padding: 0 10px 10px;
  width: 120px;
}

.product-detailspage .product-details-section .product-images .modal-product-thumb img {
  padding: 2.5px;
}

.product-detailspage .product-details-section .product-images .main-image {
  width: calc(100% - 120px);
  overflow: hidden;
  -webkit-box-shadow: 0 1px 12px rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.08);
}

.product-detailspage .product-details-section .product-images .main-image .cloud-zoom img {
  margin: 0 auto;
  padding: 10px;
}

.product-detailspage .product-details-section .product-images .quick-thumbnails {
  position: relative;
  -webkit-box-shadow: 0 1px 12px rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.08);
  padding: 5px;
}

.product-detailspage .product-details-section .product-images .quick-thumbnails i {
  display: none !important;
  position: absolute;
  z-index: 9;
  background: #faa229;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  width: 30px;
  height: 30px;
  line-height: 30px;
  left: calc(50% - 20px);
}

.product-detailspage .product-details-section .product-images .quick-thumbnails i.fa-arrow-up {
  top: -35px;
}

.product-detailspage .product-details-section .product-images .quick-thumbnails i.fa-arrow-down {
  bottom: -35px;
}

.product-detailspage .product-details-section .product-images .quick-thumbnails i:hover {
  background: #1e2e5c;
  color: #fff;
}

.product-detailspage .product-details-section .product-images:hover .quick-thumbnails i {
  display: block !important;
}

@media screen and (max-width: 480px) {
  .product-detailspage .product-details-section .product-images {
    -moz-align-items: flex-start;
    -ms-align-items: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .product-detailspage .product-details-section .product-images .modal-product-thumb {
    width: 80px;
  }
  .product-detailspage .product-details-section .product-images .modal-product-thumb img {
    padding: 0;
  }
  .product-detailspage .product-details-section .product-images .main-image {
    width: calc(100% - 80px);
    margin-bottom: 30px;
  }
}

.product-detailspage .product-details-section .product-details-content h2 {
  color: #faa229;
  font-size: 30px;
  font-weight: normal;
  margin: 0 0 25px 0;
}

.product-detailspage .product-details-section .product-details-content .product-desc h3 {
  font-size: 18px;
  margin: 10px 0 15px;
}

.product-detailspage .product-details-section .product-details-content .product-desc p {
  font-size: 15px;
  margin: 0px 0px 10px 0px;
  letter-spacing: 0.6px;
}

.product-detailspage .product-details-section .product-details-content .product-desc ul li {
  font-size: 15px;
  position: relative;
  padding-left: 20px;
  margin-bottom: 5px;
}

.product-detailspage .product-details-section .product-details-content .product-desc ul li::before {
  content: "•";
  position: absolute;
  top: -10px;
  left: 0px;
  color: #faa229;
  font-size: 24px;
}

.product-detailspage .related-product-section .product-thumb {
  width: 100%;
  margin: 0 0 100px 0;
}
/*# sourceMappingURL=main.css.map */