:root {
  --color-green: #1aad8a;
  --color-pink: #ae2489;
  --sharp-green: #adc936;
  --light-gray: #f9f9f4;
  --color-purple: #ba01fe;
  --color-magenta: #eb0086;
}
::selection {
  color: var(--white);
  -webkit-text-fill-color: var(--white);
  background: var(--color-green);
}
body::-webkit-scrollbar {
  width: 0;
}
body::-webkit-scrollbar-track {
  background-color: var(--white);
}
body::-webkit-scrollbar-thumb {
  background-color: var(--dark-black);
}
body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  color: var(--dark-black);
}
.color-green {
  color: var(--color-green);
}
.color-pink {
  color: var(--color-pink);
}
.sharp-green {
  color: var(--sharp-green);
}
.color-purple {
  color: var(--color-purple);
}
img {
  max-width: 100%;
}
a {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
a:hover {
  text-decoration: none;
}
html,
body {
  overflow-x: hidden;
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .container {
    max-width: 1200px;
  }
}
@media (min-width: 1400.01px) and (max-width: 1600px) {
  .container {
    max-width: 1320px;
  }
}
@media (min-width: 1600.01px) {
  .container {
    max-width: 1530px;
  }
}
/*.........preloader........*/
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  pointer-events: none;
}
.preloader .preloader-before,
.preloader .preloader-after {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--dark-black);
}
.preloader .preloader-before {
  top: 0;
  height: 40%;
}
.preloader .preloader-after {
  bottom: 0;
  height: 60%;
  /*background: var(--dark-black) url('../images/loading-bg.webp') right bottom no-repeat;*/
  background-size: contain;
}
.preloader .preloader-block {
  position: absolute;
  top: 0;
  left: 0;
  right: auto;
  bottom: auto;
  width: 100%;
  height: 100%;
}
.preloader .preloader-block .title {
  position: absolute;
  left: 0;
  bottom: calc(50% + 16px);
  width: 100%;
  text-align: center;
  z-index: 2;
  font-size: 25px;
  text-transform: uppercase;
  letter-spacing: 8px;
  color: #fff;
}
.preloader .preloader-block .percent {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  font-weight: 700;
  letter-spacing: 8px;
  font-size: 24vw;
  color: rgba(54, 54, 53, 0.1);
  z-index: 1;
}
.preloader .preloader-block .loading {
  position: absolute;
  top: calc(50% + 16px);
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 2;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 8px;
  color: #fff;
  -webkit-animation: blink-animation 2.2s linear infinite;
}
.preloader .preloader-bar {
  position: absolute;
  z-index: 2;
  top: calc(50% - 1px);
  right: 0;
  width: 100%;
  height: 2px;
  background: var(--gray-light);
}
.preloader .preloader-bar .preloader-progress {
  position: absolute;
  top: 0;
  left: 0;
  right: auto;
  bottom: auto;
  height: 100%;
  width: 0;
  background: var(--primary-color);
}
.preloader .spinner-border {
  position: absolute;
  right: 30px;
  top: 30px;
  color: var(--primary-color);
  border-right-color: transparent;
  border-width: 3px;
}
/* scrollbar */
.custom-scrollbar {
  width: 17px;
  height: 50px;
  background: #d1d1d1;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999;
  user-select: none;
  transition: opacity 0.5s ease;
  -webkit-transition: opacity 0.5s ease;
  -moz-transition: opacity 0.5s ease;
  -ms-transition: opacity 0.5s ease;
  -o-transition: opacity 0.5s ease;
}
/*...........loader...........*/
.loader-container .loader3 {
  width: 50px;
  height: 50px;
  display: inline-block;
  padding: 0px;
  text-align: left;
  position: relative;
}
.loader-container .loader3 span {
  position: absolute;
  display: inline-block;
  width: 100px;
  height: 100px;
  border-radius: 100%;
  background: rgba(255, 255, 255, 1);
  -webkit-animation: loader3 1.5s linear infinite;
  animation: loader3 1.5s linear infinite;
  left: -25px;
  top: -25px;
}
.loader-container .loader3 span:last-child {
  animation-delay: -0.9s;
  -webkit-animation-delay: -0.9s;
}
@keyframes loader3 {
  0% {
    transform: scale(0, 0);
    opacity: 0.8;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}
@-webkit-keyframes loader3 {
  0% {
    -webkit-transform: scale(0, 0);
    opacity: 0.8;
  }
  100% {
    -webkit-transform: scale(1, 1);
    opacity: 0;
  }
}
.loader-container .spinner-border {
  position: fixed;
  right: 20px;
  top: 20px;
  color: var(--color-green);
  border-width: 2px;
}
.loader-container .loader3 {
  display: none;
}
.loader-container {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999999;
}
/*..........cursor........*/
.cursor-wrap {
  pointer-events: none;
}
/* ===========top-header========== */
.top-header {
  padding: 20px 0;
}
.top-header .container-fluid {
  padding: 0 40px;
}
.top-header .head-wrapper {
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  align-items: center;
}
.top-header .logo img {
  max-width: 180px;
}
.global-btn {
 display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 33px;
  background: var(--color-pink);
  color: #fff;
  border-radius: 50px;
  font-weight: 500;
  font-size: 18px;
}
.global-btn:hover {
  color: #fff;
}
.global-btn.outline-btn {
  background: transparent;
  border: 2px solid;
  color: #6f4e9f;
}
.global-btn svg {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.global-btn:hover svg {
  transform: rotate(45deg);
}
.global-btn.bg-green {
  background: var(--color-green);
}
.global-btn.bg-pink {
  background: var(--color-pink);
}
.global-btn.bg-sharp-green {
  background: var(--sharp-green);
}
.global-btn.bg-purple {
  background: var(--color-purple);
}
.global-btn.bg-magenta {
  background: var(--color-magenta);
}
.global-btn.top-right {
  position: absolute;
  right: 15px;
  top: 15px;
}
/* ===========banner-section========== */
.banner-section {
  padding: 50px 0;
}
.banner-section .container > .row {
  align-items: center;
}
.banner-section .container > .row > .col-md-7 {
  flex: 0 0 70%;
  max-width: 70%;
}
.banner-section .container > .row > .col-md-5 {
  flex: 0 0 30%;
  max-width: 30%;
}
.banner-section .content {
  padding-top: 20px;
}
.banner-section .content > .row {
  align-items: center;
}
.banner-section .content .title {
  font-size: 52px;
  font-weight: 700;
  margin: 0 0 40px;
}
.banner-section .content .hero-desc {
  font-size: 21px;
  color: #898989;
  margin: 0 0 45px;
  padding-right: 30px;
}
.banner-section .content .hero-img {
    margin-left: -40px;
}
.banner-section .content .features {
  margin: 0 0 80px;
}
.banner-section .features .icon {
  max-height: 50px;
  margin: 0 0 10px;
}
.banner-section .features .row > div:not(:first-child) .feature-box {
  max-width: 100px;
  margin: auto;
}
.banner-section .features .row > div:not(:last-child) {
  border-right: 1px solid #D7D7D7;
}
.banner-section .features .text {
  font-size: 18px;
  font-weight: 600;
}
.banner-section .trusted-by {
  display: flex;
  align-items: center;
  gap: 10px;
}
.banner-section .trusted-by .logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex: 1;
  max-width: 520px;
}
.banner-section .trusted-by .logos img {
  max-height: 35px;
}
.banner-section .trusted-by .text {
  font-size: 20px;
  color: #898989;
  margin-right: 15px;
}
.banner-section .form-wrapper {
  background: var(--light-gray);
  border-radius: 30px;
  padding: 40px;
}
.form-wrapper .form-title {
  margin: 0 0 20px;
  font-size: 28px;
}
.form-wrapper .form-control {
  height: auto;
  border: 0;
  padding: 15px 0;
  background: none;
  border-bottom: 1px solid #aaaaaa;
  border-radius: 0;
  font-weight: 500;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  color: #898989;
}
.form-wrapper select.form-control {
  background: transparent url("../images/icons/arrow-down.svg") right center no-repeat;
}
.form-wrapper .form-control::placeholder {
  color: #898989;
}
.form-wrapper .note {
  font-size: 20px;
  color: var(--color-pink);
  margin: 5px 0 0;
}
.form-wrapper .note .small-text {
  font-size: 16px;
}
.form-wrapper .info {
  margin: 15px 0 0;
}
.form-wrapper .submit-btn {
  margin: 30px 0 0;
}
.form-wrapper .submit-btn button {
  transition: all 0.5s ease;
}
.form-wrapper .submit-btn button:hover {
  background: var(--color-green);
}
.form-wrapper .submit-btn button .spinner-border {
  display: none; 
  border-width: 2px;
  width: 20px;
  height: 20px;
}
/* =============custom-website============= */
.custom-website {
  padding: 80px 0;
  background: #000000;
  color: #ffffff;
  font-size: 20px;
}
.custom-website p {
  color: #898989;
}
.global-heading {
  font-size: 62px;
  font-weight: 600;
  margin: 0 0 50px;
}
.custom-website .heading-wrap .content {
  font-size: 22px;
}
.global-heading.md {
  font-size: 67px;
}
.global-heading.lg {
  font-size: 75px;
}
.custom-website .heading-wrap {
  margin: 0 0 60px;
}
.custom-website .row {
  margin: 0 -50px;
}
.custom-website .row > div {
  padding: 0 50px;
}
.custom-website .service-box {
  display: flex;
  gap: 30px;
  margin: 0 0 60px;
}
.custom-website .service-box .icon {
  width: 140px;
  height: 140px;
  border-radius: 100%;
  background: #232323;
  text-align: center;
  line-height: 140px;
}
.custom-website .service-box .icon img {
  max-height: 80px;
}
.custom-website .service-box .content {
  flex: 1;
}
.custom-website .service-box .title {
  font-size: 32px;
  font-weight: 600;
  margin: 0 0 15px;
}
.custom-website .services-offered {
  background: #171717;
  border-radius: 65px;
  padding: 50px 70px;
  min-height: 500px;
  position: relative;
}
.custom-website .services-offered .global-btn {
  position: absolute;
  right: 50px;
  top: 50px;
}
.custom-website .services-offered .title {
  font-size: 48px;
  font-weight: 600;
  background: linear-gradient(to right, #1b45e3, #bd00ff);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
  margin: 0 0 15px;
}
.custom-website .services-offered .web .title {
  background: linear-gradient(to right, #ff4c20, #ff8f67);
}
.custom-website .services-offered .digital .title {
  background: linear-gradient(to right, #11998e, #38ef7d);
}
.custom-website .services-offered .brand .title {
  background: linear-gradient(to right, #f8c339, #ef2f79, #7328cc);
}
.custom-website .services-offered .mobile .title {
  background: linear-gradient(to right, #16c71d, #ff00b8);
}
.custom-website .services-offered .sa-type {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  margin: 0 0 25px;
  font-size: 17px;
  font-weight: 500;
}
.custom-website .services-offered .sa-type li {
  position: relative;
  display: inline-block;
  padding: 0 10px 0 0;
  margin: 0 10px 0 0;
}
.custom-website .services-offered .sa-type li::after {
  content: "";
  width: 4px;
  height: 4px;
  background: var(--white);
  position: absolute;
  right: -4px;
  top: 11px;
  border-radius: 100%;
}
.custom-website .services-offered .sa-type li:last-child:after {
  display: none;
}
.nav-button {
  display: flex;
  gap: 10px;
  margin: 20px 0 0;
}
.nav-button button {
  width: 70px;
  height: 70px;
  border-radius: 100%;
  border: 0;
  background: var(--color-green);
  text-align: center;
  transition: all 0.5s ease;
}
.nav-button button:hover {
  background: var(--color-magenta);
}
.nav-pink.nav-button button {
  background: var(--color-pink);
}
.nav-pink.nav-button button:hover {
  background: var(--color-green);
}
.services-offered .services-img .slick-slide img {
  max-height: 400px;
  margin: auto;
}
.custom-website .services-offered .global-heading {
  margin: 0 0 85px;
}
/* =============reviews-section============ */
.reviews-section {
  padding: 80px 0;
}
.reviews-section .g-rating {
  margin: 40px 0;
}
.reviews-section .g-rating .rating {
  font-size: 32px;
  color: #969696;
  font-weight: 600;
}
.reviews-section .g-rating .rating span {
  font-size: 48px;
  color: var(--color-green);
}
.reviews-section .g-rating .total {
  font-size: 20px;
  color: #9a9a9a;
}
.g-reviews .review-box {
  padding: 30px;
  border: 1px solid #353535;
  border-radius: 29px;
}
.reviews-section .g-reviews .item {
  padding: 0 15px;
}
.reviews-section .g-reviews .slick-slider {
  margin: 0 -15px;
}
.g-reviews .review-box .content {
  font-size: 18px;
  padding: 0 0 15px;
  min-height: 215px;
}
.g-reviews .review-box .name {
  font-size: 18px;
  font-weight: 700;
  margin: 15px 0 5px;
}
.slick-dots {
  list-style: none;
  margin: 35px 0 0;
  padding: 0;
  display: flex;
  justify-content: center;
}
.slick-dots li button {
  font-size: 0;
  width: 8px;
  height: 8px;
  border-radius: 10px;
  background: #d9d9d9;
  margin: 0 2px;
  border: 0;
  padding: 0;
  transition: all 0.5s ease;
}
.slick-dots li.slick-active button {
  background: var(--color-green);
  width: 22px;
}
/* ===========why-choose========== */
.why-choose {
  padding: 30px 0 80px;
}
.why-choose .global-heading {
  margin: 0 0 70px;
}
.why-choose .features-img img {
  border-radius: 50px;
}
.why-choose .features > .row {
  margin: 0 -30px;
  align-items: center;
}
.why-choose .features > .row > div {
  padding: 0 30px;
}
.why-choose .content {
  font-size: 19px;
}
.why-choose .content .title {
  font-size: 48px;
  font-weight: 600;
  margin: 0 0 30px;
}
/* ==============technology-section=========== */
.technology-section {
  padding: 80px 0 60px;
  background: var(--light-gray);
}
.dev-techbology .global-heading {
  margin: 0 0 70px;
}
.technology-section .tech-heading {
  font-size: 44px;
  font-weight: 600;
  margin: 0 0 50px;
}
.technology-section .tech-box {
  display: flex;
  gap: 30px;
  margin: 0 0 60px;
}
.technology-section .tech-box .icon {
  width: 140px;
  height: 140px;
  border-radius: 35px;
  background: #ffffff;
  text-align: center;
  line-height: 140px;
}
.technology-section .tech-box .icon img {
  max-height: 80px;
}
.technology-section .tech-box .content {
  flex: 1;
  font-size: 18px;
}
.technology-section .tech-box .title {
  font-size: 32px;
  font-weight: 600;
  margin: 0 0 15px;
}
.technology-section .dev-process .tech-box {
  align-items: center;
}
.technology-section .dev-process .tech-box .title {
  margin: 0;
}
/* ============project-section========== */
.project-section {
  padding: 80px 0;
}
.project-section .global-heading {
  margin: 0 0 30px;
}
.project-section .sub-heading {
  font-size: 22px;
  margin: 0 0 50px;
}
.project-section .project-img {
  margin: 0 0 30px;
}
.project-section .project-img img {
  border-radius: 50px;
}
/*===========technology-used===========*/
.technology-used {
  padding: 30px 0 80px;
}
.technology-used .tech-top .content {
  font-size: 22px;
}
.technology-used .tech-top .global-btn {
  margin: 25px 0 0;
}
.technology-used .tech-list {
  margin: 60px 0 0;
}
.tech-list .tech-box {
  background: var(--light-gray);
  border-radius: 35px;
  padding: 50px 20px;
  text-align: center;
}
.tech-list .tech-box img {
  max-height: 90px;
}
.tech-list .tech-box .tech-name {
  font-size: 28px;
  text-align: center;
  margin: 30px 0 0;
  text-transform: uppercase;
}
.tech-list .row {
  margin: 0 -10px;
}
.tech-list .row > div {
  padding: 0 10px;
  flex: 0 0 20%;
  max-width: 20%;
  margin: 0 0 20px;
}
/*============award-section==========*/
.award-section {
  padding: 20px 0 80px;
}
.award-gallery .row {
  margin: 0 -7px;
}
.award-gallery .row > div {
  padding: 0 7px;
  margin: 0 0 7px;
}
.award-gallery .award-img img {
  height: 470px;
  border-radius: 35px;
  object-fit: cover;
  width: 100%;
}
/* ============faq-section=========== */
.faq-section {
  padding: 80px 0;
  background: var(--light-gray);
}
.faq-section .card {
  border: 0;
  border-top: 1px solid #000000;
  border-radius: 0;
  background: none;
}
.faq-section .card:last-child {
  border-bottom: 1px solid #000000;
}
.faq-section .card-header {
  background: none;
  border: 0;
  padding: 0;
}
.faq-section .card-header a {
  font-size: 27px;
  padding: 23px 0;
  padding-right: 50px;
  color: #000000;
  display: block;
  font-weight: 500;
  position: relative;
}
.faq-section .card-body {
  padding: 10px 0 30px;
  font-size: 22px;
}
.faq-section .card .card-header a::before,
.faq-section .card .card-header a::after {
  content: "";
  width: 37px;
  height: 2px;
  background: var(--color-magenta);
  position: absolute;
  right: 0;
  top: 41px;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transform: rotate(0);
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -o-transform: rotate(0);
  opacity: 1;
}
.faq-section .card .card-header a::after {
  height: 37px;
  width: 2px;
  top: 24px;
  right: 17px;
}
.faq-section .card .card-header a.active::after {
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  opacity: 0;
}
.faq-section .contact-info {
  background: #ffffff;
  border-radius: 35px;
  padding: 55px;
  font-size: 44px;
  font-weight: 500;
  line-height: 1.3;
}
.faq-section .contact-info .team-lead {
  margin: 0 0 20px;
}
.faq-section .content {
  padding-right: 70px;
}
.team-btn.global-btn .icon {
  display: inline-block;
  width: 65px;
  height: 65px;
  background: #ffffff;
  border-radius: 100%;
  text-align: center;
  line-height: 65px;
}
.team-btn.global-btn {
  padding: 5px;
  padding-right: 40px;
  margin: 20px 0 0;
}
/* ============footer-section========== */
.footer-section {
  padding: 80px 0;
}
.footer-section .info {
  font-size: 20px;
  margin: 30px 0 60px;
}
.footer-section .social-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 10px;
}
.footer-section .social-links a {
  width: 56px;
  height: 56px;
  border-radius: 100%;
  background: #000000;
  line-height: 56px;
  text-align: center;
  display: inline-block;
  transition: all 0.5s ease;
}
.footer-section .social-links a:hover {
  background: var(--color-green);
}
.footer-section .social-links a svg {
  fill: #ffffff;
  width: 33px;
}
.footer-section .address-wrap {
  color: #7c7b7b;
  font-size: 20px;
}
.footer-section .address-wrap .address:not(:last-child) {
  margin: 0 0 60px;
}
.footer-section .address-wrap .country {
  font-size: 20px;
  text-transform: uppercase;
  color: #000000;
}
.line .word {
  display: inline-block;
}
.reveal-img {
  overflow: hidden;
}
.hover-btn {
  position: relative;
  overflow: hidden;
}
.hover-btn span,
.hover-btn svg,
.hover-btn path {
  transition: all 0.5s ease;
  position: relative;
  z-index: 1;
}
.hover-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--color-magenta);
  z-index: 0;
  opacity: 0;
  transform: translateX(-100%);
  transition: all 0.7s cubic-bezier(0.1, 0, 0.3, 1);
}
.hover-btn:hover::after {
  opacity: 1;
  transform: translateX(0);
  width: 100%;
}
.hover-btn:hover {
  color: #ffffff;
}
.hover-btn:hover svg,
.hover-btn:hover path {
  fill: #ffffff;
}
/* ============thanku-section============ */
.thanku-section {
  background: var(--light-gray);
  padding: 100px 0 150px;
  text-align: center;
  font-size: 22px;
}
.thanku-section .icon {
  max-width: 100px;
  margin: 0 auto 30px;
}
.thanku-section .title {
  font-size: 70px;
  font-weight: 700;
  margin: 0 0 30px;
}
.thanku-section h2 {
  font-size: 42px;
  margin: 0 0 25px;
}
.thanku-section .content {
  max-width: 760px;
  margin: auto;
}
/* ..............captcha............ */
.submit__generated {
  display: inline-block;
}
.submit__generated span {
  display: inline-block;
  width: 35px;
  height: 35px;
  vertical-align: center;
  line-height: 35px;
  font-weight: 500;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.9);
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid #ffffff;
  border-radius: 4px;
}
.submit__generated.valid:after,
.submit__generated.unvalid:after {
  font-size: 18px;
  margin-left: 10px;
}
.submit__generated.valid:after {
  content: "✓";
  color: #2ecc71;
}
.submit__generated.valid .submit__input {
  border: 1px solid #2ecc71;
  color: #2ecc71 !important;
}
.submit__generated.unvalid:after {
  content: "x";
  color: #e74c3c;
}
.submit__generated.unvalid .submit__input {
  border: 1px solid #e74c3c;
  color: #e74c3c;
}
.submit__generated .submit__input {
  position: relative;
  outline: 0;
  height: 35px;
  width: 35px;
  border-radius: 4px;
  border: 1px solid #42a0dd;
  color: #42a0dd;
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  top: -2px;
}
i.zmdi-refresh {
  margin: 4px 0 0px 5px;
  padding: 5px;
  font-size: 18px;
  cursor: pointer;
  transform-origin: center center;
  transition: transform 0.2s ease-out, color 0.2s ease-out;
  cursor: pointer;
}
i.zmdi-refresh:hover {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}
.submit__control .hide {
  display: none;
}
span.submit__error,
span.submit__error--empty {
  color: #e74c3c;
  font-size: 14px;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}
.form-wrapper .submit__control {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.form-wrapper .refresh-btn {
  margin-left: 10px;
  margin-top: -5px;
  transition: all 0.5s ease;
  box-shadow: none;
}
.form-wrapper .refresh-btn:hover {
  transform: rotate(45deg);
}
label.error {
  margin: 5px 0 0;
  color: red;
}
#formMsg {
    padding: 10px;
    border: 2px solid green;
    text-align: center;
}
#formMsg.hidden {
  display: none;
}
#formMsg.text-red {
  color: red;
  border-color: red;
}
.scroll-top-btn {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background: var(--color-green);
  position: fixed;
  right: 50px;
  bottom: 50px;
  z-index: 10;
  color: #ffffff;
  padding: 0;
  transform: scale(0);
  transition: all 0.5s ease;
}
.scroll-top-btn.show-btn {
  transform: scale(1);
}
.scroll-top-btn:hover {
  color: #ffffff;
}
.scroll-top-btn svg {
  width: 24px;
  height: auto;
}
.contact-buttons {
  position: fixed;
  left: 0;
  bottom: 0;
  display: none;
  width: 100%;
  z-index: 10;
}
.contact-buttons a {
  flex: 1;
  text-align: center;
  padding: 13px 0;
  background: var(--color-pink);
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
}
.contact-buttons a.get-quote-btn {
  background: var(--color-green);
}