* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: "Barlow", sans-serif;
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
}
* ::-moz-selection {
  background-color: #000;
  color: #fff;
}
* ::selection {
  background-color: #000;
  color: #fff;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #9e9e9e;
}

::-webkit-scrollbar-thumb {
  background: #d63031;
  border-radius: 5px;
}

.line {
  width: 40%;
  height: 0.3em;
  background-color: #000;
  margin-bottom: 2em;
}

.navbar {
  position: fixed;
  z-index: 999;
  box-shadow: -7px -2px 15px #000;
  padding: 20px 150px;
  width: 100vw;
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.8s ease-in-out;
  background-color: #fff;
}
@media only screen and (max-width: 992px) {
  .navbar {
    padding: 0px 30px;
  }
}
.navbar .logo-holder {
  width: 15%;
}
@media only screen and (max-width: 992px) {
  .navbar .logo-holder {
    width: 20%;
  }
}
@media only screen and (max-width: 768px) {
  .navbar .logo-holder {
    width: 40%;
  }
}
.navbar .logo-holder img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 80%;
  height: auto;
}
@media only screen and (max-width: 992px) {
  .navbar .logo-holder img {
    width: 100%;
  }
}
.navbar .nav-list {
  list-style: none;
  display: flex;
  align-self: conter;
  height: 70px;
  width: 70%;
  color: #fff;
}
.navbar .nav-list .nav-item {
  align-self: center;
  line-height: 35px;
  padding: 5px;
  transition: all 0.3s ease-in-out;
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  font-size: 1.5em;
  border-left: 5px solid rgba(0, 0, 0, 0);
}
.navbar .nav-list .nav-item:last-of-type {
  border-right: 5px solid rgba(0, 0, 0, 0);
}
.navbar .nav-list .nav-item:hover {
  background-color: #d63031;
}
.navbar .nav-list .nav-item:hover .nav-link {
  color: #fff;
}
.navbar .nav-list .nav-item:hover:last-child {
  background-color: rgba(255, 255, 255, 0);
}
.navbar .nav-list .nav-item.active.nav-link {
  color: #d63031;
  background-color: #fff;
}
.navbar .nav-list .nav-item.active.contact-btn {
  background-color: #d63031;
}
.navbar .nav-list .nav-item .nav-link {
  text-decoration: none;
  padding: 5px;
  color: #000;
  display: block;
  width: 100%;
  padding: 12px;
  transition: all 0.3s ease-in-out;
}
.navbar .nav-list .nav-item .contact-btn {
  text-decoration: none;
  padding: 5px;
  border-radius: 0.5em;
  color: #fff;
  background-color: #000;
  display: block;
  width: 100%;
  padding: 12px;
  transition: all 0.3s ease-in-out;
}
.navbar .nav-list .nav-item .contact-btn:hover {
  background-color: #d63031;
}
@media only screen and (max-width: 992px) {
  .navbar .nav-list {
    position: fixed;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.9);
    justify-content: center;
    padding: 40px 0;
    width: 100vw;
    height: 100vh;
    right: 0;
    top: -100vh;
    opacity: 0;
    transition: all 0.5s ease-in-out;
  }
  .navbar .nav-list.active {
    top: 70px;
    opacity: 1;
  }
  .navbar .nav-list .nav-item {
    width: 100%;
    text-align: center;
    line-height: 20px;
    height: 60px;
  }
  .navbar .nav-list .nav-item .nav-link {
    color: #d63031;
  }
  .navbar .nav-list .nav-item:hover {
    background-color: #d63031;
  }
  .navbar .nav-list .nav-item:hover .nav-link {
    color: #fff;
  }
  .navbar .nav-list a {
    width: 100%;
  }
}
.navbar .hamburger {
  display: none;
  cursor: pointer;
  width: 50px;
  text-align: center;
  line-height: 15px;
}
@media only screen and (max-width: 992px) {
  .navbar .hamburger {
    display: block;
  }
}
.navbar .hamburger .bar {
  display: inline-block;
  padding: 0;
  width: 90%;
  height: 5px;
  border-radius: 5px;
  background-color: #d63031;
  transition: all 0.5s ease-in-out;
}
.navbar .hamburger.active .bar:nth-child(2) {
  opacity: 0;
}
.navbar .hamburger.active .bar:first-child {
  transform: translateY(6px) rotate(-45deg);
}
.navbar .hamburger.active .bar:last-child {
  transform: translateY(-23px) rotate(45deg);
}

