/* $gray: #0f1314; /*  #2d3436*/
* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Raleway", sans-serif;
  scroll-behavior: smooth;
}

.img-responsive {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.nav-container {
  position: fixed;
  z-index: 999;
  width: 100vw;
  background-color: #343641;
  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;
  min-height: 70px;
  padding: 0 60px;
}

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

.nav-container .logo-holder {
  width: 125px;
  height: 70px;
}

.nav-container .logo-holder .logo {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.nav-container .nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-line-pack: center;
      align-content: center;
  list-style: none;
  margin-bottom: 0;
}

@media only screen and (max-width: 992px) {
  .nav-container .nav-list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 30px;
    padding: 50px;
    position: fixed;
    right: -100%;
    top: 70px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background-color: #343641;
    width: 50%;
    height: 100%;
    text-align: center;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
}

@media only screen and (max-width: 992px) and (max-width: 768px) {
  .nav-container .nav-list {
    padding: 20px;
  }
}

@media only screen and (max-width: 992px) and (max-width: 576px) {
  .nav-container .nav-list {
    width: 70%;
  }
}

@media only screen and (max-width: 992px) {
  .nav-container .nav-list.active {
    right: 0;
  }
}

.nav-container .nav-list li {
  margin: 0 1rem;
}

@media only screen and (max-width: 992px) {
  .nav-container .nav-list li {
    margin-bottom: 20px;
  }
}

.nav-container .nav-list li .navlink {
  padding: 10px;
  text-decoration: none;
  color: #dfe6e9;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  font-weight: 500;
}

.nav-container .nav-list li .navlink:hover {
  color: #d63031;
}

.nav-container .nav-list li .navlink.active {
  color: #d63031;
}

@media only screen and (max-width: 992px) {
  .nav-container .nav-list li .navlink {
    padding: 30px;
    font-size: 30px;
    font-weight: 500;
  }
}

@media only screen and (max-width: 768px) {
  .nav-container .nav-list li .navlink {
    padding: 20px;
    font-size: 26px;
  }
}

@media only screen and (max-width: 576px) {
  .nav-container .nav-list li .navlink {
    font-size: 20px;
  }
}

.nav-container .hamburger {
  display: none;
  cursor: pointer;
  width: 50px;
  height: 100%;
  text-align: center;
  line-height: 15px;
}

@media only screen and (max-width: 992px) {
  .nav-container .hamburger {
    display: block;
  }
}

.nav-container .hamburger .bar {
  display: inline-block;
  padding: 0;
  width: 90%;
  height: 6px;
  background-color: #dfe6e9;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

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

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

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

.hero-section {
  padding: 0 60px;
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  width: 100%;
  height: 100vh;
  background-image: url("/dist/assets//honda1.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

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

.hero-section ::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.4;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.2)), to(rgba(0, 0, 0, 0.6))), -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.2)), to(transparent));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, transparent 100%);
  z-index: -1;
}

.hero-section .hero-section-img {
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -3;
}

.hero-section .hero-section-title {
  text-align: center;
  font-size: 40px;
  color: #dfe6e9;
}

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

.hero-section .hero-section-desc {
  margin: 60px auto;
  text-align: center;
  width: 70%;
  font-size: 20px;
  line-height: 40px;
  color: #dfe6e9;
}

.hero-section .hero-section-desc::first-letter {
  color: #d63031;
  font-weight: 600;
  font-size: 30px;
}

@media only screen and (max-width: 768px) {
  .hero-section .hero-section-desc {
    font-size: 18px;
    width: 100%;
    line-height: 25px;
    margin: 30px 0;
    letter-spacing: 1px;
  }
}

.hero-section .phone {
  width: 200px;
  height: 50px;
  border-radius: 15px;
  background-color: #d63031;
  text-align: center;
  line-height: 50px;
  color: #dfe6e9;
  font-size: 25px;
  text-decoration: none;
  letter-spacing: 1px;
  margin: auto;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.hero-section .phone:hover {
  background-color: #343641;
}

.section {
  padding: 0 60px;
  position: relative;
  z-index: -999;
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  height: auto;
}

.section .custom-shape-divider-bottom-1652358401 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  z-index: -1;
}

