@charset "UTF-8";
h2 {
  font-size: 24px;
  margin: 0.67em 0;
}
h3 {
  font-size: 22px;
  margin: 0.67em 0;
}
h4 {
  font-size: 20px;
  margin: 0.67em 0;
}
h5 {
  font-size: 18px;
  margin: 0.67em 0;
}
h6 {
  font-size: 18px;
  margin: 0.67em 0;
}
.navigation ::-moz-placeholder {
  color: #3a3a3a;
  font-size: 90%;
}

.navigation ::-webkit-input-placeholder {
  color: #3a3a3a;
  font-size: 90%;
}

::-moz-placeholder {
  color: #3a3a3a;
  font-size: 90%;
}

::-webkit-input-placeholder {
  color: #3a3a3a;
  font-size: 90%;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

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

:before,
:after {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  outline: none;
  border: 1px solid gray;
}

input[type="radio"]:before {
  content: "";
  display: block;
  width: 60%;
  height: 60%;
  margin: 20% auto;
  border-radius: 50%;
}

input[type="radio"]:checked:before {
  background: var(--main-color);
}

input[type="radio"]:checked {
  border-color: #ffffff;
}

input[type="checkbox"]:before {
  content: "";
  display: block;
  width: 30px;
  height: 20px;
  margin: 0 auto;
  border-radius: 5px;
  border: none;
}

input[id="green"]:before {
  background: #00ff00;
}

input[id="brown"]:before {
  background: brown;
}

.ab-1 {
  width: 100%;
  float: left;
  padding-top: 30px;
  padding-bottom: 30px;
  text-align: center;
}

.ab-1 h2 {
  padding-bottom: 20px;
  text-align: center;
  color: #ff2f68;
  font-family: "Gloria Hallelujah";
  font-size: 30px;
}

.ab-1 p {
  text-align: center;
  font-family: "Laila", serif;
  font-weight: 500 !important;
  font-size: 15px;
}

input[id="white"]:before {
  background: #ffffff;
}

input[id="beige"]:before {
  background: beige;
}

input[id="grey"]:before {
  background: grey;
}

input[id="blue"]:before {
  background: blue;
}

.error::-moz-placeholder {
  color: red;
  font-size: 90%;
}

.error::-webkit-input-placeholder {
  color: rgb(255, 0, 0);
  font-size: 90%;
}

p::-moz-selection,
label::-moz-selection,
span::-moz-selection,
legend::-moz-selection {
  color: #fff;
  background: #000;
}

p::selection,
label::selection,
span::selection,
legend::selection {
  color: #fff;
  background: #000;
}

:root {
  /* --main-color: #fdc535; */
  --main-color: #d73a39;
  --main-text-color: #000;
  --secondary-color: #c08635;
}

body {
  font-family: "Raleway", sans-serif;
  font-size: 0.85rem;
  /* color: #3a3a3a; */
}

p {
  /* color: #7a7a7a; */
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
  line-height: 1.8;
  margin-bottom: 20px !important;
  text-align: justify;
}

p.bullets {
  padding-left: 20px;
  margin-bottom: 10px !important;
}

p.bullets:before {
  position: absolute;
  content: "\f105";
  font-family: fontawesome;
  font-weight: 900;
  margin-left: -20px;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  padding: 0;
}

li {
  list-style-type: none;
}

img {
  max-width: 100%;
}

.row,
footer,
.btn-holder {
  float: left;
  width: 100%;
  position: relative;
}

.full-wrapper {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
}

.container {
  margin: 0 auto;
  width: 90%;
  max-width: 1500px;
}

ul.vnc {
  padding: 10px;
  margin-left: 20px;
}
ul.vnc li {
  list-style-type: circle;
  line-height: 20px;
}
.text-center {
  text-align: center;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right;
}

.d-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.align-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.align-self-center {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

.align-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}

.align-end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}

.justify-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.justify-start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

.justify-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.justify-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

.column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}

.pt-100 {
  padding-top: 150px !important;
}

