/*================================================
            [common-css] ====== Starts
================================================*/
body {
  padding: 0px;
  margin: 0px;
  overflow-x: hidden;
}

* {
  outline: none !important;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

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

:focus {
  outline: none !important;
}

section {
  width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

h1 {
  font-size: 70px;
  color: #3b3b3b;
}
h1 span {
  color: #c4a300;
}

h2 {
  font-size: 48px;
  font-family: "Rubik";
  font-weight: 500;
}

h3 {
  font-size: 44px;
  font-family: "Rubik";
  font-weight: 500;
}

h4 {
  font-size: 20px;
  font-family: "Rubik";
  font-weight: 500;
}

p {
  font-size: 16px;
  line-height: 1.5;
  font-family: "Rubik";
  font-weight: 400;
  color: #595959;
  margin: 0;
}

.common-bg {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.common-btn {
  font-size: 16px;
  padding: 15px 44px;
  font-family: "Rubik";
  color: #fff;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
  display: inline-block;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.common-btn::after, .common-btn::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background-image: linear-gradient(90deg, #e1c143 0%, #cfa413 100%);
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
  left: 0;
  z-index: -1;
}
.common-btn:after {
  bottom: -100%;
}
.common-btn::before {
  top: 0;
}
.common-btn:hover {
  color: #fff;
}
.common-btn:hover::after {
  bottom: 0;
}
.common-btn:hover::before {
  top: -100%;
  opacity: 0.3;
}

.dark-btn {
  font-size: 16px;
  padding: 15px 44px;
  font-family: "Rubik";
  color: #fff;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
  display: inline-block;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  z-index: 2;
  z-index: 3;
}
.dark-btn::after, .dark-btn::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background-image: linear-gradient(90deg, #e1c143 0%, #cfa413 100%);
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
  left: 0;
  z-index: -1;
}
.dark-btn:after {
  bottom: -100%;
}
.dark-btn::before {
  top: 0;
}
.dark-btn:hover {
  color: #fff;
}
.dark-btn:hover::after {
  bottom: 0;
}
.dark-btn:hover::before {
  top: -100%;
  opacity: 0.3;
}
.dark-btn::after, .dark-btn::before {
  background-image: linear-gradient(90deg, #565656 0%, #3b3b3b 100%);
}
.dark-btn:after {
  z-index: -1;
}

.common-head h5,
.common-head h6 {
  border-radius: 10px;
  padding: 15px 0;
  margin-bottom: 20px;
  font-family: "Rubik";
  color: #fff;
  text-align: center;
}
.common-head h5 {
  background-color: green;
}
.common-head h6 {
  background-color: red;
}

/*===== humburger-menu =====*/
.humburger {
  position: relative;
}
.humburger img {
  width: 25px;
  height: 25px;
}
.humburger .color-change {
  background-color: #fff !important;
}
.humburger .hum-pos {
  position: absolute;
  right: 20px;
  top: 0;
}

.side-menu-show {
  right: 0 !important;
}

.cls-menu img {
  width: 25px;
  position: absolute;
  right: 20px;
  top: 20px;
}

.nv-open-bg {
  width: 100%;
  height: 100%;
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  opacity: 0.5;
  background-color: #000;
}

/*===== header-area-sticky =====*/
.animated {
  animation-duration: 1.25s;
}

.fadeInDown {
  animation-name: fadeInDown;
}

.fadeInLeft {
  animation-name: fadeInLeft;
}

.fadeInRight {
  animation-name: fadeInRight;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
header.header-area.pq-header-style-1.pq-has-sticky.pq-header-sticky {
  position: fixed;
  background: var(--white-color);
  padding: 15px 0;
  top: 0;
  box-shadow: 0px 3px 30px 0px rgba(0, 33, 85, 0.1);
  background-color: #fff;
  width: 100%;
  z-index: 999;
}

/*===== preloading =====*/
#pq-loading {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  display: flex;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background-color: #fff;
}
#pq-loading img {
  height: 60px;
  width: auto;
  border-radius: 0;
}

/*===== Back to Top =====*/
#back-to-top .top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  margin: 0px;
  color: #fff;
  background-image: linear-gradient(90deg, #565656 0%, #3b3b3b 100%);
  z-index: 999;
  font-size: 26px;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  z-index: 99999;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
}

#back-to-top .top:hover {
  opacity: 0.6;
}

/*================================================
            [common-css] ====== End
================================================*/
/*================================================
            [index] ====== Starts
================================================*/
/*===== header =====*/
.header-area {
  padding: 22px 0;
}
.header-area .logo {
  width: 280px;
}

.nav-bar ul li {
  margin-left: 38px;
}
.nav-bar ul li:first-child {
  margin-left: 0;
}
.nav-bar ul li:last-child {
  margin-left: 30px;
}
.nav-bar ul li .common-btn {
  font-size: 16px;
  padding: 15px 44px;
  font-family: "Rubik";
  color: #fff;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
  display: inline-block;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  z-index: 2;
  padding: 13px 30px;
}
.nav-bar ul li .common-btn::after, .nav-bar ul li .common-btn::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background-image: linear-gradient(90deg, #e1c143 0%, #cfa413 100%);
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
  left: 0;
  z-index: -1;
}
.nav-bar ul li .common-btn:after {
  bottom: -100%;
}
.nav-bar ul li .common-btn::before {
  top: 0;
}
.nav-bar ul li .common-btn:hover {
  color: #fff;
}
.nav-bar ul li .common-btn:hover::after {
  bottom: 0;
}
.nav-bar ul li .common-btn:hover::before {
  top: -100%;
  opacity: 0.3;
}
.nav-bar ul li a {
  font-family: "Rubik";
  color: #454545;
  font-size: 14px;
  text-transform: uppercase;
  display: inline-block;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
}
.nav-bar ul li a:hover {
  color: #c4a300;
}
.nav-bar ul li a.active {
  color: #c4a300;
}

/*===== banner-area =====*/
.banner-area {
  padding: 70px 0 160px 0;
}
.banner-area .ban-slogan {
  padding-right: 60%;
}
.banner-area .ban-slogan p {
  margin: 3px 0 18px 0;
  color: #5e5e5e;
  font-size: 17px;
}

/*===== service-sec =====*/
.service-sec .service-wrap {
  margin-top: -73px;
}

.each-service-box {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-between;
  background-color: #fff;
  padding: 25px 20px;
  filter: drop-shadow(4.243px 4.243px 25px rgba(41, 41, 41, 0.06));
  background-color: #ffffff;
  height: 100%;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.each-service-box:after {
  content: "";
  width: 100%;
  height: 100%;
  z-index: -1;
  top: -100%;
  left: 0;
  background-image: linear-gradient(90deg, #ddbb39 0%, #cfa513 100%);
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
  position: absolute;
}
.each-service-box:hover:after {
  top: 0;
}
.each-service-box:hover .each-service-img {
  background-image: linear-gradient(90deg, #ffffff 0%, #ffffff 100%);
}
.each-service-box:hover .srv-hand {
  bottom: 15px;
}
.each-service-box:hover h4,
.each-service-box:hover p {
  color: #fff;
}
.each-service-box:hover .each-service-img img {
  filter: none;
}
.each-service-box .each-service-img {
  width: 72px;
  height: 68px;
  padding: 16px;
  border-radius: 100%;
  background-image: linear-gradient(90deg, #ddbb39 0%, #cfa513 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
.each-service-box .each-service-img img {
  filter: brightness(10);
  -webkit-filter: brightness(10);
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
}
.each-service-box .each-service-img img {
  width: 35px;
}
.each-service-box .each-service-txt {
  flex-grow: 1;
}
.each-service-box .each-service-txt h4 {
  margin-bottom: 5px;
}

/*===== who-we-sec =====*/
.who-we-sec {
  padding: 70px 0;
}
.who-we-sec .who-we-img {
  padding-right: 70px;
}
.who-we-sec .who-we-txt p {
  margin: 15px 0;
}

/*===== about-us-sec =====*/
.about-us-sec {
  padding: 75px 0;
  background-attachment: fixed;
}
.about-us-sec h3 {
  color: #fff;
}
.about-us-sec p {
  margin: 30px 0 20px 0;
  color: #fff;
  font-weight: 300;
  color: #b2b2b2;
}

/*===== contact-sec =====*/
.contact-sec {
  position: relative;
  z-index: 2;
  padding-top: 65px;
  position: relative;
}
.contact-sec:after {
  content: "";
  width: 100%;
  height: 120px;
  background-color: #333333;
  bottom: 0;
  left: 0;
  position: absolute;
  z-index: -1;
}
.contact-sec .contact-wrap {
  background-image: linear-gradient(180deg, #f7f7f7 0%, #f2f2f2 100%);
  padding: 60px;
}
.contact-sec .contact-wrap .common-btn {
  margin-top: 20px;
}
.contact-sec .contact-wrap .common-btn input {
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
}
.contact-sec .contact-wrap p {
  margin: 5px 0 20px 0;
}

.contact-succes {
  background-color: rgb(0, 179, 0);
  color: white;
  text-align: center;
  padding: 15px 45px 10px 10px;
  position: fixed;
  top: 100px;
  right: 0;
  width: 325px;
  opacity: 0.8;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-succes .success-img {
  position: absolute;
  top: 10px;
  right: 15px;
  cursor: pointer;
  background-color: #fff;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-succes .success-img img {
  right: 10px;
}
.contact-succes .success-img img {
  width: 10px;
}

.form-style {
  font-size: 15px;
  color: #9c9c9c;
  font-weight: 300;
  font-family: "Rubik";
  background: none;
  border: none;
  border-bottom: 1px solid #e1e1e1;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-radius: 0;
}
.form-style:focus {
  box-shadow: none;
  background-color: transparent;
  border-color: #e1e1e1;
}

/*===== footer-sec =====*/
.footer-sec {
  background-color: #333333;
  padding-top: 40px;
}
.footer-sec .nav-bar {
  margin: 30px 0;
}
.footer-sec .nav-bar ul .active a {
  color: #fff;
}
.footer-sec .nav-bar ul li {
  margin-left: 18px;
}
.footer-sec .nav-bar ul li:first-child {
  margin-left: 0;
}
.footer-sec .nav-bar ul li a {
  color: #9c9c9c;
}
.footer-sec .nav-bar ul li a:hover {
  color: #fff;
}
.footer-sec .foot-btm {
  background-color: #2e2e2e;
  padding: 20px 0;
}
.footer-sec .foot-btm p {
  color: #808081;
  font-weight: 300;
}

/*================================================
            [index] ====== End
================================================*/
/*================================================
            [free-skill-page] ====== start
================================================*/
.free-skill-sec {
  padding: 30px 0;
}
.free-skill-sec .skill-frm .rdo-nw span {
  display: flex;
  align-items: center;
  justify-content: center;
}
.free-skill-sec .skill-frm h3 {
  border-radius: 10px;
  font-size: 14px;
  font-family: "Rubik";
  font-weight: bold;
  color: #ffffff;
  width: 300px;
  margin: 0 auto 20px;
  padding: 15px 0;
  background-image: linear-gradient(to top, #202020, #2e2e2e, #434343, #464646);
}
.free-skill-sec .skill-frm label {
  font-family: "Rubik";
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  color: #454545;
}
.free-skill-sec .skill-frm input {
  font-family: "Rubik";
  font-size: 16px;
  color: #454545;
  border: 1px solid #000;
  height: 45px;
  padding: 0 15px;
  font-weight: 400;
  border-radius: 10px;
}
.free-skill-sec .skill-frm textarea {
  font-family: "Rubik";
  font-size: 16px;
  resize: none;
  color: #454545;
  border: 1px solid #000;
  height: 100px;
  padding: 15px;
  border-radius: 10px;
}
.free-skill-sec .skill-frm .submit_btn1 {
  background-image: linear-gradient(to right, #e0ca70, #ddc76e, #e7d177, #e5d076);
  width: 260px;
  height: 30px;
  line-height: 30px;
  border-radius: 10px;
  color: #000000;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: 0;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
}
.free-skill-sec .skill-frm .submit_btn1:hover {
  opacity: 0.6;
}

/*================================================
            [free-skill-page] ====== End
================================================*/
/*================================================
            [about-page] ====== start
================================================*/
.about-us {
  padding: 70px 0;
}
.about-us h3 {
  margin-bottom: 25px;
}/*# sourceMappingURL=style.css.map */