/*!
Theme Name: Webyvibz Theme
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: webyvibz-theme
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Webyvibz Theme is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

* {
    box-sizing: border-box;
}

body,
html {
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    line-height: 1.7;
    color: #000;
    background: transparent;
    font-weight: 400;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

p {
    margin: 0 0 30px 0;
    opacity: 75%;
}

p:last-child {
    margin: 0;
}

a {
    color: #fff;
    text-decoration: none;
    transition: 0.5s all
}

a:hover {
    color: #27BCEE;
}

ol,
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Anton", sans-serif;
    font-weight: 400;
    margin: 0;
    line-height: 1.375;
}

h1 {
    font-size: 140px;
}

h2,
.main-heading {
    font-size: 80px;
}

h3 {
    font-size: 34px;
}

h4 {
    font-size: 30px;
}

h5 {
    font-size: 26px;
}

h6 {
    font-size: 22px;
}

section {
    padding: 120px 0;
    position: relative;
}

section.small-padding {
    padding: 90px 0;
}

section.pt-0 {
    padding-top: 0;
}

section.pb-0 {
    padding-bottom: 0;
}

section.p-0 {
    padding-top: 0;
    padding-bottom: 0;
}

input,
textarea,
select {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    padding: 30px 0;
    border: none;
    outline: none;
    border-bottom: 1px solid rgb(255 255 255 / 20%);
    background: transparent;
    line-height: 1.5;
    font-weight: 400;
    color: #fff;
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
}

::placeholder {
    color: #fff;
}

.button {
    font-size: 20px;
    padding: 13px 32px;
    line-height: 1.6;
    background: #27BCEE;
    text-decoration: none;
    text-transform: capitalize;
    font-weight: 500;
    color: #fff;
    border-radius: 30px;
    display: inline-block;
    cursor: pointer;
    text-align: center;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -ms-transition: 0.5s all;
    -o-transition: 0.5s all;
}

.button:hover {
    background: #fff;
    color: #27BCEE;
}

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

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.wrapper {
    width: 91.667%;
    margin: 0 auto;
    position: relative;
}

.wrapper.small {
    width: 75%;
}

.heading-group {
    /* margin-bottom: 50px; */
}

.intro-description {
    margin-bottom: 70px;
}

.blue {
    color: #00B2EA;
}

.yellow {
    color: #FCBB44;
}

.sub-title {
    font-family: "Poppins", sans-serif;
    text-transform: uppercase;
    opacity: 75%;
    margin-bottom: 40px;
}

.title {
    text-transform: uppercase;
}

/* HEADER */
header.site-header {
    background: #000;
    padding: 21px 0 16px 0;
    border-bottom: 1px solid rgb(255 255 255 / 20%);
}

.site-branding img {
    max-width: 221px;
}

.header-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.menu {
    display: flex;
    flex-wrap: wrap;
}

.menu li:not(:last-child) {
    margin-right: 70px;
}

.menu li a {
    font-size: 18px;
    text-transform: uppercase;
    line-height: 1.5;
    letter-spacing: 1.28px;
}

.main-navigation .button {
    display: none;
}

.toggle {
    display: none;
    z-index: 999;
    cursor: pointer;
}

.bar {
    width: 34px;
    height: 3px;
    background-color: #fff;
    margin: 3px 0;
    display: inline-block;
    margin-left: auto;
    border-radius: 5px;
    transition: all ease-in-out 0.3s;
    -webkit-transition: all ease-in-out 0.3s;
    -moz-transition: all ease-in-out 0.3s;
    -o-transition: all ease-in-out 0.3s;
}

.bar:first-child {
    width: 24px;
}

.bar:last-child {
    width: 17px;
}

.bar.animate.bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
    width: 34px;
    background-color: #00B2EA;
}

.bar.animate.bar:nth-child(2) {
    opacity: 0;
}

.bar.animate.bar:nth-child(3) {
    transform: rotate(45deg) translate(-7px, -8px);
    width: 34px;
    background-color: #00B2EA;
}

.toggle:hover .bar {
    background-color: #00B2EA;
}

