/* ========== GOOGLE FONT ==========  */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

/* ==========  RESET & HELPERS ==========  */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    color: #777;
    line-height: 1.8;
    font-size: 16px;
    background-image: url('../images/background_img.jpg');
    /* background-repeat: no-repeat; */
    background-attachment: fixed;
    background-size: contain;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: #222;
    line-height: 1.2;
    margin-bottom: 10px;
}

.h1 {
    font-size: 54px;
}

.h2 {
    font-size: 36px;
}

.h3 {
    font-size: 28px;
}

.h4 {
    font-size: 24px;
}

.h5 {
    font-size: 18px;
}

.text-white {
    color: #ffffff;
}

.text-uppercase {
    text-transform: uppercase !important;
}

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

.shadow-none {
    box-shadow: none !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.p-0 {
    padding: 0 !important;
}

.mt-3 {
    margin-top: 1rem !important;
}

@media (max-width: 600px) {
    .h1 {
        font-size: 38px;
    }

    .h2 {
        font-size: 32px;
    }

    .h3 {
        font-size: 24px;
    }

    .h4 {
        font-size: 20px;
    }
}

#preload_wrap {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}

#pre_loader {
    background-color: #ffffff;
    background-image: url(../images/beta_logo.png);
    background-position: center;
    background-repeat: no-repeat;
    transform: scaleX(1);
    width: 100%;
    height: 100%;
}

.intro-text {
    max-width: 85%;
    /* max-width: 600px; */
    margin: 0 auto 40px auto;
    text-align: center;
}


a {
    text-decoration: none;
    transition: all 0.4s ease;
    color: #222;
}

a:hover {
    color: #ea8424;
}

img {
    width: 100%;
}

p {
    margin-bottom: 16px;
}

ul {
    list-style-type: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

section {
    padding-top: 80px;
    padding-bottom: 80px;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    align-items: center;
    justify-content: center;
    background-color: #dbdbdb;
    border-radius: 0;
    font-size: 24px;
}

.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover {
    background-color: #ea8424;
    color: #fff;
}

.owl-theme .owl-dots .owl-dot span {
    width: 14px;
    height: 14px;
}

.owl-theme .owl-dots .owl-dot.active span {
    background-color: #ea8424;
}

.hover-effect {
    transition: all 0.4s ease;
    border-bottom: 3px solid transparent;
}

.hover-effect:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border-bottom-color: #ea8424;
}

.two-col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: center;
}

@media (max-width: 992px) {
    .two-col-grid {
        grid-template-columns: 1fr;
    }
}

.three-col-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: center;
}

@media (max-width: 992px) {
    .three-col-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 560px) {
    .three-col-grid {
        grid-template-columns: 1fr;
    }
}

.four-col-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: flex-start;
}

.footer-top .four-col-grid {
    grid-template-columns: 25% 20% 30% 25%;
}

@media (max-width: 992px) {
    .four-col-grid {
        grid-template-columns: 1fr 1fr;
    }

}

@media (max-width: 560px) {
    .four-col-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========  NAVBAR ==========  */


.navbar {
    position: sticky;
    background: #ffffff;
    width: 100%;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .2);
}

@media (max-width: 768px) {
    #preload_wrap #pre_loader {
        background-size: 150px auto;
    }

    .navbar {
        background-color: #222;
    }

    .nav-items .nav-item:hover,
    .nav-items .nav-item:active {
        color: #ea8424;
        font-weight: 600;
    }
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    padding-bottom: 12px;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    flex: none;
}

.logo img {
    width: unset;
}

.nav-items {
    display: flex;
    transition: all 0.4s ease;
}

.nav-items .nav-item {
    transition: all 0.4s ease;
    padding: 0 10px;
    margin: 0 10px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.5px;
}

@media (min-width: 768px) {
    #betacorp-clients .team-member {
        margin: 0px 24px !important;
    }

    .nav-items li:before {
        content: "";
        background: #376f7f;
        display: block;
        position: absolute;
        bottom: -3px;
        left: 0;
        width: 0;
        height: 3px;
        transition: all 0.3s ease-in-out;
    }

    .nav-items li:hover,
    .nav-items li.active {
        background-position: 0;
    }

    .nav-items li:hover::before,
    .nav-items li.active::before {
        width: 100%;
    }

    .nav-items li {
        position: relative;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        transition: all 0.3s ease-in-out;
        background-image: linear-gradient(to right, #54b3d6, #54b3d6 50%, #0000 50%);
        background-size: 200% 100%;
        background-position: -100%;
        background-color: rgba(0, 0, 0, 0.6);

    }
}

