@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&family=Raleway:wght@400;700&display=swap");
body, html {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  color: #343434;
}

img {
  max-width: 100%;
}

.preHeading {
  color: #ee2924;
  text-transform: uppercase;
  font-weight: 600;
}

h1, h2, h3 {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  color: #010101;
}

.heading {
  font-size: 46px;
  font-weight: 700;
}
@media (max-width: 1179px) {
  .heading {
    font-size: 36px;
  }
}

.btn {
  background: #ee2924;
  background: linear-gradient(-25deg, #f47721 0%, #ee2924 100%);
  color: #fff;
  border: 0;
  font-weight: 600;
  text-transform: uppercase;
  padding: 15px 30px;
  transition: all ease 0.1s;
}
.btn:hover {
  background: #17195b;
  background: linear-gradient(-25deg, #010101 0%, #17195b 100%);
  color: #fff;
}
.btn.light {
  background: #fff;
  color: #ee2924;
}
.btn.light:hover {
  background: #17195b;
  color: #fff;
}

.secPadding {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media (max-width: 991px) {
  .secPadding {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

.siteHeader {
  position: absolute;
  z-index: 999;
  width: 100%;
}
.modal-open .siteHeader {
  width: calc(100% - 17px);
}
@media (max-width: 1179px) {
  .modal-open .siteHeader {
    width: 100%;
  }
}
.siteHeader .logoBox {
  padding: 15px 30px;
}
.siteHeader .rightBox {
  height: 100%;
  padding: 15px 30px;
}
@media (max-width: 991px) {
  .siteHeader .rightBox {
    background-color: transparent;
  }
}
@media (max-width: 1179px) {
  .siteHeader .rightBox .navbar-toggler {
    border: 0;
    margin-left: 10px;
    color: #fff;
    font-size: 21px;
  }
}
@media (max-width: 1179px) and (max-width: 1179px) {
  .siteHeader .rightBox .navbar-toggler:focus {
    box-shadow: none;
  }
}
.siteHeader .rightBox .nav-item {
  padding-left: 30px;
  padding-right: 30px;
}
.siteHeader .rightBox .nav-item .nav-link {
  padding-left: 0;
  padding-right: 0;
  color: #fff;
}
.siteHeader .rightBox .nav-item .nav-link:hover {
  color: #ee2924;
}
@media (max-width: 1179px) {
  .siteHeader .rightBox .nav-item .nav-link {
    color: #fff;
  }
}
.siteHeader .rightBox .nav-item .nav-link.active {
  border-bottom: 2px solid #ee2924;
}
.siteHeader .rightBox .nav-item .dropdown-menu {
  min-width: 200px;
  font-size: 14px;
  background: #ee2924;
  background: linear-gradient(-25deg, #f47721 0%, #ee2924 100%);
}
.siteHeader .rightBox .nav-item .dropdown-menu a {
  color: #fff;
  padding: 10px 20px;
}
.siteHeader .rightBox .nav-item .dropdown-menu a:hover {
  background-color: #17195b;
}
.siteHeader .rightBox .iconBtn a {
  color: #fff;
}
.siteHeader .rightBox .iconBtn a:hover {
  color: #ee2924;
}
@media (max-width: 1179px) {
  .siteHeader .rightBox .offcanvas {
    background-color: #17195b;
  }
}

.searchModal {
  background-color: rgba(0, 0, 0, 0.7);
}
.searchModal .modal-content {
  background: transparent;
  border: 0;
  font-size: 21px;
}
.searchModal .modal-content .btn-close {
  position: fixed;
  top: 30px;
  right: 30px;
  opacity: 1;
  font-size: 32px;
}
.searchModal .modal-content .input-group input {
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid #fff;
  background-color: transparent;
  font-size: 30px;
  padding: 25px 5px;
  color: #fff;
}
.searchModal .modal-content .input-group input:focus {
  box-shadow: none;
}
.searchModal .modal-content .input-group input::placeholder {
  color: #fff;
}
@media (max-width: 767px) {
  .searchModal .modal-content .input-group input {
    font-size: 21px;
  }
}
.searchModal .modal-content .input-group button {
  border-radius: 0;
  font-size: 30px;
}
@media (max-width: 767px) {
  .searchModal .modal-content .input-group button {
    font-size: 21px;
  }
}

.bannerSlider {
  position: relative;
}
.bannerSlider .item {
  position: relative;
}
.bannerSlider .item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #17195b;
  opacity: 0.6;
}
.bannerSlider .item img {
  height: 100vh;
  object-fit: cover;
}
.bannerSlider .item .caption {
  position: absolute;
  width: 100%;
  top: 55%;
  transform: translateY(-55%);
  color: #fff;
}
.bannerSlider .item .caption .content {
  max-width: 850px;
  width: 100%;
  padding-left: 50px;
  position: relative;
}
.bannerSlider .item .caption .content::after {
  content: "";
  height: 100%;
  width: 10px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #ee2924;
  background: linear-gradient(90deg, #f47721 0%, #ee2924 100%);
}
@media (max-width: 767px) {
  .bannerSlider .item .caption .content::after {
    display: none;
  }
}
.bannerSlider .item .caption .content h1 {
  font-size: 46px;
  margin-bottom: 20px;
  color: inherit;
}
@media (max-width: 991px) {
  .bannerSlider .item .caption .content h1 {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .bannerSlider .item .caption .content h1 {
    font-size: 30px;
  }
}
.bannerSlider .item .caption .content p {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .bannerSlider .item .caption .content {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.bannerSlider .owl-theme .owl-nav {
  margin-top: 0;
}
.bannerSlider .owl-theme .owl-nav .owl-prev, .bannerSlider .owl-theme .owl-nav .owl-next {
  position: absolute;
  color: #fff;
  font-size: 21px;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
  height: 70px;
  width: 35px;
  text-align: center;
  line-height: 70px;
  background: #ee2924;
  background: linear-gradient(-25deg, #f47721 0%, #ee2924 100%);
  border-radius: 0;
  opacity: 0.5;
  transition: all ease 0.3s;
}
.bannerSlider .owl-theme .owl-nav .owl-prev:hover, .bannerSlider .owl-theme .owl-nav .owl-prev:hover, .bannerSlider .owl-theme .owl-nav .owl-next:hover, .bannerSlider .owl-theme .owl-nav .owl-next:hover {
  opacity: 1;
}
.bannerSlider .owl-theme .owl-nav .owl-prev {
  left: 0;
}
.bannerSlider .owl-theme .owl-nav .owl-next {
  right: 0;
}
.bannerSlider .innerBanner .caption, .bannerSlider .innerBanner .imgBox {
  height: 500px;
}
@media (max-width: 1399px) {
  .bannerSlider .innerBanner .caption, .bannerSlider .innerBanner .imgBox {
    min-height: 1px;
  }
}
@media (max-width: 991px) {
  .bannerSlider .innerBanner .caption, .bannerSlider .innerBanner .imgBox {
    height: 350px;
  }
}
@media (max-width: 767px) {
  .bannerSlider .innerBanner .caption, .bannerSlider .innerBanner .imgBox {
    text-align: center;
    justify-content: center;
  }
}

.bannerSlider {
  position: relative;
}
.bannerSlider .innerBanner .caption {
  height: 100%;
  background-color: #17195b;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-left: 7%;
  padding-right: 30px;
  position: relative;
}
@media (max-width: 1399px) {
  .bannerSlider .innerBanner .caption {
    min-height: 700px;
  }
}
@media (max-width: 991px) {
  .bannerSlider .innerBanner .caption {
    min-height: 1px;
    padding: 200px 15px 100px;
  }
}
@media (max-width: 767px) {
  .bannerSlider .innerBanner .caption {
    padding: 150px 15px 70px;
  }
}
.bannerSlider .innerBanner .caption::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/left-bg.png");
  mix-blend-mode: soft-light;
}
.bannerSlider .innerBanner .caption .contentBox {
  max-width: 500px;
}
@media (max-width: 991px) {
  .bannerSlider .innerBanner .caption .contentBox {
    max-width: 100%;
  }
}
.bannerSlider .innerBanner .caption .contentBox h1 {
  font-size: 46px;
  margin-bottom: 20px;
  color: white;
}
@media (max-width: 991px) {
  .bannerSlider .innerBanner .caption .contentBox h1 {
    font-size: 36px;
  }
}
.bannerSlider .innerBanner .caption .contentBox p {
  margin-bottom: 30px;
  color: white;
}
.bannerSlider .innerBanner .imgBox {
  height: 100%;
}
.bannerSlider .innerBanner .imgBox img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
@media (max-width: 991px) {
  .bannerSlider .innerBanner .imgBox img {
    max-height: 450px;
  }
}
.bannerSlider .dividerShape .row > div {
  position: relative;
}
.bannerSlider .dividerShape .triangle-section {
  background-color: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100px;
  -webkit-clip-path: polygon(100% 100%, 0 100%, 100% 0);
  clip-path: polygon(100% 100%, 0 100%, 100% 0);
  -webkit-transition: all 300ms ease;
  -khtml-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  z-index: 1;
}
@media (max-width: 767px) {
  .bannerSlider .dividerShape .triangle-section {
    display: none;
  }
}
.bannerSlider .dividerShape .callToBox {
  display: flex;
  padding: 30px;
  position: absolute;
  bottom: 0;
  z-index: 2;
  background: #ee2924;
  background: linear-gradient(-25deg, #f47721 0%, #ee2924 100%);
  width: 100%;
  max-width: 400px;
  align-items: center;
  color: #fff;
}
.bannerSlider .dividerShape .callToBox i {
  background-color: rgba(0, 0, 0, 0.1);
  height: 65px;
  width: 65px;
  line-height: 65px;
  border-radius: 50%;
  text-align: center;
  font-size: 26px;
  margin-right: 15px;
}
.bannerSlider .dividerShape .callToBox p {
  width: calc(100% - 65px);
  font-size: 21px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .bannerSlider .dividerShape .callToBox {
    position: relative;
  }
}
.bannerSlider .innerBanner .caption, .bannerSlider .innerBanner .imgBox {
  height: 500px;
}
@media (max-width: 1399px) {
  .bannerSlider .innerBanner .caption, .bannerSlider .innerBanner .imgBox {
    min-height: 1px;
  }
}
@media (max-width: 991px) {
  .bannerSlider .innerBanner .caption, .bannerSlider .innerBanner .imgBox {
    height: 350px;
  }
}
@media (max-width: 767px) {
  .bannerSlider .innerBanner .caption, .bannerSlider .innerBanner .imgBox {
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 991px) {
  .aboutSec .imgBox {
    margin-bottom: 30px;
  }
}
.aboutSec .imgBox img {
  width: 100%;
  border-radius: 10px;
}
@media (max-width: 991px) {
  .aboutSec .imgBox img {
    object-fit: cover;
    max-height: 350px;
  }
}
.aboutSec .contentBox p {
  margin-bottom: 30px;
}
.aboutSec .contentBox .negativePosition {
  margin-left: -35%;
  width: 135%;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .aboutSec .contentBox .negativePosition {
    margin-left: 0;
    width: 100%;
  }
}
.aboutSec .contentBox .negativePosition .iconBox {
  display: flex;
  border-radius: 10px;
  overflow: hidden;
}
.aboutSec .contentBox .negativePosition .iconBox .img {
  width: calc(100% - 150px);
}
.aboutSec .contentBox .negativePosition .iconBox .img img {
  height: 100%;
  object-fit: cover;
}
.aboutSec .contentBox .negativePosition .iconBox .icon {
  width: 150px;
  text-align: center;
  line-height: 150px;
  background: #ee2924;
  background: linear-gradient(-25deg, #f47721 0%, #ee2924 100%);
}
@media (max-width: 767px) {
  .aboutSec .contentBox .negativePosition .iconBox {
    margin-bottom: 30px;
  }
}
.aboutSec .contentBox .negativePosition ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.aboutSec .contentBox .negativePosition ul li {
  position: relative;
  margin-bottom: 15px;
  padding-left: 45px;
}
.aboutSec .contentBox .negativePosition ul li::before {
  content: "";
  width: 30px;
  height: 30px;
  background-image: url("../images/list-icon.png");
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  left: 0;
  top: 0;
}
.aboutSec .contentBox .negativePosition ul li:last-child {
  margin-bottom: 0;
}

.productSec {
  position: relative;
}
.productSec::before {
  content: "";
  background-image: url(../images/slider-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: calc(100% - 180px);
}
@media (max-width: 1179px) {
  .productSec::before {
    height: calc(100% - 32%);
  }
}
@media (max-width: 991px) {
  .productSec::before {
    height: 100%;
  }
}
.productSec > div {
  position: relative;
}
.productSec .headBox {
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  .productSec .d-flex {
    flex-wrap: wrap;
  }
}
.productSec #v-pills-tab .nav-link {
  background: transparent;
  border: 0;
  margin-bottom: 25px;
  font-size: 21px;
  font-weight: 700;
  font-family: "Raleway", sans-serif;
}
.productSec #v-pills-tab .nav-link.active {
  color: #ee2924;
}
.productSec #v-pills-tab .nav-link i {
  background-color: #fff;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  margin-right: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.productSec #v-pills-tab .btn {
  margin-top: 20px;
}
@media (max-width: 991px) {
  .productSec #v-pills-tab {
    display: flex;
    flex-direction: row !important;
    flex-wrap: wrap;
    margin-bottom: 30px;
  }
  .productSec #v-pills-tab button {
    flex: 0 0 50%;
    max-width: 50%;
    text-align: left;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .productSec #v-pills-tab button {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (max-width: 991px) {
  .productSec .productSlider {
    margin-bottom: 30px;
  }
}
.productSec .productSlider .product {
  position: relative;
  transition: all ease 0.3s;
}
.productSec .productSlider .product::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #010101;
  opacity: 0.7;
  transition: all ease 0.3s;
}
.productSec .productSlider .product img {
  width: auto;
  height: 433px;
  max-width: initial;
}
.productSec .productSlider .product .contentBox {
  position: absolute;
  bottom: -75px;
  padding: 20px;
  transition: all ease 0.3s;
}
.productSec .productSlider .product .contentBox h3 {
  color: #fff;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .productSec .productSlider .product .contentBox {
    bottom: 0;
  }
}
.productSec .productSlider .product:hover::before {
  opacity: 0.4;
}
.productSec .productSlider .product:hover .contentBox {
  bottom: 0;
}
.productSec .controls {
  position: absolute;
  top: 10px;
  right: 0;
}
@media (max-width: 1179px) {
  .productSec .controls {
    right: 15px;
  }
}
@media (max-width: 991px) {
  .productSec .controls {
    position: relative;
    top: 0;
    padding: 0 15px;
    text-align: center;
  }
}
.productSec .controls span {
  height: 55px;
  width: 55px;
  background-color: #fff;
  text-align: center;
  line-height: 55px;
  color: #ee2924;
  display: inline-block;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: all ease 0.3s;
}
.productSec .controls span:hover {
  background: #ee2924;
  background: linear-gradient(-25deg, #f47721 0%, #ee2924 100%);
  color: #fff;
}

.testiSec {
  background-image: url("../images/testimonial-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
}
.testiSec .imgBox {
  position: relative;
  top: -50px;
  height: 100%;
}
.testiSec .imgBox img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
@media (max-width: 991px) {
  .testiSec .imgBox {
    top: 0;
  }
  .testiSec .imgBox img {
    width: 100%;
    max-height: 450px;
  }
}
.testiSec .testiBox {
  height: 100%;
  background-color: #17195b;
  color: #fff;
  padding: 80px 50px;
  position: relative;
}
.testiSec .testiBox h2 {
  color: #fff;
  margin-bottom: 40px;
}
.testiSec .testiBox .mainTestimonial {
  font-size: 18px;
  line-height: 1.9;
  font-family: "Raleway", sans-serif;
}
@media (max-width: 1179px) {
  .testiSec .testiBox .mainTestimonial {
    font-size: 16px;
  }
}
.testiSec .testiBox .mainTestimonial .authorDetails {
  line-height: 1.3;
}
.testiSec .testiBox .mainTestimonial .authorDetails .author {
  font-weight: 700;
}
.testiSec .testiBox .arrowBtns {
  position: absolute;
  bottom: 0px;
  right: 0;
  background: #ee2924;
  background: linear-gradient(-25deg, #f47721 0%, #ee2924 100%);
  font-size: 0px;
}
.testiSec .testiBox .arrowBtns span {
  height: 50px;
  width: 50px;
  text-align: center;
  line-height: 50px;
  color: #fff;
  display: inline-block;
  cursor: pointer;
  transition: all ease 0.3s;
  font-size: 16px;
}
.testiSec .testiBox .arrowBtns span:hover {
  background-color: #fff;
  color: #ee2924;
}
@media (max-width: 767px) {
  .testiSec .testiBox {
    padding: 60px 30px;
  }
}

.clientLogos {
  margin-bottom: 50px;
  position: relative;
}
.clientLogos .heading {
  margin-bottom: 50px;
}
.clientLogos ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid rgba(23, 25, 91, 0.1);
  border-right: 1px solid rgba(23, 25, 91, 0.1);
}
.clientLogos ul li {
  flex: 0 0 16.66%;
  max-width: 16.66%;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 15px;
  border-left: 1px solid rgba(23, 25, 91, 0.1);
  border-bottom: 1px solid rgba(23, 25, 91, 0.1);
}
@media (max-width: 991px) {
  .clientLogos ul li {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
}
@media (max-width: 479px) {
  .clientLogos ul li {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
.clientLogos ul li img {
  max-height: 200px;
  display: inline-block;
}

.ctaBox .mainCTA {
  position: relative;
  padding: 60px 40px;
  background: #ee2924;
  background: linear-gradient(-25deg, #f47721 0%, #ee2924 100%);
  color: #fff;
  z-index: 3;
  margin-bottom: -90px;
}
.ctaBox .mainCTA::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/cta-bg.png");
  background-repeat: no-repeat;
  background-position: top center;
  mix-blend-mode: multiply;
}
.ctaBox .mainCTA .contentBox {
  position: relative;
  mix-blend-mode: hard-light;
}
.ctaBox .mainCTA .contentBox h3 {
  color: inherit;
  font-size: 30px;
}
.ctaBox .mainCTA .contentBox p {
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .ctaBox .mainCTA .contentBox {
    margin-bottom: 30px;
  }
}
.ctaBox .mainCTA .btnBox {
  position: relative;
}
.ctaBox .mainCTA .floatingText {
  position: absolute;
  font-weight: 700;
  font-family: Raleway;
  font-size: 150px;
  top: 5px;
  line-height: 1;
  right: 30px;
  z-index: -1;
  color: transparent;
  -webkit-text-stroke: 1px #fff;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 991px) {
  .ctaBox .mainCTA .floatingText {
    top: auto;
    bottom: 15px;
  }
}
@media (max-width: 767px) {
  .ctaBox .mainCTA .floatingText {
    font-size: 100px;
  }
}

.siteFooter {
  background-color: #17195b;
  color: #fff;
  padding-top: 100px;
  position: relative;
}
.siteFooter a {
  color: inherit;
  text-decoration: none;
  transition: all ease 0.3s;
}
.siteFooter a:hover {
  color: #ee2924;
}
.siteFooter::after {
  content: "";
  height: 10px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #ee2924;
  background: linear-gradient(180deg, #f47721 0%, #ee2924 100%);
}
.siteFooter .upperFooter {
  padding-top: 70px;
  padding-bottom: 70px;
  border-bottom: 1px solid #fff;
}
.siteFooter .upperFooter h3 {
  color: inherit;
  margin-bottom: 30px;
}
.siteFooter .upperFooter ul {
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}
.siteFooter .upperFooter .aboutBox .logoBox {
  margin-bottom: 20px;
}
.siteFooter .upperFooter .aboutBox .logoBox img {
  max-width: 180px;
}
.siteFooter .upperFooter .aboutBox .content {
  margin-bottom: 30px;
}
.siteFooter .upperFooter .aboutBox ul li {
  display: inline-block;
  margin-right: 15px;
}
@media (max-width: 991px) {
  .siteFooter .upperFooter .aboutBox {
    text-align: center;
  }
}
.siteFooter .upperFooter .links {
  padding-top: 70px;
}
.siteFooter .upperFooter .links ul {
  display: flex;
  flex-wrap: wrap;
}
.siteFooter .upperFooter .links ul li {
  flex: 0 0 100%;
  max-width: 100%;
  margin-bottom: 15px;
}
.siteFooter .upperFooter .contactInfo {
  padding-top: 70px;
}
.siteFooter .upperFooter .contactInfo ul li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 20px;
}
.siteFooter .upperFooter .contactInfo ul li i {
  position: absolute;
  left: 0;
  top: 5px;
  font-size: 21px;
}
.siteFooter .copyright {
  padding: 30px 0 40px;
}

.columnSec .contentBox {
  padding: 0px 30px 30px;
}
.columnSec .contentBox i {
  font-size: 30px;
  height: 75px;
  width: 75px;
  text-align: center;
  line-height: 75px;
  background: #ee2924;
  background: linear-gradient(180deg, #f47721 0%, #ee2924 100%);
  color: #fff;
  border-radius: 50%;
  margin-bottom: 20px;
  box-shadow: 0px 10px 20px rgba(23, 25, 91, 0.15);
}

.productList .product {
  margin-top: 15px;
  margin-bottom: 15px;
  border: 1px solid rgba(23, 25, 91, 0.15);
}
.productList .product img {
  height: 250px;
  object-fit: cover;
  width: 100%;
}
.productList .product .contentBox {
  padding: 20px;
}
.productList .product .contentBox h3 {
  margin-bottom: 15px;
  font-size: 20px;
}
.productList .product .contentBox h3 a {
  color: inherit;
  text-decoration: none;
  transition: all ease 0.3s;
}
.productList .product .contentBox h3 a:hover {
  color: #ee2924;
}

.contactPage .contactDetails {
  background: #ee2924;
  background: linear-gradient(-25deg, #f47721 0%, #ee2924 100%);
  color: #fff;
  padding: 30px;
}
.contactPage .contactDetails a {
  color: inherit;
  text-decoration: none;
}
.contactPage .contactDetails h3 {
  color: inherit;
  margin-bottom: 20px;
}
.contactPage .contactDetails > ul {
  list-style: none;
  padding-left: 0;
}
.contactPage .contactDetails > ul li {
  position: relative;
  margin-bottom: 15px;
  padding-left: 25px;
}
.contactPage .contactDetails > ul li i {
  position: absolute;
  left: 0;
  top: 5px;
}
.contactPage .contactDetails .socialIcons ul {
  list-style: none;
  padding-left: 0;
}
.contactPage .contactDetails .socialIcons ul li {
  display: inline-block;
  margin-right: 15px;
}
.contactPage .contactDetails .socialIcons ul li:last-child {
  margin-right: 0;
}
.contactPage .contactForm h3 {
  margin-bottom: 30px;
}
.contactPage .contactForm .formGrp input, .contactPage .contactForm .formGrp textarea, .contactPage .contactForm .formGrp select {
  padding: 10px 15px;
  display: block;
  width: 100%;
  border: 1px solid rgba(23, 25, 91, 0.15);
}
.contactPage .contactForm .formGrp input:focus, .contactPage .contactForm .formGrp input:focus, .contactPage .contactForm .formGrp input:focus, .contactPage .contactForm .formGrp textarea:focus, .contactPage .contactForm .formGrp textarea:focus, .contactPage .contactForm .formGrp textarea:focus, .contactPage .contactForm .formGrp select:focus, .contactPage .contactForm .formGrp select:focus, .contactPage .contactForm .formGrp select:focus {
  border: 1px solid #ee2924;
  outline: none;
}
.contactPage .map iframe {
  display: block;
  width: 100%;
}

/*# sourceMappingURL=style.css.map */
