@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');

#jqcheck {
  background: #fff9d7;
  text-align: center;
  color: #333;
  padding: 10px 0px;
  font-size: 13px;
  font-weight: bold;
  position: fixed;
  z-index: 9991;
  width: 100%;
  font-family: Arial, Helvetica, sans-serif;
}

* {
  margin: 0px;
  padding: 0px;
}


/* browser scroller style */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment {
  display: none;
}

::-webkit-scrollbar-track-piece {
  background-color: #ecedf1;
  -webkit-border-radius: 0px;
  border-left: 1px solid #888;
}

::-webkit-scrollbar-thumb:vertical {
  -webkit-border-radius: 0px;
  background: #a43947;
}

.pkgBox ::-webkit-scrollbar{
    width: 5px  !important;
    height: 10px;
}


body {
  color: #000;
  font-size: 16px;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
li,
span,
strong {
  font-family: 'Montserrat', sans-serif;
}

/* headings */
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6,
p {
  margin: 0;
  padding: 0;
}

p {
  line-height: normal;
  padding: 0;
  margin: 0px;
  font-family: Poppins;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

a:focus {
  outline: none;
  text-decoration: none;
}

figure {
  margin-bottom: 0
}

img {
  border: 0px;
  outline: none;
}

ul {
  padding: 0px;
  margin: 0px
}

ul,
li {
  list-style-type: none;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}


/* Btn Sizes and styles */

ul.btn-wrap {}

ul.btn-wrap li {
  margin-right: 20px;
}

ul.btn-wrap li:last-child {
  margin-right: 0;
}

.btn-style {
  padding: 6px 32px;
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  line-height: 38px;
  text-transform: uppercase;
  transition: all 0.7s linear;
  transition-timing-function: cubic-bezier(0.5, 3, 0, 1);
  border: 1px solid;
}

.btn-style:hover {
  transform: skewX(-15deg);
}

.btn-white {
  background-color: #ffffff;
  color: #FF5744;
  border-color: #fff;
}

.btn-white:hover {
  background: #ff5740;
  color: #fff !important;
}

.btn-grey {
  background: #f6f6f6;
  color: #ff5740;
}

.btn-grey:hover {
  color: #ff5740;
}

.btn-orange {
  background: #ff5740;
  color: #fff;
  border-color: #ff5740;
}

.btn-orange:hover {
  color: #ff5740;
  background: #fff;
  transform: skewX(-15deg);
}


.bullets {
  text-align: center;
}

.bullets li {
  display: block;
  position: relative;
  font-size: 20px;
  line-height: 30px;
  width: max-content;
  margin: auto;
  padding-left: 40px;
}

.bullets li:before {
  content: "\f058";
  position: absolute;
  font-family: 'Font Awesome 5';
  left: 0;
  color: #00912e;
}

/* header 
------------------------------------*/
.header-main {
  padding: 10px 0;
  position: absolute;
  width: 100%;
  z-index: 1;
}

.fixed-header {
  width: 100%;
  position: fixed;
  top: 0;
  padding: 10px 0;
  z-index: 11;
  background-image: -moz-linear-gradient(-90deg, rgb(255 87 64 / 74%) 0%, rgb(255 87 64 / 68%) 100%);
  background-image: -webkit-linear-gradient(-90deg, rgb(255 87 64 / 74%) 0%, rgb(255 87 64 / 68%) 100%);
  background-image: -ms-linear-gradient(-90deg, rgb(255 87 64 / 74%) 0%, rgb(255 87 64 / 68%) 100%);
  transition: .8s linear;
}

.fixed-header .logo a img {
  width: 170px;
}

.nav-area-full {}

.logo {
  margin: 0;
  float: left;
}

.logo a {
  display: block;
}

.logo a img {}

.main-menu {
  width: 100%;
  display: inline-block;
  margin: 0;
}

.main-menu>ul {
  margin: 0px;
}

.main-menu>ul>li {
  position: relative;
  margin-right: 40px;
}

.main-menu>ul>li>a {}

header ul.header-btn li a.phone-btn span {
  margin-right: 15px
}

header ul.header-btn li a.phone-btn span svg {}

/* Animate phone */
.phone svg {
  width: 28px;
  height: 28px;
  float: left;
  margin-top: 0;
  margin-right: 0px;
  transform: rotate(4deg);
}

.phone svg path {
  fill: #fff;
}

.phone svg path:nth-child(2) {
  -webkit-animation: header-phone 1s infinite cubic-bezier(.1, .57, .5, 1);
  animation: header-phone 1s infinite cubic-bezier(.1, .57, .5, 1);
  fill: #fff;
}

.phone svg path:nth-child(3) {
  -webkit-animation: header-phone2 1s infinite cubic-bezier(.1, .57, .5, 1);
  animation: header-phone2 1s infinite cubic-bezier(.1, .57, .5, 1);
  fill: #fff;
}

@-webkit-keyframes header-phone {

  0%,
  30% {
    opacity: 0;
    -webkit-transform: translate3d(-20px, 20px, 0);
    transform: translate3d(-20px, 20px, 0)
  }

  80% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }

  100% {
    opacity: 0
  }
}

@keyframes header-phone {

  0%,
  30% {
    opacity: 0;
    -webkit-transform: translate3d(-20px, 20px, 0);
    transform: translate3d(-20px, 20px, 0)
  }

  80% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }

  100% {
    opacity: 0
  }
}

