@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap");
/***** General CSS *****/

body {
  word-break: break-word;
  font: 15px/25px "Poppins", sans-serif;
  color: #393939;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #28b16d;
  white-space: initial;
}

a:hover,
a:focus {
  text-decoration: none;
  color: #393939;
}

a:hover {
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
}

img {
  max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

ul {
  margin: 0 0 20px;
  padding: 0;
  list-style-type: none;
}

p {
  font-weight: 500;
}

/***** Custom Classes *****/

.noPadding {
  padding: 0;
}

.noLeft {
  padding-left: 0;
}

.noRight {
  padding-right: 0;
}

.centerCol {
  float: none;
  margin: 0 auto;
}

.theme-btn {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  padding: 15px 40px;
  color: #fff;
  margin: 20px 20px 20px 0;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  text-transform: capitalize;
  border: 2px solid;
  text-transform: uppercase;
}

.theme-btn:hover {
  background-color: #fff;
  color: #28b16d;
  border-color: #28b16d;
}

.flexRow {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}

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

h1 {
  font-family: "Oswald", sans-serif;
  font-size: 55px;
  line-height: 60px;
  color: #fff;
  font-weight: 500;
  margin: 0 0 17px;
}

h2 {
  font-family: "Oswald", sans-serif;
  font-size: 55px;
  line-height: 60px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 30px;
}

h3 {
  font-family: "Oswald", sans-serif;
  font-size: 30px;
  line-height: 34px;
  color: #000000;
  font-weight: 600;
  margin: 0 0 28px;
}

h4 {
  font-family: "Oswald", sans-serif;
  font-size: 24px;
  line-height: 29px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 13px;
}

h5 {
  font-family: "Oswald", sans-serif;
  font-size: 20px;
  line-height: 25px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 20px;
}

h6 {
  font-family: "Poppins", Sans-Serif;
  font-size: 18px;
  line-height: 23px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 22px;
}

select {
  background: #fff url("../images/arrow.png") no-repeat right;
  padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
  color: #575757;
}

::-moz-placeholder {
  color: #575757;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #575757;
}

:-moz-placeholder {
  color: #575757;
  opacity: 1;
}

/*header css start */

.menuSec {
  padding: 0px 0;
}

.menuSec img {
  margin: 0;
}

.menuSec ul {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
  text-transform: capitalize;
}

.menuSec ul li {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0;
}

.menuSec li ul {
  display: none;
}

.menuSec ul li a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #393939;
  padding: 10px 18px;
  font-size: 16px;
  font-family: "Poppins";
  text-transform: uppercase;
}
a.btn-1 {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #fff;
  gap: 15px;
  background-color: #f6a937;
  width: fit-content;
  padding: 10px 10px 10px 15px;
  border-radius: 5px;
}
a.btn-2 {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #fff;
  gap: 15px;
  background-color: #063c58;
  width: fit-content;
  padding: 10px 15px;
  border-radius: 5px;
}

.menuSec .row {
  align-items: center;
}

.menuSec ul li a:after {
  content: "";
  position: absolute;
  top: 35%;
  right: 0;
  width: 1px;
  height: 13px;
  background-color: #393939;
  display: none;
}

.menuSec ul li:last-child a {
  padding-right: 0px;
}

.menuSec ul li:last-child a:after {
  display: none;
}

.menuSec ul li a:hover,
.menuSec ul li a.active {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  color: #f6a937;
}

.menuSec li:hover > ul {
  display: block;
  position: absolute;
  z-index: 1000;
  background-color: #000000;
  left: 0px;
  width: 230px;
  text-align: left;
  top: 38px;
}

.menuSec li > ul > li > a {
  border: none;
  padding: 13px 20px !important;
  color: #fff !important;
  overflow: hidden;
  font-size: 13px;
  line-height: 20px;
}

.menuSec li > ul > li,
.menuSec li > ul > li > a {
  display: block;
  margin: 0;
}

.menuSec li > ul > li > a:before,
.menuSec li > ul > li > a:after {
  display: none;
}

.menuSec li:hover li {
  float: none;
}

.menuSec li ul li a:hover {
  background-color: #ffffff;
  color: #000000 !important;
}

.menuSec ul ul ul {
  left: 100%;
  top: 0;
}

.menuSec ul:before,
.menuSec ul:after {
  content: " ";
  display: table;
}

.menuSec ul:after {
  clear: both;
}

.menuSec li > ul > li:hover > ul {
  left: 230px;
  top: 0px;
  width: 270px;
}

.droopdwon li:hover > ul {
  display: block;
  position: absolute;
  z-index: 1000;
  background-color: #000000;
  left: 0px;
  width: 230px;
  text-align: left;
  top: 40px;
}

.droopdwon {
  float: left;
}

.droopdwon li:hover li a:hover {
  background-color: #ffffff;
  color: #000 !important;
}

/*header css start */

.dropdown-menu {
  position: absolute !important;
  z-index: 1000;
  display: block;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0;
  font-size: 1rem;
  color: #212529;
  text-align: left !important;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}

/*banner css start */

.banner-img {
  position: absolute;
  right: 0;
  width: 59%;
}

.banner-txt h1 {
  font-size: 50px;
  line-height: 60px;
  color: #000000;
  font-weight: 700;
  text-transform: uppercase;
}

.banner-txt {
  padding: 100px 0px 80px;
}

section.banner {
  padding-top: 25px;
}

.banner-img img {
  width: 100%;
  height: 630px;
  object-fit: cover;
  border: 10px solid #028fd6;
  border-top-left-radius: 60px;
  border-bottom-left-radius: 60px;
  border-right: unset;
}

.ban-social ul {
  display: flex;
  align-items: center;
  gap: 5px;
}

header a.btn-1 {
  margin: 0 0 0 auto;
}

.ban-social ul li a i {
  font-size: 20px;
  color: #000;
  border: 1px solid #000;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.head-bann {
  position: relative;
  z-index: 1;
}

.head-bann::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 28%;
  background-color: #028fd6;
  height: 116%;
  content: "";
  z-index: -1;
  border-bottom-left-radius: 20px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */

input[type="number"] {
  -moz-appearance: textfield;
}

/*banner end*/

/*service start*/

section.service {
  margin: 15% 0px 100px;
  padding: 100px 0px;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  background-image: url(../images/service-bg.jpg);
}

