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

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

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
}

.clr-blu {
  color: #00B6FC;
}

.brk {
  display: table;
  width: 100%;
}

::-webkit-scrollbar-track {
  background-color: #F8F8F8;
}

::-webkit-scrollbar {
  width: 10px;
  height: 5px;
  background-color: #F8F8F8;
}

::-webkit-scrollbar-thumb {
  background-color: #F15A22;
}

.f-btn {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  padding: 15px 25px;
  background: #00B6FC;
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  border-radius: 2px;
}

.f-btn img {
  width: 15px;
  height: 15px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-left: 10px;
}

.f-btn:hover {
  color: #fff  !important;
  background: #F3AB3B;
  -webkit-box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.3);
          box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.3);
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}

.f-btn:hover:after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}

.f-btn:after {
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  content: "";
  background: #F15A22;
  position: absolute;
  z-index: -1;
  padding: 0.85em 0.75em;
  display: block;
  border-radius: 50%;
  left: -50%;
  right: -50%;
  top: -150%;
  bottom: -150%;
  line-height: 8.34em;
  -webkit-transform: scale(0, 0);
          transform: scale(0, 0);
}

.o-btn {
  background: #fff;
  border: 2px solid #000;
  color: #000;
  padding: 15px 25px;
  border-radius: 50px;
}

.o-btn img {
  width: 15px;
  height: 15px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-right: 10px;
  margin-left: 0;
}

.o-btn:after {
  background: #F15A22;
}

.o-btn:hover {
  color: #fff !important;
}

.o-btn:hover img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.footer-social-link {
  margin-top: 20px;
}

.footer-social-link li a {
  display: table;
  border: 1px solid #fff;
  width: 40px;
  height: 40px;
  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;
  margin-right: 15px;
  border-radius: 100%;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.footer-social-link li a img {
  width: 15px;
  height: 15px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.footer-social-link li a:hover {
  -webkit-box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.4);
          box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.4);
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  background: #F15A22;
  border-color: #F15A22;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.footer-social-link li:last-child a {
  margin-right: 0px;
}

