@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
}

body {
  font-family: "Lexend", sans-serif;
	background-color: var(--c1);
}

a {
  text-decoration: none !important;
  display: inline-block !important;
}
img {
  width: 100%;
  display: block;
}
ul {
  padding: 0;
  margin: 0;
}
p {
  color: var(--c2);
  padding: 0;
  margin: 0;
  line-height: 30px;
  font-weight: 300;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
}

/* Colors Root */

:root {
  --c1: #010101; 	/* Black */
  --c2: #fff; 		/* White */
  --c3: #3360F6; 	/* Purple */
  --c4: #030303;;   /* Background Color */
}

/* Web Selection */

::selection {
  background: var(--c3);
  color: var(--c2);
}

/* Loader */

div#preloader {
  position: fixed;
  z-index: 999999999;
  background: var(--c2);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
}
.custom-loader {
  width: 50px;
  height: 50px;
  display: grid;
  border: 4px solid #0000;
  border-radius: 50%;
  border-color: var(--c1) #0000;
  animation: s6 1s infinite linear;
}
.custom-loader::before,
.custom-loader::after {
  content: "";
  grid-area: 1/1;
  margin: 2px;
  border: inherit;
  border-radius: 50%;
}
.custom-loader::before {
  border-color: var(--c3) #0000;
  animation: inherit;
  animation-duration: 0.5s;
  animation-direction: reverse;
}
.custom-loader::after {
  margin: 8px;
}

@keyframes s6 {
  100% {
    transform: rotate(1turn);
  }
}
#preloader.remove {
  opacity: 0 !important;
  visibility: hidden !important;
}

/* Spacing */

.spacing {
  padding: 100px 0px;
}

/* Wrapper */

.wrapper {
  overflow: hidden;
}

.banner-video video {
    height: 100dvh;
    object-fit: cover;
    width: 100%;
    display: block;
}

section.main-home {
    position: relative;
}

.banner-main-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 3;
}

.banner-brands {
    position: absolute;
    bottom: 150px;
    left: 50%;
    transform: translateX(-50%);
}

.brand-images {
    display: flex;
    gap: 40px;
}

header.header {
    position: absolute;
    width: 100%;
    top: 0;
    padding-top: 40px;
    z-index: 4;
}

.navigation nav ul {
    display: flex;
    justify-content: end;
    gap: 20px;
}

.about-image {
    overflow: hidden;
}

.about-image img {
    transition: all .5s;
}

.about-image img:hover {
    transform: scale(1.1);
}

.about-content h3 {
    color: var(--c2);
    font-weight: 500;
    font-size: 32px;
    margin-bottom: 20px;
    /* line-height: 40px; */
}

.about-content a {
    color: var(--c3);
    transition: all .5s;
    font-weight: 700;
}

.main-title h2 {color: var(--c2);font-weight: 500;font-size: 50px;text-transform: capitalize;}

.banner-content h1 {
    color: var(--c2);
    font-size: 48px;
    margin-bottom: 40px;
}

.main-btn a {
    background-color: var(--c3);
    color: var(--c2);
    padding: 12px 50px;
    border-radius: 50px;
    transition: all .5s;
}
/* .testi-desc::-webkit-scrollbar {
  width: 3px;
}
.testi-desc::-webkit-scrollbar-track {
  background: var(--c2);
}
.testi-desc::-webkit-scrollbar-thumb {
  background: var(--c3);
} */
.testi-desc {
    margin-bottom: 30px;
    /*     height: 148px;
    overflow-y: scroll; */
    padding-right: 0px;
    height: 210px;
}

.testi-profile {
    display: flex;
    /* align-items: center; */
    gap: 20px;
    /* position: absolute; */
    /* bottom: -80px; */
}

.testi-image img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testi-content span {
    display: inline-block;
    color: var(--c2);
    font-size: 16px;
    font-weight: 600;
}

.testi-content p {
    font-size: 15px;
    font-weight: 200;
}

.testi-title, .expertise-title , .connect-title {
    text-align: center;
    margin-bottom: 40px;
}

.expertise-image {
    /* height: 100%; */
    position: relative;
    overflow: hidden;
}

.expertise-image img {
    height: 428px;
    object-fit: cover;
    transition: all .5s;
}

.expertise-image:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #0000004D;
    z-index: 1;
    transition: all .5s;
}

.expertise-box {
    position: relative;
    /* height: 100%; */
    overflow: hidden;
}

