/* Typo Import */

/*Common css*/

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;

  box-sizing: border-box;
}

:root {
  --orange: #f77c1e;

  --dark-orange: #ee5e1f;

  --white: #fff;

  --grey: #ffffffc4;

  --black: #000;

  --blue: #1a2934;

  --normal: 400;

  --medium: 500;

  --semibold: 600;

  --bold: 700;

  --extrabold: 800;

  --transition: 0.5s all ease-in-out;

  --font: "museo-sans", sans-serif;
}

html {
  line-height: 1.15;

  -webkit-text-size-adjust: 100%;

  -webkit-tap-highlight-color: var(--light-black);

  scroll-behavior: smooth;
}

body {
  font-family: var(--font);

  margin: 0;

  font-size: 1rem;

  font-weight: var(--normal);

  line-height: 1.5;

  color: var(--black);

  font-style: normal;
}

img {
  max-width: 100%;

  width: 100%;
}

a {
  color: var(--black);

  text-decoration: none;

  background-color: transparent;

  outline: none;

  transition: var(--transition);
}

a:hover {
  color: var(--orange);

  transition: var(--transition);
}

h1,
h2,
h3 {
}

h4 {
}

h5,
h6 {
}

h1 {
  font-size: 4.4rem;

  line-height: 1.2em;

  font-weight: var(--bold);
}

h2 {
  font-size: 2.6rem;

  line-height: 1.2em;

  font-weight: var(--medium);
}

h3 {
  font-size: 2.2rem;

  line-height: 1.2em;
}

h4 {
  font-size: 1.3em;
}

/* Font Classes */

.font-weight-normal {
  font-weight: var(--normal);
}

.font-weight-medium {
  font-weight: var(--medium);
}

.font-weight-bold {
  font-weight: var(--bold);
}

.font-weight-extra-bold {
  font-weight: var(--extra-bold);
}

/* Color Classes */

.button a {
  background: transparent;

  border: 2px solid var(--orange);

  padding: 0.5em 1em;

  position: relative;

  z-index: 0;
}

.button a::after {
  content: "";

  position: absolute;

  z-index: -1;

  height: 100%;

  left: 0;

  top: 0;

  width: 100%;

  transform: scaleY(0);

  -webkit-transition: var(--transition);

  -moz-transition: var(--transition);

  -o-transition: var(--transition);

  transition: var(--transition);

  transform-origin: top;
}

.button a:hover::after {
  background: var(--orange);

  transform: scaleY(1);

  -webkit-transition: var(--transition);

  -moz-transition: var(--transition);

  -o-transition: var(--transition);

  transition: var(--transition);
}

.button.button_triggered a {
  background: var(--orange);
}

.button.button_triggered a:hover {
  background: transparent;

  color: var(--white) !important;
}

/* Buttons */

/* Presets Classes */
ol,
ul {
  list-style: disc;
  padding-left: 0em !important;
  margin-left: 1.5em;
}
.container {
  max-width: 1300px;
}

.p-top {
  padding-top: 6rem;
}

.p-bottom {
  padding-bottom: 6rem;
}

/* Common Blocks */

/* nav links */

.nav-links {
  padding: 4em 0em 3em;
}

.nav-links a {
  background-color: var(--blue);

  color: var(--white);

  padding: 1em 2em;

  font-weight: var(--bold);
}

.nav-links a:hover {
  background-color: var(--orange);
}

/* comments */

#comments {
  padding-top: 3em;
}

#commentform .form-submit #submit {
  background-color: var(--orange);

  color: var(--white);

  padding: 1em 1em;

  border: 1px solid var(--orange);
}

#commentform .form-submit #submit:hover {
  background-color: transparent;

  color: var(--orange);

  border: 1px solid var(--orange);
}

/* Post Meta */

.post-meta {
  font-weight: var(--bold);

  margin-bottom: 2em;
}

.post-meta > span,
.post-meta > span a {
  text-transform: uppercase;

  color: var(--orange);
}

/* Category & Tags */

.entry-footer .cat-tags-links {
  display: table-cell;

  vertical-align: middle;

  width: 100%;
}

.tags-links,
.cat-links {
  font-size: 0.9rem;

  text-transform: uppercase;

  letter-spacing: 1px;
}

/* Entry Header */

.single-post .entry-header .divider {
  width: 10%;

  height: 5px;

  background-color: var(--orange);

  margin-bottom: 0.8em;
}

.single-post .entry-header .entry-title {
  font-size: 3.7rem;
}

