/* mixins */
/* Font colors */
/* Background Colors */
@import url(../css/main.css);
@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700|Oswald:300,400,600,700");
.two-col-layout {
  display: flex;
  align-items: center; }
  .two-col-layout .col1 {
    width: 65%;
    padding-right: 10rem; }
  .two-col-layout .col2 {
    width: 37%; }

.title-wrap {
  text-align: center;
  max-width: 700px;
  width: 100%;
  margin: 0 auto; }

.separator1 {
  background: #e0e7ee;
  width: 90%;
  display: block;
  height: 1px;
  margin: 11rem auto 0 auto; }

.circle-md {
  width: 430px;
  height: 430px;
  overflow: hidden;
  border-radius: 50%;
  padding: 10px;
  border: 1px dashed #616161;
  transition: all 0.3s ease-in-out; }
  .circle-md:hover {
    border: 1px dashed #62a9d5; }

@media (max-width: 1024px) {
  .circle-md {
    height: 400px;
    width: 400px; } }

/*--------------------------------------------------------------
 HOME PAGE
--------------------------------------------------------------*/
/* about-block */
.about-block {
  -webkit-box-shadow: inset 0 33px 65px -40px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: inset 0 33px 65px -40px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 33px 65px -40px rgba(0, 0, 0, 0.1); }

.left-space {
  position: relative;
  padding-left: 3rem; }
  .left-space:before {
    position: absolute;
    content: '';
    width: 2px;
    height: 240px;
    background: #b8c3d2;
    left: 0;
    top: 50%;
    transform: translate(0, -50%); }

/* circle-slider */
.slick-prev.slick-arrow,
.slick-next.slick-arrow {
  position: absolute;
  bottom: 0;
  z-index: 5;
  font-size: 0;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  width: 95px;
  height: 95px;
  line-height: 45px;
  margin: 0 13.5rem;
  text-align: center;
  padding: 0;
  transition: 0.3s ease-in-out; }

.slick-prev.slick-arrow {
  right: 30%;
  background: #616161 url("images/play-arrow.svg") no-repeat center; }

.slick-next.slick-arrow {
  left: 30%;
  background: #e3e3e3 url("images/play-arrow.svg") no-repeat center; }

.slick-next:hover,
.slick-prev:hover {
  background: #62a9d5 url("images/play-arrow.svg") no-repeat center; }

.slick-next:focus,
.slick-prev:focus {
  outline: 0; }

/*--------------------------------------------------------------
ABOUT US PAGE
--------------------------------------------------------------*/
.about-block .img-holder .separator1 {
  display: none; }

.about-details .change-order:nth-child(even) {
  flex-direction: row-reverse; }

@media (min-width: 992px) {
  .about-details .change-order {
    margin-bottom: 7.5rem; } }

@media (max-width: 991px) {
  .about-details .change-order:nth-child(odd) {
    flex-direction: column-reverse; }
  .about-details .change-order:nth-child(even) {
    flex-direction: column-reverse; } }

@media (max-width: 991px) {
  .about-details .change-order .text-container {
    margin-bottom: 4rem; } }

.about-details .change-order .text-container p {
  margin-bottom: 2rem; }

.about-details .change-order .image-container {
  display: flex;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 3px dotted #ebeae9;
  border-spacing: 10px;
  margin: auto;
  transition: all 0.3s ease;
  overflow: hidden; }
  .about-details .change-order .image-container figure {
    margin: 0 auto;
    align-self: center; }
  .about-details .change-order .image-container:hover {
    border-color: #62a9d5; }
  @media (max-width: 992px) {
    .about-details .change-order .image-container {
      margin-bottom: 4rem; } }
  @media (max-width: 574px) {
    .about-details .change-order .image-container {
      width: 250px;
      height: 250px; } }
  .about-details .change-order .image-container img {
    margin: auto;
    max-width: 250px; }

.about-details .video-container {
  width: 100%;
  height: 340px;
  margin-bottom: 2rem; }
  .about-details .video-container iframe {
    width: 100%;
    height: 100%; }
  @media (max-width: 767px) {
    .about-details .video-container + p {
      margin-bottom: 4rem; } }

/*--------------------------------------------------------------
 SERVICES PAGE
--------------------------------------------------------------*/
.services .servce-item .single-service {
  box-shadow: 0px 0px 76px 0px rgba(0, 0, 0, 0.1);
  margin-bottom: 6rem; }
  .services .servce-item .single-service img {
    width: 100%; }
  .services .servce-item .single-service .service-details {
    padding: 3rem; }
    .services .servce-item .single-service .service-details h2 {
      display: block;
      font-size: 2.8rem;
      font-weight: normal;
      font-family: 'Oswald', sans-serif;
      margin-bottom: 2rem; }

/*--------------------------------------------------------------
 INDUSTRIES PAGE
--------------------------------------------------------------*/
.industries-block figure {
  position: relative;
  overflow: hidden;
  margin: 0 0 5rem; }
  .industries-block figure img {
    width: 100%; }
  .industries-block figure figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    transition: 0.3s ease-in-out; }
    .industries-block figure figcaption h5 {
      text-transform: uppercase;
      font-weight: 300;
      color: #ffffff;
      text-align: center;
      margin: 0;
      padding: 1rem 0; }
  .industries-block figure:hover figcaption {
    background: rgba(0, 0, 0, 0.8); }

/*--------------------------------------------------------------
 INDUSTRIES SUB PAGE
--------------------------------------------------------------*/
/* media */
@media (max-width: 767px) {
  .services .servce-item:last-child .single-service {
    margin-bottom: 0; } }

/*============HomePage Stylings=============*/
#masthead {
  position: fixed;
  width: 100%;
  background-color: #fff;
  z-index: 9;
  box-shadow: 0 0 5px #ccc; }

.banner,
.banner-block {
  margin-top: 85px; }
  .banner h2,
  .banner-block h2 {
    color: #414141; }
  .banner .banner-details,
  .banner-block .banner-details {
    padding: 0 1rem; }

.products-block .title-wrap {
  margin-bottom: 5rem; }

.products-block .ourproduct-slide .slick-list .slick-track .item {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding-top: 5rem; }
  .products-block .ourproduct-slide .slick-list .slick-track .item figure {
    height: 30.1rem;
    width: 30.1rem;
    text-align: center;
    line-height: 25.1rem;
    vertical-align: middle;
    margin: 0 auto 3rem auto;
    transition: ease 0.5s; }
    .products-block .ourproduct-slide .slick-list .slick-track .item figure .back-bg {
      background: #f7f9fb;
      border-radius: 50%; }
      .products-block .ourproduct-slide .slick-list .slick-track .item figure .back-bg img {
        display: inline-block;
        vertical-align: middle;
        padding: 4rem; }
  .products-block .ourproduct-slide .slick-list .slick-track .item a h4 {
    color: #8b949f;
    font-size: 1.6rem;
    transition: ease 0.5s;
    text-transfomr: uppercase;
    text-decoration: none; }
  .products-block .ourproduct-slide .slick-list .slick-track .item .caption {
    height: 0;
    bottom: -10rem;
    opacity: 0;
    transition: ease 0.5s; }
    .products-block .ourproduct-slide .slick-list .slick-track .item .caption .more {
      colro: #62a9d5;
      text-transform: uppercase;
      text-decoration: underline;
      font-size: 1.3rem;
      font-weight: 700;
      font-family: 'Oswald', sans-serif;
      color: #62a9d5; }
  .products-block .ourproduct-slide .slick-list .slick-track .item:hover figure {
    transform: scale(1.2);
    transition: ease 0.5s;
    margin-bottom: 5rem; }
  .products-block .ourproduct-slide .slick-list .slick-track .item:hover a h4 {
    transform: scale(1);
    transition: ease 0.5s; }
  .products-block .ourproduct-slide .slick-list .slick-track .item:hover .caption {
    transform: scale(1);
    bottom: 0;
    opacity: 1;
    height: 100%;
    transition: ease 0.5s; }

.products-block .ourproduct-slide .slick-arrow {
  width: 2.3rem;
  height: 4.4rem;
  background: transparent;
  margin: 0;
  top: 17rem; }

.products-block .ourproduct-slide .slick-next {
  left: -5%;
  background: url("images/arrow.png") no-repeat -10px -2px; }
  .products-block .ourproduct-slide .slick-next:hover {
    background: url("images/arrow.png") no-repeat -7px -53px; }

.products-block .ourproduct-slide .slick-prev {
  right: -5%;
  background: url("images/arrow.png") no-repeat -66px -54px; }
  .products-block .ourproduct-slide .slick-prev:hover {
    background: url("images/arrow.png") no-repeat -68px 0px; }

.about-block .about-slider .slick-list .item .circle-md img {
  padding: 10px;
  border-radius: 50%; }

.about-block .about-slider .slick-prev {
  transform: rotate(180deg); }

/* Testimonial start */
.testimonial-sec h2 {
  border-top: 1px solid rgba(65, 65, 65, 0.2);
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  padding-top: 7rem; }

.testimonial-sec .testimonial-slide .slick-list .item {
  padding: 0 8rem;
  text-align: center; }
  .testimonial-sec .testimonial-slide .slick-list .item .fa-quote-left {
    font-size: 2.7rem;
    color: #62a9d5;
    margin-bottom: 3rem; }
  .testimonial-sec .testimonial-slide .slick-list .item:nth-child(odd) {
    border-right: 1px solid #ddd; }
  .testimonial-sec .testimonial-slide .slick-list .item em {
    margin-bottom: 3rem;
    display: block; }
  .testimonial-sec .testimonial-slide .slick-list .item figure {
    height: 5.8rem;
    width: 5.8rem;
    border-radius: 50%;
    display: inline-block;
    margin-bottom: 0.5rem;
    overflow: hidden; }
    .testimonial-sec .testimonial-slide .slick-list .item figure img {
      display: inline-block; }
  .testimonial-sec .testimonial-slide .slick-list .item h5 {
    font-size: 1.4rem;
    color: #282828;
    font-family: 'Oswald', sans-serif;
    font-weight: 700; }

.testimonial-sec .testimonial-slide .slick-arrow {
  width: 2.3rem;
  height: 4.4rem;
  background: transparent;
  margin: 0;
  top: 17rem; }

.testimonial-sec .testimonial-slide .slick-next {
  left: -5%;
  background: url("images/arrow.png") no-repeat -10px -2px; }
  .testimonial-sec .testimonial-slide .slick-next:hover {
    background: url("images/arrow.png") no-repeat -7px -53px; }

.testimonial-sec .testimonial-slide .slick-prev {
  right: -5%;
  background: url("images/arrow.png") no-repeat -66px -54px; }
  .testimonial-sec .testimonial-slide .slick-prev:hover {
    background: url("images/arrow.png") no-repeat -68px 0px; }

/* Testimonial end */
/* News end */
.news-se {
  -webkit-box-shadow: inset 0 33px 65px -40px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: inset 0 33px 65px -40px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 33px 65px -40px rgba(0, 0, 0, 0.1); }
  .news-se .title-wrap {
    text-align: center;
    max-width: 39rem;
    width: 100%;
    margin: 0 auto 3rem auto; }
  .news-se .news-slide .slick-list {
    padding: 3rem 0.5rem; }
    .news-se .news-slide .slick-list .item {
      padding: 0 0.5rem; }
      .news-se .news-slide .slick-list .item:hover {
        box-shadow: 0 2rem 7.6rem 0px rgba(0, 0, 0, 0.1); }
      .news-se .news-slide .slick-list .item .service-details {
        padding: 2.5rem 2rem; }
        .news-se .news-slide .slick-list .item .service-details span {
          font-size: 1.2rem;
          color: #a4a4a4; }
        .news-se .news-slide .slick-list .item .service-details h5 {
          font-size: 2rem; }
        .news-se .news-slide .slick-list .item .service-details p {
          font-size: 1.4rem;
          color: #818181; }
        .news-se .news-slide .slick-list .item .service-details a {
          font-size: 1.3rem;
          color: #62a9d5;
          dext-decoration: underline; }
  .news-se .news-slide .slick-arrow {
    width: 2.3rem;
    height: 4.4rem;
    background: transparent;
    margin: 0;
    top: 17rem; }
  .news-se .news-slide .slick-next {
    left: -5%;
    background: url("images/arrow.png") no-repeat -10px -2px; }
    .news-se .news-slide .slick-next:hover {
      background: url("images/arrow.png") no-repeat -7px -53px; }
  .news-se .news-slide .slick-prev {
    right: -5%;
    background: url("images/arrow.png") no-repeat -66px -54px; }
    .news-se .news-slide .slick-prev:hover {
      background: url("images/arrow.png") no-repeat -68px 0px; }

/* News end */
/* contact sec  start */
.contact-sec {
  background: url("images/contact-bg.jpg") no-repeat;
  background-size: cover;
  position: relative; }
  .contact-sec:before {
    content: '';
    background: rgba(98, 169, 213, 0.8);
    height: 100%;
    top: 0;
    left: 0;
    width: 100%;
    position: absolute; }
  .contact-sec .contact_form .gform_wrapper .validation_error {
    display: none; }
  .contact-sec .contact_form .gform_wrapper .gform_heading {
    text-align: center;
    margin-bottom: 3rem;
    color: #fff; }
    @media (max-width: 767px) {
      .contact-sec .contact_form .gform_wrapper .gform_heading {
        margin-bottom: 2rem; } }
    .contact-sec .contact_form .gform_wrapper .gform_heading h3 {
      font-size: 4.8rem;
      font-weight: 700;
      text-transform: uppercase; }
  .contact-sec .contact_form .gform_wrapper :placeholder {
    color: #fff; }
  .contact-sec .contact_form .gform_wrapper #gform_fields_2 li {
    display: inline-block;
    margin: 0 0 2rem 0; }
    .contact-sec .contact_form .gform_wrapper #gform_fields_2 li:last-child {
      width: 100%;
      display: block;
      padding-right: 1.5rem; }
    .contact-sec .contact_form .gform_wrapper #gform_fields_2 li label {
      display: none; }
    .contact-sec .contact_form .gform_wrapper #gform_fields_2 li .ginput_container input,
    .contact-sec .contact_form .gform_wrapper #gform_fields_2 li .ginput_container textarea {
      border: 1px solid rgba(255, 255, 255, 0.5);
      background: rgba(11, 23, 54, 0.1);
      color: #fff;
      font-family: 'Oswald', sans-serif;
      padding: 0.8rem 2rem; }
      .contact-sec .contact_form .gform_wrapper #gform_fields_2 li .ginput_container input:focus,
      .contact-sec .contact_form .gform_wrapper #gform_fields_2 li .ginput_container textarea:focus {
        border: 1px solid rgba(255, 255, 255, 0.8);
        background: rgba(11, 23, 54, 0.5); }
    .contact-sec .contact_form .gform_wrapper #gform_fields_2 li .ginput_container textarea {
      height: 110px; }
    .contact-sec .contact_form .gform_wrapper #gform_fields_2 li .validation_message {
      color: #ff0000; }
  .contact-sec .contact_form .gform_wrapper .gform_footer {
    text-align: right;
    margin-right: 1.5rem; }
    .contact-sec .contact_form .gform_wrapper .gform_footer input {
      background: #fff;
      padding: 2rem 5rem;
      color: #62a9d5;
      font-family: 'Oswald', sans-serif;
      text-transform: uppercase; }
      .contact-sec .contact_form .gform_wrapper .gform_footer input:hover {
        background: transparent;
        color: #fff;
        border-color: #fff; }
  .contact-sec ::-webkit-input-placeholder {
    /* WebKit, Blink, Edge */
    color: #fff; }
  .contact-sec :-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #fff; }
  .contact-sec ::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #fff; }
  .contact-sec :-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #fff; }
  .contact-sec ::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #fff; }
  .contact-sec ::placeholder {
    /* Most modern browsers support this now. */
    color: #fff; }

/* contact sec  end */
@media (max-width: 1366px) {
  .banner-block .banner-text h6:before {
    display: none; } }

@media (max-width: 1280px) {
  .about-block .two-col-layout .col2 {
    width: 39%; }
  .top-head .main-navigation ul li {
    padding-left: 2rem; } }

@media (max-width: 1024px) {
  .main-navigation .nav-menu {
    display: none; }
    .main-navigation .nav-menu .menu-item-has-children .sub-menu {
      position: static;
      height: auto !important;
      opacity: 1;
      visibility: visible; }
  .toggled .nav-menu {
    display: block; }
  .menu-toggle {
    display: block; }
  .banner-block .banner-text h2 {
    font-size: 5rem !important; }
  .about-block .two-col-layout .col2 {
    width: 50%; }
  .about-block .two-col-layout .col1 {
    padding-right: 3rem; }
  .testimonial-sec .testimonial-slide .slick-list .item {
    padding: 0 2rem; }
  .banner-block .banner-text h2 {
    font-size: 5rem; } }

@media (max-width: 769px) {
  .about-block .about-slider .slick-list .item {
    text-align: center; }
    .about-block .about-slider .slick-list .item .circle-md {
      margin: 0 auto; }
  .about-block .about-slider .slick-next {
    left: 35% !important; }
  .about-block .about-slider .slick-prev {
    right: 35% !important; }
  .about-block .two-col-layout {
    flex-direction: column; }
    .about-block .two-col-layout .col1 {
      margin-bottom: 5rem;
      padding-right: 0; }
      .about-block .two-col-layout .col1 .left-space {
        padding-left: 0; }
        .about-block .two-col-layout .col1 .left-space:before {
          display: none !important; }
    .about-block .two-col-layout .col1,
    .about-block .two-col-layout .col2 {
      width: 100% !important; }
  .testimonial-sec h2 {
    padding-top: 1.5rem; } }

@media (max-width: 768px) {
  .site-header .gutter-lr-6 {
    padding: 0 1.5rem !important; }
  .banner-block {
    padding: 5rem 0 !important; }
    .banner-block .img-holder {
      display: none; }
  .slick-next {
    left: 0 !important; }
  .slick-prev {
    right: 0 !important; }
  .banner-slider .slick-dots {
    bottom: -5rem !important; }
  .gutter-tb-lg {
    padding: 5rem 0 !important; }
  .gutter-t-md {
    padding-top: 5rem !important; }
  .products-block .title-wrap {
    margin-bottom: 0; }
  .products-block .ourproduct-slide .slick-list .slick-track .item figure {
    width: 28rem;
    height: 28rem; }
  .testimonial-sec .testimonial-slide .slick-list .item {
    padding: 0 2.5rem !important; }
    .testimonial-sec .testimonial-slide .slick-list .item:nth-child(odd) {
      display: none; }
    .testimonial-sec .testimonial-slide .slick-list .item h5 {
      margin-bottom: 0; }
  .news-se .news-slide .slick-list {
    padding: 0; }
    .news-se .news-slide .slick-list .item .service-details {
      padding: 0; }
  .banner-block .banner-text h2 {
    font-size: 5rem; }
    .banner-block .banner-text h2 small {
      font-size: 1.8rem !important; }
  .banner-block .banner-text p {
    display: none; }
  h2 {
    font-size: 2.8rem !important; } }

@media (max-width: 575px) {
  .top-head .toggled .nav-menu {
    right: 0 !important; }
  .circle-md {
    width: 280px !important;
    height: 280px !important; }
  .slick-prev.slick-arrow,
  .slick-next.slick-arrow {
    height: 5rem !important;
    width: 5rem !important; }
  .testimonial-slide .slick-prev.slick-arrow,
  .testimonial-slide .slick-next.slick-arrow,
  .ourproduct-slide .slick-prev.slick-arrow,
  .ourproduct-slide .slick-next.slick-arrow {
    height: 5rem !important;
    width: 6rem !important; } }

@media (max-width: 480px) {
  .testimonial-sec .testimonial-slide .slick-prev {
    background-position: -35px -53px; }
    .testimonial-sec .testimonial-slide .slick-prev:hover {
      background-position: -35px 0; }
  .products-block .ourproduct-slide .slick-prev {
    background-position: -35px -53px; }
    .products-block .ourproduct-slide .slick-prev:hover {
      background-position: -35px 0; }
  .news-se .news-slide .slick-prev {
    background-position: -35px -53px; }
    .news-se .news-slide .slick-prev:hover {
      background-position: -35px 0; } }

.contact-sec .contact_form .gform_wrapper #gform_fields_2 li .validation_message {
  font-size: 15px; }

@media (max-width: 480px) {
  .banner-block .banner-text h2 {
    font-size: 3rem !important; } }

/*============about Page Stylings=============*/
#policy-wrapper {
  padding: 10rem 0 7rem; }
  @media (max-width: 767px) {
    #policy-wrapper {
      padding: 5rem 0; } }
  #policy-wrapper .privacy-policy h3 {
    font-size: 22px;
    color: #62a9d5;
    text-transform: uppercase;
    margin-bottom: 30px; }
  #policy-wrapper .privacy-policy p {
    font-size: 16px;
    color: #616161; }
  #policy-wrapper .privacy-policy .policy-divider {
    padding: 5rem 0; }
    #policy-wrapper .privacy-policy .policy-divider ul li {
      padding-left: 3rem;
      display: inline-block;
      position: relative;
      line-height: 35px;
      font-size: 16px; }
      #policy-wrapper .privacy-policy .policy-divider ul li:before {
        content: '\f054';
        font-family: 'Font Awesome\ 5 Free';
        position: absolute;
        left: 0;
        color: #62a9d5;
        font-weight: 700; }
  #policy-wrapper .privacy-policy ul {
    margin-bottom: 1.5rem; }
    #policy-wrapper .privacy-policy ul li {
      position: relative;
      padding-left: 1.5rem;
      margin-bottom: 1rem;
      font-size: 1.4rem; }
      #policy-wrapper .privacy-policy ul li:before {
        content: '';
        background: url(../images/list-arrow.png) no-repeat;
        width: 4px;
        height: 8px;
        position: absolute;
        left: 0;
        top: 1.1rem; }