.nav-toggler {
    width: 45px;
    height: 45px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f18200;
    font-size: 22px;
    transition: all 0.3s ease;
    display: none;
}

.nav-toggler i {
    color: #ffffff;
}

.nav-toggler:hover,
.nav-toggler:active {
    background-color: #376f7f;
    color: #fff;
    cursor: pointer;
}

.nav-wrapper {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}

@media (max-width: 768px) {
    section {
        padding-bottom: 22px;
    }


    .nav-items {
        position: absolute;
        background-color: #222;
        width: 100%;
        left: 0;
        top: -500%;
        flex-direction: column;
        padding-top: 24px;
        padding: 24px;
        z-index: 99;

    }

    .nav-items .nav-item {
        margin-top: 8px;
        display: block;
        color: #ffffff;
    }

    .nav-toggler {
        display: flex;
    }

    .show {
        top: 65px;
    }
}

/* ==========  HERO ==========  */
.hero-slider {
    position: relative;
}

.hero-slider .owl-nav {
    width: 100%;
}

.hero-slider .owl-nav button.owl-prev,
.hero-slider .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}

.hero-slider .owl-nav button.owl-prev:hover,
.hero-slider .owl-nav button.owl-next:hover {
    border-color: #ea8424;
}

.hero-slider .owl-nav button.owl-prev {
    left: 24px;
}

.hero-slider .owl-nav button.owl-next {
    right: 24px;
}

.hero-slider .owl-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.hero-slider .item {
    max-height: calc(100vh - 60px);
    max-width: 100%;
}

.hero-slider img {
    max-width: 100%;
}


/* .slide {
    min-height: calc(100vh - 55px);
    background-image: url(../images/banner_01.jpg);
    background-repeat: no-repeat;
    background-position: cover;
    background-size: 100% 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.slide-2 {
    min-height: calc(100vh - 55px);
    background-image: url(../images/banner_02.jpg);
    background-position: center;
    /* background-size: contain; */
}

*/ .slide h1 {
    color: #fff;
    text-transform: uppercase;
}

.slide p {
    margin-top: 24px;
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.beta-btn {
    background-color: #fff !important;
    color: #0d0d0d !important;
    border: 1px solid #ea8424 !important;
    border-radius: 4px;
}

#our_companies {
    padding-bottom: 20px;
    margin-bottom: 40px;
}

/* #our_companies .intro-text {
    max-width: 85%;
} */

#our_companies .beta-btn {
    background-color: #ffffffbd !important;
}

.btn {
    padding: 12px 28px;
    display: inline-block;
    color: #fff;
    background-color: #ea8424;
    border: 2px solid #ea8424;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    margin: 4px;
}

.btn:hover {
    color: #fff;
    transform: translateY(3px);
    box-shadow: none;
}

.btn-outline-light {
    border-color: #fff;
    background-color: transparent;
}

.btn-outline-light:hover {
    background-color: #fff;
    color: #222;
}

@-webkit-keyframes criss-cross-left {
    0% {
        left: -20px;
    }

    50% {
        left: 50%;
        width: 20px;
        height: 20px;
    }

    100% {
        left: 50%;
        width: 375px;
        height: 375px;
    }
}

@keyframes criss-cross-left {
    0% {
        left: -20px;
    }

    50% {
        left: 50%;
        width: 20px;
        height: 20px;
    }

    100% {
        left: 50%;
        width: 375px;
        height: 375px;
    }
}

@-webkit-keyframes criss-cross-right {
    0% {
        right: -20px;
    }

    50% {
        right: 50%;
        width: 20px;
        height: 20px;
    }

    100% {
        right: 50%;
        width: 375px;
        height: 375px;
    }
}

@keyframes criss-cross-right {
    0% {
        right: -20px;
    }

    50% {
        right: 50%;
        width: 20px;
        height: 20px;
    }

    100% {
        right: 50%;
        width: 375px;
        height: 375px;
    }
}

.betabtn-animate {
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    z-index: 2;
    padding: 0.75rem 1.75rem !important;
}

.betabtn-animate:before,
.betabtn-animate:after {
    position: absolute;
    top: 50%;
    content: "";
    width: 20px;
    height: 20px;
    background-color: #2e6f80;
    border-radius: 50%;
    z-index: -1;
}

