/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
  font-family: "Nunito", sans-serif !important;
  font-size: 16px !important;
  overflow-x: hidden;
  font-weight: 300 !important;
}

body,
html {
  overflow-x: hidden;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: "";
  content: none;
}

q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* scroll bar style */
body::-webkit-scrollbar {
  width: 6px;
}

body::-webkit-scrollbar-track {
  background: #f1f1f1;
}

body::-webkit-scrollbar-thumb {
  background: #60bb46;
}

body::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.pd0 {
  padding: 0 !important;
}

.mr0 {
  margin: 0 !important;
}

.header {
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  z-index: 1;
  background: #e8e8e8;
  height: 70px;
  background: url("../images/backimg2.webp") top;
}

.header img {
  width: 200px;
  object-fit: contain;
  margin: 0 auto;
  display: block;
  padding: 15px 15px 10px 15px;
  box-shadow: -1px 2px 20px 0px #0000007a;
  border-radius: 0 0 10px 10px;
  background: #fff;
}

#home-carousel img {
  width: 100%;
  height: 100vh;
}

#home-carousel .carousel-control {
  background-image: none;
}

#home-carousel .carousel-control .glyphicon {
  color: #56bb45;
}

.sec-formwrap {
  margin-top: 70px;
  padding: 80px 0 40px;
  width: 100%;
  position: relative;
}

.sec-formwrap .testimonial {
  text-align: center;
  font-size: 36px;
}

.sec-formwrap .person {
  font-family: "Oswald", sans-serif;
  text-align: center;
  margin-top: 20px;
  font-size: 25px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #525252;
}

.sec-formwrap .sec-line {
  height: 2px;
  background: #9e9e9e;
  width: 40%;
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 40px;
}

.sec-formwrap .form-txt {
  font-weight: 700;
  text-align: center;
  font-size: 24px;
  line-height: 20px;
}

.sec-formwrap .quote {
  background: url(../images/quotation-marks.webp) no-repeat center;
  background-size: 140px;
  padding: 10px 0;
}

.btn-wrap {
  margin: 40px 0;
}

.btn-wrap a {
  text-align: center;
  display: block;
  background: linear-gradient(to right, #67c07f, #0fbba1, #00b3be, #00a7d1, #4698d3);
  color: #fff;
  font-size: 26px;
  position: relative;
  padding: 9px 0;
  border-radius: 10px;
  width: 400px;
  max-width: 100%;
  margin: 0 auto;
  text-decoration: none;
}

.btn-wrap a::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  border: 2px solid #49bd8c;
  border-radius: 10px;
  left: 5px;
  top: 5px;
  z-index: -1;
}