@media only screen and (max-width: 480px) {
  #policy-wrapper .privacy-policy p {
    font-size: 14px; }
  #policy-wrapper .privacy-policy .policy-divider {
    padding: 0 0 2rem 0; }
    #policy-wrapper .privacy-policy .policy-divider ul li {
      padding-left: 2rem;
      line-height: 32px;
      font-size: 14px; }
      #policy-wrapper .privacy-policy .policy-divider ul li:before {
        font-size: 11px; } }

/*============contactus Page Stylings=============*/
#form-wrapper {
  margin: 10rem 0 12rem 0; }
  @media (max-width: 767px) {
    #form-wrapper {
      margin: 5rem 0; } }
  #form-wrapper .contact-form {
    padding: 70px;
    box-shadow: 0 0 4rem #ddd; }
    @media (max-width: 1024px) {
      #form-wrapper .contact-form {
        padding: 6rem; } }
    #form-wrapper .contact-form p {
      text-align: center;
      color: #515151;
      font-weight: 600;
      font-size: 16px;
      margin-bottom: 6rem; }
    #form-wrapper .contact-form .form-discription {
      padding-right: 50px;
      border-right: 1px solid #b0d4ea; }
      #form-wrapper .contact-form .form-discription h3 {
        font-size: 22px;
        color: #000;
        font-weight: 600; }
      #form-wrapper .contact-form .form-discription ul {
        padding: 7rem 0 3rem 0; }
        #form-wrapper .contact-form .form-discription ul li {
          font-size: 16px;
          color: #000000;
          font-weight: 600;
          line-height: 30px;
          position: relative; }
          #form-wrapper .contact-form .form-discription ul li i {
            display: inline-block;
            float: left;
            color: #555555; }
          #form-wrapper .contact-form .form-discription ul li span {
            display: block;
            padding-left: 50px;
            position: relative;
            top: -32px; }
      #form-wrapper .contact-form .form-discription .social-link {
        display: none;
        padding: 0; }
        #form-wrapper .contact-form .form-discription .social-link li {
          display: inline-block;
          margin-right: 10px;
          color: #62a9d5;
          border: 2px solid #62a9d5;
          padding: 0;
          width: 35px;
          height: 35px;
          padding: 0px 0 5px 10px;
          border-radius: 51%; }
          #form-wrapper .contact-form .form-discription .social-link li:before {
            display: none; }
          #form-wrapper .contact-form .form-discription .social-link li .fab {
            color: #62a9d5 !important;
            font-size: 16px; }
    #form-wrapper .contact-form .form-detail {
      padding-left: 6rem; }
      @media (min-width: 768px) {
        #form-wrapper .contact-form .form-detail .gform_heading {
          margin-bottom: 3.5rem; } }
      #form-wrapper .contact-form .form-detail h3 {
        font-size: 22px;
        color: #000;
        font-weight: 600; }
      #form-wrapper .contact-form .form-detail .gform_body ul {
        margin: 0 -15px; }
        #form-wrapper .contact-form .form-detail .gform_body ul li {
          float: left; }
      #form-wrapper .contact-form .form-detail .gform_body .gfield_label {
        font-size: 1.3rem;
        color: #a7a7a7;
        line-height: 1;
        display: block;
        margin-bottom: 0; }
      #form-wrapper .contact-form .form-detail .gform_body input[type="text"],
      #form-wrapper .contact-form .form-detail .gform_body input[type="tel"],
      #form-wrapper .contact-form .form-detail .gform_body textarea {
        background: #fff;
        color: #000;
        border: none;
        border-bottom: 1px solid #d4d4d4;
        padding: 0.5rem 0rem;
        width: 100%;
        font-size: 1.4rem;
        margin-bottom: 3rem; }
      #form-wrapper .contact-form .form-detail .gform_body input[type="text"]:focus,
      #form-wrapper .contact-form .form-detail .gform_body textarea:focus {
        color: #141414;
        background: #ffffff;
        outline: none; }
      #form-wrapper .contact-form .form-detail .gform_body .textarea {
        height: 60px; }
      #form-wrapper .contact-form .form-detail .gform_body .gform_wrapper li.gfield.gfield_error,
      #form-wrapper .contact-form .form-detail .gform_body .gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning {
        background-color: none;
        margin-bottom: 6px !important;
        border-top: 0;
        border-bottom: 0;
        padding-bottom: 0px;
        padding-top: 0px;
        box-sizing: border-box; }
      #form-wrapper .contact-form .form-detail .gform_body .gfield_description.validation_message {
        font-size: 12px;
        color: red; }
        #form-wrapper .contact-form .form-detail .gform_body .gfield_description.validation_message .validation_error {
          display: none !important; }
        #form-wrapper .contact-form .form-detail .gform_body .gfield_description.validation_message .medium {
          margin-bottom: 0; }
      #form-wrapper .contact-form .form-detail .gform_button {
        background: #62a9d5;
        color: #fff;
        padding: 15px 50px;
        float: right;
        border: none;
        text-transform: uppercase;
        font-size: 18px; }

