@charset "UTF-8";
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  outline: none;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, li {
  list-style: none;
}

body {
  width: 100%;
  height: 100%;
  font-family: "DM Sans", sans-serif;
  background-color: #FFFEF5;
  overflow-x: hidden !important;
}

section {
  display: flex;
  flex-direction: column;
}

.devis_cta {
  background-color: #FFFFFF;
  padding: 16px 16px;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0%;
  color: #000000;
  border-radius: 30px;
}

.gs-scrub {
  opacity: 1;
}

.gsap-anim {
  will-change: transform, opacity;
  opacity: 0;
  transition: opacity 0.2s ease-out, transform 0.2s ease-out;
}

/* individual directions */
.fade-in {
  transform: translate3d(0, 0, 0);
}

.fade-up {
  transform: translate3d(0, 40px, 0);
}

.fade-down {
  transform: translate3d(0, -40px, 0);
}

.fade-left {
  transform: translate3d(40px, 0, 0);
}

.fade-right {
  transform: translate3d(-40px, 0, 0);
}

/* 
** Start Header
*/
header {
  position: absolute;
  width: 100%;
  padding: 0 60px;
  top: 52px;
  left: 0;
  display: flex;
  justify-content: space-between;
  z-index: 1;
}
header nav {
  display: flex;
  align-items: center;
  justify-content: center;
}
header nav.l_nav {
  gap: 100px;
}
header nav.l_nav .logo {
  position: relative;
}
header nav.l_nav .logo::after {
  content: "";
  position: absolute;
  top: -13px;
  right: -50px;
  width: 1.5px;
  height: calc(100% + 26px);
  background-color: rgba(255, 255, 255, 0.4);
}
header nav.r_nav {
  display: flex;
  align-items: center;
}
header .nav_list {
  display: flex;
  align-items: center;
  gap: 38px;
}
header .nav_list a {
  font-family: DM Sans 36pt;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 14px;
  line-height: 23px;
  letter-spacing: 5%;
  vertical-align: middle;
  color: #FFFFFF;
  text-transform: uppercase;
  text-transform: uppercase;
  position: relative;
  will-change: transform;
}
header .nav_list a::after {
  background: currentColor;
  bottom: -2px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.5s cubic-bezier(1, 0, 0, 1);
  width: 100%;
  will-change: transform;
}
header .nav_list a:hover::after {
  transform: scaleX(1);
  transform-origin: left center;
}

header .menu_btn{
  display: none;
  align-items: center;
  gap: 13px;
  cursor: pointer;
}

header .menu_btn span {
  font-weight: 800;
  font-size: 14px;
  line-height: 100%;
  text-transform: uppercase;
  color: #FFFFFF;
}
header .menu_btn .btn {
  width: 50px;
  height: 50px;
  backdrop-filter: blur(20px);
  background-color: #FFFFFF1A;
  position: relative;
  border-radius: 50%;
  transition: 0.4s ease-in-out;
}

header .menu_btn .btn::after,
header .menu_btn .btn::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 1px;
  background-color: #fff;
  inset: 0;
  transition: 0.4s ease-in-out;
  margin: auto;
}

header .menu_btn .btn::after {
  transform: translateY(-3px);
}

header .menu_btn .btn::before {
  transform: translateY(3px);
}

body.menu_opened {
  overflow: hidden;
}
body.menu_opened header .menu_btn .btn {
  transform: rotate(45deg);
}
body.menu_opened header .menu_btn .btn::before {
  transform: translateY(0px) rotate(90deg);
}

body.menu_opened header .menu_btn .btn::after {
  transform: translateY(0px);
}

.container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}

