* {
  margin: 0;
  padding: 0;
  outline: 0;
}

:root {
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
}

@font-face {
  font-family: Geomanist-thin;
  src: url(../css/fonts/Geomanist-Thin.woff) format("woff"),
    url(../css/fonts/Geomanist-Thin.woff2) format("woff2"),
    url(../css/fonts/Geomanist-Thin.ttf) format("truetype");
}
@font-face {
  font-family: Geomanist-regular;
  src: url(../css/fonts/Geomanist-Regular.woff) format("woff"),
    url(../css/fonts/Geomanist-Regular.woff2) format("woff2"),
    url(../css/fonts/Geomanist-Regular.ttf) format("truetype");
}
@font-face {
  font-family: Geomanist-medium;
  src: url(../css/fonts/Geomanist-Medium.woff) format("woff"),
    url(../css/fonts/Geomanist-Medium.woff2) format("woff2"),
    url(../css/fonts/Geomanist-Medium.ttf) format("truetype");
}
@font-face {
  font-family: Geomanist-bold;
  src: url(../css/fonts/Geomanist-Bold.woff) format("woff"),
    url(../css/fonts/Geomanist-Bold.woff2) format("woff2"),
    url(../css/fonts/Geomanist-Bold.ttf) format("truetype");
}
@font-face {
  font-family: Geomanist-black;
  src: url(../css/fonts/Geomanist-Black.woff) format("woff"),
    url(../css/fonts/Geomanist-Black.woff2) format("woff2"),
    url(../css/fonts/Geomanist-Black.ttf) format("truetype");
}

body {
  font-family: Geomanist-regular;
  overflow-x: hidden;
  color: #91a2b4;
}

@media screen and (min-width: 1400px) {
  .container {
    max-width: 1170px;
  }
}

a {
  color: #4154f1;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
}

.header.header-scrolled {
  background: rgba(30, 33, 40, 1);
  padding: 15px 0;
  box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
}

.header .logo {
  line-height: 0;
}

.header .logo img {
  max-height: 52px;
  margin-right: 6px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
  padding: 0 15px;
}

.navbar a,
.navbar a:focus,
.navbar a:hover {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 0px;
  position: relative;
  font-size: 16px;
  color: #91a2b4;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 7px;
  left: 0;
  background-color: #ff7b19;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a.active:before,
.navbar a:hover:before {
  visibility: visible;
  width: 100%;
}

/* .navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
} */
/*
.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: #4154f1;
} */

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
  font-weight: 600;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  color: #4154f1;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(42, 47, 53, 0.9);
  transition: 0.3s;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a {
  padding: 10px 20px;
  font-size: 15px;
  color: #222;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #222;
}

.navbar-mobile .getstarted {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  color: #4154f1;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#banner-sec {
  width: 100%;
  height: 850px;
  background: url(../images/banner.jpg) no-repeat;
  background-size: cover;
  background-position: 50% 35%;
  position: relative;
}

#banner-sec:after {
  content: "";
  position: absolute;
  display: block;
  border-bottom: 8px solid #ff7b19;
  width: 20%;
  bottom: 35%;
}

#banner-sec h1 {
  color: #fff;
  font-family: Geomanist-bold;
  font-size: 40px;
  line-height: 2.5rem;
  margin-bottom: 1rem;
}

#banner-sec h2 {
  font-size: 20px;
}

/* About Section */
#about {
  position: relative;
  background: url(../images/about-bg.jpg) no-repeat top left;
  background-size: cover;
  background-attachment: fixed;
  height: 830px;
  overflow: hidden;
}

#about:before {
  content: "";
  position: absolute;
  right: 0;
  display: block;
  width: 52%;
  z-index: 1;
  border-top: 8px solid #6187b5;
  border-left: 8px solid transparent;
}
#about:after {
  content: "";
  position: absolute;
  left: 0;
  display: block;
  width: 48%;
  z-index: 1;
  border-bottom: 8px solid rgba(42, 47, 53, 0.23);
  border-right: 8px solid transparent;
  bottom: 0;
}

.about-pos-right {
  background: #2a2f35;
  position: absolute;
  right: 0;
  height: 100%;
}

.about-content {
  position: relative;
  padding-left: 30px;
  padding-top: 3rem;
}

.about-content p {
  font-size: 13px;
  color: #fff;
}

.about-content p a {
  color: #fff;
}

.about-content h1 {
  font-family: Geomanist-bold;
  color: #545e6a;
  text-transform: uppercase;
  font-size: 106px;
  line-height: 5rem;
}

.about-content h2 {
  font-size: 48px;
  font-family: Geomanist-bold;
  color: #fff;
  position: relative;
}

.about-content h2:after {
  content: "";
  position: relative;
  border-bottom: 3px solid #fff;
  display: block;
  width: 210px;
  bottom: 0;
  padding-bottom: 0.3rem;
}

.about-content h2 span {
  color: #ff7b19;
}

.about_left_img img {
  width: 90%;
  display: block;
  margin-left: auto;
  position: relative;
}

.about_left_img {
  position: relative;
  top: 150px;
}

.about_left_img:before {
  content: "";
  position: absolute;
  border: 7px solid #ff7b19;
  width: 100%;
  height: 300px;
  left: -38%;
  top: 115px;
}

.about-pos-right-img {
  position: absolute;
  height: 100%;
  right: 0;
}

.about-pos-right-img img {
  width: 100%;
  object-fit: fill;
}
/* End About Section */

/* IPL & Shaw Development */
#ipl-sec {
  position: relative;
  padding: 1.5rem 0;
}

#ipl-sec .col-lg-2 {
  padding-left: 20px;
  padding-right: 20px;
}

.content-ipl {
  position: relative;
}