@-webkit-keyframes header-phone2 {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-20px, 20px, 0);
    transform: translate3d(-20px, 20px, 0)
  }

  70%,
  90% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }

  100% {
    opacity: 0
  }
}

@keyframes header-phone2 {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-20px, 20px, 0);
    transform: translate3d(-20px, 20px, 0)
  }

  70%,
  90% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }

  100% {
    opacity: 0
  }
}



.main-menu>ul>li a.header-chat {
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  color: #fff;
}

.main-menu>ul>li a.header-chat span {
  margin-right: 10px;
}

.main-menu>ul>li a.header-chat span img {}

.main-menu>ul>li:last-child {
  margin-right: 0;
}

.main-menu>ul>li a.phone-btn {
  font-size: 20px;
  line-height: 26px;
  font-weight: 600;
  color: #fff;
}

.home-banner {
  padding: 250px 0 100px;
  position: relative;
}

.home-banner h2 {
  color: #fff;
  font-size: 40px;
  font-weight: 800;
}

.home-banner h2 span {
  font-size: 55px;
}

.home-banner p {
  color: #fff;
  font-size: 16px;
  line-height: 30px;
  font-weight: 400;
  margin: 15px 0;
}

.home-banner ul.btn-wrap {}

.home-banner img.banner-batch {
  margin-top: 30px;
}

.home-banner .banner-form {
  background: #fff;
  width: 90%;
  float: right;
  padding: 45px;
}

.home-banner .banner-form .head {}

.home-banner .banner-form .head h4 {
  color: #222222;
  font-size: 34px;
  line-height: 49px;
  font-weight: 800;
}

.home-banner .banner-form .head h4 span {
  color: #ff5740;
}

.home-banner .banner-form .head p {
  font-size: 12px;
  color: #bbbbbb;
  line-height: 20px;
  margin: 10px 0 20px;
}

.home-banner .banner-form .form-wrap {}

.home-banner .banner-form .form-wrap form {}

.home-banner .banner-form .form-wrap form .feild {
  position: relative;
  border-bottom: 1px solid #bbbbbb;
  margin-bottom: 20px;
  padding-left: 20px;
}

.home-banner .banner-form .form-wrap form .feild input {
  border: 0;
  width: 100%;
  padding-left: 30px;
  padding-bottom: 10px;
  color: #bbbbbb;
  font-size: 12px;
  font-weight: 500;
}

.home-banner .banner-form .form-wrap form .feild i {
  position: absolute;
  top: 5px;
  left: 20px;
  margin: auto;
  color: #bbbbbb;
}