/* Entry Footer */

.page-content,
.entry-content,
.entry-summary {
  margin: 0em 0 0;
}

.entry-footer {
  display: table;

  width: 100%;
}

.entry-footer a.post-edit-link {
  background-color: var(--black);

  -webkit-border-radius: 2px;

  border-radius: 2px;

  -webkit-box-shadow: none;

  box-shadow: none;

  color: var(--white);

  display: inline-block;

  font-size: 14px;

  font-size: 0.875rem;

  font-weight: 800;

  margin-top: 2em;

  padding: 0.7em 2em;

  -webkit-transition: background-color 0.2s ease-in-out;

  transition: background-color 0.2s ease-in-out;

  white-space: nowrap;
}

.entry-footer .edit-link {
  position: fixed;

  width: 50px;

  height: 50px;

  background-color: var(--orange);

  border-radius: 50%;

  text-align: center;

  right: 1em;
}

.entry-footer .edit-link a {
  line-height: 50px;

  font-weight: var(--bold);

  color: var(--white);

  display: block;
}

/*Header CSS*/

/* Logo */

.custom-logo {
  width: auto;

  position: relative;

  bottom: 0rem;

  max-width: 200px;

  transition: var(--transition);

  height: 80px;

  object-fit: contain;
}

/* Header */

header.site-header {
  position: fixed;

  width: 100%;

  z-index: 5;

  top: 1;

  background: transparent linear-gradient(180deg, #000000ce 0%, #00000000 100%)
    0% 0% no-repeat padding-box;

  padding: 0em 0em;
}

header.site-header.sticky {
  background-color: #000000a8;
}

header.site-header > .navbar-brand {
  flex: 1 1 20%;

  text-align: center;
}

.custom-logo-link {
  margin-top: -1em;
}

#site-navigation {
  padding-top: 0em;
}

.navbar-toggler {
  outline: none !important;

  border: 0px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  width: 1.5em;

  height: 1.5em;
}

#navbar-list {
  justify-content: end;
}

.site-branding > nav {
  padding: 0em;
}

header.site-header .menu_ul {
  display: flex;

  list-style-type: none;

  gap: 2.5em;

  margin-bottom: 0em;

  padding: 0em;

  align-items: center;
}

header.site-header .menu_ul li {
  font-size: 1.1em;
}

.main-navigation a {
  font-weight: var(--bold);

  color: var(--white) !important;

  font-size: 1rem;

  padding-bottom: 2em;
}

.main-navigation .button a {
  padding: 0.5em 1em;

  margin-top: -2em;
}

header.site-header .menu_ul .current-menu-item {
  font-weight: 500;

  transition: var(--transition);
}

header.site-header .menu_ul li:hover {
  font-weight: 500;

  transition: var(--transition);
}

.menu_container .menu-item-has-children {
  position: relative;
}

.menu_container .menu-item-has-children > span > a {
  position: relative;
}

.menu_container .menu-item-has-children > span > a::after {
  content: "\f107";

  position: absolute;

  font-family: "FontAwesome";

  width: 5px;

  height: 5px;

  right: -0.6em;

  left: auto;

  color: var(--white);

  top: 1px;

  font-size: 15px;
}

.menu_container .menu-item-has-children .sub-menu {
  position: absolute;

  list-style-type: none;

  display: none;

  padding: 1rem 0rem;

  min-width: 250px;

  background-color: var(--orange);

  left: -1rem;

  margin-top: -1em;
}

.menu_container .menu-item-has-children .sub-menu::before {
  bottom: 100%;

  left: 30%;

  border: solid transparent;

  content: "";

  height: 0;

  width: 0;

  position: absolute;

  pointer-events: none;

  border-color: rgba(136, 183, 213, 0);

  border-bottom-color: var(--orange);

  border-width: 10px;

  margin-left: -30px;
}

.menu_container .menu-item-has-children:hover .sub-menu {
  display: block;
}

.menu_container .menu-item-has-children .sub-menu a {
  padding: 0.6rem 1rem 0.5rem;

  display: block;

  width: 100%;

  font-size: 1rem;
}

.menu_container .menu-item-has-children .sub-menu a:hover {
  background-color: var(--dark-orange);
}

.main-navigation .button a:hover {
  color: var(--white);
}

/* Header Top */

.header-top ul {
  display: flex;

  justify-content: right;

  list-style-type: none;

  gap: 2em;

  margin: 0em auto;

  padding: 0em;
}