/* FOOTER */
.footer-top {
    background: #000;
    color: #fff;
    padding: 70px 0;
    border-bottom: 1px solid rgb(255 255 255 / 20%);
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-heading {
    font-size: 230px;
    line-height: 1.1304;
    text-transform: uppercase;
}

.footer-heading>div {
    display: block;
    position: relative;
}

.footer-heading .blue {
    position: relative;
    width: fit-content;
}

.footer-left-box {
    width: 36.25%;
}

.footer-left-inner {
    position: relative;
}

.footer-heading>div:first-child {
    margin-left: auto;
    width: fit-content;
}

.copyright-text.text-center {
    background: #000;
    color: rgb(255 255 255 / 50%);
    padding: 30px 0;
    font-size: 14px;
    line-height: 1.4;
}

.footer-right-box {
    width: 48.4091%;
}

.footer-right-box p {
    opacity: 100%;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.form-box {
    width: 100%;
    margin-bottom: 20px;
}

.form-box:nth-child(2),
.form-box:nth-child(3) {
    width: 48%;
}

.form-box textarea {
    max-height: 180px;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner.button {
    width: auto;
    padding: 13px 51px;
    border: none;
    margin-top: 40px;
}

.company-info label {
    display: block;
    color: #fff;
    opacity: 0.3;
    text-transform: uppercase;
    margin-bottom: 11px;
    font-family: "Anton", sans-serif;
    letter-spacing: 1.28px;
}

.company-info p {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1.28px;
    opacity: 100%;
}

.company-row {
    display: flex;
    flex-wrap: wrap;
    margin-top: 90px;
}

.company-info:first-child {
    width: 100%;
    max-width: unset;
    margin-bottom: 50px;
    margin-right: 0;
}

.company-info {
    max-width: 265px;
    margin-right: 106px;
}

.company-info:last-child {
    margin: 0;
}

.company-info a {
    font-weight: 600;
    font-size: 21px;
    line-height: 1.142857;
    letter-spacing: 1.28px;
}

ul.social-icon {
    display: inline-flex;
    flex-wrap: wrap;
}

ul.social-icon li:not(:last-child) {
    margin-right: 20px;
}

ul.social-icon a {
    font-size: 20px;
}

.footer-img {
    position: absolute;
    bottom: -50px;
    right: -80px;
    display: flex;
}

.footer-bg {
    width: 100%;
    margin: auto;
}

.footer-bg img {
    width: 100%;
}

.rotate-text img:last-child {
    max-width: 210px;
}

.footer-img .rotate-text img:last-child {
    margin-bottom: 35px;
    width: 70%;
}

.footer-img svg {
    transform: scale(1.4) rotate(-1deg);
}

.footer-img svg text {
    font-size: 19.7px;
    line-height: 1.505076;
    letter-spacing: 7px;
}

/* HERO-BANNER */
section.hero-banner {
    padding: 86px 0 150px 0;
    background: #000;
    color: #fff;
    overflow: hidden;
}

.banner-content {
    width: 80.3977777%;
}

.banner-icon {
    width: auto;
}

.banner-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 70px;
}

.banner-content .sub-title {
    margin: 0;
}

.banner-row .intro-description {
    margin: 0 auto 0 0;
    width: 88.764%;
}

.banner-row .heading-group {
    margin-bottom: 70px;
}

.banner-content span::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 64%;
    background: #1FBDEE;
    z-index: -1;
    border-radius: 6px;
    transform: translatey(-50%) rotate(6.39deg) scaleX(1.05);
    top: 50%;
    left: 0;
}

.banner-content span {
    position: relative;
    z-index: 1;
}

.banner-content .title {
    line-height: 1.5;
}

.banner-img .image {
    position: relative;
    padding-top: 36.819%;
}

.banner-img .image img {
    border-radius: 40px;
    width: 100%;
    position: absolute;
    inset: 0;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ABOUT SECTIOn */
.about-content {
    width: 92.5%;
    margin: 0 auto;
}

.counter-row {
    display: flex;
    flex-wrap: wrap;
    margin: -25px;
}

.counter-block {
    width: 25%;
    padding: 0 25px;
    margin: 25px 0;
    border-right: 1px solid rgb(0 0 0 / 20%);
    text-align: center;
}

.counter-block:last-child {
    border: none;
}

.counter,
.plus {
    font-size: 90px;
    margin-bottom: 20px;
    line-height: 1.22;
    display: inline-block;
}

/* SERVICE-SECTION */
section.service-section {
    background: #000;
    overflow: hidden;
    color: #fff;
}

.service-content {
    width: 50.012%;
}

.service-content .intro-description {
    margin: 0;
}

.service-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
    margin-top: -50px;
    margin-bottom: 100px;
}

.service-block {
    width: 25%;
    padding: 0 10px;
    height: 100%;
}

.service-block>div {
    background: #1F1F1F;
    padding: 30px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    position: relative;
    transition: 0.5s all;
}

.icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgb(255 255 255 / 20%);
    border-radius: 50%;
    margin-bottom: 104px;
    transition: 0.5s all;
}

.icon img {
    width: 44px;
    height: 44px;
    transition: 0.5s all;
}

.service-title {
    margin-bottom: 18px;
}