/* Home page */
.home_page .hero {
  position: relative;
  isolation: isolate;
  display: flex;
  justify-content: center;
  height: 100vh;
  overflow: hidden;
}
.home_page .hero .bg_img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.home_page .hero .bg_img::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, #000000, #000000), linear-gradient(180deg, rgba(0, 0, 0, 0.4) 60.26%, rgba(0, 0, 0, 0) 94.19%);
  opacity: 0.4;
}
.home_page .hero .bg_img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home_page .hero h1 {
  font-weight: 600;
  font-style: SemiBold;
  font-size: 64px;
  line-height: 70px;
  letter-spacing: 0%;
  text-align: center;
  color: #FFFFFF;
}
.home_page .discover .container {
  padding: 98px 105px 95px;
}
.home_page .discover .content_header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  max-width: 1093px;
}
.home_page .discover .content_header h3 {
  font-weight: 500;
  font-style: Medium;
  font-size: 25px;
  line-height: 34px;
  letter-spacing: 0%;
  color: #121212;
  max-width: 550px;
  width: 100%;
}
.home_page .discover .content_header .r_block {
  max-width: 346px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.home_page .discover .content_header .r_block p {
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  color: rgba(0, 0, 0, 0.6509803922);
}
.home_page .discover .content_header .r_block a.cta {
  margin-top: 45px;
  font-weight: 600;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 5%;
  text-transform: uppercase;
  color: #121212;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.home_page .discover .content_imgs {
  margin-top: -83px;
}
.home_page .discover .content_imgs .images {
  display: flex;
  align-items: flex-end;
  gap: 40px;
}
.home_page .domains {
  padding: 20px 0 95px 0;
}
.home_page :is(.domains, .domain_mobile) .content .headline {
  font-weight: 600;
  font-size: 50px;
  line-height: 60px;
  letter-spacing: 0%;
  text-align: center;
}
.home_page :is(.domains, .domain_mobile) .content .sub_headline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 168px;
  position: relative;
}
.home_page :is(.domains, .domain_mobile) .content .sub_headline::after {
  content: "";
  position: absolute;
  height: 1.5px;
  width: 106px;
  inset: 0;
  margin: auto;
  background-color: rgba(0, 0, 0, 0.6509803922);
}
.home_page :is(.domains, .domain_mobile) .content .sub_headline span {
  font-weight: 300;
  font-size: 50px;
  line-height: 60px;
  letter-spacing: 0%;
  text-align: center;
  font-style: italic;
  color: rgba(0, 0, 0, 0.6509803922);
}
.home_page :is(.domains, .domain_mobile) .content .s_p {
  font-weight: 500;
  font-style: Medium;
  font-size: 25px;
  line-height: 33px;
  letter-spacing: 0%;
  text-align: center;
  color: #121212;
  margin-top: 23px;
}
.home_page .domains .slider_block {
  width: 100%;
  max-width: 1150px;
  margin-top: 70px;
  position: relative;
  left: 190px;
  right: 190px;
}
.home_page .domains .slider_block .s_wraper {
  display: flex;
  align-items: center;
}
.home_page .domains .slider_block .images_slider {
  margin-right: 113px;
}
.home_page .domains .slider_block .images_slider .swiper {
  width: 100%;
  max-width: 288px;
  width: 100%;
  height: 392px;
}
.home_page .domains .slider_block .images_slider .swiper img {
  width: 100%;
}
.home_page .domains .slider_block .images_slider .swiper .parallax_wrapper {
  width: 100%;
  height: 100%;
}
.home_page .domains .slider_block .images_slider .swiper .parallax_wrapper.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.home_page .domains .slider_block .headers_sliders {
  width: 100%;
  max-width: 300px;
  margin-right: 85px;
}
.home_page :is(.domains, .domain_mobile) .ctrl {
  font-weight: 600;
  font-size: 18px;
  line-height: 36px;
  letter-spacing: 0%;
  color: #121212;
}
.home_page .domain_mobile .ctrl {
  text-align: center;
}
.home_page :is(.domains, .domain_mobile) .header_b {
  font-weight: 600;
  font-size: 28px;
  line-height: 36px;
  letter-spacing: 0%;
  color: #121212;
}
.home_page .domains .slider_block .headers_sliders .header_s {
  height: 120px;
  width: 100%;
  max-width: 284px;
  margin-top: 10px;
}
.home_page .domains .slider_block .desc_slider {
  max-width: 364px;
  width: 100%;
}
.home_page :is(.domains, .domain_mobile) .desc_b {
  display: flex;
  flex-direction: column;
  gap: 39px;
}
.home_page :is(.domains, .domain_mobile) .desc_b p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
}
.home_page :is(.domains, .domain_mobile) .desc_b a {
  font-weight: 600;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 5%;
  text-transform: uppercase;
  color: #121212;
  text-decoration: underline;
  text-underline-offset: 2px;
  width: max-content;
}
.home_page .domain_mobile .swiper-slide {
  max-width: 335px;
  width: 100% !important;
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: center;
  padding-bottom: 20px;
}

.home_page .domain_mobile .header_b {
  font-weight: 600;
  font-size: 22px;
  line-height: 24px;
  text-align: center;
  max-width: calc(100% - 60px);
  width: 100%;
}

.home_page .domain_mobile .swiper-slide  .service_b {
  width: 100%;
  max-width: 214px;
}
.home_page .domain_mobile .swiper-slide  .desc_b p {
  text-align: center;
}
.home_page .domain_mobile .swiper-slide  .service_b img {
  width: 100%;
}

.home_page .domain_mobile .swiper-slide .desc_b a {
  align-self: center;
  transform: translateX(15px);
}
.home_page .domain_mobile {
  display: none;
  padding-top: 74px;
  padding-bottom: 65px;
}
.slider_block_mobile {
  max-width: 335px;
  width: 100%;
  margin: auto;
  overflow: hidden;
  margin-top: 35px;
}
.slider_block_mobile .arrow {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #000;
  transform: translateY(-60px) !important;
}
.slider_block_mobile .arrow.swiper-button-prev {
  transform: translateY(-60px) rotate(180deg) !important;
}
.slider_block_mobile .arrow svg {
        height: initial;
        object-fit: contain;
        transform-origin: center;
        width: initial;
        fill: transparent;
        pointer-events: all;
}
.home_page .about {
  background-color: #121212;
  padding: 176px 0 42px;
}
.home_page .about .content {
  padding-left: 99px;
  padding-right: 124px;
}
.home_page .about .wrapper {
  display: flex;
  align-items: flex-end;
  gap: 110px;
  justify-content: flex-end;
  position: relative;
}
.home_page .about .l_b {
  position: absolute;
  left: 0;
  top: -62px;
  max-width: 540px;
  width: 100%;
  z-index: 1;
}
.home_page .about .l_b h3 {
  font-weight: 600;
  font-size: 50px;
  line-height: 60px;
  letter-spacing: 0%;
  color: #FFFFFF;
}
.home_page .about a {
  font-weight: 600;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 5%;
  text-transform: uppercase;
  color: #FFFEF5;
  margin-top: 90px;
  display: inline-flex;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.home_page .about .r_b a {
  display: none;
}
.home_page .about .main_img {
  display: flex;
}
.home_page .about .r_b {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 325px;
  padding-top: 105px;
  padding-bottom: 183px;
  border-top: 1.5px solid rgba(255, 255, 255, 0.1019607843);
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.1019607843);
}
.home_page .about .r_b p {
  color: rgba(255, 255, 255, 0.6980392157);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
}
.home_page .about .refs_h {
  font-weight: 500;
  font-size: 25px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #FFFFFF;
  margin-top: 75px;
}
.home_page .about .refs_slides {
  margin-top: 40px;
}
.home_page .about .refs_slides .splide__slide img {
  filter: grayscale(1);
}