.hero-section {
  padding: 80px 150px;
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: url("/dist/assets/hero.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
@media only screen and (max-width: 992px) {
  .hero-section {
    padding: 80px 45px;
    background-position: 70%;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 95%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 95%);
  }
}
@media only screen and (max-width: 768px) {
  .hero-section {
    padding: 80px 35px;
  }
}
.hero-section .content {
  width: 90%;
  height: 100%;
  padding: 180px;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
@media only screen and (max-width: 992px) {
  .hero-section .content {
    padding: 40px;
    width: 100%;
    align-items: center;
    background: linear-gradient(to right, #000, rgba(14, 14, 14, 0.4941176471));
  }
}
.hero-section .content .hero-title {
  font-size: 3em;
  margin-bottom: 0.7em;
  z-index: 2;
  color: #d63031;
  -webkit-animation: showtitle 2s 0.3s alternate linear both;
          animation: showtitle 2s 0.3s alternate linear both;
}
@media only screen and (max-width: 992px) {
  .hero-section .content .hero-title {
    font-size: 2.2em;
  }
}
@-webkit-keyframes showtitle {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes showtitle {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media only screen and (max-width: 992px) {
  .hero-section .content .hero-title {
    color: #fff;
  }
}
.hero-section .content .hero-desc {
  margin-bottom: 1.3em;
  font-size: 1.4em;
  line-height: 1.5em;
  width: 50%;
  color: #000;
  font-size: 1.5em;
  line-height: 30px;
  z-index: 2;
  -webkit-animation: showdesc 1.5s 0.5s linear both;
          animation: showdesc 1.5s 0.5s linear both;
}
@media only screen and (max-width: 992px) {
  .hero-section .content .hero-desc {
    font-size: 1.2em;
  }
}
@media only screen and (max-width: 992px) {
  .hero-section .content .hero-desc {
    width: 100%;
    color: #fff;
  }
}
@-webkit-keyframes showdesc {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes showdesc {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.hero-section .content .btns {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 992px) {
  .hero-section .content .btns {
    flex-direction: column;
  }
}
.hero-section .content .btns .phone {
  text-decoration: none;
  text-align: center;
  padding: 0.5em;
  font-size: 30px;
  color: #fff;
  margin-right: 1em;
  background-color: #d63031;
  border-radius: 2em;
  z-index: 2;
  transition: all 0.3s ease-in-out;
  -webkit-animation: showtel 1s 1s linear both;
          animation: showtel 1s 1s linear both;
  color: #fff;
}
@-webkit-keyframes showtel {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
@keyframes showtel {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
@media only screen and (max-width: 992px) {
  .hero-section .content .btns .phone {
    width: 80%;
    margin: 1em;
  }
}
@media only screen and (max-width: 768px) {
  .hero-section .content .btns .phone {
    font-size: 25px;
    width: 80%;
  }
}
.hero-section .content .btns .phone:hover {
  background-color: #000;
  color: #fff;
}
.hero-section .content .btns .btn {
  text-decoration: none;
  text-align: center;
  padding: 0.5em;
  font-size: 30px;
  color: #d63031;
  background-color: rgba(255, 255, 255, 0);
  border-radius: 2em;
  border: 3px solid #d63031;
  z-index: 2;
  transition: all 0.3s ease-in-out;
  -webkit-animation: showtel 1s 1s linear both;
          animation: showtel 1s 1s linear both;
}
@keyframes showtel {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
.hero-section .content .btns .btn:hover {
  background-color: #000;
  color: #fff;
  border: 3px solid #000;
}
@media only screen and (max-width: 992px) {
  .hero-section .content .btns .btn {
    width: 80%;
    border: 3px solid #fff;
    color: #fff;
  }
}
@media only screen and (max-width: 768px) {
  .hero-section .content .btns .btn {
    font-size: 25px;
    width: 80%;
  }
}

.section {
  position: relative;
  padding: 60px 160px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  align-content: center;
  gap: 40px;
  height: auto;
  width: 100%;
}
@media only screen and (max-width: 992px) {
  .section {
    padding: 45px;
  }
}
@media only screen and (max-width: 768px) {
  .section {
    padding: 35px;
  }
}
@media only screen and (max-width: 992px) {
  .section {
    grid-template-columns: 1fr;
  }
}
.section .section-content .section-title {
  font-size: 3em;
  margin-bottom: 0.7em;
  color: #d63031;
}
@media only screen and (max-width: 992px) {
  .section .section-content .section-title {
    font-size: 2.2em;
  }
}
.section .section-content .section-desc {
  margin-bottom: 1.3em;
  font-size: 1.4em;
  line-height: 1.5em;
}
@media only screen and (max-width: 992px) {
  .section .section-content .section-desc {
    font-size: 1.2em;
  }
}
.section .section-img-holder {
  overflow: hidden;
  width: 100%;
  align-self: center;
}
.section .section-img-holder img {
  max-width: 100%;
  height: auto;
}

.section-1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  align-content: center;
  gap: 40px;
  height: auto;
  width: 100%;
  padding: 60px 160px;
  position: relative;
  background-color: #eee;
}
@media only screen and (max-width: 992px) {
  .section-1 {
    grid-template-columns: 1fr;
  }
}
@media only screen and (max-width: 992px) {
  .section-1 {
    padding: 45px;
  }
}
@media only screen and (max-width: 768px) {
  .section-1 {
    padding: 35px;
  }
}
.section-1 .section-1-content .section-1-title {
  font-size: 3em;
  margin-bottom: 0.7em;
  color: #d63031;
}
@media only screen and (max-width: 992px) {
  .section-1 .section-1-content .section-1-title {
    font-size: 2.2em;
  }
}
.section-1 .section-1-content .desc {
  margin-bottom: 1.3em;
  font-size: 1.4em;
  line-height: 1.5em;
}
@media only screen and (max-width: 992px) {
  .section-1 .section-1-content .desc {
    font-size: 1.2em;
  }
}
.section-1 .section-1-img-holder {
  overflow: hidden;
  width: 100%;
  align-self: center;
}
.section-1 .section-1-img-holder img {
  max-width: 100%;
  height: auto;
}
.section-1 .overlay {
  -webkit-clip-path: polygon(32% 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(32% 0, 100% 0, 100% 100%, 0 100%);
  background-color: #d63031;
  position: absolute;
  width: 60%;
  height: 100%;
  right: 0;
  z-index: -1;
}

.section-discount {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  align-content: center;
  gap: 40px;
  height: auto;
  width: 100%;
  padding: 60px 160px;
  position: relative;
  background-color: #eee;
}
@media only screen and (max-width: 992px) {
  .section-discount {
    grid-template-columns: 1fr;
  }
}
@media only screen and (max-width: 992px) {
  .section-discount {
    padding: 45px;
  }
}
@media only screen and (max-width: 768px) {
  .section-discount {
    padding: 35px;
  }
}
.section-discount .section-discount-content .title {
  font-size: 3em;
  margin-bottom: 0.7em;
  color: #d63031;
}
@media only screen and (max-width: 992px) {
  .section-discount .section-discount-content .title {
    font-size: 2.2em;
  }
}
.section-discount .section-discount-content .desc {
  margin-bottom: 1.3em;
  font-size: 1.4em;
  line-height: 1.5em;
}
@media only screen and (max-width: 992px) {
  .section-discount .section-discount-content .desc {
    font-size: 1.2em;
  }
}
.section-discount .section-discount-img-holder {
  overflow: hidden;
  width: 100%;
  cursor: pointer;
  position: relative;
}
.section-discount .section-discount-img-holder img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
}
.section-discount .coupon-holder {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 2;
  background-color: rgba(29, 29, 29, 0.596);
  cursor: pointer;
}
.section-discount .coupon-holder .img {
  border-radius: 5px;
  border: 1px solid #eee;
  position: absolute;
  top: 50%;
  left: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 40%;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 992px) {
  .section-discount .coupon-holder .img {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .section-discount .coupon-holder .img {
    width: 100%;
  }
}

.section-contact-page {
  padding: 60px 160px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  align-content: center;
  gap: 40px;
  height: auto;
  width: 100%;
  position: relative;
  padding-top: 150px;
  gap: 5rem;
}
@media only screen and (max-width: 992px) {
  .section-contact-page {
    padding: 45px;
  }
}
@media only screen and (max-width: 768px) {
  .section-contact-page {
    padding: 35px;
  }
}
@media only screen and (max-width: 992px) {
  .section-contact-page {
    grid-template-columns: 1fr;
  }
}
@media only screen and (max-width: 992px) {
  .section-contact-page {
    background-position: 80%;
    padding-top: 150px;
  }
}
.section-contact-page .contact .contact-title {
  font-size: 3em;
  margin-bottom: 0.7em;
  color: #d63031;
}
@media only screen and (max-width: 992px) {
  .section-contact-page .contact .contact-title {
    font-size: 2.2em;
  }
}
.section-contact-page .contact .contact-form {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-contact-page .contact .contact-form input {
  padding: 0.5rem;
  margin-bottom: 20px;
  border: none;
  outline: none;
  width: 100%;
  border-bottom: 2px solid #d63031;
}
.section-contact-page .contact .contact-form input:focus:valid {
  border: 2px solid #57b857;
}
.section-contact-page .contact .contact-form input:focus:invalid {
  border: 2px solid rgb(238, 38, 38);
}
.section-contact-page .contact .contact-form textarea {
  margin-bottom: 40px;
  padding: 10px;
  border: none;
  border-radius: 5px;
  width: 100%;
  outline: none;
  height: 150px;
  resize: none;
  border: 2px solid #d63031;
}
.section-contact-page .contact .contact-form .submit {
  padding: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  background-color: #d63031;
  color: #fff;
  width: 5rem;
  transition: all 0.3s ease-in-out;
}
.section-contact-page .contact .contact-form .submit:hover {
  background-color: #000;
  box-shadow: 2px 2px 10px #000;
}
.section-contact-page .contact-img-holder {
  width: 100%;
  align-self: center;
}
.section-contact-page .contact-img-holder img {
  max-width: 100%;
  height: auto;
}

.section-contact {
  padding: 60px 160px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  align-content: center;
  gap: 40px;
  height: auto;
  width: 100%;
  position: relative;
  gap: 5rem;
}
@media only screen and (max-width: 992px) {
  .section-contact {
    padding: 45px;
  }
}
@media only screen and (max-width: 768px) {
  .section-contact {
    padding: 35px;
  }
}
@media only screen and (max-width: 992px) {
  .section-contact {
    grid-template-columns: 1fr;
  }
}
@media only screen and (max-width: 992px) {
  .section-contact {
    background-position: 80%;
  }
}
.section-contact .contact .contact-title {
  font-size: 3em;
  margin-bottom: 0.7em;
  color: #d63031;
}
@media only screen and (max-width: 992px) {
  .section-contact .contact .contact-title {
    font-size: 2.2em;
  }
}
.section-contact .contact .contact-form {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-contact .contact .contact-form input {
  padding: 0.5rem;
  margin-bottom: 20px;
  border: none;
  outline: none;
  width: 100%;
  border-bottom: 2px solid #d63031;
}
.section-contact .contact .contact-form input:focus:valid {
  border: 2px solid #57b857;
}
.section-contact .contact .contact-form input:focus:invalid {
  border: 2px solid rgb(238, 38, 38);
}
.section-contact .contact .contact-form textarea {
  margin-bottom: 40px;
  padding: 10px;
  border: none;
  border-radius: 5px;
  width: 100%;
  outline: none;
  height: 150px;
  resize: none;
  border: 2px solid #d63031;
}
.section-contact .contact .contact-form .submit {
  padding: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  background-color: #d63031;
  color: #fff;
  width: 5rem;
  transition: all 0.3s ease-in-out;
}
.section-contact .contact .contact-form .submit:hover {
  background-color: #000;
  box-shadow: 2px 2px 10px #000;
}
.section-contact .contact-img-holder {
  width: 100%;
  align-self: center;
}
.section-contact .contact-img-holder img {
  max-width: 100%;
  height: auto;
}

.about-us {
  padding: 60px 160px;
  background-color: #000;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  justify-content: center;
  align-content: center;
  gap: 20px;
}
@media only screen and (max-width: 992px) {
  .about-us {
    padding: 45px;
  }
}
@media only screen and (max-width: 768px) {
  .about-us {
    padding: 35px;
  }
}
.about-us ::-moz-selection {
  color: #d63031;
  background-color: #fff;
}
.about-us ::selection {
  color: #d63031;
  background-color: #fff;
}
@media only screen and (max-width: 992px) {
  .about-us {
    grid-template-columns: 1fr;
    gap: 5em;
  }
}
.about-us .about-us-info .logo-holder {
  width: 50%;
}
.about-us .about-us-info .logo-holder img {
  max-width: 80%;
  height: auto;
}
.about-us .about-us-info .title {
  color: #fff;
  margin-bottom: 20px;
  font-size: 1.5em;
  margin-bottom: 1em;
}
.about-us .about-us-info span {
  color: #999999;
  width: 80%;
}
.about-us .about-us-info .zipcodes {
  display: flex;
  flex-direction: column;
}
.about-us .about-us-info .zipcodes h3 {
  color: #fff;
  margin-bottom: 20px;
  margin-top: 20px;
  font-size: 1.5em;
  margin-bottom: 1em;
}
.about-us .about-us-info .zipcodes div {
  color: #fff;
  line-height: 30px;
  font-size: 1.1em;
}
.about-us .details {
  display: flex;
  flex-direction: column;
  font-size: 1.2em;
}
.about-us .details .title {
  color: #fff;
  margin-bottom: 40px;
  font-size: 1.5em;
  margin-bottom: 1em;
}
.about-us .details .bn {
  color: #d63031;
  font-size: 1.5em;
  font-weight: 600;
}
.about-us .details div {
  color: #fff;
  margin-bottom: 1.6em;
}
@media only screen and (max-width: 992px) {
  .about-us .details div {
    font-size: 0.8em;
  }
}
.about-us .details div i {
  margin-right: 1em;
  color: #fff;
}
@media only screen and (max-width: 992px) {
  .about-us .details div i {
    font-size: 1em;
  }
}
.about-us .details div span {
  margin-bottom: 2em;
}
.about-us .details div a {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  text-decoration: none;
  color: #fff;
}
.about-us .details .section-about-us-holder .list-holder .item {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 20px;
  width: 100%;
}
.about-us .details .section-about-us-holder .list-holder .item i {
  font-size: 2em;
  color: #d63031;
  margin-right: 25px;
}
@media only screen and (max-width: 768px) {
  .about-us .details .section-about-us-holder .list-holder .item i {
    font-size: 2.5em;
  }
}
.about-us .details .section-about-us-holder .list-holder .item .title {
  font-size: 16px;
  text-transform: capitalize;
  margin-bottom: 10px;
}
.about-us .details .section-about-us-holder .list-holder .item .desc {
  font-size: 14px;
  color: #9e9e9e;
}
.about-us .service-location .service-title {
  font-size: 3em;
  margin-bottom: 0.7em;
  color: #fff;
  font-size: 1.5em;
  margin-bottom: 1em;
}
@media only screen and (max-width: 992px) {
  .about-us .service-location .service-title {
    font-size: 2.2em;
  }
}
.about-us .service-location .location {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}
.about-us .service-location .location li {
  font-size: 1.2em;
  margin: 10px 5px;
}
.about-us .service-location .location li a {
  text-decoration: none;
  padding: 5px;
  background-color: #fff;
  color: #000;
  border-radius: 3px;
  width: 100px;
  transition: all 0.2s ease-in-out;
}
.about-us .service-location .location li a:hover {
  background-color: #d63031;
  color: #fff;
}

.footer {
  padding: 10px 150px;
  background-color: rgb(17, 17, 17);
  text-align: center;
  color: #fff;
}
.footer ::-moz-selection {
  color: #d63031;
  background-color: #fff;
}
.footer ::selection {
  color: #d63031;
  background-color: #fff;
}
@media only screen and (max-width: 992px) {
  .footer {
    padding: 10px 45px;
  }
}
@media only screen and (max-width: 768px) {
  .footer {
    padding: 10px 35px;
  }
}
.footer .copyright {
  margin-bottom: 1rem;
}
.footer i {
  color: #fff;
  margin-right: 10px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.footer i:hover {
  color: #f39c12;
}

/* .fixed {
  position: fixed;
  background-color: $mainColor;
  left: -1.3em;
  text-align: center;
  top: 40%;
  transform: rotate(-90deg) translateY(0-2em);
  padding: 1em;
  font-size: 1em;
  border-radius: 5px;
  a {
    color: #fff;
    text-decoration: none;
  }
  font-weight: bold;
  @media only screen and (max-width: 992px) {
    display: none;
  }
} */
.scroll-btn {
  font-size: 2.5em;
  color: #d63031;
  display: none;
  border: none;
  outline: none;
  cursor: pointer;
  position: fixed;
  z-index: 900;
  bottom: 0.5em;
  left: 0.2em;
  width: 2.5rem;
  transition: all 0.3s ease-in-out;
}

.g-recaptcha {
  max-width: 100%;
  margin-top: 20px;
}

.g-recaptcha * {
  transform: scale(1);
  margin-bottom: 15px;
}
@media only screen and (max-width: 576px) {
  .g-recaptcha * {
    transform: scale(0.92);
    margin-left: -12px;
  }
}/*# sourceMappingURL=main.css.map */