.service-block>div a:first-child {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

a.learn-more {
    z-index: 1;
    position: relative;
    display: block;
    margin-top: auto;
    opacity: 75%;
    text-decoration: underline;
    transition: 0.5s all;
    width: fit-content;
}

.content {
    margin-bottom: 30px;
}

.service-block>div:hover {
    background: #00B2EA;
}

.service-block>div:hover .icon {
    background: #fff;
}

.service-block>div:hover .icon img {
    filter: invert(1);
}

.service-block>div:hover a.learn-more,
.service-block>div:hover .content p {
    opacity: 100%;
}

.service-block>div:hover a.learn-more:hover {
    color: #1F1F1F;
}

.service-row .slick-track,
.service-row .slick-slide>div {
    height: 100%;
}

.slick-prev:before {
    content: '\f060';
    font-family: 'FontAwesome';
    color: #ffffff;
    opacity: 1;
    font-size: 36px;
    background: rgb(255 255 255 / 20%);
    width: 98px;
    height: 98px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.5s ease;
}

.slick-next:before {
    content: '\f061';
    font-family: 'FontAwesome';
    color: #ffffff;
    opacity: 1;
    font-size: 36px;
    background: rgb(255 255 255 / 20%);
    width: 98px;
    height: 98px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.5s all ease;
}

button.slick-prev.slick-arrow {
    margin-left: auto;
    margin-right: 16px;
}

button.slick-arrow {
    background: transparent;
    width: 118px;
    height: 118px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slick-list.draggable {
    order: 3;
}

.button.slick-next.slick-arrow {
    order: 2;
}

.slick-next,
.slick-prev {
    position: unset;
    transition: 0.5s all ease;
    border: 1px solid rgb(255 255 255 / 20%);
}

.slick-next:focus.slick-next::before,
.slick-next:hover.slick-next::before,
.slick-prev:focus.slick-prev::before,
.slick-prev:hover.slick-prev::before {
    background: #FCBB44;
}

.slick-next:focus,
.slick-next:hover,
.slick-prev:focus,
.slick-prev:hover {
    border: 1px solid #FCBB44;
}

/* SHOWCASE-SECTION */
section.showcase-section {
    overflow: hidden;
}

.showcase-content .intro-description {
    width: 59.722%;
    margin-left: auto;
    margin-right: auto;
}

.showcase-row {
    display: flex;
    flex-wrap: wrap;
    margin: -60px;
    margin-bottom: 20px;
}

.showcase-img img {
    width: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
    box-shadow: 0px 4px 24px 0px #0000001C;
}

.showcase-info a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #000;
    position: relative;
    z-index: 9;
}

.showcase-info a:hover {
    color: #27BCEE;
}

.showcase-img {
    margin-bottom: 50px;
}

.category {
    font-size: 16px;
    color: #858585;
}

.showcase-info i {
    font-size: 34px;
}

h2.showcase-name {
    font-size: 190px;
    opacity: 5%;
    position: relative;
    right: 0;
    margin-right: -130px;
    margin-top: 180px;
    text-transform: uppercase;
    pointer-events: none;
}

.showcase-block:nth-child(even) h2.showcase-name {
    left: 0;
    z-index: -1;
    bottom: 0;
    margin-top: 0;
    margin-bottom: 180px;
    margin-left: -30px;
}

.showcase-section .button:hover {
    background: #000;
    color: #fff;
}

/* CLIENT SECTION */
section.client-section {
    overflow-x: hidden;
    z-index: 9;
}

.marquee-img-rotate {
    width: 100%;
}

.marquee-img-rotate ul {
    display: flex;
    position: relative;
    animation: marquee 30s linear infinite;
}

.marquee-img-rotate:not(:last-child) {
    margin-bottom: 70px;
}

.marquee-img-rotate ul li {
    flex: 0 0 auto;
    cursor: pointer;
    display: flex;
    align-items: center;
    margin: 0 30px;
}

.marquee-img-rotate:last-child ul {
    animation: marquee-reverse 30s linear infinite;
    justify-content: flex-end;
}

.marquee-img-rotate ul:hover {
    animation-play-state: paused;
}

.marquee-img-rotate ul li:hover {
    animation-play-state: paused;
}

.marquee-img-rotate ul li img {
    width: 100%;
    max-width: 200px;
    filter: grayscale(1);
    transition: 0.3s ease-in all;
    aspect-ratio: 1.1 / 1;
    object-fit: contain;
    padding: 20px;
    background: #ddd;
    border-radius: 10px;
}

.marquee-img-rotate ul li img:hover {
    filter: unset;
}

@keyframes marquee {
    0% {
        left: 0;
    }

    100% {
        left: -100%;
    }
}

@keyframes marquee-reverse {
    0% {
        right: 0;
    }

    100% {
        right: -100%;
    }
}

/* Testimonial-section */
section.testimonial-section {
    background: #000;
    overflow: hidden;
}

.testi-content {
    color: #fff;
}

.testi-content .intro-description {
    margin-right: auto;
    margin-left: auto;
    width: 78.75%;
}

.testimonial-block {
    width: 50%;
    padding: 0 15px;
    margin: 15px 0;
    height: 100%;
}

.testimonial-slider {
    margin: -15px;
    display: flex;
    flex-wrap: wrap;
}

.client-review {
    color: #fff;
    width: 100%;
    box-shadow: 2px 4px 15px 0px #0000001C;
    background: #00B2EA;
    padding: 30px;
    border-radius: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 11;
    height: 100%;
}

.client-review p {
    opacity: 100%;
    margin-bottom: 50px;
}

.client-review span {
    font-size: 18px;
    opacity: 80%;
    text-transform: capitalize;
}

.client-details h3 {
    margin-bottom: 11px;
    text-transform: capitalize;
}

.client-details {
    display: block;
    margin-top: auto;
}

/* ANIMATED-TEXT */
section.animated-text {
    overflow: hidden;
    margin: -200px 0 -300px 0;
}

section.animated-text .wrapper {
    width: 1920px;
}

.animated-top-row,
.animated-bot-row {
    display: flex;
}

.animated-top-row>div,
.animated-bot-row>div {
    font-size: 451px;
    font-weight: 800;
    line-height: 1.5;
    letter-spacing: 1.28px;
}

.animated-top-row>div:first-child {
    font-size: 470px;
    transform: rotate(-21.03deg);
    margin-left: -25px;
}

.animated-top-row>div:nth-child(2) {
    transform: rotate(-4.17deg);
    margin-top: 80px;
    margin-left: -25px;
}

.animated-top-row>div:nth-child(3) {
    margin-top: 190px;
    transform: rotate(17.77deg);
    margin-left: -78px;
    font-size: 448px;
}

.animated-top-row>div:nth-child(4) {
    font-size: 416px;
    transform: rotate(4.34deg);
    margin-top: 107px;
    margin-left: -80px;
}

.animated-top-row>div:nth-child(5) {
    font-size: 390px;
    transform: rotate(-31.37deg);
    margin-top: 178px;
    margin-left: -40px;
}

.animated-top-row>div:nth-child(6) {
    font-size: 432px;
    transform: rotate(-3.63deg);
    margin-top: 107px;
    margin-left: -60px;
}

.animated-top-row>div:nth-child(7) {
    font-size: 432px;
    transform: rotate(3.05deg);
    margin-left: -43px;
    margin-top: 157px;
}

.animated-top-row>div:nth-child(8) {
    font-size: 514px;
    transform: rotate(3.05deg);
    margin-top: 104px;
}

.animated-bot-row {
    margin-top: -400px;
}

.animated-bot-row>div:first-child {
    font-size: 477px;
    transform: rotate(3.68deg);
    margin-left: -60px;
}

.animated-bot-row>div:nth-child(2) {
    font-size: 460px;
    transform: rotate(0.69deg);
    margin-left: -55px;
    margin-top: -20px;
}

.animated-bot-row>div:nth-child(3) {
    font-size: 510px;
    transform: rotate(-5.95deg);
    margin-left: -39px;
    margin-top: -100px;
}

.animated-bot-row>div:nth-child(4) {
    font-size: 367px;
    transform: rotate(-6.79deg);
    margin-left: -54px;
    margin-top: -53px;
}

.animated-bot-row>div:nth-child(5) {
    font-size: 501px;
    transform: rotate(11.43deg);
    margin-left: -70px;
    margin-top: -120px;
}

.animated-bot-row>div:nth-child(6) {
    font-size: 399px;
    transform: rotate(14.17deg);
    margin-left: -50px;
    margin-top: 20px;
}

.animated-bot-row>div:nth-child(7) {
    font-size: 397px;
    transform: rotate(-12.71deg);
    margin-left: 20px;
    margin-top: 50px;
}

.animated-bot-row>div:nth-child(8) {
    font-size: 380px;
    transform: rotate(-17.81deg);
    margin-left: -10px;
    margin-top: -10px;
}

/* BAnner ICon */
.icon-bg {
    position: relative;
}

.icon-bg img:last-child {
    position: absolute;
    inset: 0;
    margin: auto;
}

.banner-icon {
    width: 17%;
    position: relative;
}

.rotate-text img:last-child {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    margin-bottom: 50px;
}

svg {
    width: 100%;
    height: 100%;
    transform: scale(1.2) rotate(-10deg);
}

svg text {
    fill: #fff;
    font-family: "Anton", sans-serif;
    font-size: 24.95px;
    font-weight: 400;
    line-height: 1.5054;
    letter-spacing: 3px;
}

.rotate-text img:not(:last-child) {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.rotate-text {
    position: absolute;
    inset: 0;
    -webkit-animation-name: rotate;
    -moz-animation-name: rotate;
    -ms-animation-name: rotate;
    -o-animation-name: rotate;
    animation-name: rotate;
    -webkit-animation-duration: 5s;
    -moz-animation-duration: 5s;
    -ms-animation-duration: 5s;
    -o-animation-duration: 5s;
    animation-duration: 5s;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -ms-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-timing-function: linear;
    -ms-animation-timing-function: linear;
    -o-animation-timing-function: linear;
    animation-timing-function: linear;
}

@-webkit-keyframes rotate {
    from {
        -webkit-transform: rotate(-360deg);
    }

    to {
        -webkit-transform: rotate(0);
    }
}

@-moz-keyframes rotate {
    from {
        -moz-transform: rotate(-360deg);
    }

    to {
        -moz-transform: rotate(0);
    }
}

@-ms-keyframes rotate {
    from {
        -ms-transform: rotate(-360deg);
    }

    to {
        -ms-transform: rotate(0);
    }
}

@-o-keyframes rotate {
    from {
        -o-transform: rotate(-360deg);
    }

    to {
        -o-transform: rotate(0);
    }
}

@keyframes rotate {
    from {
        transform: rotate(-360deg);
    }

    to {
        transform: rotate(0);
    }
}


.animated-overlay {
    overflow: hidden;
    border-radius: 40px;
    position: relative;
}

.aos-animate.animated-overlay.up:after {
    transform: translate3d(0px, -100%, 0px) scale3d(1, 1, 1) rotatex(0deg) rotatey(0deg) rotatez(0deg) skew(0deg, 0deg);
}

.aos-animate.animated-overlay.right:after {
    transform: translate3d(101%, 0px, 0px) scale3d(1, 1, 1) rotatex(0deg) rotatey(0deg) rotatez(0deg) skew(0deg, 0deg);
    transform-style: preserve-3d;
}

.aos-animate.animated-overlay:before {
    opacity: 0;
}

.animated-overlay:before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    height: 100%;
    width: 100%;
    background: #000;
    opacity: 1;
    transition: 3s all;
    -webkit-transition: 3s all;
    -moz-transition: 3s all;
    -ms-transition: 3s all;
    -o-transition: 3s all;
    transition-delay: 2s;
}

.animated-overlay:after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    height: 100%;
    background-color: #000;
    transform: translate(0, 100%);
    transition: 3s all;
    -webkit-transition: 3s all;
    -moz-transition: 3s all;
    -ms-transition: 3s all;
    -o-transition: 3s all;
    transform-style: preserve-3d;
    transition-delay: 1s;
}

