/*============================================ 
======== Css Content =========
# Typography
# Normalize 
# Global style
# Pages style
# Responsive style
============================================*/
:root {
  --body-font-primary: "Arial", sans-serif;
  --body-font-secondary: "Arial", cursive;
  --body-line-height: 1.5;
  --heading-line-height: 1.2;
  --font-size: 1.125rem;
  --heading-color-white: #ffffff;
  --filter-img-color-light: brightness(0) invert(1);
  --quaternary-body-bg: #ffffff;
  --quaternary-body-color: #444444;
  --quaternary-custom-bg-color: #FB2305;
  --quaternary-color: #FB2305;
  --quaternary-custom-color: #ffffff;
  --quaternary-color-rgba: rgba(255, 255, 255, 0.28);
  --quaternary-heading-color: #272727;
  --quaternary-gradient-color: linear-gradient(92.14deg, #FB2506 -2.15%, #FE5E1F 98.1%);
  --quaternary-overlay-color: linear-gradient(89.88deg, #000000 -2.69%, rgba(0, 0, 0, 0) 71.18%);
  --quaternary-overlay-color2: rgba(0, 0, 0, 0.61);
  --quaternary-active-color: #FB2305;
  --quaternary-link-color: #FB2305;
  --quaternary-link-hover-color: #FB2305;
  --quaternary-bg-color-rgba_icons: rgba(255, 242, 242, 0.15);
  --quaternary-placeholder-color: #666666;
}

a {
  transition: 0.3s ease;
  text-decoration: none;
  display: inline-block;
}
a:focus, a:hover {
  outline: none;
}

p {
  line-height: var(--body-line-height);
}

img {
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.fluid_img {
  max-width: 100%;
  min-height: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

input,
textarea {
  width: 100%;
}
input::-moz-placeholder, textarea::-moz-placeholder {
  color: var(--quaternary-placeholder-color) !important;
  opacity: 1;
  font-size: 16px;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: var(--quaternary-placeholder-color) !important;
  opacity: 1;
  font-size: 16px;
}
input::placeholder,
textarea::placeholder {
  color: var(--quaternary-placeholder-color) !important;
  opacity: 1;
  font-size: 16px;
}
input:focus,
textarea:focus {
  outline: none;
}

textarea {
  resize: none;
}

.form-select {
  color: var(--quaternary-placeholder-color) !important;
}
.form-select option {
  color: rgba(19, 18, 18, 0.8) !important;
}

button {
  border: none;
}
button:focus {
  outline: none !important;
}

.form-control {
  padding: 0.9375rem 1.25rem;
  font-size: var(--font-size);
  font-weight: 500;
  font-family: var(--body-font-secondary);
  border: none;
  color: #000;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0px 4px 23px rgba(98, 98, 98, 0.25);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.form-control:focus {
  outline: none;
  box-shadow: none;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0px 4px 23px rgba(98, 98, 98, 0.25);
}

ul {
  list-style-type: none;
}

*::-webkit-scrollbar {
  width: 0.4vw;
  height: 16px;
}

*::-webkit-scrollbar-thumb {
  background: #434343;
  border-radius: 16px;
  box-shadow: inset 2px 2px 2px hsla(0deg, 0%, 100%, 0.25), inset -2px -2px 2px rgba(0, 0, 0, 0.25);
}

*::-webkit-scrollbar-track {
  background: linear-gradient(90deg, #434343, #434343 1px, #111 0, #111);
}

#pre_loader {
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: 9999;
  overflow: visible;
  background: url(../images/preloader.gif) no-repeat center center;
  background-size: 100%;
  background-color: #252528;
}

.scrollToTop {
  position: fixed;
  right: 30px;
  bottom: 0;
  width: 45px;
  height: 45px;
  line-height: var(--body-line-height);
  border-radius: 5px;
  background-color: #3A79F9;
  font-size: 20px;
  text-align: center;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: #fff !important;
  transition: 0.3s;
  transform: translateY(100%);
}
.scrollToTop:hover {
  color: #fff !important;
}
.scrollToTop:focus {
  color: #fff !important;
}

.topActive {
  bottom: 30px;
  transform: translateY(0%);
}

label.error {
  color: red;
  font-size: 14px;
}

.message-error.error {
  position: absolute;
  color: red;
  font-size: 14px;
}

.title_ch_quaternary {
  max-width: 25ch;
}

.title_ch_review {
  max-width: 18ch;
}

.hero_btn {
  padding: 20px 40px;
  background: rgba(0, 0, 0, 0.44);
  color: #fff;
}

.bullet_icon {
  height: 33px;
  min-width: 33px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  transition: 0.3s;
}

.between_two_part {
  display: flex;
  align-items: center;
  gap: 20px;
}

.grid_part_2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.grid_part_3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid_part_4 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.img_icon {
  width: 82px;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
}

.img_icon_rgba {
  width: 86px;
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
}

.star {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.btn_theme {
  background: #fff;
  border: none;
  outline: none !important;
  padding: 0.9375rem 2.5rem;
  box-shadow: 0px 4px 23px rgba(98, 98, 98, 0.25);
  border-radius: 2px;
  font-weight: 500;
  font-size: var(--font-size);
  font-family: var(--body-font-secondary);
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
  line-height: var(--body-line-height);
  transition: 0.5s;
}

.cuatom_btn {
  padding: 15px 25px;
  box-shadow: 0px 4px 23px rgba(98, 98, 98, 0.25);
  border-radius: 2px;
  color: #fff;
  font-size: var(--font-size);
  font-family: var(--body-font-secondary);
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
}

.font_weight_500 {
  font-weight: 500;
}

.swiper {
  width: 100%;
  height: 100%;
}

.custom_color {
  color: var(--quaternary-color);
}

.font_600 {
  font-weight: 600;
}

.z_index_5 {
  z-index: 5;
}

.alert {
  transition: 1s;
  margin-bottom: -20px;
  margin-top: 10px;
  display: block;
}

.in-box {
  position: relative;
}
.in-box label {
  position: absolute;
}

.shadow_none {
  box-shadow: none !important;
}

.header_top {
  background-color: #000;
  padding: 22px 0;
}
.header_top button {
  background-color: transparent;
  color: #fff;
  font-size: x-large;
}
.header_top .location i {
  color: var(--quaternary-color);
  background-color: var(--quaternary-bg-color-rgba_icons);
  min-width: 47px;
  height: 47px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--quaternary-color);
}
.header_top .location .small_text {
  color: #A6A6A6;
  margin-bottom: 5px;
}
.header_top .location .address {
  color: var(--heading-color-white);
}

.offcanvas {
  background-color: rgb(21, 19, 19);
  padding: 10px 0;
}
.offcanvas .offcanvas-header .offcanvas-title {
  font-size: X-large;
  color: #fff;
}
.offcanvas .nav-item .nav-link {
  color: var(--heading-color-white);
  margin: auto 5px;
  font-size: large;
  text-transform: capitalize;
  font-weight: 700;
  font-size: 1.25rem;
}
.offcanvas .in-box {
  display: flex;
  gap: 10px;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 2px;
}
.offcanvas .in-box .form-control {
  background-color: transparent;
  border: none;
  border-radius: 0;
  color: #fff;
  font-size: 18px;
  box-shadow: none;
}
.offcanvas .in-box .search_icon {
  background-color: transparent;
  color: #fff;
  padding: 10px 15px;
  font-size: 1.5rem;
}
.offcanvas .offcanvas-backdrop {
  background-color: rgba(0, 0, 0, 0.61);
}

.active {
  color: var(--quaternary-active-color);
}

.footer_area.quaternary {
  background: #111111;
}
.footer_area.quaternary p, .footer_area.quaternary a, .footer_area.quaternary .footer_title {
  color: var(--heading-color-white);
}
.footer_area.quaternary .footer_partOne .in-box input.form-control {
  background: rgba(255, 255, 255, 0.07);
  border-radius: 2px;
  box-shadow: none;
  color: #fff;
}
.footer_area.quaternary .footer_partOne .in-box input.form-control::-moz-placeholder {
  color: rgba(255, 255, 255, 0.651) !important;
  opacity: 1;
  font-size: 16px;
}
.footer_area.quaternary .footer_partOne .in-box input.form-control:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.651) !important;
  opacity: 1;
  font-size: 16px;
}
.footer_area.quaternary .footer_partOne .in-box input.form-control::placeholder {
  color: rgba(255, 255, 255, 0.651) !important;
  opacity: 1;
  font-size: 16px;
}
.footer_area.quaternary .footer_partOne .in-box .cuatom_btn {
  padding: 14px 25px;
  box-shadow: none;
}
.footer_area.quaternary .footer_menu {
  margin-top: -15px;
}
.footer_area.quaternary .footer_menu a {
  display: block;
  padding: 15px 0;
}
.footer_area.quaternary .footer_bottom {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #4D4C4C;
}
.footer_area.quaternary .footer_bottom .copyright,
.footer_area.quaternary .footer_bottom .social a {
  color: var(--heading-color-white);
}

@media (max-width: 74.9375rem) {
  .header_top .location {
    gap: 10px;
  }
  .header_top .location .location_text {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .header_area .navbar-brand {
    margin-right: 0;
  }
  .header_area .navbar-nav .nav-item .nav-link {
    padding: 35px 0px;
    font-size: 1rem;
  }
  .footer_area.quaternary .footer_partTwo,
.footer_area.quaternary .footer_partThree {
    margin-top: 80px;
  }
}
@media (min-width: 48rem) {
  .nav-item a:focus, .nav-item a:hover, .nav-item a:active {
    color: #dfdada !important;
  }
}
@media (max-width: 767px) {
  .nav_header {
    background-color: #000;
  }
  .nav_header .navbar-brand img {
    width: 200px;
  }
}
@media (max-width: 479px) {
  .header_area .navbar-nav {
    padding: 20px 20px 25px;
  }
  .footer_area.quaternary .footer_bottom {
    display: block;
  }
  .footer_area.quaternary .footer_bottom .copyright {
    margin-bottom: 20px;
  }
  .footer_area.quaternary .footer_partOne .in-box {
    display: block;
  }
  .footer_area.quaternary .footer_partOne .in-box .form-control {
    height: 70px;
  }
  .footer_area.quaternary .footer_partOne .in-box .btn_theme {
    width: 100%;
  }
  .footer_area.quaternary .footer_partOne .in-box .cuatom_btn {
    width: 100%;
  }
}
body {
  background-color: var(--quaternary-body-bg);
  color: var(--quaternary-body-color);
}

h1, h1 > a, h2, h2 > a, h3, h3 > a, h4, h4 > a, h5, h5 > a, h6, h6 > a {
  color: var(--quaternary-heading-color);
}

a {
  color: var(--quaternary-body-color);
}
a:focus, a:hover {
  color: var(--quaternary-link-hover-color) !important;
}

.hero_btn {
  border-left: 5px solid var(--quaternary-color);
  font-weight: 600;
  line-height: var(--heading-line-height);
}

.bullet_icon {
  background-color: var(--quaternary-color);
}

.img_icon {
  background: var(--quaternary-color);
}

.img_icon_rgba {
  background: var(--quaternary-color-rgba);
}

.btn_theme {
  color: var(--quaternary-color) !important;
}

.cuatom_btn {
  background: var(--quaternary-color);
}

.sub_title {
  color: var(--quaternary-color);
}

.title {
  color: var(--quaternary-color);
}

.text_white {
  color: var(--heading-color-white);
}

.custom_bg {
  background-color: var(--quaternary-color);
  color: var(--heading-color-white);
  display: inline-block;
  padding: 10px;
}

.hero_section.quaternary {
  min-height: 100vh;
  min-width: 100%;
  padding-top: 170px;
  padding-bottom: 200px;
  background: url(../images/quaternary_hero_bg.jpg) no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero_section.quaternary .text_area {
  z-index: 3;
}
.hero_section.quaternary .text_area .hero_sub_title {
  color: var(--heading-color-white);
}
.hero_section.quaternary .text_area h1 {
  color: var(--heading-color-white);
}
.hero_section.quaternary .text_area .hero_content {
  color: var(--heading-color-white);
}
.hero_section.quaternary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100vh;
  height: 100%;
  background: var(--quaternary-overlay-color);
}
.hero_section.quaternary::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  min-height: 100vh;
  height: 100%;
  background: url(../images/quaternary_hero.png) no-repeat;
  background-position: top right;
}

.countdown_section.quaternary {
  margin-top: -128px;
}
.countdown_section.quaternary .countdown {
  background: var(--quaternary-color);
  padding: 60px;
  padding-right: 25px;
}
.countdown_section.quaternary .countdown .count_title {
  color: var(--quaternary-custom-color);
}
.countdown_section.quaternary .countdown .countdown_number {
  color: var(--quaternary-custom-color);
}

.about_section.quaternary {
  position: relative;
}
.about_section.quaternary::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/quaternary_about_bg.png) no-repeat;
  background-position: left bottom;
}
.about_section.quaternary::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url(../images/quaternary_about_bg2.png) no-repeat;
  background-position: top right -240px;
}
.about_section.quaternary .progress_area .prog_title {
  color: #666666;
}
.about_section.quaternary .progress_area .progress_value {
  color: var(--quaternary-color);
  text-decoration: underline;
}
.about_section.quaternary .progress_area .progress {
  height: 10px;
}
.about_section.quaternary .progress_area .progress .progress-bar {
  background-color: var(--quaternary-color);
}