.scroll_down {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 130px;
  width: 100px;
  height: 97px;
  cursor: pointer;
}
.scroll_down span {
  position: absolute;
  inset: 0;
  margin: auto;
  font-weight: 500;
  font-style: Medium;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 5%;
  text-align: center;
  display: block;
  height: -moz-max-content;
  height: max-content;
  color: #FFFFFF;
}

footer {
  background-color: #121212;
  padding: 0 100px 20px 75px;
}
footer .content {
  max-width: 1290px;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 45px;
  padding-top: 47px;
  border-top: 1.5px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.2);
}
footer .content .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 45px;
}
footer .content .wrapper .links {
  display: flex;
  align-items: center;
  gap: 23px;
}
footer .content .wrapper .links span {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  color: rgba(255, 255, 255, 0.6980392157);
  /* text-decoration: underline; */
  display: flex;
  margin-top: 20px;
  position: relative;
  width: max-content;
  /* text-underline-offset: 5px; */
}
footer .content .wrapper .links a span::after {
    background: currentColor;
    bottom: -2px;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform 0.5s cubic-bezier(1, 0, 0, 1);
    width: 100%;
    will-change: transform;
}

footer .content .wrapper .links a:hover span::after {
    transform: scaleX(1);
    transform-origin: left center;
}

footer .content .wrapper .r_b {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 635px;
}
footer .content .wrapper .r_b .in_touch {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
footer .content .wrapper .r_b .in_touch .addr {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  color: rgba(255, 255, 255, 0.6980392157);
  width: 100%;
  display: flex;
  max-width: 242px;
}
footer .content .wrapper .r_b .in_touch .cta_maps {
  text-transform: uppercase;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  color: rgba(255, 255, 255, 0.6980392157);
  text-decoration: underline;
  display: flex;
  margin-top: 20px;
  text-underline-offset: 5px;
}
footer .content .wrapper .r_b .in_touch .socials {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 50px;
}
footer .content .wrapper .r_b .in_touch .socials .icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #FFFFFF;
}
footer .content .wrapper .r_b .menu {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 92px;
}
footer .content .wrapper .r_b .menu ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 47px;
}
footer .content .wrapper .r_b .menu ul a {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 5%;
  text-transform: uppercase;
}
footer .content .wrapper .r_b .menu .devis_cta {
  display: flex;
  width: -moz-max-content;
  width: max-content;
}
footer .footer_bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1290px;
  width: 100%;
  margin: 0 auto;
  padding-top: 20px;
}
footer .footer_bottom .credits {
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: right;
  color: #FFFFFF;
}
footer .footer_bottom .b_l {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 635px;
}
footer .footer_bottom .b_l ul {
  display: flex;
  align-items: center;
  gap: 42px;
}
footer .footer_bottom .b_l ul a {
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #FFFFFF;
}
.lang_switch {
  background-color: rgba(255, 255, 255, 0.1019607843);
  width: 62px;
  height: 40px;
  display: flex;
  justify-content: center;
  padding: 13px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 4px;
  color: #FFFFFF;
  font-weight: 500;
  font-size: 12px;
  line-height: 120%;
  text-transform: uppercase;
  cursor: pointer;
}

.home_page .animation_layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: 3;
  background-color: #000;
  opacity: 0;
  visibility: hidden;
}
body.has-preloader .home_page .animation_layer {
  opacity: 1;
  visibility: visible;
}
.home_page .animation_layer .progress_bar {
  position: absolute;
  top: 60px;
  width: calc(100% - 120px);
  left: 0;
  right: 0;
  margin: 0 auto;
  height: 2px;
  background-color: rgba(255, 254, 245, 0.168627451);
}
.home_page .animation_layer .progress_bar .inner {
  width: 0%;
  height: 2px;
  position: relative;
  background-color: rgba(255, 254, 245, 0.6);
}
.home_page .animation_layer .switching_imgs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 0 71px;
}
.home_page .animation_layer .switching_imgs .images_wrapper {
  position: absolute;
  width: 280px;
  height: 380px;
  inset: 0;
  margin: auto;
  overflow: hidden;
}
.home_page .animation_layer .switching_imgs .img_block {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: none;
}
.home_page .animation_layer .switching_imgs .img_block img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.home_page .animation_layer .switching_imgs .progress_percentage {
  font-weight: 700;
  font-style: Bold;
  font-size: 17px;
  line-height: 100%;
  letter-spacing: 4%;
  text-align: right;
  text-transform: uppercase;
  color: #FFFFFF;
}
.home_page .animation_layer ul.bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  width: calc(100% - 140px);
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 100px;
}
.home_page .animation_layer ul.bottom li {
  font-weight: 700;
  font-style: Bold;
  font-size: 17px;
  line-height: 100%;
  letter-spacing: 4%;
  text-transform: uppercase;
  color: #FFFFFF;
}
.home_page .animation_layer ul.bottom li:nth-child(2) {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 0;
  width: -moz-max-content;
  width: max-content;
}
.home_page .scroll_down {
  transform: translateY(334px);
  opacity: 0;
}
.home_page .hero > h1 {
  transform: translateY(210px);
  opacity: 0;
}

.no-scroll, .no-scroll body, .no-scroll html {
  overflow: hidden !important;
  touch-action: none !important;
}