.animated-overlay.right:after {
    transform: translate(-100%, 0);
}

.typed-cursor {
    opacity: 0 !important;
}

.sticky {
    position: fixed !important;
    top: 0;
    left: 0;
    background-color: #000;
    width: 100%;
    z-index: 999999;
    padding: 20px 0;
    transition: 0.5s all;
    animation: slideDown 0.55s ease-out;
    box-shadow: 0px 4px 20px 4px rgba(0, 0, 0, 0.2);
    border: none !important;
}

@keyframes slideDown {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(0);
    }
}

.showcase-block:nth-child(3) {
    margin-top: -240px;
}

.slider-for .slick-list {
    overflow: visible;
    /* height: auto; */
    /* display: flex; */
}

.showcase-block {
    width: 50%;
    margin: 60px 0;
    padding: 0 60px;
}

.showcase-block:nth-child(2) {
    padding-top: 300px;
}

/* INNER BANENR */

.inner-banner .heading-group {
    margin: 0 !important;
}

.inner-banner .banner-content {
    width: 65.397778%;
}

section.team-section {
    background: #000;
    overflow: hidden;
    color: #fff;
}

.team-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: -10px;
}

.team-block {
    width: 25%;
    padding: 0 10px;
    margin: 10px 0;
}

.team-img {
    position: relative;
    /* padding-top: 120%; */
    transition: 0.5s all;
}

