:root {
    --bg-color: #00616a;
    --bg-light-color: #03bdce;
    --font-color: #00616a;
    --bg-hover-color: #12828d;
}
body {
    font-family: "Open Sans", sans-serif;
    color: #444444;
}

a {
    text-decoration: none;
    /* color: #5cb874; */
}

a:hover {
    color: #80c792;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: var(--bg-color);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: var(--bg-light-color);
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
    background: #fbfbfb;
    font-size: 15px;
    height: 40px;
    padding: 0;
}

#topbar .contact-info a {
    line-height: 0;
    color: #444444;
    transition: 0.3s;
}

#topbar .contact-info a:hover {
    color: #019dac;
}

#topbar .contact-info i {
    /* color: #5cb874; */
    color: var(--bg-color);
    line-height: 0;
    margin-right: 5px;
}

#topbar .contact-info .phone-icon {
    margin-left: 15px;
}

#topbar .social-links a {
    color: #6f6f6f;
    padding: 4px 12px;
    display: inline-block;
    line-height: 1px;
    transition: 0.3s;
}

#topbar .social-links a:hover {
    color: var(--bg-color);
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    background: #fff;
    transition: all 0.5s;
    z-index: 997;
    height: 70px;
}

#header.header-scrolled {
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo {
    font-size: 30px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* #header .logo a {

  color: #00616a;
} */

#header .logo img {
    /* max-height: 40px; */
    max-height: 60px;
}

.scrolled-offset {
    margin-top: 70px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px 10px 15px;
    font-size: 15px;
    color: #222222;
    white-space: nowrap;
    transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover,
.navbar,
.navbar:focus,
.navbar li:hover > a {
    color: var(--bg-color);
}

/* .navbar ul li a.active:after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--bg-color);; 
  position: absolute;
  bottom: 0;
  left: 0;
} */

.zuess-text {
    font-size: 22px;
    font-weight: 600;
    text-transform: capitalize;
    font-family: 'Poppins', sans-serif;

    background: linear-gradient(90deg, #6A00FF, #E91E63);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    letter-spacing: 1px;
}


.navbar ul li a.active:after {
    content: "";
    display: block;
    width: 50%;
    height: 2px;
    background-color: var(--bg-color);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%);
}
.navbar .getstarted,
.navbar .getstarted:focus {
    /* color: #5cb874; */
    color: var(--bg-color);
    padding: 8px 25px;
    margin-left: 30px;
    border-radius: 4px;
    border: 2px solid var(--bg-color);
    transition: 0.3s;
    font-size: 14px;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
    /* background: #5cb874; */
    color: #fff;
    background-color: var(--bg-color);
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 5px 20px;
    text-transform: none;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
    color: var(--bg-color);
}

.navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
    color: #222222;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: #fff;
}
#mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
}

#mobile-nav-close i {
    font-size: 32px;
    color: #fff;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(9, 9, 9, 0.9);
    transition: 0.3s;
    z-index: 999;
    /* bottom: 103%; */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 300px;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    overflow-y: auto;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #222222;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
    color: #5cb874;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
    color: #5cb874;
}

.navbar-mobile .dropdown > .dropdown-active {
    display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    height: 70vh;
    background-color: rgba(9, 9, 9, 0.8);
    overflow: hidden;
    position: relative;
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

#hero .carousel-item::before {
    content: "";
    background-color: rgba(45, 103, 60, 0.4);
}

#hero .carousel-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 50px;
    right: 50px;
}

#hero .container {
    text-align: center;
}

#hero h2 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 48px;
    font-weight: 700;
}

#hero p {
    animation-delay: 0.4s;
    margin: 0 auto 30px auto;
    color: #fff;
}

#hero .carousel-inner .carousel-item {
    transition-property: opacity;
    background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
    opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
    opacity: 1;
    transition: 0.5s;
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
    background: none;
    font-size: 30px;
    line-height: 0;
    width: auto;
    height: auto;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    transition: 0.3s;
    color: rgba(255, 255, 255, 0.5);
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
    background: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
    list-style-type: none;
    cursor: pointer;
    background: #fff;
    overflow: hidden;
    border: 0;
    width: 12px;
    height: 12px;
    border-radius: 50px;
    opacity: 0.6;
    transition: 0.3s;
}

#hero .carousel-indicators li.active {
    opacity: 1;
    /* background: #5cb874; */
    background-color: var(--bg-color);
}

#hero .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    transition: 0.5s;
    line-height: 1;
    color: #fff;
    animation-delay: 0.8s;
    /* background: #5cb874; */
    background-color: var(--bg-color);
}

#hero .btn-get-started:hover {
    /* background: #6ec083; */
    background-color: var(--bg-light-color);
}

@media (min-width: 1024px) {
    #hero .carousel-control-prev,
    #hero .carousel-control-next {
        width: 5%;
    }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
.industries {
    padding: 60px 0 0 0 !important;
}
section {
    padding: 60px 0;
}

.section-bg {
    background-color: #f8fcf9;
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.section-title h2::before {
    content: "";
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #ddd;
    bottom: 1px;
    left: calc(50% - 60px);
}

.section-title h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    /* background: #5cb874; */
    background: var(--bg-color);
    bottom: 0;
    left: calc(50% - 20px);
}

.section-title p {
    margin-bottom: 0;
    font-size: 14px;
    color: #919191;
}

/*--------------------------------------------------------------
# Featured Services
--------------------------------------------------------------*/
.featured-services {
    padding: 20px 0;
}

/* .featured-services .icon-box {
  padding: 20px;
} */
.featured-services .icon-box {
    padding: 30px 20px;
    height: 100%;
    /* background: #5cb874; */
    /* background: #230075; */
}

.featured-services .icon-box-bg {
    background-image: linear-gradient(
        0deg,
        #222222 0%,
        #2f2f2f 50%,
        #222222 100%
    );
}

.featured-services .icon {
    margin-bottom: 15px;
}

.featured-services .icon i {
    color: #fff;
    font-size: 42px;
}

.featured-services .title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
    text-align: center;
}

.featured-services .title a {
    color: #222222;
    transition: 0.3s;
}

.featured-services .icon-box:hover .title a {
    color: #fff;
}