.content-ipl:after {
  content: "";
  position: absolute;
  display: block;
  background: url(../images/shadow1.png) no-repeat right;
  background-size: contain !important;
  height: 100%;
  right: -20px;
  top: 0;
  width: 100px;
}

#ipl-sec figcaption {
  text-align: center;
  font-size: 18px;
  color: #393939;
  padding-top: 0.3rem;
}
.title-1 img {
  width: 150px;
}

.title-1 h1 {
  font-size: 30px;
  font-family: Geomanist-bold;
  color: #2f2f2f;
  padding-top: 0.5rem;
  margin-bottom: 0;
}

.title-1 h1 a {
  color: #2f2f2f;
}

.title-1 p {
  width: 425px;
  margin: auto;
  color: #2a2f35;
  font-size: 16px;
  padding-bottom: 2.5rem;
}

.title-1 p span {
  font-family: Geomanist-bold;
  display: block;
}

.title-2 {
  text-align: center;
}

.title-2 h2 {
  border: 1px solid #ff7b19;
  font-size: 34px;
  color: #141414;
  font-family: Geomanist-medium;
  display: inline-block;
  padding: 0.5rem 1rem;
}

.title-2 h2 span {
  color: #ff7b19;
  font-family: Geomanist-bold;
}

.title-2 p {
  color: rgba(42, 47, 53, 0.81);
  font-size: 18px;
  font-family: Geomanist-medium;
  margin-bottom: 1.25rem;
}
/* End IPL & Shaw Development */

/* Why IPL Shaw Solutions */
#why-ipl-shaw-solutions {
  position: relative;
  color: #fff;
  background: url(../images/why-ipl-shaw-bg.jpg) no-repeat center;
  background-size: cover;
  padding: 4.5rem 0 6rem;
  top: 50px;
  margin-top: -50px;
}

#why-ipl-shaw-solutions h1 {
  border: 1px solid #ff7b19;
  font-family: Geomanist-regular;
  font-size: 36px;
  padding: 0.5rem 0.75rem;
}

#why-ipl-shaw-solutions p {
  font-size: 22px;
  font-family: Geomanist-medium;
  padding-left: 1.25rem;
  padding-top: 0.75rem;
}

#why-ipl-shaw-solutions ul {
  font-size: 20px;
  margin: 0;
  padding-left: 2.5rem;
}
/* End Why IPL Shaw Solutions */

/* Technology Section */
#tech-sec {
  position: relative;
  top: 50px;
  margin-top: -50px;
  z-index: 1;
}

#tech-sec [class*="col-lg"] {
  display: flex;
}

.grey-card {
  background: #3c444e;
  color: #fff;
  width: 100%;
  padding: 1.5rem 1.5rem 2rem;
  box-shadow: 8px 12px 7px 2px rgba(0, 0, 0, 0.2);
}

.grey-card.g-light {
  background: #545f6e;
}

.grey-card.g-light .img-fluid {
  padding: 15px 15px 0;
}

.grey-card h1 {
  font-size: 24px;
  font-family: Geomanist-medium;
  position: relative;
  text-align: center;
}

.grey-card h1:after {
  content: "";
  position: relative;
  border-bottom: 3px solid #ff7b19;
  width: 275px;
  display: block;
  margin: auto;
  padding-bottom: 0.85rem;
}

@media (min-width: 768px) and (max-width: 991px) {
  .grey-card h1:after {
    width: 175px;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
  .grey-card h1:after {
    width: 250px;
  }
}

.grey-card ul {
  margin: 0;
}

.grey-card ul li {
  font-size: 20px;
  line-height: 1.7rem;
  padding-bottom: 0.5rem;
}

.grey-card ul li:last-child {
  padding-bottom: 0;
}
/* End Technology Section */

/* IPL Shaw Solutions Section */
#ipl-shaw-solutions {
  background: #ececec;
  color: #2a2f35;
  padding: 6.5rem 0 3rem;
  position: relative;
}

#ipl-shaw-solutions .img-fluid {
  width: 80%;
  margin-left: auto;
  display: block;
}

#ipl-shaw-solutions:before {
  content: "";
  position: absolute;
  display: block;
  background: #d3d4d5;
  height: 135px;
  width: 100px;
  left: 0;
}

#ipl-shaw-solutions :after {
  content: "";
  position: absolute;
  left: 0;
  display: block;
  width: 48%;
  z-index: 1;
  border-bottom: 8px solid #ff7b19;
  border-right: 8px solid transparent;
  bottom: 0;
}

#ipl-shaw-solutions h1 {
  font-family: Geomanist-bold;
  font-size: 51px;
  text-transform: uppercase;
  margin-bottom: 0;
  line-height: 3.2rem;
}

#ipl-shaw-solutions h1 span {
  color: #ff7b19;
  display: block;
}

#ipl-shaw-solutions h4 {
  font-family: Geomanist-regular;
  font-size: 33px;
  border-bottom: 3px solid #ff7b19;
  padding-bottom: 0.5rem;
}

#ipl-shaw-solutions p {
  font-size: 22px;
  font-family: Geomanist-medium;
}
/* End IPL Shaw Solutions Section */

/* Contact Section */
#contact-sec {
  position: relative;
  padding-bottom: 2rem;
}

#contact-sec h1 {
  color: #ececec;
  font-size: 12rem;
  line-height: 10rem;
}

#contact-sec h1,
#contact-sec h2,
#contact-sec h3 {
  font-family: Geomanist-bold;
  margin-bottom: 0;
}

#contact-sec h2 {
  color: #ff7b19;
  font-size: 31px;
}
#contact-sec h3 {
  color: #2a2f35;
  font-size: 20px;
}
#contact-sec p {
  color: #2a2f35;
  font-size: 18px;
}

.contact-card {
  border: 5px solid #ff7b19;
  display: flex;
  width: 100%;
  padding: 1.5rem;
  margin-top: 4rem;
}

.contact-map {
  position: relative;
}