html, body {
  scrollbar-width: none;
}

.desc_slider {
  position: relative;
  height: 280px; /* “window” height */
  width: 100%;
  margin-top: 20px;
}

.domains .desc_mask {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.domains .desc_b {
  position: absolute;
  width: 100%;
  top: 0px;
  transition: opacity 1s ease-in-out;
  transform: translateY(40px);
}
.domains .desc_b a {
  transform: translateY(15px);
  transition: transform 1s ease-in-out;
}
.domains .desc_b.back a {
  transform: translateY(-15px);
}
.domains .desc_b:not(:first-of-type) {
  top: 228px;
  opacity: 0;
}
.domains .desc_b.active {
  opacity: 1;
}
.domains .desc_b.active a {
  transform: translateY(0);
}

.domains .headers_sliders .header_s {
  position: relative;
  height: 250px; 
  width: 100%;
}
.domains .headers_sliders .header_mask {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.domains .headers_sliders .header_mask .header_b {
  position: absolute;
  width: 100%;
  top: 0px; 
  transition: opacity 1s ease-in-out;
}
.domains .headers_sliders .header_mask .header_b:not(:first-of-type) {
  top: 110px; 
  opacity: 0;
}
.domains .headers_sliders .header_mask .header_b.active {
  opacity: 1;
}

.about {
  overflow: hidden;
}

a.cta {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  opacity: 0.7;
  transition: opacity 0.6s ease-in-out;
}
a.cta span {
  position: relative;
  transition: 0.4s ease-in-out;
  transform: translateX(15px);
}
a.cta span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  bottom: -3px;
  background-color: #121212;
  transition: 0.4s ease-in-out;
}
a.cta .icon {
  width: 6px;
  height: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  border-radius: 50%;
  overflow: hidden;
  transition: 0.4s ease-in-out;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
a.cta .icon svg {
  opacity: 0;
  transition: 0.4s ease-in-out;
}
a.cta.light .icon {
  background-color: #FFFEF5;
}
a.cta.light .icon svg path {
  stroke: #000;
}
a.cta.light span::after {
  background-color: #FFFEF5;
}
a.cta:hover span {
  transform: translateX(55px);
}
a.cta:hover {
  opacity: 1;
}
a.cta:hover span::after {
  opacity: 0;
}
a.cta:hover .icon {
  width: 50px;
  height: 50px;
}
a.cta:hover .icon svg {
  opacity: 1;
}

a.cta {
  text-decoration: none !important;
}

section, .pin-spacer {
  background-color: #FFFEF5;
  position: relative;
}

.home_page .hero .bg_img {
  position: fixed !important;
}

footer {
  background-color: #121212;
  position: relative;
}

footer .content .wrapper .links a .img_w {
  overflow: hidden;
  width: 260px;
  height: 170px;
}
footer .content .wrapper .links a .img_w img {
  position: relative;
  transform: scale(1);
  transition: 0.4s ease-in-out;
  transform-origin: center;
}
footer .content .wrapper .links a .img_w:hover img {
  transform: scale(1.1);
}

footer .content .wrapper .r_b .in_touch .socials .icon {
  overflow: hidden;
  transition: 0.6s ease-in-out;
  justify-content: flex-start;
  padding-left: 18px;
  position: relative;
  border-radius: 30px;
}

footer .content .wrapper .r_b .in_touch .socials .icon.instagram {
  padding-left: 16px;
}
footer .content .wrapper .r_b .in_touch .socials .icon span {
  opacity: 0;
  position: absolute;
  left: 45px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  display: flex;
  align-items: center;
  color: #fff;
  transition: 0.6s ease-in-out;
}
footer .content .wrapper .r_b .in_touch .socials .icon:not(.no-hover):hover {
  width: 200px;
  border-radius: 30px;
}
footer .content .wrapper .r_b .in_touch .socials .icon:not(.no-hover):hover span {
  opacity: 1;
}

.about_page .hero {
  min-height: 100vh;
  padding-bottom: 193px;
}
.about_page .hero .bg_img {
  position: absolute;
  left: 0;
  top: 0;
  isolation: isolate;
  width: 100%;
  height: 100%;
}
.about_page .hero .bg_img::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #121212;
  background-blend-mode: multiply;
  background: linear-gradient(8.32deg, rgba(0, 0, 0, 0.4) 17.79%, rgba(0, 0, 0, 0) 61.53%);
}
.about_page .hero .bg_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about_page .hero .header {
  height: 100vh;
  font-weight: 600;
  font-size: 64px;
  line-height: 70px;
  letter-spacing: 0%;
  color: #FFFEF5;
  max-width: 616px;
  width: 100%;
  position: relative;
  display: flex;
  align-items: flex-end;
  margin-left: 60px;
  padding-bottom: 60px;
}
.about_page .hero .sub_header {
  margin-top: 176px;
  font-weight: 500;
  font-size: 25px;
  line-height: 34px;
  color: #FFFFFF;
  position: relative;
  max-width: 360px;
  margin-left: auto;
  right: 135px;
}
.about_page .our_approach {
  background-color: #FFFEF5;
}
.about_page .our_approach .content {
  padding: 93px 60px 93px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}
.about_page .our_approach .content .l_block {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
  width: 100%;
  max-width: 760px;
}
.about_page .our_approach .content .l_block h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  color: #121212;
  display: flex;
  flex-grow: 1;
}
.about_page .our_approach .content .l_block .t_wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  max-width: 460px;
  width: 100%;
}
.about_page .our_approach .content .r_block {
  width: 100%;
  max-width: 440px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 80px;
  width: 100%;
  max-width: 440px;
  margin-top: -195px;
}
.about_page .our_approach .content .r_block .im_w {
  width: 100%;
}
.about_page .our_approach .content .r_block .im_w img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about_page .our_approach .content .r_block .quote {
  width: 100%;
  max-width: 180px;
  font-weight: 400;
  font-style: Italic;
  font-size: 12px;
  padding-top: 22px;
  color: rgba(0, 0, 0, 0.6509803922);
  border-top: 1px solid rgba(0, 0, 0, 0.6509803922);
}
.about_page .team {
  background-color: #121212;
  padding-bottom: 76px;
  position: relative;
  isolation: isolate;
}
.about_page .team::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 504px;
  left: 0;
  top: 0;
  background-color: #FFFEF5;
  z-index: -1;
}
.about_page .team .content {
  width: 100%;
  max-width: calc(100% - 120px);
  margin: auto;
}
.about_page .team .content .portrait {
  width: 100%;
}
.about_page .team .content .portrait img {
  width: 100%;
}
.about_page .team .b_wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  max-width: calc(100% - 190px);
  margin: 0 auto;
  margin-top: -315px;
}
.about_page .team .b_wrapper h3 {
  font-weight: 600;
  font-size: 50px;
  line-height: 60px;
  letter-spacing: 0%;
  color: #FFFFFF;
  width: 100%;
  max-width: 520px;
}
.about_page .team .b_wrapper .l_b {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 388px;
  width: 100%;
}
.about_page .team .b_wrapper .l_b p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
}
.about_page .team .b_wrapper .l_b .cta span {
  font-weight: 600;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 5%;
  vertical-align: middle;
  text-transform: uppercase;
  color: #FFFFFF;
}
.about_page .team .pre_prod {
  margin-top: 164px;
  display: flex;
  gap: 104px;
  position: relative;
  padding-left: 96px;
}
.about_page .team .pre_prod .img_w {
  width: 100%;
  max-width: 315px;
}
.about_page .team .pre_prod .img_w img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about_page .team .pre_prod .r_b {
  padding-top: 75px;
  width: 100%;
  max-width: 552px;
  display: flex;
  flex-direction: column;
  gap: 34px;
}
.about_page .team .pre_prod .r_b h3 {
  font-weight: 500;
  font-size: 25px;
  line-height: 34px;
  color: #FFFFFF;
}
.about_page .team .pre_prod .r_b p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.6980392157);
}
.about_page .team .pre_prod .r_b .quote {
  width: 100%;
  max-width: 180px;
  font-weight: 400;
  font-style: Italic;
  font-size: 12px;
  line-height: 20px;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.6509803922);
  border-top: 1px solid rgba(255, 255, 255, 0.6509803922);
  margin-top: 86px;
}
.about_page .our_services .content {
  position: relative;
  padding-top: 72px;
  padding-bottom: 113px;
  padding-left: 96px;
  max-width: calc(100% - 120px);
  margin: 0 auto;
  width: 100%;
}
.about_page .our_services .content h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #121212;
}
.about_page .our_services .content .services_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  max-width: 714px;
  gap: 12px 60px;
  margin-top: 42px;
}
.about_page .our_services .content .services_grid li .icon {
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  opacity: 0;
  transform: scale(0.8);
  transition: 0.4s ease-in-out;
}
.about_page .our_services .content .services_grid li:hover .icon {
  right: 0;
  opacity: 1;
  transform: scale(01);
}
.about_page .our_services .content .services_grid li a {
  display: block;
  width: 100%;
    padding-bottom: 12px;
  border-bottom: 1px solid #D0D0D0;
}
.about_page .our_services .content .services_grid li {
  font-weight: 700;
  font-style: Bold;
  font-size: 20px;
  line-height: 100%;
  color: #000000;

  position: relative;
}
.about_page .our_services .content .img_w {
  position: absolute;
  right: 0;
  top: -145px;
}
/* .about_page .contact_us {
  position: relative;
  isolation: isolate;
}
.about_page .contact_us .bg_img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}
.about_page .contact_us .bg_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.about_page .contact_us .content {
  padding: 321px 10px;
}
.about_page .contact_us .content .card {
  width: 100%;
  max-width: 632px;
  padding: 72px 40px;
  background-color: #FFFEF5;
  margin: auto;
}
.about_page .contact_us .content .card h3 {
  font-weight: 600;
  font-size: 50px;
  line-height: 60px;
  text-align: center;
  width: 100%;
  max-width: 374px;
  margin: auto;
  color: #000;
}
.about_page .contact_us .content .card > p {
  font-weight: 500;
  font-size: 25px;
  line-height: 100%;
  text-align: center;
  margin-top: 32px;
  color: #121212;
}
.about_page .contact_us .content .card > a {
  font-weight: 600;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 5%;
  text-transform: uppercase;
  color: #121212;
  margin: auto;
  margin-top: 37px;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-align: center;
  display: flex;
  width: -moz-max-content;
  width: max-content;
  opacity: 0.7;
}
.about_page .contact_us .content .card .req {
  border-top: 1px solid #121212;
  margin-top: 50px;
}
.about_page .contact_us .content .card .req p {
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  padding-top: 35px;
  color: rgba(0, 0, 0, 0.6980392157);
}
.about_page .contact_us .content .card .req .devis_cta {
  margin: auto;
  margin-top: 32px;
  display: flex;
  background-color: #121212;
  color: #fff;
  width: -moz-max-content;
  width: max-content;
  padding: 10px 28px;
  height: 40px;
} */