.why_choose_us.quaternary {
  position: relative;
}
.why_choose_us.quaternary::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url(../images/quaternary_choose_bg.jpg) no-repeat;
  background-position: bottom right;
}

.your_time.quaternary {
  background: url(../images/quaternary_your_time_bg.jpg) no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}
.your_time.quaternary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--quaternary-overlay-color2);
}
.your_time.quaternary .time_text h2 {
  color: var(--heading-color-white);
}
.your_time.quaternary .time_text .cuatom_btn {
  padding: 15px 40px;
}

.services_section.quaternary {
  position: relative;
}
.services_section.quaternary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/quaternary_services_bg.png) no-repeat;
  background-position: top 120px left -30px;
}
.services_section.quaternary .service .part {
  position: relative;
  overflow: hidden;
}
.services_section.quaternary .service .part .service_text {
  position: absolute;
  top: 0;
  right: 100%;
  width: 100%;
  height: 100%;
  padding: 30px;
  z-index: 6;
  opacity: 0.5;
  background: var(--quaternary-overlay-color2);
  transition: 0.3s;
}
.services_section.quaternary .service .part .service_text .service_part_title,
.services_section.quaternary .service .part .service_text .service_part_content,
.services_section.quaternary .service .part .service_text .details {
  color: var(--heading-color-white);
}
.services_section.quaternary .service .part:hover .service_text {
  opacity: 1;
  right: 0;
}

