* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: "Lato", sans-serif;
  scroll-behavior: smooth;
}

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

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

::-webkit-scrollbar-thumb {
  background: #424691;
}

.grid {
  padding: 30px 150px;
  height: auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media only screen and (max-width: 992px) {
  .grid {
    padding: 45px;
  }
}

@media only screen and (max-width: 768px) {
  .grid {
    padding: 35px;
  }
}

@media only screen and (max-width: 992px) {
  .grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 15px;
  }
}

@media only screen and (max-width: 768px) {
  .grid {
    gap: 10px;
  }
}

.navbar {
  position: fixed;
  z-index: 999;
  background-color: #fff;
  -webkit-box-shadow: -7px -2px 15px #000;
          box-shadow: -7px -2px 15px #000;
  padding: 20px 150px;
  width: 100vw;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (max-width: 992px) {
  .navbar {
    padding: 0px 30px;
  }
}

.navbar .logo-holder {
  width: 20%;
}

.navbar .logo-holder img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 115%;
}

.navbar .nav-list {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: conter;
      align-self: conter;
  height: 70px;
  width: 70%;
  gap: 15px;
}

.navbar .nav-list .nav-item {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  line-height: 35px;
  padding: 7px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: block;
  width: 100%;
  text-align: center;
  font-size: 18px;
}

.navbar .nav-list .nav-item:hover {
  background-color: #130f40;
  -webkit-box-shadow: 2px 2px 15px #000;
          box-shadow: 2px 2px 15px #000;
}

.navbar .nav-list .nav-item:hover .nav-link {
  color: #fff;
}

.navbar .nav-list .nav-item:hover .nav-dropdown span {
  color: #fff;
}

.navbar .nav-list .nav-item .nav-link {
  text-decoration: none;
  padding: 5px;
  color: #000;
  display: inline-block;
  padding: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.navbar .nav-list .nav-item-drop {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  position: relative;
  line-height: 35px;
  padding: 7px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: block;
  width: 100%;
  text-align: center;
}

.navbar .nav-list .nav-item-drop:hover {
  background-color: #130f40;
  -webkit-box-shadow: 2px 2px 15px #000;
          box-shadow: 2px 2px 15px #000;
}

.navbar .nav-list .nav-item-drop:hover span {
  color: #fff;
}

.navbar .nav-list .nav-item-drop #service-list {
  width: 12rem;
}

@media only screen and (max-width: 992px) {
  .navbar .nav-list .nav-item-drop #service-list {
    left: -12rem;
  }
}