.section .custom-shape-divider-bottom-1652358401 svg {
  position: relative;
  display: block;
  width: calc(185% + 1.3px);
  height: 189px;
}

@media only screen and (max-width: 992px) {
  .section .custom-shape-divider-bottom-1652358401 svg {
    height: 100px;
  }
}

.section .custom-shape-divider-bottom-1652358401 .shape-fill {
  fill: #636e72;
}

@media only screen and (max-width: 992px) {
  .section {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    padding: 10px;
    height: auto;
  }
}

.section .section-content {
  padding: 30px;
  width: 80%;
  margin: 0 auto;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

@media only screen and (max-width: 992px) {
  .section .section-content {
    width: 100%;
    padding: 15px;
  }
}

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

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

.section .section-content .section-desc {
  font-size: 20px;
  font-weight: 500;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.section .section-content .section-desc::first-letter {
  color: #d63031;
  font-weight: 600;
  font-size: 25px;
}

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

.section-feature {
  padding: 30px 60px;
  position: relative;
  height: auto;
}

@media only screen and (max-width: 992px) {
  .section-feature {
    padding: 30px;
    height: auto;
  }
}

.section-feature .feature-title {
  border-left: 3px solid #d63031;
  border-bottom: 3px solid #d63031;
  padding: 10px;
  font-size: 40px;
  width: 25%;
}

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

.section-feature .custom-shape-divider-top-1652358708 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  z-index: -1;
}

.section-feature .custom-shape-divider-top-1652358708 svg {
  position: relative;
  display: block;
  width: calc(150% + 1.3px);
  height: 150px;
}

@media only screen and (max-width: 992px) {
  .section-feature .custom-shape-divider-top-1652358708 svg {
    height: 100px;
  }
}

.section-feature .custom-shape-divider-top-1652358708 .shape-fill {
  fill: #636e72;
}

.section-feature .section-feature-holder {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-line-pack: center;
      align-content: center;
  gap: 30px;
  height: 60%;
  margin: 20px 0;
  padding: 30px;
}

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

.section-feature .section-feature-holder .item {
  border: 3px solid #343641;
  border-radius: 10px;
  text-align: center;
  padding: 20px;
}

@media only screen and (max-width: 992px) {
  .section-feature .section-feature-holder .item {
    width: 300px;
    margin: 0 auto;
  }
}

.section-feature .section-feature-holder .item i {
  color: #d63031;
  font-size: 50px;
  width: 30px;
  margin: 10px auto;
  display: block;
}

@media only screen and (max-width: 992px) {
  .section-feature .section-feature-holder .item i {
    width: 100%;
  }
}

.section-feature .section-feature-holder .item span {
  text-align: center;
  color: #0f1314f5;
  font-size: 20px;
  font-weight: 500;
}

.section-second {
  padding: 30px 60px;
  display: -ms-grid;
  display: grid;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
  background-color: rgba(24, 24, 24, 0.541);
}

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

.section-second .section-second-title {
  border-left: 3px solid #d63031;
  border-bottom: 3px solid #d63031;
  padding: 10px;
  font-size: 40px;
  color: #dfe6e9;
  margin: 30px 0;
  width: 470px;
}

@media only screen and (max-width: 992px) {
  .section-second .section-second-title {
    font-size: 30px;
    margin: 20px 0;
    width: 300px;
  }
}

.section-second .section-second-desc {
  color: #dfe6e9;
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  margin: 40px 0;
}

.section-second .section-second-desc::first-letter {
  color: #d63031;
  font-weight: 600;
  font-size: 30px;
}

.section-second .section-img {
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  left: 0;
  width: 100%;
  height: 110%;
  z-index: -3;
}

.section-3 {
  padding: 0 60px;
  display: -ms-grid;
  display: grid;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 5em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  height: auto;
  overflow: hidden;
}

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

@media only screen and (max-width: 992px) {
  .section-3 {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    height: auto;
  }
}

.section-3 .section-3-content {
  padding-bottom: 20px;
}

.section-3 .section-3-content .section-3-title {
  border-left: 3px solid #d63031;
  border-bottom: 3px solid #d63031;
  padding: 10px;
  font-size: 40px;
  margin-bottom: 30px;
}

@media only screen and (max-width: 992px) {
  .section-3 .section-3-content .section-3-title {
    font-size: 30px;
    width: 70%;
    margin: 20px 0;
  }
}

.section-3 .section-3-content .section-3-desc {
  font-size: 22px;
}

.section-3 .section-3-content .section-3-desc::first-letter {
  color: #d63031;
  font-weight: 600;
  font-size: 30px;
}

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

.section-3 .section-3-content .custom-shape-divider-bottom-1652361224 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: -1;
}

