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

p {
  margin-bottom: 25px;
}

.nav-container {
  position: fixed;
  z-index: 999;
  width: 100vw;
  background-color: #2980b9;
  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;
  gap: 10px;
  max-height: 70px;
  padding: 0 120px;
}

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

.nav-container .logo-holder {
  width: 144px;
  height: 100%;
}

.nav-container .logo-holder .logo {
  width: 85%;
  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: 0;
    top: -100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background-color: #34495e;
    border-left: 5px solid #3498db;
    width: 100%;
    height: 100%;
    text-align: center;
    opacity: 0;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
  .nav-container .nav-list.active {
    opacity: 1;
    top: 70px;
  }
}

.nav-container .nav-list li {
  margin: 0 0.5rem;
  display: inline-block;
}

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

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

.nav-container .nav-list li .navlink:hover {
  background-color: #3498db;
}

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

@media only screen and (max-width: 992px) {
  .nav-container .nav-list li .navlink {
    padding: 15px;
    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: #fff;
  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: 180px 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100vh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  background-image: url("/dist/assets/mitsubishi.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-section::before {
  content: "";
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(17, 146, 221, 0.2)), to(rgba(0, 0, 0, 0.6)));
  background: linear-gradient(180deg, rgba(17, 146, 221, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
}

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

.hero-section .hero-title {
  font-size: 40px;
  margin-bottom: 20px;
  color: #ececec;
  width: 40%;
}

@media only screen and (max-width: 768px) {
  .hero-section .hero-title {
    font-size: 30px;
    margin-bottom: 15px;
    width: 100%;
  }
}

.hero-section .hero-desc {
  font-size: 20px;
  width: 40%;
  color: #ececec;
  margin: 20px 0;
}

@media only screen and (max-width: 768px) {
  .hero-section .hero-desc {
    margin: 35px 0;
    width: 100%;
    line-height: 30px;
  }
}

.hero-section .hero-phone {
  text-decoration: none;
  padding: 15px;
  width: 20vw;
  font-size: 25px;
  background-color: #3498db;
  text-align: center;
  border-radius: 10px;
  color: #ececec;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

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

.hero-section .hero-phone i {
  margin-right: 15px;
}

@media only screen and (max-width: 768px) {
  .hero-section .hero-phone {
    width: 100%;
  }
}

.hero-section .hero-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 .key {
  width: 200px;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  right: 80px;
  bottom: 150px;
  -webkit-animation: shake 2s infinite alternate;
          animation: shake 2s infinite alternate;
}

@media only screen and (max-width: 768px) {
  .hero-section .key {
    display: none;
  }
}

@-webkit-keyframes shake {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 11deg);
            transform: rotate3d(0, 0, 1, 11deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, -11deg);
            transform: rotate3d(0, 0, 1, -11deg);
  }
}

@keyframes shake {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 11deg);
            transform: rotate3d(0, 0, 1, 11deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, -11deg);
            transform: rotate3d(0, 0, 1, -11deg);
  }
}

.section {
  padding: 60px 140px;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  position: relative;
}

@media only screen and (max-width: 992px) {
  .section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 30px 50px;
  }
}

.section::before {
  content: "";
  -webkit-clip-path: circle(66.2% at 82% 100%);
          clip-path: circle(66.2% at 82% 100%);
  position: absolute;
  background-color: rgba(65, 65, 65, 0.192);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -3;
}

.section .section-content .section-title {
  font-size: 22px;
  margin-bottom: 30px;
  border-right: 5px solid #3498db;
  width: 90%;
}

@media only screen and (max-width: 992px) {
  .section .section-content .section-title {
    font-size: 22px;
    width: 50%;
    margin: 40px auto;
    text-align: center;
  }
}

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

.section .section-content .section-title i {
  color: #3498db;
  margin-right: 15px;
}

.section .section-content .section-desc {
  font-size: 18px;
  width: 90%;
}

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

.section .section-content .section-desc p {
  margin-bottom: 10px;
}