.featured-services .description {
    line-height: 24px;
    font-size: 14px;
    text-align: center;
    color: #e3e4e5;
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about .content h3 {
    font-weight: 700;
    font-size: 28px;
}

.about .content ul {
    list-style: none;
    padding: 0;
}

.about .content ul li {
    padding-bottom: 10px;
}

.about .content ul i {
    font-size: 20px;
    padding-right: 4px;
    color: #5cb874;
}

.about .content p:last-child {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us {
    padding: 0;
}

.why-us .row {
    overflow: hidden;
}

.why-us .content-item {
    padding: 20px;
    border-left: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin: -1px;
    text-align: center;
}
.content-item i {
    color: white;
}
.why-us .content-item span {
    display: block;
    font-size: 24px;
    font-weight: 400;
    color: #6ec083;
}

.why-us .content-item h4 {
    font-size: 20px;
    font-weight: 300;
    padding: 0;
    margin: 10px 0;
    color: #fff;
}

.why-us .content-item p {
    color: #aaaaaa;
    font-size: 15px;
    margin: 0;
    padding: 0;
}

@media (max-width: 768px) {
    .why-us .content-item {
        padding: 40px 0;
    }
}

/*--------------------------------------------------------------
# Our Clients
--------------------------------------------------------------*/
.clients .swiper-slide img {
    opacity: 0.5;
    transition: 0.3s;
}

.clients .swiper-slide img:hover {
    opacity: 1;
}

.clients .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #5cb874;
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #5cb874;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
/* .services .icon-box {
  text-align: center;
  padding: 70px 20px 80px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
} */
.services .icon-box {
    text-align: center;
    padding: 20px 20px 20px 20px;
    transition: all ease-in-out 0.3s;
    background: #fff;
    /* box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1); */
    box-shadow: 0px 5px 90px 20px rgba(110, 123, 131, 0.1);
    height: 100%;
}
.p-relative {
    position: relative;
}
.services .view_more {
    position: absolute;
    bottom: 0; /* Adjust this value to change the vertical position */
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    background: #ddddddc4;
    padding: 10px;
}
.services .icon-box .icon {
    width: 50px;
    margin-right: auto;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: ease-in-out 0.3s;
    position: relative;
}
.services .icon-box .icon i {
    font-size: 36px;
    transition: 0.5s;
    position: relative;
}

.services .icon-box .icon svg {
    position: absolute;
    top: 0;
    left: 0;
}

.services .icon-box .icon svg path {
    transition: 0.5s;
    fill: #f5f5f5;
}

.services .icon-box h4 {
    font-weight: 600;
    margin: 10px 0 15px 0;
    font-size: 18px;
    margin-right: 20px;
}

.services .icon-box h4 a {
    color: #222222;
    transition: ease-in-out 0.3s;
}

.services .icon-box p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.services .icon-box:hover {
    border-color: #fff;
    box-shadow: 0px 0 35px 0 rgba(0, 0, 0, 0.08);
}

.services .iconbox-blue i {
    color: #47aeff;
}

.services .iconbox-blue:hover .icon i {
    color: #fff;
}

.services .iconbox-blue:hover .icon path {
    fill: #47aeff;
}

.services .iconbox-orange i {
    color: #ffa76e;
}

.services .iconbox-orange:hover .icon i {
    color: #fff;
}

.services .iconbox-orange:hover .icon path {
    fill: #ffa76e;
}

.services .iconbox-pink i {
    color: #e80368;
}

.services .iconbox-pink:hover .icon i {
    color: #fff;
}

.services .iconbox-pink:hover .icon path {
    fill: #e80368;
}

.services .iconbox-yellow i {
    color: #ffbb2c;
}

.services .iconbox-yellow:hover .icon i {
    color: #fff;
}

.services .iconbox-yellow:hover .icon path {
    fill: #ffbb2c;
}

.services .iconbox-red i {
    color: #ff5828;
}

.services .iconbox-red:hover .icon i {
    color: #fff;
}

.services .iconbox-red:hover .icon path {
    fill: #ff5828;
}

.services .iconbox-teal i {
    color: #11dbcf;
}

.services .iconbox-teal:hover .icon i {
    color: #fff;
}

.services .iconbox-teal:hover .icon path {
    fill: #11dbcf;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
    background: #5cb874;
    padding: 80px 0;
}

.cta h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
}

.cta p {
    color: #fff;
}

.cta .cta-btn {
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 2px;
    transition: 0.5s;
    margin: 10px;
    border: 2px solid #fff;
    color: #fff;
    border-radius: 4px;
}
.industries .cta-btn {
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 2px;
    transition: 0.5s;
    margin: 10px;
    border: 2px solid #fff;
    color: #fff;
    border-radius: 4px;
}
.industries .cta-btn:hover {
    background: #fff;
    color: #5cb874;
}
.cta .cta-btn:hover {
    background: #fff;
    color: #5cb874;
}

@media (max-width: 1024px) {
    .cta {
        background-attachment: scroll;
    }
}

@media (min-width: 769px) {
    .cta .cta-btn-container {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
    text-align: center;
    margin-bottom: 20px;
    box-shadow: 0px 0px 12px 0px rgba(34, 34, 34, 0.07);
    padding: 30px 10px;
    background: #fff;
}

.team .member img {
    max-width: 60%;
    border-radius: 50%;
    margin: 0 0 30px 0;
}

.team .member h4 {
    font-weight: 700;
    margin-bottom: 2px;
    font-size: 15px;
}

.team .member span {
    font-style: italic;
    display: block;
    font-size: 13px;
}

.team .member p {
    padding-top: 10px;
    font-size: 14px;
    font-style: italic;
    color: #aaaaaa;
}

.team .member .social {
    margin-top: 15px;
}

.team .member .social a {
    color: #919191;
    transition: 0.3s;
}

.team .member .social a:hover {
    /* color: #5cb874; */
    /* color:#230075; */
    color: var(--bg-color);
}

.team .member .social i {
    font-size: 18px;
    margin: 0 2px;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
    /* border-top: 3px solid #00616a;
  border-bottom: 3px solid #00616a; */
    padding: 30px;
    background: #fff;
    width: 100%;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .info i {
    font-size: 20px;
    color: var(--bg-color);
    float: left;
    width: 44px;
    height: 44px;
    background: #eaf6ed;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}

.contact .info h4 {
    padding: 0 0 0 60px;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #222222;
}

.contact .info p {
    padding: 0 0 10px 60px;
    margin-bottom: 5px;
    font-size: 14px;
    color: #555555;
}

.contact .info .social-links {
    padding-left: 60px;
}

.contact .info .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #333;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
    margin-right: 10px;
}

.contact .info .social-links a:hover {
    background: #5cb874;
    color: #fff;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
    background: var(--bg-color);
    color: #fff;
}

.contact .php-email-form {
    width: 100%;
   
    padding: 30px;
    background: #fff;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}
.contact .php-email-form2 {
    width: 100%;
   
    padding: 30px;
    background: #fff;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}
.contact .php-email-form .form-group {
    padding-bottom: 8px;
}

.contact .php-email-form2 .form-group {
    padding-bottom: 8px;
}

.contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: var(--bg-color);
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

.contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid var(--bg-color);
    border-top-color: #eee;
    animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    border-radius: 4px;
}
.contact .php-email-form2 input,
.contact .php-email-form2 textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    border-radius: 4px;
}
.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
    border-color: var(--bg-color);
}
.contact .php-email-form2 input:focus,
.contact .php-email-form2 textarea:focus {
    border-color: var(--bg-color);
}

.contact .php-email-form input {
    height: 44px;
}

.contact .php-email-form textarea {
    padding: 10px 12px;
}
.contact .php-email-form2 textarea {
    padding: 10px 12px;
}

/* .contact .php-email-form button[type=submit] {
  background: #00616a;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
} */

/* .contact .php-email-form button[type=submit]:hover {
  background: #6ec083;
} */

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 15px 0;
    background: #fbfbfb;
    min-height: 40px;
}

@media (max-width: 992px) {
    .breadcrumbs {
        margin-top: 66px;
    }
}

.breadcrumbs h2 {
    font-size: 28px;
    font-weight: 300;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

.breadcrumbs ol li + li {
    padding-left: 10px;
}

.breadcrumbs ol li + li::before {
    display: inline-block;
    padding-right: 10px;
    color: #3c3c3c;
    content: "/";
}

@media (max-width: 768px) {
    .breadcrumbs .d-flex {
        display: block !important;
    }

    .breadcrumbs ol {
        display: block;
    }

    .breadcrumbs ol li {
        display: inline-block;
    }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.text-muted {
    --bs-text-opacity: 1;
    color: #e4e4e4 !important;
}
#footer {
    background: #090909;
    color: #fff;
    font-size: 14px;
    /* text-align: center; */
    padding: 30px 0;
    /* position: relative; */
}

#footer h3 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    position: relative;
    font-family: "Poppins", sans-serif;
    padding: 0;
    margin: 0 0 15px 0;
}

#footer p {
    font-size: 15;
    font-style: italic;
    padding: 0;
    margin: 0 0 40px 0;
}