.ser-img img {
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

section.service a.btn-1 {
  margin: 0 0 0 auto;
}

.ser-top-txt h4 {
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
  color: #f6a937;
  margin-bottom: 10px;
}

.ser-top-txt h2 {
  font-size: 60px;
  line-height: 60px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.ser-bot-txt {
  text-align: center;
  background-color: #fff;
  padding: 20px 10px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.ser-bot-txt h4 {
  font-size: 29px;
  line-height: 40px;
  font-weight: 700;
  color: #000;
}

.ser-bot-txt a {
  font-size: 16px;
  font-family: "Poppins";
  font-weight: 500;
  color: #028fd6;
  text-decoration: underline;
}

section.service .row {
  align-items: center;
}

/*service end*/

/*about start*/

.abt-txt {
  text-align: center;
}

.abt-txt h5 {
  font-size: 24px;
  line-height: 30px;
  color: #f6a937;
}

.abt-txt h3 {
  font-size: 60px;
  line-height: 50px;
  color: #000000;
  font-weight: 700;
}

.abt-txt p {
  font-size: 16px;
  color: #888888;
  line-height: 27px;
}

.abt-img img {
  width: 100%;
}

.abt-img {
  position: relative;
  margin-bottom: 30px;
}

.abt-sm-bx {
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: #e9a034d4;
  padding: 13px;
  width: auto;
  border-radius: 12px;
  padding-top: 25px;
  padding-bottom: 25px;
  width: 87%;
  margin: 0 auto;
  margin-top: -47%;
}

.abt-sm-txt h4 {
  font-size: 25px;
  line-height: 35px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 10px;
}

.abt-sm-txt p {
  font-size: 14px;
  color: #fff;
  width: 96%;
  margin: 0;
}

.abt-sm-img img {
  width: 50px;
  height: 40px;
}

.abt-sm-bx.tw {
  background-color: #0288cbdb;
}

.exp {
  display: flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #fff;
  padding: 15px;
  border-bottom-left-radius: 20px;
}

.exp h4 {
  font-size: 56px;
  line-height: 60px;
  font-weight: 700;
  font-family: "Oswald";
  color: #028fd6;
  margin: 0;
}

.exp h5 {
  font-size: 24px;
  color: #028fd6;
  line-height: 30px;
  margin: 0;
}

.exp h5 span {
  display: block;
}

section.about a.btn-2 {
  margin: 0 auto;
}

section.about {
  padding-bottom: 80px;
}

/*about end*/

/*work start*/

.work-txt {
  text-align: center;
  margin-bottom: 70px;
}

.main-work-bx {
  position: relative;
  background-color: #fff;
  box-shadow: 0 0 2px #000000a3;
  padding: 50px 30px;
  border-radius: 30px;
  width: 92%;
}

.main-req {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.main-req h3 {
  font-size: 34px;
  line-height: 42px;
  font-weight: 700;
	text-transform:uppercase;
}

.main-req h3 span {
  display: block;
}

.main-work-bx h5 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  background-color: #028fd6;
  height: 75px;
  width: 75px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -38px;
  left: -31px;
}

.main-work-bx::before {
  position: absolute;
  top: -12px;
  left: -17px;
  height: 90%;
  width: 2%;
  background-color: #028fd6;
  content: "";
  z-index: -1;
}

.main-work-bx::after {
  position: absolute;
  top: -18px;
  left: -17px;
  height: 2%;
  width: 90%;
  background-color: #028fd6;
  content: "";
  z-index: -1;
}

.work-txt h5 {
  font-size: 24px;
  font-weight: 600;
  color: #028fd6;
}

.work-txt h3 {
  font-size: 60px;
  line-height: 60px;
  font-weight: 700;
  color: #000000;
}

section.working {
  padding-bottom: 100px;
}

/*work end*/

/*get-free start*/

section.get-free {
  padding: 100px 0px;
  background-image: url(../images/get-free-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 100px;
}

.get-free-txt h3 {
  font-size: 60px;
  line-height: 60px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.get-free-txt p {
  font-size: 16px;
  color: #a19e9e;
  line-height: 27px;
}

.wpcf7 p {
  margin: 0;
  padding: 0;
}

.get-free-txt input {
  width: 100%;
  margin-bottom: 20px;
  padding: 10px;
  outline: unset;
  border-radius: 10px;
  border: unset;
}

.get-free-txt textarea {
  width: 100%;
  margin-bottom: 20px;
  padding: 10px;
  outline: unset;
  border-radius: 10px;
  border: unset;
  height: 150px;
}

.get-free-txt .wpcf7-submit {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #fff;
  gap: 15px;
  background-color: #f6a937;
  width: fit-content;
  padding: 10px 15px 10px 15px;
  border-radius: 5px;
  border: unset;
}

.get-img img {
  width: 100%;
  height: 489px;
  object-fit: cover;
  border-radius: 20px;
  border: 10px solid #028fd6;
}

/*get-free end*/

/*testimonials start*/

.test-img img {
  width: 130px;
}

section.testimonials .slick-active {
  opacity: 1;
}

section.testimonials {
  padding-bottom: 100px;
}

.test-txt {
  text-align: center;
  margin-bottom: 50px;
}

.test-txt h5 {
  font-size: 24px;
  color: #028fd6;
  font-weight: 600;
  margin-bottom: 15px;
}

.test-txt h3 {
  font-size: 60px;
  line-height: 60px;
  font-weight: 700;
  color: #000000;
}

.test-img-txt {
  display: flex;
  gap: 22px;
  margin-bottom: -37px;
  margin-left: 35px;
}

.test-sm-txt h5 {
  font-size: 30px;
  font-weight: 700;
  color: #000;
  line-height: 36px;
}

.test-sm-txt h5 span {
  display: block;
  font-size: 19px;
  font-family: "Poppins";
  font-weight: 600;
  color: #575656;
}

.test-main-bx p {
  font-size: 20px;
  line-height: 35px;
  color: #545454;
  padding: 57px 50px 42px 52px;
  margin: 0;
  border: 5px solid #063c58;
  border-radius: 20px;
  text-align: justify;
}

.quote {
  position: absolute;
  top: 42px;
  right: 31px;
}

.test-main-bx {
  position: relative;
}

.quote i {
  font-size: 40px;
  background-color: #f6a937;
  color: #fff;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.test-slid .slick-dots li.slick-active button:before {
  background: #028fd6;
  width: 46px;
  content: "";
  height: 10px;
  border-radius: 10px;
}

.test-slid .slick-dots li button:before {
  background: #063c58;
  width: 46px;
  content: "";
  height: 10px;
  border-radius: 10px;
  opacity: 1;
}

.test-slid .slick-dots li {
  width: 25px;
}

.test-slid .slick-active {
  opacity: 1;
}

.test-slid .slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0px 20px;
  padding: 0;
  cursor: pointer;
}

.test-slid .slick-dots {
  position: absolute;
  bottom: -55px;
}

/*footer start*/

.footer-top {
  background-image: url(../images/footer-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 50px 0px;
}

.footer-top h4 {
  font-size: 18px;
  line-height: 28px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-txt ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-txt ul li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-txt ul li a {
  font-size: 13px;
  color: #fff;
}

.footer-txt ul li p {
  font-size: 14px;
  color: #fff;
  margin-bottom: 0px;
}

.footer-txt ul li i {
  color: #028cd1;
}

.sub-txt input {
  width: 100%;
  margin-bottom: 15px;
  padding: 10px;
  outline: unset;
  border-radius: 10px;
  border: unset;
}

.sub-txt .wpcf7-submit {
  font-size: 16px;
  color: #fff;
  background-color: #028fd6;
  border: unset;
  padding: 10px 30px;
  border-radius: 10px;
  width: auto;
  margin: 0 0 0 auto;
  float: right;
}

.sub-txt button {
  font-size: 16px;
  color: #fff;
  background-color: #028fd6;
  border: unset;
  padding: 10px 30px;
  border-radius: 10px;
  width: auto;
  margin: 0 0 0 auto;
}

.useful-links ul {
  display: flex;
  align-items: center;
  gap: 35px;
}

.useful-links ul li a {
  font-size: 14px;
  color: #fff;
}

.footer-logo p {
  font-size: 16px;
  color: #fff;
  margin-top: 10px;
}

.footer-botom {
  background-color: #f6a937;
  padding: 12px 0px;
}

.footer-botom p {
  text-align: center;
  color: #fff;
  font-size: 16px;
  margin: 0;
}

/*inner-banner start*/

section.banner.inn h1 {
  font-size: 72px;
  line-height: 82px;
  text-transform: uppercase;
}

section.banner.inn .banner-img img {
  height: 460px;
}

.head-bann .inn::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 28%;
  background-color: #028fd6;
  height: 109%;
  content: "";
  z-index: -1;
  border-bottom-left-radius: 20px;
}

section.banner.inn {
  padding-bottom: 100px;
}

/*inner-banner end*/

section.about.inn {
  padding: 150px 0px 110px;
}

section.about.inn p {
  font-size: 16px;
  line-height: 29px;
  color: #888888;
}

section.reliable {
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../images/real-bg.jpg);
  margin-bottom: 100px;
  padding: 100px 0px;
}

.reliable-txt h3 {
  font-size: 72px;
  line-height: 85px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.reliable-txt {
  text-align: center;
}

.reliable-txt h3 span {
  display: block;
}

.reliable-txt a {
  margin: 0 auto;
}

/*team start*/

section.our-team {
  padding-bottom: 100px;
}

.main-bx-team img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: top;
  border-radius: 15px;
}

.main-bx-team {
  padding: 20px;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 0 3px #00000054;
}

.team-bot-txt {
  text-align: center;
  margin-top: 20px;
}

.team-bot-txt h5 {
  font-size: 30px;
  color: #000;
  line-height: 35px;
  font-weight: 700;
}

.team-bot-txt h5 span {
  display: block;
  font-size: 20px;
  color: #636262;
  font-family: "Poppins";
  font-weight: 500;
}

.team-txt {
  text-align: center;
}

.team-txt h5 {
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
  color: #028fd6;
  margin-bottom: 10px;
}

.team-txt h3 {
  font-size: 60px;
  line-height: 70px;
  font-weight: 700;
  color: #000000;
}

section.about.inn .abt-sm-txt p {
  font-size: 14px;
  color: #fff;
  width: 96%;
  margin: 0;
  line-height: normal;
}

/*blog start*/

section.blog-page {
  padding: 150px 0px 100px 0px;
}

.blog-txt-bot h6 {
  font-size: 18px;
  color: #464646;
  line-height: 28px;
  font-weight: 600;
  margin-bottom: 5px;
}

.blog-txt-bot h3 {
  font-size: 36px;
  line-height: 40px;
  margin-bottom: 10px;
}

.blog-txt-bot a {
  font-size: 14px;
  color: #028fd6;
  text-decoration: underline;
}

.blog-txt-bot {
  background-color: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 0 3px #0000006b;
  width: 98%;
  margin: 0 auto;
  position: relative;
  margin-top: -33px;
}

.blg-txt {
  text-align: center;
}

.blg-txt h3 {
  font-size: 60px;
  line-height: 60px;
  color: #000000;
  text-transform: uppercase;
}

.blog-txt-bot.sec {
  text-align: center;
  width: 100%;
  margin: 0;
}

.blg-txt h5 {
  font-size: 24px;
  color: #f6a937;
  line-height: 30px;
  margin-bottom: 10px;
}

section.banner.inn h1 span {
  display: block;
}

section.det-service {
  padding: 150px 0px 100px;
}

.head-bann.inn.det::before {
  height: 100%;
}

section.banner.inn.det {
  padding-bottom: 40px;
}

.det-ser-img img {
  width: 100%;
  height: 598px;
  min-height: 450px;
  object-fit: fill;
  object-position: top;
  border-radius: 15px;
}

.det-ser-txt {
  margin-top: 20px;
}

.det-ser-txt h4 {
  font-size: 48px;
  line-height: 50px;
  font-weight: 700;
  color: #000000;
}

/*CONTACT START*/
.contact_page_sidbar h6 {
  font-size: 14px;
  color: #dad7d7;
  line-height: 20px;
  margin: 0;
  font-weight: 400;
}

.fa-color {
  color: #e51921;
  font-size: 80px;
}

.contact_page_sidbar h4 {
  color: #000;
  font-weight: 400;
  margin: 0;
  font-family: "Poppins";
  margin-bottom: 0px;
  font-size: 20px;
}

.contact_page_sidbar i {
  font-size: 35px;
  margin: 0 20px 0 0;
  width: 35px;
}

.contact_social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #e51921;
  color: #ffffff;
  border-radius: 0;
  margin: 0 10px 0 0;
  font-size: 22px;
}

.contact_social a:hover {
  background-color: #e51921;
  color: #fff;
}

.contact_map iframe {
  width: 100%;
  height: 600px;
}

.contact-left img {
  width: 100%;
}

ul.contact_page_sidbar li i {
  color: #000;
}

ul.contact_page_sidbar a {
  width: 100%;
  font-family: "Poppins";
  font-weight: 400;
  font-size: 18px;
  color: #8b8a8a;
  text-decoration: none;
}

ul.contact_page_sidbar h6 {
  line-height: 26px;
  font-family: "Poppins";
  font-size: 19px;
  color: #8b8a8a;
}

.contact-form {
  border-radius: 15px;
  padding: 40px 20px 40px 20px;
  border: 2px solid #dcdcdc;
}
.contact-form-title h4 {
  color: #000;
  font-size: 36px;
  line-height: 26px;
  margin-bottom: 30px;
  font-weight: 600;
}

.contact-form input {
  width: 100%;
  margin-bottom: 20px;
  padding: 15px 20px;
  border: 2px solid #dcdcdc;
  border-radius: 5px;
}

.contact-form input::placeholder {
  color: #000;
}
.contact-form p {
  margin: 0;
  padding: 0;
}
.contact-form textarea {
  width: 100%;
  margin-bottom: 20px;
  padding: 20px 18px 80px;
  border-radius: 5px;
  border: 2px solid #dcdcdc;
  resize: none;
  height: 180px;
}
.contact-form .wpcf7-submit {
  width: 29%;
  padding: 0;
  height: 45px;
  background-color: #f6a937;
  color: #fff;
  border: none;
  border-radius: 8px;
}
.contact-submit button {
  width: 100%;
  padding: 15px;
  border-radius: 30px;
  border: 1px solid #fff;
  color: #fff;
  font-size: 17px;
  background: none;
}

.contact-form input::placeholder {
  font-size: 14px;
  line-height: 14px;
  color: #000;
  border-radius: 5px;
  margin-bottom: 0px;
}

.contact-form textarea::placeholder {
  font-size: 14px;
  line-height: 14px;
  border-radius: 5px;
  color: #000;
  margin-bottom: 0px;
}

section.contact_page_main.pt-8.pb-8 {
  padding: 100px 0;
  background-color: #050505;
}

li.d-flex.align-items-center.mt-5 {
  margin: 0 !important;
  margin-bottom: 30px !important;
}

.contact_page_sidbar p {
  margin-bottom: 0;
}

.cont-1 h3 {
  color: #000;
}

.cont-1 p {
  color: #8b8a8a;
  font-size: 16px;
  width: 93%;
  line-height: 28px;
  margin-bottom: 30px;
}

.icons i {
  background: #21386c;
  color: #fff;
  padding: 6px;
  margin: 0px 5px;
}

.con-form {
  padding: 20px 50px;
}

section.contact-us {
  padding: 150px 0px 90px 0px;
}

.btn-contact a {
  background: #194376;
  padding: 10px 80px;
  border: none;
  border-radius: 5px;
  color: #fff;
}

section.contact-us.inner h3 {
  font-size: 48px;
  line-height: 37px;
  color: #000;
  font-weight: 700;
  font-family: "Oswald";
  text-transform: uppercase;
}

.map-col {
  padding: 0;
}

.btn-contact button {
  width: 29%;
  padding: 0;
  height: 45px;
  background-color: #f6a937;
  color: #fff;
  border: none;
  border-radius: 8px;
}

section.contact-us .row {
  align-items: baseline;
}

ul.contact_page_sidbar p {
  width: 100%;
  margin-bottom: 0;
}

ul.contact_page_sidbar li i.fas.fa-phone-alt.fa-color.fa-2x {
  transform: rotate(90deg);
}

/*/*contact inner page sec end*/

/*book start*/
section.book form input {
  width: 100%;
  margin-bottom: 30px;
  background-color: #f8f8f8;
  padding: 15px 15px;
  outline: none;
  border: 1px solid #cdcdcd;
  border-radius: 5px;
  color: #000;
}

section.book form select {
  background: #fff url(../images/arrow.png) no-repeat right;
  width: 100%;
  margin-bottom: 30px;
  background-color: #fff;
  padding: 15px 15px;
  outline: none;
  border: 1px solid #cdcdcd;
  border-radius: 10px;
  -webkit-appearance: auto;
}

section.book form textarea {
  width: 100%;
  margin-bottom: 30px;
  background-color: #f8f8f8;
  padding: 15px 15px;
  outline: none;
  border: 2px solid #cdcdcd;
  resize: none;
  border-radius: 10px;
  height: 200px;
  color: #000;
}

section.book {
  padding: 150px 0px 100px;
}

section.book form input::placeholder {
  color: #000;
}

.text-center .wpcf7-submit {
  background: #f6a937;
  width: 53%;
  padding: 12px;
  border: none;
  color: #fff;
  border-radius: 5px;
}

.ankar a:hover {
  background-color: #039199;
}

a.btn-1:hover {
  background-color: #000;
}

section.inn-banner img {
  width: 100%;
}

/*book end*/

a.btn-2:hover {
  background-color: #e23324;
  transition: 2s;
}

.ban-social ul li a i:hover {
  background-color: #f6a937;
  color: #fff;
  transition: 1s;
  border: unset;
}

.footer-txt ul li a:hover {
  color: #f6a937;
}

.footer-txt ul li p:hover {
  color: #f6a937;
}

.useful-links ul li a:hover {
  color: #f6a937;
}

/*Partical js*/

canvas {
  display: block;
  vertical-align: bottom;
}

#particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  background-position: 50% 50%;
}

/* ---- stats.js ---- */

.count-particles {
  background: #000022;
  position: absolute;
  top: 48px;
  left: 0;
  width: 80px;
  color: #13e8e9;
  font-size: 0.8em;
  text-align: left;
  text-indent: 4px;
  line-height: 14px;
  padding-bottom: 2px;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: bold;
}

.js-count-particles {
  font-size: 1.1em;
}
#stats,
.count-particles {
  -webkit-user-select: none;
  margin-top: 5px;
  margin-left: 5px;
}
#stats {
  border-radius: 3px 3px 0 0;
  overflow: hidden;
}
.count-particles {
  border-radius: 0 0 3px 3px;
}

section.blogs-details {
  padding: 150px 0 100px;
}
.blogs-img-text ul li i {
  color: #000;
  font-size: 20px;
  margin-right: 10px;
}

.blogs-img-text ul {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-top: 20px;
}
.blogs-img-text h2 {
  font-weight: 600;
  font-size: 30px;
  margin-top: 15px;
  color: #000;
  border-bottom: 1px solid #00000057;
}

.blogs-img-text p {
  font-weight: 500;
  font-size: 16px;
  color: #a4a3a3;
  margin-bottom: 3%;
}

.search a {
  width: 100px;
  height: 51px;
  position: absolute;
  right: 0;
  top: 0;
  font-size: 17px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  background: #bf751d;
  color: #fff !important;
}

.search {
  position: relative;
}

.search input {
  border: 1px solid #e1e1e1;
  width: 100%;
  padding: 12px 10px;
}

.blog-categories h4 {
  font-weight: 700;
  font-size: 49px;
  margin-top: 30px;
  padding-bottom: 5px;
  position: relative;
  color: #000;
  text-transform: uppercase;
}

.blog-categories a {
  display: block;
  font-family: "Poppins";
  font-size: 15px;
  font-weight: 400;
  color: #000000;
  padding: 10px 0;
  border-bottom: 1px solid #e1e1e1;
}

.blog-categories p {
  font-family: "Poppins";
  font-weight: 500;
  color: #646464;
  font-size: 14px;
}

.postss i {
  color: #000 !important;
  font-size: 18px;
  margin-right: 10px;
}

.postss h6 {
  font-family: "Poppins";
  font-weight: 400;
  font-size: 15px;
  color: #9fb5b3;
  margin-bottom: 0;
  margin-top: 4%;
  text-transform: uppercase;
}

.blog-categories {
  padding: 0 25px;
}

.blogs-img-text img {
  width: 100%;
}

.postss p {
  font-weight: 500;
  color: #000;
  font-size: 14px;
  text-transform: capitalize;
}

.postss ul li img {
  width: 196px;
  object-fit: none;
}

.postss ul {
  display: flex;
  align-items: center;
  gap: 7px;
}

.postss ul li p {
  margin-bottom: 0;
}

.postss {
  border-bottom: 2px solid #e1e1e1;
  margin-bottom: 5%;
}

.blog-text1 li i {
  font-size: 22px;
  height: 35px;
  width: 35px;
  border: 1px solid #9fb5b3;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  display: flex;
}

.blog-text1 li {
  display: inline-block;
}

.blog-text1 ul {
  display: inline-block;
}

.blogs-img-text img {
  height: 600px;
  width: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.blog-categories input {
  width: 50%;
  padding: 10px;
  border: 1px solid #00000070;
  color: #000;
}

.blog-categories button {
  padding: 10px 10px;
  background-color: #ffb702;
  color: #fff;
  border: none;
}

.postss li h5 {
  font-weight: 700;
  color: #000;
}

.blogs-img-text h2 {
  font-weight: 700;
  color: #000;
}

.pro-txt-1 ul a {
  color: #000;
}

/*blog details end*/

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  border-color: #ffffff;
  color: #f11414;
}

.image-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.gallery-item {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

.wpcf7 form.sent .wpcf7-response-output {
  color: #f6a937 !important;
}

input#gform_submit_button_1 {
  width: auto;
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #fff;
  gap: 15px;
  background-color: #f6a937;
  width: fit-content;
  padding: 10px 15px 10px 15px;
  border-radius: 5px;
  border: 0px;
}

.gchoice.gchoice_1_18_0,
.gchoice.gchoice_1_18_1 {
  display: flex;
}

.gchoice.gchoice_1_18_0 input,
.gchoice.gchoice_1_18_1 input {
  width: auto;
}

.gchoice.gchoice_1_18_0 label,
.gchoice.gchoice_1_18_1 label {
  width: auto;
  display: inline !important;
  margin-top: -5px;
  margin-left: 10px;
}

div#gform_wrapper_1 {
  padding: 40px;
  width: 60%;
  margin: 0 auto;
  border: 1px solid lightgray;
  ️box-shadow: -1px 3px 19px 8px rgba(0, 0, 0, 0.22);
  -webkit-box-shadow: -1px 3px 19px 8px rgba(0, 0, 0, 0.22);
  -moz-box-shadow: -1px 3px 19px 8px rgba(0, 0, 0, 0.22);
  border-radius: 20px;
}