.betabtn-animate:before {
    left: -20px;
    transform: translate(-50%, -50%);
}

.betabtn-animate:after {
    right: -20px;
    transform: translate(50%, -50%);
}

.betabtn-animate:hover {
    color: #1d1d1d !important;
}

.betabtn-animate:hover:before {
    -webkit-animation: criss-cross-left 1s both;
    animation: criss-cross-left 1s both;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
}

.betabtn-animate:hover:after {
    -webkit-animation: criss-cross-right 1s both;
    animation: criss-cross-right 1s both;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
}

/* ==========  COUNTER UP SECTION ==========  */

#counter_sec {
    min-height: 400px;
    background-image: url(../images/bg.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    z-index: 2;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.beta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(rgb(241 131 2 / 50%), rgb(46 111 128 / 46%)); */
    background: linear-gradient(rgb(0 0 0 / 50%), rgb(88 88 88 / 46%));
    z-index: -1;
}

.counter h1 {
    font-size: 48px;
}

.counter h6 {
    font-size: 18px;
}

.counter .count {
    animation-duration: 1s;
    animation-delay: 0s;
}

/* ==========  SERVICES ==========  */
.service {
    padding: 24px;
    text-align: center;
}

.icon-box {
    font-size: 54px;
    color: #ea8424;
    position: relative;
    display: inline-block;
    z-index: 2;
}

.service h3 {
    margin-top: 16px;
}

.icon-box::after {
    content: " ";
    position: absolute;
    top: 44%;
    left: 40%;
    z-index: -1;
    background: linear-gradient(rgba(179, 4, 13, 0.7), rgba(179, 4, 13, 0.184));
    width: 40px;
    height: 40px;
}

/* ==========  ABOUT US ==========  */
.moretext {
    display: none;
}

/* ==========  CLIENTS ==========  */

#betacorp-clients .team-member {
    list-style: none;
    margin: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#betacorp-clients img {
    height: 3.5rem;
}

#betacorp-clients:hover .team-member {
    filter: blur(0px);
    -webkit-filter: blur(0px);
}

#betacorp-clients:hover .team-member:not(:hover) {
    filter: blur(2px);
    -webkit-filter: blur(2px);
}

#betacorp-clients .team-member:hover {
    -webkit-transform: translateY(-0.3rem);
    transform: translateY(-0.3rem);
}

@media (min-width: 1024px) {
    #betacorp-clients {
        grid-template-columns: auto auto auto auto;
    }

    #betacorp-clients img {
        height: 4rem;
    }
}

/* --- Images (gray logo) --- */
#betacorp-clients img {
    -webkit-filter: grayscale(100%) brightness(10%) contrast(10%);
    filter: grayscale(100%) brightness(10%) contrast(10%);
}

#betacorp-clients img:hover {
    background: none;
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

/* ==========  TEAM ==========  */
#betacorp_team {
    padding: 40px 0 30px;
    margin: 0px;
    position: relative;
}

#betacorp_team .intro-text p,
#betacorp_team .intro-text h1,
#betacorp_team .client-card:hover article .desc {
    color: #ffffff;
}

#betacorp_team .bg-angle {
    background-image: linear-gradient(-60deg, rgb(28 82 96 / 98%) 0%, rgb(46 111 128) 100%);
    max-height: 700px;
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    overflow: hidden;
}

#betacorp_team .bg-angle::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0;
    border-top: 250px solid transparent;
    border-left: 1900px solid #fff;
    border-bottom: 0px solid transparent;
}

#betacorp_team .client-card {
    height: 320px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0px 20px 30px -10px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    min-width: 260px;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    position: relative;
    transition: all 0.6s ease;
    margin: 0px 0px 12px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

#betacorp_team .client-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 5px 10px -5px rgba(0, 0, 0, 0.3);
}

#betacorp_team .client-card::before {
    height: 220px;
    width: calc(100% + 100px);
    content: "";
    position: absolute;
    background-image: linear-gradient(to top, #4481eb 0%, #04befe 100%);
    border-radius: 4px 4px 100% 100%;
    transition: all 0.4s ease-out;
    top: 0;
}

#betacorp_team .client-card:hover:before {
    height: 100%;
    border-radius: 4px;
}