.team-img img {
    /* position: absolute; */
    /* inset: 0; */
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    /* object-position: center; */
    border-radius: 20px;
    transition: 0.5s all ease;
}

.team-info {
    position: absolute;
    bottom: 0;
    background: #fff;
    border-radius: 10px;
    width: 90%;
    color: #000;
    text-align: center;
    padding: 16px;
    margin-bottom: 20px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
}

.team-block>div {
    position: relative;
    cursor: pointer;
    padding: 10px;
    transition: transform 0.4s ease;
    /* border-bottom: 1px solid #d5d5d538; */
    border-radius: 20px;
    overflow: hidden;
}

.member-name {
    margin-bottom: 8px;
}

/* PROJECTS PAGE */
.project-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #000;
    position: absolute;
    z-index: 9;
    inset: 0;
    text-align: center;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    background: rgb(40 39 39 / 50%);
    transition: all 0.5s ease;
}

.projects-row {
    columns: 2;
    break-inside: avoid;
}

.projects-block {
    width: 100%;
    margin-bottom: 30px;
    break-inside: avoid;
}

.project-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
}


.projects-block>div {
    position: relative;
}

.projects-block>div a {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
}

.project-link i {
    font-size: 30px;
    margin-left: 12px;
}

.projects-block>div:hover .project-link {
    opacity: 1;
    visibility: visible;
}