.contact-map iframe {
  border: 4px solid #d5d7da;
  position: absolute;
  top: -135px;
  width: 100%;
}

.contact-map:after {
  content: "";
  position: absolute;
  display: block;
  background: url(../images/map-shadow.png) no-repeat;
  background-size: contain !important;
  width: 100%;
  bottom: -235px;
  height: 100%;
}

.contact-info {
  padding-left: 40px;
}
/* End Contact Section */

/* We Are Section */
#we-are-sec {
  background: url(../images/we-are-bg.jpg) no-repeat;
  background-size: cover;
  width: 100%;
  background-position: 0 100%;
  padding: 3rem 0 4rem;
  position: relative;
}

#we-are-sec:before {
  content: "";
  position: absolute;
  right: 0;
  display: block;
  width: 40%;
  z-index: 1;
  top: 0;
  border-top: 8px solid #ff7b19;
  border-left: 8px solid transparent;
}

#we-are-sec h1 {
  font-family: Geomanist-thin;
  color: rgba(116, 116, 116, 0.15);
  font-size: 165px;
  position: absolute;
  top: -2.5rem;
}

#we-are-sec h4 {
  margin-bottom: 1rem;
  color: #222;
}

#we-are-sec h4 span {
  display: block;
  font-family: Geomanist-bold;
}

.location-con {
  position: relative;
  top: 2.5em;
}

.icon1,
.icon2,
.icon3 {
  position: relative;
  padding-left: 35px;
}

.icon1:before,
.icon2:before,
.icon3:before {
  content: "";
  position: absolute;
  left: 0;
  display: block;
  background-size: contain !important;
}

.icon1:before,
.icon2:before {
  width: 26px;
  height: 26px;
}

.icon1:before {
  background: url(../images/icon-1.png) no-repeat;
}
.icon2:before {
  background: url(../images/icon-2.png) no-repeat;
}
.icon3:before {
  background: url(../images/icon-3.png) no-repeat;
  width: 15px;
  height: 15px;
  top: 8px;
  left: 5px;
}

.form-bg {
  background: rgba(0, 0, 0, 0.5);
  padding: 2rem;
  width: 80%;
  margin-left: auto;
  border-radius: 30px;
}

.form-bg .form-group {
  margin-bottom: 1.25rem;
}

.form-bg .form-control {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.27);
  border-radius: 0;
  font-size: 1.5rem;
  color: #fff;
  font-family: Geomanist-medium;
}

.form-bg textarea.form-control {
  resize: none;
  background: rgba(255, 255, 255, 0.27);
  border: 0;
}

input::placeholder {
  color: white;
}

.form-control::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: white;
}
.form-control::-moz-placeholder {
  /* Firefox 19+ */
  color: white;
}
.form-control:-ms-input-placeholder {
  /* IE 10+ */
  color: white;
}
.form-control:-moz-placeholder {
  /* Firefox 18- */
  color: white;
}

.send-btn {
  background: #ff7b19;
  color: #fff;
  border-radius: 25px;
  border: 1px solid #ff7b19;
  padding: 0.5rem 1rem 0.6rem;
  line-height: 1rem;
  display: block;
  margin: auto;
  font-size: 18px;
  font-family: Geomanist-medium;
}
/* End We Are Section */

/* Footer Section */
.footer-top {
  background: #3c444e;
  color: #fff;
  padding: 2rem 0;
  position: relative;
}

.footer-top:before {
  background: #5f6c7d;
  width: 10%;
  height: 180px;
}

.footer-top:before,
.footer-top-border,
.footer-bottom-border,
.footer-top-border:before,
.footer-bottom-border:before {
  content: "";
  position: absolute;
  display: block;
}

.footer-top-border {
  border-top: 8px solid #ff7b19;
  width: 38%;
  top: -7.5px;
}

.footer-top-border:before {
  border-bottom: 8px solid #ff7b19;
  border-right: 8px solid transparent;
  right: -8px;
  top: -8px;
}

.footer-top-border:before,
.footer-bottom-border:before {
  width: 0;
  height: 0;
}

.footer-bottom-border {
  border-top: 8px solid #ff7b19;
  width: 20%;
  bottom: -0.5px;
  right: 0;
}

.footer-bottom-border:before {
  border-bottom: 8px solid #ff7b19;
  border-left: 8px solid transparent;
  left: -8px;
  top: -8px;
}

.footer-top h1 {
  font-family: Geomanist-bold;
}

.footer-top ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-top a {
  color: #fff;
}

.footer_address {
  position: relative;
}

.footer_address:before {
  content: "";
  position: absolute;
  right: 15%;
  height: 95%;
  background: #fff;
  width: 2px;
  border-radius: 50%;
  top: 8px;
  box-shadow: 0px 0px 5px rgba(255, 255, 255, 0.15);
}

/* Copyright Section */
.copyright {
  background: #212529;
  padding: 0.75rem 0;
  color: #fff;
}

.copyright p span {
  font-family: Geomanist-bold;
}
/* End Copyright Section */
/* End Footer Section */

/* Back to Top */
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: #ff7b19;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #3c444e;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}
/* End Back to Top */

@media (min-width: 1280px) and (max-width: 1365px) {
  #ipl-shaw-solutions:before {
    width: 50px;
  }

  #ipl-shaw-solutions .img-fluid {
    width: 90%;
  }
}