.rm-btn {
  display: table;
  color: #000;
  font-weight: 600;
  font-family: "DM Sans", sans-serif;
  padding: 15px 0;
  border-bottom: 2px solid #000;
  font-size: 16px;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.rm-btn:hover {
  color: #F15A22;
  border-color: #F15A22;
  padding: 15px 30px;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.rm-btn:not(:first-of-type) {
  margin-left: 15px;
}

.rm-btn.button-arrow .arrow-icon {
  overflow: visible;
  margin-left: 3px;
  width: 8px;
}

.rm-btn.button-arrow .arrow-head {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: -webkit-transform 100ms ease-in-out;
  transition: -webkit-transform 100ms ease-in-out;
  transition: transform 100ms ease-in-out;
  transition: transform 100ms ease-in-out, -webkit-transform 100ms ease-in-out;
}

.rm-btn.button-arrow .arrow-body {
  opacity: 0;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transition: opacity 100ms ease-in-out, -webkit-transform 100ms ease-in-out;
  transition: opacity 100ms ease-in-out, -webkit-transform 100ms ease-in-out;
  transition: transform 100ms ease-in-out, opacity 100ms ease-in-out;
  transition: transform 100ms ease-in-out, opacity 100ms ease-in-out, -webkit-transform 100ms ease-in-out;
}

.rm-btn.button-arrow:hover .arrow-head {
  -webkit-transform: translateX(3px);
          transform: translateX(3px);
}

.rm-btn.button-arrow:hover .arrow-body {
  opacity: 1;
  -webkit-transform: scaleX(2);
          transform: scaleX(2);
}

.req-call-back {
  position: fixed;
  right: -62px;
  top: 50%;
  -webkit-transform: rotate(-90deg) !important;
          transform: rotate(-90deg) !important;
  z-index: 99;
  border-radius: 10px 10px 0 0;
  background: #FF5F5F;
  -webkit-box-shadow: -5px -5px 15px rgba(0, 0, 0, 0.3);
          box-shadow: -5px -5px 15px rgba(0, 0, 0, 0.3);
  font-size: 14px;
  z-index: 9;
  width: 175px;
  height: 50px;
  overflow: hidden;
}

.req-call-back span {
  position: absolute;
  left: 50%;
  color: #fff;
  -webkit-transition: top, 0.3s;
  transition: top, 0.3s;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  white-space: nowrap;
}

.req-call-back img {
  position: absolute;
  width: 25px;
  height: 25px;
  left: 45%;
  color: #FF5F5F;
  -webkit-transition: top, 0.3s;
  transition: top, 0.3s;
  top: 150%;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
  -webkit-transform: rotate(130deg) !important;
          transform: rotate(130deg) !important;
}

.req-call-back:hover span {
  top: -100%;
}

.req-call-back:hover img {
  top: 25%;
}

.cal-back-from {
  position: fixed;
  right: -500px;
  top: 0;
  background: #fff;
  width: 450px;
  height: 100%;
  z-index: 9999;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.cal-back-from .sub-head p {
  width: 100%;
  margin: 0;
}

.cal-back-from .ovrflow-scroll {
  overflow: auto;
  height: 100%;
  width: 100%;
}

.cal-back-from .cal-back-from-close {
  background: red;
  position: absolute;
  left: -50px;
  width: 50px;
  height: 50px;
  padding: 10px;
  top: 50px;
  border-radius: 10px 0 0 10px;
}

.cal-back-from .cal-back-from-close img {
  width: auto;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}

.cal-back-from .cal-back-input input[type=text], .cal-back-from .cal-back-input select, .cal-back-from .cal-back-input textarea {
  border: none !important;
  border-bottom: 1px solid #797979 !important;
  padding: 10px 0px !important;
  border-radius: 0 !important;
  width: 100%;
}

.cal-back-from .cal-back-input textarea {
  height: 100px !important;
}

.cal-back-from .cal-back-input .f-btn {
  width: 100%;
  border-radius: 5px;
}

.cal-back-from .cal-back-input .form-check label a {
  color: #FF5F5F;
}

.cal-back-from.cal-back-from-show {
  right: 0px;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.blk-oberlay {
  overflow: hidden;
  position: relative;
}

.blk-oberlay::after {
  content: "";
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  left: 0;
  top: 0;
}

.quick-call h5 {
  color: #fff;
}

.quick-call h5 span {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
}

.quick-call .circle {
  position: relative;
  -webkit-transform: translate(0%, 0%);
          transform: translate(0%, 0%);
  width: 50px;
  height: 50px;
  background-color: #fff;
  text-align: center;
  border-radius: 50%;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.quick-call .circle img {
  width: 25px;
  height: 25px;
  -o-object-fit: contain;
     object-fit: contain;
}

.quick-call .circle::after, .quick-call .circle::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  z-index: -1;
  -webkit-animation: grow 1.5s ease-in-out infinite;
          animation: grow 1.5s ease-in-out infinite;
}

.quick-call .circle::after {
  background: white;
}

.quick-call .circle::after::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  z-index: -1;
  -webkit-animation: grow 1.5s ease-in-out infinite;
          animation: grow 1.5s ease-in-out infinite;
}

.quick-call .circle::before {
  background: white;
  -webkit-animation-delay: -0.5s;
          animation-delay: -0.5s;
}

@-webkit-keyframes grow {
  0% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.8, 1.8);
            transform: scale(1.8, 1.8);
    opacity: 0;
  }
}

@keyframes grow {
  0% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.8, 1.8);
            transform: scale(1.8, 1.8);
    opacity: 0;
  }
}

.quick-call:hover h4 {
  color: #fff;
}

.quick-call:hover .circle {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.scl-top-btn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 50px;
  z-index: 99;
  border: none;
  outline: none;
  background: transparent;
  border: 2px solid #F15A22;
  cursor: pointer;
  border-radius: 30px 30px 20px 20px;
  padding: 5px 20px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.scl-top-btn img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}