#footer .social-links {
    margin: 0 0 40px 0;
}

#footer .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #5cb874;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#footer .social-links a:hover {
    background: #449d5b;
    color: #fff;
    text-decoration: none;
}

#footer .copyright {
    margin: 0 0 5px 0;
}

#footer .credits {
    font-size: 13px;
}

.about_image {
    float: right;

    margin: 0px 0px 15px 20px;
    height: 200px;
}
.about_text {
    padding: 30px;
    color: white;
    width: 100%;
    /* background-color:#449d5b; */
    /* background: #230075; */
}
.about_text p {
    text-align: justify;
}
blockquote {
    font-style: italic;
    line-height: 1.5;
    text-align: justify;
    color: #ffffff;
    display: block;
    margin: 0;
    font-size: 25px;
    font-weight: 400;
    line-height: 2em;
    position: relative;
    padding: 0.5rem 5rem 0.5em 0;
}

.bt_bb_text p:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}
.experience_details p {
    float: left;
    width: 100%;
    color: #000;
    font-size: 18px;
}

blockquote:after {
    content: " ";
    display: table;
    width: 100%;
    clear: both;
}
em {
    line-height: 1;
}
.bq {
    font-size: 18px;
}

.gradient-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    padding: 30px;
}
@media screen and (max-width: 991px) {
    .gradient-cards {
        grid-template-columns: 1fr;
    }
}
.container-title {
    text-align: center;
    padding: 0 !important;
    margin-bottom: 40px;
    font-size: 40px;
    color: #fff;
    font-weight: 600;
    line-height: 60px;
}
.card {
    max-width: 550px;
    border: 0;
    width: 100%;
    margin-inline: auto;
}
.container-card {
    position: relative;
    border: 2px solid transparent;
    background: linear-gradient(71deg, #080509, #1a171c, #080509);
    background-clip: padding-box;
    border-radius: 45px;
    padding: 40px;
}
.container-card img {
    margin-bottom: 32px;
}
.bg-green-box,
.bg-white-box,
.bg-yellow-box,
.bg-blue-box {
    position: relative;
}
.bg-green-box::after,
.bg-white-box::after,
.bg-yellow-box::after,
.bg-blue-box::after {
    position: absolute;
    top: -1px;
    bottom: -1px;
    left: -1px;
    right: -1px;
    content: "";
    z-index: -1;
    border-radius: 45px;
}
.bg-green-box::after {
    background: linear-gradient(71deg, #0d1212, #3da077, #0d1212);
}
.bg-white-box::after {
    background: linear-gradient(71deg, #121013, #b0afb0, #121013);
}
.bg-yellow-box::after {
    background: linear-gradient(71deg, #110e0e, #afa220, #110e0e);
}
.bg-blue-box::after {
    background: linear-gradient(71deg, #0c0a0e, #5f6fad, #0c0a0e);
}
.card-title {
    font-weight: 600;
    color: white;
    letter-spacing: -0.02em;
    line-height: 40px;
    font-style: normal;
    font-size: 28px;
    padding-bottom: 8px;
}
.card-description {
    font-weight: 600;
    line-height: 32px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    max-width: 470px;
}

.service_form {
    padding-left: 2em;
    padding-right: 2em;
    width: 100%;
}
.bg_green {
    color: white;
    width: 100%;
    background-color: #449d5b;
}
.Who_We_serve {
    padding: 30px 0 30px 0;
}

.our-skill-area {
    position: relative;
}

.our-skill-area {
    background: rgba(248, 248, 248, 0.8)
        url("../img/slide/Chartered-Accountant.jpg") no-repeat fixed center top /
        cover;
}

.test-overly {
    background: rgba(0, 0, 0, 0.5); /* Adjust the opacity here */
    position: absolute;
    width: 100%;
    height: 100%;
}
.col_md_4 h1,
.col_md_4 h3 {
    color: white;
    position: relative;
    z-index: 1; /* Ensure text appears on top of overlay */
}
.col_md_4 {
    text-align: center;
    /* padding-bottom: 50px; */
    border-right: 1px dashed rgb(161, 161, 161);
}

.col_md_4:last-child {
    border-right: 0px solid rgb(161, 161, 161);
}
.col_md_4 h1 {
    color: white;
}
.col_md_4 h3 {
    color: rgb(155, 155, 155);
}
.counter {
    animation-duration: 1s;
    animation-delay: 0s;
}

i {
    font-size: 20px !important;
}
.area-padding-2 {
    padding: 30px 0;
}

.blog-sec,
.wrap-item,
.loction-info {
    margin-bottom: 15px;
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.blog-info h2 {
    text-transform: capitalize;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 1px;
    padding-top: 5px;
}

.blog-comment {
    margin-top: 12px;
    min-height: 30px;
}

.blog-info p,
.blog-comment p {
    color: #949494;
}

.read-more {
    color: #949494;
    margin-top: 15px;
    display: inline-block;
}

.blog-img {
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
}

.blog-img img:hover {
    opacity: 1;
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
}

.blog-img img {
    width: 100%;
    opacity: 0.8;
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -ms-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    transition: all 0.5s linear;
}
.mr-auto {
    margin-right: auto;
}
.title {
    display: flex;
    align-items: center;
}
.card-1 {
    -webkit-box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15);
}
.card-1 .card-heading {
    background: url(../img/slide/coins-paper-money-globe-white-statistic-form-background.jpg)
        center center / cover no-repeat;
    padding-top: 210px;
}

.card-1 .card-body {
    padding: 30px 30px;
}

@media (max-width: 767px) {
    .card-1 .card-body {
        padding: 0 40px;
        padding-top: 40px;
        padding-bottom: 40px;
    }
}
.title_above {
    text-align: center;
    color: white;
}
.col_lg_3 {
    flex: 0 0 auto;
    width: 20% !important;
}
.search_btn {
    padding: 5px 10px !important;
}
.search_btn i {
    font-size: 12px !important;
    margin-left: 0 !important;
}

.margin_b {
    margin-bottom: 15px !important;
}
.footer_info .d-flex {
    align-items: center;
}
.footer_info .d-flex p {
    margin-left: 10px !important;
}
.bg_button {
    /* background: #00616a; */
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    transition: 0.5s;
    line-height: 1;
    color: #fff;
    animation-delay: 0.8s;
    border: none;
}

.bg_button:hover {
    background-color: #00a2b1;
    color: white;
}
.bg_button:focus {
    background-color: #00a2b1;
    color: white;
}
.bg_blue {
    background: var(--bg-color);
    border: none;
}
.font_color {
    color: var(--bg-color) !important;
}

.font_color_light {
    color: var(--bg-light-color) !important;
}
.pb-160 {
    padding-bottom: 160px;
}
.pt-160 {
    padding-top: 160px;
}
.breadcrumb__thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    /* background-image: url("../../assets/img/slide/breadcrumb.png"); */
}
.breadcrumb__thumb[data-background] {
    background-image: var(--background-url);
}
.breadcrumb__thumb_contact {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-image: url("../../assets/img/breadcrumb/contact.png");
}
.breadcrumb__thumb_about {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-image: url("../../assets/img/slide/breadcrumb2.png");
}
.small-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.breadcrumb__wrapper .breadcrumb__title {
    color: #ffffff;
    font-family: "bootstrap-icons";
}
.breadcrumb__wrapper ul {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    margin: 0px;
    padding: 0px;
    list-style: none;
}
.sub_breadcrumb {
    color: #c3c3c3;
}

.breadcrumb__wrapper .breadcrumb__menu ul li span {
    position: relative; /* Ensure the ::after pseudo-element is positioned relative to this element */
}

.breadcrumb__wrapper .breadcrumb__menu ul li span::after {
    content: "";
    position: absolute;
    bottom: -18px;
    left: 0;
    width: 5rem;
    height: 2px;
    background-color: #00d1e4;
}
.card1 {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    width: 500px;
    float: right;
}
.industries_icon {
    font-size: 4.571428rem !important;
}

.inner_box {
    padding: 75px 75px 75px 75px;
    overflow: hidden;
    position: relative;
    z-index: 0;
    border-radius: 5px;

    transition: all 0.3s ease;
}
.icon_2 {
    bottom: -20px;
    color: #4b00e7;
    opacity: 0.2;
    position: absolute;
    right: 0;
    z-index: -1;
}
.icon_2 i {
    font-size: 7rem !important;
}

.icon_1 {
    text-align: center;
    background: #4b00e7;
    border-top-left-radius: 5px;
    color: #fff;
    border-radius: 10px;
    left: 0;
    padding: 0.5rem 1.5rem;
    position: absolute;
    top: 0;
}
.icon_1 i {
    font-size: 3rem !important;
}
.jltma-infobox-content {
    padding-top: 3rem;
    text-align: left;
}
.jltma-infobox-content-title {
    color: #132c47;
    text-align: left;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
    margin: 0 0 10px;
}

.jltma-infobox-content-description {
    color: #797c80;
    text-align: left;
    font-size: 16px;
}
/* .card_mission  {
 max-width:100%!important;
}
*/
.card_mission {
    max-width: 100%;
    height: 100%;
    border: 0;
    justify-content: center;
}
.card_mission_text {
    max-width: 100%;
    height: 100%;
    border: 0;
    justify-content: center;
}
.card_mission img {
    height: 100%;
    width: 100%;
}

.box-container {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 35px 15px;
    width: 100%;
}

@media screen and (min-width: 1380px) {
    .box-container {
        flex-direction: row;
    }
}

.box-item {
    position: relative;
    -webkit-backface-visibility: hidden;
    width: 100%;
    margin-bottom: 35px;
    /* max-width: 100%; */
    height: 150px;
}

.flip-box {
    -ms-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    perspective: 1000px;
    -webkit-perspective: 1000px;
    height: 100%;
}
.flip-box img {
    height: 50px;
}
.flip-box-front,
.flip-box-back {
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    height: 100%;
    /* min-height: 475px; */
    -ms-transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
    -webkit-transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.flip-box-front {
    -ms-transform: rotateY(0deg);
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
    -webkit-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.flip-box:hover .flip-box-front {
    -ms-transform: rotateY(-180deg);
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
    -webkit-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.flip-box-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;

    -ms-transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    -webkit-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.flip-box:hover .flip-box-back {
    -ms-transform: rotateY(0deg);
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
    -webkit-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.flip-box .inner {
    position: absolute;
    left: 0;
    width: 100%;
    /* padding: 60px; */
    outline: 1px solid transparent;
    -webkit-perspective: inherit;
    perspective: inherit;
    z-index: 2;

    transform: translateY(-50%) translateZ(60px) scale(0.94);
    -webkit-transform: translateY(-50%) translateZ(60px) scale(0.94);
    -ms-transform: translateY(-50%) translateZ(60px) scale(0.94);
    top: 50%;
}

.flip-box-header {
    font-size: 20px;
}

.flip-box p {
    font-size: 20px;
    line-height: 1.5em;
}

.flip-box-img {
    margin-top: 25px;
}

.flip-box-button {
    background-color: transparent;
    border: 2px solid #fff;
    border-radius: 2px;
    color: #fff;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    margin-top: 25px;
    padding: 15px 20px;
    text-transform: uppercase;
}
.color-white {
    color: #fff;
}

.bg_blue {
    background: var(--bg-color);
    border: none;
}
.font_color {
    color: var(--bg-color) !important;
}
a.font_color:hover {
    color: var(--bg-light-color) !important;
}
a.bg_blue:hover {
    background-color: var(--bg-light-color) !important;
}
.form_border {
    border-top: 3px solid var(--bg-color);
    border-bottom: 3px solid var(--bg-color);
}
.field_border {
    border: 1px solid var(--bg-color);
}

/*team*/
.team_card {
    max-width: 300px !important;
}
.team_card .image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.team_card .image img {
    width: 100%;
    transition: 0.5s;
    height: 100%;
}

.team_card:hover .image img {
    opacity: 0.5;
    transform: translateX(30%);
    /*100%*/
}

.team_card .details {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    /*100%*/
    height: 100%;
    background: var(--bg-color);
    transition: 0.5s;
    transform-origin: left;
    transform: perspective(2000px) rotateY(-90deg);
}

.team_card:hover .details {
    transform: perspective(2000px) rotateY(0deg);
}

.team_card .details .center {
    padding: 20px;
    text-align: center;
    background: #fff;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.team_card .details .center h1 {
    margin: 0;
    padding: 0;
    color: #660000;
    line-height: 20px;
    font-size: 20px;
    text-transform: uppercase;
}

.team_card .details .center h1 span {
    font-size: 14px;
    color: #262626;
}

.team_card .details .center p {
    margin: 10px 0;
    padding: 0;
    color: #262626;
}

.team_card .details .center ul {
    margin: 10px auto 0;
    padding: 0;
    display: table;
}

.team_card .details .center ul li {
    list-style: none;
    margin: 0 5px;
    float: left;
}

.team_card .details .center ul li a {
    display: block;
    background: #262626;
    color: #fff;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    transform: 0.5s;
}

.team_card .details .center ul li a:hover {
    background: var(--bg-color);
}

.sec_row {
    justify-content: center;
}
.border-left {
    border-left: 3px solid var(--bg-color);
}

.border-bottom {
    border-bottom: 3px solid var(--bg-color) !important;
}

.go-corner {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 32px;
    height: 32px;
    overflow: hidden;
    top: 0;
    right: 0;
    background-color: var(--bg-color);
    border-radius: 0 4px 0 32px;
}
.go-arrow {
    margin-top: -4px;
    margin-right: -4px;
    color: white;
    font-family: courier, sans;
}
.above_card {
    display: block;
    position: relative;
    max-width: 100%;
    background-color: var(--bg-color);
    border-radius: 4px;
    padding: 32px 24px;
    color: white;
    /* margin: 12px; */
    text-decoration: none;
    z-index: 0;
    overflow: hidden;
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.above_card:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -16px;
    right: -16px;
    background: white;
    height: 32px;
    width: 40px;
    border-radius: 32px;
    transform: scale(1);
    transform-origin: 50% 50%;
    transition: transform 0.25s ease-out;
}
.above_card:hover:before {
    transform: scale(21);
}
.above_card:hover p {
    transition: all 0.3s ease-out;
    color: var(--bg-color);
}
.above_card:hover h3 {
    transition: all 0.3s ease-out;
    color: var(--bg-color);
}

@keyframes zoom {
    from {
        object-position: 0 50%;
    }
    to {
        object-position: 100% 50%;
    }
}
.animated_card {
    position: relative;
    grid-area: card;
    align-self: center;
    justify-self: center;
    overflow: hidden;
    display: block;
    width: 100%;
    /* max-width: 250px; */
    height: 100%;
    font-size: 18px;
    border-radius: 8px;
    box-shadow: 0 16px 60px rgba(0, 0, 0, 0.3);
    cursor: pointer;

    transition: all 0.3s ease;
}
.animated_card:hover {
    /* box-shadow: 0 40px 130px rgba(0, 0, 0, 0.6); */
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
}

.card__save {
    position: absolute;
    top: 10px;
    right: 10px;
    display: block;
    width: 35px;
    height: 35px;
    background: transparent;
    border: 0;
    opacity: 0;
    border-radius: 3px;

    transition: all 0.3s ease;
}

.card__save:focus {
    outline: 0;
    background-color: rgba(255, 255, 255, 0);
}

.animated_card:hover .card__save {
    opacity: 0.6;
}

.card__save i {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;

    transition: all 0.3s ease;
}

.card__save:hover i {
    color: rgba(255, 255, 255, 0.8);
}

.card__save:active,
.card__save.active {
    opacity: 1 !important;
}

.card__save:active i,
.card__save.active i {
    color: white;
}

.card__image {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
    display: block;
    width: 100%;
    height: 450px;
    pointer-events: none;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 1),
        rgba(0, 0, 0, 0.5)
    );
}

.card__image img {
    -webkit-transform: scale(1.3, 1.3);
    transform: scale(1.3, 1.3);
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;

    transition: all 0.3s ease;
    animation-name: zoom;
    animation-duration: 30s;
    animation-direction: alternate;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.animated_card:hover .card__image img {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 0.5;
}

.card__header {
    display: grid;
    width: 100%;
    height: 150px;
}

.card__profile {
    align-self: center;
    justify-self: center;
    display: block;
    overflow: hidden;
    width: 10vmax;
    height: 10vmax;
    max-width: 100px;
    max-height: 100px;
    border-radius: 50%;
    margin-bottom: 0;
}

.card__profile img {
    -webkit-transform: scale(1.5, 1.5) translateZ(0);
    transform: scale(1.5, 1.5) translateZ(0);
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    -webkit-filter: grayscale(50%) contrast(75%) brightness(1.3);
    filter: grayscale(50%) contrast(75%) brightness(1.3);

    transition: all 0.3s ease;
    mix-blend-mode: normal;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.animated_card:hover .card__profile img {
    -webkit-transform: scale(1, 1) translateZ(0);
    transform: scale(1, 1) translateZ(0);
}

.card__body {
    display: grid;
    padding: 15px 20px;
}

.card__name {
    align-self: center;
    justify-self: center;
    margin-bottom: 2px;
    color: white;
    font-size: 16px;

    letter-spacing: 0.1rem;
    text-align: center;
    text-transform: uppercase;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
    background: -webkit-linear-gradient(white, #a1a1a1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.animated_card:hover .card__name {
    background: -webkit-linear-gradient(white, #c1c1c1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.animated_card:hover .card__job {
    color: rgba(100, 130, 200, 1);
}

.card__bio {
    position: relative;
    -webkit-transform: translateY(30%);
    transform: translateY(30%);
    display: block;
    margin: 10px 0 10px 0;
    font-size: 13px;

    color: rgba(255, 255, 255, 0.65);
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.animated_card:hover .card__bio {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
}

.card__footer {
    position: relative;
    -webkit-transform: translateY(60%);
    transform: translateY(60%);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: "date category";
    padding: 10px 20px;
    opacity: 0;
    -webkit-transition: all var(--speed) ease;
    transition: all var(--speed) ease;
}

.animated_card:hover .card__footer {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
}

.section_top {
    padding: 60px 0 0 0 !important;
}

.service_sec {
    padding: 60px 0 0 0;
}

.snip1567 {
    background-color: #000000;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    color: #ffffff;
    display: inline-block;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6em;
    margin: 10px;
    /* height: 40%; */
    /* max-width: 310px;
  min-width: 250px; */
    overflow: hidden;
    position: relative;
    text-align: left;
    width: 100%;
}

.snip1567 * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
}

.snip1567 img {
    max-width: 100%;
    opacity: 0.75;
    position: relative;
    vertical-align: top;
    height:100%;
}

.snip1567 figcaption {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

.snip1567 h3 {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    background-color: #000000;
    top: 0;
    font-weight: 800;
    font-size: 22px;
    letter-spacing: -0.4px;
    margin: 0;
    padding: 10px 20px;
    position: absolute;
    width: 100%;
}

.snip1567 p {
    position: absolute;
    width: 100%;
    bottom: 0;
    padding: 0px 20px;
    opacity: 0;
    text-align: right;
    -webkit-transition-delay: 0.15s;
    transition-delay: 0.15s;



    display: -webkit-box;
    -webkit-line-clamp: 3; /* number of lines */
    -webkit-box-orient: vertical;

     overflow: hidden;
    text-overflow: ellipsis;
     transition: max-height 0.3s ease, opacity 0.3s ease;



}

.snip1567 span {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 25px;
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
}

.snip1567 .hover {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    align-items: center;
    background-color: var(--bg-color);
    display: flex;
    font-size: 65px;
    justify-content: center;
    opacity: 0;
}

.snip1567 a {
    left: 0;
    bottom: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
}

.snip1567:hover .hover,
.snip1567.hover .hover {
    opacity: 1;
    
}

.snip1567:hover p,
.snip1567.hover p {
    opacity: 1;

}

.snip1567:hover h3,
.snip1567.hover h3 {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
}

.snip1567:hover span,
.snip1567.hover span {
    -webkit-transform: translate(-50%, -50%) scale(0.1);
    transform: translate(-50%, -50%) scale(0.1);
    opacity: 0;
}

/*service details*/
.post-information h2 {
    color: #363636;
    font-size: 22px;
    text-transform: uppercase;
}

.post-information {
    padding: 20px 0;
}

.post-information .entry-meta span a {
    color: #444;
    display: inline-block;
    padding: 10px 0;
}

.entry-meta span a:hover {
    color: #3ec1d5;
}

.post-information .entry-meta {
    border-bottom: 1px solid #ccc;
    margin: 20px 0;
}

.post-information .entry-meta span i {
    padding: 0 10px;
}

.entry-content > p {
    color: #444;
}

.entry-meta > span {
    color: #444;
}

.entry-content blockquote {
    background: #fff none repeat scroll 0 0;
    border-left: 5px solid #3ec1d5;
    font-size: 17.5px;
    font-style: italic;
    margin: 0 0 20px 40px;
    padding: 22px 20px;
}

.search-option {
    border: 1px solid #ccc;
    height: 42px;
    margin-bottom: 30px;
}
.search-option input {
    border: medium none;
    padding: 6px 15px;
    width: 80%;
}
.search-option button {
    background: transparent none repeat scroll 0 0;
    border: medium none;
    font-size: 20px;
    padding: 8px 23px;
}
.left-blog {
    background: #f9f9f9 none repeat scroll 0 0;
    margin-bottom: 30px;
    overflow: hidden;
    padding-bottom: 20px;
}
.left-blog h4 {
    border-bottom: 1px solid #ddd;
    color: #444;
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 0;
    padding: 15px 10px;
    text-transform: uppercase;
}

.left-blog li {
    border-bottom: 1px solid #ddd;
    display: block;
}
.left-blog ul li a {
    color: #444;
    display: block;
    font-size: 14px;
    padding: 20px 10px;
    text-transform: capitalize;
}
/*end of service details*/
.added_value {
    list-style: none;
    counter-reset: list;
    padding: 0 1rem;
}
.added_value li {
    /* --stop: calc(100% / var(--length) * var(--i)); */
    --l: 62%;
    --l2: 88%;
    --h: calc((var(--i) - 1) * (180 / var(--length)));
    --c1: hsl(var(--h), 71%, var(--l));
    --c2: hsl(var(--h), 71%, var(--l2));

    position: relative;
    counter-increment: list;
    max-width: 45rem;
    margin: 0 auto 1rem auto;
    padding: 1rem 1rem 1rem;
    box-shadow: 0.1rem 0.1rem 1.5rem rgba(0, 0, 0, 0.3);
    border-radius: 0.25rem;
    overflow: hidden;
    background-color: white;
}
.added_value li::before {
    content: "";
    display: block;
    width: 100%;
    height: 1rem;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(
        to right,
        var(--c1) var(--stop),
        var(--c2) var(--stop)
    );
}

.number {
    display: flex;
    align-items: baseline;
    margin: 0;
    color: rgb(70 70 70);
    font-size: 14px;
}
.number::before {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 0 0 auto;
    margin-right: 1rem;
    width: 1.5rem;
    height: 1.5rem;
    content: counter(list);
    padding: 1rem;
    border-radius: 50%;
    background-color: var(--c1);
    color: white;
}
.about_section {
    padding: 2rem 1.5rem;
    background: var(--bg-color);
    color: white;
}
.team_para {
    font-size: 11px;
}
.team_card2 {
    max-width: 300px;
    position: relative;
}
.team_card2 .image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}
.team_card2 .image img {
    width: 100%; /* Ensure the image takes full width of its container */
    display: block;
    filter: blur(8px); /* Apply a blur effect to the image */
    transition: filter 0.3s ease; /* Add a transition for smooth effect */
    height: 100%;
}
.accordion dl dt {
    cursor: pointer;
    padding: 1rem;
    color: #fff;
    transition-duration: 1s;
    transition-property: background;
    background: var(--bg-color);
    border-bottom: 1px solid #fff;
}

.accordion dl dd {
    display: none;
    height: auto;
    margin-left: 0;
    padding: 1em;
}

.accordion-nested {
    margin: -1em;
}

.accordion-nested dl {
    width: 100%;
    margin-left: 0;
}

.accordion-nested dl dt {
    background: var(--bg-hover-color);
}

.accordion-nested .accordion-nested dl dt {
    background: var(--bg-color);
    font-size: 15px;
}

.accordion-nested .accordion-nested .accordion-nested dl dt {
    background: var(--bg-color);
}

.accordion-nested .accordion-nested .accordion-nested .accordion-nested dl dt {
    background: var(--bg-color);
}
.acc_title {
    text-align: center;
    font-size: 18px;
    text-transform: uppercase;
}

.c-intro {
    animation: fe30-anime 1s ease-in-out 4s forwards;
}
.c-fe30 {
    color: rgb(20, 0, 0);
    margin-top: 2.5rem;
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
}
.c-fe30 a {
    color: rgba(255, 255, 255, 1);
}
.c-fe30 a:hover {
    text-decoration: none;
}
.c-ryanyu {
    background-color: transparent;
    display: block;
    font-family: "Kalam", cursive;
    height: 4.375rem;
    margin: 1.25rem auto 0;
    position: relative;
    text-align: center;
    width: 4.375rem;
}
.c-ryanyu img {
    background-color: rgba(255, 255, 255, 1);
    border: 0.1875rem solid rgba(250, 150, 0, 1);
    border-radius: 50%;
    height: 4.375rem;
    object-fit: contain;
    width: 4.375rem;
}
.c-ryanyu__front {
    backface-visibility: hidden;
    height: inherit;
    position: absolute;
    top: 0;
    transform: rotateX(0) rotateY(0);
    transform-style: preserve-3d;
    transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 2000;
}
.c-ryanyu:hover .c-ryanyu__front {
    transform: rotateY(180deg);
}
.c-ryanyu__back {
    background-color: rgba(255, 255, 255, 1);
    backface-visibility: hidden;
    border-radius: 50%;
    color: rgba(250, 150, 0, 1);
    height: inherit;
    position: absolute;
    text-align: center;
    top: 0;
    transform: rotateY(180deg);
    transform-style: preserve-3d;
    transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    width: inherit;
    z-index: 1000;
}
.c-ryanyu__back::before {
    content: "Ryan Yu";
    display: block;
    transform: rotate(-45deg) translate(-4px, 25px);
    width: 3.125rem;
}
.c-ryanyu:hover .c-ryanyu__back {
    transform: rotateY(0);
}
@keyframes fe30-anime {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
/* =Custom Styles ------------------------------------- */
.c-glitch,
.c-glitch__img {
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
}
.c-glitch {
    height: calc(100vh - 200px);
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    width: 60vw;
}
.c-glitch__img {
    background-blend-mode: none;
    background-color: transparent;
    height: calc(100% + 5px * 2);
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    transform: translate3d(0, 0, 0);
    width: calc(100% + 10px * 2);
}
.c-glitch:hover .c-glitch__img:nth-child(n + 2) {
    animation-duration: 2s;
    animation-delay: 0;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-fill-mode: forwards;
}
.c-glitch:hover .c-glitch__img:nth-child(2) {
    animation-name: glitch-anim-1;
}
.c-glitch:hover .c-glitch__img:nth-child(3) {
    animation-name: glitch-anim-2;
}
.c-glitch:hover .c-glitch__img:nth-child(4) {
    animation-name: glitch-anim-3;
}
.c-glitch:hover .c-glitch__img:nth-child(5) {
    animation-name: glitch-anim-4;
    background-blend-mode: overlay;
    background-color: #af4949;
}
.c-glitch__img:nth-child(n + 2) {
    opacity: 0;
}
@keyframes glitch-anim-1 {
    0%,
    100% {
        opacity: 1;
        transform: translate3d(40px, 0, 0) scale3d(-1, -1, 1);
        clip-path: polygon(0 2%, 100% 2%, 100% 5%, 0 5%);
    }
    20% {
        clip-path: polygon(0 15%, 100% 15%, 100% 15%, 0 15%);
    }
    30% {
        clip-path: polygon(0 10%, 100% 10%, 100% 20%, 0 20%);
    }
    40% {
        clip-path: polygon(0 1%, 100% 1%, 100% 2%, 0 2%);
    }
    50% {
        clip-path: polygon(0 33%, 100% 33%, 100% 33%, 0 33%);
    }
    55% {
        clip-path: polygon(0 44%, 100% 44%, 100% 44%, 0 44%);
    }
    60% {
        clip-path: polygon(0 50%, 100% 50%, 100% 20%, 0 20%);
    }
    65% {
        clip-path: polygon(0 70%, 100% 70%, 100% 70%, 0 70%);
    }
    70% {
        clip-path: polygon(0 80%, 100% 80%, 100% 80%, 0 80%);
    }
    80% {
        clip-path: polygon(0 50%, 100% 50%, 100% 55%, 0 55%);
    }
    85% {
        clip-path: polygon(0 60%, 100% 60%, 100% 65%, 0 65%);
    }
    95% {
        clip-path: polygon(0 72%, 100% 72%, 100% 78%, 0 78%);
    }
}
@keyframes glitch-anim-2 {
    0%,
    100% {
        opacity: 1;
        transform: translate3d(-10px, 0, 0);
        clip-path: polygon(0 25%, 100% 25%, 100% 30%, 0 30%);
    }
    10% {
        clip-path: polygon(0 3%, 100% 3%, 100% 3%, 0 3%);
    }
    15% {
        clip-path: polygon(0 5%, 100% 5%, 100% 20%, 0 20%);
    }
    17% {
        clip-path: polygon(0 20%, 100% 20%, 100% 20%, 0 20%);
    }
    19% {
        clip-path: polygon(0 40%, 100% 40%, 100% 40%, 0 40%);
    }
    33% {
        clip-path: polygon(0 52%, 100% 52%, 100% 59%, 0 59%);
    }
    35% {
        clip-path: polygon(0 60%, 100% 60%, 100% 60%, 0 60%);
    }
    40% {
        clip-path: polygon(0 75%, 100% 75%, 100% 75%, 0 75%);
    }
    45% {
        clip-path: polygon(0 65%, 100% 65%, 100% 40%, 0 40%);
    }
    49% {
        clip-path: polygon(0 45%, 100% 45%, 100% 50%, 0 50%);
    }
    50% {
        clip-path: polygon(0 14%, 100% 14%, 100% 33%, 0 33%);
    }
    55% {
        clip-path: polygon(0 15%, 100% 15%, 100% 35%, 0 35%);
    }
    60% {
        clip-path: polygon(0 15%, 100% 15%, 100% 15%, 0 15%);
    }
    70% {
        clip-path: polygon(0 65%, 100% 65%, 100% 60%, 0 60%);
    }
    80% {
        clip-path: polygon(0 80%, 100% 80%, 100% 85%, 0 85%);
    }
    90% {
        clip-path: polygon(0 55%, 100% 55%, 100% 65%, 0 65%);
    }
}
@keyframes glitch-anim-3 {
    0%,
    100% {
        opacity: 1;
        transform: translate3d(0, -5px, 0) scale3d(-1, -1, 1);
        clip-path: polygon(0 1%, 100% 1%, 100% 3%, 0 3%);
    }
    5% {
        clip-path: polygon(0 10%, 100% 10%, 100% 9%, 0 9%);
    }
    11% {
        clip-path: polygon(0 5%, 100% 5%, 100% 6%, 0 6%);
    }
    20% {
        clip-path: polygon(0 20%, 100% 20%, 100% 20%, 0 20%);
    }
    25% {
        clip-path: polygon(0 10%, 100% 10%, 100% 10%, 0 10%);
    }
    35% {
        clip-path: polygon(0 30%, 100% 30%, 100% 25%, 0 25%);
    }
    42% {
        clip-path: polygon(0 15%, 100% 15%, 100% 16%, 0 16%);
    }
    48% {
        clip-path: polygon(0 40%, 100% 40%, 100% 39%, 0 39%);
    }
    50% {
        clip-path: polygon(0 20%, 100% 20%, 100% 21%, 0 21%);
    }
    56% {
        clip-path: polygon(0 60%, 100% 60%, 100% 55%, 0 55%);
    }
    61% {
        clip-path: polygon(0 30%, 100% 30%, 100% 31%, 0 31%);
    }
    68% {
        clip-path: polygon(0 70%, 100% 70%, 100% 69%, 0 69%);
    }
    72% {
        clip-path: polygon(0 40%, 100% 40%, 100% 41%, 0 41%);
    }
    77% {
        clip-path: polygon(0 80%, 100% 80%, 100% 75%, 0 75%);
    }
    81% {
        clip-path: polygon(0 50%, 100% 50%, 100% 51%, 0 51%);
    }
    86% {
        clip-path: polygon(0 90%, 100% 90%, 100% 90%, 0 90%);
    }
    90% {
        clip-path: polygon(0 60%, 100% 60%, 100% 60%, 0 60%);
    }
    92% {
        clip-path: polygon(0 100%, 100% 100%, 100% 99%, 0 99%);
    }
    94% {
        clip-path: polygon(0 70%, 100% 70%, 100% 71%, 0 71%);
    }
}
@keyframes glitch-anim-4 {
    0%,
    5% {
        opacity: 0.2;
        transform: translate3d(10px, 5px, 0);
    }
    5.5%,
    100% {
        opacity: 0;
        transform: translate3d(0, 0, 0);
    }
}

.olcards,
.olcards * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.olcards {
    list-style: none;
    font-family: sans-serif;
    display: flex;
    flex-direction: column;
    gap: var(--cardsGap, 1rem);
    padding-bottom: var(--cardsGap, 1rem);
    counter-reset: cardCount var(--start-counter, 1);
}

.olcards li {
    counter-increment: cardCount;
    display: flex;
    color: white;
    margin-top: var(--labelOffset, 1rem);
    position: relative;
}

.olcards li::before {
    content: counter(cardCount);
    background: white;
    color: var(--cardColor);
    font-size: 2em;
    font-weight: 700;
    transform: translateY(calc(-1 * var(--labelOffset, 1rem)));
    margin-right: calc(-1 * var(--labelOffset, 1rem));
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-inline: 0.5em;
}

.olcards li .content {
    background-color: var(--cardColor);
    width: 100%;

    position: relative;
    padding: var(--boxPadding, 0.5em)
        calc(var(--inlinePadding, 1em) + var(--arrowClipSize, 1.5rem));
    clip-path: polygon(
        0 0,
        calc(100% - var(--arrowClipSize, 1.5rem)) 0,
        100% 50%,
        calc(100% - var(--arrowClipSize, 1.5rem)) 100%,
        calc(100% - var(--arrowClipSize, 1.5rem))
            calc(100% + var(--cardsGap, 1rem)),
        0 calc(100% + var(--cardsGap, 1rem))
    );
}

.olcards li .content::before {
    content: "";
    position: absolute;
    width: var(--labelOffset, 1rem);
    height: var(--labelOffset, 1rem);
    background: var(--cardColor);
    left: 0;
    bottom: 0;
    clip-path: polygon(0 0, 100% 0, 0 100%);
    filter: brightness(0.75);
}

.olcards li:nth-child(even) .content::before {
    filter: brightness(0.9);
}

.olcards li .content .title {
    font-size: 1.1rem;
}

#notification {
    width: 100%;
    height: 300px;
    display: flex;
}
.video_container {
    width: 50%;
    height: 100%;
}
.video_container video {
    height: 100%;
}
.notification_div {
    width: 30%;
    height: 100%;
}
.notification_div_right {
    width: 50%;
    height: 100%;
    position: relative;
}
.gallery_div {
    display: flex;
    overflow: hidden;
    height: 100%;
    background: #111;
}
.gallery_div:hover img {
    opacity: 0.5;
}

.gallery_div img {
    max-width: 100%;
    vertical-align: middle;
    border: 1px solid black;
    box-sizing: border-box;
    transition: opacity 0.2s;

    width: 100%; /* Makes the image responsive within the column */
    height: 150px; /* Set a fixed height for all images */
    object-fit: cover; /* Ensures images cover the area without distortion */
   
}

.gallery_div img:hover {
    opacity: 1;
}
.gallery_div .column {
    animation: var(--animation, none) 16s infinite linear;
}
.gallery_div .column:hover {
    animation-play-state: paused;
}

.gallery_div .column:nth-of-type(odd) {
    align-self: flex-end;
    --direction: 50%;
}

@keyframes slide {
    to {
        transform: translateY(var(--direction, -50%));
    }
}

#popUp {
    position: fixed;
    width: 350px;
    height: 200px;
    background: rgba(236, 240, 241, 1);
    border: 7px solid #fff;
    bottom: 50px;
    margin-right: 0;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    z-index: 1111;
}

#new span {
    background: #fff;
    position: absolute;
    color: var(--bg-color);
    padding: 4px 10px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: -5px;
}
.promo {
    display: flex;
    height: 100%;
    width: 100%;
    background-color: var(--bg-color);
}
.promo-pic {
    height: 80%;
    width: 100%;
    display: block;
    vertical-align: middle;
    margin: auto;
}

#popUp .close {
    color: white;
    right: 8px;
    top: 0px;
    position: absolute;
    font-size: 20px;
    cursor: pointer;
}

#popUp h2 {
    font-size: 17px;
    color: #464646;
    line-height: 24px;
    font-weight: 400;
    text-align: center;
    margin-top: 40px;
    padding: 0 20px;
}

#body {
    height: 1200px;
    background: #eee;
}

#plus {
    position: fixed;
    color: #fff;
    bottom: 15%;
    font-size: 15px;
    margin-left: -425px;
    -webkit-transition: all 1.25s ease;
    -moz-transition: all 1.25s ease;
    -o-transition: all 1.25s ease;
    transition: all 1.25s ease;
    cursor: pointer;
    text-align: left;
    letter-spacing: 1px;
    z-index: 1111;
}

#plus span {
    position: absolute;
    margin-top: 44px;
    left: 2px;
}

#plus::after {
    content: "";
    display: block;
    display: relative;
    border-top: 55px solid transparent;
    border-bottom: 55px solid transparent;
    border-left: 55px solid #01b3ac;
}

@media all and (max-width: 900px) {
    #popUp {
        margin-left: -425px;
        z-index: 1111;
    }
    #plus {
        margin-left: 0px;
    }
}
.containers {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    background-color: #333;
  }
  
  .notice-list {
    width: 100%; /* Take full width */
    overflow: hidden; /* Hide anything overflowing the list */
  }
  .notice-list ul {
    list-style: none;
    padding-left: 0;
    margin: 0;

  }
  .notice-list ul li {
    /* height: 100px;  */
    background-color: #ffffff;
    text-align: center;
    border-bottom: 1px solid var(--bg-color);
    /* overflow: hidden;
    position: relative; */
    animation: scroll-up 15s linear infinite;
  }

