:root {
    --main-color:  #009b4c;
    --secondary-color: #155fbe;
    --white-color: #ffffff;
    --light-color: #ffffff;
    --primary-color: #1E1E1E;
    --accent-color: #F9D67B;
    --theme-color: #85BF18;
    --theme-shade-color: #009b4c;
    --theme-color-2: #F9D67B;
    --theme-color-3: #004540;
    --main-font: "Barlow", sans-serif;
    --sub-font: "Open Sans", sans-serif;
}
body {
    background: #ffffff;
    cursor: auto;
    font-family: var(--sub-font);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.02rem;
    color: #000000;
    margin: 0;
    padding: 0;
}
p {
    letter-spacing: 0.02rem;
    color: #4a4a4a;
    font-family: var(--sub-font);
}
.navbar {
    background: transparent;
    height: fit-content;
}
.main-navbar {
    position: absolute;
    margin-top: 0;
    left: 0;
    top: 0;
    width: 100%;
    background: transparent;
    z-index: 9;
    border: none;
    transition: 1s;
}

.main-navbar.scrolled {
    position: fixed;
    background: var(--main-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: 0.5s;
}
.main-navbar .topbar{
    width: 100%;
    padding: 10px 0;
}
.topbar .topbar-item, 
.topbar .topbar-item a {
    padding: 0 10px;
    color: #ffffff;
    font-size: .8rem;
}
.topbar .dropdown-menu {
    z-index: 999;
}
.topbar .dropdown-menu a {
    padding: 5px 10px;
    color: #000000;
}
.topbar .dropdown-menu li {
    margin-left: 0;
}
.topbar .dropdown-menu a:hover {
    background: var(--main-color);
    color: #ffffff;
}
.topbar .dropdown-menu img {
    width: 20px;
}
.topbar-green {
	background: var(--main-color);
}
.navbar .navbar-nav .nav-link {
    font-family: var(--sub-font);
    font-size: 1rem;
    color: #252525;
    margin: 1px;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    padding-right: 12px;
    padding-left: 12px;
    text-transform: capitalize;
    font-weight: 400;
}
.navbar .navbar-nav .nav-link.second {
    background: var(--secondary-color);
    border-radius: 12px;
    color: #fff;
    font-size: 14px;
    padding: 10px 25px;
}

/* SLIDER */
.hero-style1 {
    position: relative;
    top: 130%;
    z-index: 5;
    padding: 0;
    text-align: left;
    width: 60%;
}
.hero-style1 .hero-title {
    color: var(--main-color);
    font-family: var(--main-font);
    font-weight: 600;
    font-size: 2.7rem;
    line-height: 1.1;
}
.hero-style1 .hero-subtitle {
    margin-top: 0;
    color: #222;
    font-family: var(--sub-font);
    font-weight: 400;
}

/* BUTTON */
.ot-btn {
    position: relative;
    overflow: hidden;
    vertical-align: middle;
    display: inline-block;
    border: none;
    text-transform: uppercase;
    text-align: center;
    background-color: var(--main-color);
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    padding: 21px 30px;
    min-width: 142px;
    border-radius: 8px;
}
.ot-btn span {
    position: relative;
    z-index: 3;
    color: #fff;
}
.ot-btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    transition: 0.5s;
    z-index: 2;
}
.ot-btn:hover:before {
    left: 0;
}
.ot-btn.style4 {
    background-color: #222;
    color: #fff;
}
.btn-default{
	position: relative;
    font-family: var(--accent-font);
	display: inline-block;
	font-size: 16px;
	font-weight: 700;
	line-height: 1em;
	text-transform: capitalize;
	background: var(--accent-color);
	color: var(--primary-color);
	border-radius: 50px;
	padding: 18px 30px;
	border: none;
	overflow: hidden;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.btn-default:hover{
	color: var(--white-color);
}

.btn-default::after,
.btn-default::before{
	content: '';
    display: block;
    position: absolute;
    top: 0;
	bottom: 0;
    width: 0;
    height: 100%;    
	background: var(--secondary-color);
	transform: skew(15deg);
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.btn-default::before{
	left: -10px;
}
   
.btn-default::after{
	right: -10px;
}

.btn-default:hover::after,
.btn-default:hover::before{
	width: 60%;
}

.btn-default.btn-highlighted:hover{
    color: var(--primary-color);
}

.btn-default.btn-highlighted::after,
.btn-default.btn-highlighted::before{
    background: var(--white-color);
}
.section-btn {
    text-align: right;
}

.e-primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    color: var(--theme-color-3);
    padding: 16px 25px;
    background: var(--theme-color-2);
    border: none;
    border-radius: 100px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.e-primary-btn:before {
    content: "";
    position: absolute;
    left: -110%;
    top: 50%;
    width: 200%;
    height: 200%;
    background: var(--theme-color-3);
    z-index: -1;
    transform: translateX(-50%) translateY(-50%);
    border-radius: 200px;
    -webkit-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.e-primary-btn.has-icon {
    padding: 5px 5px 5px 25px;
    gap: 15px;
}
.e-primary-btn .icon-wrap {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
    background: var(--theme-color-3);
    color: var(--white-color);
    border-radius: 100%;
    -webkit-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.e-primary-btn .icon-wrap .icon {
    flex: none;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 15px;
    overflow: hidden;
}

/* ABOUT SECTION */
.about-section .description p{
    font-size: .9rem;
    font-weight: 400;
    color: #222;
    line-height: 1.8;
}
.about-widget .text p {
    font-weight: 400;
    font-size: 17px;
    line-height: 28px;
    color: #000000;
    margin-bottom: 15px;
}

/* TITLE SECTION */
.section-title .title {
    font-family: var(--main-font);
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--main-color);
    margin-bottom: 0;
}
.section-title .text-anime-style-3 {
    font-size: .9rem;
    font-weight: 300;
}
.ed-w-choose__info-single--style2 {
    margin-top: 15px;
    background: #e8f5e9e0;
    border-radius: 8px;
    padding: 25px 25px 32px 25px;
    width: 354px;
}
.educate-hover-box {
    background-color: var(--main-color);
}
.page-title-section {
    background-image: url(../bg/bg_footer.png);
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding-top: 200px;
    padding-bottom: 60px;
}
/************************************/
/***     11. Our Programs css     ***/
/************************************/
.our-programs{
	padding: 20px 0 70px;
}
figure {
    margin: 0;
}
.program-item{
	position: relative;
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.program-image{
	position: relative;
	border-radius: 20px;
	overflow: hidden;
}

.program-image::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: var(--primary-color);
	opacity: 0;
	width: 100%;
	height: 100%;
	border-radius: 20px;
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.program-item:hover .program-image::before{
	opacity: 40%;
}

.program-image a,
.program-image figure{
	display: block;
	cursor: pointer;
}

.program-image figure::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: linear-gradient(180deg, rgba(30, 30, 30, 0) 42.53%, rgba(30, 30, 30, 0.8) 100%);
	width: 100%;
	height: 100%;
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.program-image img{
	width: 100%;
	aspect-ratio: 1 / 1.24;
	object-fit: cover;
	transition: all 0.4s ease-in-out;
}

.image-anime:after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}

.program-item:hover .program-image img{
	transform: scale(1.1);
}

.program-body{
    position: absolute;
    left: 25px;
    bottom: 20px;
    right: 25px;
    transform: translateY(50px);
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.program-item:hover .program-body{
    transform: translateY(0);
}

.program-content h3{
	font-size: 20px;
	color: var(--white-color);
}

.program-content h3 a{
	color: inherit;
}

.program-readmore-btn{
	opacity: 0;
	visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.program-item:hover .program-readmore-btn{
    margin-top: 20px;
    opacity: 1;
    visibility: visible;
}
/* 17 Completed project Css */
.completed-project-top {
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: 1;
    padding-bottom: 360px;
    padding-top: 60px;
}
.completed-project-top h2 {
    font-weight: 700;
    font-family: var(--main-font);
    font-size: 3rem;
    color: var(--white-color);
}
.completed-project-top .row {
    margin-bottom: 60px;
}
@media (min-width: 768px) and (max-width: 991px) {
    .completed-project-top {
        padding-top: 100px;
    }
}
@media (max-width: 767px) {
    .completed-project-top {
        padding-top: 80px;
        padding-bottom: 300px;
    }
}
.completed-project-top .shape-8 {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}
.completed-project-top .shape-9 {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

.completed-project-bottom {
    margin-top: -360px;
    position: relative;
    z-index: 10;
}
@media (max-width: 767px) {
    .completed-project-bottom {
        margin-top: -260px;
    }
}

.project-card {
    overflow: hidden;
    border-radius: 10px;
}
.project-card.active .thumb a img,
.project-card:hover .thumb a img {
    transform: scale(1.1);
}
.project-card.active .thumb .content,
.project-card:hover .thumb .content {
    padding-bottom: 100px;
}
@media (max-width: 767px) {
    .project-card.active .thumb .content,
    .project-card:hover .thumb .content {
        padding-bottom: 80px;
    }
}
.project-card.active .thumb .content h5,
.project-card:hover .thumb .content h5 {
    color: var(--theme-color-2);
}
.project-card.active .thumb .content .details-btn,
.project-card:hover .thumb .content .details-btn {
    bottom: 20px;
}
.project-card .thumb {
    position: relative;
    overflow: hidden;
}
.project-card .thumb > a {
    display: block;
    border-radius: 10px;
    overflow: hidden;
}
.project-card .thumb > a:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0, 24, 25, 0) 38.69%,
        rgba(0, 24, 25, 0.6) 66.87%,
        #001819 100%
    );
    z-index: 2;
}
.project-card .thumb img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}
.project-card .thumb .tag {
    position: absolute;
    top: 20px;
    left: 20px;
}
.project-card .thumb .tag p {
    font-family: var(--albert-sans-font);
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    color: #ffffff;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    box-shadow: inset 0px 4px 11px rgba(255, 255, 255, 0.4),
        inset -1px -4px 23.1px rgba(0, 24, 25, 0.28);
    backdrop-filter: blur(23.9px);
    border-radius: 53px;
}
.project-card .thumb .number {
    position: absolute;
    top: 20px;
    right: 20px;
}
.project-card .thumb .number a {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.01);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    box-shadow: inset 0px 4px 11px rgba(255, 255, 255, 0.4),
        inset -1px -4px 23.1px rgba(0, 24, 25, 0.28);
    backdrop-filter: blur(23.9px);
    border-radius: 53px;
    color: var(--white-color);
}
.project-card .thumb .number a:hover {
    color: var(--theme-color-3);
    background: var(--white-color);
}
.project-card .thumb .content {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 90%;
    transform: translateX(5.5%);
    padding: 14px 23px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 8px;
    height: auto;
    overflow: hidden;
    transition: all 0.3s;
    z-index: 10;
}
@media (max-width: 767px) {
    .project-card .thumb .content {
        padding: 12px 10px;
    }
}
.project-card .thumb .content:hover {
    cursor: pointer;
}
.project-card .thumb .content h5 {
    font-weight: 600;
    font-size: 24px;
    line-height: 36px;
    color: var(--light-color);
    margin-bottom: 8px;
}
@media (min-width: 768px) and (max-width: 991px) {
    .project-card .thumb .content h5 {
        font-size: 20px;
        line-height: 1.2;
    }
}
@media (max-width: 767px) {
    .project-card .thumb .content h5 {
        font-size: 20px;
        line-height: 1.2;
    }
}
.project-card .thumb .content p {
    color: var(--light-color);
    margin-bottom: 0;
}
.project-card .thumb .content .details-btn {
    position: absolute;
    bottom: -100px;
    transition: all 0.3s;
}
.project-card .thumb .content .join-us {
    margin-top: 15px;
}
.project-card .thumb .content .join-us a {
    padding: 5px 5px 5px 17px;
    gap: 10px;
}
.project-card .thumb .content .join-us a .icon-wrap {
    width: 34px;
    height: 34px;
}
.project-card.style-service .thumb .content {
    padding: 14px 23px 20px;
}
.project-card.style-service .thumb .content .join-us {
    position: absolute;
    bottom: -100px;
    margin-top: 0;
    -webkit-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.project-card.style-service:hover .thumb .content {
    padding-bottom: 82px;
}
@media (max-width: 767px) {
    .project-card.style-service:hover .thumb .content {
        padding-bottom: 80px;
    }
}
.project-card.style-service:hover .thumb .content .join-us {
    bottom: 20px;
}
.project-card.style-2 .thumb .tag {
    left: auto;
    right: 20px;
}
.project-card.style-2 .thumb .content {
    max-width: 414px;
}

.completed-project-slider-active .project-card .thumb > a {
    display: block;
    width: 100%;
    height: 500px;
}
@media (max-width: 767px) {
    .completed-project-slider-active .project-card .thumb > a {
        height: 400px;
    }
}
.completed-project-slider-active .project-card .thumb img {
    width: 100%;
    height: 100%;
}
.completed-project-slider-active
    .swiper-slide-active
    .project-card
    .thumb
    a
    img {
    transform: scale(1.1);
}
.completed-project-slider-active
    .swiper-slide-active
    .project-card
    .thumb
    .content {
    padding-bottom: 100px;
}
@media (max-width: 767px) {
    .completed-project-slider-active
        .swiper-slide-active
        .project-card
        .thumb
        .content {
        padding-bottom: 80px;
    }
}
.completed-project-slider-active
    .swiper-slide-active
    .project-card
    .thumb
    .content
    h5 {
    color: var(--theme-color-2);
}
.completed-project-slider-active
    .swiper-slide-active
    .project-card
    .thumb
    .content
    .details-btn {
    bottom: 20px;
    transition: all 0.3s;
}
.completed-project-slider-active .completed-project-pagination {
    height: 5px;
    border-radius: 10px;
    margin-top: 60px;
    background: rgba(0, 69, 64, 0.5);
    display: flex;
}
@media (max-width: 767px) {
    .completed-project-slider-active .completed-project-pagination {
        margin-top: 30px;
    }
}
.completed-project-slider-active
    .completed-project-pagination
    .swiper-pagination-bullet {
    flex: 1;
    border-radius: 10px;
    height: 100%;
    opacity: 1;
    background: none;
    margin: 0;
}
.completed-project-slider-active
    .completed-project-pagination
    .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--theme-color-3);
}

