.barlow-thin {
    font-family: "Barlow", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.barlow-extralight {
    font-family: "Barlow", sans-serif;
    font-weight: 200;
    font-style: normal;
}

.barlow-light {
    font-family: "Barlow", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.barlow-regular {
    font-family: "Barlow", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.barlow-medium {
    font-family: "Barlow", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.barlow-semibold {
    font-family: "Barlow", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.barlow-bold {
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.barlow-extrabold {
    font-family: "Barlow", sans-serif;
    font-weight: 800;
    font-style: normal;
}

.barlow-black {
    font-family: "Barlow", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.barlow-thin-italic {
    font-family: "Barlow", sans-serif;
    font-weight: 100;
    font-style: italic;
}

.barlow-extralight-italic {
    font-family: "Barlow", sans-serif;
    font-weight: 200;
    font-style: italic;
}

.barlow-light-italic {
    font-family: "Barlow", sans-serif;
    font-weight: 300;
    font-style: italic;
}

.barlow-regular-italic {
    font-family: "Barlow", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.barlow-medium-italic {
    font-family: "Barlow", sans-serif;
    font-weight: 500;
    font-style: italic;
}

.barlow-semibold-italic {
    font-family: "Barlow", sans-serif;
    font-weight: 600;
    font-style: italic;
}

.barlow-bold-italic {
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-style: italic;
}

.barlow-extrabold-italic {
    font-family: "Barlow", sans-serif;
    font-weight: 800;
    font-style: italic;
}

.barlow-black-italic {
    font-family: "Barlow", sans-serif;
    font-weight: 900;
    font-style: italic;
}

/* ------------------------------------------------ */

/* Heading Styles */
h1 {
    font-size: 4rem;
    font-weight: 700;
    /* Very bold */
    margin-bottom: 1.5rem;
    /* Add spacious margins for hierarchy */
}

h2 {
    font-size: 2.25rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

h3 {
    font-size: 1.37rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

h5 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

h6 {
    font-size: 1rem;
    font-weight: 700;
    /* Make it bold since it's the same size as body text */
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    /* Another way to differentiate h6 */
}

/* Body Text */
p {
    font-size: 1.1rem;
    line-height: 1.6;
    /* Crucial for readability */
    margin-bottom: 1rem;
}

.abt p {
    font-size: 1.1rem;
    line-height: 1.6;
    /* Crucial for readability */
    margin-bottom: 1rem;
}

/* ------------------------------------------------ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Barlow", sans-serif;
}

nav {
    position: fixed;
    top: 0;
    z-index: 99;
    width: 100%;
    background:#14180e8a;
}

nav .wrapper {
    position: relative;
    /* max-width: 1300px; */
    padding: 0px 70px;
    height: 70px;
    line-height: 70px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wrapper .logo img{
    width:140px;
}

.wrapper .nav-links {
    display: inline-flex;
    align-self: flex-start;
}

.nav-links li {
    list-style: none;
}

.nav-links li a {
    color: #f2f2f2;
    text-decoration: none;
    font-size:16px;
    font-weight: 500;
    padding: 10px 30px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-links li a:hover {
    background: #3A3B3C;
    color: #ccaa35;
}

.nav-links .mobile-item {
    display: none;
}

.nav-links .drop-menu {
    position: absolute;
    background: #242526;
    width: 180px;
    line-height: 45px;
    top: 85px;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box {
    transition: all 0.3s ease;
    top: 70px;
    opacity: 1;
    visibility: visible;
}

.drop-menu li a {
    width: 100%;
    display: block;
    padding: 0 0 0 15px;
    font-weight: 400;
    border-radius: 0px;
}

.mega-box {
    position: absolute;
    right: -60px;
    width: 100%;
    padding: 0 30px;
    top: 85px;
    opacity: 0;
    visibility: hidden;
}

.mega-box .content {
    background: #242526;
    padding: 25px 20px;
    display: flex;
    width: 100%;
    justify-content: space-between;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
    border-top: 4px solid #ccaa35;
}

.mega-box .content .row {
    width: calc(25% - 30px);
    line-height: 45px;
}

.content .row img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content .row header {
    color: #ccaa35;
    font-size: 20px;
    font-weight: 500;
}

.content .row .mega-links {
    margin-left: -6px;
    border-left: 1px solid rgba(255, 255, 255, 0.09);
    margin-top: 0;
}

.row .mega-links li {
    /* padding: 0 20px; */
}

.row .mega-links li a {
    padding: 0px;
    color: #d9d9d9;
    font-size: 17px;
    display: block;
}

.row .mega-links li a:hover {
    color: #ccaa35;
}

.wrapper .btn {
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: none;
}

.wrapper .btn.close-btn {
    position: absolute;
    right: 30px;
    top: 10px;
}

@media screen and (max-width: 970px) {
    .wrapper .btn {
        display: block;
    }

    .wrapper .nav-links {
        position: fixed;
        height: 100vh;
        width: 100%;
        max-width: 350px;
        top: 0;
        left: -100%;
        background: #242526;
        display: block;
        padding: 50px 10px;
        line-height: 50px;
        overflow-y: auto;
        box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.18);
        transition: all 0.3s ease;
    }

    /* custom scroll bar */
    ::-webkit-scrollbar {
        width: 10px;
    }

    ::-webkit-scrollbar-track {
        background: #242526;
    }

    ::-webkit-scrollbar-thumb {
        background: #3A3B3C;
    }

    #menu-btn:checked~.nav-links {
        left: 0%;
    }

    #menu-btn:checked~.btn.menu-btn {
        display: none;
    }

    #close-btn:checked~.btn.menu-btn {
        display: block;
    }

    .nav-links li {
        margin: 15px 10px;
    }

    .nav-links li a {
        padding: 0 20px;
        display: block;
        font-size: 20px;
    }

    .nav-links .drop-menu {
        position: static;
        opacity: 1;
        top: 65px;
        visibility: visible;
        padding-left: 20px;
        width: 100%;
        max-height: 0px;
        overflow: hidden;
        box-shadow: none;
        transition: all 0.3s ease;
    }

    #showDrop:checked~.drop-menu,
    #showMega:checked~.mega-box {
        max-height: 100%;
    }

    .nav-links .desktop-item {
        display: none;
    }

    .nav-links .mobile-item {
        display: block;
        color: #f2f2f2;
        font-size: 20px;
        font-weight: 500;
        padding-left: 20px;
        cursor: pointer;
        border-radius: 5px;
        transition: all 0.3s ease;
    }

    .nav-links .mobile-item:hover {
        background: #3A3B3C;
    }

    .drop-menu li {
        margin: 0;
    }

    .drop-menu li a {
        border-radius: 5px;
        font-size: 18px;
    }

    .mega-box {
        position: static;
        top: 65px;
        opacity: 1;
        visibility: visible;
        padding: 0 20px;
        max-height: 0px;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .mega-box .content {
        box-shadow: none;
        flex-direction: column;
        padding: 20px 20px 0 20px;
    }

    .mega-box .content .row {
        width: 100%;
        margin-bottom: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .mega-box .content .row:nth-child(1),
    .mega-box .content .row:nth-child(2) {
        border-top: 0px;
    }

    .content .row .mega-links {
        border-left: 0px;
        padding-left: 15px;
    }

    .row .mega-links li {
        margin: 0;
    }

    .content .row header {
        font-size: 19px;
    }
}

nav input {
    display: none;
}

.body-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    padding: 0 30px;
}

.body-text div {
    font-size: 45px;
    font-weight: 600;
}


/* ------------------------------------------- */

/* ------------------------------------------- */

.hero.hero-slider {
    position: relative;
    min-height: 88vh;
    color: #fff;
    display: flex;
    align-items: center;
    overflow: hidden;
    /* background-color: #002a52; */
    /* fallback while images load */
}

/* Slides wrapper */
.hero .slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}

/* Each slide is a full-cover background layer */
.hero .slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.05);
    /* slight zoom for a subtle parallax feel */
    transition: opacity 900ms ease-in-out, transform 1200ms ease-in-out;
    will-change: opacity, transform;
}

.hero .slide.active {
    opacity: 1;
    transform: scale(1);
}

/* Optional: dark gradient overlay to improve text contrast */
.hero .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .65) 0%, rgba(0, 0, 0, .35) 40%, rgba(0, 0, 0, .15) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Content sits above slides & overlay */
.hero .content {
    position: relative;
    z-index: 2;
    padding: 50px 75px;
}

.content h1 {
    line-height: 1.2;
}

/* Right image subtle float */
.banner-pdd img {
    max-width: 100%;
    height: auto;
    animation: floatImage 4s ease-in-out infinite;
}

@keyframes floatImage {

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

    50% {
        transform: translateY(-8px);
    }
}

/* Nav arrows */
.hero .nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .6);
    background: rgba(0, 0, 0, .25);
    backdrop-filter: blur(2px);
    display: grid;
    place-items: center;
    cursor: pointer;
    user-select: none;
    transition: background .2s ease, transform .15s ease, border-color .2s ease;
}

.hero .nav:hover {
    background: rgba(0, 0, 0, .4);
    border-color: #fff;
    transform: translateY(-50%) scale(1.05);
}

.hero .nav:active {
    transform: translateY(-50%) scale(0.97);
}

.hero .nav svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}

.hero .nav.prev {
    left: 14px;
}

.hero .nav.next {
    right: 14px;
}

/* Responsive height tweak */
@media (max-width: 991.98px) {
    .hero.hero-slider {
        min-height: 100%;
        padding-top: 24px;
        padding-bottom: 24px;
    }
}

/* ------------------------------------------- */


/* ------------------------------------------- */
.glob-lr {
    padding: 60px 100px;
}

/* === BASE HEADING === */


.title {
    position: relative;
    padding: 0;
    margin: 0;
    font-family: "Raleway", sans-serif;
    font-weight: 300;
    font-size: 32px;
    color: #080808;
    -webkit-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

.title span {
    display: block;
    font-size: 0.5em;
    line-height: 1.3;
}

.title em {
    font-style: normal;
    font-weight: 600;
}

.title-mb {
    margin-bottom: 20px;
}

/* === HEADING STYLE #4 === */
.title-mb .title {
    text-align: center;
    padding-bottom: 0.7em;
}

.left-align .title {
    text-align: left !important;
}

.title-mb .title span {
    font-weight: 500;
    word-spacing: 3px;
    padding-bottom: 0.35em;
    color: #800020;
    font-size: 20px;
    font-family: cursive;
}

.title-mb .title:before {
    position: absolute;
    left: 0;
    bottom: 10px;
    width: 60px;
    height: 2px;
    content: "";
    left: 50%;
    margin-left: -30px;
    background-color: #800020;
}

.left-align .title:before {
    position: absolute;
    left: 0;
    bottom: 10px;
    width: 60px;
    height: 2px;
    content: "";
    left: 5.2%;
    margin-left: -30px;
    background-color: #800020;
}

/* ------------------------------------------- */
/* button */

.generic-button a,
.form-btn button {
    font-size: 15px;
    line-height: 18px;
    font-weight: 600;
    padding: 2px 2px 2px 22px;
    text-decoration: none;
    display: inline-block;
    border-radius: 32px;
    transition: .4s ease-in-out;
}

.generic-button i,
.form-btn button i {
    padding: 12px 26px;
    border-radius: 24px;
    margin-left: 14px;
    display: inline-block;
    font-size: 20px;
    transition: .4s ease-in-out;
}

.white-btn a {
    background: #ffffff;
    color: #806900;
    transition: .4s ease-in-out;
}

.white-btn i {
    background: linear-gradient(90deg, rgba(117, 86, 12, 1) 0%, rgba(166, 136, 28, 1) 100%);
    color: #ffffff;
    transition: .4s ease-in-out;
}

.red-btn a,
.red-btn button {
    color: #ffffff;
    background: linear-gradient(90deg, rgba(117, 86, 12, 1) 0%, rgba(166, 136, 28, 1) 100%);
    transition: .4s ease-in-out;
}

.red-btn i {
    color: #806900;
    background: #ffffff;
    transition: .4s ease-in-out;
}

/* button */
/* ------------------------------------------- */

/* ------------------------------------------- */
.all-png {
    position: relative;
    background-color: #fbfff7;
}

.music-notes {
    position: absolute;
    top: 20%;
    animation: move 2s infinite alternate;
}

.music-notes.left {
    left: 0;
}

.music-notes.right {
    right: 0;
}

.music-notes img {
    /* width: 120px;  */
    width: 100%;
    /* adjust size */
    opacity: 0.8;
}

@keyframes move {
    from {
        transform: translateY(30px);
        opacity: 0.5;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ------------------------------------------- */

/* ------------------------------------------- */
/* .service {
    padding: 20px;
    text-align: center;
} */

/* ------------------------------------------- */

/* ------------------------------------------- */
#myImg {
    border-radius: 0px;
    cursor: pointer;
    transition: 0.3s;
    margin-bottom: 17px;
}

#myImg:hover {
    opacity: 0.7;
}

.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 6;
    /* Sit on top */
    padding-top: 100px;
    /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.9);
    /* Black w/ opacity */
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 550px;
}