.discover, .domains {
  height: 100vh;
  justify-content: center;
}

.page-template-home header {
  z-index: 3;
  opacity: 0;
}
header .nav_list a.has_arrow {
  position: relative;
  isolation: isolate;
}
header .nav_list a.has_arrow:after {
  display: none;
}
header .nav_list a.has_arrow svg {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  transition: 0.4s ease-in-out;
  bottom: -12px;
}

body:is(.srvices_dropdown_opened, .realisation_dropdown_opened) {
  overflow: hidden;
}
body:is(.srvices_dropdown_opened, .realisation_dropdown_opened) header {
  z-index: 3;
}
body:is(.srvices_dropdown_opened) header .nav_list a.services svg {
  transform: rotate(180deg);
}
body:is(.realisation_dropdown_opened) header .nav_list a.realisations svg {
  transform: rotate(180deg);
}
body:is(.srvices_dropdown_opened) .services_popup {
  opacity: 1;
  visibility: visible;
}
body:is(.srvices_dropdown_opened) .services_popup .services_w {
  transform: translateY(0);
}

body:is(.realisation_dropdown_opened) .realisations_popup {
  opacity: 1;
  visibility: visible;
}
body:is(.realisation_dropdown_opened) .realisations_popup .services_w {
  transform: translateY(0);
}