.project-card-2 {
    border-radius: 10px;
}
.project-card-2.active .thumb a img,
.project-card-2:hover .thumb a img {
    transform: scale(1.1);
}
.project-card-2.active .thumb .details-btn-2,
.project-card-2:hover .thumb .details-btn-2 {
    right: 20px;
    transition: all 0.3s;
}
.project-card-2.active .thumb .content,
.project-card-2:hover .thumb .content {
    padding-bottom: 20px;
}
.project-card-2.active .thumb .content h5,
.project-card-2:hover .thumb .content h5 {
    color: var(--theme-color-2);
}
.project-card-2.active .thumb .content .details-btn,
.project-card-2:hover .thumb .content .details-btn {
    bottom: 20px;
    transition: all 0.3s;
}
.project-card-2 .thumb {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}
.project-card-2 .thumb > a {
    display: block;
    border-radius: 10px;
    overflow: hidden;
}
.project-card-2 .thumb > a:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0, 24, 25, 0) 38.69%,
        rgba(0, 24, 25, 0.6) 66.87%,
        #001819 100%
    );
    z-index: 2;
}
.project-card-2 .thumb img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}
.project-card-2 .thumb .tag {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
}
.project-card-2 .thumb .tag p {
    font-family: var(--albert-sans-font);
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    color: #ffffff;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    box-shadow: inset 0px 4px 11px rgba(255, 255, 255, 0.4),
        inset -1px -4px 23.1px rgba(0, 24, 25, 0.28);
    backdrop-filter: blur(23.9px);
    border-radius: 53px;
}
.project-card-2 .thumb .number {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
}
.project-card-2 .thumb .number a {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.01);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    box-shadow: inset 0px 4px 11px rgba(255, 255, 255, 0.4),
        inset -1px -4px 23.1px rgba(0, 24, 25, 0.28);
    backdrop-filter: blur(23.9px);
    border-radius: 53px;
    color: var(--white-color);
}
.project-card-2 .thumb .number a:hover {
    color: var(--theme-color-3);
    background: var(--white-color);
}
.project-card-2 .thumb .content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    max-width: 394px;
    width: 90%;
    padding: 14px 23px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 8px;
    height: auto;
    overflow: hidden;
    z-index: 10;
    -webkit-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