.pt-0 {
  padding-top: 0 !important;
}

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

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

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.wrap {
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.btn-l {
  padding: 10px 20px;
  border: 2px solid #ffffff;
  border-radius: 50px;
  display: block;
  font-family: "Muli", sans-serif;
  color: #ffffff;
}

.btn-l:hover {
  background: var(--main-color);
  border: 2px solid var(--main-color);
}

.fixed .btn-l {
  border: 2px solid var(--main-color);
  border-radius: 50px;
  background: var(--main-color);
  display: block;
  color: #ffffff;
  font-family: "Muli", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

.fixed .btn-l:hover {
  background: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.btn {
  padding: 15px 20px;
  border: 2px solid var(--main-color);
  border-radius: 50px;
  background: var(--main-color);
  display: inline-block;
  color: #ffffff;
  font-family: "Muli", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 85%;
  transition: 0.3s linear !important;
}

.btn:hover {
  background: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

h2.heading {
  font-size: 300%;
  margin-bottom: 30px;
  text-transform: capitalize;
  font-family: "Cormorant Garamond", serif;
}

.cormorant {
  font-family: "Cormorant Garamond", serif !important;
}

.raleway {
  font-family: "Raleway", sans-serif !important;
}

.color-white {
  color: #ffffff;
}

h3.heading {
  font-size: 160%;
  margin-bottom: 30px;
  text-transform: capitalize;
  font-weight: 700;
}

.p20 {
  padding: 20px;
}

.p30 {
  padding: 30px;
}

.result {
  background: rgba(42, 124, 42, 0.493);
  color: #ffffff;
  padding: 20px;
  margin: 10px;
}

p.btn {
  margin-bottom: 0 !important;
}

/*********  Header *****************/

header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  padding: 0;
  z-index: 9998;
  color: #ffffff;
  text-transform: uppercase;
}

header.inner-page,
header.blog-page {
  position: unset;
  color: #7a7a7a;
}

header.fixed {
  background: #ffffff;
  color: #7a7a7a;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.2);
}

header .logo {
  width: 100%;
}

header .logo img {
  width: 100%;
  display: block;
}

header .main-menu {
  padding: 20px 0;
}

header .main-menu ul li a {
  display: block;
  padding: 10px 10px;
  font-weight: 700;
}

/* header .main-menu ul li a i {
  display: none;
} */

header .main-menu .col:nth-child(1) {
  width: 10%;
}

header .main-menu .col:nth-child(2) {
  width: 70%;
}

.parent-li {
  position: relative;
}

.parent-li .dropdown {
  position: absolute;
  left: 0;
  top: 35px;
  z-index: 9999;
  width: 510px;
  background: #fff;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  color: #7a7a7a;
}

.parent-li .dropdown.wide {
  width: 520px;
}

.parent-li .dropdown.narrow {
  width: 380px;
}

.parent-li .dropdown li a {
  padding: 15px;
  font-size: 90%;
}

.parent-li .dropdown li:hover {
  background: var(--secondary-color);
  color: #ffffff;
}

.parent-li:hover .dropdown {
  opacity: 1;
  visibility: visible;
}

/************  Banner ************/

.banner .banner-inner .slide {
  position: relative;
}

.banner .banner-inner .slide .img-box {
  width: 100%;
}

.home-page .banner .banner-inner .slide .img-box img {
  width: 100%;
  display: block;
  object-fit: cover;
  height: 100vh;
}

.inner-page .banner .banner-inner .slide .img-box,
.blog-page .banner .banner-inner .slide .img-box {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.inner-page .banner .banner-inner .slide .img-box img,
.blog-page .banner .banner-inner .slide .img-box img {
  width: 100%;
  display: block;
  object-fit: cover;
  height: 300px !important;
  max-height: 300px !important;
  min-height: 300px !important;
  transform: translate(0, 0) scale(1) !important;
}

/* Force the slick slider containers to match the 300px banner height so the image can't grow the slider */
.inner-page .banner .banner-inner.slider,
.blog-page .banner .banner-inner.slider,
.inner-page .banner .banner-inner.slider .slick-list,
.blog-page .banner .banner-inner.slider .slick-list,
.inner-page .banner .banner-inner.slider .slick-track,
.blog-page .banner .banner-inner.slider .slick-track,
.inner-page .banner .banner-inner.slider .slick-slide,
.blog-page .banner .banner-inner.slider .slick-slide {
  height: 300px !important;
  max-height: 300px !important;
  overflow: hidden !important;
}

/* .inner-page .banner .banner-inner .slide {
  height: 300px;
  overflow: hidden;
} */

/* .inner-page .banner .banner-inner .slide .slide-text {
  justify-content: flex-start !important;
} */

.inner-page .banner .banner-inner .slide .slide-text h2,
.blog-page .banner .banner-inner .slide .slide-text h2,
.banner .banner-inner .slide .slide-text h1,
.blog-page .banner .banner-inner .slide .slide-text h1 {
  margin-bottom: 0;
  transform: translateY(0);
  margin-top: 0;
}

.banner .banner-inner .slide .slide-text {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.2);
}

.banner .banner-inner .slide .slide-text h2,
.banner .banner-inner .slide .slide-text h1 {
  font-size: 350%;
  margin-bottom: 30px;
  color: #ffffff;
  text-transform: capitalize;
}

.slide .img-box img {
  position: relative;
  transform: translate(0%, 0%) scale(1.5);
  -webkit-transform: translate(0%, 0%) scale(1.5);
  -ms-transform: translate(0%, 0%) scale(1.5);
  transition: transform 7s;
  min-width: 100%;
  /* min-height: 100%; */
}

.slide .slide-text h2,
.slide .slide-text p {
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transition: transform 2s;
}

.slide.slick-active .slide-text h2,
.slide.slick-active .slide-text p {
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
}

.slide.slick-active .img-box img {
  transform: translate(0%, 0%) scale(1);
  -webkit-transform: translate(0%, 0%) scale(1);
  -ms-transform: translate(0%, 0%) scale(1);
  min-width: 100%;
  min-height: 100%;
}

/***********  Inner Content  *************/

.inps0 {
  padding: 40px 0;
}

.inps1-inner {
  width: 50%;
  margin: 0 auto;
  padding: 40px 0 80px 0;
  border-bottom: 1px solid #7a7a7a;
}

.inps2-inner .col {
  width: 20%;
  position: relative;
  height: 280px;
}

.inps2-inner {
  border-bottom: 12px solid #e2e2e2;
}

.inps2-inner .col .img-box {
  width: 100%;
  height: 100%;
}

.inps2-inner .col .img-box img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.inps2-inner .col .img-text {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.2);
  color: #ffffff;
  font-size: 120%;
  text-transform: uppercase;
  text-align: center;
}

.inps2-inner .col .box-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: var(--main-color);
  color: #ffffff;
  text-align: center;
  padding: 20px;
  visibility: hidden;
  opacity: 0;
}

.inps2-inner .col .box-overlay p {
  color: #ffffff;
  font-size: 95%;
}

.inps2-inner .col:hover .box-overlay {
  visibility: visible;
  opacity: 1;
}

.inps2-inner .col .box-overlay .btn-l {
  padding: 5px 10px;
  font-size: 100%;
  width: 140px;
  font-size: 80%;
  margin: 15px auto;
}

.inps2-inner .col .box-overlay .btn-l:hover {
  padding: 5px 10px;
  font-size: 80%;
  border: 2px solid #ffffff;
  background: transparent;
  color: #ffffff;
}

.inps3-inner {
  width: 60%;
  margin: 0 auto;
}

.inps0.inps3 {
  border-bottom: 12px solid #e2e2e2;
}

.inps4-inner .col {
  width: 20%;
  margin-right: 10px;
}

.inps4-inner .col img {
  width: 100%;
  display: block;
  -webkit-filter: grayscale(100%);
  /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
}

.inps4-inner .col:hover img {
  -webkit-filter: none;
  /* Safari 6.0 - 9.0 */
  filter: none;
}

.inps0.inps5 {
  background: url(../images/bg.webp);
  background-position: center;
  background-attachment: fixed;
  background-size: cover;
}

.inps0.inps5 .inps5-inner .box {
  background: #ffffff;
  padding: 30px;
}

.inps0.inps5 .inps5-inner .col {
  width: 40%;
  margin-left: 10%;
  margin-right: auto;
}

.inps0.inps5 .inps5-inner .col .rating {
  color: gold;
  margin-bottom: 20px;
  font-size: 110%;
}

.inps0.inps5 .inps5-inner .col .slide h3 {
  margin-bottom: 20px;
}

.inps0.inps5 .inps5-inner .col .slide p {
  margin-bottom: 20px;
}

.inps0.inps6 .form-box {
  margin-bottom: 20px;
}

.inps0.inps6 .form-box input,
.inps0.inps6 .form-box textarea {
  padding: 20px;
  outline: none;
  border: none;
  border-radius: 10px;
  background: #ededed;
  width: 100%;
}

.inps0.inps6 .form-box textarea {
  height: 120px;
}

.inps0.inps6 .form-outer {
  width: 60%;
  margin: 0 auto;
}

.inps0.inps7 .inps7-inner .col {
  width: 30%;
  margin-right: 3%;
  margin-bottom: 3%;
}

.inps0.inps7 h3.heading {
  font-size: 220%;
}

.inps8 .left {
  padding: 30px;
  width: 100%;
  text-align: justify;
}

.inps8 .left p {
  margin-bottom: 30px;
}

.inps8 .right {
  width: 100%;
}

/* .inps8.services .left {
  width: 1
} */

.inps8 .right img {
  width: 100%;
  display: block;
}

.inner-page .inps8 .right,
.blog-page .inps8 .right {
  padding-top: 40px;
}

.inner-page .inps8 .right img,
.blog-page .inps8 .right img {
  width: 75%;
  display: block;
  margin: 0 auto;
}

.inner-page .inps3,
.blog-page .inps3 {
  background: #e2e2e2;
}

/*********** Footer  *************/

footer {
  float: none;
  background: url(../images/bg2.webp);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #ffffff;
  padding: 30px 0;
}

footer a:hover {
  color: var(--main-color);
}

.footer-top {
  padding: 30px 0;
}

.footer-top h3 {
  font-size: 200%;
  margin-bottom: 20px;
}

.footer-top ul {
  margin-bottom: 20px;
}

.footer-top ul li {
  margin-right: 20px;
  font-size: 120%;
  margin-bottom: 20px;
}

.footer-top-inner {
  border-bottom: 1px dotted #e2e2e2;
}

.footer-top-inner .left {
  width: 70%;
}

.footer-top-inner .right {
  width: 30%;
}

.footer-top-inner .right .social {
  font-size: 27px;
  display: flex;
}

.footer-top-inner .right .social i {
  margin-right: 20px;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
}

.footer-top-inner .right .social i:hover {
  color: var(--main-color);
  border: 2px solid var(--main-color);
}

/**************   Inner Page  ******************/

main.inner-page .inp1 .left,
main.blog-page .inp1 .left {
  width: 48%;
}
.none {
  display: none;
}
main.inner-page .inp1 .right,
main.blog-page .inp1 .right {
  width: 50%;
  margin-left: 20px;
}

.inner-page .inps8.services .right img,
.blog-page .inps8.services .right img {
  width: 85%;
  border: 1px solid gainsboro;
}

.inp2-inner p {
  margin-bottom: 20px;
}

.services.inps8 .left {
  padding: 0;
}

.inps8.services {
  text-align: justify;
}

.floating-icon {
  position: fixed;
  z-index: 999;
  bottom: 6%;
  right: 6%;
  border-radius: 50%;
  overflow: hidden;
  width: auto;
  /* transform: translateY(89.5%); */
  display: none;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.4);
  cursor: pointer;
}