.home-banner .banner-form .form-wrap form input[type="submit"] {
  width: 100%;
  border: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 38px;
  color: #fff;
  background: #ff5740;
  text-transform: uppercase;
  height: 50px;
  position: relative;
  z-index: 1;
}

.home-banner .banner-form .form-wrap form input[type="submit"]:hover {
  background: #000;
}

.home-banner .banner-girl {}

.home-banner .banner-girl img {
  position: absolute;
  bottom: -40px;
  left: 40%;
  margin: auto;
  pointer-events: none;
}

.client-logos {
  background: #eeeeee;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 55px 0;
  position: relative;
}

.sec-2 {
  padding: 40px 0;
}

.sec-2 h3 {
  color: #333333;
  font-size: 40px;
  line-height: 50px;
  font-weight: 800;
}

.sec-2 p {
  font-size: 14px;
  color: #999999;
  line-height: 26px;
  font-weight: 400;
  margin: 15px 0 25px 0;
}

.sec-2 figure {
  text-align: center;
}

.sec-2 figure img {
  -webkit-animation: mover 1s infinite alternate;
  animation: mover 1s infinite alternate;
}

@-webkit-keyframes mover {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-10px);
  }
}

@keyframes mover {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-10px);
  }
}

.cta-1 {
  background-image: url(../images/cta1-bg.jpg);
  position: relative;
  height: 410px;
  display: flex;
}

.cta-1:before {
  content: "";
  position: absolute;
  background-image: url(../images/cta-element-1.png);
  width: 210px;
  height: 160px;
  background-repeat: no-repeat;
  bottom: -65px;
  left: 50px;
}

.cta-1:after {
  content: "";
  position: absolute;
  background-image: url(../images/cta-element-2.png);
  width: 55px;
  height: 55px;
  background-repeat: no-repeat;
  right: 25%;
  top: 50px;
  transition: 4s all;
  animation: animIn 5s ease 1s infinite alternate;
  transform: scale(0.8);
}

.cta-1 h2 {
  color: #fff;
  font-size: 50px;
  font-weight: 700;
}

.cta-1 h2 span {
  display: block;
  font-size: 38px;
}

.cta-1 ul.btn-wrap {
  margin: 25px 0 35px;
}


.cta-1 .form-wrap form {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 20px;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.cta-1 .form-wrap form .feild {
  position: relative;
  margin-right: 20px;
  flex: 0 0 27%;
}

.cta-1 .form-wrap form .feild i {
  position: absolute;
  color: #999999;
  top: 12px;
  left: 20px;
}

.cta-1 .form-wrap form .feild input {
  border: 1px solid rgb(204, 204, 204);
  background: transparent;
  width: 100%;
  height: 42px;
  padding-left: 50px;
  color: #999999;
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
}

.cta-1 .form-wrap form input[type="submit"] {
  background: #ff5740;
  border: 0;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  height: 42px;
  padding: 0px 30px;
}

.cta-1 .form-wrap form input[type="submit"]:hover {
  background: #000;
}

.cta-1 .cta-girl {}

.cta-1 .cta-girl img {
  position: absolute;
  bottom: 0;
  right: 30%;
}

@keyframes animIn {
  0% {
    transform: rotatex(0deg) rotatey(0deg) rotatez(45deg) scale(0.9);

    opacity: 0;
  }

  25% {
    opacity: 1;
  }

  40% {
    transform: rotatex(180deg) rotatey(360deg) rotatez(225deg) scale(1);

  }

  60% {
    transform: rotatex(180deg) rotatey(360deg) rotatez(225deg) scale(1);

  }

  100% {
    transform: rotatex(0deg) rotatey(0deg) rotatez(405deg) scale(1);

  }
}

.portfolio-sec {
  background: #f1f9f8;
  padding: 100px 0;
}

.portfolio-sec h6 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  color: #000;
  text-transform: uppercase;
  font-family: Poppins;
}

.portfolio-sec h3 {
  color: #333333;
  font-size: 45px;
  font-weight: 800;
  line-height: 50px;
  padding: 10px 0 20px 0;
}