.section-3 .section-3-content .custom-shape-divider-bottom-1652361224 svg {
  position: relative;
  display: block;
  width: calc(173% + 1.3px);
  height: 251px;
}

.section-3 .section-3-content .custom-shape-divider-bottom-1652361224 .shape-fill {
  fill: #636e72;
}

.section-3 .section-3-img-holder {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 70%;
  height: 100%;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin: 0 auto;
}

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

@media only screen and (max-width: 992px) {
  .section-3 .section-3-img-holder img {
    width: 100%;
    height: 100%;
    margin: 0 auto;
  }
}

.section-3 .discount-holder {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(29, 29, 29, 0.596);
  cursor: pointer;
}

.section-3 .discount-holder .discount-img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media only screen and (max-width: 992px) {
  .section-3 .discount-holder .discount-img {
    width: 100%;
  }
}

.section-3 .discount-holder .discount-img img {
  border-radius: 10px;
  border: 3px solid #dfe6e9;
}

.testimonial {
  padding: 0 60px;
  min-height: 400px;
  text-align: center;
}

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

.testimonial .testimonial-title {
  border-left: 3px solid #d63031;
  border-bottom: 3px solid #d63031;
  padding: 10px;
  font-size: 40px;
  margin: 30px auto;
  width: 250px;
}

@media only screen and (max-width: 768px) {
  .testimonial .testimonial-title {
    font-size: 35px;
  }
}

.testimonial .testimonial-body {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-line-pack: center;
      align-content: center;
  gap: 25px;
}

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

.testimonial .testimonial-body .testimonial-card {
  background-color: #343641;
  padding: 20px;
  border-radius: 15px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  cursor: pointer;
}

.testimonial .testimonial-body .testimonial-card:hover {
  border-radius: 25px;
}

.testimonial .testimonial-body .testimonial-card .card-p {
  color: #dfe6e9;
  margin: 10px;
}

.testimonial .testimonial-body .testimonial-card .card-p i {
  font-size: 25px;
}

.testimonial .testimonial-body .testimonial-card .card-title {
  color: #969696;
}

.testimonial .testimonial-body .testimonial-card .rate {
  color: yellow;
  cursor: pointer;
  margin: 10px;
}

.testimonial .testimonial-body .testimonial-card .rate i:hover {
  color: #ffbb00;
}

.models {
  padding: 0 60px;
  height: auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  background-color: #dfe6e9;
}

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

.models .models-title {
  border-left: 3px solid #d63031;
  border-bottom: 3px solid #d63031;
  padding: 10px;
  font-size: 40px;
  width: 220px;
  margin: 20px auto;
}