section.about .abt-txt p {
  margin: 0px;
}

section.about .abt-txt {
  margin-bottom: 30px;
}

.footer-logo img {
  background: #fff;
  border-radius: 10px;
  width: 340px;
}

/*Responsive Start*/

@media (max-width: 1399px) {
  .menuSec ul li a {
    padding: 10px 12px;
    font-size: 14px;
    line-height: 24px;
  }

  .banner-img img {
    height: 560px;
  }

  section.service {
    margin: 8% 0px 100px;
  }

  .head-bann::before {
    height: 102%;
  }

  .ser-bot-txt h4 {
    font-size: 20px;
    line-height: 28px;
  }

  .ser-top-txt h2 {
    font-size: 50px;
    line-height: 60px;
  }

  section.about .abt-txt p {
    font-size: 13px;
    line-height: 23px;
  }

  .abt-sm-bx {
    width: auto;
    height: 200px;
  }

  .abt-sm-txt h4 {
    font-size: 20px;
    line-height: 25px;
  }

  .abt-sm-txt p {
    font-size: 12px;
    line-height: 22px;
  }

  .abt-sm-img img {
    width: 120px;
    height: 40px;
    object-fit: fill;
  }

  .main-req h3 {
    font-size: 26px;
    line-height: 32px;
  }

  .main-work-bx {
    padding: 30px 20px 20px;
    height: 320px;
  }

  .get-free-txt p {
    font-size: 14px;
    line-height: 24px;
  }

  .useful-links ul {
    margin: 0px;
    gap: 20px;
  }

  .footer-txt ul {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer-logo p {
    margin-top: 40px;
  }

  .det-ser-img img {
    object-fit: cover;
    object-position: center;
  }
}

@media (max-width: 1280px) {
  .banner-txt {
    padding: 100px 0px 30px;
  }

  .head-bann::before {
    height: 107%;
  }

  section.service {
    padding: 80px 0;
  }

  .ser-top-txt h2 {
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 24px;
  }

  .det-ser-img img {
    height: 460px;
  }

  .blog-txt-bot h3 {
    font-size: 28px;
    line-height: 38px;
    margin-bottom: 10px;
  }

  .blog-txt-bot h6 {
    font-size: 14px;
    line-height: 24px;
  }

  div#gform_wrapper_1 {
    width: 90%;
  }
}

