@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Tajawal:wght@200;300;400;500;700;800;900&display=swap");
/* Constant styles  */
/* Fonts */
@font-face {
  font-family: ghbol;
  src: url("../fonts/GOTHAM-BOLD.TTF");
}

@font-face {
  font-family: ghbla;
  src: url("../fonts/GOTHAM-BLACK.TTF");
}

@font-face {
  font-family: ghlig;
  src: url("../fonts/Gotham-Thin.otf");
}

@font-face {
  font-family: ghthi;
  src: url("../fonts/Gotham-Light.otf");
}

@font-face {
  font-family: ghmed;
  src: url("../fonts/Gotham-Medium.otf");
}

@font-face {
  font-family: ghbok;
  src: url("../fonts/GothamBook.ttf");
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
}

body {
  font-family: ghbok;
  line-height: normal !important;
}

input:focus,
select:focus,
textarea:focus {
  outline: 0 !important;
}

.clear {
  clear: both;
}

img {
  max-width: 100%;
}

a,
button {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

/* 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;
}

/* // Constant Styles */
.btn {
  background-color: #942e35;
  color: #fff;
  border-radius: 7px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

ul {
  margin-bottom: 0;
}

.form-control {
  border-radius: 7px;
  background-color: rgba(245, 247, 250, 0.386);
}

.form-control:focus {
  outline: 0 !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  background-color: rgba(255, 255, 255, 0.2);
}

@supports ((-webkit-backdrop-filter: none) or (backdrop-filter: none)) {
  .form-control {
    -webkit-backdrop-filter: blur(9px);
    backdrop-filter: blur(9px);
    background-color: rgba(255, 255, 255, 0.2);
  }
}

.splash {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.splash section {
  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;
  min-height: 100vh;
  background: #0c1b21;
}

.splash .loader {
  position: relative;
  width: 200px;
  height: 200px;
  -webkit-filter: url(#gooey);
          filter: url(#gooey);
  -webkit-animation: animate 16s linear infinite;
          animation: animate 16s linear infinite;
}

.splash .loader span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  -webkit-transform: rotate(calc(55deg * var(--i)));
          transform: rotate(calc(55deg * var(--i)));
}

.splash .loader span::before {
  content: '';
  position: absolute;
  top: 0;
  left: calc(50% - 20px);
  width: 40px;
  height: 40px;
  background: linear-gradient(45deg, #c7eeff, #03a9f4);
  border-radius: 50%;
  -webkit-box-shadow: 0 0 30px #00bc4d;
          box-shadow: 0 0 30px #00bc4d;
}

.splash .rotate {
  -webkit-animation: animate 4s ease-in-out infinite;
          animation: animate 4s ease-in-out infinite;
  -webkit-animation-delay: calc(-0.2s * var(--j));
          animation-delay: calc(-0.2s * var(--j));
}

@-webkit-keyframes animate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes animate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.splash svg {
  width: 0;
  height: 0;
}

.splash_none {
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}

h1 {
  font-family: ghmed;
}

p {
  font-family: ghbok;
}

.inner_text {
  font-size: 1.1rem;
  line-height: 30px;
}

.main_content {
  margin-top: -10px;
  position: relative;
  z-index: 99;
}

.transition-fade {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  opacity: 1;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
}

.transition-swip {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
}

html.is-animating .transition-fade {
  opacity: 0;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

html.is-animating .transition-swip {
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

.img_parent_cover {
  width: 100%;
  height: 100vh;
  position: relative;
}

.img_parent_cover .img_wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.img_parent_cover .img_wrapper img {
  -o-object-fit: cover;
     object-fit: cover;
  object-position: top;
  width: 100%;
  height: 100%;
}

button:focus,
input:focus {
  outline: 0 !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

/* menu icon */
.icon_menu {
  display: none;
}

.menu_icon {
  right: 0;
  cursor: pointer;
  /* Icon 1 */
}

.menu_icon #nav-icon1,
.menu_icon #nav-icon2,
.menu_icon #nav-icon3,
.menu_icon #nav-icon4 {
  width: 2.3rem;
  height: 0.8rem;
  position: relative;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

.menu_icon #nav-icon1 span,
.menu_icon #nav-icon3 span,
.menu_icon #nav-icon4 span {
  display: block;
  position: absolute;
  height: 0.2rem;
  width: 100%;
  background: #fff;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.45s ease-in-out;
  transition: 0.45s ease-in-out;
}

.menu_icon #nav-icon1 span:nth-child(1) {
  top: 0px;
}

.menu_icon #nav-icon1 span:nth-child(2) {
  top: 10px;
  left: unset;
  right: 0;
}

.menu_icon #nav-icon1.open span:nth-child(1) {
  top: 5px;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  width: 100%;
}

.menu_icon #nav-icon1.open span:nth-child(2) {
  top: 5.5px;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.compensate-for-scrollbar {
  margin-right: 0 !important;
}

.customnavbar {
  background-color: #942e35;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.customnavbar .navbar_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.customnavbar .navbar_wrapper .logo img {
  width: 200px;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.customnavbar .navbar_wrapper ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0;
}

.customnavbar .navbar_wrapper ul li {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.customnavbar .navbar_wrapper ul li a {
  color: #fff;
  padding: 35px 15px;
  display: block;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.customnavbar .navbar_wrapper ul li a i {
  margin-right: 3px;
}

.customnavbar .navbar_wrapper ul li:hover {
  background-color: #272727;
}

.customnavbar .navbar_wrapper ul li.active {
  background-color: #272727;
}

.fixed_navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
}

.fixed_navbar .navbar_wrapper .logo a img {
  width: 150px;
}

.fixed_navbar .navbar_wrapper ul li a {
  padding: 25px 15px;
}

.header_slider_parent {
  background-image: url("../images/header.jpg");
  background-position: center;
  background-size: cover;
  min-height: calc(100vh - 88px);
  position: relative;
}

.header_slider_parent::after {
  content: "";
  background-color: rgba(0, 0, 0, 0.6);
}

.header_slider_parent .header_slider {
  position: relative;
  z-index: 99;
}

.header_slider_parent .header_slider .header_content {
  min-height: calc(100vh - 88px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.header_slider_parent .header_slider .header_content .card_content {
  background-color: rgba(255, 255, 255, 0.2);
  padding: 40px;
  text-align: center;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.header_slider_parent .header_slider .header_content h5,
.header_slider_parent .header_slider .header_content p {
  color: #fff;
  font-size: 2.2rem;
  width: 60%;
}

.header_slider_parent .header_slider .header_content h5 span,
.header_slider_parent .header_slider .header_content p span {
  font-family: ghbol;
}

.header_slider_parent .header_slider .header_content a {
  color: #fff;
  background-color: #942e35;
  border-radius: 3px;
  padding: 15px 50px;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.header_slider_parent .header_slider .header_content a:hover {
  background-color: #fff;
  color: #942e35;
}

@supports ((-webkit-backdrop-filter: none) or (backdrop-filter: none)) {
  .header_slider_parent .header_content .card_content {
    -webkit-backdrop-filter: blur(9px);
    backdrop-filter: blur(9px);
    background-color: rgba(255, 255, 255, 0.2);
  }
}

.small_slider_image {
  padding: 50px 0;
}

.small_slider_image .smll_slider .slider_item {
  margin: 0 10px 10px 0;
}

.small_slider_image .smll_slider .img_parent_cover {
  display: block;
  width: 100%;
  max-width: 250px;
  height: 150px;
  overflow: hidden;
}

.small_slider_image .smll_slider .img_parent_cover img {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.small_slider_image .smll_slider .img_parent_cover:hover .img_wrapper img {
  -webkit-transform: scale(1.08) rotate(1.1deg);
          transform: scale(1.08) rotate(1.1deg);
}

.head_section {
  font-family: ghbol;
  text-transform: uppercase;
  font-size: 1.8rem;
  position: relative;
  padding-left: 15px;
}

.head_section::before {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 5px;
  background-color: #942e35;
}

.opsite_section {
  color: #fff;
}

.opsite_section::before {
  background-color: #fff;
}

.what_we_offer {
  background-color: #f1f1f1;
  padding: 100px 0;
}

.what_we_offer .offer_cards {
  margin-top: 50px;
}

/* offer_card */
.offer_card {
  text-align: center;
  padding: 30px;
}

.offer_card img {
  margin-bottom: 10px;
}

.offer_card h5 {
  font-family: ghmed;
}

.offer_card p {
  line-height: 19px;
}

/* for_more_contact */
.for_more_contact {
  margin: 50px 0;
}

.for_more_contact .for_contact_wrapper {
  background-color: #942e35;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.for_more_contact .for_contact_wrapper p {
  color: #fff;
  width: 50%;
  margin: 0;
  line-height: 25px;
  font-size: 1.2rem;
}

.for_more_contact .for_contact_wrapper a {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  background-color: #fff;
  padding: 15px 40px;
  color: #000;
}

.for_more_contact .for_contact_wrapper a:hover {
  background-color: #272727;
  color: #fff;
}

.about_falh {
  background-color: #f7f7f7;
  padding-top: 50px;
}

.about_falh .falah_image {
  text-align: center;
}

:root {
  --colorPrincipal: #7db4b5;
  --colorSecundario: #680148;
  --colorSombra: rgba(125, 180, 181, 0.2);
}

.timeline {
  position: relative;
  margin: 0px auto;
  padding: 40px 0;
  width: 100%;
  background-color: #f7f7f7;
  overflow: hidden;
  /*Contenido*/
}

.timeline .wave_timeline {
  position: absolute;
  top: 89%;
  width: 100%;
  height: 100%;
  opacity: 0.2;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  width: 2px;
  height: 100%;
  background-color: #e4e4e4;
}

.timeline ul li {
  list-style: none;
  position: relative;
  width: 50%;
  padding: 0px 40px;
}

.timeline ul li:hover .time {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.timeline ul li:nth-child(odd) {
  float: left;
  text-align: right;
  clear: both;
}

.timeline ul li:nth-child(even) {
  float: right;
  text-align: left;
  clear: both;
  padding: 0px 10px;
}

.timeline ul li::before {
  content: "";
  position: absolute;
  top: 10px;
  width: 10px;
  height: 10px;
  background-color: var(--colorPrincipal);
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 3px var(--colorSombra);
          box-shadow: 0 0 0 3px var(--colorSombra);
}

.timeline ul li:nth-child(odd)::before {
  right: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.timeline ul li:nth-child(even)::before {
  left: -20px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.timeline ul li:hover::before {
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
}

.timeline .time {
  display: inline-block;
  font-weight: 400;
  font-size: 14px;
  padding: 5px 10px;
  margin-bottom: 15px;
  background-color: #e0eff1;
  color: var(--colorSecundario);
  border-radius: 20px;
  -webkit-box-shadow: 0 0 0 3px var(--colorSombra);
          box-shadow: 0 0 0 3px var(--colorSombra);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.timeline h3 {
  font-size: 1rem;
  margin-bottom: 0;
}

.timeline .content {
  padding-bottom: 20px;
}

.timeline .content p {
  line-height: 25px;
}

.timeline .timeline ul li h2 {
  font-weight: 500;
  color: var(--colorPrincipal);
}

.timeline .timeline ul li p {
  margin: 10px 0;
  line-height: 25px;
}

.team {
  margin: 50px 0;
  margin-top: 0;
  margin-bottom: 0;
  background-color: #942e35;
  padding: 100px 0;
}

.team .team_cards {
  margin-top: 50px;
}

.team_card .img_parent_cover {
  height: 200px;
  width: 100%;
  display: block;
  margin-bottom: 20px;
  overflow: hidden;
}

.team_card .img_parent_cover img {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.team_card .img_parent_cover:hover .img_wrapper img {
  -webkit-transform: scale(1.08) rotate(1.1deg);
          transform: scale(1.08) rotate(1.1deg);
}

.slick-arrow::before {
  content: "";
}

.slick-arrow.slick-next {
  right: 0;
  border: none;
  width: 45px;
  height: 45px;
  background: url("../images/arrow-right.png") no-repeat;
  cursor: pointer;
  background-position: center;
  background-size: contain;
  z-index: 9;
}

.slick-arrow.slick-next::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0.3;
  z-index: -1;
  padding: 50px 20px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  left: 0;
}

.slick-arrow.slick-prev {
  left: 0;
  border: none;
  width: 45px;
  height: 45px;
  background: url("../images/arrow-left.png") no-repeat;
  cursor: pointer;
  background-position: center;
  background-size: contain;
  z-index: 9;
}

.slick-arrow.slick-prev::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0.3;
  z-index: -1;
  padding: 50px 20px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  left: 0;
}

.our_projects {
  background-color: #272727;
  padding: 100px 0;
}

.our_projects .project_on_ground_slider {
  margin-top: 50px;
}

/* project_card */
.project_card {
  cursor: pointer;
  margin-bottom: 20px;
}

.project_card .img_parent_cover {
  height: 250px;
  width: 100%;
  overflow: hidden;
}

.project_card .img_parent_cover .title {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #25c4aa;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.project_card .img_parent_cover .title h5 {
  color: #fff;
  font-family: ghmed;
  font-size: 1.5rem;
  text-transform: uppercase;
}

.project_card .img_parent_cover .list {
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  position: absolute;
  top: -100px;
}

.project_card .img_parent_cover img {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.project_card .img_parent_cover:hover .title {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.project_card .img_parent_cover:hover .img_wrapper img {
  -webkit-transform: scale(1.08) rotate(1.1deg);
          transform: scale(1.08) rotate(1.1deg);
}

/*Elementos de lista*/
/*Circulo indicador*/
/*Fecha*/
.contact_inforamtion {
  background-color: #eaeaea;
  padding: 116px 0;
}

/* contact_card */
.contact_card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}

.contact_card .card_icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #942e35;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  margin-right: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.contact_card .card_icon i {
  font-size: 1.6rem;
  color: #fff;
}

.contact_card .card_content p,
.contact_card .card_content a {
  font-family: ghmed;
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: #000;
}

/* contact_map */
.contact_map iframe {
  width: 100%;
  height: 575px;
}

footer {
  text-align: center;
  background-color: #942e35;
  padding: 50px 0;
}

footer a {
  border: 1px solid #fff;
  padding: 15px;
  color: #fff !important;
}

footer a i {
  color: #fff;
  font-size: 1.2rem;
}

.project_detaisl_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #272727;
  padding: 30px;
  overflow-y: scroll;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-40px);
          transform: translateY(-40px);
  z-index: -1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.project_detaisl_overlay .close_overlay {
  position: absolute;
  top: 30px;
  right: 30px;
  background-color: #fff;
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  border-radius: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.project_detaisl_overlay .close_overlay i {
  color: #942e35;
  font-size: 1rem;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.project_detaisl_overlay .close_overlay:hover {
  background-color: #942e35;
}

.project_detaisl_overlay .close_overlay:hover i {
  color: #fff;
}

.project_detaisl_overlay .row {
  width: 100%;
}

.project_detaisl_overlay .img_parent_cover {
  height: 600px;
  display: block;
}

.project_detaisl_overlay .img_parent_cover img {
  -o-object-position: top;
     object-position: top;
}

.project_detaisl_overlay .wrapper {
  padding-top: 150px;
}

.project_detaisl_overlay .wrapper .project_content h5,
.project_detaisl_overlay .wrapper .project_content p {
  color: #fff;
}

.project_detaisl_overlay .wrapper .project_content h5 {
  font-size: 2rem;
  font-family: ghbol;
}

.project_detaisl_overlay .wrapper .project_content p {
  line-height: 27px;
  font-size: 1.1rem;
}

.project_detaisl_overlay .wrapper .project_content ul li {
  margin-bottom: 15px;
  color: #fff;
}

.project_detaisl_overlay .wrapper .project_content ul li span {
  font-family: ghmed;
}

.project_detaisl_overlay_active {
  -webkit-transform: translateY(0) !important;
          transform: translateY(0) !important;
  opacity: 1 !important;
  visibility: visible !important;
  z-index: 9999 !important;
}

#floating {
  position: fixed;
  z-index: 1;
  width: 45px;
  height: 45px;
  line-height: 70px;
  text-align: center;
  bottom: 15px;
  right: 20px;
  cursor: pointer;
  background-color: #942e35;
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.6);
          box-shadow: 0 3px 5px rgba(0, 0, 0, 0.6);
  opacity: 0;
  z-index: 999;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#floating i {
  color: #fff;
  font-size: 1.2rem;
}

@media (max-width: 1366px) {
  .project_detaisl_overlay .wrapper {
    padding-top: 30px;
  }
}

@media (max-width: 1024px) {
  .timeline .wave_timeline {
    top: 92%;
  }
}

@media (max-width: 991px) {
  .customnavbar .navbar_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .slick-arrow {
    width: 35px !important;
    height: 35px !important;
  }
  .slick-arrow.slick-next::after,
  .slick-arrow.slick-prev::after {
    padding: 24px 20px;
  }
  .timeline ul li {
    width: 100%;
  }
  .project_detaisl_overlay {
    padding-top: 100px;
  }
  .our_projects .slick-arrow {
    top: unset;
    bottom: 0 !important;
    -webkit-transform: translate(0) !important;
            transform: translate(0) !important;
  }
  .timeline::before,
  .wave_timeline {
    display: none;
  }
}

@media (max-width: 524px) {
  html {
    font-size: 14px;
  }
  .customnavbar .navbar_wrapper ul li a {
    padding: 20px 8px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
  .header_slider_parent .header_slider .header_content h5,
  .header_slider_parent .header_slider .header_content p {
    width: 100%;
    font-size: 2rem;
  }
  .small_slider_image .smll_slider .img_parent_cover {
    max-width: 100%;
  }
  .for_more_contact .for_contact_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .for_more_contact .for_contact_wrapper p {
    width: 100%;
    margin-bottom: 20px;
  }
  .timeline ul li {
    padding: 0 25px !important;
  }
  .timeline ul li:nth-child(even) {
    padding: 0 0 !important;
  }
  .about_falh .falah_image {
    margin-top: 20px;
  }
  .splash .loader {
    position: relative;
    width: 200px;
    height: 200px;
  }
  .splash .loader span::before {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 320px) {
  html {
    font-size: 14px;
  }
  .customnavbar .navbar_wrapper ul li a {
    padding: 33px 7px;
  }
}

/* Shared styles  */
.header_slider_parent::after {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
/*# sourceMappingURL=style.css.map */