@media screen and (max-width: 991px) {
  .title-1 p {
    width: 100%;
  }

  .form-bg {
    width: 100%;
  }

  .navbar a:before {
    bottom: 2px;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
  #about {
    height: 795px;
  }

  #ipl-shaw-solutions .row {
    align-items: center;
  }

  #ipl-shaw-solutions:before {
    width: 30px;
    height: 90px;
  }

  .form-bg {
    width: 95%;
  }

  #we-are-sec {
    padding: 2rem 0;
  }

  .footer_address:before {
    right: 8%;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  #banner-sec:after {
    width: 30%;
    bottom: 32%;
  }

  #we-are-sec h1 {
    font-size: 115px;
    top: -1.5rem;
  }
  #we-are-sec {
    padding: 2rem 0;
  }

  .footer-top:before {
    width: 3%;
  }

  .form-bg .form-control {
    font-size: 1.3rem;
  }

  .form-bg {
    padding: 1.5rem;
  }
  .contact-map:after {
    bottom: -230px;
  }

  .contact-map iframe {
    height: 325px !important;
  }

  #contact-sec h1 {
    font-size: 10rem;
  }
  .contact-map iframe {
    top: -115px;
  }
  .contact-card {
    padding: 1rem;
  }

  #contact-sec p {
    font-size: 15px;
  }

  #contact-sec h3 {
    font-size: 18px;
  }

  #contact-sec h2 {
    font-size: 22px;
  }

  .contact-info {
    padding-left: 20px;
  }
  .grey-card {
    padding: 1rem 0.8rem 1rem 0.5rem;
  }

  #ipl-shaw-solutions .row {
    align-items: center;
  }

  #ipl-shaw-solutions:before {
    width: 25px;
  }

  #ipl-shaw-solutions h1 {
    font-size: 45px;
  }

  #ipl-shaw-solutions {
    padding-top: 5rem;
  }

  #ipl-shaw-solutions h4 {
    font-size: 28px;
  }

  #ipl-shaw-solutions p {
    font-size: 17px;
    margin-bottom: 0;
  }

  #ipl-shaw-solutions .img-fluid {
    width: 100%;
  }

  .grey-card h1 {
    font-size: 20px;
  }

  .grey-card ul li {
    font-size: 18px;
    line-height: 1.6rem;
  }

  .grey-card h1:after {
    padding-bottom: 0.5rem;
  }
  .title-2 h2 {
    font-size: 28px;
  }

  #about {
    height: 750px;
  }

  .content-ipl:after {
    right: -30px;
  }

  .title-1 img {
    width: 120px;
  }
  .title-1 p {
    padding-bottom: 1.5rem;
  }

  .title-1 h1 {
    font-size: 24px;
    padding-bottom: 0.3rem;
  }

  .about-content h1 {
    font-size: 80px;
    line-height: 4rem;
  }

  .about-content h2 {
    font-size: 36px;
  }

  .about-content {
    padding-left: 15px;
    padding-top: 1.5rem;
  }
}

@media (min-width: 480px) and (max-width: 520px) {
  #banner-sec h1 {
    font-size: 32px;
    line-height: 1.75rem;
    padding-top: 5rem;
  }

  .about_left_img img {
    width: 75% !important;
    margin: auto;
  }

  .grey-card.g-light .img-fluid {
    max-width: 55%;
  }

  .grey-card.g-light .img-fluid,
  #why-ipl-shaw-solutions .img-fluid {
    display: block;
    margin: auto;
  }

  #why-ipl-shaw-solutions .img-fluid {
    max-width: 70%;
  }

  #ipl-sec .col-6 {
    width: 33%;
  }

  #ipl-sec figcaption {
    font-size: 15px;
  }
}

@media (min-width: 521px) and (max-width: 767px) {
  #ipl-shaw-solutions h1 span {
    display: inline-block;
    padding-right: 0.5rem;
  }
  .about_left_img img {
    margin: auto;
    width: 60% !important;
  }

  #ipl-sec figcaption {
    font-size: 16px;
  }

  #banner-sec h1 {
    padding-top: 3rem;
  }

  #why-ipl-shaw-solutions .img-fluid,
  .grey-card.g-light .img-fluid {
    margin: auto;
    display: block;
  }

  #why-ipl-shaw-solutions .img-fluid {
    max-width: 65%;
  }

  .grey-card.g-light .img-fluid {
    max-width: 50%;
  }
  .footer_address:before {
    right: 8%;
  }
}

@media screen and (max-width: 520px) {
  .footer_address:before {
    content: none;
  }

  .footer_address {
    padding-bottom: 1.5rem;
  }
  .footer-top {
    padding: 1.5rem 0;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  #about .container {
    width: 100%;
    max-width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .form-bg .form-control {
    font-size: 1.15rem;
  }

  #we-are-sec {
    padding-bottom: 3rem;
  }

  .location-con {
    top: 0;
    margin-top: 2rem;
  }

  #we-are-sec h1 {
    top: -1rem;
    font-size: 80px;
    color: rgba(116, 116, 116, 0.5);
  }
  #contact-sec p {
    font-size: 15px;
  }
  .contact-card {
    flex-wrap: wrap;
    padding: 0.75rem;
  }

  .contact-map iframe {
    position: relative;
    top: -90px;
    margin-bottom: -80px;
  }

  .contact-info {
    padding-left: 0;
  }

  #contact-sec h1 {
    font-size: 5rem;
    line-height: 6rem;
  }

  #ipl-shaw-solutions h4,
  #contact-sec h2 {
    font-size: 24px;
  }

  #ipl-shaw-solutions .img-fluid {
    padding-top: 1rem;
    width: 100%;
  }

  #ipl-shaw-solutions h1 {
    font-size: 45px;
  }
  #ipl-shaw-solutions {
    padding-top: 5rem;
    padding-bottom: 2rem;
  }

  .grey-card ul li,
  #ipl-shaw-solutions p,
  #contact-sec h3 {
    font-size: 18px;
  }
  #why-ipl-shaw-solutions h1 {
    font-size: 30px;
  }

  .grey-card.g-light {
    margin: 1rem 0;
  }

  #why-ipl-shaw-solutions {
    padding-top: 2.5rem;
  }

  #why-ipl-shaw-solutions p {
    padding-left: 0;
    font-size: 20px;
  }

  #why-ipl-shaw-solutions ul {
    font-size: 18px;
    padding-left: 1.5rem;
  }

  #why-ipl-shaw-solutions .img-fluid {
    padding-top: 1.5rem;
  }

  #ipl-sec .row.align-items-center {
    margin: auto;
  }

  #ipl-sec {
    padding-bottom: 1rem;
  }

  .about_left_img img {
    width: 100%;
    padding: 2rem;
  }

  .about_left_img:before {
    height: 45%;
  }

  .about-content h1 {
    font-size: 68px;
    margin-bottom: 0;
    line-height: 4rem;
  }

  .about-content h2 {
    font-size: 36px;
  }
  .content-ipl:after,
  #banner-sec:after,
  #ipl-shaw-solutions:before,
  .contact-map:after,
  .footer-top:before {
    content: none;
  }

  #banner-sec {
    height: 100%;
  }

  #banner-sec:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
  }
  #banner-sec h1,
  #banner-sec h2 {
    position: relative;
  }

  #banner-sec h2 {
    color: #fff;
  }

  #about {
    height: auto;
  }

  .about-content {
    background: #2a2f35;
    padding-top: 1rem;
    padding-left: 15px;
  }
  .about-pos-right-img {
    position: relative;
  }

  .about_left_img {
    top: 0;
  }

  .title-1 img {
    width: 115px;
  }

  .title-1 h1,
  .title-2 h2 {
    font-size: 24px;
  }
  .title-1 h1 {
    margin-bottom: 0.5rem;
  }
  .title-1 p {
    padding-bottom: 1rem;
  }

  .title-2 p {
    font-size: 16px;
  }
}