.portfolio-sec p {
  font-size: 16px;
  color: #999999;
  line-height: 30px;
  font-weight: 400;
  width: 75%;
  margin: auto;
}

.portfolio-sec ul.portfolio-wrap {
  margin: 30px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.portfolio-sec ul.portfolio-wrap li {
  flex: 0 0 20%;
  padding: 10px;
  position: relative;
}

.portfolio-sec ul.portfolio-wrap li:nth-child(odd):before {
  content: "";
  position: absolute;
  background-image: url(../images/porfolio-batch.png);
  width: 80px;
  height: 80px;
  background-repeat: no-repeat;
  top: 0;
  right: 0;
  z-index: 1;
  background-size: cover;
}

.portfolio-sec ul.portfolio-wrap li a {
  display: block;
  transition: transform 4s ease-in;
  overflow: hidden;
  position: relative;
}

.portfolio-sec ul.portfolio-wrap li a img {
  transition: transform 1s ease-in;
}

.portfolio-sec ul.portfolio-wrap li a:hover img {
  transform: scale(1.2);
}

.portfolio-sec ul.portfolio-wrap li a:before {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  content: "View!";
  transform: translateY(-100%);
  font-size: 25px;
  color: #fff;
  display: block;
  background-color: rgba(188, 143, 143, 0.137);
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: sans-serif;
  transition: transform .4s ease-in;
  border: 4px solid white;
  justify-content: center;
  box-sizing: border-box;
}

.portfolio-sec ul.portfolio-wrap li a:after {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  content: "View!";
  transform: translateY(100%);
  font-size: 25px;
  color: #fff;
  display: block;
  background-color: #f1000023;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: sans-serif;
  transition: transform .4s ease-in;
  border: 4px solid white;
  justify-content: center;
  box-sizing: border-box;
}

.portfolio-sec ul.portfolio-wrap li a:hover::before {
  transform: translateY(0%);
}

.portfolio-sec ul.portfolio-wrap li a:hover::after {
  transform: translateY(0%);
}

.portfolio-sec ul.portfolio-wrap li:hover:before {
  opacity: 0;
}

/* Pricing */
.pkgSec.para {
  font-size: 24px;
  color: rgba(34, 34, 34, 0.60);
  font-weight: 600;
}

.pkgSec {
  background: linear-gradient(-120deg, rgba(255, 255, 255, 0.899) 14%, rgba(255, 214, 109, 0.979) 100%), url(./images/2b026d7….jpg);
  background-size: cover;
  background-repeat: no-repeat;
  /* background-color: rgb(247 231 219); */
  padding: 100px 0;
  margin: 0px 0 0;
  font-family: 'Crimson Text', serif;
}

.pkgHead {
  padding-bottom: 100px;
}

.pkgSec .title {
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 30px;
  line-height: 45px;
  position: relative;
  color: #000000;
}

.pkgSec .title:before {
  content: "";
  position: absolute;
  width: 130px;
  height: 5px;
  background-color: #fea500;
  bottom: -10px;
  transition: .7s linear;
}

.pkgContentBox {
    border-radius: 24px;
    box-shadow: 0 15px 22px -6px rgb(69 69 69 / 15%);
    background-color: #fafafa;
    margin-bottom: 55px;
    height: 550px;
}

ul.pkg-list {
  display: flex;
  justify-content: space-around;
  padding: 1rem;
}

ul.pkg-list li.slick-slide {
  display: inline-block;
  vertical-align: top;
  margin-right: 25px;
}

.pkgBox {
  height: 470px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 24px;
  transition: 0.5s;
  position: relative;
  bottom: 0;
  padding: 30px;
  margin-top: 3rem;
}

.pkgSec .title:hover:before {
  width: 510px;
}

ul.pkg-points {
  height: 200px;
  overflow: auto;
}

ul.pkg-points>li {
  font-size: 11px;
  line-height: normal;
  color: #000;
  font-weight: 400;
  border-bottom: solid 1px rgb(151 151 151 / 0.2);
  font-family: 'Poppins', sans-serif;
  position: relative;
  padding: 5px 0 5px 20px;
}

.pkgMid>span,
.pkgMid>span>a,
a.live-chat {
  font-size: 12px;
  font-weight: 500;
  color: #000000;
  padding-bottom: 5px;
  display: block;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

ul.pkg-points>li>i {
  color: #000000;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  align-items: center;
  display: flex;
}

ul.pkg-points>li.last {
  border: 0;
}

ul.pkg-list li.slick-slide:hover .pkgBox,
ul.pkg-list li.slick-slide:nth-child(3) .pkgBox {
  box-shadow: 0 6px 13px 6px rgb(69 69 69 / 17%);
  background-image: linear-gradient(to bottom, #ff822a, #ffc328);
  bottom: 34px;
}
.pkgBox-Head h4 {
  font-size: 20px;
  font-weight: bold;
  color: #000051;
  line-height: 30px;
  display: inline-block;
  vertical-align: middle;
  font-family: 'Poppins', sans-serif;
}

.pkgBox-Head h4>span {
  display: block;
  font-size: 13px;
  font-weight: 600;
}

ul.pkg-list li.slick-slide:hover .pkgMid>span,
ul.pkg-list li.slick-slide:hover .pkgMid>span>a,
ul.pkg-list li.slick-slide:hover .pkgMid>a.live-chat,
ul.pkg-list li.slick-slide:nth-child(3) .pkgMid>span,
ul.pkg-list li.slick-slide:nth-child(3) .pkgMid>span>a,
ul.pkg-list li.slick-slide:nth-child(3) .pkgMid>a.live-chat {
  font-size: 14px !important;
  color: #000000 !important;
}


.pkgBox a.pkg-btn {
  width: 100%;
  height: 44px;
  box-shadow: 0 12px 6px -8px rgb(0 0 0 / 34%);
  background-color: #f9fbff;
  display: block;
  line-height: 44px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  color: #000000;
  font-family: 'Poppins', sans-serif;
}

ul.pkg-list li.slick-slide:hover .pkg-btn,
ul.pkg-list li.slick-slide:nth-child(3) .pkg-btn {
  background: #000000;
  color: #fff;
}

a.chat>span {
  vertical-align: bottom;
  padding-right: 5px;
display: inline-block;
}

ul.pkg-list>li:hover ul.pkg-points>li,
ul.pkg-list>li:nth-child(3) ul.pkg-points>li {
  color: #000;
}
.pkgSec  .slick-dots li.slick-active button{
background: transparent;
}

.pkgSec .slick-dots li button:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    background: #ff822a;
    width: 16px;
    border-radius: 50%;
    height: 16px;
    font-family: "slick";
    font-size: 12px;
    line-height: 20px;
    text-align: center;
    color: #333333;
    opacity: 0.25;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.pkgSec .slick-dots li.slick-active button:before {
    color: #ff822a;
    opacity: 1;
}

.pkgBox  a.chat {
  font-size: 12px;
  font-weight: 500;
  color: #6d6e7a;
  text-align: center;
  display: block;
}

/* End Pricing */
.cta-2 {
  background-image: url(../images/cta2-bg.jpg);
  position: relative;
  display: flex;
  padding: 40px 0;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.cta-2:before {
  content: "";
  position: absolute;
  background-image: url(../images/cta2-element-1.png);
  width: 97px;
  height: 57px;
  background-repeat: no-repeat;
  bottom: -1px;
  left: 40%;
}

.cta-2:after {
  content: "";
  position: absolute;
  background-image: url(../images/cta2-element-2.png);
  width: 213px;
  height: 123px;
  background-repeat: no-repeat;
  right: 35%;
  bottom: -50px;
  animation: shadow 1.6s linear infinite;
}

.cta-2 .container {
  position: relative;
}

.cta-2 .container:before {
  content: "";
  position: absolute;
  background-image: url(../images/dots-element.png);
  width: 399px;
  height: 33px;
  background-repeat: no-repeat;
  bottom: 70px;
  right: -70px;
}

.cta-2 .container:after {
  content: "";
  position: absolute;
  background-image: url(../images/cta-element-2.png);
  width: 55px;
  height: 55px;
  background-repeat: no-repeat;
  right: 5%;
  bottom: -50px;
  transition: 4s all;
  animation: animIn 5s ease 1s infinite alternate;
  transform: scale(0.8);
}

.cta-2 h6 {
  font-size: 20px;
  color: #fff;
  font-family: 'Poppins';
  font-weight: 400;
}

.cta-2 h3 {
  font-size: 45px;
  line-height: 45px;
  font-weight: 800;
  color: #fff;
}

.cta-2 h3 span {
  display: block;
  font-size: 30px;
}

.cta-2 p {
  font-size: 16px;
  color: #fff;
  line-height: 30px;
  width: 80%;
  margin: 15px 0 25px;
}

.cta-2 ul.btn-wrap {}

.cta-2 figure {}

.cta-2 figure img {}

@keyframes shadow {
  0% {
    filter: unset;
  }

  50% {
    filter: drop-shadow(2px 4px 6px #b5b5b5);
  }

  100% {
    filter: unset;
  }
}

.process-sec {
  padding: 80px 0 0;
}

.process-sec h6 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  font-family: 'Poppins';
}

.process-sec h3 {
  color: #333333;
  font-size: 45px;
  font-weight: 800;
  margin-bottom: 60px;
}

.process-sec .img-wrap {
  display: flex;
  align-items: center;
}

.process-sec .img-wrap img {
  margin-right: 30px;
}

.process-sec .img-wrap h4 {
  font-size: 26px;
  font-weight: 700;
  font-family: 'Poppins';
}

.process-sec p {
  color: #999999;
  font-size: 16px;
  line-height: 30px;
  font-weight: 400;
  width: 70%;
  padding-top: 20px;
  margin-bottom: 50px;
}

.footer-form {
  background-image: url(../images/footer-bg.jpg);
  position: relative;
  padding: 60px 0;
  margin-top: 120px;
}

.footer-form:before {
  content: "";
  position: absolute;
  background-image: url(../images/cta2-element-1.png);
  width: 97px;
  height: 57px;
  background-repeat: no-repeat;
  bottom: -1px;
  left: 150px;
}

.footer-form h3 {
  font-size: 45px;
  color: #fff;
  font-weight: 800;
}

.footer-form h6 {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  width: 70%;
  padding: 20px 0;
}

.footer-form p {
  color: #fff;
  font-size: 16px;
  line-height: 30px;
  font-weight: 400;
  width: 70%;
}

.footer-form ul.btn-wrap {
  margin-top: 30px;
}

.footer-form .form-wrap {
  width: 85%;
  margin: auto;
  margin-top: -140px;
}

.footer-form .form-wrap .banner-head {
  background-image: -moz-linear-gradient(0deg, rgb(189, 71, 175) 1%, rgb(29, 23, 107) 100%);
  background-image: -webkit-linear-gradient(0deg, rgb(189, 71, 175) 1%, rgb(29, 23, 107) 100%);
  background-image: -ms-linear-gradient(0deg, rgb(189, 71, 175) 1%, rgb(29, 23, 107) 100%);
  text-align: center;
  border-radius: 25px 25px 0 0;
  padding: 15px 0;
}

.footer-form .form-wrap .banner-head h2 {
  font-size: 40px;
  color: #fff;
  font-weight: 700;
}

.footer-form .form-wrap form {
  background: #fff;
  border-radius: 0 0 25px 25px;
  padding: 30px 30px 0;
}

.footer-form .form-wrap form ul.form-feild {}

.footer-form .form-wrap form ul.form-feild li {
  position: relative;
  margin-bottom: 25px;
}

.footer-form .form-wrap form ul.form-feild li i {
  position: absolute;
  top: 15px;
  color: #c4c4c4;
  left: 15px;
}

.footer-form .form-wrap form ul.form-feild li input,
.footer-form .form-wrap form ul.form-feild li textarea {
  width: 100%;
  border-radius: 7px;
  background-color: rgb(244 244 244);
  height: 50px;
  border: 0;
  padding-left: 40px;
}

.footer-form .form-wrap form ul.form-feild li span {
  text-align: center;
  border-radius: 50%;
  background-image: -moz-linear-gradient(0deg, rgb(29, 23, 107) 0%, rgb(189, 71, 175) 99%);
  background-image: -webkit-linear-gradient(0deg, rgb(29, 23, 107) 0%, rgb(189, 71, 175) 99%);
  background-image: -ms-linear-gradient(0deg, rgb(29, 23, 107) 0%, rgb(189, 71, 175) 99%);
  display: flex;
  width: 130px;
  height: 65px;
  border-radius: 120px 120px 0 0;
  position: relative;
  align-items: center;
  justify-content: center;
}

.footer-form .form-wrap form ul.form-feild li span input {
  font-size: 0;
  background: transparent;
  height: auto;
  padding: 0;
}

.footer-form .form-wrap form ul.form-feild li span i.fa-paper-plane {
  position: relative;
  left: 0;
  top: 0;
  color: #fff;
  font-weight: 700;
  font-size: 30px;
  transform: rotate(45deg);
}

.footer-form .form-wrap form ul.form-feild li:nth-child(1),
.footer-form .form-wrap form ul.form-feild li:nth-child(2) {
  display: inline-block;
  width: 48%;
}

.footer-form .form-wrap form ul.form-feild li:last-child {
  display: flex;
  justify-content: center;
  margin-bottom: 0;
}

.footer-form .form-wrap form ul.form-feild li textarea {
  height: 100px;
  resize: none;
  padding-top: 10px;
}

.footer-form .form-wrap form ul.form-feild li input:hover,
.footer-form .form-wrap form ul.form-feild li textarea:hover,
.footer-form .form-wrap form ul.form-feild li input:focus,
.footer-form .form-wrap form ul.form-feild li textarea:focus,
.footer-form .form-wrap form ul.form-feild li input:active,
.footer-form .form-wrap form ul.form-feild li textarea:active,
.footer-form .form-wrap form ul.form-feild li input:focus-visible,
.footer-form .form-wrap form ul.form-feild li textarea:focus-visible {
  background: transparent;
  border: 3px dashed rgb(244 244 244);
  outline: none;
}

.footer-form .form-wrap form ul.form-feild li span button {
  font-size: 0;
  background: transparent;
  border: 0;
}

.footer-form .form-wrap form ul.form-feild li:hover span {
  background-image: -webkit-linear-gradient(181deg, rgb(29, 23, 107) 0%, rgb(189, 71, 175) 99%);
}

footer {
  text-align: center;
  padding: 20px 0;
}

footer p {
  color: #000;
  font-size: 16px;
  line-height: 28px;
}

/* Start Services */

.service-sec {
  background: #f4f4f4;
  padding: 60px 0;
}

.service-sec .services-top h6 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  font-family: 'Poppins';
}

.service-sec .services-top h3 {
  font-size: 45px;
  color: #333333;
  font-weight: 800;
  line-height: 50px;
}

.service-sec .services-top p {
  font-size: 16px;
  color: #999999;
  line-height: 30px;
  width: 60%;
  margin: auto;
  font-weight: 400;
  padding-top: 15px;
}

.service-sec .services-content {
  padding-top: 50px;
}

.service-sec .services-content ul.ser-wrap {
  position: relative;
  z-index: 1;
}

.service-sec .services-content ul.ser-wrap::before {
  content: "";
  width: 500px;
  height: 500px;
  border: 2px dashed #dbd7e0;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: rotate-forward 20s linear infinite;
  z-index: -1;
}

@keyframes rotate-forward {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.service-sec .services-content ul.ser-wrap::after {
  content: "";
  width: 300px;
  height: 300px;
  border: 2px dashed #dbd7e0;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  animation: rotate-reverse 20s linear infinite;
}

@keyframes rotate-reverse {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}

.service-sec .services-content ul.ser-wrap .services-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  text-align: center;
  z-index: 1;
}

.service-sec .services-content ul.ser-wrap .services-img img {
  width: 70%;
}

.service-sec .services-content ul.ser-wrap li {
  width: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 1;
}

.service-sec .services-content ul.ser-wrap li:nth-child(1):before {
  content: "";
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background-color: transparent;
  border-color: #dbd7e0;
  border-style: dashed;
  position: absolute;
  top: 190px;
  left: 50%;
  transform: translate(-50%, 0%);
}

.service-sec .services-content ul.ser-wrap {
  position: relative;
  padding-bottom: 720px;
  /* height: 80vh; */
}

.service-sec .services-content ul.ser-wrap li .img-wrap {
  width: 20%;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 18px;
}

.service-sec .services-content ul.ser-wrap li .content-wrap {
  width: 80%;
  padding: 1rem;
}

.service-sec .services-content ul.ser-wrap li .content-wrap h4 {
  font-size: 20px;
  font-weight: bold;
}

.service-sec .services-content ul.ser-wrap li .content-wrap p {
  font-size: 12px;
  font-weight: 400;
  color: #999999;
  padding: 5px 0 0 0;
}

.service-sec .services-content ul.ser-wrap li .img-wrap img {
  width: 55%;
  height: 55%;
  object-fit: contain;
}

.service-sec .services-content ul.ser-wrap li:nth-child(8) .content-wrap,
.service-sec .services-content ul.ser-wrap li:nth-child(9) .content-wrap,
.service-sec .services-content ul.ser-wrap li:nth-child(7) .content-wrap {
  text-align: end;
}

.service-sec .services-content ul.ser-wrap li:nth-child(2) {
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  flex-direction: column;
  text-align: center;
}

.service-sec .services-content ul.ser-wrap li:nth-child(3) {
  top: 190px;
  right: 110px;
  transform: translateY(-50%);
}

.service-sec .services-content ul.ser-wrap li:nth-child(4) {
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
}


.service-sec .services-content ul.ser-wrap li:nth-child(5) {
  bottom: 90px;
  right: 110px;
  transform: translateY(-50%);
}

.service-sec .services-content ul.ser-wrap li:nth-child(6) {
  left: 50%;
  bottom: -30px;
  transform: translateX(-50%);
  flex-direction: column;
  text-align: center;
}

.service-sec .services-content ul.ser-wrap li:nth-child(7) {
  left: 110px;
  bottom: 90px;
  transform: translateY(-50%);
  flex-direction: row-reverse;
}

.service-sec .services-content ul.ser-wrap li:nth-child(8) {
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  flex-direction: row-reverse;
}

.service-sec .services-content ul.ser-wrap li:nth-child(9) {
  top: 190px;
  left: 110px;
  transform: translateY(-50%);
  flex-direction: row-reverse;
}


.service-sec .services-content ul.ser-wrap li:nth-child(2) .img-wrap {
  background: #a7edff;
}

.service-sec .services-content ul.ser-wrap li:nth-child(3) .img-wrap {
  background: #77ffc1;
}

.service-sec .services-content ul.ser-wrap li:nth-child(4) .img-wrap {
  background: #a1c4ff;
}

.service-sec .services-content ul.ser-wrap li:nth-child(5) .img-wrap {
  background: #ffe4e4;
}

.service-sec .services-content ul.ser-wrap li:nth-child(6) .img-wrap {
  background: #c8b9ff;
}


.service-sec .services-content ul.ser-wrap li:nth-child(7) .img-wrap {
  background: #ffe5b9;
}

.service-sec .services-content ul.ser-wrap li:nth-child(8) .img-wrap {
  background: #d1fcff;
}

.service-sec .services-content ul.ser-wrap li:nth-child(9) .img-wrap {
  background: #ffe9f5;
}

/* End Services */