@import url("https://fonts.googleapis.com/css2?family=Lato&family=Montserrat:wght@200;400&display=swap");
* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  scroll-behavior: smooth;
}

/*------------------------

Variables 

-------------------------*/
/*----------------------

Global Css  

------------------------*/
body {
  font-family: "Lato", sans-serif;
}

.main-head {
  font-weight: 900;
  font-family: "Montserrat", sans-serif;
  font-size: 60px;
}

@media (max-width: 900px) {
  .main-head {
    font-weight: 900;
    font-family: "Montserrat", sans-serif;
    font-size: 45px;
  }
}

@media (max-width: 700px) {
  .main-head {
    font-weight: 900;
    font-family: "Montserrat", sans-serif;
    font-size: 40px;
  }
}

@media (max-width: 580px) {
  .main-head {
    font-weight: 900;
    font-family: "Montserrat", sans-serif;
    font-size: 29px;
  }
}

.main-para {
  font-weight: 200;
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
}

@media (max-width: 1500px) {
  .main-para {
    font-weight: 200;
    font-family: "Montserrat", sans-serif;
    font-size: 22px;
  }
}

@media (max-width: 1200px) {
  .main-para {
    font-weight: 200;
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
  }
}

.sub-para {
  font-weight: 200;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
}

@media (max-width: 1500px) {
  .sub-para {
    font-weight: 200;
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
  }
}

/*---------------------------

Header Css  

-----------------------------*/
header .data-panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

header .data-panel a {
  text-decoration: none;
  color: black;
  margin: 5px 10px;
}

header .data-panel a:hover {
  color: #8f00ff;
}

header .data-panel a span {
  font-weight: bold;
  margin: auto 1px;
}

header .logo {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 10px;
  margin: auto auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

header .logo img {
  height: 110px;
}

@media (max-width: 570px) {
  header .data-panel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  header .data-panel a {
    text-decoration: none;
    color: black;
    margin: 5px 5px;
    font-size: 12px;
  }
  header .data-panel a:hover {
    color: #8f00ff;
  }
  header .logo {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 10px;
    margin: 15px auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  header .logo img {
    height: 75px;
  }
}

/*----------------------

NavBar Css 

-----------------------*/
nav {
  background-color: white;
  position: -webkit-sticky;
  position: sticky;
  top: 0px;
  left: 0px;
  width: 100%;
  border-bottom: 0.5px solid rgba(192, 192, 192, 0.644);
}

nav .nav-panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
  padding: 10px;
}

nav .nav-panel li {
  margin: 15px 50px;
}

nav .nav-panel li a {
  text-decoration: none;
  color: black;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
}

nav .nav-panel li a:hover {
  color: #fdb500;
}

nav .nav-panel li .active {
  color: #fdb500;
}

@media (max-width: 650px) {
  nav {
    background-color: white;
    position: -webkit-sticky;
    position: sticky;
    top: 0px;
    left: 0px;
    width: 100%;
    border: 0.5px solid rgba(192, 192, 192, 0.644);
  }
  nav .nav-panel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    list-style: none;
    padding: 10px;
  }
  nav .nav-panel li {
    margin: 15px 23px;
  }
  nav .nav-panel li a {
    text-decoration: none;
    color: black;
    font-weight: bold;
    font-size: 13px;
  }
  nav .nav-panel li a:hover {
    color: #fdb500;
  }
  nav .nav-panel li .active {
    color: #fdb500;
  }
}

@media (max-width: 400px) {
  nav {
    background-color: white;
    position: -webkit-sticky;
    position: sticky;
    top: 0px;
    left: 0px;
    width: 100%;
    border: 0.5px solid rgba(192, 192, 192, 0.644);
  }
  nav .nav-panel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    list-style: none;
    padding: 10px;
  }
  nav .nav-panel li {
    margin: 15px 13px;
  }
  nav .nav-panel li a {
    text-decoration: none;
    color: black;
    font-weight: bold;
    font-size: 13px;
  }
  nav .nav-panel li a:hover {
    color: #fdb500;
  }
  nav .nav-panel li .active {
    color: #fdb500;
  }
}