@media (max-width: 1024px) {
  .menuSec ul li a {
    font-size: 12px;
    line-height: 20px;
    padding: 10px 0;
  }

  .menuSec ul {
    display: flex;
    justify-content: space-between;
  }

  a.btn-1 {
    font-size: 11px;
    line-height: 18px;
    padding: 5px 5px 5px 10px;
    gap: 8px;
  }

  a.btn-1 img {
    width: 30px;
  }

  a.btn-2 {
    font-size: 14px;
    line-height: 16px;
    padding: 10px 10px;
    gap: 6px;
  }

  a.btn-2 img {
    width: 30px;
  }

  .banner-txt h1 {
    font-size: 35px;
    line-height: 45px;
  }

  .banner-txt p {
    font-size: 12px;
    line-height: 20px;
  }

  .banner-img img {
    height: 440px;
  }

  .banner-txt {
    padding: 50px 0px 60px;
  }

  section.service {
    margin: 13% 0px 60px;
    padding: 60px 0 80px;
  }

  .head-bann::before {
    height: 114%;
  }

  section.about .abt-txt p {
    display: inline;
  }

  .work-txt h3 {
    font-size: 40px;
    line-height: 50px;
  }

  .work-txt h5 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 10px;
  }

  .main-work-bx h5 {
    font-size: 24px;
    height: 60px;
    width: 60px;
    top: -38px;
    left: -31px;
  }

  .main-work-bx {
    padding: 20px 20px 20px;
    height: 280px;
  }

  .main-req img {
    width: 40px;
  }

  .main-req h3 {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 20px;
  }

  .main-work-bx p {
    font-size: 14px;
    line-height: 24px;
  }

  .get-free-txt h3 {
    font-size: 35px;
    line-height: 45px;
  }

  .get-free-txt p {
    font-size: 13px;
    line-height: 22px;
  }

  .get-img img {
    height: 420px;
  }

  section.get-free {
    margin-bottom: 60px;
    padding: 80px 0 40px;
  }

  .test-txt h5 {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 10px;
  }

  .test-txt h3 {
    font-size: 35px;
    line-height: 42px;
  }

  .test-sm-txt h5 {
    font-size: 20px;
    line-height: 30px;
  }

  .test-sm-txt h5 span {
    font-size: 16px;
    line-height: 24px;
  }

  .test-img img {
    width: 90px;
  }

  .quote i {
    font-size: 30px;
    width: 65px;
    height: 65px;
  }

  .quote {
    top: 18px;
    right: 22px;
  }

  .test-main-bx p {
    font-size: 16px;
    line-height: 33px;
    padding: 50px 40px 32px 41px;
  }

  .footer-logo img {
    width: 240px;
  }

  .footer-logo p {
    font-size: 13px;
    line-height: 26px;
    width: 90%;
  }

  .sub-txt input {
    font-size: 12px;
  }

  .abt-txt h5 {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 10px;
  }

  .abt-txt h3 {
    font-size: 35px;
    line-height: 43px;
    margin-bottom: 10px;
  }

  /* =========== */
  /* INNER PAGES START  */

  section.banner.inn {
    padding-bottom: 40px;
    padding-top: 10px;
  }

  section.banner.inn .banner-img img {
    height: 400px;
  }

  section.banner.inn h1 {
    font-size: 60px;
    line-height: 70px;
  }

  section.banner.inn .banner-txt {
    padding: 100px 0px 60px;
  }

  .main-bx-team img {
    height: 280px;
  }

  section.our-team {
    padding-bottom: 60px;
  }

  .blg-txt h3 {
    font-size: 40px;
    line-height: 50px;
  }

  section.det-service {
    padding: 100px 0px 80px;
  }

  section.blogs-details {
    padding: 120px 0 60px;
  }

  .blog-categories {
    padding: 0px;
  }

  .blog-categories input {
    width: 70%;
    font-size: 13px;
    padding: 8px;
  }

  .blog-categories button {
    font-size: 12px;
    line-height: 20px;
    padding: 10px 10px;
  }

  .blog-categories h4 {
    font-size: 34px;
    margin-top: 40px;
    padding-bottom: 12px;
    line-height: 44px;
  }

  .postss ul li img {
    width: 150px;
    object-fit: fill;
    height: auto;
  }

  .blog-categories a {
    font-size: 14px;
  }

  .postss h6 {
    font-size: 13px;
    line-height: 18px;
  }

  .blogs-img-text h2 {
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 10px;
  }

  .blogs-img-text p {
    font-size: 13px;
    line-height: 22px;
  }

  /* INNER PAGES START  */
}