/* Disable aos animation delay on mobile devices */
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*End  Disable aos animation delay on mobile devices */

/* Catalog Page Styling */
.sub-page-head {
  background: rgba(30, 33, 40, 1);
  box-shadow: 0px 2px 20px rgb(1, 41, 112, 0.1);
  padding: 15px 0;
}

.sub-page-main {
  margin-top: 80px;
}

/* Global DEF System */
#portfolio-title,
#multi-function-title {
  position: relative;
}

#multi-function-title {
  background: #ff7b19;
  padding-top: 2rem;
}

#multi-function-title h1 {
  color: #fff;
  font-size: 100px;
  line-height: 5.5rem;
  margin-bottom: 0;
  position: relative;
  top: 10px;
}

#portfolio-title {
  padding-top: 2rem;
}

#portfolio-title h1 {
  color: #1d2228;
  font-size: 125px;
  line-height: 6rem;
  margin-bottom: 0;
  position: relative;
  top: 5px;
}

#portfolio-title h1,
#multi-function-title h1 {
  font-family: Geomanist-black;
  text-transform: uppercase;
}

#portfolio-title h1 span,
#multi-function-title h1 span {
  display: block;
  font-size: 70px;
}
/* End Global DEF System */

/* Polyethylene section */
#polyethylene-section {
  position: relative;
}

.poly-left {
  background: url(../images/polye-left-img.jpg) no-repeat;
  position: absolute;
  background-size: cover;
  display: block;
  left: 0;
  top: 0;
  height: 100%;
}

.poly-right {
  position: absolute;
  display: block;
  background: #1d2228;
  right: 0;
  top: 0;
  height: 100%;
}

#polyethylene-section .container .col-lg-6 {
  position: relative;
  padding-top: 4rem;
}

.poly-content-sec {
  padding: 3rem;
}

.poly-content-sec h2 {
  color: #ff7b19;
  font-size: 52px;
  font-family: Geomanist-black;
  text-transform: uppercase;
  line-height: 3rem;
  position: relative;
}

.poly-content-sec h2:after {
  content: "";
  position: relative;
  border-bottom: 2px solid #fff;
  width: 150px;
  display: block;
  padding-bottom: 0.75rem;
}

.poly-content-sec h2 span {
  display: block;
  color: #fff;
  font-size: 40px;
}

.poly-content-sec h4 {
  color: #fff;
  padding-top: 0.5rem;
}

.std-options {
  width: 360px;
  margin: 2.5rem auto 3rem;
}

.std-options h5 {
  border: 3px solid #ff7b19;
  text-align: center;
  color: #ff7b19;
  font-size: 24px;
  font-family: Geomanist-medium;
  padding: 0.3rem;
  margin: 0;
}

.std-options ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.std-options ul li {
  width: 50%;
  text-align: center;
  padding: 0.5rem;
  font-size: 1.15rem;
}

.std-options ul li span {
  font-size: 0.9rem;
}

.std-options ul li.list-bg-orange {
  background: #ff7b19;
  color: #2e3339;
}
.std-options ul li.list-bg-grey {
  background: #363b41;
  color: #ececec;
}

.poly-img-sec {
  position: relative;
}

.poly-img-sec:before {
  content: "";
  position: absolute;
  border: 7px solid #ff7b19;
  width: 100%;
  height: 380px;
  left: -34%;
  top: 105px;
}

.poly-img-sec .img-fluid {
  width: 85%;
  position: relative;
}

#poly-product-bg {
  background: url(../images/poly-bg.jpg) no-repeat;
  background-size: cover;
  position: relative;
  height: 100%;
  padding: 2rem;
  background-attachment: fixed;
}

.poly-prdt-img {
  position: relative;
}

.poly-prdt-img:before {
  content: "";
  border: 7px solid #ff7b19;
  position: absolute;
  display: block;
  width: 60%;
  height: 55%;
  top: 27%;
  left: 17%;
}

.poly-prdt-img img {
  width: 60%;
  display: block;
  margin: auto;
  position: relative;
}
/* End Polyethylene section */

/* Multi-Function Header Units List Section */
#multi-function-list-sec {
  background: #1d2228;
  position: relative;
  padding: 2rem 0 1rem;
  color: #fff;
}