#betacorp_team .client-card::after {
    opacity: 0;
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200%;
    pointer-events: none;
    background-color: rgba(0, 0, 0, 0.5);
    transform: translateY(-50%);
    transition: transform calc(700ms * 2) cubic-bezier(0.19, 1, 0.22, 1);
}

#betacorp_team .client-card article {
    z-index: 1;
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

#betacorp_team .client-card article h2 {
    color: white;
    margin: 0;
    padding: 18px 4px 10px 4px;
    font-weight: 600;
    margin-top: 18px;
    font-size: 20px;
    letter-spacing: 0.5px;
}

#betacorp_team .client-card article .title {
    color: white;
    letter-spacing: 0.8px;
    transition: all 0.4s ease;
    line-height: 20px;
    margin-top: 6px;
}

#betacorp_team .client-card article .pic {
    width: 150px;
    height: 155px;
    overflow: hidden;
    border-radius: 100%;
    margin: 35px 0 8px;
    box-shadow: 0px 0px 0px 0px rgba(255, 255, 255, 0.3);
    transition: all 0.6s ease;
}

#betacorp_team .client-card article .pic img {
    width: 100%;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}

#betacorp_team .client-card article .desc {
    padding: 10px 30px;
    font-size: 14px;
    text-align: center;
    line-height: 24px;
    color: #666;
    height: 90px;
    transition: all 0.4s ease-out;
}

#betacorp_team .owl-carousel .nav-btn {
    height: 47px;
    position: absolute;
    width: 26px;
    cursor: pointer;
    top: 100px !important;
}

#betacorp_team .owl-carousel .owl-prev.disabled,
#betacorp_team .owl-carousel .owl-next.disabled {
    pointer-events: none;
    opacity: 0.2;
}

#betacorp_team .owl-carousel .prev-slide {
    background: url(../images/nav-icon.jpg) no-repeat scroll 0 0;
    left: -33px;
}

#betacorp_team .owl-carousel .next-slide {
    background: url(../images/nav-icon.jpg) no-repeat scroll -24px 0px;
    right: -33px;
}

#betacorp_team .owl-carousel .prev-slide:hover {
    background-position: 0px -53px;
}

#betacorp_team .owl-carousel .next-slide:hover {
    background-position: -24px -53px;
}

@media (max-width: 768px) {
    #betacorp_team .client-card {
        height: 315px;
        min-width: 200px;
        margin: 0 auto 12px;
    }
}

/* ==========  PORTFOLIO ==========  */
.portfolio-item,
.team-member,
.client-card {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.portfolio-item img,
.team-member img {
    height: auto;
}

.portfolio-item .overlay,
.team-member .overlay,
.client-card .overlay {
    position: absolute;
    top: 0;
    left: -100%;
    background-color: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    transition: all 0.4s ease;
    color: #c4c4c4;
}

.client-card .overlay {
    z-index: 10;
    left: 0;
    opacity: 0;
    top: -100%;
}

.portfolio-item .h4 {
    color: #fff;
}

.portfolio-item:hover .overlay,
.team-member:hover .overlay {
    left: 0;
}

.client-card:hover .overlay {
    top: 0;
    opacity: 1;
}

.portfolio-item p,
.team-member p,
.client-card p {
    padding: 0px 16px 0px 22px;
}

.portfolio-item p {
    margin: 0 auto !important;
}

.portfolio-item p,
.team-member p,
.client-card p {
    padding: 0px 16px 0px 16px;
    margin: auto;
}

/* ==========  TEAM ==========  */
.team-member .content {
    padding: 16px;
    text-align: center;
    background: linear-gradient(178deg, #dbdbdb, #f3f3f3);
}

/* ==========  REVIEWS ==========  */
.review {
    padding: 24px;
    position: relative;
}

.review .quote {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 140px;
    opacity: 0.1;
}

.review .stars {
    color: #ea8424;
}

.review .person {
    display: flex;
    align-items: center;
}

.review .person img {
    width: 70px;
    margin-right: 18px;
}

.review .person .h5 {
    margin-bottom: 6px;
}

.review .person p {
    margin: 0;
}

.review .saying {
    margin-top: 18px;
    margin-bottom: 18px;
}


/* ==========  OUR COMPANIES ==========  */
.card_outer {
    display: grid;
    grid-template-columns: auto auto auto auto;
    grid-gap: 20px;
}

.card {
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding: 1rem;
    width: 100%;
    min-height: 320px;
    text-align: center;
    color: #fff;
    background-color: #fff;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1), 0 2px 2px rgba(0, 0, 0, 0.1),
        0 4px 4px rgba(0, 0, 0, 0.1), 0 8px 8px rgba(0, 0, 0, 0.1),
        0 16px 16px rgba(0, 0, 0, 0.1);
}

.card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 110%;
    background-size: cover;
    background-position: center;
    transition: transform calc(700ms * 1.5) cubic-bezier(0.19, 1, 0.22, 1);
    pointer-events: none;
}

.card:after {
    opacity: 0;
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200%;
    pointer-events: none;
    background-color: rgba(0, 0, 0, 0.5);
    transform: translateY(-50%);
    transition: transform calc(700ms * 2) cubic-bezier(0.19, 1, 0.22, 1);
}

.card:hover:after {
    opacity: 1;
    transition: opacity calc(700ms * 1.5) cubic-bezier(0.19, 1, 0.22, 1);
}

.card:nth-child(1):before {
    background-image: url("../images/beta-gift.jpg");
}

.card:nth-child(2):before {
    background-image: url("../images/taxpiller_new.png");
}

.card:nth-child(3):before {
    background-image: url("../images/ippo_new.png");
}

.card:nth-child(4):before {
    background-image: url("../images/befence_new.png");
}

.card.second_row:nth-child(1):before {
    background-image: url("../images/bulkathon.jpg");
}

.card.second_row:nth-child(2):before {
    background-image: url("../images/banyan.jpg");
}

.card.second_row:nth-child(3):before {
    background-image: url("../images/srimithra_new.png");
}

.card.second_row:nth-child(4):before {
    background-image: url("../images/finguard.jpg");
}

.card .content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 1rem;
    transition: transform 700ms cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 1;
}