.header-top ul a {
  color: #969696;
}

/*Footer CSS*/

.site-footer {
  background-color: #1a2934;

  padding: 2em 1em;
}

.site-footer .custom-logo-link {
  position: relative;
}
.site-footer .footer-logos {
  position: relative;
  display: flex;
  align-content: center;
  gap: 1em;
}
.site-footer .footer-logos > .elite-logo {
  width: 115px;
}
.site-footer .footer-logos::after {
  content: "";

  position: absolute;

  width: 70%;

  right: 0;

  height: 1px;

  background-color: #707070;

  top: 50%;

  transform: translateY(-50%);
}

#footer_menu {
  padding: 0em;

  display: flex;

  list-style-type: none;

  gap: 2em;

  margin: 1.5em 0em 0em 1em;
}

#footer_menu a {
  color: var(--white);

  font-weight: var(--bold);
}

.site-footer .custom-logo {
  height: 65px;
}

.copyright {
  text-align: right;
}

.copyright p {
  margin: 0em;

  color: var(--white);

  font-weight: var(--bold);
}

.copyright p a {
  color: var(--white);
}

.social-icons {
  justify-content: center;

  display: flex;

  gap: 1em;
}

.social-icons a {
  color: var(--white);
}
.get_quote_btn {
  position: fixed;
  background: var(--orange);
  top: 60%;
  padding: 0.5em 1em;
  font-weight: 700;
  color: var(--white) !important;
  right: -45px;
  transform: rotate(-90deg);
  z-index: 999;
}
.get_quote_btn:hover {
  background: var(--dark-orange);
}

/* Home Page */

.slider-fraction-style {
  position: relative;
}

.slider-fraction-style .elementor-widget .swiper {
  padding-bottom: 0em !important;
}

.slider-fraction-style .elementor-widget .swiper-pagination {
  position: absolute;

  top: -20px;

  color: #363636;

  left: 95%;
}

.slider-fraction-style
  .elementor-widget
  .swiper-pagination
  .swiper-pagination-current {
  font-size: 2em;

  font-weight: 600;

  color: var(--orange);
}

.home_contact_form input,
.home_contact_form textarea {
  background-color: #a3a9ad;

  border-radius: 1px;

  border-color: #fff;

  margin-bottom: 1rem;

  width: 100%;

  color: var(--black);

  padding: 0.7em;
}

.home_contact_form textarea {
  height: 5em;
}

.home_contact_form input.wpcf7-submit {
  background-color: transparent !important;

  border: 2px solid var(--orange) !important;

  width: auto;

  padding: 0.7em 0em;

  min-width: 100px;

  font-size: 1.3em;

  font-weight: var(--bold);
}

.home_contact_form input.wpcf7-submit:hover {
  background-color: var(--orange) !important;
}

.home_contact_form input:focus-visible,
.home_contact_form textarea:focus-visible {
  border: 2px solid var(--orange);

  outline: none;
}

.wpcf7 form.sent .wpcf7-response-output {
  color: #fff !important;
}

/* Chrome, Safari, Edge, Opera */

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;

  margin: 0;
}

/* Firefox */

input[type="number"] {
  -moz-appearance: textfield;
}

input::placeholder,
textarea::placeholder {
  opacity: 1 !important; /* Firefox */
  color: #fff;
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  /* Edge 12 -18 */

  opacity: 1 !important;
  color: #fff;
}

/* Single Blog */

.post-thumbnail .attachment-post-thumbnail {
  height: 60vh;

  object-fit: cover;

  object-position: bottom;
}

.single-post .entry-content h2 {
  margin-top: 1em;
}

.single-post .post-thumbnail {
  position: relative;
}

.single-post .post-thumbnail::after {
  content: "";

  position: absolute;

  width: 100%;

  height: 100%;

  background: var(--black);

  left: 0;

  top: 0;

  opacity: 0.5;

  background: linear-gradient(
    180deg,
    rgb(0, 0, 0) 50%,

    rgba(255, 255, 255, 0) 100%
  );
}

/* Single Service Area */

.single-service-area .navigation.post-navigation {
  display: none;
}

/* Lead form */
.home_contact_form input.upload_plan {
  width: auto;
  margin: auto;
  accent-color: var(--orange);
}
.home_contact_form .wpcf7-list-item {
  color: #fff;
  margin: 0em 0em 1em;
}
.wpcf7-form-control-wrap[data-name="file-489"] {
  display: none;
}
.wpcf7-form p {
  margin: 0em;
}