.btn-wrap .morehighlight {
  width: 100%;
  background: #1D7973;
  background: -webkit-linear-gradient(top left, #1D7973, #D3E932);
  background: -moz-linear-gradient(top left, #1D7973, #D3E932);
  background: linear-gradient(to bottom right, #1D7973, #D3E932);
}

.btn-wrap .morehighlight::after {
  border: 2px solid #64a342;
}

#pageloader {
  background: rgba(34, 34, 34, 0.9);
  display: none;
  height: 100%;
  position: fixed;
  width: 100%;
  z-index: 9999999;
  top: 0;
}

#pageloader .loading-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#pageloader .loading-wrap img {
  width: 100px;
  transform: rotateY(0deg);
  -webkit-animation: rotateAnimation 2.5s ease-in infinite;
  animation: rotateAnimation 2.5s ease-in infinite;
  transition: all 0.5s ease-in-out;
}

@-webkit-keyframes rotateAnimation {
  0% {
    transform: rotateY(0deg);
  }

  25% {
    transform: rotateY(90deg);
  }

  50% {
    transform: rotateY(180deg);
  }

  75% {
    transform: rotateY(270deg);
  }

  100% {
    transform: rotateY(360deg);
  }
}

@keyframes rotateAnimation {
  0% {
    transform: rotateY(0deg);
  }

  25% {
    transform: rotateY(90deg);
  }

  50% {
    transform: rotateY(180deg);
  }

  75% {
    transform: rotateY(270deg);
  }

  100% {
    transform: rotateY(360deg);
  }
}

/*--- Modal Css ---------*/
.modal {
  z-index: 99999;
  background: rgba(185, 185, 185, 0.6);
}

.modal .modal-content {
  background-color: #353535 !important;
  background: url(../images/backimg3.webp) top;
}

.modal .modal-content .modal-body {
  background-size: cover;
  padding-bottom: 30px;
}

.modal .modal-content .modal-body .close {
  position: absolute;
  right: 5px;
  top: 5px;
  color: #fff;
  opacity: 1;
  outline: none;
}

.modal .modal-content .modal-body .close span {
  height: 30px;
  width: 30px;
  display: block;
  font-size: 26px;
}

.modal .modal-content .modal-body h3 {
  color: #fff;
  font-size: 20px;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 3px;
  margin-top: -35px;
  margin-bottom: 10px;
  font-family: Oswald;
}

.modal .modal-content .modal-body p {
  color: #fff;
  text-align: center;
  font-size: 15px;
  margin-bottom: 20px;
}

.modal .modal-content .modal-body img {
  width: 80px;
  margin: 0 auto;
  display: block;
  position: relative;
  top: -55px;
}

.modal .modal-dialog {
  margin-top: 80px !important;
  z-index: 9999 !important;
}

/*---------Modal Form---------------- */
.modal-form input,
.modal-form select {
  height: 40px;
  border: 1px solid #ffffff;
  width: 100%;
  background: #fff;
  margin-bottom: 0;
  padding-left: 10px;
  border-radius: 0 7px 7px 0 !important;
  color: #222222;
  border-left: none;
  outline: none !important;
}

.modal-form input::placeholder,
.modal-form select::placeholder {
  color: #222222;
}

.modal-form .input-group-addon {
  background: #fff;
  color: #67c07f;
  border: 1px solid #ffffff;
  border-right: 0;
  border-radius: 7px 0 0 7px;
}

.modal-form .input-group-addon .form-ico {
  font-size: 19px !important;
}

.modal-form .form-group {
  height: 40px;
  margin-bottom: 23px;
  margin-top: 0;
}

.modal-form .form-group .form-control:focus {
  box-shadow: none !important;
}

.error {
  color: #f00;
  font-weight: 600;
  padding: 4px;
}

.popup-btn {
  color: #fff !important;
  border: none;
  font-size: 16px;
  font-weight: 600;
  display: block;
  margin: 0 auto;
  background: #3e3e3e;
}

.popup-btn:hover {
  background: #3e3e3e;
}

.popup-btn:focus {
  outline: none;
  background: #3e3e3e;
}

footer {
  background: url("../images/backimg.webp");
  padding: 40px 0;
}

footer img {
  width: 300px;
  margin: 0 auto;
  display: block;
  margin-bottom: 10px;
}

footer .adress {
  color: #ffffff;
}

footer .adress p {
  text-align: center;
  font-size: 16px;
  margin: 18px 0;
  line-height: 25px;
}

footer .adress p a {
  color: #ffffff !important;
}

footer .policy {
  text-align: center;
  color: #ffffff;
  line-height: 18px;
  font-size: 13px;
}

.ref-btn {
  color: #FFFFFF;
}

.ref-btn:hover, .ref-btn:focus {
  color: #FFFFFF;
}

.form-line {
  margin: 0 0 20px !important;
}

.captcha_img {
  width: 100% !important;
  top: 0 !important;
  margin-bottom: 20px !important;
}

.ref-icon {
  font-size: 34px;
  margin-left: 10px;
  color: #FFFFFF !important;
}

/*----------------------------- Responsive----------------------------------------------------------------- */
@media screen and (max-width: 767px) {
  .pdm0 {
    padding: 0 !important;
  }

  .header {
    height: 50px;
  }

  .header img {
    width: 150px;
    padding: 25px 15px 15px 15px;
  }

  .sec-formwrap {
    margin-top: 70px;
    padding: 60px 0 40px;
  }

  .sec-formwrap .testimonial {
    font-size: 27px;
  }

  .sec-formwrap .quote {
    background-size: 270px;
    padding: 50px 0;
  }

  .btn-wrap .morehighlight {
    font-size: 20px;
  }

  #home-carousel img {
    object-fit: contain;
  }
}

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