/*----------------------

Hero Banner Css

-----------------------*/
.hero {
  background: -webkit-gradient(linear, left top, right bottom, color-stop(5%, #8f00ff), color-stop(80%, #1ea5fc));
  background: linear-gradient(to bottom right, #8f00ff 5%, #1ea5fc 80%);
  background: -o-linear-gradient(to bottom right, #8f00ff 5%, #1ea5fc 80%);
  padding: 10px;
}

.hero .hero-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 60%;
  margin: 50px auto;
  text-align: center;
  color: white;
}

.hero .hero-text a {
  background-color: #e78300;
  padding: 15px 20px;
  border-radius: 50px;
  color: white;
  text-decoration: none;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.hero .hero-text a:hover {
  background-color: transparent;
  padding: 14px 25px;
  border: .5px solid white;
}

.hero .about-hero-btn {
  width: 70%;
}

/*----------------------

Hero Second Banner Css

-----------------------*/
.hero-second {
  background: -webkit-gradient(linear, left top, right bottom, color-stop(5%, #1ea5fc), color-stop(80%, #8f00ff));
  background: linear-gradient(to bottom right, #1ea5fc 5%, #8f00ff 80%);
  background: -o-linear-gradient(to bottom right, #1ea5fc 5%, #8f00ff 80%);
  padding: 10px;
}

.hero-second .hero-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 60%;
  margin: 50px auto;
  text-align: center;
  color: white;
}

.hero-second .hero-text a {
  background-color: #e78300;
  padding: 15px 20px;
  border-radius: 50px;
  color: white;
  text-decoration: none;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.hero-second .hero-text a:hover {
  background-color: transparent;
  padding: 14px 25px;
  border: .5px solid white;
}

/*---------------------

BANNER CARD BOX CSS 

----------------------*/
.banner-card-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 40px auto;
}

.banner-card-box .banner-card {
  height: 35em;
  width: 18%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #b8b8b8;
  border-radius: 10px;
  padding: 40px 20px;
  margin: 15px;
}

.banner-card-box .banner-card .card-img img {
  height: 80px;
}

.banner-card-box .banner-card .main-para {
  font-weight: 400;
  color: #686868;
  text-align: center;
  margin: 5px auto;
  font-size: 25px;
}

.banner-card-box .banner-card .sub-para {
  color: #131313;
  text-align: center;
  margin: 5px auto;
  font-size: 18px;
}

.banner-card-box .banner-card:hover {
  border: 2px solid blue;
}

@media (max-width: 1500px) {
  .banner-card-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 40px auto;
  }
  .banner-card-box .banner-card {
    height: 35em;
    width: 22%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border: 1px solid #b8b8b8;
    border-radius: 10px;
    padding: 40px 20px;
    margin: 15px;
  }
  .banner-card-box .banner-card .card-img img {
    height: 80px;
  }
  .banner-card-box .banner-card .main-para {
    font-weight: 400;
    color: #686868;
    text-align: center;
    margin: 5px auto;
    font-size: 22px;
  }
  .banner-card-box .banner-card .sub-para {
    color: #131313;
    text-align: center;
    margin: 5px auto;
    font-size: 18px;
  }
  .banner-card-box .banner-card:hover {
    border: 2px solid blue;
  }
}

@media (max-width: 1200px) {
  .banner-card-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 40px auto;
  }
  .banner-card-box .banner-card {
    height: 30em;
    width: 30%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border: 1px solid #b8b8b8;
    border-radius: 10px;
    padding: 40px 10px;
    margin: 15px;
  }
  .banner-card-box .banner-card .card-img img {
    height: 80px;
  }
  .banner-card-box .banner-card .main-para {
    font-weight: 400;
    color: #000;
    text-align: center;
    margin: 5px auto;
    font-size: 18px;
  }
  .banner-card-box .banner-card .sub-para {
    color: #131313;
    text-align: center;
    margin: 5px auto;
    font-size: 15px;
  }
  .banner-card-box .banner-card:hover {
    border: 2px solid blue;
  }
}

@media (max-width: 700px) {
  .banner-card-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 40px auto;
  }
  .banner-card-box .banner-card {
    height: 30em;
    width: 45%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border: 1px solid #b8b8b8;
    border-radius: 10px;
    padding: 40px 10px;
    margin: 15px;
  }
  .banner-card-box .banner-card .card-img img {
    height: 80px;
  }
  .banner-card-box .banner-card .main-para {
    font-weight: 400;
    color: #000;
    text-align: center;
    margin: 5px auto;
    font-size: 18px;
  }
  .banner-card-box .banner-card .sub-para {
    color: #131313;
    text-align: center;
    margin: 5px auto;
    font-size: 15px;
  }
  .banner-card-box .banner-card:hover {
    border: 2px solid blue;
  }
}

@media (max-width: 600px) {
  .banner-card-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 40px auto;
  }
  .banner-card-box .banner-card {
    height: 26em;
    width: 88%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border: 1px solid #b8b8b8;
    border-radius: 10px;
    padding: 40px 10px;
    margin: 15px;
  }
  .banner-card-box .banner-card .card-img img {
    height: 80px;
  }
  .banner-card-box .banner-card .main-para {
    font-weight: 400;
    color: #000;
    text-align: center;
    margin: 5px auto;
    font-size: 18px;
  }
  .banner-card-box .banner-card .sub-para {
    color: #131313;
    text-align: center;
    margin: 5px auto;
    font-size: 15px;
  }
  .banner-card-box .banner-card:hover {
    border: 2px solid blue;
  }
}

/*------------------------

Services

-------------------------*/
.services {
  padding: 20px;
  background: -webkit-gradient(linear, left top, right bottom, color-stop(5%, #8f00ff), color-stop(80%, #1ea5fc));
  background: linear-gradient(to bottom right, #8f00ff 5%, #1ea5fc 80%);
  background: -o-linear-gradient(to bottom right, #8f00ff 5%, #1ea5fc 80%);
}

.services .main-head {
  text-align: center;
  color: white;
}

.services .service-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.services .service-box .service-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 16em;
  width: 32%;
  margin: 15px;
  padding: 15px;
  border: 1px solid #b8b8b8;
  border-radius: 10px;
}

.services .service-box .service-item .item-img img {
  height: 80px;
}

.services .service-box .service-item .main-para {
  font-weight: 400;
  color: white;
  text-align: center;
  margin: 5px auto;
}

.services .service-box .service-item .sub-para {
  color: white;
  text-align: center;
  margin: 5px auto;
  font-size: 18px;
}

.services .service-btn {
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 10px auto;
}

.services .service-btn a {
  background-color: #e78300;
  padding: 15px 20px;
  border-radius: 50px;
  color: white;
  text-decoration: none;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.services .service-btn a:hover {
  background-color: transparent;
  padding: 14px 25px;
  border: .5px solid white;
}

@media (max-width: 980px) {
  .services .main-head {
    text-align: center;
    color: white;
  }
  .services .service-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .services .service-box .service-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 25em;
    width: 44%;
    margin: 15px;
    padding: 15px;
    border: 1px solid #b8b8b8;
    border-radius: 10px;
  }
  .services .service-box .service-item .item-img img {
    height: 80px;
  }
  .services .service-box .service-item .main-para {
    font-weight: 400;
    color: white;
    text-align: center;
    margin: 5px auto;
  }
  .services .service-box .service-item .sub-para {
    color: white;
    text-align: center;
    margin: 5px auto;
    font-size: 18px;
  }
}

@media (max-width: 740px) {
  .services .main-head {
    text-align: center;
    color: white;
  }
  .services .service-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .services .service-box .service-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 24em;
    width: 70%;
    margin: 15px;
    padding: 15px;
    border: 1px solid #b8b8b8;
    border-radius: 10px;
  }
  .services .service-box .service-item .item-img img {
    height: 80px;
  }
  .services .service-box .service-item .main-para {
    font-weight: 400;
    color: white;
    text-align: center;
    margin: 5px auto;
  }
  .services .service-box .service-item .sub-para {
    color: white;
    text-align: center;
    margin: 5px auto;
    font-size: 18px;
  }
}

@media (max-width: 495px) {
  .services .main-head {
    text-align: center;
    color: white;
  }
  .services .service-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .services .service-box .service-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 35em;
    width: 90%;
    margin: 15px;
    padding: 15px;
    border: 1px solid #b8b8b8;
    border-radius: 10px;
  }
  .services .service-box .service-item .item-img img {
    height: 80px;
  }
  .services .service-box .service-item .main-para {
    font-weight: 400;
    color: white;
    text-align: center;
    margin: 5px auto;
  }
  .services .service-box .service-item .sub-para {
    color: white;
    text-align: center;
    margin: 5px auto;
    font-size: 18px;
  }
}

/*----------------------

Contact Banner Css

-----------------------*/
.contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: -webkit-gradient(linear, left top, right bottom, color-stop(5%, #8f00ff), color-stop(80%, #1ea5fc));
  background: linear-gradient(to bottom right, #8f00ff 5%, #1ea5fc 80%);
  background: -o-linear-gradient(to bottom right, #8f00ff 5%, #1ea5fc 80%);
  padding: 10px;
}

.contact .hero-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  width: 60%;
  margin: 50px auto;
  text-align: center;
  color: white;
  font-size: 40px;
}

.contact .sub-para {
  font-size: 15px;
  color: white;
  margin: 10px;
  width: 80%;
}

.contact .contact-form {
  width: 60%;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.contact .contact-form .contact-inp {
  width: 45%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 10px;
}

.contact .contact-form .contact-inp label {
  color: white;
}

.contact .contact-form .contact-inp .inp {
  width: 100%;
  resize: vertical;
  padding: 10px;
  margin: 10px auto;
}

.contact .contact-form .contact-inp textarea {
  min-height: 40px;
  height: 40px;
}

.contact .contact-form .contact-inp .contact-rad {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.contact .contact-form .contact-inp .contact-rad .rad-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 10px;
  #margin-right: 10px;
}

.contact .contact-form .contact-inp .contact-rad .rad-btn label {
  #margin: 0px 6px;
  margin-top:-5px;
  margin-left: 10px;
  #vertical-align: middle;
}

.contact .contact-form .contact-btn {
  height: 100px;
  margin: 20px;
}

.contact .contact-form .contact-btn button {
  background-color: #e78300;
  padding: 10px 25px;
  border: none;
  border-radius: 50px;
  color: white;
  text-decoration: none;
  -webkit-transition: all .5s;
  transition: all .5s;
  font-size: 20px;
}

.contact .contact-form .contact-btn button:hover {
  background-color: transparent;
  padding: 14px 30px;
  border: .5px solid white;
}

@media (max-width: 540px) {
  .contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background: -webkit-gradient(linear, left top, right bottom, color-stop(5%, #8f00ff), color-stop(80%, #1ea5fc));
    background: linear-gradient(to bottom right, #8f00ff 5%, #1ea5fc 80%);
    background: -o-linear-gradient(to bottom right, #8f00ff 5%, #1ea5fc 80%);
    padding: 10px;
  }
  .contact .hero-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    width: 100%;
    margin: 50px auto;
    text-align: center;
    color: white;
  }
  .contact .sub-para {
    font-size: 20px;
    color: white;
    margin: 10px 0px;
  }
  .contact .contact-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .contact .contact-form .contact-inp {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 10px;
  }
  .contact .contact-form .contact-inp label {
    color: white;
  }
  .contact .contact-form .contact-inp .inp {
    width: 100%;
    resize: vertical;
    padding: 10px;
    margin: 10px auto;
  }
  .contact .contact-form .contact-inp textarea {
    min-height: 40px;
    height: 40px;
  }
  .contact .contact-form .contact-inp .contact-rad {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .contact .contact-form .contact-inp .contact-rad .rad-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 10px;
  }
  .contact .contact-form .contact-inp .contact-rad .rad-btn label {
    margin: 0px 6px;
  }
  .contact .contact-form .contact-btn {
    height: 100px;
    margin: 20px;
  }
  .contact .contact-form .contact-btn button {
    background-color: #e78300;
    padding: 10px 25px;
    border: none;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    -webkit-transition: all .5s;
    transition: all .5s;
    font-size: 20px;
  }
  .contact .contact-form .contact-btn button:hover {
    background-color: transparent;
    padding: 14px 30px;
    border: .5px solid white;
  }
}

/*----------------------------------

About Paragraph in about.php 

-----------------------------------*/
.about-para {
  padding: 60px;
}

.about-para p {
  width: 65%;
  font-size: 18px;
  text-align: center;
  margin: 30px auto;
}

@media (max-width: 760px) {
  .about-para {
    padding: 60px;
  }
  .about-para p {
    width: 100%;
    font-size: 18px;
    text-align: center;
    margin: 30px auto;
  }
}

@media (max-width: 620px) {
  .about-para {
    padding: 15px;
  }
  .about-para p {
    width: 100%;
    font-size: 15px;
    text-align: center;
    margin: 50px auto 10px auto;
  }
}

/*----------------------------------

Service text banner in service.php 

-----------------------------------*/
.service-text-banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #dbdbdb;
  color: #383838;
  font-weight: bold;
  font-style: italic;
  padding: 40px;
}

.service-text-banner p {
  text-align: center;
}

.service-text-banner p a {
  text-decoration: none;
  color: #8f00ff;
}

/*------------------------------

Pricing Section CSS in service.php page

----------------------------------*/
.pricing {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 20px 0px;
  padding: 20px;
  background-color: #cc8affbb;
}

.pricing .main-head {
  text-align: center;
  color: white;
}

.pricing .price-box {
  width: 90%;
  margin: 20px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.pricing .price-box .pricing-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 20em;
  width: 23%;
  margin: 15px;
  padding: 10px;
  border: 1px solid white;
  border-radius: 10px;
}

.pricing .price-box .pricing-card .main-para {
  font-weight: bold;
  font-size: 20px;
  text-align: center;
  margin: 10px auto;
}

.pricing .price-box .pricing-card .sub-para {
  font-weight: bold;
  text-align: center;
  line-height: 28px;
  font-size: 15px;
}

.pricing .price-box .pricing-card a {
  background-color: blue;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  margin: 40px auto;
}

.pricing .price-box .pricing-card a:hover {
  background-color: #000091;
}

@media (max-width: 1250px) {
  .pricing {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 20px 0px;
    padding: 20px;
    background-color: #cc8affbb;
  }
  .pricing .main-head {
    text-align: center;
    color: white;
  }
  .pricing .price-box {
    margin: 20px auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .pricing .price-box .pricing-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 22em;
    width: 30%;
    margin: 15px;
    padding: 10px;
    border: 1px solid white;
    border-radius: 10px;
  }
  .pricing .price-box .pricing-card .main-para {
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    margin: 10px auto;
  }
  .pricing .price-box .pricing-card .sub-para {
    font-weight: bold;
    text-align: center;
    line-height: 28px;
    font-size: 13px;
  }
  .pricing .price-box .pricing-card a {
    background-color: blue;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    margin: 40px auto;
  }
  .pricing .price-box .pricing-card a:hover {
    background-color: #000091;
  }
}

@media (max-width: 950px) {
  .pricing {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 20px 0px;
    padding: 20px;
    background-color: #cc8affbb;
  }
  .pricing .main-head {
    text-align: center;
    color: white;
  }
  .pricing .price-box {
    margin: 20px auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .pricing .price-box .pricing-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 22em;
    width: 35%;
    margin: 15px;
    padding: 10px;
    border: 1px solid white;
    border-radius: 10px;
  }
  .pricing .price-box .pricing-card .main-para {
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    margin: 10px auto;
  }
  .pricing .price-box .pricing-card .sub-para {
    font-weight: bold;
    text-align: center;
    line-height: 28px;
    font-size: 13px;
  }
  .pricing .price-box .pricing-card a {
    background-color: blue;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    margin: 40px auto;
  }
  .pricing .price-box .pricing-card a:hover {
    background-color: #000091;
  }
}

@media (max-width: 780px) {
  .pricing {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 20px 0px;
    padding: 20px;
    background-color: #cc8affbb;
  }
  .pricing .main-head {
    text-align: center;
    color: white;
  }
  .pricing .price-box {
    margin: 20px auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .pricing .price-box .pricing-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 22em;
    width: 45%;
    margin: 15px;
    padding: 10px;
    border: 1px solid white;
    border-radius: 10px;
  }
  .pricing .price-box .pricing-card .main-para {
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    margin: 10px auto;
  }
  .pricing .price-box .pricing-card .sub-para {
    font-weight: bold;
    text-align: center;
    line-height: 28px;
    font-size: 13px;
  }
  .pricing .price-box .pricing-card a {
    background-color: blue;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    margin: 40px auto;
  }
  .pricing .price-box .pricing-card a:hover {
    background-color: #000091;
  }
}

@media (max-width: 640px) {
  .pricing {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 20px 0px;
    padding: 20px;
    background-color: #cc8affbb;
  }
  .pricing .main-head {
    text-align: center;
    color: white;
  }
  .pricing .price-box {
    margin: 20px auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .pricing .price-box .pricing-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 18em;
    width: 90%;
    margin: 15px;
    padding: 10px;
    border: 1px solid white;
    border-radius: 10px;
  }
  .pricing .price-box .pricing-card .main-para {
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    margin: 10px auto;
  }
  .pricing .price-box .pricing-card .sub-para {
    font-weight: bold;
    text-align: center;
    line-height: 28px;
    font-size: 13px;
  }
  .pricing .price-box .pricing-card a {
    background-color: blue;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    margin: 40px auto;
  }
  .pricing .price-box .pricing-card a:hover {
    background-color: #000091;
  }
}

/*----------------------------------

Frequently Asked Questions in service.php 

-----------------------------------*/
.FAQ {
  margin: 20px;
}

.FAQ .main-head {
  text-align: center;
  color: #1ea5fc;
}

.FAQ .question-box {
  width: 60%;
  margin: 40px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.FAQ .question-box .question-bar {
  width: 100%;
  padding: 15px 0px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.FAQ .question-box .question-bar .question {
  text-decoration: none;
  color: #1ea5fc;
  cursor: pointer;
}

.FAQ .question-box .question-bar .question .main-para {
  font-size: 20px;
  font-weight: bold;
}

.FAQ .question-box .question-bar .answer {
  display: none;
  margin: 15px 15px;
}

.FAQ .question-box hr {
  width: 100%;
  margin: 15px 0px;
  color: #e9e9e9;
}

/*----------------------------

Mail Validation CSS

-----------------------------*/
.validity-box {
  width: 90%;
  padding: 20px;
  margin: 50px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-shadow: 1px 1px 3px gray;
          box-shadow: 1px 1px 3px gray;
  border-radius: 10px;
}

.validity-box .validity-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.validity-box .main-head {
  text-align: center;
}

.validity-box .success {
  color: green;
}

.validity-box .danger {
  color: red;
}

.validity-box a {
  text-decoration: none;
  color: white;
  background-color: #8f00ff;
  padding: 10px;
  margin: 10px auto;
  border-radius: 5px;
}

/*-------------------------

footer Css 

--------------------------*/
footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

footer .social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer .social a {
  margin: 8px;
}

footer .social a i {
  padding: 10px;
  color: #949494;
  background-color: #e4e4e4;
}

footer .social a i:hover {
  color: #1ea5fc;
}

footer .social .goToTop {
  position: absolute;
  right: 10px;
  background-color: transparent;
}

footer .social .goToTop a {
  border: 1px solid #8f00ff;
  font-size: 20px;
  color: #8f00ff;
}

footer .social .goToTop a i {
  background-color: transparent;
  color: #8f00ff;
}

@media (max-width: 400px) {
  footer .social .goToTop {
    position: relative;
    right: 0px;
    background-color: transparent;
  }
  footer .social .goToTop a {
    border: 1px solid #8f00ff;
    font-size: 20px;
    color: #8f00ff;
  }
  footer .social .goToTop a i {
    background-color: transparent;
    color: #8f00ff;
  }
}

footer .foot-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  color: black;
}

footer .foot-nav a {
  color: black;
  margin: 5px;
  text-decoration: none;
}

footer .foot-nav a:hover {
  color: #8f00ff;
}

@media (max-width: 390px) {
  footer .foot-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: black;
  }
  footer .foot-nav a {
    color: black;
    margin: 5px;
    text-decoration: none;
    font-size: 12px;
  }
  footer .foot-nav a:hover {
    color: #8f00ff;
  }
}

footer hr {
  width: 60%;
  color: #ececec;
  margin: 10px;
}

footer .copyright {
  margin: 15px;
}

footer .copyright p {
  text-align: center;
}

footer .copyright a {
  text-decoration: none;
}

input, textarea {
  font-weight: 600;
  font-family: "Lato", sans-serif;
  letter-spacing: 1px;
}

input:focus, textarea:focus {
  outline: none;
}

/*----------------------

Imprint Css

-----------------------*/
.imprint {
  background: -webkit-gradient(linear, left top, right bottom, color-stop(5%, #b9e3fe), color-stop(80%, #1ea5fc));
  background: linear-gradient(to bottom right, #b9e3fe 5%, #1ea5fc 80%);
  background: -o-linear-gradient(to bottom right, #b9e3fe 5%, #1ea5fc 80%);
  padding: 10px;
}

.imprint .imprint-text {
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  text-align: left;
  color: black;
}

.imprint .imprint-text2 {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  text-align: left;
  color: black;
}

.imprint .about-imprint-btn {
  width: 70%;
}

/*----------------------

Hero Second Banner Css

-----------------------*/
.imprint-second {
  background: -webkit-gradient(linear, left top, right bottom, color-stop(5%, #1ea5fc), color-stop(80%, #8f00ff));
  background: linear-gradient(to bottom right, #1ea5fc 5%, #8f00ff 80%);
  background: -o-linear-gradient(to bottom right, #1ea5fc 5%, #8f00ff 80%);
  padding: 10px;
}

.imprint-second .imprint-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 60%;
  margin: 50px auto;
  text-align: center;
  color: white;
}

.imprint-second .imprint-text a {
  background-color: #e78300;
  padding: 15px 20px;
  border-radius: 50px;
  color: white;
  text-decoration: none;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.imprint-second .imprint-text a:hover {
  background-color: transparent;
  padding: 14px 25px;
  border: .5px solid white;
}

/*# sourceMappingURL=style.css.map */