.notice-list li h2 {
    color: #050000;
    padding-top: 10px;
    font-size: 15px;
    font-weight: 600;
}

.notice-list li p {
    text-align: center;
    padding: 10px;
    color: #1f0b0b;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}


@keyframes scroll-up {
    0% {
      transform: translateY(100%); /* Start from below the container */
    }
    50% {
      transform: translateY(0); /* In the middle of the container */
    }
    100% {
      transform: translateY(-100%); /* End at the top of the container */
    }
  }
  
  @keyframes smooth-scroll {
    0% {
      transform: translateY(0);
    }
    100% {
      transform: translateY(-100%);
    }
  }

.containersAbout {
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 20px;
}

.listAbout {
    padding: 20px;
    background: none;
}

.listAbout ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.listAbout ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    font-size: 14px;
}

.listAbout ul li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: #3498db;
    font-size: 18px;
    margin-right: 10px;
}

.subCont {
    width: 80%;
    float: left;
    background-color: var(--bg-color);
    color: #000;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    position: absolute;
    top: -50px;
    left: 0px;
}
.subIcnBx {
    display: flex;
    align-items: center;
    align-content: center;
    padding: 10px 0px;
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
    height: 100%;
}
.subIcnBx img {
    width: 25%;
    margin-top: -30px;
}
.subIcnBx {
    display: flex;
    align-items: center;
    align-content: center;
    padding: 0 0px;
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
    height: 100%;
}
.subIcnBx form {
    width: 100%;
}
.subIcnBx form input {
    position: relative;
    height: 35px;
    border-radius: 50px;
    width: 95%;
    font-size: 12px;
}
.subIcnBx form button {
    position: absolute;
    top: 17px;
    right: 40px;
    background-color: #d22d3b;
    color: #fff;
    border-radius: 50px;
    border-style: none;
    padding: 10px 25px;
    font-size: 12px;
}
.newsletter_para {
    color: white !important;

    /* font-size: 15px; */
    margin: 0px !important;
    font-weight: 500 !important;
    font-size: 15px !important;
    line-height: 24px !important;
}
.notification_title {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
}
.notification_title h5 {
    text-align: center;
    background: var;
    background: #2c7b83;
    margin-bottom: 0;
    color: white;
    padding: 5px 0;
}