@media (max-width: 888px) {
  header a.btn-1 {
    font-size: 10px;
    gap: 4px;
  }

  a.btn-1 img {
    width: 24px;
  }

  .menuSec ul li a {
    font-size: 10px;
  }

  section.banner {
    padding-top: 10px;
  }

  .banner-txt h1 {
    font-size: 26px;
    line-height: 35px;
  }

  .banner-txt {
    padding: 50px 16px 50px 0;
  }

  a.btn-2 {
    font-size: 13px;
    line-height: 14px;
    padding: 5px 10px;
  }

  .ban-social ul li a i {
    font-size: 14px;
    width: 30px;
    height: 30px;
  }

  .ban-social ul {
    gap: 10px;
  }

  .banner-img img {
    height: 380px;
  }

  .ser-top-txt h2 {
    font-size: 30px;
    line-height: 40px;
  }

  .ser-top-txt h4 {
    font-size: 20px;
    line-height: 26px;
  }

  .ser-bot-txt h4 {
    font-size: 14px;
    line-height: 20px;
  }

  .abt-txt h5 {
    margin-bottom: 5px;
  }

  .exp h4 {
    font-size: 35px;
    line-height: 35px;
  }

  .exp h5 {
    font-size: 18px;
    line-height: 24px;
  }

  .abt-sm-bx {
    gap: 10px;
    flex-direction: column;
    text-align: center;
    height: 240px;
    padding: 14px 10px;
  }

  .abt-sm-txt p {
    line-height: 18px;
    font-size: 11px;
  }

  .abt-sm-txt h4 {
    font-size: 18px;
    line-height: 20px;
  }

  .abt-sm-img img {
    width: auto;
    height: auto;
  }

  section.about {
    padding-bottom: 60px;
  }

  .main-work-bx {
    padding: 10px 10px 10px;
    height: 220px;
    border-radius: 10px;
  }

  .main-req h3 {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 10px;
  }

  .main-work-bx p {
    font-size: 11px;
    line-height: 20px;
  }

  .main-req {
    align-items: center;
    margin: 20px 0px 10px;
  }

  .main-work-bx h5 {
    font-size: 12px;
    height: 40px;
    width: 40px;
    top: -18px;
    left: -21px;
  }

  .main-work-bx::before {
    top: -12px;
    left: -10px;
    height: 90%;
  }

  .main-work-bx::after {
    position: absolute;
    top: -9px;
    left: -9px;
    height: 1%;
  }

  .work-txt h3 {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 0px;
  }

  .work-txt {
    margin-bottom: 40px;
  }

  .get-free-txt h3 {
    font-size: 30px;
    line-height: 35px;
  }

  .get-free-txt p {
    font-size: 12px;
    line-height: 19px;
  }

  .get-free-txt input {
    margin-bottom: 10px;
    border-radius: 8px;
  }

  .get-free-txt textarea {
    height: 130px;
    margin-bottom: 0;
  }

  .get-free-txt .wpcf7-submit {
    font-size: 13px;
    line-height: 20px;
  }

  .get-img img {
    height: 380px;
  }

  .test-img-txt {
    margin-bottom: -37px;
    margin-left: 15px;
    gap: 12px;
  }

  .test-img img {
    width: 80px;
  }

  .test-sm-txt h5 {
    font-size: 16px;
    line-height: 20px;
  }

  .test-sm-txt h5 span {
    font-size: 13px;
    line-height: 18px;
  }

  .quote i {
    width: 40px;
    height: 40px;
    font-size: 15px;
  }

  .test-main-bx p {
    padding: 50px 20px 20px 20px;
    font-size: 14px;
    line-height: 24px;
    border: 2px solid #063c58;
    border-radius: 10px;
  }

  .test-txt {
    margin-bottom: 30px;
  }

  .test-txt h3 {
    font-size: 28px;
    line-height: 34px;
  }

  .test-txt h5 {
    font-size: 18px;
    line-height: 20px;
    margin-bottom: 5px;
  }

  .useful-links ul {
    justify-content: space-between;
    gap: 0;
  }

  .footer-txt ul li p {
    font-size: 12px;
  }

  .sub-txt .wpcf7-submit {
    font-size: 12px;
    line-height: 22px;
  }

  .useful-links ul li a {
    font-size: 12px;
  }

  .footer-botom p {
    font-size: 13px;
  }

  .footer-logo img {
    width: 190px;
  }

  .footer-logo p {
    font-size: 12px;
    line-height: 24px;
    width: 90%;
  }

  /* INNER PAGES CSS START  */

  section.banner.inn .banner-img img {
    height: 330px;
  }

  section.banner.inn .banner-txt {
    padding: 90px 0px 50px;
  }

  section.banner.inn h1 {
    font-size: 40px;
    line-height: 50px;
  }

  section.about.inn {
    padding: 100px 0px 60px;
  }

  section.about.inn .abt-sm-bx {
    height: 300px;
  }

  section.about.inn p {
    font-size: 14px;
    line-height: 24px;
  }

  section.reliable {
    padding: 80px 0;
    margin-bottom: 70px;
  }

  .reliable-txt h3 {
    font-size: 60px;
    line-height: 70px;
  }

  .team-txt h3 {
    font-size: 45px;
    line-height: 55px;
  }

  .team-txt h5 {
    font-size: 20px;
    line-height: 20px;
  }

  .main-bx-team {
    padding: 10px;
  }

  .main-bx-team img {
    height: 220px;
  }

  .team-bot-txt h5 {
    font-size: 18px;
    line-height: 24px;
  }

  .team-bot-txt h5 span {
    font-size: 16px;
    line-height: 26px;
  }

  .blg-txt h3 {
    font-size: 30px;
    line-height: 40px;
  }

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

  section.contact-us.inner {
    padding: 120px 0px 90px 0px;
  }

  section.contact-us.inner h3 {
    font-size: 35px;
    line-height: 40px;
    margin-bottom: 20px;
  }

  .cont-1 p {
    font-size: 14px;
    line-height: 21px;
  }

  section.blog-page {
    padding: 100px 0px 60px 0px;
  }

  .blg-txt h3 {
    margin-bottom: 10px;
  }

  .blog-txt-bot {
    padding: 14px;
  }

  .blog-txt-bot h3 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 5px;
  }

  .blogs-img-text img {
    height: 450px;
  }

  section.map-sec iframe {
    height: 350px;
  }

  section.contact-us.inner .contact-form h3 {
    font-size: 24px;
    line-height: 28px;
    text-align: center;
  }

  section.contact-us .contact-form .row {
    margin: 0px;
  }

  section.contact-us .contact-form .row .col-lg-12.col-md-6.col-sm-6 {
    width: 100%;
  }

  .contact-form {
    padding: 30px 10px 0px 3px;
  }

  .wpcf7-form-control-wrap {
    display: block;
  }

  .contact-form form.wpcf7-form.init .col-lg-6.col-md-6.col-sm-6 {
    width: 100%;
  }

  .contact-form input {
    font-size: 12px;
    line-height: 18px;
    padding: 12px 40px 12px 16px;
    margin-bottom: 10px;
  }

  .contact-form textarea {
    width: 100%;
    margin-bottom: 10px;
    padding: 14px 14px 20px;
    height: 140px;
  }

  .contact-form .wpcf7-submit {
    margin: 0px auto;
    display: table;
  }

  section.contact-us.inner .cont-1 h3 {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 14px;
  }

  section.contact-us.inner .cont-1 {
    font-size: 10px;
  }

  .contact_page_sidbar i {
    font-size: 25px;
    margin: 0 10px 0 0;
    width: 25px;
  }

  ul.contact_page_sidbar h6 {
    line-height: 22px;
    font-size: 14px;
  }

  ul.contact_page_sidbar a {
    font-size: 14px;
    line-height: 20px;
  }

  div#gform_wrapper_1 {
    width: auto;
  }

  /* INNER PAGES CSS END */
}