.expertise-content h3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--c2);
    font-size: 34px;
    text-align: center;
    width: 70%;
    z-index: 2;
}

.expertise-box:hover .expertise-image img {
    transform: scale(1.1);
}

.press-title-btn {
    /* display: flex; */
    /* justify-content: space-between; */
    /* align-items: center; */
}

.press-title-btn a {
    color: var(--c3);
    transition: all .5s;
    position: absolute;
    right: 0;
    bottom: 0;
    font-weight: 700;
}
.blog-detail-content ul {
    margin-top: 40px;
    color: var(--c3);
}
.blog-detail-content h2 {
    color: var(--c2);
    padding-top: 40px;
}
.blog-detail-content ul li {
    list-style: disc;
    margin-left: 20px !important;
}
.press-title-btn a:hover {
    color: var(--c2);
}

.press-title-btn a i {
    margin-left: 8px;
}

.press-title-btn {
    margin-bottom: 60px;
    position: relative;
    text-align: center;
}

.press-image img {
    height: 200px;
    object-fit: cover;
}

.press-content h4 {
    color: var(--c2);
    font-size: 18px;
    margin-bottom: 8px;
}

.press-content {
    margin-top: 20px;
}

.press-content a {
    transition: all .5s;
    display: block !important;
    font-weight: 600;
    color: var(--c3);
}

.press-content a:hover {
    color: var(--c2);
}

.press-image {
    overflow: hidden;
}

.press-image img {
    transition: all .5s;
}

.press-box:hover .press-image img {
    transform: scale(1.1);
}

.input-field input , .input-field textarea {
    width: 100%;
    border: 0;
    padding: 14px 20px;
    /* border-radius: 6px; */
    outline: 0;
}

.input-field {
    margin-bottom: 20px;
}

.submit-btn input {border: 0;background: var(--c3);color: var(--c2);padding: 10px 80px;border-radius: 50px;transition: all .5s;}

.submit-btn {
    text-align: center;
}

.submit-btn input:hover {
    background: var(--c2);
    color: var(--c1);
}

footer.footer {
    padding: 60px 0px 20px 0px;
}

.f-logo ul {
    display: flex;
    gap: 10px;
    margin-top: 30px;
}
.about-content a:hover {
    color: var(--c2);
}

.about-content {
    padding-left: 60px;
}
.banner-video {
    position: relative;
}

.banner-video:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 97.34%),
linear-gradient(0deg, rgba(3, 3, 3, 0.53), rgba(3, 3, 3, 0.53));
}
.f-logo ul li a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: var(--c2);
    border-radius: 50%;
    color: var(--c1);
    transition: all .5s;
}

.f-logo ul li a:hover {
    background: var(--c3);
    color: var(--c2);
}

.f-links h3 {
    color: var(--c2);
    font-size: 22px;
    margin-bottom: 20px;
}
.brand {
    width: 80px;
}
.banner-content {
    text-align: center;
}
section.expertise {
    margin-top: 100px;
}
.main-btn a:hover {
    background: var(--c2);
    color: var(--c1);
}
.navigation nav ul li a {
    color: var(--c2);
    transition: all .5s;
    border-bottom: 2px solid transparent;
    padding: 0px 8px 8px 8px;
    font-weight: 300;
}
.wpcf7-spinner {
    position: absolute !important;
}
.custom-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border: 1px solid var(--c2);
    border-radius: 50%;
    color: var(--c2);
    text-align: center;
    z-index: 99;
}

.slick-prev {
    left: 0;
}

.slick-next {
    right: 0;
}

.testi-box {
    margin: 0px 20px;
    position: relative;
    /* display: flex; */
    /* flex-direction: column; */
}
.navigation nav ul li a:hover {
    color: var(--c3);
}
.f-links ul li a {
    color: var(--c2);
    font-weight: 300;
    margin-bottom: 8px;
    transition: all .5s;
}
.f-links ul li a:hover {
    color: var(--c3);
}
.copyright-text {
    text-align: end;
}

/* inner-wrapper */

