/*============================================ 
======== Css Content =========
# Typography
# Normalize 
# Global style
# Pages style
# Responsive style
============================================*/
@import url("https://fonts.googleapis.com/css2?family=Oxanium:wght@300;400;500;600;700;800&family=Poppins:ital,wght@0,100;0,200;1,100;1,200&display=swap");
:root {
  --body-font-primary: "Poppins", sans-serif;
  --body-font-secondary: "Oxanium", cursive;
  --body-line-height: 1.5;
  --heading-line-height: 1.2;
  --font-size: 1.125rem;
  --heading-color-white: #ffffff;
  --secondary-body-bg: #ffffff;
  --secondary-custom-body-bg: #F8F8F8;
  --secondary-body-color: #444444;
  --secondary-color: #FB2305;
  --secondary-color-rgba: rgba(251, 35, 5, 0.14);
  --secondary-heading-color: #272727;
  --secondary-overlay-color: linear-gradient(89.86deg, #000000 -1.16%, #0E0E0E -1.15%, rgba(11, 11, 11, 0.810764) 18.88%, rgba(8, 8, 8, 0.571513) 34.78%, rgba(0, 0, 0, 0) 56.54%);
  --secondary-active-color: #FB2305;
  --secondary-link-color: #FB2305;
  --secondary-link-hover-color: #FB2305;
  --secondary-bg-color-rgba_icons: rgba(255, 242, 242, 0.15);
  --secondary-placeholder-color: rgba(102, 102, 102, 1);
  --filter-img-color-light: brightness(0) invert(1);
}

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(--placeholder-color) !important;
  opacity: 1;
  font-size: 16px;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: var(--placeholder-color) !important;
  opacity: 1;
  font-size: 16px;
}
input::placeholder,
textarea::placeholder {
  color: var(--placeholder-color) !important;
  opacity: 1;
  font-size: 16px;
}
input:focus,
textarea:focus {
  outline: none;
}

textarea {
  resize: none;
}

.form-select {
  color: var(--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: 20%;
  background-color: #e5eff1;
}

.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;
  cursor: pointer;
  color: #fff !important;
  transition: 0.3s;
  transform: translateY(100%);
  display: flex;
  justify-content: center;
  align-items: center;
}
.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;
}

.mb_none {
  margin-bottom: 0 !important;
}

.title_ch {
  max-width: 15ch;
}

.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(4, 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%;
}

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

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

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

.nav_header {
  background-color: var(--secondary-color);
  padding: 10px 0;
}
.nav_header .navbar-toggler {
  color: #fff;
  font-size: x-large;
}
.nav_header .navbar-toggler:focus {
  outline: 0;
  box-shadow: none;
}
.nav_header .nav-item .nav-link {
  color: var(--heading-color-white);
  margin: auto 5px;
  text-transform: capitalize;
}
.nav_header .search_box {
  margin-left: auto;
}
.nav_header .in-box {
  display: flex;
  gap: 10px;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 2px;
}
.nav_header .in-box .form-control {
  background-color: transparent;
  border: none;
  border-radius: 0;
  color: #fff;
  font-size: 18px;
  box-shadow: none;
}
.nav_header .in-box .search_icon {
  background-color: transparent;
  color: #fff;
  padding: 10px 15px;
  font-size: 1.5rem;
}

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