.scl-top-btn:hover {
  bottom: 25px;
  -webkit-box-shadow: 5px 5px 15px #00000075;
          box-shadow: 5px 5px 15px #00000075;
  background-color: #F15A22;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.scl-top-btn:hover img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

h1 {
  font-size: 70px;
  color: #000;
  font-weight: 700;
  font-family: "DM Sans", sans-serif;
  margin: 0;
  line-height: 1;
}

h2 {
  font-size: 55px;
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: #000;
  font-weight: 600;
  line-height: 1;
}

h3 {
  font-size: 45px;
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: #000;
  font-weight: 700;
}

h4 {
  font-size: 35px;
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: #000;
  font-weight: 800;
}

h5 {
  font-size: 22px;
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: #000;
  font-weight: 600;
  letter-spacing: -0.2px;
}

h6 {
  font-size: 20px;
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: #000;
  font-weight: 600;
  letter-spacing: -0.2px;
}

a,
p,
li {
  font-size: 16px;
  margin: 0px;
  color: #000;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  letter-spacing: 0.7px;
}

img {
  max-width: 100%;
  width: 100%;
}

.padng-sec {
  padding: 100px 0;
}

input:focus,
textarea:focus,
select:focus,
a:focus,
button:focus {
  outline: none;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

a,
a:hover {
  text-decoration: none !important;
  color: inherit;
}

input[type=text],
input[type=email],
input[type=tel] {
  width: 100%;
  font-size: 16px;
  padding: 10px 0px;
  border: none;
  color: #fff;
  text-align: left;
  border-bottom: 1px solid #fff;
  height: auto;
  font-weight: 500;
  background: transparent;
  border-radius: 0px;
}

input[type=text]::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder,
input[type=tel]::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}

input[type=text]::-moz-placeholder,
input[type=email]::-moz-placeholder,
input[type=tel]::-moz-placeholder {
  /* Firefox 19+ */
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}

input[type=text]:-ms-input-placeholder,
input[type=email]:-ms-input-placeholder,
input[type=tel]:-ms-input-placeholder {
  /* IE 10+ */
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}

input[type=text]:-moz-placeholder,
input[type=email]:-moz-placeholder,
input[type=tel]:-moz-placeholder {
  /* Firefox 18- */
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}

select {
  padding: 20px;
  height: auto;
  font-size: 16px;
  border-radius: 5px;
  border: 1px solid #E0E0E0;
  width: 100%;
  background: transparent;
}

textarea {
  border: none;
  width: 100%;
  font-size: 16px;
  padding: 10px 0;
  color: #fff;
  height: 100px;
  border-bottom: 1px solid #fff;
  font-weight: 500;
  background: transparent;
  border-radius: 0px;
}

textarea::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}

textarea::-moz-placeholder {
  /* Firefox 19+ */
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}

textarea:-ms-input-placeholder {
  /* IE 10+ */
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}

textarea:-moz-placeholder {
  /* Firefox 18- */
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
}

.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.slick-slide {
  margin: 0 15px;
}

/* the parent */
.slick-list {
  margin: 0 -15px;
}

.slick-track {
  padding: 20px 0;
}

.slick-prev {
  right: 60px;
  left: unset;
}

.slick-prev:before {
  content: '\f177';
  font-family: "FontAwesome";
  font-size: 18px;
  color: #fff;
  opacity: 1;
}

.slick-next {
  right: 0px;
}

.slick-next:before {
  content: '\f178 ';
  font-family: "FontAwesome";
  font-size: 18px;
  color: #fff;
  opacity: 1;
}

.slick-prev,
.slick-next {
  top: -25px;
  background: #000;
  width: 50px;
  height: 50px;
  margin: 0;
  border-radius: 0px;
  display: table;
  background: #000;
  z-index: 1;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  background: #F15A22;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.slick-dots {
  bottom: -30px;
}

.slick-dots li button {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 12px;
  height: 12px;
}

.slick-dots li button:before {
  display: none;
}

.slick-dots li.slick-active button {
  background: #F15A22;
}

@-webkit-keyframes slideDown {
  from {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.accordion-container {
  position: relative;
  height: auto;
  margin: 20px 0 0 0;
}

.set {
  position: relative;
  width: 100%;
  height: auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 0;
}

.set > a {
  display: block;
  padding: 5px 0px;
  text-decoration: none;
  font-weight: 400;
  color: #fff;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.set > a i {
  margin-right: 10px;
}

.set > a.active {
  color: #4ABA61;
}

.content {
  display: none;
}

.content p {
  padding: 5px 10px;
  margin: 0;
}

@-webkit-keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
            transform: rotate(359deg);
  }
}

@keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
            transform: rotate(359deg);
  }
}

.remove-scrolling {
  height: 100vh;
  overflow: hidden;
}
/*# sourceMappingURL=theme.css.map */