.header_sub_menu {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  width: 100vw;
  left: 0;
  top: 0;
  z-index: 2;
  isolation: isolate;
  transition: 0.4s ease-in-out;
  overflow-x: hidden;
  height: 100vh;
}
.header_sub_menu .services_w {
  background-color: #121212;
  padding: 145px 60px 40px;
  transform: translateY(-100%);
  transition: 0.5s ease-in-out;
}
.header_sub_menu .services_w ul {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

.header_sub_menu .services_w ul .contact_us_w {
  padding-top: 30px;
  padding-left: 60px;
  margin-left: 40px;
  border-left: 1px solid #FFFFFF12;
}
.header_sub_menu .services_w ul .contact_us_w h3 {
  font-weight: 600;
  font-size: 26px;
  color: #FFFFFF;
}

.header_sub_menu .services_w ul .contact_us_w span {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  line-height: 100%;
  color: #FFFFFF;
  margin-top: 30px;
  width: 100%;
  max-width: 300px;
  display: flex;
}

.header_sub_menu .services_w ul .contact_us_w a{
  font-weight: 600;
  font-size: 14px;
  opacity: .7;
  transition: 0.4s ease-in-out;
  color: #FFFFFF;
  text-transform: uppercase;
  margin-top: 60px;
  position: relative;
  opacity: .7;
  width: max-content;
}

.header_sub_menu .services_w ul .contact_us_w a:hover {
  opacity: 1;
}

.header_sub_menu .services_w ul .contact_us_w a::after {
    background: currentColor;
    bottom: -2px;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform 0.5s cubic-bezier(1, 0, 0, 1);
    width: 100%;
    will-change: transform;
}

.header_sub_menu .services_w ul .contact_us_w a:hover::after {
    transform: scaleX(1);
    transform-origin: left center;
}

.header_sub_menu.realisations_popup .services_w ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.header_sub_menu.realisations_popup .services_w ul a .s_img img {
    width: 100%;
    height: 100%;
    transition: 0.4s ease-in-out;
    object-fit: cover;
    object-position: 0 -60px;
}
.header_sub_menu .services_w ul a {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.header_sub_menu .services_w ul a .s_img {
  width: 100%;
  aspect-ratio: 200/250;
  overflow: hidden;
}
.header_sub_menu.realisations_popup .services_w ul a .s_img {
  aspect-ratio: 392/182;
}
.header_sub_menu .services_w ul a .s_img img {
  width: 100%;
  height: 100%;
  transition: 0.4s ease-in-out;
}
.header_sub_menu .services_w ul a .s_bt {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header_sub_menu .services_w ul a .s_bt span {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
  position: relative;
}
.header_sub_menu .services_w ul a .s_bt span::after {
    background: currentColor;
    bottom: -2px;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform 0.5s cubic-bezier(1, 0, 0, 1);
    width: 100%;
    will-change: transform;
}

.header_sub_menu .services_w ul a:hover .s_bt span::after {
    transform: scaleX(1);
    transform-origin: left center;
}

.header_sub_menu .services_w ul a .s_bt .icon {
  opacity: 0;
  transition: 0.4s ease-in-out;
  transform: scale(0.99) translateX(-26px);
}
.header_sub_menu .services_w ul a:hover .s_img img {
  transform: scale(1.1);
}
.header_sub_menu .services_w ul a:hover .s_bt .icon {
  opacity: 1;
  transform: scale(1) translateX(0px);
}
/* .header_sub_menu .services_w ul a:hover .s_bt span {
  text-decoration: underline;
  text-underline-offset: 2px;
} */
.header_sub_menu .back_drop {
  filter: blur(10px);
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  background: rgba(40, 40, 40, 0.5019607843);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

/* Realisation photos */
.realisations_page .hero_sec {
  position: relative;
  min-height: 60vh;
  overflow: hidden;
}
.realisations_page .hero_sec .banner_bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.realisations_page .hero_sec .banner_bg img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  object-position: 0px -250px;
  height: 100%;
}
.realisations_page .main_sec {
  padding-top: 88px;
  padding-bottom: 105px;
}
.realisations_page .main_sec .container {
  padding: 0 60px;
}
.realisations_page .main_sec .sec_header {
  display: flex;
  gap: 190px;
}
.realisations_page .main_sec .sec_header h3 {
  font-weight: 700;
  font-style: Bold;
  font-size: 18px;
  line-height: 26px;
  text-transform: uppercase;
  color: #121212;
  width: 100%;
  max-width: 220px;
}
.realisations_page .main_sec .sec_header p {
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 24px;
  color: rgba(0, 0, 0, 0.6509803922);
  width: 100%;
  max-width: 646px;
}
.realisations_page .main_sec .grid_sec {
  margin-top: 30px;
  display: flex;
  gap: 110px;
}
.realisations_page .main_sec .grid_sec .filter_wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 137px;
}
.realisations_page .main_sec .grid_sec .filter_wrapper .btn {
  padding: 10px 14px;
  border: 1px solid #000000;
  border-radius: 30px;
  font-weight: 500;
  font-style: Medium;
  font-size: 14px;
  line-height: 22px;
  text-align: center;
  min-width: 150px;
  cursor: pointer;
}
.realisations_page .main_sec .grid_sec .filter_wrapper .btn.active {
  background-color: #000000;
  color: #FFFFFF;
}
.realisations_page .main_sec .grid_sec .images_layout .img_grid {
  /* display: flex;
  gap: 20px; */
  /* columns: 3 300px;
  width: min(1075px, 100%);
  column-gap: 20px; */
      display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    grid-auto-flow: dense;
}

.vg_item {
  position: relative;
  background: #eee;
  overflow: hidden;
}

.vg_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .25s;
}

.vg_item.loaded img {
  opacity: 1;
}

.vg_placeholder {
  position: absolute;
  inset: 0;
  display:flex;
  align-items:center;
  justify-content:center;
  background: #f0f0f0;
  color:#555;
  font-size: 12px;
}

.realisations_page .main_sec .grid_sec .images_layout .img_grid .row {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 345px;
  /* justify-content: space-between; */
}

.realisations_page .main_sec .grid_sec .images_layout .img_grid .img_block img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.realisations_page .main_sec .grid_sec .images_layout .img_grid .img_block {
  width: 100%;
  max-width: 345px;
  overflow: hidden;
  position: relative;
  /* background-color: #364153; */
  margin-bottom: 20px;
}

/* Skeleton */
.img_skeleton {
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, #f0f0f0 25%, #e6e6e6 37%, #f0f0f0 63%);
  background-size: 400% 100%;
  animation: shimmer 3.2s linear infinite;
}

/* Image hidden until loaded */
.gallery_img {
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  opacity:0;
  transition: opacity 300ms ease-in-out;
}

/* When container has .is-loaded, hide skeleton and show image */
.realisations_page .main_sec .grid_sec .images_layout .img_grid .img_block.is-loaded .img_skeleton { display:none; }
.realisations_page .main_sec .grid_sec .images_layout .img_grid .img_block.is-loaded .gallery_img { opacity:1; }

/* shimmer keyframes */
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.realisations_page .main_sec .grid_sec .images_layout .img_grid .img_block img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.realisations_page .main_sec .grid_sec .images_layout .load_more {
  margin-top: 70px;
  display: flex;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
}
.realisations_page .main_sec .grid_sec .images_layout.loaded .load_more {
  opacity: 1;
  visibility: visible;
}
.realisations_page .main_sec .grid_sec .images_layout .load_more .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  gap: 14px;
  position: relative;
}
.realisations_page .main_sec .grid_sec .images_layout .load_more .btn .loader {
  position: absolute;
  margin: auto;
  left: 11px;
  top: 10px;
  opacity: 1;
  width: 30px;
  height: 30px;
  opacity: 0;
}
.realisations_page .main_sec .grid_sec .images_layout.loading .load_more .btn .loader {
  pointer-events: none;
}
.realisations_page .main_sec .grid_sec .images_layout.loading .load_more .btn .loader {
  opacity: 1;
}
.realisations_page .main_sec .grid_sec .images_layout.loading .load_more .btn svg {
  opacity: 0;
}
.realisations_page .main_sec .grid_sec .images_layout .load_more .btn .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #000;
  width: 50px;
  height: 50px;
}
.realisations_page .main_sec .grid_sec .images_layout .load_more .btn span {
  font-weight: 600;
  font-style: SemiBold;
  font-size: 14px;
  line-height: 22px;
  text-transform: uppercase;
  color: #121212;
}