.client_review_section.quaternary {
  background-color: #FFF4F4;
  position: relative;
}
.client_review_section.quaternary .swiper-wrapper {
  margin: 30px auto;
}
.client_review_section.quaternary .swiper-slide {
  background: #FFFFFF;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.08);
  padding: 20px;
  opacity: 0.4;
}
.client_review_section.quaternary .swiper-slide-active {
  opacity: 1;
}
.client_review_section.quaternary::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url(../images/quaternary_cliet_review_bg.png) no-repeat;
  background-position: top -85px right 15%;
}
.client_review_section.quaternary .client_review_pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}
.client_review_section.quaternary .swiper-pagination-bullet {
  height: 15px;
  width: 15px;
}
.client_review_section.quaternary .star_review {
  color: #666666;
  display: flex;
  gap: 5px;
  justify-content: center;
  align-items: center;
}
.client_review_section.quaternary .star_review .star_active {
  color: var(--quaternary-color);
}

.best_work.quaternary {
  background: url(../images/quaternary_best_work_bg.jpg) no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}
.best_work.quaternary::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url(../images/quaternary_best_work_bg2.png) no-repeat;
  background-position: bottom -50px right -170px;
}

.client_company_section.quaternary {
  background-color: var(--quaternary-custom-bg-color);
}
.client_company_section.quaternary .swiper-wrapper {
  transition-timing-function: linear !important;
}
.client_company_section.quaternary .swiper-slide img {
  filter: var(--filter-img-color-light);
}