@media (max-width: 480px) {
  .menuSec img {
    margin: 0 auto;
    width: 70%;
    display: block;
  }

  header a.btn-1 img {
    width: auto;
  }

  header a.btn-1 {
    margin: 10px auto 0;
  }

  .banner-txt {
    padding: 20px 0px 40px 0;
    text-align: center;
  }

  .banner-txt h1 {
    font-size: 35px;
    text-align: center;
    line-height: 45px;
  }

  .banner-img {
    position: unset;
    width: 100%;
  }

  .head-bann::before {
    width: 30%;
    height: 100%;
  }

  section.service {
    margin: 10% 0px 50px 0;
    padding: 50px 0px;
  }

  .banner-img img {
    height: auto;
  }

  .ser-top-txt h2 {
    font-size: 25px;
    line-height: 34px;
  }

  .ser-top-txt h4 {
    font-size: 20px;
  }

  .ser-img img {
    width: 100%;
    margin: 0px auto;
  }

  section.service a.btn-1 {
    margin: 0 0 20px 0;
  }

  .ser-img {
    margin: 10px auto;
    display: table;
  }

  .abt-txt h3 {
    font-size: 30px;
    line-height: 36px;
  }

  .abt-txt h5 {
    font-size: 16px;
    line-height: 18px;
  }

  .abt-sm-bx {
    width: 100%;
    margin-top: 10px;
    height: auto;
    padding: 30px 40px;
  }

  .exp h5 {
    font-size: 14px;
    line-height: 15px;
  }

  .exp h4 {
    font-size: 30px;
  }

  section.about {
    padding-bottom: 50px;
  }

  .work-txt h3 {
    font-size: 30px;
    line-height: 40px;
  }

  .work-txt h5 {
    font-size: 20px;
    margin: 0;
  }

  .main-work-bx {
    margin: 0 0 40px 30px;
    width: 90%;
    padding: 30px 20px 20px;
    height: auto;
  }

  .main-req h3 {
    font-size: 20px;
    line-height: 26px;
  }

  section.working {
    padding-bottom: 50px;
  }

  section.get-free {
    padding: 50px 0px;
    margin-bottom: 50px;
  }

  .get-img img {
    height: auto;
  }

  .get-free-txt h3 {
    font-size: 30px;
    line-height: 50px;
    margin-top: 0px;
    margin-bottom: 5px;
  }

  .get-free-txt .wpcf7-submit {
    margin: 0;
  }

  .test-txt h5 {
    font-size: 16px;
    line-height: 20px;
  }

  .test-txt h3 {
    font-size: 35px;
    line-height: 45px;
  }

  .test-main-bx p {
    font-size: 14px;
    padding: 40px 20px 20px 20px;
    line-height: 28px;
    text-align: left;
  }

  .test-img img {
    width: 90px;
  }

  .test-sm-txt h5 {
    font-size: 18px;
    line-height: 26px;
  }

  .test-sm-txt h5 span {
    font-size: 16px;
    line-height: 22px;
  }

  .quote i {
    font-size: 22px;
    width: 55px;
    height: 55px;
  }

  section.testimonials {
    padding-bottom: 50px;
  }

  .footer-logo img {
    width: 50%;
  }

  .footer-txt ul {
    display: block;
  }

  .sub-txt .wpcf7-submit {
    margin: 0 0 20px 15px;
    float: unset;
  }

  .useful-links ul {
    display: block;
  }

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

  section.banner.inn h1 {
    font-size: 40px;
  }

  section.banner.inn .banner-img img {
    height: auto;
  }

  .head-bann .inn::before {
    height: 100%;
  }

  section.about.inn {
    padding: 50px 0px 50px 0;
  }

  section.banner.inn {
    padding-bottom: 50px;
  }

  section.reliable {
    margin-bottom: 60px;
    padding: 60px 0px;
  }

  .reliable-txt h3 {
    font-size: 40px;
    line-height: 60px;
  }

  .team-txt h5 {
    font-size: 20px;
  }

  .team-txt h3 {
    font-size: 30px;
    line-height: 40px;
  }

  section.our-team {
    padding-bottom: 40px;
  }

  section.blog-page {
    padding: 60px 0px 60px 0px;
  }

  .blg-txt h5 {
    font-size: 20px;
  }

  .blg-txt h3 {
    font-size: 40px;
    line-height: 50px;
  }

  .det-ser-img img {
    height: auto;
    min-height: auto;
  }

  section.det-service {
    padding: 60px 0px 60px 0;
  }

  section.contact-us.inner h3 {
    font-size: 40px;
    line-height: 45px;
  }

  section.contact-us {
    padding: 60px 0px 60px 0px;
  }

  .blog-txt-bot h3 {
    font-size: 20px;
  }

  section.blogs-details {
    padding: 60px 0;
  }

  .blogs-img-text img {
    height: auto;
  }

  .blog-categories h4 {
    font-size: 30px;
    margin-top: 20px;
  }

  section.book {
    padding: 60px 0px 60px 0;
  }

  div#gform_wrapper_1 {
    padding: 30px 20px;
    width: 100%;
  }

  .gform_wrapper.gravity-theme * h2 {
    font-size: 36px;
    margin: 0;
  }

  .gform_wrapper.gravity-theme .gfield textarea.large {
    height: auto;
  }

  .banner-txt a.btn-2 {
    margin: 0px auto;
    display: flex;
  }

  .ban-social ul {
    justify-content: center;
  }

  .ser-top-txt {
    text-align: center;
  }

  section.service a.btn-1 {
    margin: 0px auto;
    display: flex;
    margin-bottom: 20px;
  }

  .ser-bot-txt h4 {
    font-size: 24px;
    line-height: 26px;
  }

  .ser-bot-txt {
    margin-bottom: 30px;
  }

  .abt-sm-txt p {
    line-height: 25px;
    font-size: 14px;
  }

  .abt-sm-txt h4 {
    font-size: 24px;
    line-height: 30px;
    margin: 10px 0 10px;
  }

  .main-req {
    margin: 0px 0px 10px;
  }

  .main-work-bx p {
    font-size: 13px;
    line-height: 25px;
  }

  .get-free-txt {
    text-align: center;
    margin-top: 50px;
  }

  .get-free-txt p {
    font-size: 13px;
    line-height: 24px;
  }

  .get-free-txt .wpcf7-submit {
    display: flex;
    width: 50%;
    margin: 0px auto;
  }

  .abt-sm-bx {
    padding: 30px 10px;
  }

  section.about .abt-txt p {
    font-size: 12px;
    line-height: 20px;
    display: inline-block;
  }

  .footer-botom p {
    font-size: 13px;
    text-align: left;
  }

  /* INNER PAGES CSS START  */

  section.banner.inn .banner-txt {
    padding: 60px 0px 0px;
  }

  section.about.inn .abt-sm-bx {
    height: auto;
  }

  section.about.inn p {
    text-align: center;
  }

  .reliable-txt h3 {
    font-size: 34px;
    line-height: 42px;
  }

  .main-bx-team img {
    height: auto;
  }

  .team-bot-txt h5 {
    font-size: 24px;
    line-height: 36px;
  }

  .blg-txt h3 {
    font-size: 24px;
    line-height: 30px;
  }

  .blg-txt h5 {
    font-size: 16px;
    line-height: 22px;
  }

  .footer-logo p {
    font-size: 12px;
    line-height: 24px;
    width: auto;
    margin-top: 24px;
  }

  section.contact-us.inner {
    padding: 60px 0px 90px 0px;
    text-align: center;
  }

  section.contact-us.inner h3 {
    font-size: 26px;
    line-height: 32px;
  }

  .cont-1 p {
    font-size: 13px;
    line-height: 20px;
  }

  .gallery-item {
    height: auto;
    width: auto;
  }

  .gallery-item img {
    width: 100%;
    height: auto;
  }

  .blog-categories {
    padding-top: 40px;
  }

  .blogs-img-text ul {
    gap: 0;
    justify-content: space-around;
  }

  .blogs-img-text ul li i {
    font-size: 12px;
    line-height: 20px;
  }

  .blogs-img-text ul li {
    font-size: 12px;
    line-height: 20px;
  }

  .blogs-img-text {
    text-align: center;
  }

  .blogs-img-text h2 {
    margin-bottom: 20px;
    padding-bottom: 14px;
  }

  /* Contact Us Start  */

  ul.contact_page_sidbar li {
    flex-direction: column;
    gap: 10px;
  }

  .contact-form p {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .contact-form span.wpcf7-form-control-wrap {
    display: block;
    width: 100%;
  }

  .contact-form .col-lg-12 {
    padding: 0px;
    margin: 0px auto;
  }

  .contact-form form.wpcf7-form.init .col-lg-6.col-md-6.col-sm-6 {
    padding: 0px;
  }

  .contact-form {
    padding: 24px 30px 0;
  }

  .contact-form p br {
    display: none;
  }
  /* Contact Us End  */
}