.models .animation {
  font-size: 30px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.models .animation::after {
  content: "";
  margin-left: 15px;
  color: #d63031;
  -webkit-animation: model 10s linear alternate infinite;
          animation: model 10s linear alternate infinite;
}

@-webkit-keyframes model {
  0% {
    content: "ACCORD ";
  }
  6% {
    content: "Accord Hybrid";
  }
  13% {
    content: "Civic";
  }
  19% {
    content: "Crosstour";
  }
  26% {
    content: "CR-V";
  }
  33% {
    content: "CR-Z";
  }
  39% {
    content: "Element";
  }
  46% {
    content: "Fit";
  }
  52% {
    content: "HR-V";
  }
  59% {
    content: "Insight";
  }
  65% {
    content: "Odyssey";
  }
  72% {
    content: "Passport";
  }
  78% {
    content: "Pilot";
  }
  85% {
    content: "Prelude";
  }
  91% {
    content: "Ridgeline";
  }
  100% {
    content: "S2000";
  }
}

@keyframes model {
  0% {
    content: "ACCORD ";
  }
  6% {
    content: "Accord Hybrid";
  }
  13% {
    content: "Civic";
  }
  19% {
    content: "Crosstour";
  }
  26% {
    content: "CR-V";
  }
  33% {
    content: "CR-Z";
  }
  39% {
    content: "Element";
  }
  46% {
    content: "Fit";
  }
  52% {
    content: "HR-V";
  }
  59% {
    content: "Insight";
  }
  65% {
    content: "Odyssey";
  }
  72% {
    content: "Passport";
  }
  78% {
    content: "Pilot";
  }
  85% {
    content: "Prelude";
  }
  91% {
    content: "Ridgeline";
  }
  100% {
    content: "S2000";
  }
}

.models .models-holder {
  background-color: #0d0d0e;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-line-pack: center;
      align-content: center;
  width: 70%;
  margin: 10px auto;
}

@media only screen and (max-width: 768px) {
  .models .models-holder {
    width: 100%;
  }
}

.models .models-holder .models-items {
  list-style: none;
  padding: 20px 0;
}

.models .models-holder .models-items li {
  color: #dfe6e9;
  margin: 10px;
  font-size: 18px;
  font-weight: 500;
}

.contact {
  padding: 60px 60px;
  position: relative;
}

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

.contact .contact-title {
  border-left: 3px solid #d63031;
  border-bottom: 3px solid #d63031;
  padding: 10px;
  font-size: 40px;
  width: 30%;
  margin: 30px 0;
}

@media only screen and (max-width: 768px) {
  .contact .contact-title {
    width: 70%;
  }
}

.contact .contact-content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  gap: 20px;
}

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

.contact .contact-content .form {
  background-color: #0f1314f5;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.contact .contact-content .form .title {
  color: #dfe6e9;
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 500;
}

.contact .contact-content .form input {
  width: 80%;
  padding: 10px;
  margin-bottom: 20px;
  border: none;
  border-bottom: 2px solid #d63031;
  outline: none;
}

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

.contact .contact-content .form input:focus {
  -webkit-box-shadow: 0 0 3px #719ece;
          box-shadow: 0 0 3px #719ece;
}

.contact .contact-content .form textarea {
  padding: 10px;
  outline: none;
  width: 80%;
  height: 200px;
  resize: none;
  border: 2px solid #d63031;
}

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

.contact .contact-content .form textarea:focus {
  -webkit-box-shadow: 0 0 3px #719ece;
          box-shadow: 0 0 3px #719ece;
}

.contact .contact-content .form .submit {
  border: none;
  border-radius: 8px;
  cursor: pointer;
  padding: 10px;
  margin: 20px 0;
  width: 100px;
  background-color: #0f1314f5;
  color: #dfe6e9;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media only screen and (max-width: 768px) {
  .contact .contact-content .form .submit {
    width: 50%;
  }
}

.contact .contact-content .form .submit:hover {
  background-color: #d63031;
}

.contact .details-contatct {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  gap: 10px;
}

.contact .details-contatct .img-contatct {
  width: 80%;
  height: 90%;
  margin: 0 auto;
}

@media only screen and (max-width: 992px) {
  .contact .details-contatct .img-contatct {
    width: 50%;
    height: 100%;
    margin-bottom: 60px;
  }
}

@media only screen and (max-width: 768px) {
  .contact .details-contatct .img-contatct {
    width: 80%;
    height: 100%;
    margin-bottom: 60px;
  }
}