.floating-icon.show {
  display: block;
}

.floating-icon.open {
  transform: translateY(0);
}

.floating-icon p {
  padding: 5px 20px;
  color: #ffffff;
  background: var(--main-color);
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* .floating-menu {
  background: #ffffff;
} */

.floating-menu ul li a {
  display: block;
  padding: 15px 20px;
}

.floating-menu ul li a:hover {
  background: #ffffff;
  color: #000;
}

.floating-menu {
  position: fixed;
  right: 8%;
  bottom: 10%;
  z-index: 999;
  background: var(--main-color);
  color: #ffffff;
  opacity: 0;
  visibility: hidden;
  box-shadow: -10px 10px 10px 0px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  border: 1px solid var(--main-color);
}

.floating-menu.show.open {
  opacity: 1;
  visibility: visible;
}

.hbspt-form {
  width: 50%;
  margin: 0 auto;
}

.hbspt-form iframe {
  width: 100%;
  height: 100%;
}

/********************   Mobile Menu  ******************/
.menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 40px;
}

.menu-btn span {
  height: 3px;
  width: 100%;
  background: var(--main-color);
  display: block;
  margin-bottom: 5px;
}
.gee ul {
  background: #3399ff;
  padding: 20px;
}
.gee ul li {
  background: #cce5ff;
  margin: 5px;
  list-style: circle;
}