@media (max-width: 767px) {
    .project-card-2 .thumb .content {
        padding: 12px 10px;
    }
}
.project-card-2 .thumb .content:hover {
    cursor: pointer;
}
.project-card-2 .thumb .content h5 {
    font-weight: 600;
    font-size: 24px;
    line-height: 36px;
    color: var(--light-color);
    margin-bottom: 8px;
}
@media (min-width: 768px) and (max-width: 991px) {
    .project-card-2 .thumb .content h5 {
        font-size: 20px;
        line-height: 1.2;
    }
}
@media (max-width: 767px) {
    .project-card-2 .thumb .content h5 {
        font-size: 20px;
        line-height: 1.2;
    }
}
.project-card-2 .thumb .content p {
    color: var(--light-color);
    margin-bottom: 0;
}
.project-card-2 .thumb .content .details-btn {
    position: absolute;
    bottom: -100px;
    transition: all 0.3s;
}
.project-card-2 .thumb .content .join-us {
    margin-top: 15px;
}
.project-card-2 .thumb .content .join-us a {
    padding: 5px 5px 5px 17px;
    gap: 10px;
}
.project-card-2 .thumb .content .join-us a .icon-wrap {
    width: 34px;
    height: 34px;
}
.project-card-2.style-service .thumb .content {
    padding: 14px 23px 20px;
}
.project-card-2.style-service .thumb .content .join-us {
    display: none !important;
}
.project-card-2.style-service:hover .thumb .content .join-us {
    display: inline-block !important;
}
.project-card-2.style-2 .thumb .tag {
    left: auto;
    right: 20px;
}
.project-card-2.style-2 .thumb .content {
    max-width: 414px;
}

