
/*
Default Style
============================*/
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,500;0,700;0,900;1,100;1,300&display=swap");
body {
  font-size: 16px;
  font-family: "Lato", sans-serif;
  color: #555555;
}

a {
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  text-decoration: none;
  color: #555555;
}

a:hover {
  text-decoration: none;
  color: #16479d;
}

a:focus {
  text-decoration: none;
}

button {
  outline: 0 !important;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
}

button:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  color: #A77945;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
}

.d-table {
  width: 100%;
  height: 100%;
}

.d-table-cell {
  vertical-align: middle;
}

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

p:last-child {
  margin-bottom: 0;
}

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

.form-control {
  height: 50px;
  color: #16479d;
  border: 1px solid #ddd;
  background-color: transparent;
  border-radius: 0;
  font-size: 16px;
  padding: 10px 20px;
  width: 100%;
}

.form-control::-webkit-input-placeholder {
  color: #676a6a;
}

.form-control:-ms-input-placeholder {
  color: #676a6a;
}

.form-control::-ms-input-placeholder {
  color: #676a6a;
}

.form-control::placeholder {
  color: #676a6a;
}

.form-control:focus {
  color: #000000;
  background-color: transparent;
  -webkit-box-shadow: unset;
          box-shadow: unset;
  outline: 0;
  border: 1px solid #16479d;
}

.form-control:hover:focus, .form-control:focus {
  -webkit-box-shadow: unset;
          box-shadow: unset;
}

textarea.form-control {
  height: auto;
}