.section .section-img-holder {
  position: relative;
}

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

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

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

.section .section-img-holder .overlay {
  background-color: rgba(0, 0, 0, 0.267);
  width: 100%;
  height: 99%;
  position: absolute;
  top: 0;
  opacity: 1;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

@media only screen and (max-width: 992px) {
  .section .section-img-holder .overlay {
    height: 98%;
  }
}

.section-1 {
  padding: 60px 140px;
  height: auto;
  position: relative;
}

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

.section-1::before {
  content: "";
  -webkit-clip-path: ellipse(68% 26% at 51% 100%);
          clip-path: ellipse(68% 26% at 51% 100%);
  background-color: rgba(65, 65, 65, 0.192);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.section-1 .section-1-title {
  font-size: 22px;
  margin-bottom: 30px;
  border-right: 5px solid #3498db;
  margin-bottom: 60px;
  width: 50%;
}

@media only screen and (max-width: 992px) {
  .section-1 .section-1-title {
    font-size: 22px;
    width: 50%;
    margin: 40px auto;
    text-align: center;
  }
}

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

.section-1 .section-1-title i {
  color: #3498db;
  margin-right: 15px;
}

.section-1 .section-1-content {
  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;
  gap: 30px;
}

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

.section-1 .section-1-content .section-1-desc {
  font-size: 18px;
  width: 90%;
  padding-left: 15px;
  line-height: 35px;
  border-left: 5px solid #3498db;
  border-radius: 20px 0;
}

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

.section-discount {
  padding: 60px 140px;
  height: auto;
  background-color: #34495e;
  color: #ececec;
  position: relative;
  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) {
  .section-discount {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    padding: 30px 50px;
  }
}

.section-discount .section-discount-holder .section-discount-title {
  font-size: 22px;
  margin-bottom: 30px;
  border-right: 5px solid #3498db;
  color: #ececec;
}

@media only screen and (max-width: 992px) {
  .section-discount .section-discount-holder .section-discount-title {
    font-size: 22px;
    width: 50%;
    margin: 40px auto;
    text-align: center;
  }
}

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

.section-discount .section-discount-holder .section-discount-title i {
  color: #3498db;
  margin-right: 15px;
  -webkit-animation: why infinite 1s alternate;
          animation: why infinite 1s alternate;
}

@-webkit-keyframes why {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes why {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.section-discount .section-discount-holder .section-discount-desc p {
  margin-bottom: 12px;
}

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

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

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

.section-discount .coupon img {
  border-radius: 20px;
  border: 2px solid #eee;
  position: absolute;
  top: 50%;
  left: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 90%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media only screen and (max-width: 992px) {
  .section-discount .coupon img {
    height: 50%;
  }
}

@media only screen and (max-width: 768px) {
  .section-discount .coupon img {
    height: 30%;
  }
}

.testimonial {
  padding: 60px 140px;
  height: auto;
  position: relative;
}

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

.testimonial .fade {
  -webkit-animation-name: fade;
          animation-name: fade;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

.testimonial .testimonial-title {
  font-size: 22px;
  margin-bottom: 30px;
  border-right: 5px solid #3498db;
  width: 20%;
  margin: 30px auto;
}

@media only screen and (max-width: 992px) {
  .testimonial .testimonial-title {
    font-size: 22px;
    width: 50%;
    margin: 40px auto;
    text-align: center;
  }
}

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

.testimonial .testimonial-title i {
  color: #3498db;
  margin-right: 15px;
}

.testimonial .testimonial-body {
  background-color: #34495e;
  padding: 30px;
  color: #ececec;
  width: 85%;
  margin: 0 auto;
  border-radius: 10px;
}

.testimonial .testimonial-body span {
  font-size: 18px;
  display: inline-block;
}

.testimonial .testimonial-body p {
  margin: 20px 0;
}

.testimonial .testimonial-body p i {
  color: #3498db;
  margin-right: 15px;
}

.testimonial .dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  -webkit-transition: background-color 0.6s ease;
  transition: background-color 0.6s ease;
  margin-top: 20px;
}

.testimonial .active {
  background-color: #717171;
}

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

.testimonial .custom-shape-divider-top-1652686971 svg {
  position: relative;
  display: block;
  width: calc(113% + 1.3px);
  height: 118px;
}

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

.testimonial .custom-shape-divider-top-1652686971 .shape-fill {
  fill: #34495e;
}

.zipcodes {
  padding: 30px 120px;
  height: 200px;
}

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

.zipcodes .zipcode-title {
  font-size: 22px;
  margin-bottom: 30px;
  border-right: 5px solid #3498db;
  width: 20%;
  margin: 20px auto;
}

@media only screen and (max-width: 992px) {
  .zipcodes .zipcode-title {
    font-size: 22px;
    width: 50%;
    margin: 40px auto;
    text-align: center;
  }
}

@media only screen and (max-width: 768px) {
  .zipcodes .zipcode-title {
    width: 100%;
  }
}

.zipcodes .zipcode-title i {
  color: #3498db;
  margin-right: 15px;
}

.zipcodes .zipcode-holder {
  position: relative;
  height: 50px;
  overflow: hidden;
  border-right: 5px solid #3498db;
  border-left: 5px solid #3498db;
  font-size: 20px;
  font-weight: 600;
}

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

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

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

.models {
  padding: 60px 140px;
  height: auto;
  background-color: #34495e;
}

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

.models .models-title {
  font-size: 22px;
  margin-bottom: 30px;
  border-right: 5px solid #3498db;
  color: #ececec;
  width: 20%;
  margin: 30px auto;
  text-align: center;
}

@media only screen and (max-width: 992px) {
  .models .models-title {
    font-size: 22px;
    width: 50%;
    margin: 40px auto;
    text-align: center;
  }
}

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

.models .models-title i {
  color: #3498db;
  margin-right: 15px;
}

.models .models-items {
  list-style: none;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

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

@media only screen and (max-width: 768px) {
  .models .models-items {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.models .models-items .item {
  color: #ececec;
  width: 300px;
  text-align: center;
  position: relative;
  margin: 5px;
  cursor: pointer;
  font-size: 18px;
}

.models .models-items .item:hover i {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  left: 10px;
  color: #ececec;
}

.models .models-items .item i {
  position: absolute;
  color: #3498db;
  left: 0;
}

.section-contact {
  padding: 60px 140px;
  height: auto;
}

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

.section-contact .contact-title {
  font-size: 22px;
  margin-bottom: 30px;
  border-right: 5px solid #3498db;
  width: 30%;
}

@media only screen and (max-width: 992px) {
  .section-contact .contact-title {
    font-size: 22px;
    width: 50%;
    margin: 40px auto;
    text-align: center;
  }
}

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

.section-contact .contact-title i {
  color: #3498db;
  margin-right: 15px;
}

.section-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) {
  .section-contact .contact-content {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.section-contact .contact-content .contact-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

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

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

.section-contact .contact-content .contact-form label {
  margin-bottom: 20px;
  font-weight: 600;
}

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

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

.section-contact .contact-content .contact-form .submit {
  width: 100px;
  padding: 10px;
  background-color: #3498db;
  color: #ececec;
  border: none;
  border-radius: 5px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}

.section-contact .contact-content .contact-form .submit:hover {
  background-color: #34495e;
}

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

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

@media only screen and (max-width: 576px) {
  .section-contact .contact-content .contact-form .g-recaptcha * {
    -webkit-transform: scale(0.92);
            transform: scale(0.92);
    margin-left: -12px;
  }
}

.section-contact .contact-details .service-location {
  margin-top: 30px;
}

.section-contact .contact-details .service-location .service-title {
  font-size: 22px;
  margin-bottom: 30px;
  border-right: 5px solid #3498db;
  width: 50%;
}

@media only screen and (max-width: 992px) {
  .section-contact .contact-details .service-location .service-title {
    font-size: 22px;
    width: 50%;
    margin: 40px auto;
    text-align: center;
  }
}

@media only screen and (max-width: 768px) {
  .section-contact .contact-details .service-location .service-title {
    width: 100%;
  }
}

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

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

.section-contact .contact-details .service-location .dallas li a {
  color: #ececec;
  text-decoration: none;
  padding: 5px;
  background-color: #34495e;
  border-radius: 3px;
  width: 100px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.section-contact .contact-details .service-location .dallas li a:hover {
  background-color: #3498db;
}

.section-contact .contact-details ul {
  list-style: none;
  margin-top: 20px;
}

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

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

@media only screen and (max-width: 992px) {
  .section-contact .contact-details ul li {
    font-size: 16px;
  }
}

.section-contact .contact-details ul li i {
  margin-right: 10px;
  color: #3498db;
}

.section-contact-page {
  padding: 60px 140px;
  height: auto;
  padding-top: 120px;
  height: auto;
}

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

.section-contact-page .contact-title {
  font-size: 22px;
  margin-bottom: 30px;
  border-right: 5px solid #3498db;
  width: 30%;
}

@media only screen and (max-width: 992px) {
  .section-contact-page .contact-title {
    font-size: 22px;
    width: 50%;
    margin: 40px auto;
    text-align: center;
  }
}

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

.section-contact-page .contact-title i {
  color: #3498db;
  margin-right: 15px;
}

.section-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) {
  .section-contact-page .contact-content {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.section-contact-page .contact-content .contact-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

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

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

.section-contact-page .contact-content .contact-form label {
  margin-bottom: 20px;
  font-weight: 600;
}

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

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

.section-contact-page .contact-content .contact-form .submit {
  width: 100px;
  padding: 10px;
  background-color: #3498db;
  color: #ececec;
  border: none;
  border-radius: 5px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}

.section-contact-page .contact-content .contact-form .submit:hover {
  background-color: #34495e;
}

.section-contact-page .contact-content .contact-form .g-recaptcha {
  max-width: 100%;
  margin-top: 20px;
}

.section-contact-page .contact-content .contact-form .g-recaptcha * {
  -webkit-transform: scale(1);
          transform: scale(1);
  margin-bottom: 15px;
}

@media only screen and (max-width: 576px) {
  .section-contact-page .contact-content .contact-form .g-recaptcha * {
    -webkit-transform: scale(0.92);
            transform: scale(0.92);
    margin-left: -12px;
  }
}

.section-contact-page .contact-details .service-location {
  margin-top: 30px;
}

.section-contact-page .contact-details .service-location .service-title {
  font-size: 22px;
  margin-bottom: 30px;
  border-right: 5px solid #3498db;
  width: 50%;
}

@media only screen and (max-width: 992px) {
  .section-contact-page .contact-details .service-location .service-title {
    font-size: 22px;
    width: 50%;
    margin: 40px auto;
    text-align: center;
  }
}

@media only screen and (max-width: 768px) {
  .section-contact-page .contact-details .service-location .service-title {
    width: 100%;
  }
}

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

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

.section-contact-page .contact-details .service-location .dallas li a {
  color: #ececec;
  text-decoration: none;
  padding: 5px;
  background-color: #34495e;
  border-radius: 3px;
  width: 100px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.section-contact-page .contact-details .service-location .dallas li a:hover {
  background-color: #3498db;
}

.section-contact-page .contact-details ul {
  list-style: none;
  margin-top: 20px;
}

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

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

@media only screen and (max-width: 992px) {
  .section-contact-page .contact-details ul li {
    font-size: 16px;
  }
}

.section-contact-page .contact-details ul li i {
  margin-right: 10px;
  color: #3498db;
}

.footer {
  padding: 20px 120px;
  background-color: #34495e;
  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: #ececec;
}

@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: #3498db;
}
/*# sourceMappingURL=main.css.map */