.completed-project-slider-active-2 .project-card-2 .thumb > a {
    display: block;
    width: 100%;
    height: 550px;
}
@media (max-width: 767px) {
    .completed-project-slider-active-2 .project-card-2 .thumb > a {
        height: 400px;
    }
}
.completed-project-slider-active-2 .project-card-2 .thumb .details-btn-2 {
    transition: all 0.3s linear 0.3s;
}
.completed-project-slider-active-2 .project-card-2 .thumb img {
    width: 100%;
    height: 100%;
}
.completed-project-slider-active-2
    .swiper-slide-active
    .project-card-2
    .thumb
    a
    img {
    transform: scale(1.1);
}
.completed-project-slider-active-2
    .swiper-slide-active
    .project-card-2
    .thumb
    .details-btn-2 {
    right: 20px;
}
.completed-project-slider-active-2
    .swiper-slide-active
    .project-card-2
    .thumb
    .content {
    padding-bottom: 20px;
}
.completed-project-slider-active-2
    .swiper-slide-active
    .project-card-2
    .thumb
    .content
    h5 {
    color: var(--theme-color-2);
}
.completed-project-slider-active-2 .completed-project-pagination-2 {
    height: 5px;
    border-radius: 10px;
    margin-top: 60px;
    background: rgba(0, 69, 64, 0.5);
    display: flex;
}
@media (max-width: 767px) {
    .completed-project-slider-active-2 .completed-project-pagination-2 {
        margin-top: 30px;
    }
}
.completed-project-slider-active-2
    .completed-project-pagination-2
    .swiper-pagination-bullet {
    flex: 1;
    border-radius: 10px;
    height: 100%;
    opacity: 1;
    background: none;
    margin: 0;
}
.completed-project-slider-active-2
    .completed-project-pagination-2
    .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--theme-color-3);
}

.details-btn-2 {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--theme-color-3);
    color: var(--theme-color-2);
    transform: rotate(-45deg);
    padding: 12px 20px;
    border: 1.5px solid var(--theme-color-2);
    border-radius: 53px;
    transition: all 0.3s;
    position: absolute;
    top: 20px;
    right: -60px;
}
.completed-project-2 {
    position: relative;
}
.completed-project-2 .shape-1 {
    position: absolute;
    top: -60%;
    left: 0;
    width: fit-content;
    z-index: -1;
}
.completed-project-2 .shape-2 {
    position: absolute;
    top: 25%;
    width: fit-content;
    right: 0;
    z-index: -1;
}

/* CLIENT & PARTNER SECTION */
.marquee-group .marquee-item {
    width: 200px;
    height: 200px;
    border-radius: 0;
}
.client-area .client-item .client-img {
    max-height: 200px;
}


/* 06 Footer Css */
.footer-section {
    padding: 100px 0 60px;
    background: url(../bg/bg_footer_1.png);
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
}