.contuct_section.quaternary {
  position: relative;
}
.contuct_section.quaternary::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url(../images/quaternary_about_bg.png) no-repeat;
  background-position: bottom left;
}
.contuct_section.quaternary .contact_form .cuatom_btn {
  display: block;
  margin: auto;
  margin-top: 40px;
}

body {
  font-family: var(--body-font-primary);
  font-size: var(--font-size);
  line-height: var(--body-line-height);
  font-weight: 400;
}

html,
body,
div,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
ol,
ul,
li,
table,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
}

h1,
h1 > a,
h2,
h2 > a,
h3,
h3 > a,
h4,
h4 > a,
h5,
h5 > a,
h6,
h6 > a {
  line-height: var(--heading-line-height);
  font-family: var(--body-font-secondary);
}
h1 span,
h1 > a span,
h2 span,
h2 > a span,
h3 span,
h3 > a span,
h4 span,
h4 > a span,
h5 span,
h5 > a span,
h6 span,
h6 > a span {
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  color: inherit;
  line-height: inherit;
}

h1,
h1 > a {
  font-weight: 700;
  font-size: 4.75rem;
}

h2,
h2 > a {
  font-weight: 700;
  font-size: 3.5625rem;
}

h3,
h3 > a {
  font-weight: 700;
  font-size: 2.6875rem;
}