#multi-function-list-sec h1 {
  font-family: Geomanist-black;
  color: #ff7b19;
  text-transform: uppercase;
  line-height: 2.75rem;
}

#multi-function-list-sec h1:after {
  content: "";
  position: relative;
  display: block;
  border-bottom: 2px solid #fff;
  width: 190px;
  padding-bottom: 0.5rem;
}

#multi-function-list-sec h2 {
  font-family: Geomanist-bold;
  margin-bottom: 0.8rem;
  padding-top: 0.3rem;
}

#multi-function-list-sec ul {
  list-style: none;
  font-size: 22px;
  margin: 0;
  padding: 0 3rem 0 0;
}

#multi-function-list-sec ul li {
  padding-bottom: 0.75rem;
  line-height: 1.75rem;
}

#multi-function-list-sec p {
  font-size: 0.85rem;
  padding-top: 0.5rem;
}

#multi-function-list-sec .col-lg-6:nth-child(1) {
  position: relative;
}

#multi-function-list-sec .col-lg-6 {
  padding-left: 50px;
}

#multi-function-list-sec .col-lg-6:nth-child(1):after {
  content: "";
  position: absolute;
  right: 5%;
  height: 95%;
  background: #fff;
  width: 2px;
  border-radius: 50%;
  top: 8px;
  box-shadow: 0px 0px 5px rgb(255, 255, 255, 0.15);
}
/* End Multi-Function Header Units List Section */

/* Multi-Function Product Section */
#multi-product-sec {
  position: relative;
  background: #ececec;
}

.multi-left {
  position: absolute;
  background: url(../images/multi-function-left-img.jpg) no-repeat;
  height: 100%;
  background-size: cover;
}

#multi-product-sec h4 {
  color: #ff7b19;
  font-family: Geomanist-medium;
  text-transform: uppercase;
}

#multi-product-sec ul {
  color: #53585f;
}

#multi-product-sec ul li {
  line-height: 1.5rem;
  padding-bottom: 0.5rem;
  padding-right: 7rem;
  font-size: 18px;
}

.multi-left-img {
  position: relative;
}

.multi-left-img:before {
  content: "";
  position: absolute;
  border: 7px solid #ff7b19;
  width: 120%;
  height: 455px;
  left: -40%;
  top: 130px;
}

.multi-left-img img {
  width: 85%;
  position: relative;
}
/* End Multi-Function Product Section */

/* DEF Title Section */
#def-title {
  padding-top: 2rem;
  position: relative;
  box-shadow: 0px 25px 50px 5px rgba(0, 0, 0, 0.5);
}

#def-title h1 {
  color: #1d2228;
  font-family: Geomanist-black;
  font-size: 88px;
  margin-bottom: 0;
  line-height: 5.2rem;
  position: relative;
  top: 12px;
}

#def-title h1 span {
  display: block;
}
/* End DEF Title Section */

/* DEF Product Section */
#def-product-sec {
  background: #1d2228;
  position: relative;
  color: #fff;
}

.def-prdt-left {
  position: absolute;
  background: url(../images/def-left-bg.jpg) no-repeat center left;
  background-size: cover;
  height: 100%;
}

#def-product-sec h4 {
  font-family: Geomanist-medium;
  color: #ff7b19;
}

#def-product-sec ul {
  margin-bottom: 2rem;
}

#def-product-sec ul li {
  font-size: 22px;
}

.inline-filter {
  width: 395px;
  margin: 0 auto 3.5rem;
}

.inline-filter h5 {
  border: 3px solid #ff7b19;
  color: #ff7b19;
  padding: 0.5rem;
  text-align: center;
  font-family: Geomanist-medium;
  font-size: 24px;
  margin-bottom: 0;
}

.inline-filter ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.inline-filter ul li {
  width: 50%;
  text-align: center;
  font-size: 1rem !important;
  padding: 0.5rem 1rem;
}

.inline-filter ul li:nth-child(odd) {
  background: #ff7b19;
}
.inline-filter ul li:nth-child(even) {
  background: #363b41;
}
/* End DEF Product Section */

/* DEF CAPS Title */
#def-cap-title {
  background: #ff7b19;
  color: #fff;
  padding-top: 1.5rem;
  box-shadow: 0px 25px 50px 5px rgba(0, 0, 0, 0.5);
  position: relative;
}

#def-cap-title h1 {
  font-family: Geomanist-black;
  font-size: 125px;
  text-transform: uppercase;
  line-height: 6.5rem;
  margin-bottom: 0;
  position: relative;
  top: 8px;
}

#def-cap-title h1 span {
  display: block;
  font-size: 75px;
}
/* End DEF CAPS Title */

/* DEF CAPS Product Section */
#def-caps-product {
  position: relative;
  background: #ebebeb;
}

#def-caps-product h4,
#def-caps-product h5 {
  font-family: Geomanist-medium;
  color: #ff7b19;
}

#def-caps-product ul li {
  color: #53585f;
  font-size: 18px;
}

.def-list {
  margin-top: 1.8rem;
  margin-bottom: 5rem;
}

.def-list h5 {
  border-bottom: 0 !important;
}

.def-list.inline-filter ul li {
  width: 33.3333% !important;
  font-size: 14px !important;
  line-height: 1rem;
  color: #fff !important;
}

.def-list.inline-filter ul li:nth-child(odd) {
  color: #2e3339 !important;
}

.def-caps-left {
  position: absolute;
  background: url(../images/def-caps-left-img.jpg) no-repeat;
  height: 100%;
  background-size: cover;
}
/* End DEF CAPS Product Section */

/* DEF Tank Adapter Title */
#def-tank-title {
  position: relative;
  padding-top: 2rem;
  box-shadow: 0px 25px 50px 5px rgba(0, 0, 0, 0.5);
}