.footer-bottom-layout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 24px 3px 3px;
  background-color: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  overflow: hidden;
  gap: 20px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer-bottom-layout {
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .footer-bottom-layout {
    flex-direction: column;
    gap: 10px;
    position: relative;
    overflow: visible;
    padding: 15px 30px;
  }
}
.footer-bottom-layout .top-btn {
  border-radius: 100px;
  gap: 5px;
  padding: 14px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer-bottom-layout .top-btn {
    padding: 8px 14px;
  }
}
@media (max-width: 767px) {
  .footer-bottom-layout .top-btn {
    position: absolute;
    padding: 8px 14px;
    bottom: -60px;
  }
}
.footer-bottom-layout .footer-copyright {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #F8F7F0;
}
.footer-bottom-layout .footer-bottom-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}
.footer-bottom-layout .footer-bottom-menu ul li {
  display: inline-flex;
  align-items: center;
}
.footer-bottom-layout .footer-bottom-menu ul li:first-child:before {
  margin-left: 0;
}
.footer-bottom-layout .footer-bottom-menu ul li:before {
  content: "";
  width: 1px;
  height: 20px;
  display: inline-flex;
  margin: 0 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 100%);
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer-bottom-layout .footer-bottom-menu ul li:before {
    margin: 0 10px;
  }
}
@media (max-width: 767px) {
  .footer-bottom-layout .footer-bottom-menu ul li:before {
    margin: 0 10px;
  }
}
.footer-bottom-layout .footer-bottom-menu ul li a {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #F8F7F0;
}
.footer-bottom-layout .footer-bottom-menu ul li a:hover {
  color: var(--theme-color-2);
}

.footer-widget .w-title {
  font-family: var(--outfit-font);
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  color: var(--white-color);
  margin-bottom: 32px;
}
@media (max-width: 1399px) {
  .footer-widget .w-title {
    font-size: 20px;
  }
}
.footer-widget ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-widget ul li {
	display: block;
	margin-bottom: 10px;
	margin-left: 0;
	padding-left: 0;
}
.footer-widget ul li a {
	display: flex;
	align-items: center;
	gap: 5px;
	font-weight: 400;
	font-size: 14px;
	line-height: 28px;
	color: rgba(255, 255, 255, 0.9);
}
@media (max-width: 1399px) {
  .footer-widget ul li a {
    font-size: 16px;
  }
}

.footer-widget ul li a:hover {
  color: var(--theme-color-2);
}
.footer-widget ul li a:hover:after {
  margin-left: 0;
  opacity: 1;
}

.about-widget .footer-logo {
  margin-bottom: 25px;
}
.about-widget .footer-logo img {
  max-width: 165px;
}
.about-widget .text p {
	font-weight: 400;
	font-size: 14px;
	line-height: 28px;
	margin-bottom: 15px;
}
@media (max-width: 1399px) {
  .about-widget .text p {
    font-size: 16px;
  }
}
.about-widget .info p {
  font-weight: 400;
  font-size: 17px;
  line-height: 28px;
  color: #fff;
  margin-bottom: 4px;
}
@media (max-width: 1399px) {
  .about-widget .info p {
    font-size: 16px;
  }
}
.about-widget .info p span {
  color: var(--theme-color-2);
}
.about-widget .social-links {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 28px;
}
.about-widget .social-links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	color: #222;
	background: var(--accent-color);
	border-radius: 50px;
}
.about-widget .social-links a:hover {
	color: var(--theme-color-3);
	background: var(--theme-color-2);
}