.realisations_page .main_sec .grid_sec .images_layout .load_more .btn span.loading {
  display: none;
}

.realisations_page .main_sec .grid_sec .images_layout.loading .load_more .btn span.loading {
  display: block;
}
.realisations_page .main_sec .grid_sec .images_layout.loading .load_more .btn span.more {
  display: none;
}

/* services */
.single_service .hero_sec .hero_splide .img_b {
  height: 100vh;
}

.single_service .hero_sec .hero_splide .img_b img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.single_service .hero_sec .hero_splide .info {
  position: absolute;
  left: 60px;
  bottom: 60px;
  display: flex;
  flex-direction: column;
  gap: 42px;
}
.single_service .hero_sec .hero_splide .info h1 {
  font-weight: 600;
  font-style: SemiBold;
  font-size: 64px;
  line-height: 70px;
  color: #FFFFFF;
  max-width: 600px;
  width: 100%;
}
.single_service .hero_sec .hero_splide .arrows {
  display: flex;
  gap: 15px;
}
.single_service .hero_sec .hero_splide .arrows .arrow {
  all: unset;
  position: relative;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #fff;
  background-color: transparent;
  inset: initial;
  cursor: pointer;
}
.single_service .hero_sec .hero_splide .arrows .arrow.next {
  transform: rotate(180deg);
}
.single_service .hero_sec .hero_splide .arrows .arrow svg path {
  fill: transparent;
}
.single_service .sec_2 .content {
  padding: 135px 170px 107px 156px;
  display: flex;
  gap: 10px;
  justify-content: space-between;
}
.single_service .sec_2 .content .left {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 677px;
  gap: 84px;
}
.single_service .sec_2 .content .left h3 {
  font-weight: 600;
  font-style: SemiBold;
  font-size: 25px;
  line-height: 32px;
  color: #121212;
  width: 100%;
  max-width: 564px;
}
.single_service .sec_2 .content .left .right {
  display: none;
}
.single_service .sec_2 .content .left .img_w {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
}
.single_service .sec_2 .content .left .img_w .img_meta {
  width: 100%;
  max-width: 180px;
  border-top: 1px solid rgba(0, 0, 0, 0.5019607843);
  padding-top: 22px;
}
.single_service .sec_2 .content .left .img_w .img_meta span {
  font-weight: 400;
  font-style: Italic;
  font-size: 12px;
  line-height: 12px;
  color: rgba(0, 0, 0, 0.6509803922);
}
.single_service .sec_2 .content .left .img_w .img_meta strong {
  font-weight: 600;
  font-style: SemiBold;
  font-size: 12px;
  line-height: 22px;
  text-transform: uppercase;
  margin-top: 11px;
  color: rgba(0, 0, 0, 0.6509803922);
}
.single_service .sec_2 .content .right {
  width: 100%;
  max-width: 324px;
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding-top: 112px;
}
.single_service .sec_3 {
  background-color: #121212;
}
.single_service .sec_3 .content {
  max-height: 100vh;
  display: flex;
  overflow: hidden;
  align-items: center;
}
.single_service .sec_3 .content .l_b, .single_service .sec_3 .content .r_b {
  width: 50%;
}
.single_service .sec_3 .content .l_b {
  aspect-ratio: 720/820;
}
.single_service .sec_3 .content .l_b img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
}
.single_service .sec_3 .content .r_b {
  background-color: #121212;
  padding: 111px 118px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.single_service .sec_3 .content .r_b .img {
  margin: 70px auto;
}
.single_service .sec_3 .content .r_b h3 {
  font-weight: 500;
  font-style: Medium;
  font-size: 25px;
  line-height: 34px;
  text-align: center;
  color: #FFFFFF;
  width: 100%;
  max-width: 485px;
}
.single_service .sec_3 .content .r_b p {
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #FFFFFF;
  width: 100%;
  max-width: 485px;
}
.single_service .sec_4 .content .card h3 {
  max-width: 542px;
}

.contact_us {
  position: relative;
  isolation: isolate;
}
.contact_us .bg_img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}
.contact_us .bg_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.contact_us .content {
  padding: 321px 10px;
}
.contact_us .content .card {
  width: 100%;
  max-width: 632px;
  padding: 72px 40px;
  background-color: #FFFEF5;
  margin: auto;
}
.contact_us .content .card h3 {
  font-weight: 600;
  font-size: 50px;
  line-height: 60px;
  text-align: center;
  width: 100%;
  max-width: 374px;
  margin: auto;
  color: #000;
}
.contact_us .content .card > p {
  font-weight: 500;
  font-size: 25px;
  line-height: 100%;
  text-align: center;
  margin-top: 32px;
  color: #121212;
}
.contact_us .content .card > a {
  font-weight: 600;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 5%;
  text-transform: uppercase;
  color: #121212;
  margin: auto;
  margin-top: 37px;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-align: center;
  display: flex;
  width: -moz-max-content;
  width: max-content;
  opacity: 0.7;
}
.contact_us .content .card .req {
  margin-top: 50px;
}
.contact_us .content .card .req p {
  border-top: 1px solid #121212;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  padding-top: 35px;
  color: rgba(0, 0, 0, 0.6980392157);
}
.contact_us .content .card .req .devis_cta {
  margin: auto;
  margin-top: 32px;
  display: flex;
  background-color: #121212;
  color: #fff;
  width: -moz-max-content;
  width: max-content;
  padding: 10px 28px;
  height: 40px;
}