.content a{
	color: #fff;
    text-decoration: none;
    margin: 0 auto;
    margin-top: 10px;
}
.content a.btn-2{
	color:#fff;
	text-decoration:none;
}
.content ul{}
.content ul li {
  position: relative;
  padding-left: 30px; 
  list-style: none;
	font-size:14px;
	line-height:30px;
}

.content ul li::before {
  content: ">";
    position: absolute;
    left: 14px;
    top: 2px;
    color: #333;
    font-size: 20px;
}

.content .join{
	padding: 40px;
    width: 60%;
    margin: 0 auto;
    border: 1px solid lightgray;
    ️box-shadow: -1px 3px 19px 8px rgba(0, 0, 0, 0.22);
    -webkit-box-shadow: -1px 3px 19px 8px rgba(0, 0, 0, 0.22);
    -moz-box-shadow: -1px 3px 19px 8px rgba(0, 0, 0, 0.22);
    border-radius: 20px;
}

.content .join input{
	border:1px solid lightgray;
	border-radius:5px;
}
.content .join textarea{
	border:1px solid lightgray;
	border-radius:5px;
}
.content .join .gform_button{
	background: #028fd6;
    padding: 10px 30px;
    color: #fff;
    border: 0px;
	transition:0.5s all;
}
.content .join .gform_button:hover{
	background:#094d6e;
}

.content .main-work-bx {
    width: 96%;
    padding: 50px 20px;
}

.content .main-work-bx img{
	filter: brightness(0) saturate(100%) invert(68%) sepia(23%) saturate(1361%) hue-rotate(349deg) brightness(104%) contrast(93%);
}