.gfield_error .ginput_container input {
  margin-bottom: 1rem !important;
  border-color: #ff0000 !important; }

@media only screen and (max-width: 1024px) {
  #form-wrapper .contact-form p {
    margin-bottom: 3rem; } }

@media only screen and (max-width: 991px) {
  #form-wrapper .contact-form .form-discription {
    border-right: 0px solid #b0d4ea;
    padding-right: 0px; } }

@media only screen and (max-width: 767px) {
  #form-wrapper .contact-form .form-discription {
    margin-bottom: 5rem; }
    #form-wrapper .contact-form .form-discription ul {
      padding: 3rem 0 0rem 0; }
  #form-wrapper .contact-form .form-detail {
    padding-left: 1rem; }
    #form-wrapper .contact-form .form-detail .gform_body .ginput_container {
      line-height: 1; }
    #form-wrapper .contact-form .form-detail .gform_body input[type="text"],
    #form-wrapper .contact-form .form-detail .gform_body input[type="tel"],
    #form-wrapper .contact-form .form-detail .gform_body textarea {
      margin-bottom: 1.5rem;
      line-height: 0.5rem;
      padding-top: 0 !important; }
    #form-wrapper .contact-form .form-detail .gform_body .textarea {
      height: 50px; }
    #form-wrapper .contact-form .form-detail .gform_body .gfield_label {
      margin-bottom: 0;
      line-height: 1; } }