.containers ul li:nth-child(odd) p {
    animation: changeColorOdd 5s infinite linear;
}

.containers ul li:nth-child(even) p {
    animation: changeColorEven 5s infinite linear;
}

@keyframes changeColorOdd {
    0%,
    16.67% {
        color: #1000a5; /* Color 1 for odd */
    }
    16.67%,
    33.33% {
        color: #00c982; /* Color 2 for odd */
    }
    33.33%,
    50% {
        color: #8f0000; /* Color 3 for odd */
    }
    50%,
    66.67% {
        color: #c200ae; /* Color 4 for odd */
    }
    66.67%,
    83.33% {
        color: #4f1bb1; /* Color 5 for odd */
    }
    83.33%,
    100% {
        color: #f00c89; /* Color 1 again for odd */
    }
}

@keyframes changeColorEven {
    0%,
    16.67% {
        color: #55ff33; /* Color 1 for even */
    }
    16.67%,
    33.33% {
        color: #00439b; /* Color 2 for even */
    }
    33.33%,
    50% {
        color: #ff33e9; /* Color 3 for even */
    }
    50%,
    66.67% {
        color: #31008d; /* Color 4 for even */
    }
    66.67%,
    83.33% {
        color: #ff5733; /* Color 5 for even */
    }
    83.33%,
    100% {
        color: #006d47; /* Color 1 again for even */
    }
}