#def-tank-title h1 {
  font-family: Geomanist-black;
  color: #1d2228;
  text-transform: uppercase;
  font-size: 95px;
  line-height: 5rem;
  margin-bottom: 0;
  position: relative;
  top: 22px;
}

#def-tank-title h1 span {
  display: block;
  font-size: 52px;
}

.def-tank-list li {
  width: 33.3333% !important;
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
  line-height: 1rem;
}
/* End DEF Tank Adapeter Title */

/* DEF Remote Title */
#def-remote-title {
  position: relative;
  background: #ff7b19;
  padding-top: 2rem;
  color: #fff;
  box-shadow: 0px 25px 50px 5px rgba(0, 0, 0, 0.5);
}

#def-remote-title h1 {
  font-family: Geomanist-black;
  font-size: 120px;
  text-transform: uppercase;
  line-height: 6rem;
  position: relative;
  top: 15px;
}

#def-remote-title h1 span {
  display: block;
  font-size: 75px;
}
/* End DEF Remote Title */

.def-img1,
.def-img2,
.def-caps-img,
.def-tank-img,
.def-remote-img,
.def-img1 .img-fluid,
.def-img2 .img-fluid,
.def-caps-img .img-fluid,
.def-tank-img .img-fluid,
.def-remote-img .img-fluid {
  position: relative;
}

.def-img1 .img-fluid,
.def-img2 .img-fluid {
  margin-left: -20px;
  width: 85%;
}

.def-caps-img {
  margin-top: 1rem;
}

.def-caps-img .img-fluid,
.def-tank-img .img-fluid {
  width: 70%;
}

.def-remote-img .img-fluid {
  width: 80%;
}

.def-img1,
.def-img2 {
  margin-top: 5rem;
}

.def-tank-img {
  margin-top: 1rem;
}

.def-img1:before {
  content: "";
  position: absolute;
  border: 7px solid #ff7b19;
  width: 100%;
  height: 305px;
  left: -43%;
  top: 45px;
}
.def-img2:before {
  content: "";
  position: absolute;
  border: 7px solid #ff7b19;
  width: 93%;
  height: 305px;
  right: 17px;
  top: -15px;
}
.def-caps-img:before,
.def-tank-img:before,
.def-remote-img:before {
  content: "";
  position: absolute;
  border: 7px solid #ff7b19;
  width: 110%;
  height: 305px;
  left: -43%;
  top: 75px;
}

.def-tank-img:before {
  height: 320px;
}

.def-remote-img:before {
  height: 350px;
  width: 120%;
}

.def-remote-img {
  margin: 1rem 0 2rem;
}

#def-caps-product ul li {
  padding-bottom: 0.3rem;
}

#def-caps-product .inline-filter ul li {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
/* End Catalog Page Styling */

/* Catalog Page Responsive */

@media (min-width: 992px) and (max-width: 1200px) {
  .def-remote-img:before {
    height: 280px;
  }
  .def-caps-img .img-fluid,
  .def-tank-img .img-fluid {
    width: 80%;
  }
  .def-tank-img:before {
    height: 275px;
  }
  .def-img1 .img-fluid,
  .def-img2 .img-fluid,
  .multi-left-img img {
    width: 95%;
  }

  .def-img1:before {
    left: -28%;
  }

  .def-img2:before {
    right: -7px;
    width: 100%;
  }
  .multi-left-img:before {
    left: -30%;
  }
  #def-product-sec .row {
    align-items: center;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  #portfolio-title h1 {
    line-height: 5rem;
    font-size: 100px;
  }

  #portfolio-title h1 span {
    font-size: 60px;
  }

  .poly-content-sec {
    padding: 1.5rem;
  }

  .poly-content-sec h2 {
    font-size: 41px;
    line-height: 2.5rem;
  }

  .poly-content-sec h2 span {
    font-size: 33px;
  }

  .std-options {
    width: 320px;
  }

  .poly-img-sec:before {
    height: 270px;
  }

  #multi-function-list-sec .col-lg-6:nth-child(1):after {
    right: 0;
  }

  .multi-left-img:before {
    height: 425px;
    left: -27%;
  }

  #multi-function-title h1 {
    line-height: 4.5rem;
    font-size: 85px;
  }

  #multi-function-title h1 span {
    font-size: 55px;
  }

  .inline-filter {
    width: 345px;
  }

  #def-product-sec ul li {
    font-size: 20px;
    line-height: 1.5rem;
  }
  #def-product-sec ul {
    margin-bottom: 1rem;
  }

  #def-product-sec .row,
  #def-caps-product .row {
    align-items: center;
  }

  .def-img2:before {
    right: -12px;
    width: 100%;
  }

  .def-img1:before {
    left: -25%;
  }
  #def-title h1 {
    top: 9px;
    font-size: 65px;
    line-height: 4rem;
  }
  #def-cap-title h1 {
    line-height: 5rem;
    font-size: 100px;
  }
  #def-cap-title h1 span {
    font-size: 60px;
  }
  .def-remote-img:before {
    height: 310px;
  }

  #def-remote-title h1 {
    line-height: 5rem;
    font-size: 95px;
  }

  #def-remote-title h1 span {
    font-size: 60px;
  }
  .def-tank-list li {
    line-height: 1.1rem !important;
  }
  #def-tank-title h1 {
    font-size: 80px;
    line-height: 4rem;
    top: 18px;
  }
  #def-tank-title h1 span {
    font-size: 40px;
  }
}