/* Service Area Slider */
.service-area-slider img {
  aspect-ratio: 3/2;
  object-position: center;
  object-fit: cover;
}

/*Responsive code*/

@media only screen and (min-width: 1600px) and (max-width: 1920px) {
}

@media only screen and (max-width: 1400px) {
}

@media only screen and (min-width: 1100px) and (max-width: 1300px) {
  header.site-header .menu_ul {
    gap: 2em;
  }
  .main-navigation a {
    font-size: 0.9rem;
  }
}

@media only screen and (max-width: 1000px) {
}

@media only screen and (min-width: 768px) and (max-width: 1100px) {
  header.site-header .menu_ul {
    gap: 1.7em;
  }
}

@media only screen and (max-width: 1023px) {
  /* Typography */

  /* Presets */

  /*Header*/

  .custom-logo {
    max-width: 150px;

    image-rendering: smooth;
  }

  .navbar-brand {
    padding: 0rem 0rem 1rem 1rem;
  }

  #navbar-list {
    position: absolute;

    background-color: var(--white);

    width: 100%;

    padding: 2em 0em 3em;

    top: 5em;
  }

  header.site-header .navbar #navbar-list ul {
    flex-wrap: wrap;

    flex-direction: column;

    padding: 0em;

    gap: 1.2em;

    text-align: center;
  }

  .menu_container .menu-item-has-children {
    position: relative;

    text-align: center;
  }

  .menu_container .menu-item-has-children .sub-menu {
    position: relative;

    min-width: auto;

    left: 0rem;
  }

  .menu_container .menu-item-has-children::after {
    color: var(--black);
  }

  .menu_container .menu-item-has-children .sub-menu a {
    font-size: 0.9rem !important;
  }

  .menu_container .menu-item-has-children.show-submenu .sub-menu {
    display: block;
  }

  .menu-toggle {
    display: block;

    background-color: transparent !important;

    border: 0px !important;
  }

  header.site-header > .container {
    padding: 0em;
  }

  .main-navigation a {
    color: var(--black) !important;

    padding-bottom: 0em;
  }

  .main-navigation .button a {
    margin-top: 0em;
  }

  header.site-header .menu_ul li .sub-menu {
    margin-top: 1em;
  }

  .menu_container .menu-item-has-children > span > a::after {
    color: var(--black);

    top: 1px;

    right: auto;

    padding-left: 0.3em;
  }

  header.site-header .menu_ul li.show-submenu .sub-menu {
    display: block;
  }

  .menu_container .menu-item-has-children .sub-menu::before {
    left: 50%;

    margin-left: 0;

    transform: translateX(-50%);
  }

  /* Footer */

  .site-footer {
    text-align: center;
  }

  #footer_menu {
    justify-content: center;

    margin: 1.5em 0em 0em 0em;
  }

  .copyright p {
    margin: 1em 0em 0.5em;
  }

  .copyright {
    text-align: center;

    padding-top: 2em;
  }

  .site-footer .custom-logo-link::after {
    display: none;
  }

  /* Home Page */

  .e-hotspot__tooltip {
    display: none !important;

    max-width: 200px;

    text-wrap: wrap !important;
  }

  /* Single Blog */

  .nav-links .nav-title {
    display: none;
  }

  .single-post .entry-header .entry-title {
    font-size: 2.5rem;
  }

  .single-post .entry-content h2 {
    margin-top: 1em;

    font-size: 2.2em;
  }
}

@media only screen and (max-width: 767px) {
  /* Header */

  .header-top ul {
    justify-content: end;

    gap: 1em;

    text-align: center;
  }

  .header-top {
    padding-top: 0.4em;
  }
  .header-top ul a span {
    display: none;
  }

  .header-top ul a {
    font-size: 0.9em;
  }

  .navbar-brand {
    padding: 0rem 0rem 0rem 0rem;
  }

  .site-branding {
    padding-top: 1em;
  }

  .custom-logo {
    max-width: 110px;
  }

  /* Footer */

  #footer_menu {
    flex-wrap: wrap;

    flex-direction: column;

    gap: 1em;
  }
  .site-footer .footer-logos {
    justify-content: center;
  }
  .site-footer .footer-logos::after {
    display: none;
  }
}

@media (min-width: 320px) and (max-width: 415px) {
  /* Home Page */

  .home_contact_form input.wpcf7-submit {
    width: 100%;
  }
}