@media only screen and (max-width: 480px) {
  #form-wrapper .contact-form {
    padding: 50px 35px; }
    #form-wrapper .contact-form p {
      margin-bottom: 3rem; }
    #form-wrapper .contact-form .form-discription ul li span {
      padding-left: 31px;
      font-size: 14px; }
    #form-wrapper .contact-form .form-detail .gform_button {
      padding: 15px 40px;
      float: none;
      font-size: 15px; } }

/*============About Page Stylings=============*/
#breadcom-wrapper {
  position: relative;
  background: #ccc url("images/About-Usbg.png") no-repeat;
  width: 100%;
  background-size: cover; }
  #breadcom-wrapper .breadcrumbs {
    text-align: center;
    padding: 6rem 1.5rem;
    width: 100%; }
    #breadcom-wrapper .breadcrumbs .seprator {
      margin: 0 10px; }

.blog-wrap .blog-item {
  margin-bottom: 6rem; }
  .blog-wrap .blog-item .iem-wrap {
    box-shadow: 0 0 1.3rem 0 rgba(0, 0, 0, 0.14); }
    .blog-wrap .blog-item .iem-wrap figure {
      position: relative; }
      .blog-wrap .blog-item .iem-wrap figure figcaption {
        position: absolute;
        bottom: 0.8rem;
        background: #fff;
        padding: 0.2rem 0.5rem;
        left: 0.8rem;
        font-family: 'Oswald', sans-serif; }
    .blog-wrap .blog-item .iem-wrap .blog-content {
      padding: 2.5rem 3rem; }
      .blog-wrap .blog-item .iem-wrap .blog-content span {
        color: #62a9d5;
        font-size: 1.3rem;
        display: block; }
      .blog-wrap .blog-item .iem-wrap .blog-content h5 a {
        text-transform: capitalize;
        color: #7e7e7e;
        margin-bottom: 1rem; }
        .blog-wrap .blog-item .iem-wrap .blog-content h5 a:hover {
          color: #62a9d5; }
      .blog-wrap .blog-item .iem-wrap .blog-content p {
        color: #58595b;
        margin-bottom: 2rem;
        line-height: 2.5rem; }
      .blog-wrap .blog-item .iem-wrap .blog-content .btn-primary {
        font-size: 1.6rem;
        padding: 0.7rem 2.6rem;
        letter-spacing: 0; }

/* Media Query */
@media (max-width: 767px) {
  .blog-wrap .blog-item:last-child {
    margin-bottom: 0; }
  .gutter-tb-md {
    padding: 5rem 0 !important; }
  .about-details .change-order .image-container {
    width: 290px !important;
    height: 290px !important; }
  .about-details .video-container + p {
    margin-bottom: 0 !important; } }

.faq-content {
  padding-top: 40px;
  padding-bottom: 40px; }
  .faq-content .btn-link {
    color: #ffffff;
    font-size: 18px;
    text-transform: uppercase;
    width: 100%;
    text-align: left; }
    .faq-content .btn-link:hover {
      color: white;
      text-decoration: none; }
    .faq-content .btn-link:focus {
      text-decoration: none; }
    .faq-content .btn-link .fa-plus {
      float: right; }
  .faq-content .card-header {
    background-color: #62a9d5; }
  .faq-content .card {
    margin-bottom: 10px;
    border-style: none; }

/*============Single Blog Page Stylings=============*/
.singleblog-wrap {
  padding: 10rem 0; }
  .singleblog-wrap .left-aside {
    align-self: center; }
    .singleblog-wrap .left-aside figure {
      margin-bottom: 2rem; }
    .singleblog-wrap .left-aside span {
      font-size: 1.8rem;
      color: #232323;
      border-bottom: 1px solid #e5e5e5;
      padding: 2rem 0;
      margin-bottom: 2rem;
      display: block; }
      .singleblog-wrap .left-aside span em {
        font-style: normal;
        display: inline-block;
        margin-left: 2rem; }
  .singleblog-wrap .right-aside {
    align-self: center; }
    .singleblog-wrap .right-aside .widget-title {
      font-size: 2.3rem;
      font-weight: 300; }
    .singleblog-wrap .right-aside .widget_categories {
      margin-bottom: 2rem; }
      .singleblog-wrap .right-aside .widget_categories ul li.cat-item a {
        font-size: 1.7rem;
        color: #58595b; }
        .singleblog-wrap .right-aside .widget_categories ul li.cat-item a:hover {
          color: #62a9d5; }
    .singleblog-wrap .right-aside h3 {
      margin-bottom: 1.5rem; }
    .singleblog-wrap .right-aside .search-aside {
      margin-bottom: 2rem; }
      .singleblog-wrap .right-aside .search-aside .search-form {
        position: relative; }
        .singleblog-wrap .right-aside .search-aside .search-form label {
          width: 100%;
          margin: 0; }
          .singleblog-wrap .right-aside .search-aside .search-form label span {
            display: none; }
          .singleblog-wrap .right-aside .search-aside .search-form label input {
            background: #f0f1f4;
            border: none;
            width: 100%;
            height: 5.2rem;
            padding: 0 1.5rem; }
        .singleblog-wrap .right-aside .search-aside .search-form .search-submit {
          position: absolute;
          right: 0;
          top: 0;
          bottom: 0;
          border: none;
          background: #62a9d5;
          color: #fff;
          cursor: pointer; }
    .singleblog-wrap .right-aside .aside-category {
      margin-bottom: 2rem; }
      .singleblog-wrap .right-aside .aside-category ul li a {
        font-size: 1.7rem;
        color: #58595b; }
        .singleblog-wrap .right-aside .aside-category ul li a:hover {
          color: #62a9d5; }
    .singleblog-wrap .right-aside .recent-post .post-item {
      margin-bottom: 2rem; }
      .singleblog-wrap .right-aside .recent-post .post-item figure {
        flex: 6;
        padding-right: 1.8rem; }
      .singleblog-wrap .right-aside .recent-post .post-item .post-content {
        flex: 5; }
        .singleblog-wrap .right-aside .recent-post .post-item .post-content span {
          font-size: 1.2rem;
          color: #9e9e9e;
          line-height: 1; }
        .singleblog-wrap .right-aside .recent-post .post-item .post-content span.d-block {
          font-size: 1.5rem;
          line-height: 1.3;
          color: #62a9d5;
          border-bottom: 1px solid #e5e5e5;
          padding-bottom: 0.7rem;
          font-weight: 600;
          font-family: 'Open Sans', sans-serif;
          margin-bottom: 0.7rem; }
        .singleblog-wrap .right-aside .recent-post .post-item .post-content h3 {
          font-family: 'Open Sans', sans-serif;
          margin-bottom: 0.5rem;
          font-size: 1.4rem;
          color: #000;
          line-height: 1.9rem;
          font-weight: 400; }
        .singleblog-wrap .right-aside .recent-post .post-item .post-content p {
          font-size: 1.4rem;
          color: #000;
          line-height: 1.9rem;
          margin-bottom: 0; }
        .singleblog-wrap .right-aside .recent-post .post-item .post-content a {
          font-size: 1.2rem;
          text-transform: uppercase;
          color: #000; }
          .singleblog-wrap .right-aside .recent-post .post-item .post-content a:hover {
            color: #62a9d5; }

/* Media Query */
@media (min-width: 1024px) {
  h1 {
    font-size: 4rem; } }

@media (min-width: 768px) {
  .singleblog-wrap .right-aside {
    margin-left: -5rem; }
  .singleblog-wrap .left-aside {
    padding-right: 5rem; } }

@media (max-width: 767px) {
  h1 {
    font-size: 2.5rem !important; }
  .singleblog-wrap .left-aside {
    margin-bottom: 3rem; }
  .singleblog-wrap .right-aside .recent-post .post-item figure {
    flex: 1; } }

/*============Testimonial Page Stylings=============*/
.py-9 {
  padding-top: 90px;
  padding-bottom: 90px; }

.testimonial .grid {
  -moz-column-count: 3;
  -webkit-column-count: 3;
  column-count: 3;
  -moz-column-gap: 40px;
  -webkit-column-gap: 40px;
  column-gap: 40px; }
  .testimonial .grid .testimonial_item {
    -webkit-column-break-inside: avoid;
    /* Chrome, Safari */
    page-break-inside: avoid;
    /* Theoretically FF 20+ */
    break-inside: avoid-column;
    /* IE 11 */
    display: table; }

.testimonial .testimonial_item {
  margin-bottom: 4rem; }
  .testimonial .testimonial_item .item_wrap {
    border: 1px solid #ebebeb;
    padding: 4rem;
    transition: ease 0.5s;
    margin: 26px 0; }
    .testimonial .testimonial_item .item_wrap h4 {
      color: #7e7e7e; }
    .testimonial .testimonial_item .item_wrap .stars {
      margin-bottom: 1.5rem; }
      .testimonial .testimonial_item .item_wrap .stars li {
        display: inline-block;
        color: #f5a623; }
    .testimonial .testimonial_item .item_wrap p {
      font-size: 1.4rem;
      color: #3a3a3c; }
  .testimonial .testimonial_item:hover .item_wrap {
    border-color: transparent;
    box-shadow: 0 0 5rem rgba(0, 0, 0, 0.2);
    transition: ease 0.5s; }
    .testimonial .testimonial_item:hover .item_wrap h4 {
      color: #62a9d5; }

.testimonial .grid .grid-item {
  margin-bottom: 30px;
  position: relative;
  float: left; }

/* Testimonial start */
section#testimonial {
  background: #2c3893 url(../images/noise.png) repeat;
  color: #fff; }

section#testimonial .title h3 {
  color: #fff; }

section#testimonial .border-bottom {
  border-color: #fff; }

.clients-opinion {
  border: 1px solid #c7c7c7;
  padding: 40px 80px;
  text-align: center;
  position: relative; }

.clients-opinion:before {
  content: '"';
  font-family: 'Oleo Script', cursive;
  font-size: 22px;
  transform: rotate(180deg);
  height: 30px;
  width: 30px;
  background: #fff;
  display: inline-block;
  color: #2c3893;
  border-radius: 50%;
  text-align: center;
  line-height: 34px;
  position: absolute;
  top: -16px;
  border: 5px solid #2c3893;
  left: 0;
  right: 0;
  margin: auto; }

.clients-opinion:after {
  content: '';
  background: #2c3893 url(../images/noise.png) no-repeat top right;
  border: 1px solid #c7c7c7;
  position: absolute;
  bottom: -9px;
  height: 17px;
  width: 17px;
  transform: rotate(45deg);
  border-top: none;
  border-left: none;
  left: 0;
  right: 0;
  margin: auto; }

.clients-opinion i {
  position: absolute; }

.slick-dots .slick-active button {
  background: #111c6f; }

.slick-dots li {
  margin: 0; }

.slick-dots li button {
  background: #7e89db;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%; }

.clients-opinion i {
  position: absolute;
  top: 45%;
  background: #fff;
  height: 30px;
  width: 30px;
  border: 5px solid #2c3893;
  color: #2c3893;
  line-height: 20px;
  cursor: pointer; }

.clients-opinion .fa-angle-left {
  left: -16px; }

.clients-opinion .fa-angle-right {
  right: -16px; }

/* .clients-img {
    margin-top: 40px;
} */
.clients-name h4 {
  font-size: 20px;
  font-weight: 500;
  color: #fff; }

.clients-name h4 {
  font-size: 20px;
  font-weight: 500;
  color: #fff; }

.slick-dots {
  bottom: -135px;
  left: 0; }

section#testimonial a.btn {
  margin-top: 80px; }

/* Testimonial end */
/* Media Query */
/* @media (max-width: 767px) {
} */
@media (max-width: 991px) {
  .testimonial .grid {
    -moz-column-count: 2;
    -webkit-column-count: 2;
    column-count: 2; }
  .testimonial .testimonial_item {
    margin-bottom: .5rem; } }

@media (max-width: 767px) {
  .testimonial .testimonial_item .item_wrap {
    padding: 15px; } }

@media (max-width: 575px) {
  .testimonial.py-9 {
    padding: 15px !important; }
  .testimonial .grid {
    -moz-column-count: 1;
    -webkit-column-count: 1;
    column-count: 1; }
  .testimonial .testimonial_item .item_wrap {
    margin: 15px 0; } }

/*============Single Blog Page Stylings=============*/
.product-sec .product-category {
  margin-bottom: 4.5rem;
  border-bottom: 1px solid #f6f6f6;
  padding-bottom: 4rem; }
  .product-sec .product-category:last-child {
    border-bottom: none;
    margin-bottom: 0; }
  .product-sec .product-category h2 {
    font-size: 3rem;
    text-transform: capitalize; }
  .product-sec .product-category .sub-title {
    margin-bottom: 3rem; }
  .product-sec .product-category .items .product-item {
    margin-bottom: 4rem; }
    .product-sec .product-category .items .product-item:hover a h3 {
      color: #62a9d5; }
    .product-sec .product-category .items .product-item a {
      color: #000;
      display: block; }
      .product-sec .product-category .items .product-item a figure {
        border: 0.1rem solid #ededed;
        margin-bottom: 3rem; }
      .product-sec .product-category .items .product-item a h3 {
        text-transform: capitalize;
        font-weight: 400;
        font-size: 1.8rem; }
  .product-sec .product-category .btn-primary {
    display: inline-block;
    font-size: 1.8rem;
    letter-spacing: 0;
    padding: 1.1rem 5.1rem; }

.product-subpage .product-category {
  padding-bottom: 0; }

/* Media Query */
@media (max-width: 992px) {
  .product-sec .product-category .items .product-item a h3 {
    font-size: 1.8rem; } }

@media (max-width: 767px) {
  .product-sec .product-category .items .product-item a figure {
    margin-bottom: 2rem;
    text-align: center; }
    .product-sec .product-category .items .product-item a figure img {
      display: inline-block; }
  h1 {
    font-size: 5rem !important; }
  .product-subpage .product-category .items .product-item:last-child {
    margin-bottom: 0; }
  .banner {
    min-height: 175px; }
  .gutter-tb-sm {
    padding: 5rem 0 !important; } }

@media (max-width: 575px) {
  .product-sec .product-category:last-child {
    padding-bottom: 0; }
  h1 {
    font-size: 3rem !important; } }

/*============Product Details Page Stylings=============*/
.procut-details .img-holder .slick-item {
  border: 1px solid #ededed; }

.procut-details .img-holder .product-slide {
  margin-bottom: 3rem; }

.procut-details .img-holder .nav-slide .slick-item {
  margin-right: 2.2rem; }

.procut-details .info-holder h2 {
  font-size: 3rem;
  margin-bottom: 3rem;
  text-transform: capitalize; }

.procut-details .info-holder h4 {
  color: #62a9d5;
  margin-bottom: 1rem;
  text-transform: capitalize; }

.procut-details .info-holder p {
  margin-bottom: 2rem; }

.procut-details .info-holder .btn-primary,
.procut-details .info-holder .btn-default {
  letter-spacing: 0.1rem;
  font-size: 1.8rem; }

.procut-details .info-holder .btn-primary {
  padding: 1rem 8rem;
  margin-right: 2rem; }

.procut-details .info-holder .btn-primary,
.procut-details .info-holder .btn-default {
  padding: 1rem 5rem;
  letter-spacing: 0.1rem;
  font-size: 1.8rem; }

.procut-details .info-holder #productModal {
  top: 7rem; }
  .procut-details .info-holder #productModal .modal-dialog .modal-content {
    border-radius: 0.8rem;
    position: relative;
    border: none; }
    .procut-details .info-holder #productModal .modal-dialog .modal-content:before {
      content: '';
      background: #62a9d5;
      height: 0.9rem;
      width: 100%;
      left: 0;
      top: 0;
      border-radius: 0.8rem 0.8rem 0 0; }
    .procut-details .info-holder #productModal .modal-dialog .modal-content .modal-header {
      border-bottom: none; }
      .procut-details .info-holder #productModal .modal-dialog .modal-content .modal-header .modal-title {
        width: 100%;
        text-transform: uppercase;
        margin: 1rem 0 0; }
      .procut-details .info-holder #productModal .modal-dialog .modal-content .modal-header .close {
        position: absolute;
        background: #fff;
        padding: 1.3rem;
        right: -1.8rem;
        top: 2rem;
        opacity: 1;
        border-radius: 0 0.4rem 0.4rem 0; }
        .procut-details .info-holder #productModal .modal-dialog .modal-content .modal-header .close span {
          color: #222;
          font-size: 30px; }
    .procut-details .info-holder #productModal .modal-dialog .modal-content .modal-body {
      padding: 4rem; }
      .procut-details .info-holder #productModal .modal-dialog .modal-content .modal-body .modal-product {
        margin-bottom: 4.5rem; }
        @media (max-width: 767px) {
          .procut-details .info-holder #productModal .modal-dialog .modal-content .modal-body .modal-product {
            margin-bottom: 1rem; } }
        .procut-details .info-holder #productModal .modal-dialog .modal-content .modal-body .modal-product figure {
          margin: 0;
          border: 1px solid #d4d4d4;
          margin-right: 1.8rem;
          text-align: center;
          max-width: 10rem; }
        .procut-details .info-holder #productModal .modal-dialog .modal-content .modal-body .modal-product .product_title {
          align-self: center; }
          .procut-details .info-holder #productModal .modal-dialog .modal-content .modal-body .modal-product .product_title h3 {
            font-size: 24px;
            font-weight: 500;
            color: #000;
            margin-bottom: 1rem;
            align-self: center; }
          .procut-details .info-holder #productModal .modal-dialog .modal-content .modal-body .modal-product .product_title h5 {
            font-weight: 500;
            margin-bottom: 0;
            color: #62a9d5;
            text-transform: uppercase; }
      .procut-details .info-holder #productModal .modal-dialog .modal-content .modal-body .modal-form .gform_body .gform_fields li {
        margin-bottom: 1rem; }
        .procut-details .info-holder #productModal .modal-dialog .modal-content .modal-body .modal-form .gform_body .gform_fields li label {
          display: none; }
        .procut-details .info-holder #productModal .modal-dialog .modal-content .modal-body .modal-form .gform_body .gform_fields li .ginput_container input,
        .procut-details .info-holder #productModal .modal-dialog .modal-content .modal-body .modal-form .gform_body .gform_fields li .ginput_container textarea {
          background: transparent;
          border-bottom: 1px solid #d4d4d4;
          padding-left: 0;
          height: 4rem;
          font-size: 1.3rem;
          color: #000; }
        .procut-details .info-holder #productModal .modal-dialog .modal-content .modal-body .modal-form .gform_body .gform_fields li .validation_message {
          color: #f20000;
          font-size: 1.4rem; }
      .procut-details .info-holder #productModal .modal-dialog .modal-content .modal-body .modal-form .gform_footer input {
        background: #62a9d5;
        color: #fff;
        width: 100%;
        padding: 0.5rem 1.5rem;
        font-family: 'Oswald', sans-serif;
        font-size: 1.8rem;
        font-weight: 500;
        text-transform: uppercase;
        border-color: #62a9d5;
        transition: ease 0.5s; }
        .procut-details .info-holder #productModal .modal-dialog .modal-content .modal-body .modal-form .gform_footer input:hover {
          background: transparent;
          color: #000;
          transition: ease 0.5s; }
      .procut-details .info-holder #productModal .modal-dialog .modal-content .modal-body .modal-form .validation_error {
        display: none; }
  .procut-details .info-holder #productModal ::-webkit-input-placeholder {
    /* WebKit, Blink, Edge */
    color: #a7a7a7; }
  .procut-details .info-holder #productModal :-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #a7a7a7; }
  .procut-details .info-holder #productModal ::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #a7a7a7; }
  .procut-details .info-holder #productModal :-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #a7a7a7; }
  .procut-details .info-holder #productModal ::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #a7a7a7; }
  .procut-details .info-holder #productModal ::placeholder {
    /* Most modern browsers support this now. */
    color: #a7a7a7; }