.contact .details-contatct .contact-list {
  list-style: none;
  margin-left: 40px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

@media only screen and (max-width: 768px) {
  .contact .details-contatct .contact-list {
    margin-left: 20px;
  }
}

.contact .details-contatct .contact-list .contact-item {
  font-size: 18px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 500;
  margin-bottom: 20px;
}

@media only screen and (max-width: 768px) {
  .contact .details-contatct .contact-list .contact-item {
    font-size: 16px;
  }
}

.contact .details-contatct .contact-list .contact-item i {
  color: #d63031;
  margin-right: 15px;
}

@media only screen and (max-width: 768px) {
  .contact .details-contatct .contact-list .contact-item i {
    font-size: 16px;
  }
}

.contact .zip-code {
  font-size: 16px;
  font-weight: 600;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.contact .zip-code .zip-code-title {
  color: #d63031;
  display: block;
  font-size: 30px;
  margin: 30px 0;
}

.contact .zip-code ul {
  list-style: none;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[15];
      grid-template-columns: repeat(15, 1fr);
  -ms-grid-rows: 1fr 1fr;
      grid-template-rows: 1fr 1fr;
  width: 100%;
}

@media only screen and (max-width: 992px) {
  .contact .zip-code ul {
    -ms-grid-columns: (1fr)[4];
        grid-template-columns: repeat(4, 1fr);
  }
}

.contact .zip-code ul li {
  text-align: center;
  padding: 5px;
  margin: 5px;
  width: 60px;
  background-color: #719ece;
  border-radius: 3px;
  border: 2px solid #343641;
}

@media only screen and (max-width: 992px) {
  .contact .zip-code ul li {
    font-size: 15px;
  }
}

.contact .dallas .dallas-title {
  color: #d63031;
  display: block;
  font-size: 30px;
  margin: 30px 0;
}

.contact .dallas .dallas-list {
  display: -ms-grid;
  display: grid;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-grid-columns: (1fr)[6];
      grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  list-style: none;
  width: 100%;
  height: auto;
}

@media only screen and (max-width: 992px) {
  .contact .dallas .dallas-list {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    gap: 5px;
  }
}

.contact .dallas .dallas-list li {
  margin: 5px;
  text-align: center;
}

.contact .dallas .dallas-list li a {
  text-decoration: none;
  color: #dfe6e9;
  font-weight: 500;
  padding: 8px;
  background-color: #141f22f5;
  border-radius: 3px;
  display: inline-block;
  width: 140px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media only screen and (max-width: 992px) {
  .contact .dallas .dallas-list li a {
    padding: 5px;
  }
}

.contact .dallas .dallas-list li a:hover {
  background-color: #343641;
}

.contact .custom-shape-divider-top-1652599160 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: -1;
}

.contact .custom-shape-divider-top-1652599160 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 150px;
}

@media only screen and (max-width: 992px) {
  .contact .custom-shape-divider-top-1652599160 svg {
    height: 90px;
  }
}

.contact .custom-shape-divider-top-1652599160 .shape-fill {
  fill: #dfe6e9;
}

.contact-page {
  padding: 100px 60px;
  position: relative;
}

@media only screen and (max-width: 768px) {
  .contact-page {
    padding: 0 30px;
    padding-top: 100px;
  }
}

.contact-page .contact-title {
  border-left: 3px solid #d63031;
  border-bottom: 3px solid #d63031;
  padding: 10px;
  font-size: 40px;
  width: 30%;
  margin: 30px 0;
}

@media only screen and (max-width: 768px) {
  .contact-page .contact-title {
    width: 70%;
  }
}

.contact-page .contact-content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  gap: 20px;
}

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

.contact-page .contact-content .form {
  background-color: #0f1314f5;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.contact-page .contact-content .form .title {
  color: #dfe6e9;
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 500;
}

.contact-page .contact-content .form input {
  width: 80%;
  padding: 10px;
  margin-bottom: 20px;
  border: none;
  border-bottom: 2px solid #d63031;
  outline: none;
}

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

.contact-page .contact-content .form input:focus {
  -webkit-box-shadow: 0 0 3px #719ece;
          box-shadow: 0 0 3px #719ece;
}

.contact-page .contact-content .form textarea {
  padding: 10px;
  outline: none;
  width: 80%;
  height: 200px;
  resize: none;
  border: 2px solid #d63031;
}

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

.contact-page .contact-content .form textarea:focus {
  -webkit-box-shadow: 0 0 3px #719ece;
          box-shadow: 0 0 3px #719ece;
}

.contact-page .contact-content .form .submit {
  border: none;
  border-radius: 8px;
  cursor: pointer;
  padding: 10px;
  margin: 20px 0;
  width: 100px;
  background-color: #0f1314f5;
  color: #dfe6e9;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media only screen and (max-width: 768px) {
  .contact-page .contact-content .form .submit {
    width: 50%;
  }
}