.navbar .nav-list .nav-item-drop .nav-dropdown {
  text-decoration: none;
  padding: 5px;
  position: relative;
  color: #000;
  font-size: 18px;
  display: inline-block;
  padding: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.navbar .nav-list .nav-item-drop .nav-dropdown:hover {
  color: #fff;
}

.navbar .nav-list .nav-item-drop .nav-dropdown i {
  margin-left: 12px;
}

.navbar .nav-list .nav-item-drop .dropmenu-item {
  width: 100%;
}

.navbar .nav-list .nav-item-drop .dropmenu-item:hover {
  background-color: #130f40;
}

.navbar .nav-list .nav-item-drop .dropmenu-item:hover a {
  color: #fff;
}

.navbar .nav-list .nav-item-drop .dropmenu-item a {
  color: #000;
  display: block;
  text-decoration: none;
  width: 100%;
}

.navbar .nav-list .nav-item-drop .dropmenu {
  display: none;
  max-height: 45vh;
  overflow-y: scroll;
}

.navbar .nav-list .nav-item-drop .dropmenu.active {
  display: block;
  background-color: #fff;
  width: 10rem;
  text-align: center;
  position: absolute;
  left: 0px;
  top: 69px;
  list-style: none;
}

@media only screen and (max-width: 992px) {
  .navbar .nav-list .nav-item-drop .dropmenu.active {
    top: 0rem;
    left: -10rem;
  }
}

@media only screen and (max-width: 992px) {
  .navbar .nav-list {
    position: fixed;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background-color: #fff;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 40px 0;
    gap: 5px;
    width: 50vw;
    height: auto;
    right: -100%;
    top: 70px;
    opacity: 0;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
  .navbar .nav-list.active {
    right: 0;
    opacity: 1;
  }
  .navbar .nav-list .nav-item {
    width: 100%;
    text-align: center;
    line-height: 20px;
    height: 60px;
  }
  .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;
  background-color: #424691;
  border-radius: 5px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.navbar .hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.navbar .hamburger.active .bar:first-child {
  -webkit-transform: translateY(6px) rotate(-45deg);
          transform: translateY(6px) rotate(-45deg);
}

.navbar .hamburger.active .bar:last-child {
  -webkit-transform: translateY(-23px) rotate(45deg);
          transform: translateY(-23px) rotate(45deg);
}

.hero-section {
  padding: 70px 150px;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  text-align: center;
  background-image: url("/dist/assets/man-forget-key.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

@media only screen and (max-width: 992px) {
  .hero-section {
    padding: 70px 45px;
    background-position: 90%;
  }
}

.hero-section .content {
  padding: 30px 0;
  position: relative;
  z-index: 1;
}

.hero-section .content .hero-section-title {
  margin-bottom: 35px;
  color: #fff;
  font-size: 50px;
}

@media only screen and (max-width: 768px) {
  .hero-section .content .hero-section-title {
    font-size: 30px;
  }
}

.hero-section .content .hero-section-desc {
  margin-bottom: 35px;
  font-size: 20px;
  line-height: 30px;
  color: #fff;
}

@media only screen and (max-width: 768px) {
  .hero-section .content .hero-section-desc {
    font-size: 18px;
    line-height: 25px;
  }
}

.hero-section .content .hero-section-tel {
  text-decoration: none;
  padding: 5px;
  font-size: 30px;
  background-color: #424691;
  padding: 10px;
  border-radius: 10px;
  color: #fff;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.hero-section .content .hero-section-tel:hover {
  background-color: #fff;
  color: #000;
  -webkit-box-shadow: 2px 2px 15px #000;
          box-shadow: 2px 2px 15px #000;
}

.hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.466);
}

.section {
  padding: 30px 150px;
  text-align: center;
  position: relative;
}

@media only screen and (max-width: 992px) {
  .section {
    padding: 45px;
  }
}

@media only screen and (max-width: 768px) {
  .section {
    padding: 35px;
  }
}

.section .section-title {
  margin-bottom: 15px;
  font-size: 30px;
  display: block;
}

@media only screen and (max-width: 992px) {
  .section .section-title {
    font-size: 25px;
  }
}

@media only screen and (max-width: 576px) {
  .section .section-title {
    font-size: 20px;
  }
}

.section i {
  display: block;
  font-size: 20px;
  color: #130f40;
  animation: move 0.5s linear infinite alternate-reverse;
}

@-webkit-keyframes move {
  0% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@keyframes move {
  0% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

.desc {
  margin: 30px auto;
  font-size: 20px;
}

.section-2 {
  background-color: #424691;
  color: #fff;
}

.section-2 .section-2-content .section-2-title {
  font-size: 35px;
  margin-bottom: 30px;
}

.section-2 .section-2-content .section-desc p {
  margin-bottom: 20px;
  font-size: 18px;
}

.section-2 .img-holder img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.section-discount {
  width: 100%;
  position: relative;
}

.section-discount .img-holder {
  cursor: pointer;
}

.section-discount .img-holder .img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.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: 20px;
  border: 2px solid #eee;
  position: absolute;
  top: 50%;
  left: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 85%;
  -webkit-transform: translate(-50%, -50%);
          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-service {
  padding: 30px 150px;
}

@media only screen and (max-width: 992px) {
  .section-service {
    padding: 45px;
  }
}

@media only screen and (max-width: 768px) {
  .section-service {
    padding: 35px;
  }
}

.section-service .cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}

@media only screen and (max-width: 992px) {
  .section-service .cards {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
}

@media only screen and (max-width: 768px) {
  .section-service .cards {
    gap: 10px;
  }
}

.section-service .cards .card {
  color: #fff;
  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;
  background-color: #424691;
  border-radius: 5px;
  padding: 5px;
  width: 25%;
  height: 15rem;
  text-align: center;
  font-size: 20px;
}

@media only screen and (max-width: 992px) {
  .section-service .cards .card {
    width: 100%;
  }
}

.section-service .cards .card i {
  font-size: 40px;
  margin-bottom: 20px;
  -ms-grid-column-align: start;
      justify-self: start;
}

.section-service .cards .card p {
  line-height: 30px;
}

.section-service .service-tel {
  cursor: pointer;
  display: block;
  padding: 10px;
  font-size: 25px;
  text-decoration: none;
  background-color: #130f40;
  color: #fff;
  text-align: center;
  width: 13rem;
  margin: 30px auto;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.section-service .service-tel:hover {
  background-color: #fff;
  color: #000;
  -webkit-box-shadow: 2px 2px 15px #000;
          box-shadow: 2px 2px 15px #000;
}

.section-3 {
  padding: 30px 150px;
  background-image: url("/dist/assets/3.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

@media only screen and (max-width: 992px) {
  .section-3 {
    padding: 45px;
  }
}

@media only screen and (max-width: 768px) {
  .section-3 {
    padding: 35px;
  }
}

.section-3 .section-3-content {
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 1;
}

.section-3 .section-3-content .section-3-title {
  font-size: 35px;
  margin-bottom: 30px;
}

.section-3 .section-3-content .section-3-desc p {
  margin-bottom: 20px;
  font-size: 18px;
}

.section-3 .overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #3f3f3fd7;
}

.cars-slider {
  width: 100%;
  height: 200px;
  padding: 20px 0;
}

.cars-slider .marquee {
  white-space: nowrap;
  height: 100%;
  overflow: hidden;
  -webkit-animation: marquee 50s linear infinite alternate;
          animation: marquee 50s linear infinite alternate;
}

.cars-slider .marquee:hover {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}

@-webkit-keyframes marquee {
  0% {
    text-indent: 27.5em;
  }
  100% {
    text-indent: -225em;
  }
}

@keyframes marquee {
  0% {
    text-indent: 27.5em;
  }
  100% {
    text-indent: -225em;
  }
}

.cars-slider .marquee img {
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 200px;
  height: 80px;
  margin: 25px;
}

@media only screen and (max-width: 768px) {
  .cars-slider .marquee img {
    margin: 15px;
  }
}

.section-contact {
  padding: 30px 150px;
}

@media only screen and (max-width: 992px) {
  .section-contact {
    padding: 45px;
  }
}

@media only screen and (max-width: 768px) {
  .section-contact {
    padding: 35px;
  }
}

.section-contact .contact-holder .contact-title {
  font-size: 35px;
  margin-bottom: 30px;
}

.section-contact .contact-holder .contact-form input {
  display: block;
  margin-bottom: 40px;
  padding: 10px;
  border: none;
  border: 1px solid #130f40;
  border-radius: 5px;
  width: 70%;
  outline: none;
}

.section-contact .contact-holder .contact-form input::-webkit-input-placeholder {
  color: #95afc0;
}

.section-contact .contact-holder .contact-form input:-ms-input-placeholder {
  color: #95afc0;
}

.section-contact .contact-holder .contact-form input::-ms-input-placeholder {
  color: #95afc0;
}

.section-contact .contact-holder .contact-form input::placeholder {
  color: #95afc0;
}

.section-contact .contact-holder .contact-form input:focus:valid {
  border: 2px solid #11bd0c;
}

.section-contact .contact-holder .contact-form input:focus:invalid {
  border: 2px solid #ee2626;
}

@media only screen and (max-width: 992px) {
  .section-contact .contact-holder .contact-form input {
    width: 100%;
  }
}

.section-contact .contact-holder .contact-form textarea {
  display: block;
  margin-bottom: 40px;
  padding: 10px;
  border: none;
  border: 1px solid #130f40;
  border-radius: 5px;
  width: 70%;
  outline: none;
  height: 150px;
  resize: none;
}

.section-contact .contact-holder .contact-form textarea::-webkit-input-placeholder {
  color: #95afc0;
}

.section-contact .contact-holder .contact-form textarea:-ms-input-placeholder {
  color: #95afc0;
}

.section-contact .contact-holder .contact-form textarea::-ms-input-placeholder {
  color: #95afc0;
}

.section-contact .contact-holder .contact-form textarea::placeholder {
  color: #95afc0;
}

@media only screen and (max-width: 992px) {
  .section-contact .contact-holder .contact-form textarea {
    width: 100%;
  }
}

.section-contact .contact-holder .contact-form .submit {
  padding: 10px;
  border-radius: 15px;
  width: 100px;
  border: none;
  cursor: pointer;
  background-color: #130f40;
  color: #fff;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.section-contact .contact-holder .contact-form .submit:hover {
  background-color: #424691;
  -webkit-box-shadow: 2px 2px 10px #000;
          box-shadow: 2px 2px 10px #000;
}

.section-contact .contact-info .service-location .service-title {
  font-size: 35px;
  margin-bottom: 30px;
}

.section-contact .contact-info .service-location .location {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
}

.section-contact .contact-info .service-location .location li {
  font-size: 16px;
  margin: 10px 5px;
}

.section-contact .contact-info .service-location .location li a {
  color: #fff;
  text-decoration: none;
  padding: 5px;
  background-color: #130f40;
  border-radius: 3px;
  width: 100px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.section-contact .contact-info .service-location .location li a:hover {
  background-color: #424691;
}

.section-contact .contact-info .zipcodes {
  height: 200px;
}

.section-contact .contact-info .zipcodes .zipcode-title {
  font-size: 35px;
  margin-bottom: 30px;
  margin-top: 20px;
}

.section-contact .contact-info .zipcodes .zipcode-title i {
  color: #130f40;
  margin-right: 15px;
}

.section-contact .contact-info .zipcodes .zipcode-holder {
  position: relative;
  height: 50px;
  overflow: hidden;
  font-size: 20px;
  font-weight: 600;
}

.section-contact .contact-info .zipcodes .zipcode-holder .zipcode-desc {
  margin: 0;
  white-space: nowrap;
  position: absolute;
  width: 100%;
  line-height: 50px;
  /* animation: scroll 60s linear infinite alternate; */
  margin: 0;
}

@-webkit-keyframes scroll {
  0% {
    text-indent: 0;
  }
  100% {
    text-indent: -380em;
  }
}

@keyframes scroll {
  0% {
    text-indent: 0;
  }
  100% {
    text-indent: -380em;
  }
}

.contact-page {
  padding: 90px 150px;
}

@media only screen and (max-width: 992px) {
  .contact-page {
    padding: 90px 45px;
  }
}

.contact-page .contact-holder .contact-title {
  font-size: 35px;
  margin-bottom: 30px;
}

.contact-page .contact-holder .contact-form input {
  display: block;
  margin-bottom: 40px;
  padding: 10px;
  border: none;
  border: 1px solid #130f40;
  border-radius: 5px;
  width: 70%;
  outline: none;
}

.contact-page .contact-holder .contact-form input::-webkit-input-placeholder {
  color: #95afc0;
}

.contact-page .contact-holder .contact-form input:-ms-input-placeholder {
  color: #95afc0;
}

.contact-page .contact-holder .contact-form input::-ms-input-placeholder {
  color: #95afc0;
}

.contact-page .contact-holder .contact-form input::placeholder {
  color: #95afc0;
}

.contact-page .contact-holder .contact-form input:focus:valid {
  border: 2px solid #11bd0c;
}

.contact-page .contact-holder .contact-form input:focus:invalid {
  border: 2px solid #ee2626;
}

@media only screen and (max-width: 992px) {
  .contact-page .contact-holder .contact-form input {
    width: 100%;
  }
}

.contact-page .contact-holder .contact-form textarea {
  display: block;
  margin-bottom: 40px;
  padding: 10px;
  border: none;
  border: 1px solid #130f40;
  border-radius: 5px;
  width: 70%;
  outline: none;
  height: 150px;
  resize: none;
}

.contact-page .contact-holder .contact-form textarea::-webkit-input-placeholder {
  color: #95afc0;
}

.contact-page .contact-holder .contact-form textarea:-ms-input-placeholder {
  color: #95afc0;
}

.contact-page .contact-holder .contact-form textarea::-ms-input-placeholder {
  color: #95afc0;
}

.contact-page .contact-holder .contact-form textarea::placeholder {
  color: #95afc0;
}

@media only screen and (max-width: 992px) {
  .contact-page .contact-holder .contact-form textarea {
    width: 100%;
  }
}

.contact-page .contact-holder .contact-form .submit {
  padding: 10px;
  border-radius: 15px;
  width: 100px;
  border: none;
  cursor: pointer;
  background-color: #130f40;
  color: #fff;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.contact-page .contact-holder .contact-form .submit:hover {
  background-color: #424691;
  -webkit-box-shadow: 2px 2px 10px #000;
          box-shadow: 2px 2px 10px #000;
}

.contact-page .contact-info .service-location .service-title {
  font-size: 35px;
  margin-bottom: 30px;
}

.contact-page .contact-info .service-location .location {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
}

.contact-page .contact-info .service-location .location li {
  font-size: 16px;
  margin: 10px 5px;
}

.contact-page .contact-info .service-location .location li a {
  color: #fff;
  text-decoration: none;
  padding: 5px;
  background-color: #130f40;
  border-radius: 3px;
  width: 100px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.contact-page .contact-info .service-location .location li a:hover {
  background-color: #424691;
}

.contact-page .contact-info .zipcodes {
  height: 200px;
}

.contact-page .contact-info .zipcodes .zipcode-title {
  font-size: 35px;
  margin-bottom: 30px;
  margin-top: 20px;
}

.contact-page .contact-info .zipcodes .zipcode-title i {
  color: #130f40;
  margin-right: 15px;
}

.contact-page .contact-info .zipcodes .zipcode-holder {
  position: relative;
  height: 50px;
  overflow: hidden;
  font-size: 20px;
  font-weight: 600;
}

.contact-page .contact-info .zipcodes .zipcode-holder .zipcode-desc {
  margin: 0;
  white-space: nowrap;
  position: absolute;
  width: 100%;
  line-height: 50px;
  /* animation: scroll 60s linear infinite alternate; */
  margin: 0;
}

@keyframes scroll {
  0% {
    text-indent: 0;
  }
  100% {
    text-indent: -380em;
  }
}

.section-bottom {
  padding: 30px 150px;
  background-color: #424691;
  color: #fff;
  gap: 50px;
}

@media only screen and (max-width: 992px) {
  .section-bottom {
    padding: 45px;
  }
}

@media only screen and (max-width: 768px) {
  .section-bottom {
    padding: 35px;
  }
}

@media only screen and (max-width: 992px) {
  .section-bottom .details {
    margin: 0 auto;
  }
}

.section-bottom .details .brand-name {
  font-size: 35px;
  margin-bottom: 30px;
}

.section-bottom .details ul {
  list-style: none;
}

.section-bottom .details ul li {
  margin-bottom: 20px;
  font-size: 18px;
}

.section-bottom .details ul li:last-of-type {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.section-bottom .details ul li i {
  margin-right: 20px;
}

@media only screen and (max-width: 992px) {
  .section-bottom .details ul li i {
    margin-right: 10px;
  }
}

@media only screen and (max-width: 992px) {
  .section-bottom .about-us {
    margin: 0 auto;
  }
}

.section-bottom .about-us .about-us-img {
  width: 50%;
}

@media only screen and (max-width: 992px) {
  .section-bottom .about-us .about-us-img {
    margin: 0 auto;
  }
}

.section-bottom .about-us .about-us-img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 80%;
}

.section-bottom .about-us .about-us-title {
  font-size: 35px;
  margin-bottom: 30px;
}

.section-bottom .about-us .about-us-desc {
  width: 60%;
}

@media only screen and (max-width: 992px) {
  .section-bottom .about-us .about-us-desc {
    width: 100%;
    margin-bottom: 30px;
  }
}

.section-bottom .about-us .service {
  margin: 1.5rem 0;
}

.section-bottom .about-us .service .title {
  font-size: 20px;
}

.section-bottom .about-us .service .service-list {
  list-style: none;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  margin-top: 15px;
}

.section-bottom .about-us .service .service-list li {
  margin-bottom: 10px;
}

.section-bottom .about-us .service .service-list li i {
  margin-right: 5px;
}

.section-bottom .about-us .service .service-list li a {
  text-decoration: none;
  color: #fff;
}

.footer {
  padding: 20px 120px;
  background-color: #424691;
  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;
  gap: 20px;
  color: #fff;
}

@media only screen and (max-width: 992px) {
  .footer {
    padding: 20px 50px;
    font-size: 13px;
  }
}

.footer .social i {
  margin: 8px;
  cursor: pointer;
  padding: 5px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.footer .social i:hover {
  color: #130f40;
}

.scroll-btn {
  display: none;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 2px;
  position: fixed;
  z-index: 900;
  bottom: 0.5rem;
  right: 5rem;
  width: 2.5rem;
}

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

.g-recaptcha * {
  -webkit-transform: scale(1);
          transform: scale(1);
  margin-bottom: 15px;
}

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