@keyframes pulse{
  50%{opacity:.5}
}

/* HTML: <div class="loader"></div> */
/* .loader {
  width: 50px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: 
    radial-gradient(farthest-side,#fff 94%,#0000) top/6px 6px no-repeat,
    conic-gradient(#0000 30%,#fff);
  -webkit-mask: radial-gradient(farthest-side,#0000 calc(100% - 5px),#000 0);
  animation: l13 1s infinite linear;
}
@keyframes l13{ 
  100%{transform: rotate(1turn)}
} */

/* HTML: <div class="loader"></div> */
.loader {
  width: 40px;
  aspect-ratio: 1;
  color: #fff;
  position: relative;
  background: radial-gradient(10px,currentColor 94%,#0000);
}
.loader:before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(9px at bottom right,#0000 94%,currentColor) top    left,
    radial-gradient(9px at bottom left ,#0000 94%,currentColor) top    right,
    radial-gradient(9px at top    right,#0000 94%,currentColor) bottom left,
    radial-gradient(9px at top    left ,#0000 94%,currentColor) bottom right;
  background-size: 20px 20px;
  background-repeat: no-repeat;
  animation: l18 1.5s infinite cubic-bezier(0.3,1,0,1);
}
@keyframes l18 {
   33%  {inset:-10px;transform: rotate(0deg)}
   66%  {inset:-10px;transform: rotate(90deg)}
   100% {inset:0    ;transform: rotate(90deg)}
}