/*  */
ul.logos-list {
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
    border-top: 1px solid #0000001a;
    border-left: 1px solid #0000001a;
}

ul.logos-list li {
    width: 20%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #0000001a;
    border-right: 1px solid #0000001a;
}

ul.logos-list li img {
    width: 100%;
    object-fit: contain;
    padding: 20px;
    transition: 0.3s ease-in all;
    aspect-ratio: 1.1 / 1;
    object-fit: contain;
    padding: 20px;
}

.grey-bg {
    position: relative;
    padding: 100px 0;
}

.grey-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #faf8f5;
    z-index: -1;
    max-width: 90%;
    margin: 0 auto;
    border-radius: 30px;
}

.grey-bg:not(:last-child) {
    margin-bottom: 100px;
}

/*  */
.services-section .service-row {
    color: #fff;
    margin: -10px;
}

.services-section .service-content {
    margin-bottom: 50px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.services-section .service-block {
    margin: 10px 0;
    width: 33.33%;
    height: auto;
}

@-webkit-keyframes menu-toggle {
    0% {
        transform: translateY(-100%) translateX(-50%);
        -webkit-animation-timing-function: cubic-bezier(0.815, 0.09, 0.885, 0.14);
        animation-timing-function: cubic-bezier(0.815, 0.09, 0.885, 0.14);
    }

    50% {
        transform: translateY(-50%) translateX(-50%) skewY(-20deg);
    }

    100% {
        transform: translateY(0%) translateX(-50%);
        -webkit-animation-timing-function: cubic-bezier(0.815, 0.09, 0.885, 0.14);
        animation-timing-function: cubic-bezier(0.815, 0.09, 0.885, 0.14);
    }
}

@keyframes menu-toggle {
    0% {
        transform: translateY(-100%) translateX(-50%);
        -webkit-animation-timing-function: cubic-bezier(0.815, 0.09, 0.885, 0.14);
        animation-timing-function: cubic-bezier(0.815, 0.09, 0.885, 0.14);
    }

    50% {
        transform: translateY(-50%) translateX(-50%) skewY(-20deg);
    }

    100% {
        transform: translateY(0%) translateX(-50%);
        -webkit-animation-timing-function: cubic-bezier(0.815, 0.09, 0.885, 0.14);
        animation-timing-function: cubic-bezier(0.815, 0.09, 0.885, 0.14);
    }
}

/* new */

.icon-bg img:first-child {
    transform: scale(1.04);
}

.rotate-text img:not(:last-child) {
    max-width: 64px;
}

.testimonials-section .testi-content {
    color: #000;
}

.testimonial-block>div {
    height: 100%;
}

.slider-for .slick-slide>div {
    height: 100%;
}

.slider-for .slick-track {
    display: flex;
    height: 100%;
}

.slider-for .slick-slide {
    height: auto;
}

.testimonials-section .testimonial-block {
    height: auto;
}

.counter-block:last-child .plus {
    font-size: 50px;
}

/* Single-Services */
.single-services-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: -20px;
}

.sidebar {
    width: 30%;
    padding: 0 20px;
    margin: 20px 0;
}

.single-service-content {
    width: 70%;
    padding: 0 20px;
    margin: 20px 0;
}

.sidebar-inner {
    position: sticky;
    top: 50px;
    position: -webkit-sticky;

}

.sidebar-top {
    padding: 30px;
    background: #000;
    box-shadow: 0px 5px 11px 0px #9B9B9B40;
    border-radius: 20px;
    margin-bottom: 30px;
}

ul.wp-block-list li {
    list-style: disc;
}

ul.wp-block-list li:not(:last-child) {
    margin-bottom: 8px;
}

ul.wp-block-list {
    margin-left: 20px;
    margin-bottom: 20px;
}

.wp-block-heading {
    margin-bottom: 20px;
    font-size: 40px;
    margin-top: 40px;
}

.wp-block-image img {
    width: 100%;
}

.sidebar-menu li:not(:last-child) {
    margin-bottom: 16px;
}

.sidebar-menu a {
    padding: 12px 20px;
    background: #27BCEE;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    border-radius: 10px;
}

.sidebar-inner h4 {
    margin-bottom: 20px;
    color: #fff;
}

.services-content .heading.line {
    font-size: 60px;
}