.comment_container {
    background-color: #eef2f5;
    width: 400px;
}
.addtxt {
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
    font-size: 13px;
    width: 350px;
    background-color: #e5e8ed;
    font-weight: 500;
}
.second {
    width: 350px;
    background-color: white;
    border-radius: 4px;
    box-shadow: 10px 10px 5px #aaaaaa;
}
.text1 {
    font-size: 13px;
    font-weight: 500;
    color: #56575b;
}
.text2 {
    font-size: 13px;
    font-weight: 500;
    margin-left: 6px;
    color: #56575b;
}
.text3 {
    font-size: 13px;
    font-weight: 500;
    margin-right: 4px;
    color: #828386;
}
.text3o {
    color: #00a5f4;
}
.text4 {
    font-size: 13px;
    font-weight: 500;
    color: #828386;
}
.text4i {
    color: #00a5f4;
}
.text4o {
    color: white;
}
.thumbup {
    font-size: 13px;
    font-weight: 500;
    margin-right: 5px;
}
.thumbupo {
    color: #17a2b8;
}
.footer_links ul li {
    margin-top: 15px;
}

.subscribe-area {
    background-image: linear-gradient(to top, #00c6fb 0%, var(--bg-color) 100%);
    padding-bottom: 20px;
    padding-top: 40px;
}

.mb-15 {
    margin-bottom: 15px;
}

.subscribe-text span {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 5px;
}
.subscribe-text h2 {
    color: #fff;
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 0;
    margin-top: 6px;
}
.subscribe-wrapper {
    overflow: hidden;
}
.mb-15 {
    margin-bottom: 15px;
}
.subscribe-form {
}
.subscribe2-wrapper .subscribe-form input {
    background: none;
    border: 1px solid #fff;
    border-radius: 30px;
    color: #fff;
    display: inline-block;
    font-size: 15px;
    font-weight: 300;
    height: 57px;
    margin-right: 17px;
    padding-left: 35px;
    width: 70%;
    cursor: pointer;
}

.subscribe2-wrapper .subscribe-form button {
    background: #ffff;
    border: none;
    border-radius: 30px;
    color: #4b5d73;
    display: inline-block;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    padding: 18px 46px;
    transition: all 0.3s ease 0s;
}
.subscribe2-wrapper .subscribe-form button i {
    font-size: 18px;
    padding-left: 5px;
}
.subscribe2-wrapper .subscribe-form input::placeholder {
    color: #fff; /* Adjust the color to your preference */
}

.availableJobs_title {
    color: white;
}