.footer_area {
  display: block;
  background: #161616 url(../images/footer_bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.footer_area .footer_top .footer_subscribe {
  background-color: var(--secondary-color);
  padding: 60px;
  position: relative;
}
.footer_area .footer_top .footer_subscribe .footer_top_title {
  max-width: 13ch;
  color: var(--heading-color-white);
}
.footer_area .footer_top .footer_subscribe .frmSubscribe {
  width: 45%;
}
.footer_area .footer_top .footer_subscribe .footer_img {
  background: #666666;
  display: flex;
  justify-content: center;
  padding-top: 10px;
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
}
.footer_area .footer_top .footer_subscribe .footer_img img {
  -o-object-fit: cover;
     object-fit: cover;
}
.footer_area .footer_center .footer_menu {
  display: flex;
  gap: 60px;
  justify-content: center;
  flex-wrap: wrap;
}
.footer_area .footer_center .footer_menu a {
  color: var(--heading-color-white);
}
.footer_area .footer_bottom {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #4D4C4C;
}
.footer_area .footer_bottom .copyright,
.footer_area .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) {
  .footer_area .footer_top .footer_subscribe .footer_img {
    display: none;
  }
  .footer_area .footer_top .footer_subscribe .frmSubscribe {
    width: 100%;
  }
}
@media (min-width: 48rem) {
  .nav-item a:focus, .nav-item a:hover, .nav-item a:active {
    color: #dfdada !important;
  }
}
@media (max-width: 767px) {
  .cuatom_btn {
    display: none;
  }
  .nav_header {
    background-color: #000;
  }
  .nav_header .navbar-brand img {
    width: 200px;
  }
  .footer_area .footer_top .footer_subscribe {
    padding: 30px;
  }
}
@media (max-width: 575px) {
  .footer_area.secondary .footer_top .footer_subscribe {
    padding: 25px 18px;
  }
  .footer_area.secondary .footer_center {
    text-align: start !important;
  }
  .footer_area.secondary .footer_center .footer_menu {
    gap: 25px;
    justify-content: start;
  }
  .footer_area.secondary .footer_bottom {
    display: block;
  }
  .footer_area.secondary .footer_bottom .copyright {
    margin-bottom: 20px;
  }
}
@media (max-width: 479px) {
  .in-box {
    display: block;
  }
  .in-box .form-control {
    height: 70px;
  }
  .in-box .btn_theme {
    width: 100%;
  }
}
body {
  background-color: var(--secondary-body-bg);
  color: var(--secondary-body-color);
}

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

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

p {
  color: var(--secondary-body-color);
}

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

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

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

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

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

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

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

.hero_section.secondary {
  min-height: 100vh;
  min-width: 100%;
  padding-top: 170px;
  padding-bottom: 80px;
  background: url(../images/hero_index2.jpg) no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero_section.secondary .text_area .hero_sub_title {
  color: var(--heading-color-white);
}
.hero_section.secondary .text_area h1 {
  color: var(--heading-color-white);
}
.hero_section.secondary::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  min-height: 100vh;
  height: 100%;
  background: var(--secondary-overlay-color);
}
.hero_section.secondary .animation .hero_layout::before {
  content: "";
  position: absolute;
  top: -20%;
  left: 275px;
  width: 400px;
  min-height: 140vh;
  height: 140%;
  background: rgba(251, 35, 5, 0.51);
  transform: rotate(-160.58deg);
}
.hero_section.secondary .animation .hero_layout::after {
  content: "";
  position: absolute;
  top: -20%;
  left: 260px;
  left: 390px;
  width: 355px;
  min-height: 140vh;
  height: 140%;
  background-color: var(--secondary-color);
  background: rgba(251, 35, 5, 0.51);
  transform: rotate(-160.58deg);
}

.about_section_secondary {
  position: relative;
}
.about_section_secondary:after {
  content: "";
  position: absolute;
  width: 50%;
  height: 100%;
  -webkit-clip-path: polygon(60% 0, 100% 0, 101% 100%, 35% 100%);
          clip-path: polygon(60% 0, 100% 0, 101% 100%, 35% 100%);
  background: var(--secondary-color);
  top: 0;
  right: 0;
  z-index: -1;
}
.about_section_secondary .img_part {
  position: relative;
}
.about_section_secondary .img_part .exprince {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 20px;
  background-color: var(--secondary-body-bg);
}
.about_section_secondary .img_part .exprince .text {
  padding: 40px;
  background-color: var(--secondary-color);
  font-family: var(--body-font-secondary);
  text-align: center;
}
.about_section_secondary .img_part .exprince .text h4, .about_section_secondary .img_part .exprince .text p {
  color: var(--heading-color-white);
}
.about_section_secondary .img_part .exprince .text h4 span, .about_section_secondary .img_part .exprince .text p span {
  display: block;
}

.why_choose_us.secondary {
  background: var(--secondary-custom-body-bg) url(../images/choose_bg_secondary.png) no-repeat;
  background-position: top right;
}

.client_company_section_secondary {
  background-color: var(--secondary-color);
}
.client_company_section_secondary .swiper-slide img {
  filter: var(--filter-img-color-light);
}
.client_company_section_secondary .swiper-wrapper {
  transition-timing-function: linear !important;
}