@media screen and (max-width: 991px) {
  .poly-img-sec .img-fluid,
  .multi-left-img img,
  .def-img1 .img-fluid,
  .def-img2 .img-fluid,
  .def-caps-img .img-fluid,
  .def-tank-img .img-fluid,
  .def-remote-img .img-fluid {
    width: 100%;
  }
  #poly-product-bg {
    background-position: center;
  }

  #multi-product-sec ul li {
    padding-right: 0;
  }
  .def-img1 .img-fluid,
  .def-img2 .img-fluid {
    margin-left: 0px;
  }
  #def-caps-product .inline-filter ul li {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media (min-width: 480px) and (max-width: 520px) {
  .poly-img-sec .img-fluid,
  .multi-left-img img,
  .def-img1 .img-fluid,
  .def-img2 .img-fluid,
  .def-caps-img .img-fluid,
  .def-tank-img .img-fluid,
  .def-remote-img .img-fluid {
    width: 60%;
    margin: auto !important;
    display: block;
  }

  .def-img1:before,
  .def-img2:before {
    height: 205px !important;
  }

  .def-img2:before {
    width: 70% !important;
  }
}

@media (min-width: 521px) and (max-width: 767px) {
  #polyethylene-section .container,
  #multi-product-sec .container,
  #def-product-sec .container,
  #def-caps-product .container {
    max-width: 100%;
  }

  .poly-img-sec .img-fluid {
    width: 60%;
  }

  .multi-left-img img,
  .def-img1 .img-fluid,
  .def-img2 .img-fluid,
  .def-caps-img .img-fluid,
  .def-tank-img .img-fluid,
  .def-remote-img .img-fluid {
    width: 50%;
  }

  .multi-left-img img,
  .poly-img-sec .img-fluid,
  .def-img1 .img-fluid,
  .def-img2 .img-fluid,
  .def-caps-img .img-fluid,
  .def-tank-img .img-fluid,
  .def-remote-img .img-fluid {
    margin: auto;
    display: block;
  }

  .def-remote-img {
    margin-bottom: 1rem;
  }

  .def-remote-img:before {
    height: 270px !important;
  }

  .def-img2:before {
    width: 60% !important;
  }

  .multi-left-img:before {
    height: 330px;
    top: 105px;
  }

  .poly-img-sec:before {
    height: 240px !important;
  }
}

@media screen and (max-width: 767px) {
  #def-caps-product ul li {
    font-size: 17px;
  }

  .inline-filter h5 {
    font-size: 22px;
  }

  #def-product-sec .mt-5 {
    margin-top: 1.5rem !important;
  }

  .def-list {
    margin-top: 1rem;
  }

  #def-caps-product .container .col-lg-7 {
    background: #ebebeb;
    position: relative;
  }

  .inline-filter {
    margin-bottom: 2rem;
  }

  #def-product-sec ul {
    margin-bottom: 1rem;
  }

  #def-product-sec ul li {
    font-size: 20px;
  }

  .def-img1:before,
  .def-img2:before {
    height: 250px;
  }

  .def-img2:before {
    width: 100%;
    right: -12px;
  }

  .def-img1,
  .def-img2 {
    margin-top: 2rem;
  }

  #def-product-sec .container .col-lg-7 {
    position: relative;
    background: #1d2228;
  }

  #multi-product-sec ul {
    margin-bottom: 0.5rem;
  }

  #multi-product-sec ul li {
    font-size: 16px;
  }

  .multi-left-img {
    margin-top: 2rem;
  }

  #multi-product-sec .container .col-lg-7 {
    background: #ececec;
    position: relative;
    padding-top: 0.5rem;
    padding-bottom: 1rem;
  }

  #multi-function-list-sec .col-lg-6:nth-child(1) {
    margin-bottom: 1rem;
  }

  #multi-function-list-sec ul {
    font-size: 20px;
  }

  #multi-function-list-sec h1 {
    line-height: 2rem;
  }

  #multi-function-list-sec ul {
    padding-right: 0;
  }

  #multi-function-list-sec .col-lg-6 {
    padding-left: 20px;
  }

  #multi-function-list-sec .col-lg-6:nth-child(1):after {
    content: none;
  }
  #poly-product-bg {
    padding: 1rem 1rem 0;
  }

  .poly-img-sec:before {
    height: 205px;
  }

  .std-options {
    margin: 1.5rem auto;
  }

  #polyethylene-section .container .col-lg-6 {
    padding-top: 2rem;
  }

  .poly-right {
    display: none;
  }

  .poly-content-sec {
    background: #1d2228;
  }

  #portfolio-title h1 {
    font-size: 55px;
    line-height: 3rem;
  }
  #portfolio-title h1 span,
  #multi-function-title h1 span {
    font-size: 30px;
  }

  #multi-function-title h1 {
    font-size: 50px;
    line-height: 3rem;
  }
  #def-title h1 {
    font-size: 34px;
    line-height: 2.5rem;
    top: 8px;
  }

  #def-cap-title h1 {
    line-height: 3.5rem;
    top: 6px;
    font-size: 65px;
  }
  #def-cap-title h1 span {
    font-size: 40px;
  }

  #def-tank-title h1 {
    font-size: 38px;
    line-height: 2.3rem;
    top: 10px;
  }

  #def-tank-title h1 span {
    font-size: 22px;
  }
  #def-remote-title h1 {
    font-size: 50px;
    top: 15px;
    line-height: 3rem;
  }
  #def-remote-title h1 span {
    font-size: 38px;
  }

  .inline-filter,
  .std-options,
  .poly-prdt-img img {
    width: 100%;
  }
  .poly-content-sec h2 {
    font-size: 40px;
    line-height: 2.5rem;
  }
  .poly-content-sec h2 span {
    font-size: 30px;
  }
  .poly-content-sec {
    padding: 1rem;
  }
  #multi-function-title h1 {
    top: 7px;
  }
  #portfolio-title,
  #def-tank-title {
    padding-top: 1rem;
  }
  #multi-function-title,
  #def-title,
  #def-cap-title {
    padding-top: 0.5rem;
  }
  #def-remote-title {
    padding-top: 0;
  }
}

/* End Catalog Page Responsive */