.ptb-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.ptb-70 {
  padding-top: 70px;
  padding-bottom: 70px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pt-70 {
  padding-top: 70px;
}

.pb-70 {
  padding-bottom: 70px;
}

.mt-100 {
  margin-top: 100px;
}

.mt-minus-100 {
  margin-top: -100px;
}

.mt-30 {
  margin-top: 30px;
}

.mb-30 {
  margin-bottom: 30px;
}

/*
Bg-color Style*/
.bg-color {
  background-color: #f9fafb;
}

/*
Default Btn Area Style*/
.default-btn {
  font-size: 16px;
  color: #ffffff;
  padding: 15px 40px;
  line-height: 1;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  text-align: center;
  background-color: #A77945;
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: inline-block;
  margin-bottom: -5px;
}

.default-btn span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#020202), to(transparent));
  background: linear-gradient(top, #000000, transparent);
  width: 2px;
  height: 100%;
}

.default-btn span::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(#000000), to(transparent));
  background: linear-gradient(bottom, #000000, transparent);
  width: 2px;
  height: 100%;
}

.default-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: -webkit-gradient(linear, right top, left top, from(#000000), to(transparent));
  background: linear-gradient(right, #000000, transparent);
  width: 100%;
  height: 2px;
}

.default-btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, right top, from(#000000), to(transparent));
  background: linear-gradient(left, #000000, transparent);
  width: 100%;
  height: 2px;
}

.default-btn:hover {
  background-color: #a77945ce;
  color: #ffffff;
}

.default-btn:hover::before {
  -webkit-animation: right 2s linear infinite;
          animation: right 2s linear infinite;
}

.default-btn:hover::after {
  -webkit-animation: left 2s linear infinite;
          animation: left 2s linear infinite;
}

.default-btn:hover span::before {
  -webkit-animation: top 2s linear infinite;
          animation: top 2s linear infinite;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.default-btn:hover span::after {
  -webkit-animation: bottom 2s linear infinite;
          animation: bottom 2s linear infinite;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

@-webkit-keyframes left {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes left {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@-webkit-keyframes right {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

@keyframes right {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

@-webkit-keyframes top {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}

@keyframes top {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}

@-webkit-keyframes bottom {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}

@keyframes bottom {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}

/*
Read More Btn Area Style*/
.read-more {
  font-weight: 600;
  font-size: 15px;
  color: #16479d;
}

.read-more i {
  position: relative;
  position: relative;
  top: 1.7px;
  margin-left: 5px;
}

.read-more:hover {
  color: #16479d;
  letter-spacing: 1px;
}

/*
Section Title Area Style*/
.section-title {
  max-width: 750px;
  margin: -5px auto 50px;
  text-align: center;
  position: relative;
}

.section-title span {
  font-size: 16px;
  display: block;
  margin-bottom: 15px;
  color: #16479d;
  text-transform: uppercase;
}

.section-title h2 {
  font-size: 40px;
  margin-bottom: 15px;
  position: relative;
}

.section-title h2:last-child {
  margin-bottom: 0;
}

.section-title.white-title span {
  color: #16479d;
}

.section-title.white-title h2 {
  color: #ffffff;
}

.section-title.white-title p {
  color: #ffffff;
}

/*
Header Area Style
======================================================*/
.header-area {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 999;
}

.top-header {
  background-color: #a77945;
  padding-top: 10px;
  padding-bottom: 10px;
}

.top-header .header-left-content {
  line-height: 1;
  list-style: none;
  padding: 0;
  margin: 0;
}

.top-header .header-left-content li {
  display: inline-block;
  margin-right: 30px;
  color: #ffffff;
  font-size: 14px;
  position: relative;
  padding-left: 30px;
}

.top-header .header-left-content li:last-child {
  margin-right: 0;
}

.top-header .header-left-content li i {
  color: #ffffff;
  display: inline-block;
  margin-right: 10px;
  font-size: 18px;
  position: absolute;
  top: -2px;
  left: 0;
}

.top-header .header-left-content li a {
  display: block;
  font-weight: 400;
  font-size: 15px;
  color: #ffffff;
}

.top-header .header-left-content li a:hover {
  color: #000024;
}

.top-header .header-right-content {
  line-height: 1;
  text-align: right;
}

.top-header .header-right-content .flag-area {
  display: inline-block;
  list-style: none;
  padding: 0;
  margin: 0;
}

.top-header .header-right-content .flag-area .flag-item-top {
  position: relative;
}

.top-header .header-right-content .flag-area .flag-item-top .flag-bar img {
  width: 25px;
  border: 2px solid #ffffff;
  border-radius: 50%;
}

.top-header .header-right-content .flag-area .flag-item-top .flag-bar span {
  position: relative;
  top: 1px;
  color: #ffffff;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  font-size: 15px;
  font-weight: 500;
  margin-left: 5px;
}

.top-header .header-right-content .flag-area .flag-item-top .flag-item-bottom {
  list-style: none;
  position: absolute;
  top: 50px;
  padding: 20px !important;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  background-color: #ffffff;
  width: 150px;
  right: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
  z-index: 2;
  margin: 0;
  text-align: left;
}

.top-header .header-right-content .flag-area .flag-item-top .flag-item-bottom::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  content: "";
  border-top: 0;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #ffffff;
  border-left: 8px solid transparent;
  top: -8px;
  right: 20px;
}

.top-header .header-right-content .flag-area .flag-item-top .flag-item-bottom .flag-item {
  margin-bottom: 15px;
}

.top-header .header-right-content .flag-area .flag-item-top .flag-item-bottom .flag-item:last-child {
  margin-bottom: 0;
}

.top-header .header-right-content .flag-area .flag-item-top .flag-item-bottom .flag-item .flag-link {
  color: #000024;
  display: block;
  font-size: 14px;
  font-weight: 600;
}

.top-header .header-right-content .flag-area .flag-item-top .flag-item-bottom .flag-item .flag-link img {
  width: 20px;
  margin-right: 5px;
  border-radius: 50%;
}

.top-header .header-right-content .flag-area .flag-item-top .flag-item-bottom .flag-item .flag-link:hover {
  color: #16479d;
}

.top-header .header-right-content .flag-area .flag-item-top:hover .flag-item-bottom {
  visibility: visible;
  opacity: 1;
  top: 35px;
}
.header-right-content .social-icon{
    
}
.header-right-content .social-icon {
  line-height: 1;
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.header-right-content .social-icon li {
  display: inline-block;
  margin-right: 5px;
}

.header-right-content .social-icon li a i {
  width: 30px;
  height: 30px;
  line-height: 28px;
  border: 1px solid #fff;
  color: #fff;
  text-align: center;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.header-right-content .social-icon li a:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.header-right-content .social-icon li a:hover i {
  background-color: #fff;
    color: #000000;
}
.top-header.top-header-two {
  border-radius: 0 0 10px 10px;
}

.top-header.top-header-three {
  overflow: hidden;
}

.top-header.top-header-three .header-left-content {
  position: relative;
}

.top-header.top-header-three .header-left-content::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -420px;
  width: 1155px;
  height: 100px;
  background-color: #000000;
  -webkit-clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
}

.top-header.top-header-three .header-left-content li a:hover {
  color: #A77945;
}

/*
Nav Area Style
======================================================*/
.navbar-area {
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  background-color: #ffffff;
}

.navbar-area .desktop-nav .navbar {
  position: inherit;
  padding: 0;
}

.navbar-area .desktop-nav .navbar .navbar-brand {
  font-size: inherit;
  line-height: 1;
  padding: 0;
}

.navbar-area .desktop-nav .navbar ul {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
}

.navbar-area .desktop-nav .navbar .navbar-nav .nav-item {
  position: relative;
  padding: 0;
}

.navbar-area .desktop-nav .navbar .navbar-nav .nav-item a {
  font-size: 15px;
  font-weight: 600;
  color: #000000;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  margin-left: 0;
  margin-right: 0;
  padding: 35px 0;
  position: relative;
  z-index: 1;
  margin: 0 15px;
}

.navbar-area .desktop-nav .navbar .navbar-nav .nav-item a i {
  font-size: 22px;
  line-height: 0;
  position: relative;
  top: 4px;
}

.navbar-area .desktop-nav .navbar .navbar-nav .nav-item a:hover {
  color: #A77945;
}

.navbar-area .desktop-nav .navbar .navbar-nav .nav-item a.active {
  color: #A77945;
}

.navbar-area .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu {
  position: absolute;
  top: 130%;
  left: 15px;
  opacity: 0;
  width: 250px;
  visibility: hidden;
  z-index: 99;
  display: block;
  padding: 0;
  background-color: #ffffff;
  border: none;
  border-radius: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
}

.navbar-area .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li {
  position: relative;
  padding: 0;
}

.navbar-area .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a {
  font-size: 14px;
  color: #000024;
  position: relative;
  padding: 10px 15px;
  border-bottom: 1px dashed #eeeeee;
  margin-left: 0;
  margin-right: 0;
  text-transform: capitalize;
  display: block;
  font-weight: 600;
}

.navbar-area .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a i {
  float: right;
  top: 12px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  font-size: 20px;
}

.navbar-area .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #16479d;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.navbar-area .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #16479d;
  -webkit-transition: all 1s;
  transition: all 1s;
}

.navbar-area .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:hover {
  color: #16479d;
  padding-left: 5px;
}

.navbar-area .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:hover::before {
  width: 100%;
}

.navbar-area .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:hover::after {
  width: 80%;
}

.navbar-area .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a.active {
  color: #16479d;
}

.navbar-area .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a.active::before {
  width: 100%;
}

.navbar-area .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a.active::after {
  width: 80%;
}

.navbar-area .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu {
  left: 100%;
  top: 0;
}

.navbar-area .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li:last-child a {
  border-bottom: none;
}

.navbar-area .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu {
  position: absolute;
  left: -98%;
  top: 20px !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

.navbar-area .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu {
  position: absolute;
  right: -100%;
  top: 0;
  opacity: 0 !important;
  visibility: hidden !important;
}

.navbar-area .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a {
  color: #000024;
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 600;
}

.navbar-area .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:hover {
  color: #16479d;
}

.navbar-area .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:focus {
  color: #16479d;
}

.navbar-area .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a.active {
  color: #16479d;
}

.navbar-area .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li:hover .dropdown-menu {
  opacity: 1 !important;
  visibility: visible !important;
  top: -4px !important;
}

.navbar-area .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li:hover .dropdown-menu li:hover .dropdown-menu {
  opacity: 1 !important;
  visibility: visible !important;
  top: -20px !important;
}

.navbar-area .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu:last-child .dropdown-menu {
  left: auto;
  right: -100%;
}

.navbar-area .desktop-nav .navbar .navbar-nav .nav-item:hover ul {
  opacity: 1;
  visibility: visible;
  top: 92%;
}

.navbar-area .desktop-nav .navbar .others-option .get-quote {
  display: inline-block;
  position: relative;
  top: 0;
}

.navbar-area.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.15);
  background-color: #ffffff;
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
          animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  padding-top: 5px;
  padding-bottom: 5px;
}

.navbar-area.navbar-area-style-two {
  max-width: 1110px;
  margin: auto;
  border-radius: 0 0 10px 10px;
}

.navbar-area.navbar-area-style-two.is-sticky {
  max-width: 100%;
  border-radius: 0;
}

.mobile-nav {
  display: none;
}

/*
Others Option For Responsive Area Style
======================================================*/
.others-option-for-responsive {
  display: none;
}

.others-option-for-responsive .dot-menu {
  padding: 0 10px;
  height: 30px;
  cursor: pointer;
  z-index: 9991;
  position: absolute;
  right: 60px;
  top: -34px;
}

.others-option-for-responsive .dot-menu .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 30px;
}

.others-option-for-responsive .dot-menu .inner .circle {
  height: 5px;
  width: 5px;
  border-radius: 100%;
  margin: 0 2px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  background-color: #000024;
}

.others-option-for-responsive .dot-menu:hover .inner .circle {
  background-color: #16479d;
}

.others-option-for-responsive .container {
  position: relative;
}

.others-option-for-responsive .container .container {
  position: absolute;
  right: 0;
  top: 10px;
  max-width: 260px;
  margin-left: auto;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  z-index: 2;
  padding-left: 15px;
  padding-right: 15px;
}

.others-option-for-responsive .container .container.active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

/*
Banner Area Style
======================================================*/
.banner-area {
    margin-top: 50px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 720px;
  position: relative;
  z-index: 1;
}

.banner-area.bg-1 {
  background-image: url(../../assets/img/home.jpg);
}


.banner-area.banner-area-two {
  overflow: hidden;
}

.banner-area.banner-area-two .background-video {
  position: absolute;
  bottom: 0;
  left: 0;
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
}

.banner-area.banner-area-two .banner-content {
  margin: 120px auto 0;
  text-align: center;
  z-index: 1;
  position: relative;
  max-width: 710px;
}

.banner-area.banner-area-two .banner-content .top-title {
  color: #ffffff;
}

.banner-area.banner-area-two .banner-content h1 {
  color: #ffffff;
}

.banner-area.banner-area-two .banner-content p {
  color: #ffffff;
}

.banner-area.banner-area-three {
  overflow: hidden;
}

.banner-area.banner-area-three::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: -webkit-gradient(linear, left top, right top, from(#ffffff), to(transparent));
  background-image: linear-gradient(to right, #ffffff, transparent);
  z-index: -1;
    opacity: 0;
}

.banner-area .col-lg-3 {
  position: relative;
}

.banner-content {
  overflow: hidden;
  max-width: 680px;
  margin-right: auto;
  margin-top: 50px;
    padding-left: 60px;
}

.banner-content .top-title {
  color: #16479d;
  display: block;
  margin-bottom: 15px;
  text-transform: uppercase;
  font-size: 14px;
}

.banner-content h1 {
  font-size: 35px;
  font-weight: 900;
  margin-bottom: 35px;
  color: #000000;
}

.banner-content p {
  margin-bottom: 35px;
  font-size: 17px;
  color: #000000;
}

.banner-content .banner-btn .default-btn.active {
  margin-left: 30px;
  background-color: transparent;
  border: 1px solid #16479d;
  color: #16479d;
}

.banner-content .banner-btn .default-btn.active::before {
  opacity: 0;
}

.banner-content .banner-btn .default-btn.active::after {
  opacity: 0;
}

.banner-content .banner-btn .default-btn.active span::before {
  opacity: 0;
}

.banner-content .banner-btn .default-btn.active span::after {
  opacity: 0;
}

.banner-content .banner-btn .default-btn.active:hover {
  background-color: #000024;
  color: #ffffff;
  border-color: #000024;
}

.banner-content .banner-btn .default-btn.active:hover::before {
  opacity: 1;
}

.banner-content .banner-btn .default-btn.active:hover::after {
  opacity: 1;
}

.banner-content .banner-btn .default-btn.active:hover span::before {
  opacity: 1;
}

.banner-content .banner-btn .default-btn.active:hover span::after {
  opacity: 1;
}

.quote-price-content {
  background-color: #16479d;
  padding: 30px;
  margin-top: 150px;
}

.quote-price-content h3 {
  font-size: 30px;
  margin-bottom: 5px;
  color: #ffffff;
}

.quote-price-content p {
  color: #ffffff;
  margin-bottom: 20px;
}

.quote-price-content .form .form-group label {
  color: #ffffff;
}

.quote-price-content .form .form-group .form-control {
  height: 50px;
  width: 100%;
  line-height: 48px;
  font-size: 13px;
  margin-bottom: 15px;
  padding-left: 20px;
  border-radius: 0;
  border-color: #dddddd;
  background-color: #ffffff;
}
.quote-price-content .form .form-group .textarea{
    height: 120px;
}

.quote-price-content .form .form-group .form-contro .option {
  color: #555555;
}

.quote-price-content .form .form-group .form-control span {
  text-align: left;
  font-weight: normal;
  font-size: 16px;
  margin-top: 0;
  color: #555555;
}

.quote-price-content .form .default-btn {
  width: 100%;
  background-color: #000024;
  border: 1px solid #16479d;
  color: #16479d;
  margin-top: 15px;
}

.quote-price-content .form .default-btn::before {
  opacity: 0;
}

.quote-price-content .form .default-btn::after {
  opacity: 0;
}

.quote-price-content .form .default-btn span::before {
  opacity: 0;
}

.quote-price-content .form .default-btn span::after {
  opacity: 0;
}

.quote-price-content .form .default-btn:hover {
  background-color: #000024;
  color: #ffffff;
}

.quote-price-content .form .default-btn:hover::before {
  opacity: 1;
}

.quote-price-content .form .default-btn:hover::after {
  opacity: 1;
}

.quote-price-content .form .default-btn:hover span::before {
  opacity: 1;
}

.quote-price-content .form .default-btn:hover span::after {
  opacity: 1;
}

/*
About Area Style
======================================================*/
.about-img {
  margin-bottom: 30px;
  position: relative;
    border:1px solid #ddd;
}

.about-img .experience {
  text-align: center;
  background-color: #A77945;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  display: inline-block;
  padding: 10px;
  position: absolute;
  bottom: 300px;
  right: -130px;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.about-img .experience h2 {
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 0;
  color: #ffffff;
}

.about-content {
  margin-left: 30px;
  margin-top: -5px;
  margin-bottom: 30px;
}

.about-content .top-title {
  color: #A77945;
  display: block;
  margin-bottom: 15px;
  text-transform: uppercase;
  font-size: 14px;
}

.about-content h2 {
  font-size: 40px;
  margin-bottom: 25px;
}

.about-content p {
  margin-bottom: 20px;
}

.about-content ul {
  padding: 0;
  list-style-type: none;
  line-height: 1;
}

.about-content ul li {
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  padding-left: 30px;
}

.about-content ul li i {
  position: absolute;
  top: -1px;
  left: 0;
  font-size: 20px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  border-radius: 50%;
  background-color: #A77945;
  text-align: center;
  color: #ffffff;
}

.about-content ul li:last-child {
  margin-bottom: 0;
}

.about-content .default-btn {
  margin-top: 30px;
}

/*
Services Area Style
======================================================*/
.services-area-two .single-services-box {
  position: relative;
  padding: 0;
}

.services-area-two .single-services-box::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #000000;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.services-area-two .single-services-box .services-content {
  position: relative;
  padding: 30px;
}

.services-area-two .single-services-box:hover::before {
  -webkit-transform: scale(0);
          transform: scale(0);
}

.single-services-box {
  padding: 30px;
  text-align: center;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.single-services-box i {
  font-size: 50px;
  background-color: rgba(0, 123, 255, 0.25);
  color: #16479d;
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  display: inline-block;
  border-radius: 50%;
  margin-bottom: 20px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.single-services-box h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.single-services-box h3 a {
  color: #000024;
}

.single-services-box h3 a:hover {
  color: #16479d;
}

.single-services-box:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.single-services-box:hover i {
  -webkit-transform: rotateX(-360deg);
          transform: rotateX(-360deg);
}

/*
Choose Area Style
======================================================*/
.choose-us-area{
     background-image: url(../../assets/img/we-are.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}
.choose-us-area-three .single-choose-us-box {
  margin-bottom: 30px;
  text-align: center;
}

.choose-us-area-three .choose-us-content p {
  margin-bottom: 35px;
}

.choose-us-content {
  margin-bottom: 30px;
}

.choose-us-content .top-title {
  color: #16479d;
  display: block;
  margin-bottom: 15px;
  text-transform: uppercase;
  font-size: 14px;
}

.choose-us-content h2 {
  font-size: 38px;
  margin-bottom: 25px;
}

.choose-us-content p {
  margin-bottom: 40px;
}

.choose-us-content .single-choose-us-box {
  background-color: #eef9ff;
  padding: 20px;
}

.choose-us-content .single-choose-us-box i {
  font-size: 40px;
  color: #A77945;
  display: block;
  margin-bottom: 10px;
  line-height: 1;
}

.choose-us-content .single-choose-us-box span {
  font-size: 16px;
  font-weight: 600;
}

.choose-us-content .single-choose-us-box.bg-color-1 {
  background-color: rgba(255,255,255,0.5);
}

.choose-us-content .single-choose-us-box.bg-color-2 {
  background-color: rgba(255,255,255,0.5);
}

.choose-us-content .choose-us-slider .owl-dots {
  margin-top: 25px !important;
  line-height: 1;
}

.choose-us-content .choose-us-slider .owl-dots .owl-dot span {
  width: 16px;
  height: 16px;
  margin: 0 4px;
  background: transparent;
  border: 1px solid #16479d;
  border-radius: 50%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: relative;
}

.choose-us-content .choose-us-slider .owl-dots .owl-dot:hover span {
  border-color: #16479d;
}

.choose-us-content .choose-us-slider .owl-dots .owl-dot:hover span::before {
  background-color: #16479d;
}

.choose-us-content .choose-us-slider .owl-dots .owl-dot.active span {
  border-color: #16479d;
  position: relative;
}

.choose-us-content .choose-us-slider .owl-dots .owl-dot.active span::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: #16479d;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 50%;
  margin: 3px;
}

.choose-us-img {
  margin-bottom: 30px;
}

/*
Counter Area Style
======================================================*/
.single-counter {
  border: none;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.10);
          box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.10);
  padding: 30px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  background-color: #ffffff;
  text-align: center;
  margin-bottom: 30px;
}

.single-counter i {
  width: 70px;
  height: 70px;
  line-height: 70px;
  font-size: 40px;
  border-radius: 50%;
  color: #16479d;
  background-color: rgba(0, 123, 255, 0.25);
  display: inline-block;
  margin: 0 auto 18px;
}

.single-counter p {
  color: #16479d;
  font-size: 18px;
}

.single-counter:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}


/*
Shipment Area Style
======================================================*/
.shipment-area {
  background-image: url(../../assets/img/let-us.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}

.shipment-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0.5;
  z-index: -1;
}

.shipment-content {
  text-align: center;
  max-width: 700px;
  margin: auto;
}

.shipment-content .top-title {
  color: #16479d;
  display: block;
  margin-bottom: 15px;
  text-transform: uppercase;
  font-size: 14px;
}

.shipment-content h2 {
  font-size: 40px;
  margin-bottom: 20px;
  color: #ffffff;
}

.shipment-content p {
  margin-bottom: 30px;
  color: #ffffff;
}

.shipment-content .shipment-btn .default-btn.active {
  margin-left: 30px;
  background-color: transparent;
  border: 1px solid #16479d;
  color: #16479d;
}

.shipment-content .shipment-btn .default-btn.active::before {
  opacity: 0;
}

.shipment-content .shipment-btn .default-btn.active::after {
  opacity: 0;
}

.shipment-content .shipment-btn .default-btn.active span::before {
  opacity: 0;
}

.shipment-content .shipment-btn .default-btn.active span::after {
  opacity: 0;
}

.shipment-content .shipment-btn .default-btn.active:hover {
  background-color: #000024;
  color: #ffffff;
  border-color: #000024;
}

.shipment-content .shipment-btn .default-btn.active:hover::before {
  opacity: 1;
}

.shipment-content .shipment-btn .default-btn.active:hover::after {
  opacity: 1;
}

.shipment-content .shipment-btn .default-btn.active:hover span::before {
  opacity: 1;
}

.shipment-content .shipment-btn .default-btn.active:hover span::after {
  opacity: 1;
}

/*
Testimonials Area Style
======================================================*/
.testimonials-page .single-testimonials {
  opacity: 1;
  margin-top: 0;
}

.single-testimonials {
  text-align: center;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  padding: 30px;
  margin-top: 30px;
  margin-bottom: 30px;
  opacity: 0.3;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.single-testimonials img {
  width: 90px;
  height: 90px;
  border: 2px solid #16479d;
  padding: 3px;
  border-radius: 50%;
  margin: 0 auto 25px;
}

.single-testimonials h3 {
  margin-bottom: 18px;
  font-size: 22px;
}

.single-testimonials p {
  margin-bottom: 20px;
}

.single-testimonials h4 {
  font-size: 18px;
  margin-bottom: 5px;
}

.single-testimonials span {
  color: #16479d;
}

.testimonials-slider .owl-item.active.center .single-testimonials {
  opacity: 1;
}

.testimonials-slider .owl-dots {
  margin-top: 25px !important;
  line-height: 1;
}

.testimonials-slider .owl-dots .owl-dot span {
  width: 16px;
  height: 16px;
  margin: 0 4px;
  background: transparent;
  border: 1px solid #16479d;
  border-radius: 50%;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  position: relative;
}

.testimonials-slider .owl-dots .owl-dot:hover span {
  border-color: #16479d;
  background-color: transparent;
}

.testimonials-slider .owl-dots .owl-dot:hover span::before {
  background-color: #16479d;
}

.testimonials-slider .owl-dots .owl-dot.active span {
  border-color: #16479d;
  background-color: transparent;
  position: relative;
}

.testimonials-slider .owl-dots .owl-dot.active span::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: #16479d;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  border-radius: 50%;
  margin: 3px;
}

.testimonials-slider .owl-item img {
  width: auto;
}

/*
Client Area Style
======================================================*/
.testimonials-area-two .owl-carousel .owl-item img {
  width: 90px;
  margin: auto;
}

.single-testimonials-two {
  background-color: #fff;
    border:1px solid #ddd;
  text-align: center;
  padding: 0 30px 30px 30px;
  border-radius: 4px;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  margin-top: 30px;
  position: relative;
  z-index: 1;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.single-testimonials-two img {
  border-radius: 50%;
  margin-bottom: -30px !important;
  position: relative;
  top: -30px;
  width: unset;
}

.single-testimonials-two h3 {
  margin-top: 20px;
  margin-bottom: 5px;
  color: #2e2e2e;
  font-size: 22px;
}

.single-testimonials-two span {
  margin-bottom: 10px;
  display: block;
  color: #2e2e2e;
}

.single-testimonials-two p {
  color: #2e2e2e;
}

.single-testimonials-two ul {
  line-height: 1;
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.single-testimonials-two ul li {
  display: inline-block;
  padding: 0 3px;
}

.single-testimonials-two ul li i {
  color: #ffc107;
}

.single-testimonials-two .quotes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #8383a7;
  font-size: 90px;
  z-index: -1;
  opacity: 0.3;
}
.request-quote .form .form-control{
    margin-bottom: 8px;
    border: 1px solid #ddd;
}
.side-btn{
    position: fixed;
    right: -62px;
    top: 250px;
    z-index: 99999;
    transform: rotate(-90deg);
    border: 2px solid #fff;
    display: none;
}
/*
Footer Top Area Style
======================================================*/
.footer-area {
  background-color: #fff8ef;
}

.single-footer-widget {
  margin-bottom: 30px;
}

.single-footer-widget .logo {
  margin-bottom: 20px;
  display: inline-block;
}

.single-footer-widget p {
  margin-bottom: 20px;
  color: #2e2e2e;
}

.single-footer-widget .social-icon {
  line-height: 1;
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.single-footer-widget .social-icon li {
  display: inline-block;
  margin-right: 5px;
}

.single-footer-widget .social-icon li a i {
  width: 30px;
  height: 30px;
  line-height: 28px;
  border: 1px solid #000000;
  color: #A77945;
  text-align: center;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.single-footer-widget .social-icon li a:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.single-footer-widget .social-icon li a:hover i {
  background-color: #16479d;
    color: #fff;
}

.single-footer-widget h3 {
  color: #2e2e2e;
  font-size: 24px;
  margin-bottom: 30px;
  padding-bottom: 15px;
  position: relative;
}

.single-footer-widget h3::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #d1d9e9;
}

.single-footer-widget .address {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.single-footer-widget .address .location {
  padding-left: 40px;
  position: relative;
}

.single-footer-widget .address .location i {
  position: absolute;
  color: #A77945;
  left: 0;
  top: 5px;
  font-size: 25px;
}

.single-footer-widget .address li {
  padding-left: 40px;
  position: relative;
  margin-bottom: 16px;
  color: #2e2e2e;
}

.single-footer-widget .address li a {
  display: block;
  color: #2e2e2e;
}

.single-footer-widget .address li a:hover {
  color: #16479d;
}

.single-footer-widget .address li:last-child {
  margin-bottom: 0;
}

.single-footer-widget .address li i {
  position: absolute;
  color: #A77945;
  left: 0;
  top: 5px;
  font-size: 25px;
}

.single-footer-widget .import-link {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.single-footer-widget .import-link li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.single-footer-widget .import-link li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 5px;
  height: 5px;
  background-color: #A77945;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.single-footer-widget .import-link li a {
  color: #2e2e2e;
}

.single-footer-widget .import-link li:last-child {
  margin-bottom: 0;
}

.single-footer-widget .import-link li:hover::before {
  border-radius: 50%;
}

.single-footer-widget .import-link li:hover a {
  color: #16479d;
}

/*
Copy Right Area Style
======================================================*/
.copy-right-area {
  background-color: #A77945;
  border-top: 1px solid #a77945a6;
  padding-top: 15px;
  padding-bottom: 15px;
  text-align: center;
}

.copy-right-area p {
  color: #ffffff;
}

.copy-right-area p a {
  color: #16479d;
}

.copy-right-area p i {
  position: relative;
  top: 1px;
}


/*====================================================
INNER PAGE STYLE AREA
======================================================*/
/* 
Page Title Area Style
=====================================================*/
.page-title-area {
  position: relative;
  overflow: hidden;
  padding-top: 285px;
  padding-bottom: 150px;
  text-align: center;
  z-index: 1;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.page-title-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: 0;
}

.page-title-area .page-title-content {
  position: relative;
  margin-top: -10px;
}

.page-title-area .page-title-content h2 {
  margin-bottom: 15px;
  font-size: 50px;
}

.page-title-area .page-title-content ul {
  padding-left: 0;
  list-style-type: none;
  margin-top: 10px;
  margin-bottom: -5px;
}

.page-title-area .page-title-content ul li {
  display: inline-block;
  position: relative;
  font-size: 16px;
  padding-right: 15px;
  margin-left: 15px;
  font-weight: 500;
}

.page-title-area .page-title-content ul li::before {
  content: "";
  position: absolute;
  top: 5px;
  right: -3px;
  background-color: #000000;
  width: 1px;
  height: 15px;
  -webkit-transform: rotate(25deg);
          transform: rotate(25deg);
}

.page-title-area .page-title-content ul li:last-child::before {
  display: none;
}

.page-title-area .page-title-content ul li a {
  color: #000000;
}

.page-title-area .page-title-content ul li a:hover {
  color: #A77945;
}

.page-title-area .page-title-content ul .active {
  color: #A77945;
}


.page-title-area.products-bg {
  background-image: url(../../assets/img/prpducts-bg.jpg);
}
.page-title-area.contact-bg{
  background-image: url(../../assets/img/contact-bg.jpg);
}
.page-title-area.abt-bg{
  background-image: url(../../assets/img/abt-bg.jpg);
}


/*
Product Area Style
======================================================*/

.ts-table{
    width: 100%;
    height: 100%;
  overflow-x: scroll;
}
.ts-table table{
    width: 100%;
    padding: 15px;
}
.ts-table table td{
    padding:15px;
}
.ts-col{
    background: #a77945;
}
.ts-head{
    color: #fff;
}
.showing-result {
  margin-bottom: 30px;
  margin-right: 15px;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  padding: 10px;
}

.showing-result .showing-top-bar-ordering {
  text-align: right;
}

.showing-result .showing-top-bar-ordering .nice-select {
  color: #16479d;
  border-radius: 0;
  border: none;
  float: unset;
  height: unset;
  line-height: initial;
  padding: 15px 35px 15px 15px;
  font-size: 16px;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
}

.showing-result .showing-top-bar-ordering .nice-select .list {
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  border-radius: 0;
  margin-top: 0;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  height: 250px;
  overflow-y: scroll;
}

.showing-result .showing-top-bar-ordering .nice-select .list .option {
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  font-size: 16px;
  padding-left: 20px;
  padding-right: 20px;
}

.showing-result .showing-top-bar-ordering .nice-select .list .option:hover {
  background-color: #16479d !important;
  color: #ffffff;
}

.showing-result .showing-top-bar-ordering .nice-select .list .option.selected {
  font-weight: 500;
  color: #555555;
}

.showing-result .showing-top-bar-ordering .nice-select:after {
  right: 20px;
}

.showing-result .search-form .search-btn {
  position: absolute;
  top: 0;
  right: 0;
  height: 50px;
  width: 50px;
  line-height: 50px;
  background-color: #16479d;
  color: #ffffff;
  font-size: 20px;
}

.showing-result .search-form .form-control {
  border: 1px solid #d7d7d7;
  background-color: #f5f6fa;
  font-size: 16px;
}

.showing-result .search-form .form-control::-webkit-input-placeholder {
  color: #616161;
}

.showing-result .search-form .form-control:-ms-input-placeholder {
  color: #616161;
}

.showing-result .search-form .form-control::-ms-input-placeholder {
  color: #616161;
}

.showing-result .search-form .form-control::placeholder {
  color: #616161;
}

.single-product {
  text-align: center;
  margin-bottom: 30px;
  padding: 30px;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
}

.single-product .product-img {
  position: relative;
  margin-bottom: 20px;
}

.single-product .product-img ul {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.single-product .product-img ul li {
  display: inline-block;
  margin: 0 5px;
}

.single-product .product-img ul li a i {
  font-size: 20px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: #ffffff;
  color: #000024;
  border-radius: 4px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.single-product .product-img ul li a:hover i {
  background-color: #16479d;
  color: #ffffff;
}

.single-product .product-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0.20;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.single-product a h3 {
  font-size: 20px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  margin-bottom: 10px;
}

.single-product a:hover h3 {
  color: #16479d;
}

.single-product span {
  font-size: 16px;
  display: block;
}

.single-product span del {
  margin-right: 10px;
}

.single-product .default-btn {
  width: 100%;
  margin-top: 25px;
}

.single-product:hover .product-img ul {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.single-product:hover .product-img::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

/*
Main Contact Area Style
=====================================================*/
.main-contact-area .contact-title {
  margin-top: -9px;
}

.main-contact-area .contact-title h2 {
  margin-bottom: 30px;
  font-size: 30px;
}

.main-contact-area #contactForm {
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  
  padding: 0px;
}

.main-contact-area .form-group {
  margin-bottom: 30px;
}

.main-contact-area .form-group.checkboxs {
  position: relative;
}

.main-contact-area .form-group.checkboxs #chb2 {
  position: absolute;
  top: 8px;
  left: 0;
}

.main-contact-area .form-group.checkboxs p {
  padding-left: 20px;
}

.main-contact-area .form-group.checkboxs p a {
  color: #16479d;
}

.main-contact-area .form-group.checkboxs p a:hover {
  color: #000024;
}

.main-contact-area .default-btn {
  cursor: pointer;
}

.main-contact-area .contact-info {
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  padding: 30px;
  padding-top: 60px;
  padding-bottom: 60px;
}

.main-contact-area .contact-info h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

.main-contact-area .contact-info p {
  margin-bottom: 25px;
}

.main-contact-area .contact-info .address .location {
  padding-left: 60px;
  position: relative;
}

.main-contact-area .contact-info .address .location i {
  position: absolute;
  color: #16479d;
  left: 0;
  top: 5px;
  font-size: 45px;
}

.main-contact-area .contact-info .address .location span {
  display: block;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
}

.main-contact-area .contact-info .address li {
  padding-left: 60px;
  position: relative;
  margin-bottom: 20px;
}

.main-contact-area .contact-info .address li a {
  color: #555555;
  display: block;
}

.main-contact-area .contact-info .address li a:hover {
  color: #16479d;
}

.main-contact-area .contact-info .address li:last-child {
  margin-bottom: 0;
}

.main-contact-area .contact-info .address li i {
  position: absolute;
  color: #16479d;
  left: 0;
  top: 0;
  font-size: 45px;
}

.main-contact-area .contact-info .address li span {
  display: block;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
}

.main-contact-area .contact-info .sidebar-follow-us {
  margin-top: 30px;
}

.main-contact-area .contact-info .sidebar-follow-us h3 {
  font-size: 20px;
  margin-bottom: 25px;
  line-height: 1;
  padding-left: 10px;
}

.main-contact-area .contact-info .sidebar-follow-us .social-wrap {
  line-height: 1;
}

.main-contact-area .contact-info .sidebar-follow-us .social-wrap li {
  display: inline-block;
  padding-right: 10px;
}

.main-contact-area .contact-info .sidebar-follow-us .social-wrap li a i {
  font-size: 15px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border: 1px solid #555555;
  border-radius: 50px;
  text-align: center;
  color: #555555;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.main-contact-area .contact-info .sidebar-follow-us .social-wrap li a:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.main-contact-area .contact-info .sidebar-follow-us .social-wrap li a:hover i {
  border-color: #16479d;
  background-color: #16479d;
  color: #ffffff;
}

.main-contact-area label {
  font-size: 16px;
}

.list-unstyled {
  color: #dc3545;
  font-size: 14px;
  margin-top: 10px;
}

#msgSubmit {
  margin-top: 20px;
  text-align: left;
}

.text-success {
  color: #28a745;
}

.hidden {
  display: none;
}

.map-area iframe {
  height: 480px;
  width: 100%;
  border: none !important;
  display: block;
}

.single-contact-info {
  text-align: center;
  margin-bottom: 30px;
  padding: 30px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  border-radius: 4px;
}

.single-contact-info i {
  display: block;
  color: #000000;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  font-size: 25px;
  width: 50px;
  height: 50px;
  margin: 0 auto 15px;
  line-height: 50px;
  border: 2px dotted #000000;
  border-radius: 50%;
}

.single-contact-info h3 {
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  font-size: 22px;
}

.single-contact-info a {
  color: #555555;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  display: block;
}





/* Global Location Area Style
=====================================================*/
.global-location-area .single-location-box {
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  text-align: center;
  border-radius: 4px;
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.global-location-area .single-location-box a {
  color: #16479d;
  padding: 25px;
  display: inline-block;
}

.global-location-area .single-location-box a i {
  font-size: 20px;
  display: inline-block;
  margin-right: 5px;
  position: relative;
  top: 3px;
}

.global-location-area .single-location-box a span {
  font-size: 16px;
  font-weight: 600;
}

.global-location-area .single-location-box:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.blog-column-one-area .single-blog-post {
  margin-left: 0;
  margin-right: 0;
}

.blog-column-two-area .single-blog-post {
  margin-left: 0;
  margin-right: 0;
}

.blog-column-three-area .single-blog-post {
  margin-left: 0;
  margin-right: 0;
}

.blog-left-sidebar-area .single-blog-post {
  margin-left: 0;
  margin-right: 0;
}

/*====================================================
OTHERS STYLE AREA
======================================================*/
/*
Preloader Area Style*/
.preloader {
  width: 100%;
  height: 100%;
  position: fixed;
  background-color: #A77945;
  top: 0;
  left: 0;
  z-index: 99999;
}

.preloader .lds-ripple {
  position: relative;
  width: 80px;
  height: 80px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.preloader .lds-ripple div {
  position: absolute;
  border: 2px solid #ffffff;
  opacity: 1;
  border-radius: 50%;
  -webkit-animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
          animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.preloader .lds-ripple div:nth-child(2) {
  -webkit-animation-delay: -0.5s;
          animation-delay: -0.5s;
}

.preloader::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 60%;
  z-index: -1;
  background: #A77945;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.preloader::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 60%;
  z-index: -1;
  background: #A77945;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  left: auto;
  right: 0;
}

.preloader.preloader-deactivate {
  visibility: hidden;
}

.preloader.preloader-deactivate::after {
  width: 0;
}

.preloader.preloader-deactivate::before {
  width: 0;
}

.preloader.preloader-deactivate .loader {
  opacity: 0;
  visibility: hidden;
}

@-webkit-keyframes lds-ripple {
  0% {
    top: 28px;
    left: 28px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: -1px;
    left: -1px;
    width: 58px;
    height: 58px;
    opacity: 0;
  }
}

@keyframes lds-ripple {
  0% {
    top: 28px;
    left: 28px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: -1px;
    left: -1px;
    width: 58px;
    height: 58px;
    opacity: 0;
  }
}

/*
Go Top Style*/
.go-top {
  position: fixed;
  cursor: pointer;
  top: 82%;
  right: -10%;
  background-color: #A77945;
  z-index: 4;
  width: 40px;
  text-align: center;
  height: 42px;
  line-height: 42px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .9s;
  transition: .9s;
}

.go-top i {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  color: #ffffff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 20px;
}

.go-top i:last-child {
  opacity: 0;
  visibility: hidden;
  top: 60%;
}

.go-top::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #16479d;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.go-top:hover {
  color: #ffffff;
  background-color: #16479d;
}

.go-top:hover::before {
  opacity: 1;
  visibility: visible;
}

.go-top:hover i:first-child {
  opacity: 0;
  top: 0;
  visibility: hidden;
}

.go-top:hover i:last-child {
  opacity: 1;
  visibility: visible;
  top: 50%;
}

.go-top:focus {
  color: #ffffff;
}

.go-top:focus::before {
  opacity: 1;
  visibility: visible;
}

.go-top:focus i:first-child {
  opacity: 0;
  top: 0;
  visibility: hidden;
}

.go-top:focus i:last-child {
  opacity: 1;
  visibility: visible;
  top: 50%;
}

.go-top.active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  visibility: visible;
  right: 3%;
  top: 82%;
}

/*
Video wave Style*/
.video-btn {
  display: inline-block;
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  border-radius: 0;
  color: #16479d;
  position: relative;
  top: 3px;
  z-index: 1;
  background-color: rgba(238, 50, 50, 0.9);
  border-radius: 50%;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.video-btn i {
  font-size: 42px;
  color: #ffffff;
  position: absolute;
  top: 1px;
  left: 4px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
}

.video-btn::after, .video-btn::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  bottom: 0;
  left: 0;
  border-radius: 0;
  border-radius: 50%;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  -webkit-animation: ripple 1.6s ease-out infinite;
          animation: ripple 1.6s ease-out infinite;
  background-color: rgba(238, 50, 50, 0.9);
}

.video-btn:hover::before, .video-btn:hover::after {
  background-color: rgba(238, 50, 50, 0.9);
}

@-webkit-keyframes ripple {
  0%, 35% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(2);
            transform: scale(2);
  }
}

@keyframes ripple {
  0%, 35% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(2);
            transform: scale(2);
  }
}

.video-btn-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.video-btn-2 span {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  position: absolute;
  content: "";
  display: block;
  border-radius: 50%;
  width: 50px;
  height: 50px;
}

.video-btn-2 span::after {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 0.1px solid #16479d;
  -webkit-animation: videoTwo 8s linear infinite;
          animation: videoTwo 8s linear infinite;
}

.video-btn-2 span::before {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 0.1px solid #16479d;
  -webkit-animation: videoTwo 8s linear infinite;
          animation: videoTwo 8s linear infinite;
}

.video-btn-2 span:nth-child(1)::after {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.video-btn-2 span:nth-child(1)::before {
  -webkit-animation-delay: 5s;
          animation-delay: 5s;
}

.video-btn-2 span:nth-child(2)::after {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.video-btn-2 span:nth-child(2)::before {
  -webkit-animation-delay: 6s;
          animation-delay: 6s;
}

.video-btn-2 span:nth-child(3)::after {
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}

.video-btn-2 span:nth-child(3)::before {
  -webkit-animation-delay: 7s;
          animation-delay: 7s;
}

.video-btn-2 span:nth-child(4)::after {
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
}

.video-btn-2 i {
  width: 80px;
  height: 80px;
  line-height: 70px;
  text-align: center;
  border-radius: 50%;
  display: block;
  background: #ffffff;
  color: #16479d;
  border: 5px solid #16479d;
  font-size: 50px;
}

@-webkit-keyframes videoTwo {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(5);
            transform: translate(-50%, -50%) scale(5);
    opacity: 0;
  }
}

@keyframes videoTwo {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(5);
            transform: translate(-50%, -50%) scale(5);
    opacity: 0;
  }
}

/*
Nice select Area Style*/
.nice-select .list {
  width: 100%;
  border-radius: 0;
}

.nice-select .option:hover {
  background-color: #16479d;
  color: #ffffff;
}

.nice-select .option.selected.focus {
  color: #16479d;
}

.nice-select .current {
  font-size: 16px;
}

/*
Page-navigation Area Style*/
.pagination-area {
  margin-top: 10px;
  text-align: center;
}

.pagination-area .page-numbers {
  width: 40px;
  height: 40px;
  line-height: 40px;
  color: #000024;
  text-align: center;
  display: inline-block;
  position: relative;
  margin-left: 3px;
  margin-right: 3px;
  font-size: 17px;
  background-color: #f5f6fa;
  border: 1px solid #d7d7d7;
}

.pagination-area .page-numbers:hover {
  color: #ffffff;
  border-color: #16479d;
  background-color: #16479d;
}

.pagination-area .page-numbers i {
  position: relative;
  font-size: 25px;
  top: 5px;
}

.pagination-area .page-numbers.current {
  color: #ffffff;
  border-color: #16479d;
  background-color: #16479d;
}

/*
Overly Area Style*/
.overly-one {
  position: relative;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.overly-one::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: -100%;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(#16479d), to(transparent));
  background: linear-gradient(left, #16479d, transparent);
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  opacity: 0;
  z-index: 1;
}

.overly-one::after {
  content: "";
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 2px;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#16479d), to(transparent));
  background: linear-gradient(top, #16479d, transparent);
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  opacity: 0;
}

.overly-one .overly-two::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(transparent), to(#16479d));
  background: linear-gradient(left, transparent, #16479d);
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  opacity: 0;
}

.overly-one .overly-two::after {
  content: "";
  position: absolute;
  top: -100%;
  right: 0;
  width: 2px;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(#16479d), to(transparent));
  background: linear-gradient(bottom, #16479d, transparent);
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  opacity: 0;
}

.overly-one:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.overly-one:hover .overly-two::before {
  left: 30px;
  opacity: 1;
}

.overly-one:hover .overly-two::after {
  top: 30px;
  opacity: 1;
}

.overly-one:hover::before {
  right: 30px;
  opacity: 1;
}

.overly-one:hover::after {
  bottom: 30px;
  opacity: 1;
}

/*
Tabs Area Style*/
.tab .tabs_item {
  display: none;
}

.tab .tabs_item:first-child {
  display: block;
}

.product-p{

  color: black;
}
/*# sourceMappingURL=style.css.map */