.procut-details .more-details {
  margin: 9.5rem 0; }
  .procut-details .more-details h3 {
    font-size: 3rem;
    color: #000;
    font-weight: 400; }
  .procut-details .more-details p {
    margin-bottom: 3rem; }
  .procut-details .more-details .btn-primary {
    padding: 1.3rem 3rem;
    letter-spacing: 0;
    font-size: 1.8rem; }
    .procut-details .more-details .btn-primary .fa-file-pdf {
      margin-right: 1rem;
      font-size: 2.5rem; }

.procut-details .product-category {
  margin-bottom: 0; }
  .procut-details .product-category .items .product-item {
    margin-bottom: 0; }
  .procut-details .product-category h3 {
    font-size: 3rem;
    color: #000;
    font-weight: 400; }

@media (max-width: 575px) {
  .content-wrapper-part div a {
    margin-bottom: 1rem;
    white-space: inherit; } }

/* Media Query */
@media (max-width: 991px) {
  .procut-details .info-holder .btn-primary,
  .procut-details .info-holder .btn-default {
    padding: 1rem 3rem; } }

@media (max-width: 767px) {
  .procut-details .img-holder {
    margin-bottom: 3rem; }
  .procut-details .more-details {
    margin: 4rem 0; } }

@media (max-width: 575px) {
  .procut-details .info-holder #productModal .modal-dialog .modal-content .modal-header .close {
    position: absolute;
    background: #ccc;
    right: 5px;
    top: 1rem;
    opacity: 1;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    padding: 0; }
    .procut-details .info-holder #productModal .modal-dialog .modal-content .modal-header .close span {
      font-size: 20px; }
  .procut-details .info-holder #productModal .modal-dialog .modal-content .modal-body {
    padding: 1rem 2rem 2rem; }
    .procut-details .info-holder #productModal .modal-dialog .modal-content .modal-body .modal-product figure {
      margin-bottom: 1.5rem; }
  .procut-details .info-holder .btn-primary {
    margin-bottom: 1.5rem; } }