.subscribe-form .input-wrap {
  margin-bottom: 15px;
}
.subscribe-form .input-wrap input {
  width: 100%;
  height: 66px;
  background: rgba(0, 69, 64, 0.65);
  border: 2px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(2px);
  border-radius: 53px;
  padding: 10px 24px;
  font-family: var(--albert-sans-font);
  font-weight: 600;
  font-size: 17px;
  line-height: 100%;
  color: var(--white-color);
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.subscribe-form .input-wrap input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.subscribe-form .input-wrap input:-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.subscribe-form .input-wrap input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.subscribe-form .input-wrap input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.subscribe-form .input-wrap input:focus {
  border-color: var(--theme-color-2);
}
.subscribe-form .input-wrap input:focus::-webkit-input-placeholder {
  color: transparent;
}
.subscribe-form .input-wrap input:focus:-moz-placeholder {
  color: transparent;
}
.subscribe-form .input-wrap input:focus::-moz-placeholder {
  color: transparent;
}
.subscribe-form .input-wrap input:focus:-ms-input-placeholder {
  color: transparent;
}
.subscribe-form .input-button button {
  border: 0;
}
.subscribe-form .input-checkbox {
  margin-top: 20px;
}
.subscribe-form .input-checkbox input {
  display: none;
}
.subscribe-form .input-checkbox input:checked + label .check-mark {
  background: var(--theme-color-2);
}
.subscribe-form .input-checkbox input:checked + label .check-mark:after {
  opacity: 1;
}
.subscribe-form .input-checkbox label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
  font-size: 17px;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.8);
}
.subscribe-form .input-checkbox label .check-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--theme-color-2);
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  border-radius: 3px;
}
.subscribe-form .input-checkbox label .check-mark:after {
  content: "\f00c";
  font-family: var(--icon-font);
  font-size: 12px;
  font-weight: 700;
  color: var(--theme-color-3);
  opacity: 0;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

.subscribe-form-2 .input-wrap {
  margin-bottom: 15px;
}
.subscribe-form-2 .input-wrap input {
  width: 100%;
  height: 66px;
  background: rgba(0, 69, 64, 0.65);
  border: 2px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(2px);
  border-radius: 53px;
  padding: 10px 24px;
  font-family: var(--albert-sans-font);
  font-weight: 600;
  font-size: 17px;
  line-height: 100%;
  color: var(--white-color);
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.subscribe-form-2 .input-wrap input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.subscribe-form-2 .input-wrap input:-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.subscribe-form-2 .input-wrap input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.subscribe-form-2 .input-wrap input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.subscribe-form-2 .input-wrap input:focus {
  border-color: var(--theme-color-2);
}
.subscribe-form-2 .input-wrap input:focus::-webkit-input-placeholder {
  color: transparent;
}
.subscribe-form-2 .input-wrap input:focus:-moz-placeholder {
  color: transparent;
}
.subscribe-form-2 .input-wrap input:focus::-moz-placeholder {
  color: transparent;
}
.subscribe-form-2 .input-wrap input:focus:-ms-input-placeholder {
  color: transparent;
}
.subscribe-form-2 .policy-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
}
.subscribe-form-2 .policy-wrap .input-button button {
  border: 0;
}
.subscribe-form-2 .policy-wrap .input-checkbox {
  margin-bottom: 0;
}
.subscribe-form-2 .policy-wrap .input-checkbox input {
  display: none;
}
.subscribe-form-2 .policy-wrap .input-checkbox input:checked + label .check-mark {
  background: var(--theme-color-2);
}
.subscribe-form-2 .policy-wrap .input-checkbox input:checked + label .check-mark:after {
  opacity: 1;
}
.subscribe-form-2 .policy-wrap .input-checkbox label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
  font-size: 17px;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.8);
}
.subscribe-form-2 .policy-wrap .input-checkbox label .check-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--theme-color-2);
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  border-radius: 3px;
}
.subscribe-form-2 .policy-wrap .input-checkbox label .check-mark:after {
  content: "\f00c";
  font-family: var(--icon-font);
  font-size: 12px;
  font-weight: 700;
  color: var(--theme-color-3);
  opacity: 0;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

.footer-section-2 .footer-widget .w-title {
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 0;
}
.footer-section-2 .footer-bottom {
  border-radius: 12px;
  background-color: var(--theme-color-2);
  margin: 0 50px;
  padding: 18px 0;
}
@media (max-width: 1700px) {
  .footer-section-2 .footer-bottom {
    margin: 0 20px;
  }
}
.footer-section-2 .footer-bottom .footer-bottom-layout {
  display: flex;
  justify-content: space-between;
  padding: 0;
  background-color: transparent;
  border: none;
  border-radius: 0;
}
.footer-section-2 .footer-bottom .footer-bottom-layout .footer-copyright {
  color: var(--theme-color-3);
}
.footer-section-2 .footer-bottom .footer-bottom-layout .footer-bottom-menu ul li a {
  color: var(--theme-color-3);
}
.footer-section-2 .footer-bottom .footer-bottom-layout .footer-bottom-menu ul li a:hover {
  color: var(--white-color);
}
.footer-section-2 .footer-bottom .footer-bottom-layout .footer-bottom-menu ul li:before {
  width: 0;
  margin: 0;
}
.footer-section-2 .footer-bottom .footer-bottom-layout .footer-bottom-menu ul li:last-child:before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 100%;
  display: inline-flex;
  margin: 0 20px;
  background: var(--theme-color-3);
  opacity: 0.5;
}

.get-in-touch {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.get-in-touch .footer-address, .get-in-touch .email, .get-in-touch .phone {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 0;
}
@media (max-width: 1399px) {
  .get-in-touch .footer-address, .get-in-touch .email, .get-in-touch .phone {
    gap: 8px;
  }
}
.get-in-touch .footer-address .icon, .get-in-touch .email .icon, .get-in-touch .phone .icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1399px) {
  .get-in-touch .footer-address .icon, .get-in-touch .email .icon, .get-in-touch .phone .icon {
    width: 40px;
    height: 40px;
  }
}
.get-in-touch .footer-address .icon i, .get-in-touch .email .icon i, .get-in-touch .phone .icon i {
  color: var(--theme-color-2);
  font-size: 20px;
}
@media (max-width: 1399px) {
  .get-in-touch .footer-address .icon i, .get-in-touch .email .icon i, .get-in-touch .phone .icon i {
    font-size: 16px;
  }
}
.get-in-touch .text h6 {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  color: var(--white-color);
  margin-bottom: 4px;
}
.get-in-touch .text p {
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-section-3 {
  padding: 80px 70px 86px 80px;
  border-radius: 16px;
}
@media (max-width: 1399px) {
  .footer-section-3 {
    padding: 40px 20px;
  }
}

.footer-bottom-2 {
  border-radius: 0;
  background-color: transparent;
  margin: 0;
  padding: 40px 0;
}
.footer-bottom-2 .footer-bottom-layout {
  display: flex;
  justify-content: space-between;
  padding: 0;
  background-color: transparent;
  border: none;
  border-radius: 0;
}
@media (max-width: 991px) {
  .footer-bottom-2 .footer-bottom-layout {
    flex-direction: column;
  }
}
.footer-bottom-2 .footer-bottom-layout .footer-copyright {
  color: var(--theme-color-3);
}
.footer-bottom-2 .footer-bottom-layout .footer-bottom-menu ul li a {
  color: var(--theme-color-3);
}
@media (max-width: 767px) {
  .footer-bottom-2 .footer-bottom-layout .footer-bottom-menu ul li a {
    font-size: 14px;
  }
}
.footer-bottom-2 .footer-bottom-layout .footer-bottom-menu ul li a:hover {
  color: var(--theme-color-2);
}
.footer-bottom-2 .footer-bottom-layout .footer-bottom-menu ul li:before {
  width: 0;
  margin: 0;
}
.footer-bottom-2 .footer-bottom-layout .footer-bottom-menu ul li i {
  color: var(--theme-color-3);
  margin-left: 10px;
}
.footer-bottom-2 .footer-bottom-layout .footer-bottom-menu ul li:before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 100%;
  display: inline-flex;
  margin: 0 20px;
  background: var(--theme-color-3);
  opacity: 0.5;
}
@media (max-width: 767px) {
  .footer-bottom-2 .footer-bottom-layout .footer-bottom-menu ul li:before {
    margin: 0 10px;
  }
}
.footer-bottom-2 .footer-bottom-layout .footer-bottom-menu ul li:first-child:before {
  width: 0;
  margin: 0;
}

.footer-bottom-3 {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 40px 0;
}
@media (max-width: 767px) {
  .footer-bottom-3 {
    padding: 20px 0;
  }
}
.footer-bottom-3 .footer-bottom-layout-2 {
  align-items: center;
  border-radius: 100px;
  overflow: hidden;
  gap: 20px;
  display: flex;
  background: transparent;
  padding: 0;
  border: none;
  justify-content: space-between;
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer-bottom-3 .footer-bottom-layout-2 {
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .footer-bottom-3 .footer-bottom-layout-2 {
    flex-direction: column;
    gap: 10px;
    position: relative;
    overflow: visible;
    padding: 15px 30px;
  }
}
.footer-bottom-3 .footer-bottom-layout-2 .footer-copyright {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: var(--white-color);
}
.footer-bottom-3 .footer-bottom-layout-2 .footer-bottom-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}
.footer-bottom-3 .footer-bottom-layout-2 .footer-bottom-menu ul li {
  display: inline-flex;
  align-items: center;
}
.footer-bottom-3 .footer-bottom-layout-2 .footer-bottom-menu ul li:first-child:before {
  margin-left: 0;
  width: 0;
}
.footer-bottom-3 .footer-bottom-layout-2 .footer-bottom-menu ul li:before {
  content: "";
  display: inline-flex;
  margin: 0 20px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0.5;
  width: 2px;
  height: 14px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer-bottom-3 .footer-bottom-layout-2 .footer-bottom-menu ul li:before {
    margin: 0 10px;
  }
}
@media (max-width: 767px) {
  .footer-bottom-3 .footer-bottom-layout-2 .footer-bottom-menu ul li:before {
    margin: 0 10px;
  }
}
.footer-bottom-3 .footer-bottom-layout-2 .footer-bottom-menu ul li a {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: var(--white-color);
}
.footer-bottom-3 .footer-bottom-layout-2 .footer-bottom-menu ul li a:hover {
  color: var(--body-color);
}

.footer-section-5 {
  position: relative;
  z-index: 1;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.footer-section-5::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0, 69, 64, 0.9) 0%, rgba(0, 51, 47, 0.95) 86.79%, rgba(0, 47, 43, 0.9) 107.82%);
}
.footer-section-5 .shape-1 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 1700px) {
  .footer-section-5 .shape-1 {
    width: 80%;
  }
}
.footer-section-5 .shape-2 {
  position: absolute;
  bottom: 23%;
  right: 8%;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .footer-section-5 .shape-2 {
    right: 0;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .footer-section-5 .shape-2 {
    right: 0;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .footer-section-5 .shape-2 {
    right: 0;
    bottom: 10%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer-section-5 .shape-2 {
    right: 0;
    bottom: 10%;
  }
}
@media (max-width: 767px) {
  .footer-section-5 .shape-2 {
    right: 0;
    bottom: 11%;
  }
}
@media (max-width: 1700px) {
  .footer-section-5 .shape-2 img {
    width: 80%;
  }
}
.footer-section-5 .footer-widget .w-title {
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 0;
}
.footer-section-5 .footer-top {
  display: flex;
  justify-content: space-between;
  padding-bottom: 60px;
  margin-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
@media (max-width: 1199px) {
  .footer-section-5 .footer-top {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .footer-section-5 .footer-top {
    padding-bottom: 40px;
    margin-bottom: 40px;
  }
}
.footer-section-5 .footer-top .left {
  max-width: 712px;
  width: 100%;
}
.footer-section-5 .footer-top .left .common-title {
  margin-bottom: 0;
}
.footer-section-5 .footer-top .left .common-title h2 {
  color: var(--light-color);
  margin-bottom: 0;
}
.footer-section-5 .footer-top .right {
  max-width: 460px;
  width: 100%;
}

.adjusted-width {
  width: 20%;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .adjusted-width {
    width: 33.33333333%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .adjusted-width {
    width: 41.66666667%;
  }
}
@media (max-width: 767px) {
  .adjusted-width {
    width: 100%;
  }
}

.footer-address .text {
    width: 200px;
}

/* 08 Breadcrumb Css */
.breadcrumb-section {
	padding-top: 135px;
    padding-left: 85px;
    padding-right: 85px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
    .breadcrumb-section {
        padding-left: 0;
        padding-right: 0;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .breadcrumb-section {
        padding-left: 0;
        padding-right: 0;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .breadcrumb-section {
        padding-left: 0;
        padding-right: 0;
    }
}
@media (max-width: 767px) {
    .breadcrumb-section {
        padding-left: 0;
        padding-right: 0;
    }
}

.breadcrumb-thumb {
    overflow: hidden;
    clip-path: polygon(5% 0, 100% 0, 100% 100%, 0 100%);
    margin-left: -15px;
    border-radius: 0 10px 10px 0;
    position: relative;
}
@media (min-width: 1400px) and (max-width: 1700px) {
    .breadcrumb-thumb {
        margin-left: -10px;
    }
}
@media (min-width: 1200px) and (max-width: 1399px) {
    .breadcrumb-thumb {
        margin-left: -10px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .breadcrumb-thumb {
        margin-left: -8px;
    }
}
.breadcrumb-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.breadcrumb-thumb .video-play-btn {
    width: 100px;
    height: 100px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--light-color);
    padding: 23px 21px;
    border-radius: 100%;
    border: 1px solid var(--light-color);
    font-weight: 500;
    font-size: 25px;
    line-height: 30px;
    background: rgba(255, 255, 255, 0.015);
    backdrop-filter: blur(28px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    -webkit-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    animation: animate-pulse 3s linear infinite;
}
.breadcrumb-thumb .video-play-btn:hover {
    color: var(--theme-color-3);
    background: var(--theme-color-2);
    border-color: var(--theme-color-2);
}

.breadcrumb-content {
    background-color: var(--theme-color-3);
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 60px;
    position: relative;
    z-index: 1;
    border-radius: 10px;
    overflow: hidden;
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .breadcrumb-content {
        margin-right: -10px;
        padding-left: 40px;
        padding-right: 40px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .breadcrumb-content {
        margin-right: -8px;
        padding-left: 20px;
        padding-right: 20px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .breadcrumb-content {
        margin-right: 0;
        padding: 60px 20px;
        clip-path: none;
        border-radius: 10px;
    }
}
@media (max-width: 767px) {
    .breadcrumb-content {
        margin-right: 0;
        padding: 60px 20px;
        clip-path: none;
        border-radius: 10px;
    }
}
.breadcrumb-content .shape-1 {
    position: absolute;
    right: 0;
    top: 0;
    pointer-events: none;
    z-index: -1;
}
@media (min-width: 1400px) and (max-width: 1700px) {
    .breadcrumb-content:before {
        width: 30px;
    }
}
@media (min-width: 1200px) and (max-width: 1399px) {
    .breadcrumb-content:before {
        width: 30px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .breadcrumb-content:before {
        width: 25px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .breadcrumb-content:before {
        display: none;
    }
}
@media (max-width: 767px) {
    .breadcrumb-content:before {
        display: none;
    }
}

.breadcrumb-nav ul {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
    .breadcrumb-nav ul {
        margin-bottom: 10px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .breadcrumb-nav ul {
        margin-bottom: 10px;
    }
}
@media (max-width: 767px) {
    .breadcrumb-nav ul {
        margin-bottom: 10px;
    }
}
.breadcrumb-nav ul li {
    display: inline-block;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #f8f7f0;
	margin-left: 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
    .breadcrumb-nav ul li {
        font-size: 16px;
        line-height: 1.2;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .breadcrumb-nav ul li {
        font-size: 16px;
        line-height: 1.2;
    }
}
@media (max-width: 767px) {
    .breadcrumb-nav ul li {
        font-size: 16px;
        line-height: 1.2;
    }
}
.breadcrumb-nav ul li:after {
    content: "\e829";
    font-family: feather;
    font-weight: 400;
    margin-right: 8px;
    margin-left: 10px;
}
@media (min-width: 992px) and (max-width: 1199px) {
    .breadcrumb-nav ul li:after {
        font-size: 14px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .breadcrumb-nav ul li:after {
        font-size: 14px;
    }
}
@media (max-width: 767px) {
    .breadcrumb-nav ul li:after {
        font-size: 14px;
    }
}
.breadcrumb-nav ul li:last-child:after {
    display: none;
}
.breadcrumb-nav ul li a {
    color: #f8f7f0;
}
.breadcrumb-nav ul li a:hover {
    color: var(--theme-color-2);
}

.breadcrumb-title h1,
.breadcrumb-title h2 {
    font-weight: 600;
    font-size: 48px;
    line-height: 60px;
    color: #ffffff;
    margin-bottom: 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
    .breadcrumb-title h2 {
        font-size: 40px;
        line-height: 1.2;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .breadcrumb-title h2 {
        font-size: 32px;
        line-height: 1.2;
    }
}
@media (max-width: 767px) {
    .breadcrumb-title h2 {
        font-size: 32px;
        line-height: 1.2;
    }
}

.contact-form h4 {
	font-size: 1.2rem;
    line-height: 1.5;
}
/***** Button Stycky WhatsApp *****/
.stickynav-dekstop {
    position: fixed;
    bottom: -10%;
    right: 0%;
    line-height: 40px;
    overflow: hidden;
    padding: 0px 10px 25px 0;
    text-decoration: none!important;
    z-index: 99999;
    -webkit-transition: var(--transition-3);
    -moz-transition: var(--transition-3);
    -ms-transition: var(--transition-3);
    -o-transition: var(--transition-3);
    transition: var(--transition-3);
}

.stickynav-dekstop.active {
    bottom: 8%;
    visibility: visible;
    opacity: 1;
}
/***** End Button Stycky WhatsApp *****/

.blog-area {
    padding: 25px 0px;
}