.wp-block-gallery figure {
    position: relative;
    padding-top: 50%;
}

.wp-block-gallery figure img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 30px;
}

.sidebar-menu .current-menu-item a,
.sidebar-menu a:hover {
    background: #fff;
    color: #000;
}

.contact-inner {
    padding: 40px;
}

.sidebar-contact {
    background: linear-gradient(150deg, #27BCEE, #000000);
    border-radius: 20px;
}

.contact-inner .heading {
    color: #fff;
    margin-bottom: 30px;
    text-align: center;
}

.contact-inner .button {
    width: 100%;
    margin-bottom: 30px;
    background: #fff;
    color: #000;
}

.services-content .heading {
    font-size: 60px;
}

.services-content .heading-group {
    margin-bottom: 30px;
}

.contact-inner .button:hover {
    background: #000;
    color: #fff;
}

.showcase-info a {
    text-transform: uppercase;
}

/* .grecaptcha-badge { visibility: hidden; } */

/* LEAVE PAGE */

.grid-row {
    background: #fff;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    /* 	margin:-15px; */
}

.grid-row input,
.grid-row textarea,
.grid-row select {
    color: #000;
    border-bottom: 1px solid #000;
    padding: 10px 0 20px;
}

.grid-row ::placeholder {
    color: #000;
}

.grid-box:nth-child(2),
.grid-box:nth-child(3) {
    width: 50%;
    /* Set 2nd and 3rd grid-box to 50% width */
}

.grid-box {
    width: 100%;
    padding: 0 15px;
    margin: 15px 0;
}

.leave-content {
    width: 80%;
    margin: auto;
}

.leave-box {
    margin-top: 30px;
}

label {
    color: #000;
}

option {
    color: #000;
}

.work-box .grid-box:nth-child(2),
.work-box .grid-box:nth-child(3),
.work-box .grid-box:nth-child(4) {
    width: 33.33%;
}

.work-box .grid-box label {
    display: none;
}

/* FAQ */

.accordion i {
    /* color: #18685b; */
    margin-left: 10px;
    margin-top: 5px;
    font-weight: 600;
    transition: 0.5s all;
}

.faq {
    z-index: 2;
}

.faq-row .main-heading-text {
    color: #2F2F2F;
    font-weight: 600;
    line-height: 1.22;
    margin-bottom: 20px;
}

.faq-row .sub-heading-text {
    color: #2F2F2F;
    font-weight: 400;
    line-height: 1.22;
}

.accordion {
    padding: 10px 20px;
    text-transform: capitalize;
    display: flex;
    justify-content: space-between;
    border: 1px solid #ccc;
    background: #fff;
    color: #000;
    cursor: pointer;
    align-items: start;
}

ul.faq-list li:not(:last-child) {
    margin-bottom: 20px;
}

.accordion.active i {
    transform: rotate(180deg);
}

.accordion.active {
    background: #000000;
    color: #fff;
    border: 1px solid #ccc;
    border-radius: 10px 10px 0 0;
    border-bottom: 0;
}

.accordion-content {
    display: none;
    border-width: 0px;
    font-weight: 400;
    padding: 25px 20px;
    color: #2f2f2f;
    border: 1px solid #ccc;
    border-radius: 0 0 10px 10px;
    background: #fff;
    border-top: 0;
}

.accordion-content ul {
    list-style: disc;
    padding-left: 20px;
}

.accordion-content ul li:not(:last-child) {
    margin-bottom: 10px;
}

/*  Mission Vision */
.mission-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: -10px;
}

.mission-list li {
    width: 50%;
    padding: 0 10px;
    margin: 10px 0;
}

.mission-block {
    height: 100%;
    background: rgb(0, 0, 0);
    padding: 30px;
    border-radius: 20px;
    color: rgb(255, 255, 255);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.mission-image img {
    width: 100%;
    height: 100%;
}

.mission-image {
    width: 100px;
    height: 100px;
}

.mission-left {
    width: 15%;
    display: flex;
    justify-content: center;
    margin-right: 10px;
}

.mission-right {
    width: 80%;
}

.mission-right .heading-group {
    margin-bottom: 20px;
}

.mission-list li:nth-child(odd) {
    /* transform: translateY(-50px); */
}

.mission-list li:nth-child(even) {
    /* transform: translateY(50px); */
}

/* Our Values */
.values-container {
    color: white;
}

.values-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: -10px;
}

.values-list li {
    width: 20%;
    padding: 0 10px;
    margin: 10px 0;
}

.values-block {
    position: relative;
    width: 100%;
    height: 400px;
    perspective: 1000px;
    transform-style: preserve-3d;
    transition: 0.8s ease;
}

.values-list .values-block:hover {
    transform: rotateY(180deg);
}