.inner-header {
  height: 550px;
  background-position: center !important;
  /* background-attachment: fixed !important; */
  position: relative;
  display: flex;
  align-items: center;
  text-align: center;
  background-size: cover !important;
  /* transform: scale(1.1); */
}
.inner-header:before {
  width: 100%;
  height: 100%;
  content: "";
  /* background: rgb(0 0 0 / 60%); */
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(0deg, rgba(3, 3, 3, 0) 0%, rgba(3, 3, 3, 0.5) 100%),
linear-gradient(180deg, rgba(3, 3, 3, 0) 42.6%, #030303 100%);
}
.inner-header .container {
  position: relative;
}
.inner-header .inner-header-title h1 {
  color: #fff;
  font-size: 48px;
}

/* section-contact-help */

.help-title {
  text-align: center;
  margin-bottom: 60px;
}

.contact-help-content h5 {
  margin: 20px 0px 6px 0px;
  color: var(--c3);
  letter-spacing: 1px;
}

.contact-help .section-title {
  text-align: center;
  margin-bottom: 70px;
}

.contact-help .section-title h2,
.contact-help .section-title p {
  color: #000;
}
.contact-help-item:hover {
  border: 0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}
.contact-help-item {
  border: 1px solid var(--c2);
  border-radius: 5px;
  padding: 35px 38px;
  text-align: center;
  height: 240px;
  overflow: hidden;
}

.contact-help-icon i {
  width: 50px;
  color: var(--c2);
  font-size: 24px;
  border-radius: 50px;
  text-align: center;
  line-height: 50px;
  height: 50px;
  background: var(--c3);
}

.contact-help-icon {
  transition: all 0.5s;
}

.contact-help-content h4 {
  font-weight: 500;
  color: #232323;
  margin-top: 8px;
  font-size: 17px;
}

.contact-help-content a {
  color: var(--c3);
  font-size: 14px;
  font-weight: 700;
  position: relative;
  margin-top: 30px;
  opacity: 0;
}

.contact-help-content a:before {
  position: absolute;
  content: "\f30b";
  font-family: "Font Awesome 5 Pro";
  left: -47px;
  top: 1px;
  transition: all 0.5s;
}

.contact-help-content a:hover:before {
  left: -21px;
}

.contact-help-item:hover .contact-help-item-inner {
  margin-top: -57px;
}

.contact-help-item:hover .contact-help-icon {
  opacity: 0;
}

.contact-help-item-inner {
  transition: all 0.5s;
}

.contact-help-item .contact-help-content a {
  transition: all 0.5s;
}

.contact-help-item:hover .contact-help-content a {
  opacity: 1;
}

.contact-help-content p {
}

/* Unique */

.unique {
    background: var(--c4);
}

.unique-content p {
    color: #686868;
    margin-top: 20px;
}

.unique-btn {
    margin-top: 30px;
}

.unique-image {
    overflow: hidden;
    border-top-left-radius: 270px;
    box-shadow: -20px -20px 0px 0px var(--c3);
    margin-left: 50px;
}

.unique-image img {
    height: 500px;
    object-fit: cover;
}

/* Blogs Single */

.recent-title h4 {
  position: relative;
  margin-bottom: 40px;
  color: var(--c2);
}
.recent-title h4:after {
  position: absolute;
  content: "";
  background: var(--c3);
  width: 135px;
  height: 4px;
  left: 0px;
  top: 34px;
}
.the-date {
  color: var(--c3);
}
.blog-single-wrap h3 {
  margin-top: 30px;
  color: var(--c3);
  margin-bottom: 10px;
}

.blog-user-info ul {
  display: flex;
  margin-top: 40px;
  gap: 40px;
  color: var(--c3);
}

.blog-user-info ul li i {
  margin-right: 10px;
}
.recent-image img {
  width: 100px;
  height: 80px;
  object-fit: cover;
}
.recent-main {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 10px 0;
  color: var(--c2);
}
.recent-content a {
  color: var(--c2);
  font-weight: 600;
  transition: all 0.5s;
}
.recent-content a:hover {
  color: var(--c3);
}
.blog-single-image img {
  transition: all 0.5s;
  height: 450px;
  object-fit: cover;
}
.blog-single-image {
  overflow: hidden;
  border-radius: 20px;
}
.blog-single-image img:hover {
  transform: scale(1.1);
}
.page-template-expertise .expertise {
    margin-top: unset;
}

/* Service Single Page */

.single-content-img img {
  height: 500px;
  object-fit: cover;
}
.single-content-img {
  margin-bottom: 30px;
}

.single-content-main h2 {
  margin-bottom: 15px;
  color: var(--c3);
  font-size: 30px;
  font-weight: 700;
}

.single-content-main p {
  margin-bottom: 15px;
}
.press-image a {
    display: block !important;
}
.single-content-main h3 {
  font-size: 22px;
  color: var(--c2);
  margin-bottom: 15px;
  font-weight: 600;
}

.single-content-img img {
  transition: all 0.5s;
  object-position: bottom;
}

.single-inner-img:hover img,
.single-content-img:hover img {
  transform: scale(1.1);
}

.single-content-img {
  overflow: hidden;
  border-radius: 8px;
}

.side-links-main h2 {
  margin-bottom: 20px;
}

.single-inner-img {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 10px 10px 10px -4px var(--c3);
  padding: 10px;
}
.content-service h1 {
    margin-bottom: 15px;
    color: var(--c3);
    font-size: 30px;
    font-weight: 700;
}
.single-inner-img img {
  object-fit: cover;
  transition: all 0.5s;
}

.single-inner-img,
.single-inner-list {
  margin-top: 50px;
}

.single-inner-list ul li {
  color: var(--c1);
  margin-bottom: 15px;
  position: relative;
  padding-left: 26px;
  font-weight: 600;
}

.single-inner-list ul li:before {
  position: absolute;
  top: 4px;
  left: 0;
  font-size: 13px;
  color: var(--c3);
  content: "\f00c";
  font-family: "Font Awesome 5 Pro";
}
.business-details .back-btn {
    position: unset;
    top: unset;
}
.expertise-title p {
    width: 80%;
    margin: 30px auto 60px auto;
}
.sergio-title {
    text-align: center;
    margin-bottom: 60px;
}
.connect-page {
	margin-top: 100px;
}
.page-template-contact .inner-header , .page-id-128 .inner-header, .page-id-130 .inner-header, .page-id-131 .inner-header {
    display: none;
}
.sergio-image img {
    height: 440px;
    object-fit: cover;
}
.about-image-one img , .about-image-two img {
    height: 340px;
    object-fit: cover;
}
.press-in-title {
    margin-bottom: 30px;
}
.about-image-one {
    margin-bottom: 40px;
}

.about-image-content p {
    padding-right: 30px;
    padding-top: 20px;
}
.business-detail-content h2 {
    a
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 40px;
    font-size: 48px;
}

.story-video video {
    height: 700px;
    object-fit: cover;
    width: 100%;
}

.story-video {
    height: 100%;
    z-index: 1;
}
.story-video iframe {
    height: 540px !important;
}
.story-content p {
    margin-bottom: 20px;
    /* font-weight: 200; */
}
.story-title h2 {
    font-size: 30px;
    margin-bottom: 40px;
}
.story-video:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #00000066;
    z-index: 1;
    transition: opacity 0.3s ease;
}