#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

.modal-content,
#caption {
    animation-name: zoom;
    animation-duration: 0.6s;
}

@keyframes zoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

.close {
    position: absolute;
    top: 80px;
    right: 35px;
    color: #ffffff;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

@media only screen and (max-width: 700px) {
    .modal-content {
        width: 100%;
    }
}

/* CUSTOM1 */
* {
    box-sizing: border-box;
}

.row-pg {
    display: -ms-flexbox;
    /* IE10 */
    display: flex;
    -ms-flex-wrap: wrap;
    /* IE10 */
    flex-wrap: wrap;
    padding: 0 4px;
    margin-left: auto;
    /* padding-left: 32px;
    padding-right: 32px; */
}

/* Create four equal columns that sits next to each other */
.column-pg {
    -ms-flex: 25%;
    /* IE10 */
    flex: 25%;
    max-width: 25%;
    padding: 0px 8px;
    flex-direction: column;
    column-gap: 25px;
}

.column img {
    margin-top: 8px;
    vertical-align: middle;
    width: 100%;
}

/* Custom */
@media screen and (max-width: 600px) {
    .enap-gallery-img {
        padding-left: 5px;
        padding-right: 5px;
        padding-top: 5px;
        padding-bottom: 5px;
    }
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
    .column-pg {
        -ms-flex: 50%;
        flex: 50%;
        max-width: 50%;
        column-gap: 5px;
        flex-direction: column;
    }

    .row-pg {
        padding-left: 0px;
        padding-right: 0px;
    }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
    .column-pg {
        -ms-flex: 100%;
        flex: 100%;
        max-width: 100%;
        column-gap: 10px;
        flex-direction: column;
    }

    .row-pg {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* ------------------------------------------- */



/* ------------------------------------------- */


footer {
    color: #fff;
    /* background-image: linear-gradient(90deg, #272f1a 0%, #14180e 100%); */
    background-color: #d54479;
    position: relative;
    width: 100%;
    height: 100%;
    border-top-left-radius: 70px;
    font-size: 0.8rem;
}



@media (max-width:960px) {
    footer {
        width: 100%;
        top: 120px;
    }

    /*
    .footer-sec .main {
        margin: 50px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 1fr 1fr;
    } */

    .logo {
        grid-column: 1/3;
    }

    .office {
        grid-column: 3/5;
    }

    .link {
        grid-column: 1/3;
    }


}


@media (max-width:660px) {
    .main {
        gap: 10px;
        margin: 0;

    }

    .icons {
        display: flex;
    }

}

.left-pdd {
    padding-left: 45px;
}

.footer-sec .main {
    margin: 40px 40px 8px 40px;
    padding-top: 50px;
    padding-bottom: 0px;
}

.footer-header {
    font-size: 1.5rem;
}

.office-des {
    display: flex;
    flex-direction: column;
}

.office-des a {
    color: white;
}

.office a {
    text-decoration: none;
    color: #ffffff;

}

.office a:hover {
    color: #fff;
}

.num {
    font-size: 1rem;
    font-weight: 500;
}

.link-des {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.link-des a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
}

.link-des a:hover {
    color: #ffffff;
    transition: linear 0.3s;
}

.btn-know {
    text-decoration: none;
    background-color: #fff;
    padding: 10px;
    position: relative;
    top: 30px;
    background-color: transparent;
    border: 1px solid #98A8F8;
    color: #98A8F8;
    text-transform: uppercase;
    border-radius: 10px;

}


.btn-know:hover {
    color: white;
    background-color: #98A8F8;
    transition: linear 0.3s;
}

.subcribe {
    display: flex;
    align-items: baseline;
}

.subcribe .fa-solid {
    padding-right: 20px;
}

input[type=mail] {
    border: none;
    padding-bottom: 5px;
    border-bottom: 1px solid #fff;
    background-color: transparent;
    font-size: 0.8rem;
}

.sub-icon {
    margin: 7px;
    margin-right: 15px;
    margin-left: 0;
    font-size: 1.5rem;
}

.ri-arrow-right-line {
    margin-left: 0;

}

.icons a {
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    justify-content: center;
    padding: 4px;
    border-radius: 50%;
    align-items: center;
    font-size: 1.1rem;
    margin: 2%;
}


.social-icon {
    position: relative;
    top: 2px;
}

.icons a:hover {
    color: #fff;
    background-color: #273b19;
    border-color: #273b19;
}

.newsletter-des {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.copyright {
    display: flex;
    justify-content: space-between;
    padding: 20px;
}

hr {
    width: 90%;
    margin: 2px auto;
    opacity: 40%;
    border: 0.01px solid white;

}

.copy-right-text {
    font-size: 16px;
}

.copy-right-text a {
    color: white;
}


/* ------------------------------------------- */


/* ------------------------------------------- */
.mb-blog {
    margin-bottom: 20px;
}

.card-container {
    background-color: #fff;
    border-radius: 8px;
    margin: auto;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    /* height: 100%; */
}

.card-image img {
    height: 20  0px;
    width: 100%;
    border-radius: 8px 8px 0 0;
    background-size: cover;
}

.card-body {
    display: flex;
    flex-direction: column;
    align-items: start;
    padding: 16px;
    min-height: 220px;
}

.card-badge {
    text-transform: uppercase;
    background-color: #fff;
    color: #fff;
    padding: 2px 8px;
    border-radius: 70px;
    margin: 0;
    font-size: 12px;
}

.card-badge-blue {
    background-color: #92d4e4;
}

.card-badge-purple {
    background-color: #3d1d94;
}

.card-badge-pink {
    background-color: #c62bcb;
}

.card-body h3{
    font-size: 18px;
    font-weight: 500;
    margin:6px 0 0 0;
}

.card-body p {
    font-size: 16px;
    margin: 8px 0 16px 0;
}

.card-author {
    display: flex;
    align-items: center;
}

.card-author p {
    margin: 0px 0px 0px 0px;
    font-size: 17px;
    font-weight: 500;
}

.card-author p:last-child {
    color: #888;
    font-size: 16px;
    font-weight: 500;
}

.card-author img {
    border-radius: 50%;
    height: 48px;
    width: 48px;
    margin-top: auto;
}

@media screen and (max-width: 1000px) {
    .container {
        grid-template-columns: 1fr;
    }
}

/* ------------------------------------------- */

/* ------------------------------------------- */
body {
    overflow-x: hidden;
}

[data-aos] {
    overflow-x: hidden;
}

[data-aos="fade-right"],
[data-aos="fade-left"] {
    transform: translate3d(0, 0, 0);
}

/* ------------------------------------------- */
.mb-service {
    margin-bottom: 45px;
}

.service {
    text-align: center;
}

figure {
    margin: 0.1em;
    /* width: 340px;
            height: 240px; */
    background: #3085a3;
    display: inline-block;
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* Common style */
figure img {
    position: relative;
    display: block;
    opacity: 0.8;
    height: 240px;

    @media(max-width: 1260px) {
        height: 270px;
    }
}

figure figcaption {
    color: #fff;
    font-size: 1.25em;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

figcaption h3 {
    text-transform: uppercase;
    word-spacing: -0.15em;
    font-weight: 300;
    margin: 1em;
}

figure figcaption::before,
figure figcaption::after {
    pointer-events: none;
}

figure figcaption,
figure figcaption>a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

figure figcaption>a {
    z-index: 1000;
    text-indent: 200%;
    white-space: nowrap;
    font-size: 0;
    opacity: 0;
}

figure h3 {
    word-spacing: -0.15em;
    font-weight: 300;
    margin: 1em;
}

figure h3 span {
    font-weight: 700;
}

figure.effect-steve {
    z-index: auto;
    background: #000;
}

figure.effect-steve:before {
    box-shadow: 0 3px 30px rgba(0, 0, 0, 0.8);
    opacity: 0;
}

figure.effect-steve figcaption {
    z-index: 1;
}

figure.effect-steve img {
    opacity: 1;
    -webkit-transition: -webkit-transform 0.35s;
    transition: transform 0.35s;
    -webkit-transform: perspective(1000px) translate3d(0, 0, 0);
    transform: perspective(1000px) translate3d(0, 0, 0);
    width:100%;
    height:300px;
}

figure.effect-steve h3,
figure.effect-steve p {
    background: #f1f1f1;
    color: #2d434e;
}

figure.effect-steve h3 {
    position: absolute;
    padding: 0.25em;
    bottom: 30px;
    width: 100%;
    font-weight: 500;
    font-size:18px;
    word-spacing: 1px;
}

figure.effect-steve p {
    margin-top: 1em;
    padding: 0.5em;
    font-weight: 600;
    opacity: 0;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
}

figure.effect-steve:hover:before {
    opacity: 1;
}

figure.effect-steve:hover img {
    -webkit-transform: perspective(1000px) translate3d(0, 0, 21px);
    transform: perspective(1000px) translate3d(0, 0, 21px);
}

figure.effect-steve:hover h3:before {
    opacity: 0;
}

figure.effect-steve:hover p {
    opacity: 1;
}

figure,
figcaption,
img {
    z-index: 0;
}

figure figcaption h3 {
    font-size: 24px;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
}

figcaption p {
    font-size: 16px;
    font-weight: 200;
    position: absolute;
    bottom: 0;
    margin: 0;
    height: 25%;
}

figure:hover h3 {
    background: #f1f1f1;
    transition: transform 0.35s;
    transform: translateY(-2.5em);
}

h1.slogan {
    text-align: center;
    background-color: #2d434e;
    font-weight: 100;
    margin: 0;
    padding: 20px;
}

/* --------------------------------------------------------------- */

.steps {
    /* background: #f5f5dc; */
    padding: 6px 20px;
    border-radius: 6px;
    height: 100%;
    display: flex;
}

.steps span {
    font-size: 28px;
    background-color: #e9e9d0;
    padding: 12px 15px;
    border-radius: 50%;
    margin-right: 15px;
}

.steps h3 {
    font-size: 20px;
    margin-bottom: 3px;
}

.steps p {
    font-size: 18px;
}

/* ----------------------------------- */

.credit {
    text-align: center;
    font-size: 20px;
    font-weight: 400;
}

.credit a {
    font-weight: 900;
    color: #000000;
    text-decoration: underline;
}

img {
    /* width: 100%; */
    height: auto;
}

/********** Effect #1 CSS *********/
.effect-1 {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
}

.effect-1 .effect-img {
    font-size: 0;
}

.effect-1 .effect-img img {
    width: 100%;

}

.effect-1 .effect-text {
    position: absolute;
    padding: 25px 10px 25px 10px;
    /* top: calc(100% - 55px); */
    left: 0;
    bottom: 0;
    text-align: center;
    /*  background: rgba(0, 0, 0, .5);
    transition: .5s; */
}

/*
.effect-1:hover .effect-text {
    top: 120px;
}*/

.effect-1 .effect-text h3 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 10px;
    transition: .5s;
}

.effect-1 .effect-text p {
    color: #ffffff;
    font-size: 17px;
    line-height: 20px;
    margin: 0;
}

.effect-text img {
    width: 90px;
    margin-bottom: 10px;
    margin-top: 10px;
}

.just-text {
    text-align: justify;
}

/* ---------------------------------------------- */
.counter {
    color: white;
    text-align: center;
}

.counter h3 {
    font-size: 65px;
}

.counter p {
    font-size: 20px;
    font-weight: 500;
}

/* ---------------------------------------------- */