.values-front,
.values-back {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #000;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 20px;
    padding: 30px;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .2);
}

.values-front {
    z-index: 2;
}

.values-back {
    transform: rotateY(180deg);
    color: white;
}

.values-image {
    width: 80px;
    height: 80px;
}

.values-image img {
    width: 100%;
    height: 100%;
}

.values-front .values-top {
    margin-bottom: 25px;
}

.values .heading-group {
    margin: 20px;
}

.choose {
    background: rgb(0, 0, 0);
    color: rgb(255, 255, 2555);
}

.choose-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: -10px;
}

.choose-list li {
    width: 50%;
    padding: 0 10px;
    margin: 10px 0;
}

.choose-block {
    padding: 40px;
    height: 100%;
    background: white;
    color: black;
}

.choose-list li:nth-child(1) .choose-block,
.choose-list li:nth-child(4) .choose-block {
    border-radius: 0 60px;
}

.choose-list li:nth-child(2) .choose-block,
.choose-list li:nth-child(3) .choose-block {
    border-radius: 60px 0;
}

/* .team-block>div:hover {background: #00B2EA; border-radius:15px;} */
.team-block>div:not(:hover) img {
    /* transform: scale(0.9); */
}

/* .team-block>div:hover img{transform:scale(1.02);}
.team-block > div::before{
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 70%;
    height: 70%;
    transform: translate(-50%, -50%) scale(.8);
    border-radius: 50%;
    z-index: 0;
    opacity: 0;
    background: radial-gradient(
        circle,
        rgba(0, 123, 255, .7) 0%,
        rgba(0, 123, 255, .4) 50%,
        rgba(0, 123, 255, .15) 75%,
        transparent 100%
    );
    filter: blur(40px);
    transition: all .6s ease;
} */

/* .team-block > div:hover::before{
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}
 */
.image-block:hover .team-img {
    /* position: relative; */
    /* z-index: 1; */
    /* height: 0; */
}

/* .team-block>div:hover {
    border: none;
} */
.hover-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: 0.5s all;
    background: #000;
    z-index: 1;
    /* transform:scale(0); */
    visibility: hidden;
    opacity: 0;
}

.image-block:hover .hover-image {
    /* transform:scale(1); */
    visibility: visible;
    opacity: 1;
}

.image-block {
    position: relative;
}

.hover-image img {
    width: 100%;
    height: 100%;
}

.team-row .team-block:nth-child(1) {width: 100%;}

.team-row .team-block:nth-child(1) img {
    max-width: 500px;
    margin: 0 auto;
}

.team-row .team-block:nth-child(2),
.team-row .team-block:nth-child(3),
.team-row .team-block:nth-child(4){
    width:33.33%;
}
.team-row .team-block img {
    max-width: 400px;
    margin: 0 auto;
}


/* Blog */
.blog-content .wp-block-heading {
    letter-spacing: 1.25px;
}

.blog-content {
    width: 80%;
    margin:0 auto;
}

.blog-page-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.blog-left {
    width: 30%;
}
.blog-image img{
	width:100%;
}

.blog-content {
    width:65%;
}
.blog-image {
    margin-bottom: 50px;
}

.related-blog-image img {
    width: 100%;
    height: 100%;
}
.related-blog-content {
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.11) 0px 2px 12px 0px;
    border-radius: 10px;
    position: relative;
}

.related-post .heading-group {
    margin-bottom: 20px;
}
.wp-block-paragraph {
    margin-bottom: 15px;
}
.blog-row .title {
    font-size: 70px;
}
.blog-row .banner-content{
    margin:0 auto;
}
.blog-banner {
    background: black;
    color: white;
}
.related-blogs .related-blog:not(:last-child) {
    margin-bottom: 30px;
}
.related-blog-content a {
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
}
/* Blog */
.mb-0{
	margin-bottom:0 !important;
}
/* Blog Grid Page */
.blog-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: -10px;
}

.blog-list li {
    width: 33.33%;
    padding: 0 10px;
    margin: 10px 0;
}

.blog-grid-block {
    height: 100%;
    position:relative;
    border: 1px solid #ccc;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0px 20px 25px -5px #0000001A;
    display: flex;
    flex-direction: column;
}

.blog-grid-block a {
    position: absolute;
    width: 100%;
    height: 100%;
	inset:0;
    z-index: 3;
}

.blog-grid-image {
    position: relative;
}

.blog-grid-image .p-image {
	position: relative;
	padding-top: 55%;
}

.blog-grid-image .p-image img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}
/* Blog Grid Page */

.div-sticky {
	position: sticky;
	top: 110px;
	position: -webkit-sticky;
}
.blog-grid-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-grid-content .meta-date {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #ccc;
    color: #00b5ff;
}
.blog-grid-heading {
    margin-bottom: auto;
}