.story-video.playing:before {
    opacity: 0;
    pointer-events: none;
}


.story-play i {
    color: var(--c2);
    font-size: 100px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.story-video-box {
    position: relative;
}
.about-image-content p:first-of-type {
    padding-top: 0;
}

.about-image-content p:last-of-type {
    padding-top: 0;
}
section.business-services {
    margin-top: 100px;
}
.expertise-image a {
    display: block !important;
    /* height: 100%; */
}
.press-space {
    margin: 60px 0px;
}
.back-btn {
    position: absolute;
    top: -150px;
}

.back-btn a {
    color: var(--c2);
    transition: all .5s;
}

.back-btn a i {
    margin-right: 10px;
}

.back-btn a:hover {
    color: var(--c3);
}
.about-desc h2 {
    font-size: 48px;
    text-align: center;
    font-weight: 400;
}

.business-details-title {
    margin-bottom: 60px;
    margin-top: 60px;
    text-align: center;
}

.business-detail-content h4 {
    color: var(--c2);
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 600;
}

.business-detail-content h4:last-of-type, .business-detail-content h4:nth-of-type(2) {
    margin-top: 20px;
}

.business-detail-content ul li {
    color: var(--c2);
    margin-bottom: 14px;
    position: relative;
    padding-left: 50px;
}

.business-detail-content ul li:last-of-type {
    margin-bottom: 30px;
}

.business-details-image {
    padding-right: 40px;
    overflow: hidden;
    height: 100%;
}

.business-details-image img {
    transition: all .5s;
    height: 100%;
    object-fit: cover;
}
.story-content-box {
    margin: 60px 0px;
}
.quote h2 {
    text-align: center;
    font-size: 28px;
    position: relative;
}
.quote h2 i:first-of-type {
    position: absolute;
    left: -40px;
    top: -10px;
}

.quote h2 i:last-of-type {
    position: absolute;
    right: -10px;
    bottom: -10px;
}

.quote h2 i {
    color: var(--c3);
}
.quote span {
    display: block;
    text-align: center;
    color: var(--c2);
    margin-top: 40px;
    font-size: 18px;
}
.blog-detail-content p {
    padding-top: 40px;
}
.business-details-image img:hover {transform: scale(1.1);}

.business-detail-content ul li:before {
    position: absolute;
    top: 4px;
    left: 0;
    font-size: 12px;
    color: var(--c1);
    content: "\f00c";
    font-family: "Font Awesome 5 Pro";
    width: 30px;
    height: 30px;
    background: var(--c2);
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
}
.single-press .inner-header {
    display: none;

}
.page-template-press .press {
	background: unset;
}
.single-press .press {
	background: unset;
	margin-bottom:100px;
}
.single-press .story-video img {
    height: 540px;
}

.slider-testimonials ul.slick-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 30px;
}