.contact-page .contact-content .form .submit:hover {
  background-color: #d63031;
}

.contact-page .details-contatct {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  gap: 10px;
}

.contact-page .details-contatct .img-contatct {
  width: 80%;
  height: 90%;
  margin: 0 auto;
}

@media only screen and (max-width: 992px) {
  .contact-page .details-contatct .img-contatct {
    width: 50%;
    height: 100%;
    margin-bottom: 60px;
  }
}

@media only screen and (max-width: 768px) {
  .contact-page .details-contatct .img-contatct {
    width: 80%;
    height: 100%;
    margin-bottom: 60px;
  }
}

.contact-page .details-contatct .contact-list {
  list-style: none;
  margin-left: 40px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

@media only screen and (max-width: 768px) {
  .contact-page .details-contatct .contact-list {
    margin-left: 20px;
  }
}

.contact-page .details-contatct .contact-list .contact-item {
  font-size: 18px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 500;
  margin-bottom: 20px;
}

@media only screen and (max-width: 768px) {
  .contact-page .details-contatct .contact-list .contact-item {
    font-size: 16px;
  }
}

.contact-page .details-contatct .contact-list .contact-item i {
  color: #d63031;
  margin-right: 15px;
}

@media only screen and (max-width: 768px) {
  .contact-page .details-contatct .contact-list .contact-item i {
    font-size: 16px;
  }
}

.contact-page .zip-code {
  font-size: 16px;
  font-weight: 600;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.contact-page .zip-code .zip-code-title {
  color: #d63031;
  display: block;
  font-size: 30px;
  margin: 30px 0;
}

.contact-page .zip-code ul {
  list-style: none;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[15];
      grid-template-columns: repeat(15, 1fr);
  -ms-grid-rows: 1fr 1fr;
      grid-template-rows: 1fr 1fr;
  width: 100%;
}

@media only screen and (max-width: 992px) {
  .contact-page .zip-code ul {
    -ms-grid-columns: (1fr)[4];
        grid-template-columns: repeat(4, 1fr);
  }
}

.contact-page .zip-code ul li {
  text-align: center;
  padding: 5px;
  margin: 5px;
  width: 60px;
  background-color: #719ece;
  border-radius: 3px;
  border: 2px solid #343641;
}

@media only screen and (max-width: 992px) {
  .contact-page .zip-code ul li {
    font-size: 15px;
  }
}

.contact-page .dallas .dallas-title {
  color: #d63031;
  display: block;
  font-size: 30px;
  margin: 30px 0;
}

.contact-page .dallas .dallas-list {
  display: -ms-grid;
  display: grid;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-grid-columns: (1fr)[6];
      grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  list-style: none;
  width: 100%;
  height: auto;
}

@media only screen and (max-width: 992px) {
  .contact-page .dallas .dallas-list {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

.contact-page .dallas .dallas-list li {
  margin: 5px;
}

.contact-page .dallas .dallas-list li a {
  text-decoration: none;
  color: #dfe6e9;
  font-weight: 500;
  padding: 8px;
  background-color: #141f22f5;
  border-radius: 3px;
  display: inline-block;
  width: 140px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media only screen and (max-width: 992px) {
  .contact-page .dallas .dallas-list li a {
    padding: 5px;
  }
}

.contact-page .dallas .dallas-list li a:hover {
  background-color: #343641;
}

.contact-page .custom-shape-divider-top-1652599160 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: -1;
}

.contact-page .custom-shape-divider-top-1652599160 svg {
  position: relative;
  display: block;
  width: calc(120% + 1.3px);
  height: 220px;
}

@media only screen and (max-width: 992px) {
  .contact-page .custom-shape-divider-top-1652599160 svg {
    height: 90px;
  }
}

.contact-page .custom-shape-divider-top-1652599160 .shape-fill {
  fill: #dfe6e9;
}

.footer {
  padding: 20px 60px;
  background-color: #343641;
  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;
  color: #dfe6e9;
}

@media only screen and (max-width: 768px) {
  .footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}

.footer .social i {
  margin: 5px;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  color: #d63031;
  font-size: 18px;
}

.footer .social i:hover {
  color: #dfe6e9;
}

.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 */