.card .content>*+* {
    margin-top: 1rem;
}

.card .content .title {
    font-size: 20px;
    font-weight: bold;
    line-height: 35px;
    color: #ffffff;
    background: #00000091;
    padding: 4px 16px;
    border-radius: 8px;
}

.copy {
    font-size: 15px;
    font-style: italic;
    line-height: 25px;
}

.btn {
    cursor: pointer;
    margin-top: 1.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.65rem;
    font-weight: bold;
    letter-spacing: 0.025rem;
    text-transform: uppercase;
    color: white;
    background-color: black;
    border: none;
}

.betacorp-hr {
    height: 2px;
    width: 100%;
    display: block;
    background: #376f7f;
    border-radius: 50px;
    margin: 12px auto;
}

.btn:hover {
    background-color: #0d0d0d;
}

@media (max-width: 560px) {
    .card {
        justify-content: center;
        align-items: center;
        width: 90%;
        margin: auto;
    }

    .card:before {
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
    }

    .card::after {
        opacity: 1;
        transition: opacity calc(700ms * 1.5) cubic-bezier(0.19, 1, 0.22, 1);
    }

    .card_outer {
        grid-template-columns: auto;
    }
}

@media (min-width: 600px) and (max-width: 768px) {
    .card_outer {
        grid-template-columns: auto auto;
    }
}

@media (hover: hover) and (min-width: 600px) {
    .card:after {
        transform: translateY(0);
    }

    .card .content {
        transform: translateY(calc(100% - 4.5rem));
    }

    .card .content>*:not(.title) {
        opacity: 0;
        transform: translateY(1rem);
        transition: transform 700ms cubic-bezier(0.19, 1, 0.22, 1), opacity 700ms cubic-bezier(0.19, 1, 0.22, 1);
    }

    .card:hover,
    .card:focus-within {
        align-items: center;
    }

    .card:hover:before,
    .card:focus-within:before {
        transform: translateY(-4%);
    }

    .card:hover:after,
    .card:focus-within:after {
        transform: translateY(-50%);
    }

    .card:hover .content,
    .card:focus-within .content {
        transform: translateY(0);
    }

    .card:hover .content>*:not(.title),
    .card:focus-within .content>*:not(.title) {
        opacity: 1;
        transform: translateY(0);
        transition-delay: calc(700ms / 8);
    }

    .card:focus-within:before,
    .card:focus-within:after,
    .card:focus-within .content,
    .card:focus-within .content>*:not(.title) {
        transition-duration: 0s;
    }
}



/* ==========  BLOG ==========  */
.blog-post .content {
    padding: 24px;
}

.blog-post .content .btn {
    padding: 8px 18px;
}