.slider-testimonials ul.slick-dots li button {
    border: 0;
    color: transparent;
    background: #D9D9D9;
    width: 15px;
    height: 15px;
    border-radius: 50%;
}

.slider-testimonials ul.slick-dots .slick-active button {
    background: var(--c3);
}
.press-slider {
    /* display: grid; */
    /* grid-template-columns: repeat(4, 1fr); */
    /* gap: 20px; */
}
.press-slider {
        /* display: block; */
        overflow: hidden;
    }
    
    .press-slider .press-box {
        /* width: 80vw; */
        /* max-width: 400px; */
        /* margin-right: 15px; */
    }
    
    .press-slider .slick-list {
        overflow: visible;
        padding-right: 30%;
    }


/* Responsive Menu */

.responsive-btn a {color: var(--c2);font-size: 22px;}
.responsive-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  height: 100%;
  background-color: var(--c2);
  z-index: 9999;
  transition: all 0.5s;
}
.responsive-links ul li ul {
  display: none;
}
.responsive-links ul li i {
  transition: transform 0.3s ease;
}

.responsive-menu.active {
  left: 0;
}
.responsive-links ul li ul li {
  list-style: disc;
  color: var(--c3);
}
.responsive-menu-main {
  height: 100%;
  padding: 120px 50px;
  position: relative;
}
.responsive-links ul li a {
  color: var(--c4);
  padding: 10px 0px;
  display: block !important;
  font-weight: 200;
  font-size: 32px;
  letter-spacing: 0.5px;
}
.responsive-links ul li {
  position: relative;
}
.responsive-icon a i {
  display: block;
  font-weight: 200;
  font-size: 24px;
}
.responsive-btn {
    display: flex;
    justify-content: end;
}
.responsive-icon {
  position: absolute;
  top: 40px;
  right: 60px;
}
.input-field textarea {
    height: 110px;
}
.rebeca-project-connect {
	margin-bottom: 100px;
}
.brand img {
    height: 30px;
}
.responsive-links {
    text-align: center;
}
.navigation nav ul li a.active {
    border-color: var(--c2);
}
.responsive-icon a {
  color: #1D1B20;
  font-size: 30px;
}
body.scroll-stop {
  overflow: hidden;
}
.sergio-title p:first-of-type {
    margin-bottom: 20px;
}
.slider-testimonials .slick-disabled {
    opacity: 0.5;
}
.slider-testimonials {
    padding: 0px 60px;
}
.page-template-rebeca-project .inner-header:before{
	display: none;
}
.expertise-box:hover .expertise-image::before {
    background: #00000091;
}
.rebe-pro:before {
    background: unset;
}
section.testimonials {
    margin-top: 100px;
}
.connect-home {
	margin-bottom: 100px;
}
section.about-us {
    margin-top: -40px;
}
.connect-expertise {
	margin-bottom: 100px;
}


.elfsight-app-67532272-897c-4c9d-96cb-282ebec9027b {
    position: absolute;
    top: 40px;
    left: 50%;
    z-index: 99;
    transform: translateX(-50%);
}


.iOUPhL svg {
    fill: #fff !important;
}

.name__NameContainer-sc-de2b5326-0.emyxaI {color: var(--c2);}

.OLFef {
    background: var(--c3) !important;
}