/* 06-08-2019 */
.procut-details .more-details table a {
  color: #444444; }

.term-pneumatic-ejectors .product-category .btn-primary,
.term-diaphragm-pumps .product-category .btn-primary,
.term-heavy-duty-series-plunger-pumps .product-category .btn-primary,
.term-severe-duty-series-plunger-pumps .product-category .btn-primary,
.term-standard-duty-series-plunger-pumps .product-category .btn-primary {
  display: none; }

.product-sec .product-category table a {
  color: #444444; }

.services .col-lg-4 {
  margin-bottom: 5rem; }

.services .card {
  border: none;
  background-color: white;
  box-shadow: 0px 0px 76px 0px rgba(0, 0, 0, 0.11);
  margin-bottom: 30px; }
  .services .card-title {
    font-size: 28px;
    font-family: Oswald, sans-serif;
    font-weight: 400;
    line-height: 28px;
    color: #232323; }
  .services .card p {
    font-family: 'Open Sans', sans-serif;
    font-size: 17px;
    line-height: 30px;
    color: #58595b; }

@media (max-width: 1199px) {
  .services .card-title {
    font-size: 24px; }
  .services .card p {
    font-size: 16px; } }

@media (max-width: 767px) {
  .services .card-title {
    font-size: 22px; }
  .services .card p {
    font-size: 15px; } }

@media (max-width: 575px) {
  .services .card {
    margin-bottom: 15px; }
    .services .card-title {
      font-size: 20px; }
    .services .card p {
      font-size: 14px; } }

.industrial-sub-block h3 {
  font-family: Oswald, sans-serif;
  font-size: 22px;
  line-height: 26px;
  color: #000;
  font-weight: 400;
  margin-top: 6rem; }

.industrial-sub-block .text-block p {
  font-size: 16px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  line-height: 30px;
  color: #515151; }
  .industrial-sub-block .text-block p span.font-semi-bold {
    font-size: 17px;
    font-weight: 600; }

.industrial-sub-block .product-sec .product-category .items .product-item a h3 {
  margin-top: 0; }

.industrial-sub-block .product-sec .product-category .items .product-item a figure {
  margin-bottom: 1.5rem; }

@media (max-width: 991px) {
  .industrial-sub-block .text-block p span.font-semi-bold {
    font-size: 16px; }
  .industrial-sub-block .text-block p {
    font-size: 15px; } }

@media (max-width: 767px) {
  .industrial-sub-block h3 {
    font-size: 20px;
    margin-top: 3rem; }
  .industrial-sub-block .text-block p {
    font-size: 14px; }
  .industrial-sub-block .text-block p span.font-semi-bold {
    font-size: 15px; } }

@media (max-width: 575px) {
  .industrial-sub-block h3 {
    font-size: 19px;
    margin-top: 20px; }
  .industrial-sub-block .text-block p {
    line-height: 1.5; } }

/* 404 css*/
.no-results .search-form {
  position: relative;
  overflow: hidden; }
  .no-results .search-form label {
    display: block !important; }
    .no-results .search-form label input {
      border-radius: 0; }
  .no-results .search-form .search-submit {
    position: absolute;
    right: 0;
    top: 0;
    height: 38px;
    line-height: 16px; }

.error-404 .page-header h1 {
  font-size: 46px; }

.error-404 .btn-wrap {
  margin-top: 30px; }
  .error-404 .btn-wrap .btn {
    border-radius: 30px;
    padding: 1.5rem 5.6rem; }

.search-no-results #primary {
  margin-bottom: 0; }

/* Media */
@media (max-width: 480px) {
  .error-404 .btn-wrap .btn {
    display: block;
    margin: 5px 0; } }

.top-head {
  min-height: 85px;
  width: 100%; }
  @media (max-width: 767px) {
    .top-head .logo {
      max-width: 190px; } }
  .top-head .main-navigation {
    width: auto; }
    .top-head .main-navigation .menu-toggle {
      display: none;
      position: relative;
      font-size: 0;
      background: transparent;
      border: none;
      cursor: pointer; }
      .top-head .main-navigation .menu-toggle:before {
        content: '\f0c9';
        font-family: 'Font Awesome\ 5 Free';
        font-weight: 700;
        font-size: 2rem; }
    .top-head .main-navigation ul {
      display: flex;
      transition: ease 0.5s;
      height: 100%; }
      .top-head .main-navigation ul.menu {
        min-height: 80px;
        align-items: center; }
      .top-head .main-navigation ul li {
        padding-left: 4.5rem;
        position: relative; }
        .top-head .main-navigation ul li .sub-menu {
          position: absolute;
          margin: auto;
          background: #f8f8f8;
          width: 100%;
          min-width: 290px;
          flex-direction: column;
          height: 0 !important;
          overflow: hidden;
          transition: ease 0.5s;
          top: 50px; }
          .top-head .main-navigation ul li .sub-menu li {
            padding-left: 1.5rem !important;
            padding-top: 0.5rem;
            padding-bottom: 0.5rem; }
            .top-head .main-navigation ul li .sub-menu li a {
              font-size: 16px; }
        .top-head .main-navigation ul li:hover .sub-menu {
          height: auto !important;
          transition: ease 0.5s;
          top: 54px; }
      .top-head .main-navigation ul .current-menu-item a:after {
        width: 100%; }
    .top-head .main-navigation a {
      font-family: 'Open Sans', sans-serif;
      color: #141414 !important;
      transition: all 0.3s ease-in-out;
      text-transform: capitalize;
      position: relative; }
      .top-head .main-navigation a:after {
        position: absolute;
        content: '';
        top: 0;
        right: 0;
        bottom: -29px;
        left: 0;
        border-bottom: 2px solid #62a9d5;
        width: 0;
        transition: 0.2s all ease-in-out; }
      .top-head .main-navigation a:hover {
        text-decoration: none; }
      .top-head .main-navigation a:hover:after {
        width: 100%; }
  .top-head .call-us h4 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    color: #62a9d5;
    margin: 0; }
    .top-head .call-us h4 a {
      color: #62a9d5; }
      .top-head .call-us h4 a:hover {
        color: #62a9d5; }

.top-head .main-navigation .sub-menu li a:after {
  bottom: -10px; }

/* banner block */
@media (min-width: 768px) {
  .banner-block .img-holder {
    min-height: 50rem; } }

@media (min-width: 992px) {
  .banner-block .img-holder {
    min-height: 60rem; } }

@media (min-width: 1200px) {
  .banner-block .img-holder {
    min-height: 73rem; } }

.banner-block .banner-text {
  max-width: 720px;
  width: 100%;
  padding: 2rem 1.5rem 4rem 1.5rem; }
  @media (min-width: 768px) {
    .banner-block .banner-text {
      padding: 10rem 1.5rem; } }
  @media (min-width: 992px) {
    .banner-block .banner-text {
      font-size: 2rem; } }
  @media (min-width: 1200px) {
    .banner-block .banner-text {
      font-size: 2.4rem; } }
  @media (min-width: 1366px) {
    .banner-block .banner-text {
      margin-right: 8rem;
      margin-left: auto;
      font-size: 2.8rem; } }
  @media (min-width: 1600px) {
    .banner-block .banner-text {
      padding-top: 14rem;
      padding-bottom: 14rem; } }
  .banner-block .banner-text h6 {
    text-transform: uppercase;
    color: #62a9d5;
    margin: 0;
    position: relative; }
    @media (min-width: 1550px) {
      .banner-block .banner-text h6:before {
        content: '';
        background: #62a9d5;
        height: 0.1rem;
        width: 6rem;
        position: absolute;
        left: -8rem;
        top: 0.9rem; } }
  .banner-block .banner-text h2 {
    font-size: 8rem; }
  .banner-block .banner-text p {
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    font-size: 16px;
    color: #444444; }
    @media (min-width: 768px) {
      .banner-block .banner-text p {
        font-size: 20px; } }
    @media (min-width: 1200px) {
      .banner-block .banner-text p {
        font-size: 24px;
        line-height: 30px; } }
    @media (min-width: 1600px) {
      .banner-block .banner-text p {
        font-size: 28px;
        line-height: 36px; } }
    .banner-block .banner-text p a {
      color: #616161; }
      .banner-block .banner-text p a:hover {
        color: #62a9d5; }

.banner-block .img-holder {
  text-align: right; }
  .banner-block .img-holder img {
    display: inline-block; }

/*----slick css for home banner--*/
/*positioning dots*/
.banner-slider ul.slick-dots {
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  bottom: 10px; }
  .banner-slider ul.slick-dots li {
    position: relative;
    top: 0;
    display: inline-block;
    width: 8px;
    height: 8px;
    margin: 4rem .3rem 0 .3rem;
    padding: 0;
    cursor: pointer;
    border: 1px solid #141414;
    background: transparent;
    border-radius: 50%; }
    .banner-slider ul.slick-dots li button {
      border: 0;
      outline: none;
      background: transparent;
      font-size: 0; }
    .banner-slider ul.slick-dots li.slick-active {
      background: #141414; }

.banner-slider .item:focus {
  outline: none; }

/*-----BREADCRUMB-----*/
.banner {
  display: flex;
  min-height: 240px; }

.banner .banner-details {
  margin: auto;
  text-align: center; }

.banner .banner-details .breadcrumbs {
  color: #62a9d5;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  text-transform: capitalize; }

.banner .banner-details .breadcrumbs a {
  text-transform: capitalize; }

.banner .banner-details .breadcrumbs a span {
  color: #141414; }

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .banner .banner-details {
    transform: translateY(70%); } }

@media (max-width: 1024px) {
  .top-head .main-navigation .nav-menu {
    position: absolute;
    background: #fff;
    width: 100%;
    top: 85px;
    transition: ease 0.5s;
    overflow: hidden;
    right: -100%; }
    .top-head .main-navigation .nav-menu li {
      padding-left: 1.5rem;
      border-bottom: 1px solid #ccc;
      padding-bottom: 1rem; }
      .top-head .main-navigation .nav-menu li:last-child {
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 0; }
  .top-head .main-navigation .menu-toggle {
    display: block !important; }
  .top-head .toggled .nav-menu {
    height: auto;
    transition: ease 0.5s;
    display: block;
    z-index: 9;
    right: 0; }
  .top-head .call-us {
    display: none; } }

.main-footer {
  border-bottom: 1px solid #ebeae9;
  border-top: 1px solid #ebeae9; }
  .main-footer .footer-menu .single-menu {
    color: #6d6d6d;
    text-align: left; }
    @media (max-width: 991px) {
      .main-footer .footer-menu .single-menu {
        margin-bottom: 3rem; } }
    .main-footer .footer-menu .single-menu li {
      font-size: 1.5rem;
      line-height: 2.2rem;
      margin-bottom: 1.5rem; }
      .main-footer .footer-menu .single-menu li strong {
        display: block; }
      @media (max-width: 767px) {
        .main-footer .footer-menu .single-menu li {
          margin-bottom: 0.6rem; }
          .main-footer .footer-menu .single-menu li br {
            display: none; } }
      .main-footer .footer-menu .single-menu li a {
        display: block;
        font-family: 'Open Sans', sans-serif;
        color: #6d6d6d;
        font-size: 1.5rem;
        font-weight: 400;
        text-transform: capitalize; }
    .main-footer .footer-menu .single-menu .footer-header {
      font-family: 'Oswald', sans-serif;
      font-size: 1.4rem;
      line-height: 1rem;
      color: #272727;
      text-transform: uppercase;
      font-weight: 400;
      margin-bottom: 3rem;
      display: inline-block;
      margin-right: 1.5rem; }
      @media (max-width: 767px) {
        .main-footer .footer-menu .single-menu .footer-header {
          margin-bottom: 2rem; } }
    .main-footer .footer-menu .single-menu .form-header span {
      margin-right: .5rem;
      display: inline-block; }
    .main-footer .footer-menu .single-menu .subscription {
      position: relative; }
      .main-footer .footer-menu .single-menu .subscription .form-control {
        padding: 1.5rem 10rem 1.5rem 2rem;
        background-color: #ffffff;
        font-size: 1.4rem;
        line-height: 1;
        box-shadow: 11px 19.053px 60px 0px rgba(0, 1, 1, 0.1); }
        @media (max-width: 767px) {
          .main-footer .footer-menu .single-menu .subscription .form-control {
            padding: 1.1rem 1.5rem; } }
      .main-footer .footer-menu .single-menu .subscription .custom-btn-black {
        position: absolute;
        top: 0;
        right: 0; }
        @media (max-width: 767px) {
          .main-footer .footer-menu .single-menu .subscription .custom-btn-black {
            padding: 1.35rem 1.5rem; } }
  .main-footer .social-link {
    margin-bottom: 1rem; }
    .main-footer .social-link li {
      margin-right: 1rem; }
      .main-footer .social-link li:first-child {
        margin-right: 2rem; }
      .main-footer .social-link li:last-child {
        margin-right: 0; }
    .main-footer .social-link a {
      color: #ffffff !important;
      display: flex !important;
      align-items: center;
      justify-content: center; }
    .main-footer .social-link .facebook,
    .main-footer .social-link .twitter {
      width: 30px;
      height: 30px; }
    .main-footer .social-link .facebook {
      background-color: #46bfee; }
    .main-footer .social-link .twitter {
      background-color: #1a5abe; }

.gform_wrapper {
  position: relative; }

.footer-menu .gform_body {
  width: 100% !important;
  float: left; }

.footer-menu .gform_body input {
  padding: 1.5rem 10rem 1.5rem 2rem;
  background-color: #ffffff;
  font-size: 1.4rem;
  line-height: 1;
  box-shadow: 11px 19.053px 60px 0 rgba(0, 1, 1, 0.1); }
  @media (min-width: 767px) {
    .footer-menu .gform_body input {
      height: 6rem; } }

.footer-menu .gform_body label {
  display: none; }

.footer-menu .gform_footer {
  position: absolute;
  right: 0;
  transform: translateY(2%); }

.footer-menu .gform_footer input {
  padding: 1.75rem 2rem;
  background-color: #141414;
  color: #ffffff;
  border-radius: 0; }

.footer-copyright {
  padding: 1.5rem 0;
  text-align: center;
  font-size: 1.4rem;
  color: #a9a9a9; }
  .footer-copyright a {
    color: #616161; }
    .footer-copyright a:hover {
      color: #616161;
      text-decoration: none; }

.footer-menu .gform_footer input {
  text-transform: uppercase;
  font-family: Oswald, sans-serif;
  font-size: 13px; }
  @media (min-width: 767px) {
    .footer-menu .gform_footer input {
      height: 6rem; } }

footer .validation_error,
footer .validation_message {
  color: #ff0000;
  font-size: 15px; }

.main-footer .footer-menu .single-menu li a {
  display: inline-block; }

.footer-menu .gform_body {
  width: 67%; }

html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  font-size: 62.5%; }

*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  font-family: 'Open Sans', sans-serif;
  margin: 0;
  font-weight: 400; }

/* Fonts */
/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */ }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent; }

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */ }

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder; }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%; }

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
  vertical-align: top; }

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
optgroup,
textarea {
  color: #444444;
  font-family: 'Open Sans', sans-serif;
  font-size: 1.8rem;
  line-height: 2.9rem; }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Oswald', sans-serif;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  margin-top: 0; }

h1 {
  font-size: 4.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #141414; }
  h1 small {
    font-size: 2.4rem;
    font-weight: 300; }

h2 {
  font-size: 4.8rem;
  font-weight: 700;
  text-transform: uppercase; }

h3 {
  font-size: 2.3rem;
  font-weight: 300; }

h4 {
  font-size: 2rem;
  font-weight: 400; }

h5 {
  font-size: 1.8rem;
  font-weight: 400; }

h6 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.4rem;
  font-weight: 600; }

p {
  font: 1.6rem/3rem 'Open Sans', sans-serif;
  margin-bottom: 1.5rem;
  font-weight: 400;
  color: #616161; }

dfn,
cite,
em,
i {
  font-style: italic; }

blockquote {
  margin: 0 1.5rem; }

address {
  margin: 0 0 1.5rem; }

big {
  font-size: 125%; }

.btn-primary {
  background: #62a9d5;
  text-transform: uppercase;
  color: #fff;
  padding: 2.3rem 5.6rem;
  border-color: #62a9d5;
  transition: ease 0.5s;
  font-size: 14px;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.3rem; }
  .btn-primary:hover {
    background: transparent;
    transition: ease 0.5s;
    color: #616161;
    border-color: #62a9d5; }

.btn-default {
  background: #e6e6e6;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  border-color: #e6e6e6;
  color: #000;
  text-transform: uppercase; }
  .btn-default:hover {
    background: transparent;
    transition: ease 0.5s;
    color: #616161;
    border-color: #62a9d5; }

.py-10 {
  padding: 10rem 0; }

.py-8 {
  padding: 8rem 0; }

.btn:focus {
  box-shadow: none; }

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
  box-sizing: border-box;
  margin-top: 0 !important; }

*,
*:before,
*:after {
  /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
  box-sizing: border-box; }

body {
  background: #fff; }

hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5rem; }

ul,
ol {
  margin: 0;
  padding: 0; }

ul {
  list-style: none;
  margin: 0; }

ol {
  list-style: decimal; }

li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1.5em; }

dt {
  font-weight: bold; }

dd {
  margin: 0 1.5em 1.5em; }

img {
  height: auto;
  /* Make sure images are scaled correctly. */
  max-width: 100%;
  /* Adhere to container width. */ }

figure {
  margin: 1rem 0;
  /* Extra wide images within figure tags don't overflow the content area. */ }

table {
  margin: 0 0 1.5rem;
  width: 100%; }

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  border: 1px solid;
  border-color: #ccc #ccc #bbb;
  border-radius: 3px;
  background: #e6e6e6;
  color: rgba(0, 0, 0, 0.8);
  font-size: 1.2rem;
  line-height: 1;
  padding: .6em 1em .4em; }

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
  border-color: #ccc #bbb #aaa; }

button:active,
button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
  border: none;
  outline: none; }

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
  background: #313436;
  color: #fff;
  border: 1px solid transparent;
  padding: 1.2rem 2rem;
  width: 100%;
  font-size: 1.4rem; }

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
  color: #141414;
  background: #ffffff;
  outline: none;
  border: none; }

select {
  border: 1px solid #ccc; }

/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
  text-decoration: none; }

a:focus,
a:hover,
a:active {
  outline: 0; }

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Custom styles
--------------------------------------------------------------*/
.bg-cover {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center; }

.bg-cover > img {
  display: none; }

#page {
  position: relative;
  overflow: hidden; }

.container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto; }

/*--------------------------------------------------------------
gutters
--------------------------------------------------------------*/
.gutter-tb-lg {
  padding: 15rem 0; }

.gutter-tb-md {
  padding: 11rem 0; }

.gutter-tb-sm {
  padding: 8rem 0; }

.gutter-t-md {
  padding-top: 11rem; }

/*--------------------------------------------------------------
buttons
--------------------------------------------------------------*/
.custom-btn {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  padding: 2rem 5rem;
  border-radius: 5px;
  text-transform: uppercase;
  display: inline-block;
  letter-spacing: 1px;
  transition: all 0.3s ease-in-out; }

.custom-btn-blue {
  background-color: #62a9d5;
  margin-top: 2.5rem;
  line-height: 3rem; }
  .custom-btn-blue:hover {
    color: #ffffff;
    animation-name: btn-hover;
    animation-duration: 2s;
    text-decoration: none; }
  .custom-btn-blue:visited {
    color: #ffffff; }
  .custom-btn-blue:focus {
    color: #ffffff; }

.custom-btn-white {
  background-color: #ffffff;
  color: #62a9d5; }

.custom-btn-black {
  padding: 1.75rem 2rem;
  background-color: #141414;
  color: #ffffff;
  border-radius: 0; }

/*--------------------------------------------------------------
keyframe animations
--------------------------------------------------------------*/
@-webkit-keyframes btn-hover {
  from {
    transform: translateY(0); }
  to {
    transform: translateY(-5px); } }

@-moz-keyframes btn-hover {
  from {
    transform: translateY(0); }
  to {
    transform: translateY(-5px); } }

@-o-keyframes btn-hover {
  from {
    transform: translateY(0); }
  to {
    transform: translateY(-5px); } }

@keyframes btn-hover {
  from {
    transform: translateY(0); }
  to {
    transform: translateY(-5px); } }

@media (max-width: 767px) {
  input[type="text"],
  input[type="email"],
  input[type="url"],
  input[type="password"],
  input[type="search"],
  input[type="number"],
  input[type="tel"],
  input[type="range"],
  input[type="date"],
  input[type="month"],
  input[type="week"],
  input[type="time"],
  input[type="datetime"],
  input[type="datetime-local"],
  input[type="color"],
  textarea {
    padding: 0.5rem 2rem; }
  .py-10,
  .py-8 {
    padding: 5rem 0; }
  .btn {
    font-size: 1.4rem !important;
    padding: 0.7rem 3rem !important; } }

.blue-text {
  color: #62a9d5; }

@media (max-width: 1024px) {
  h1 {
    font-size: 4rem; } }