/* ==========  CONTACT ==========  */
.contact-info {
    text-align: center;
    padding: 24px;
}

.contact_form {
    position: relative;
}

.form {
    width: 570px;
    padding: 16px;
    margin-top: 20px;
    position: absolute;
    right: 8px;
    background: #ffffff;
    border: 2px solid #cdcdcd;
    border-radius: 8px;
}

.form textarea {
    resize: none;
}

.form h1 {
    font-size: 26px;
}

@media (max-width: 768px) {
    #betacorp-clients {
        padding: 50px 0px;
    }

    .contact_form {
        padding-bottom: 0px;
    }

    .form {
        padding: 24px;
        position: static;
        width: 90%;
        margin: auto;
    }

    .form-control {
        padding: 12px;
        font-size: 12px;
    }

    .google-map {
        min-height: 400px;
    }
}

.form-group {
    margin-bottom: 16px;
}

.form-gorup,
.form-control {
    width: 100%;
    display: inline-block;
}

.form-control {
    background-color: rgb(240, 240, 240);
    border: 1px solid transparent;
    font-family: "Poppins";
    padding: 16px;
    font-size: 14px;
}

.form-control:focus {
    outline: 0;
    border-color: #ea8424;
}

button.btn {
    font-family: "Poppins";
}

.google-map {
    width: 100%;
    min-height: 650px;
}

/* FOOTER */
footer {
    background-image: url(../images/footer-background-img_01.jpg);
    background-attachment: fixed;
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;
}

.footer-widget p {
    color: #c3c3c3;
    margin-bottom: 0px;
}

.company_list {
    display: flex;
    justify-content: space-evenly;
}

.footer-widget .complist-title {
    text-align: center;
}

ul.our_company {
    width: 40%;
}

ul.our_company:first-child {
    border-right: 2px solid #f18200;
}

.company_address {
    border-bottom: 2px solid #626262;
}

.company_name {
    font-weight: 500;
}

.cont-details {
    margin-top: 8px;
}

.footer-top {
    padding-top: 100px;
    padding-bottom: 60px;
}

.footer-top .h4 {
    color: #fff;
}

.footer-top a {
    color: rgb(149 147 147);
    font-weight: 500;
    white-space: nowrap;
}

.footer-top a:hover {
    color: #fff;
}

.footer-top img {
    width: unset;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    padding-bottom: 30px;
    background: rgba(0, 0, 0, 0.5);
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom a {
    color: #02799b;
}

/* Back to Top Button */
.back-to-top {
    background-color: #3e6f7e;
    text-decoration: none;
    cursor: pointer;
    width: 55px;
    height: 55px;
    z-index: 999;
    position: fixed;
    right: 20px;
    bottom: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 100%;
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.4);
}

.back-to-top:hover {
    background-color: #3e6f7e;
}

.back-to-top:active {
    box-shadow: none;
    background-color: #3e6f7e;
}

.back-to-top svg.icon__arrow-up {
    fill: white;
    width: 32px;
    height: 32px;
}

/* WhatssApp Button */
.whatsapp_btn {
    position: fixed;
    bottom: 30px;
    right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 55px;
    height: 55px;
    padding: 8px;
    z-index: 9999;
    border-radius: 50%;
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    80% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }
}

.whatsapp_btn img {
    height: 55px;
    width: 55px;
    border-radius: 50%;
    margin-top: 10px;
}

@media (max-width: 768px) {

    .owl-carousel .owl-nav button.owl-prev,
    .owl-carousel .owl-nav button.owl-next {
        width: 35px;
        height: 35px;
    }

    #betacorp-clients img,
    #betacorp-clients:hover .team-member:not(:hover) {
        -webkit-filter: none;
        filter: none;
    }

    .footer-top .four-col-grid {
        grid-template-columns: auto;
    }

    .footer-widget h4 {
        text-align: left;
    }

    .footer-widget ul {
        padding-left: 0;
    }

    .footer-widget .complist-title {
        text-align: left;
    }

    .whatsapp_btn,
    .whatsapp_btn img,
    .back-to-top {
        width: 45px;
        height: 45px;
    }

    .back-to-top svg.icon__arrow-up {
        width: 26px;
        height: 26px;
    }

    .company_list {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    ul.our_company {
        width: 100%;
    }

    ul.our_company:first-child {
        border-bottom: 2px solid #f18200;
        border-right: none;
    }
}