.services_section.secondary {
  background: url(../images/service_bg_second.png), url(../images/service_bg_second2.png);
  background-repeat: no-repeat;
  background-position: top left, bottom right;
}
.services_section.secondary .service .part {
  background-color: #fff;
  padding: 30px;
  border: 1px solid #E7E7E7;
  border-radius: 4px;
}
.services_section.secondary .service .part .img_icon {
  box-shadow: 0px 4px 28px rgba(251, 35, 5, 0.31);
  transition: 0.3s;
}
.services_section.secondary .service .part .details {
  display: flex;
  gap: 15px;
  align-items: center;
}
.services_section.secondary .service .part .details a,
.services_section.secondary .service .part .details span {
  color: var(--secondary-color);
}
.services_section.secondary .service .part h4 {
  transition: 0.3s;
}
.services_section.secondary .service .part:hover {
  box-shadow: 0px 4px 32px rgba(185, 185, 185, 0.25);
}
.services_section.secondary .service .part:hover h4 {
  color: var(--secondary-link-hover-color);
}
.services_section.secondary .service .part:hover .img_icon {
  box-shadow: none;
}

.client_review_section.secondary {
  background: url(../images/client_reviewer_bg_second.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}
.client_review_section.secondary::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  min-height: 100%;
  background: rgba(248, 248, 248, 0.8549019608);
}
.client_review_section.secondary::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 33%;
  min-height: 100%;
  background: url(../images/client_reviewer_bg_second2.jpg);
}
.client_review_section.secondary .star_review {
  color: #666666;
  display: flex;
  gap: 5px;
  justify-content: center;
  align-items: center;
}
.client_review_section.secondary .star_review .star_active {
  color: var(--secondary-color);
}
.client_review_section.secondary .client_content {
  max-width: 50ch;
}
.client_review_section.secondary .swiper-slide {
  background-color: var(--secondary-body-bg);
  padding: 40px;
}
.client_review_section.secondary .naviga {
  display: flex;
  justify-content: end;
  gap: 20px;
  margin-top: -15px;
}
.client_review_section.secondary .button-next,
.client_review_section.secondary .button-prev {
  background-color: var(--secondary-color);
  padding: 5px 10px;
  color: var(--heading-color-white);
}
.client_review_section.secondary .swiper {
  width: 100%;
  height: auto;
}

.contuct_section.secondary {
  background-color: var(--secondary-custom-body-bg);
  position: relative;
}
.contuct_section.secondary:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 43%;
  height: 100%;
  background-image: url(../images/contuct_second.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.contuct_section.secondary .contact_form.contact_input.grid_part_2 {
  gap: 24px;
}
.contuct_section.secondary .contact_form .form-control {
  box-shadow: 0px 4px 16px rgba(223, 223, 223, 0.25);
}

.countdown_section.secondary {
  background: url(../images/countdown_bg_second.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.countdown_section.secondary .countdown_number {
  color: var(--secondary-color);
}

.best_work_section.secondary .project {
  display: flex;
  flex-wrap: wrap;
}
.best_work_section.secondary .project .part {
  width: 25%;
  height: auto;
}
.best_work_section.secondary .project .part img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

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: 1.5rem;
  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: 99.9375rem) {
  .services_section.secondary {
    background-size: 40%, 17%;
  }
  .why_choose_us.secondary {
    background-size: 20%;
  }
}
@media (max-width: 61.9375rem) {
  .hero_section.secondary .animation .hero_layout {
    display: none;
  }
  .about_section_secondary .img_part {
    margin-top: 20px;
  }
  .about_section_secondary:after {
    display: none;
  }
  .why_choose_us.secondary .choose_img {
    display: none;
  }
  .countdown_section.secondary .countdown,
.grid_part_4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .services_section.secondary .grid_part_3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .contuct_section.secondary:before {
    background-image: none;
  }
}
@media (max-width: 47.9375rem) {
  .client_review_section.secondary::after {
    background-image: none;
  }
  .best_work_section.secondary .project .part {
    width: 50%;
  }
  .alert {
    margin-bottom: -5px !important;
    margin-top: 7px !important;
  }
}
@media (max-width: 35.938rem) {
  .contuct_section.secondary .contact_input {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 29.938rem) {
  .about_section_secondary .img_part .exprince .text {
    padding: 25px;
  }
  .why_choose_us.secondary .choose_us_text .grid_part_2 {
    grid-template-columns: repeat(1, 1fr);
  }
  .countdown_section.secondary .countdown,
.grid_part_4 {
    grid-template-columns: repeat(1, 1fr);
  }
  .services_section.secondary .grid_part_3 {
    grid-template-columns: repeat(1, 1fr);
  }
  .best_work_section.secondary .project .part {
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */