@font-face {
    font-family: "GT Walsheim Pro"; /* Name your font family */

    src: url("../fonts/gt-walsheim-pro/GTWalsheimPro-Regular.woff2")
            format("woff2"),
        url("../fonts/gt-walsheim-pro/GTWalsheimPro-Regular.woff")
            format("woff"); /* Adjust file names and paths as needed */
}

@font-face {
    font-family: "GT Walsheim Con"; /* Name your font family */

    src: url("../fonts/gt-walsheim-pro/GTWalsheimPro-CondensedRegular.woff2")
            format("woff2"),
        url("../fonts/gt-walsheim-pro/GTWalsheimPro-Regular.woff")
            format("woff"); /* Adjust file names and paths as needed */
}

@font-face {
    font-family: "GT Walsheim Bold"; /* Name your font family */

    src: url("../fonts/gt-walsheim-pro/GTWalsheimPro-Black.woff2")
            format("woff2"),
        url("../fonts/gt-walsheim-pro/GTWalsheimPro-Black.woff") format("woff"); /* Adjust file names and paths as needed */
}
@font-face {
    font-family: "GT Walsheim Black"; /* Name your font family */

    src: url("../fonts/gt-walsheim-pro/GTWalsheimPro-Bold.woff2")
            format("woff2"),
        url("../fonts/gt-walsheim-pro/GTWalsheimPro-Regular.woff")
            format("woff"); /* Adjust file names and paths as needed */
}
@font-face {
    font-family: "GT Walsheim ConB"; /* Name your font family */

    src: url("../fonts/gt-walsheim-pro/GTWalsheimPro-CondensedBold.woff2")
            format("woff2"),
        url("../fonts/gt-walsheim-pro/GTWalsheimPro-CondensedBold.woff")
            format("woff"); /* Adjust file names and paths as needed */
}

@font-face {
    font-family: "GT Walsheim ProCBO"; /* Name your font family */

    src: url("../fonts/gt-walsheim-pro/GTWalsheimPro-CondensedBlackOblique.woff2")
            format("woff2"),
        url("../fonts/gt-walsheim-pro/GTWalsheimPro-CondensedBlackOblique.woff")
            format("woff"); /* Adjust file names and paths as needed */
}
@font-face {
    font-family: "GT Walsheim ProCUB"; /* Name your font family */

    src: url("../fonts/gt-walsheim-pro/GTWalsheimPro-CondensedUltraBold.woff2")
            format("woff2"),
        url("../fonts/gt-walsheim-pro/GTWalsheimPro-CondensedUltraBold.woff")
            format("woff"); /* Adjust file names and paths as needed */
}
@font-face {
    font-family: "GT Walsheim ProCB"; /* Name your font family */

    src: url("../fonts/gt-walsheim-pro/GTWalsheimPro-CondensedBlack.woff2")
            format("woff2"),
        url("../fonts/gt-walsheim-pro/GTWalsheimPro-CondensedBlack.woff")
            format("woff"); /* Adjust file names and paths as needed */
}

@font-face {
    font-family: "IvyOra Text"; /* Name your font family */

    src: url("../fonts/ivyora-text/IvyOraText-RegularItalic.woff2")
            format("woff2"),
        url("../fonts/ivyora-text/IvyOraText-RegularItalic.woff") format("woff"); /* Adjust file names and paths as needed */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    /* background-color: #4D787B; */
    font-family: "GT Walsheim Con";
    /* color: white; */
}

/* Navbar Styling */
.navbar {
    background-color: #4d787b;
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    z-index: 99;
}

.navbar-brand {
    font-weight: bold;
    color: white;
    font-size: 1.5rem;
}

.navbar-brand img {
    height: auto;
    width: 62px;
    padding-right: 2px;
}

.nav-link {
    color: white !important;
    margin-right: 20px;
    font-size: 0.95rem;
}

.subscribe-btn {
    background-color: transparent;
    border: 1px solid white;
    color: white;
    border-radius: 8px;
    padding: 5px 15px;
    font-size: 0.9rem;
}

.subscribe-btn:hover {
    background-color: white;
    color: #4d787b;
}

.social-icons i {
    font-size: 1rem;
    color: white;
    margin-left: 12px;
}

.whole-resource {
    background: linear-gradient(#e4e7dcc9, #e4e7dcc9),
        url("../images/resource-bg.png");
}

/* Blog Section Styling */
.blog-sec {
    background-color: #4d787b;
    padding-top: 5rem;
}
.blog-sec .container {
    padding: 80px 100px;
}

.blog-sec .blog-title {
    font-size: 40px;
    font-weight: 700;
    color: #b7d3d3;
}

.blog-sec .blog-date {
    font-size: 16px;
    color: #ddeeee;
    margin-bottom: 10px;
    font-weight: 400;
}

.blog-sec .blog-description {
    font-size: 16px;
    color: #ddeeee;
    max-width: 450px;
    font-weight: 400;
}

.blog-sec .btn-custom {
    background-color: white;
    color: #003638;
    font-weight: 500;
    border-radius: 5px;
    padding: 9px 55px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.blog-sec .btn-custom:hover {
    background-color: #e0e0e0;
}

.blog-sec .image-container {
    overflow: hidden;
    max-width: 739px;
    max-height: 532px;
    margin: auto;
}

.blog-sec .image-container img {
    width: 100%;
    height: 100%;
}
.blog-sec .mob {
    display: none;
}

@media screen and (max-width: 580px) {
    .navbar {
        background-color: #4d787b;
        padding: 1rem 0.5rem;
        position: fixed;
        width: 100%;
        z-index: 99;
    }
    .blog-sec .mob {
        display: block;
        text-align: left !important;
        margin-bottom: 2.5rem;
    }
    .blog-sec .container {
        padding: 80px 20px;
    }
    .blog-sec .image-container {
        overflow: hidden;
        width: 100%;
        height: auto;
        margin: 0 auto;
    }
    .blog-sec .image-container img {
        width: 100%;
        height: 100%;
        margin-left: auto;
        margin-right: auto;
        object-fit: cover;
        object-position: center !important;
    }
}

/* MIND BEHIND INSIGHT */
.mind-behind-insight .section-title {
    padding: 40px 0 20px 0;
    font-weight: 500;
    font-size: 14px;
    color: #1b3a2b;
}

.mind-behind-insight .team-card {
    /* background-color: #224a58;  */
    background-image: url("../images/blue-gb.png");
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    height: 370px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mind-behind-insight .team-card.mid {
    /* background-color: #224a58;  */
    background-image: url("../images/gold-bg.png");
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    height: 370px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mind-behind-insight .team-card img {
    width: 375px;
    height: 100%;
    object-fit: cover;
}
.mind-behind-insight .team-card.first img,
.mind-behind-insight .team-card.mid img {
    object-position: 0px -45px !important;
}

.mind-behind-insight .team-name {
    position: absolute;
    top: 15px;
    left: 15px;
    color: white;
    font-weight: bold;
    font-size: 16px;
    z-index: 10;
    text-shadow: 1px 1px 3px #000;
    letter-spacing: 1px;
}

.mind-behind-insight .carousel-container {
    overflow: hidden;
    position: relative;
}

.mind-behind-insight .carousel-inner-custom {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.mind-behind-insight .carousel-item-custom {
    flex: 0 0 100%;
}

.mind-behind-insight .arrow-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.mind-behind-insight .arrow-btn {
    width: 45px;
    height: 45px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 20px;
    background-color: white;
    cursor: pointer;
}

@media (min-width: 768px) {
    .mind-behind-insight .carousel-desktop {
        display: flex !important;
    }

    .mind-behind-insight .carousel-mobile {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .mind-behind-insight .carousel-desktop {
        display: none !important;
    }

    .mind-behind-insight .carousel-mobile {
        display: block !important;
    }
}

/* BLOG SECTION */
.blog .blog-section {
    padding: 60px 0;
}

.blog .row2 {
    display: -ms-flexbox; /* IE10 */
    display: flex;
    -ms-flex-wrap: wrap; /* IE10 */
    flex-wrap: wrap;
    padding: 0 4px;
}
.blog .column {
    -ms-flex: 50%; /* IE10 */
    flex: 50%;
    max-width: 50%;
    padding: 0 20px;
}
/* .blog .column .blog-card {

} */

.blog .blog-title {
    font-size: 18px;
    color: #0d4036;
    font-weight: 400;
}

.blog .blog-subtitle {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 40px;
    max-width: 400px;
    color: #0d4036;
}

.blog .blog-card {
    color: #1b3a2b;
    padding: 145px 40px 50px 40px;
    margin-bottom: 30px;
    margin-top: 8px;
    vertical-align: middle;
    width: 100%;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.blog .blog-card .date {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
}

.blog .blog-card .heading {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.blog .blog-card .content {
    font-size: 15px;
    margin-bottom: 20px;
}

.blog .blog-card .read-more-btn {
    background-color: #fff;
    /* border: 1px solid #0d4036; */
    padding: 10px 50px;
    color: #0d4036;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: 0.3s ease;
    text-decoration: none;
}

.blog .blog-card .read-more-btn:hover {
    background-color: #1b3a2b;
    color: #fff;
}
.blog .btn-archive {
    background-color: #0d4036;
    color: #fff;
    padding: 10px 50px;
    border-radius: 0 !important;
}

/* Color Variants with Distorted Corners */
.blog .blog-blue {
    background-color: #c7d6d2;
    border-top-left-radius: 220px;
}

.blog .blog-green {
    background-color: #89997d;
    border-top-left-radius: 220px;
}

.blog .blog-pink {
    background-color: #e6c2c0;
    border-top-right-radius: 220px;
}

.blog .blog-yellow {
    background-color: #cbcc6d;
    border-top-left-radius: 220px;
}

.blog .blog-gray {
    background-color: #cbd4d0;
    border-top-left-radius: 30px;
    border-bottom-right-radius: 80px;
}

@media (min-width: 768px) {
    .blog .blog-card {
        height: auto;
    }
}
@media screen and (max-width: 600px) {
    .blog .column {
        -ms-flex: 100%;
        flex: 100%;
        max-width: 100%;
    }
    .blog .blog-card {
        color: #1b3a2b;
        padding: 70px 20px 50px 20px;
        margin-bottom: 30px;
        margin-top: 8px;
        vertical-align: middle;
        width: 100%;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    }
    /* Color Variants with Distorted Corners */
    .blog .blog-blue {
        background-color: #c7d6d2;
        border-top-left-radius: 70px;
    }

    .blog .blog-green {
        background-color: #89997d;
        border-top-left-radius: 70px;
    }

    .blog .blog-pink {
        background-color: #e6c2c0;
        border-top-right-radius: 70px;
    }

    .blog .blog-yellow {
        background-color: #cbcc6d;
        border-top-left-radius: 70px;
    }

    /* .blog .blog-gray {
        background-color: #cbd4d0;
        border-top-left-radius: 30px;
        border-bottom-right-radius: 80px;
    } */
}

/* VIEW RESOURCE PAGE */
.whole-view-resource {
    /* background-color: #e6e7dc; */
    background: linear-gradient(#ecedea91, #ecedea91),
        url("../images/resource-bg.png");
    padding-top: 4rem;
}
.whole-view-resource .whole-header {
    position: relative;
}
.resourse-details-content {
    background-color: #e4e7dca1;
}
.whole-view-resource .side-image {
    position: absolute;
    top: 6rem;
    right: 0;
}
.resourse-details-header .header {
    /* background-color: #fff; */
    padding: 60px 20px 30px;
    /* text-align: center; */
    position: relative;
}
.resourse-details-header .header span {
    font-size: 24;
    font-weight: 400;
    color: #0d4036;
}
.resourse-details-header .section-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #0d4036;
    font-family: "ProCB";
    font-style: normal;
    max-width: 80%;
}

.resourse-details-header .section-subtitle {
    font-size: 18px;
    max-width: 700px;
    /* margin: 0 auto; */
    color: #0d4036;
}

.whole-view-resource .dotted-divider {
    /* border-top: 2px dotted #0D4036; */
    border-top: 3px dashed transparent;
    border-image: repeating-linear-gradient(
        to right,
        #0d40368f 0 10px,
        transparent 10px 20px
    );
    border-image-slice: 1;
    margin: 20px auto 40px;
    width: 100%;
}

.resourse-details-content .date-author {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 14px;
    color: #0d4036;
}

.resourse-details-content .article-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #0d4036;
}

.resourse-details-content .content {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    width: 93%;
    color: #0d4036;
}

/* .resourse-details-content .content blockquote {
    font-style: italic;
    padding-left: 15px;
    border-left: 3px solid #1b3a2b;
    margin: 15px 0;
    color: #2c4a2f;
} */

.resourse-details-content .cta-button {
    margin-top: 30px;
    padding: 10px 25px;
    font-weight: 600;
    font-size: 14px;
    border: 2px solid #1b3a2b;
    background-color: #1b3a2b;
    color: #fff;
    transition: 0.3s ease;
    border-radius: 0px;
    text-decoration: none;
    display: inline-block;
    letter-spacing: 1px;
}

.resourse-details-content .cta-button:hover {
    background-color: #fff;
    color: #1b3a2b;
}

.resourse-details-content .article-img {
    border-radius: 10px;
    max-width: 100%;
    width: auto;
    height: 609px;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .resourse-details-header .section-title {
        font-size: 36px;
    }

    .resourse-details-content .article-title {
        font-size: 20px;
    }
    .whole-view-resource .side-image {
        display: none;
    }
    .resourse-details-content .content p {
        width: 100%;
    }
    .resourse-details-header .section-title {
        font-size: 30px;
        font-weight: 800;
        margin-bottom: 10px;
        color: #0d4036;
        font-family: "ProCB";
        font-style: normal;
        max-width: 100%;
    }
    .resourse-details-header .header {
        /* background-color: #fff; */
        padding: 40px 0px;
        /* text-align: center; */
        position: relative;
    }
}

/* ARCHIVE PAGE */
.archive {
    background: linear-gradient(#ecedea91, #ecedea91),
        url("../images/resource-bg.png");
}
.archive .archive-header {
    padding-top: 7rem;
    padding-bottom: 4rem;
}
.archive .archive-header h1 {
    font-size: 80px;
    font-weight: 800;
    vertical-align: middle;
    text-transform: capitalize;
    color: #0d4036;
    font-family: "GT Walsheim ProCB";
    line-height: 6rem;
}
.archive .archive-header h1 span {
    color: #52ccb4;
}
.archive .archive-header img {
    max-width: 100%;
    height: auto;
}
.archive .archive-header .search {
    margin-top: 2rem;
}
.archive .archive-header .search.mobile {
    display: none;
}
.archive .archive-header .search .search-bar {
    position: relative;
    display: flex;
    gap: 10px;
}
.archive .archive-header .search .search-bar input {
    padding: 18px 21px;
    width: 90%;
    border-radius: 5px;
    gap: 10px;
    height: 50px;
    border: 2px solid #0000004d;
}
@media screen and (max-width: 600px) {
    .archive .archive-header h1 {
        font-size: 60px;
        line-height: 4.5rem;
    }
    .archive .archive-header .search .search-bar input {
        width: 100%;
        margin-bottom: 3rem;
    }
    .archive .archive-header .search.mobile {
        display: block;
    }
    .archive .archive-header .search.desktop {
        display: none;
    }
}
.archive .archive-header .search .search-bar input::placeholder {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: capitalize;
    color: #0d403666;
}
.archive .archive-header .search .search-bar button {
    padding: 10px;
    gap: 10px;
    border-radius: 5px;
    width: 154px;
    height: 50px;
    background-color: #0d4036;
    color: #fff;
    border: none;
}

/* ARCHIVE CARD SECTION */
.archive-card {
    background: linear-gradient(#e8b057ea, #e8b057ea),
        url("../images/archive-bg.png");
    padding-top: 3rem;
    padding-bottom: 3rem;
}
.archive-card .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 3rem;
    /* padding: 40px 50px; */
}
.archive-card a {
    transition: 500ms;
}
.archive-card a:hover {
    transform: scale(1.05);
}
.archive-card .box {
    position: relative;
    width: 350px;
    height: 350px;
    background-size: cover;
    background-position: center;
    color: #fff;
    overflow: hidden;
    border-radius: 5px;
    /* box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); */
}

.archive-card .overlay-number {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 70px;
    font-weight: bold;
    opacity: 0.5;
}

.archive-card .text-wrapper {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    color: #0d4036;
    padding: 10px;
}

.archive-card .title {
    font-size: 15px;
    font-weight: bold;
    margin: 0 0 4px;
}

.archive-card .description {
    font-size: 13px;
    margin: 0;
    width: 240px;
    line-height: 15px;
}

.archive-card .dark-text {
    color: #0d4036 !important;
    margin-left: 3rem;
}
.archive-card .container.btn-cd {
    display: block !important;
    flex-wrap: nowrap !important;
    justify-content: none;
    gap: 0;
    margin-top: 2rem !important;
    /* padding: 40px 50px; */
}
.archive-card .btn-cd {
    text-align: right;
    padding-top: 0px !important;
    padding: 30px;
}
.archive-card .btn-cd .btn {
    background-color: #0d4036;
    color: #fff;
    font-size: 16px;
    padding: 10px 40px;
}

.archive-card .overlay-light {
    color: #fff;
}

.archive-card .overlay-dark {
    color: #0d4036;
}

/* ARCHIVE LIST */
.archive-list {
    padding-top: 9rem;
    padding-bottom: 4rem;
}
.archive-list .archive-link {
    z-index: 50;
    overflow: hidden;
    text-decoration: none;
    transition: 500ms;
}
/* .archive-list .archive-link:hover .archive-list .blog-title {
    text-decoration: underline;
} */
.archive-list .blog-card {
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.137);
    border-radius: 10px;
    overflow: hidden;
    padding: 20px;
    transition: 500ms;
    max-height: 350px;
}
.archive-list .blog-card:hover {
    transform: scale(1.05) !important;
    box-shadow: 0 5px 15px #0d4036b7;
}

.archive-list .blog-text {
    flex: 1;
    padding: 30px;
}

.archive-list .blog-category {
    font-size: 13px;
    color: #0d4036;
    margin-bottom: 15px;
    text-transform: capitalize;
}

.archive-list .blog-title {
    font-size: 46px;
    /* display: inline; */
    font-weight: bolder;
    color: #013220;
    margin: 0 0 10px;
    font-family: "ProCB";
    font-style: normal;
    line-height: 3rem;
}
/* .archive-list .blog-title a{
    color: #013220;
} */
/* .archive-list .blog-title a:hover {
    color: #013220c7;
    text-decoration: underline;
} */

.archive-list .blog-subtitle {
    font-size: 14px;
    color: #0d4036;
    margin-bottom: 20px;
    line-height: 1.5;
}

.archive-list .blog-meta {
    font-size: 14px;
    font-weight: bold;
    color: #0d4036;
}

.archive-list .blog-image {
    width: 386px;
    height: auto;
    background-size: cover;
    background-position: center;
    clip-path: ellipse(100% 110% at 100% 100%);
}

.archive-list .cta-button {
    text-align: center;
    margin-top: 90px;
}

.archive-list .cta-button a {
    padding: 10px 20px;
    background: #013220;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .archive-list .blog-card {
        flex-direction: column;
        padding: 5px;
    }
    .archive-list .blog-text {
        flex: 1;
        padding: 10px;
    }
    .archive-list .blog-title {
        font-size: 20px;
        line-height: 20px;
    }
    .archive-list .blog-meta {
        font-size: 13px;
        font-weight: bold;
        color: #0d4036;
    }
    .archive-list .blog-image {
        display: none;
    }
}

/* FOOTER */
/* FOOTER */
@media screen and (max-width: 580px) {
    .footer {
        background-color: #0d4036;
        color: white;
        padding: 60px 20px 30px;
        font-family: "GT Walsheim Con";
    }

    .footer .logo-text {
        font-size: 16px;
        font-weight: 400;
        letter-spacing: 0.5px;
    }
    .footer .desk {
        display: none;
    }
    .footer .footer-quick-links {
        display: block;
    }
    .footer .strategy {
        display: none;
    }
    .footer .second-icon {
        display: block;
    }
    .footer .first-icon {
        display: none;
    }
    .footer .footer-links p {
        font-weight: 400;
        font-size: 19px;
        font-family: "GT Walsheim Con";
    }

    .footer .footer-links a {
        display: block;
        text-decoration: none;
        color: #fff;
        margin: 4px 0;
        font-size: 15px;
        letter-spacing: 0.5px;
    }

    .footer .social-icons a {
        color: #d4f437;
        font-size: 20px;
        margin-right: 15px;
    }

    .footer .subscribe p {
        font-size: 18px;
        font-weight: 400;
        letter-spacing: 0.5px;
    }
    .footer .subscribe input {
        border: 2px solid #fff;
        background-color: #fff;
        color: white;
        border-radius: 6px;
    }
    .footer img {
        width: 90px;
    }
    .footer .subscribe input::placeholder {
        color: #ccc;
    }
    .footer .subscribe_desktop {
        display: none;
    }
    .footer .subscribe_mobile {
        display: block;
        /* width: 60%; */
        /* position: absolute;
        margin-top: 14rem; */
    }
    .footer .subscribe_mobile input {
        position: absolute;
        width: 55%;
        padding: 15px 20px;
    }
    .footer .subscribe_mobile input::placeholder {
        /* padding: 0px 10px; */
        color: #333333;
    }
    .footer .subscribe_mobile button {
        position: relative;
        justify-content: end;
        float: right;
        bottom: 15px;
        right: 100px;
        /* padding: 50px 0px; */
        height: 58px;
    }
    .footer .subscribe button {
        margin-top: 15px;
        background-color: #cced60;
        color: black;
        font-weight: 600;
        border: none;
        padding: 10px 25px;
        border-radius: 6px;
    }

    .footer-bottom_mobile {
        text-align: right;
        font-size: 16px;
        font-weight: 400;
        padding-top: 30px;
        color: #ccc;
    }
    .footer-bottom_desktop {
        display: none;
    }
    .footer-bottom a {
        color: #ccc;
        margin: 0 5px;
        text-decoration: underline;
    }
}
@media screen and (min-width: 580px) {
    .footer {
        background-color: #0d4036;
        color: white;
        padding: 30px 80px;
        font-family: "GT Walsheim Con";
    }
    .footer img {
        width: 90px;
    }
    .footer .logo-text {
        font-size: 16px;
        font-weight: 400;
    }

    .footer .footer-links p {
        font-weight: 400;
        font-size: 20px;
    }
    .footer .footer-quick-links {
        display: none;
    }
    .footer .subscribe_mobile {
        display: none;
    }
    .footer .first-icon {
        display: none;
    }
    .footer .footer-bottom_mobile {
        display: none;
    }
    .footer .footer-links a {
        display: block;
        text-decoration: none;
        color: #fff;
        margin: 4px 0;
        font-size: 16px;
        font-weight: 400 !important;
        letter-spacing: 0.5px;
    }

    .footer .social-icons a {
        color: #d4f437;
        font-size: 20px;
        margin-right: 8px;
    }

    .footer .subscribe p {
        font-size: 24px;
        font-weight: 300;
        letter-spacing: 0.5px;
    }
    .footer .subscribe input {
        border: 2px solid #cced6099;
        background-color: transparent;
        color: white;
        border-radius: 6px;
        height: 61px;
    }

    .footer .subscribe input::placeholder {
        color: #ccc;
    }

    .footer .subscribe button {
        margin-top: 15px;
        background-color: #cced60;
        color: black;
        font-weight: 600;
        border: none;
        padding: 10px 25px;
        border-radius: 6px;
        font-size: 16px;
        color: #0d4036;
    }

    .footer-bottom {
        text-align: right;
        font-size: 16px;
        font-weight: 400;
        padding-top: 30px;
        color: #ccc;
        font-family: "Georgia";
        padding-right: 20px;
        letter-spacing: 8%;
    }

    .footer-bottom a {
        color: #ccc;
        margin: 0 5px;
        text-decoration: none;
    }
}