.blog-content-row {
  display: flex;
}

.blog-content-col {
  width: 75%;
  padding: 10px;
}

.blog-navigation {
  width: 25%;
  padding: 20px 10px 10px 10px;
}
.blog-navigation ul {
  background-color: #e8e8e8;
}

.blog-navigation ul li {
  margin-bottom: 0 !important;
  font-size: 16px;
  line-height: 30px;
  padding: 10px;
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 500px) {
  .blog-content-row {
    display: flex;
    flex-wrap: wrap;
  }

  .blog-content-col {
    width: 100%;
    padding: 10px;
  }

  .blog-navigation {
    width: 100%;
    padding: 20px 10px 10px 10px;
  }
}

@media screen and (max-width: 1024px) {
  body {
    font-size: 14px;
  }

  p {
    font-size: 0.9rem;
  }

  /************  Header *************/

  header.fixed,
  header.inner-page,
  header.blog-page {
    color: #ffffff;
  }

  .menu-btn {
    display: flex;
  }

  .col.contact-btn {
    display: none;
  }

  .col.menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999;
    background: var(--main-color);
    width: 100% !important;
    overflow: auto;
    display: none;
    animation: slideInDown 0.5s;
    transition: 0.5s linear;
  }

  .col.menu.open {
    display: block;
    animation: slideInDown 0.5s;
  }

  ul.d-flex.justify-between.align-center {
    flex-wrap: wrap;
    flex-direction: column;
  }

  .col.menu .menu-btn {
    margin: 0 auto;
    transform: translateX(10px);
  }

  .col.menu .menu-btn span {
    background: #ffffff;
  }

  .col.menu .menu-btn span:nth-child(1) {
    transform: rotate(45deg) translateY(2px) translateX(1px);
    margin-bottom: 0;
  }

  .col.menu .menu-btn span:nth-child(2) {
    display: none;
  }

  .col.menu .menu-btn span:nth-child(3) {
    transform: rotate(135deg);
    margin-bottom: 0;
  }

  header .main-menu ul li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  header .main-menu ul li a i {
    width: 28px;
    height: 28px;
    font-size: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  li.close-btn {
    margin: 20px;
  }

  .col.menu ul li {
    width: 100%;
    margin: 5px 0;
  }

  header .main-menu .col:nth-child(1) {
    width: 80px;
  }

  .parent-li .dropdown {
    position: relative;
    width: 100% !important;
    flex-direction: column;
    visibility: visible;
    opacity: 1;
    top: 0;
    transition: unset;
  }

  .parent-li .dropdown ul {
    padding-left: 30px;
  }

  p.bullets {
    text-align: justify;
  }

  header.inner-page.fixed,
  header.blog-page.fixed {
    position: fixed;
  }

  /******************  Body CSS   *********************/
  .btn {
    display: block;
    margin: 0 auto;
    text-align: center;
    max-width: 300px;
  }

  h2.heading {
    font-size: 150%;
    margin: 20px 0;
  }

  h3.heading {
    font-size: 140%;
    margin: 20px 0;
  }

  section.inps0.inps2 h2.heading {
    padding: 0 20px;
  }

  .inps0 {
    padding: 20px 0;
  }

  .banner .banner-inner .slide .slide-text h2,
  .banner .banner-inner .slide .slide-text h1 {
    font-size: 150%;
    line-height: 40px;
  }

  .inps1-inner {
    width: 100%;
    padding-top: 0;
    padding-bottom: 20px;
  }

  .inps1-inner p {
    text-align: justify;
  }

  .inps2-inner {
    flex-wrap: wrap;
  }

  .inps2-inner .col {
    width: 50%;
  }

  .inps3-inner {
    width: 100%;
  }

  section.inps8 .inps8-inner .d-flex {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }

  .inps8 .left {
    padding: 20px;
  }

  .inps0.inps5 .inps5-inner .col .slide p {
    text-align: justify;
  }

  .inps0.inps6 .form-outer {
    width: 100%;
  }

  .inps0.inps5 .inps5-inner .col {
    margin-left: 0;
    width: 100%;
  }

  .inps0.inps7 .inps7-inner .col {
    width: 30%;
  }

  .inps0.inps7 h3.heading {
    font-size: 140%;
  }

  .inps0.inps7 .d-flex {
    flex-wrap: wrap;
  }

  .inps8 .left p {
    margin-bottom: 10px;
  }

  .inps8 .left p:nth-last-child(1) {
    margin-bottom: 0;
  }

  /************  Footer *************/

  footer {
    padding-top: 0;
  }

  .footer-top-inner .right .social {
    font-size: 20px;
  }

  .footer-top-inner .right .social i {
    height: 35px;
    width: 35px;
  }

  .footer-top ul li {
    font-size: 100%;
  }

  .footer-top h3 {
    font-size: 150%;
  }

  .footer-top-inner .left {
    width: 100%;
  }

  .footer-top-inner .right {
    width: 100%;
  }

  .footer-top ul {
    flex-wrap: wrap;
    margin-bottom: 0;
  }

  .footer-top {
    padding-top: 0;
  }

  .footer-top-inner {
    flex-wrap: wrap;
    padding: 20px 0;
  }

  .inner-page .banner .banner-inner .slide .img-box,
  .blog-page .banner .banner-inner .slide .img-box {
    height: 300px !important;
    overflow: hidden !important;
  }

  .inner-page.aboutus .inps8 .right,
  .blog-page.aboutus .inps8 .right {
    padding-top: 0;
  }

  .inner-page.aboutus .inps8 .right,
  .blog-page.aboutus .inps8 .right {
    padding: 20px;
  }

  .inner-page .inps8 .right img,
  .blog-page .inps8 .right img {
    width: 100%;
  }

  .inps8.p30 {
    padding: 0;
  }

  .inner-page .inps8 .left,
  .blog-page .inps8 .left {
    padding: 0;
  }

  .inner-page.aboutus .inps8 .left,
  .blog-page.aboutus .inps8 .left {
    padding: 0 20px;
  }

  .inp1-inner {
    flex-wrap: wrap;
  }

  main.inner-page .inp1 .right,
  main.blog-page .inp1 .right {
    width: 100%;
    margin-left: 0;
  }

  h3.mb-20 {
    font-size: 100%;
  }

  .inner-page .inps8.services .right img,
  .blog-page .inps8.services .right img {
    width: 100%;
  }

  section.inps0.inp1 {
    padding: 20px;
  }
}

@media screen and (max-width: 768px) {
  /* .inps2-inner .col{
    width: 100%;
  } */
}

@media screen and (max-width: 480px) {
  .inps2-inner .col {
    width: 100%;
  }

  .inps0.inps7 .inps7-inner .col {
    width: 100%;
  }

  main.inner-page .inp1 .left,
  main.blog-page .inp1 .left {
    width: 100%;
  }
}