h4,
h4 > a {
  font-weight: 600;
  font-size: 2rem;
}

h5,
h5 > a {
  font-size: 1.5rem;
  font-weight: 600;
}

h6,
h6 > a {
  font-size: var(--font-size);
  font-weight: 500;
}

.mb_10 {
  margin-bottom: 0.625rem;
}

.mb_20 {
  margin-bottom: 1.25rem;
}

.mt_24 {
  margin-top: 24px;
}

.mb_30 {
  margin-bottom: 1.875rem;
}

.mb_40 {
  margin-bottom: 2.5rem;
}

.mt_40 {
  margin-top: 2.5rem;
}

.mt_20 {
  margin-top: 1.25rem;
}

.mb_60 {
  margin-bottom: 3.75rem;
}

.pt_70 {
  padding-top: 4.375rem;
}

.py_30 {
  padding-top: 1.875rem;
  padding-bottom: 1.875rem;
}

.py_60 {
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
}

@media (max-width: 61.9375rem) {
  .mb_30 {
    margin-bottom: 1.75rem;
  }
  .py_30 {
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
  }
  .mb_40 {
    margin-bottom: 2.3125rem;
  }
  .mt_40 {
    margin-top: 2.3125rem;
  }
  .mb_60 {
    margin-bottom: 2.75rem;
  }
  .pt_70 {
    padding-top: 3rem;
  }
  .py_60 {
    padding-top: 2.75rem;
    padding-bottom: 2.75rem;
  }
}
@media (max-width: 47.9375rem) {
  .mb_60 {
    margin-bottom: 2.5rem;
  }
  .pt_70 {
    padding-top: 2.8125rem;
  }
  .py_60 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
@media (max-width: 35.938rem) {
  .mb_30 {
    margin-bottom: 1.625rem;
  }
  .py_30 {
    padding-top: 1.625rem;
    padding-bottom: 1.625rem;
  }
  .mb_40 {
    margin-bottom: 2.1875rem;
  }
  .mt_40 {
    margin-top: 2.1875rem;
  }
}
.section_padding {
  padding-top: 7.5rem;
  padding-bottom: 7.5rem;
}

.section_pt {
  padding-top: 7.5rem;
}

.small_text {
  font-size: 1rem;
  line-height: 22px;
}

.large {
  font-size: 18px;
  line-height: var(--heading-line-height);
}

.x_large {
  font-size: 24px;
  line-height: var(--heading-line-height);
}

.xxx_large {
  font-family: var(--body-font-secondary);
  font-weight: 700;
  font-size: 2.6875rem;
  line-height: var(--heading-line-height);
}

.ex_large {
  font-size: 5.5rem;
  line-height: 30px;
}

.x_large_custom {
  font-weight: 600;
  font-size: 1.5rem;
  font-family: var(--body-font-secondary);
  line-height: var(--heading-line-height);
}

@media (min-width: 75rem) {
  html {
    font-size: 100%;
  }
}
@media (max-width: 87.4375rem) {
  h1,
h1 > a {
    font-size: 4rem;
  }
  h2,
h2 > a {
    font-size: 3rem;
  }
}
@media (max-width: 74.9375rem) {
  html {
    font-size: 97%;
  }
  h1,
h1 > a {
    font-size: 3.5625rem;
  }
  h2,
h2 > a {
    font-size: 2.6875rem;
  }
  h5,
h5 > a {
    font-size: 1.125rem;
  }
}
@media (max-width: 61.9375rem) {
  html {
    font-size: 94%;
  }
  h1,
h1 > a {
    font-size: 3.5625rem;
  }
  h2,
h2 > a {
    font-size: 2.6875rem;
  }
  h3,
h3 > a {
    font-size: 2rem;
  }
  h4,
h4 > a {
    font-size: 1.5rem;
  }
  h5,
h5 > a {
    font-size: 1.125rem;
  }
  h6,
h6 > a {
    font-size: 1rem;
  }
  .section_padding {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }
  .section_pt {
    padding-top: 3.75rem;
  }
  .small_text {
    font-size: 0.875rem;
    line-height: 20px;
  }
  .large {
    font-size: 1rem;
    line-height: var(--heading-line-height);
  }
  .x_large {
    font-size: 1.125rem;
    line-height: var(--heading-line-height);
  }
  .xxx_large {
    font-family: var(--body-font-secondary);
    font-weight: 700;
    font-size: 2rem;
    line-height: var(--heading-line-height);
  }
  .ex_large {
    font-size: 4.5rem;
    line-height: 30px;
  }
  .x_large_custom {
    font-weight: 600;
    font-size: 1.125rem;
    font-family: var(--body-font-secondary);
    line-height: var(--heading-line-height);
  }
}
@media (max-width: 47.9375rem) {
  html {
    font-size: 90%;
  }
}
@media (max-width: 35.938rem) {
  h1,
h1 > a {
    font-size: 2.5rem;
  }
  h2,
h2 > a {
    font-size: 1.875rem;
  }
  h3,
h3 > a {
    font-size: 1.5rem;
  }
  h4,
h4 > a {
    font-size: 1.25rem;
  }
  .small_text {
    font-size: 0.875rem;
    line-height: 20px;
  }
  .large {
    font-size: 1rem;
    line-height: var(--heading-line-height);
  }
  .x_large {
    font-size: 1.0625rem;
    line-height: var(--heading-line-height);
  }
  .xxx_large {
    font-family: var(--body-font-secondary);
    font-weight: 700;
    font-size: 1.5rem;
    line-height: var(--heading-line-height);
  }
  .ex_large {
    font-size: 3.5rem;
    line-height: 30px;
  }
  .x_large_custom {
    font-weight: 600;
    font-size: 1.0625rem;
    font-family: var(--body-font-secondary);
    line-height: var(--heading-line-height);
  }
}
@media (max-width: 29.938rem) {
  h1,
h1 > a {
    font-size: 2.25rem;
  }
  h2,
h2 > a {
    font-size: 1.75rem;
  }
}
@media (max-width: 87.5rem) {
  .about_section.quaternary::before {
    background-size: 35%;
  }
  .about_section.quaternary::after {
    background-size: 35%;
  }
  .hero_section.quaternary::after {
    background-size: 32%;
  }
}
@media (min-width: 75rem) {
  .showup_works.quaternary .part .showup_title {
    font-size: 1.3125rem;
  }
}
@media (max-width: 74.9375rem) {
  .best_work.quaternary::before {
    background-size: 55%;
  }
}
@media (max-width: 61.9375rem) {
  .hero_section::after {
    display: none;
  }
  .hero_section .animation .hero_text {
    right: -185px;
    font-size: 130px;
  }
  .grid_part_3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .countdown_section .countdown {
    grid-template-columns: 1fr 1fr;
    gap: 50px 30px;
  }
  .countdown_section.quaternary {
    margin-top: 3.75rem;
  }
  .about_section.quaternary .about_img {
    display: none;
  }
  .about_section.quaternary::before {
    background: none;
  }
  .why_choose_us.quaternary::before {
    background: none;
  }
  .why_choose_us.quaternary .choose_img {
    margin-top: 30px;
  }
  .client_review_section.quaternary::before {
    background-size: 30%;
  }
  .contuct_section.quaternary .contuct_img {
    display: none;
  }
  .contuct_section.quaternary::before {
    background-image: none;
  }
}
@media (max-width: 47.9375rem) {
  .hero_section .hero_car {
    display: none;
  }
  .hero_section .animation .hero_text {
    right: -145px;
    font-size: 100px;
  }
  .grid_part_4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .header_area {
    padding-left: 0;
    padding-right: 0;
  }
  html {
    font-size: 85%;
  }
  h1, .ts-h1 {
    font-size: 2rem;
  }
  h2, .ts-h2 {
    font-size: 1.625rem;
  }
  h3, .ts-h3 {
    font-size: 1.25rem;
  }
  h4, .ts-h4 {
    font-size: 1.125rem;
  }
  .xxxlarge {
    font-size: 2.375rem;
  }
  .xx_large {
    font-size: 1.625rem;
  }
  .alert {
    margin-bottom: -5px !important;
    margin-top: 7px !important;
  }
}
@media (max-width: 35.938rem) {
  .contuct_section .contact_form .grid_part_2 {
    grid-template-columns: repeat(1, 1fr);
  }
  .client_review_section.quaternary::before {
    background-position: top -48px right 15%;
  }
  .services_section .service {
    grid-template-columns: 1fr;
  }
  .services_section .service .service_img {
    width: 100%;
  }
  body {
    font-size: 15px;
    line-height: 19px;
  }
  h1, .ts-h1 {
    margin-bottom: 1.25rem;
  }
  .xxxlarge {
    font-size: 2.25rem;
  }
  .text_weight {
    font-weight: 400;
  }
}
@media (max-width: 29.938rem) {
  .countdown_section .countdown,
.grid_part_4 {
    grid-template-columns: repeat(1, 1fr);
  }
  .grid_part_3 {
    grid-template-columns: repeat(1, 1fr);
  }
  .best_work.quaternary .best_works_img img {
    width: 100%;
  }
  .services_section.quaternary .part img {
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */