/*******************************/
/********* General CSS *********/
/*******************************/

:root {
    --theme-primary: #41351F;
    --theme-primary-surface: #fceecc;
    --theme-secondary: #EAB64F;
    --navbar-bg: var(--theme-primary);
    --navbar-text-color: #fff;
    --navbar-hightlight-color: var(--theme-primary-surface);
    --navbar-active-color: var(--theme-secondary);
    --carousel-heading-color: #fff;
    --button-primary-bg: var(--theme-primary);
    --button-primary-text: #fff;
    --button-primary-hover-bg:  var(--theme-secondary);
    --buton-primary-hover-text: #fff;
}

body {
    color: #444444;
    font-weight: 400;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
}

h1,
h2, 
h3, 
h4,
h5, 
h6 {
    color: var(--theme-primary);
}

a {
    color: var(--theme-secondary);
    transition: .3s;
}

a:hover,
a:active,
a:focus {
    color: var(--theme-primary);
    outline: none;
    text-decoration: none;
}

.btn.btn-custom {
    padding: 10px 30px 12px 30px;
    text-align: center; 
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    background: var(--theme-primary);
    border: none;
    border-radius: 60px;
    box-shadow: inset 0 0 0 0 var(--theme-secondary);
    transition: ease-out 0.5s;
    -webkit-transition: ease-out 0.5s;
    -moz-transition: ease-out 0.5s;
}

.btn.btn-custom:hover {
    color: #fff;
    background: var(--theme-secondary);
    box-shadow: inset 200px 0 0 0 var(--theme-secondary);
}

.btn:focus,
.form-control:focus {
    box-shadow: none;
}

.container {
    padding: 0 16px;
}

[class^="flaticon-"]:before, [class*=" flaticon-"]:before,
[class^="flaticon-"]:after, [class*=" flaticon-"]:after {   
    font-size: inherit;
    margin-left: 0;
}


/**********************************/
/****** Loader & Back to Top ******/
/**********************************/
#loader {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .3s ease-out, visibility 0s linear .3s;
    -o-transition: opacity .3s ease-out, visibility 0s linear .3s;
    transition: opacity .3s ease-out, visibility 0s linear .3s;
    z-index: 999;
}

#loader.show {
    -webkit-transition: opacity .6s ease-out, visibility 0s linear 0s;
    -o-transition: opacity .6s ease-out, visibility 0s linear 0s;
    transition: opacity .6s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

#loader .loader {
    position: relative;
    width: 45px;
    height: 45px;
    border: 5px solid #dddddd;
    border-top: 5px solid var(--theme-primary);
    border-radius: 50%;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.back-to-top {
    position: fixed;
    display: none;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 22px;
    right: 15px;
    bottom: 15px;
    transition: .5s;
    background: var(--theme-primary);
    border-radius: 44px;
    z-index: 9;
}

.back-to-top i {
    color: #ffffff;
    padding-top: 10px;
}

.back-to-top:hover {
    background: var(--theme-secondary);
}

/*******************************/
/********** Hero CSS ***********/
/*******************************/
.carousel {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: #ffffff;
}

.carousel .container-fluid {
    padding: 0;
}

.carousel .carousel-item {
    position: relative;
    width: 100%;
    min-height: 100vh;
    max-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.carousel .carousel-img {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: right;
    overflow: hidden;
}

.carousel .carousel-img::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 1;
}

.carousel .carousel-img img {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    object-fit: cover;
}

.carousel .carousel-text {
    position: absolute;
    padding: 0 15px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 2;
}

.carousel .carousel-text h1 {
    color: #ffffff;
    font-size: 36px;
    font-weight: 600;
    margin: 20px;
    text-transform: capitalize;
}

.carousel .carousel-text, .explore, .explore:hover, .explore:focus {
    color: #ffffff;
}

.corousel-actions {
    display: flex;
    margin: 20px 0 40px 0;
    gap: 20px;
}

.carousel .owl-nav {
  display: none;
}

/*******************************/
/******* Section Header ********/
/*******************************/
.section-header {
    position: relative;
    width: 100%;
    margin: 0 auto 20px auto;
}

.section-header p {
    display: inline-block;
    margin-bottom: 10px;
    padding-bottom: 5px;
    position: relative;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--theme-primary);
}

.section-header p::after {
    position: absolute;
    content: "";
    width: 50%;
    height: 2px;
    left: 25%;
    bottom: 0;
    background: var(--theme-primary);
}

.section-header.text-left p::after {
    left: 0;
}

.section-header.text-right p::after {
    left: 50%;
}

/*******************************/
/********** About CSS **********/
/*******************************/
.about {
    margin-top: 40px;
}

.about .section-header {
    margin-bottom: 20px;
    margin-left: 0;
}

.about .about-map {
    width: 100%;
    height: 100%;
    object-fit:contain;
    border-radius: 30px;
    box-shadow: 0 8px 12px rgba(0,0,0,0.05);
}

/*******************************/
/********** Workflow CSS **********/
/*******************************/

.workflow-slides {
    margin-top: 60px;
}

.workflow-slides img {
    width: 100%;
    margin: 10px 0;
    
    @media (max-width: 720px) {
        width: 80%;
        margin: 10px 10% !important;
    }
}

/*******************************/
/********** Mission-Vision CSS **********/
/*******************************/

.mv-section {
    margin-top: 60px;
}

.mv-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg,#FCEECC,#ffd284);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.mv-left {
    width: 50%;
    padding: 60px;

    @media (max-width: 720px) {
        width: 100%;
    }
}

.mv-block h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

.mv-block p {
    font-size: 16px;
    line-height: 1.7;
    opacity: .95;
}

.mv-right {
    width: 50%;
    height: 300px;
    background: url('../img/map-illustration.png');
    background-size: cover;
    background-position: center;

    @media (max-width: 720px) {
        width: 0%;
    }
}

/*******************************/
/*********** Team CSS **********/
/*******************************/
.team {
    position: relative;
    width: 100%;
    margin-top: 60px;
}

.team .team-item {
    position: relative;
    margin-bottom: 30px;
}

.team .team-img {
    position: relative;
    border-radius: 30px;
    border: 2px solid #f0f0f0;
    overflow: hidden;
}

.team .team-img img {
    width: 100%;
    height: 100%;
    transition: .3s;
}

.team .team-item:hover img {
    transform: scale(1.05);
}

.team .team-text {
    position: relative;
    width: 100%;
    padding: 15px 30px;
    text-align: center;
    transition: .5s;
}

.team .team-text h2 {
    color: #484848;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.team .team-text p {
    margin: 0;
}

.team .team-social {
    position: absolute;
    width: 100%;
    height: 40px;
    top: -20px;
    left: 0;
    text-align: center;
    font-size: 0;
}

.team .team-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin: 0 3px;
    padding: 7px 0;
    text-align: center;
    font-size: 16px;
    color: #ffffff;
    background: var(--theme-secondary);
    border-radius: 40px;
    transition: .5s;
}

.team .team-item:hover .team-social a {
    background: var(--theme-primary);
}

.team .team-social a:hover {
    color: var(--theme-secondary);
}

/*******************************/
/********* Footer CSS **********/
/*******************************/
.footer {
    position: relative;
    padding-top: 36px;
    background: var(--theme-primary);
}

.footer .footer-contact,
.footer .footer-link,
.footer .footer-newsletter {
    position: relative;
    color: #ffffff;
}

.footer .footer-contact h2,
.footer .footer-link h2,
.footer .footer-newsletter h2 {
    margin-bottom: 18px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #ffffff;
}

.footer .footer-link a {
    display: block;
    margin-bottom: 10px;
    color: #ffffff;
    transition: .3s;
}

.footer .footer-link a::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .footer-link a:hover {
    color: var(--theme-primary);
    letter-spacing: 1px;
}

.footer .footer-contact p {
    font-size: small;
}

.footer .footer-contact p i {
    width: 25px;
}

.footer .footer-social {
    position: relative;
    margin-top: 20px;
    display: flex;
}

.footer .footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-primary);
    background: #ffffff;
    border-radius: 40px;
    margin-right: 5px;
    transition: .5s;
}

.footer .footer-social a:last-child {
    margin: 0;
}

.footer .footer-social a:hover {
    color: #ffffff;
    background: var(--theme-secondary);
}

.footer .copyright {
    text-align: center;
    padding-top: 15px;
    padding-bottom: 36px;
}

.footer .copyright p {
    margin: 0;
    color: #ffffff;
}

.footer .copyright p a {
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
}

.footer .copyright p a:hover {
    color: #ffffff;
}

