/* =========================
   ===== Global styles ===== 
   ========================= */

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

:root {
    --green: #6fb970;
    --blue: #38B086;
    --light-gray: rgba(0, 0, 0, 0.6);
    --B100: rgba(29, 44, 29, 1);
    --B75: rgba(29, 44, 29, 0.75);
    --B50: rgba(29, 44, 29, 0.5);
    --B25: rgba(29, 44, 29, 0.25);
    --B10: rgba(29, 44, 29, 0.1);
    --B5: rgba(29, 44, 29, 0.05);
    --W100: rgba(255, 255, 255, 1);
    --W75: rgba(255, 255, 255, 0.75);
    --W50: rgba(255, 255, 255, 0.5);
    --W25: rgba(255, 255, 255, 0.25);
    --W10: rgba(255, 255, 255, 0.10);
    --W5: rgba(255, 255, 255, 0.05);
} 

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    background: #fff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

/* =========================
   ========= Navbar ======== 
   ========================= */

.nav-bar {
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0px 1px 2px var(--light-gray);
}

.nav-bar .announcement {
    margin-top: 0;
    background: var(--green);
    width: 100%;
    padding: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-bar .announcement a{
    color: var(--W100);
    font-weight: 600;
}

.nav-bar .wrapper {
    padding: 20px;
}

.nav-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-bar .main-menu .links {
    display: flex;
}

.nav-bar .main-menu .links > li > a {
    padding: 10px 15px;
    display: block;
    color: var(--light-gray);
    font-weight: 600;
    transition: 0.5s;
}

.nav-bar .main-menu .links > li > a:hover {
    color: var(--green);
}

.nav-bar .main-menu .links > li:last-child > a{
    color: #fff;
    margin-left: 10px;
}
.nav-bar .main-menu .links > li:last-child > a:hover{
    color: #fff;
} 

.logo {
    width: 160px;
}

.logo img {
    width: 100%;
}


.dropdown{
    position: relative;
    padding: 10px 15px;
    cursor: pointer;
    display: block;
    color: var(--light-gray);
    font-weight: 600;
    transition: 0.5s;
}

.dropdown .dropdown-menu {
    display: none;
    position: absolute;
    width: 150px;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    top: 40px;
    padding: 10px;
    border-radius: 10px;
    background-color: #eee;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.dropdown:hover .dropdown-menu{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.dropdown .dropdown-menu.active{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.dropdown-menu .dropdown-item{
    text-align: center;
    width: 100%;
    padding: 5px 5px;
    border-radius: 5px;
}

.dropdown-menu .dropdown-item > a{
    color: var(--light-gray);
    font-weight: 600;
}

.dropdown-menu .dropdown-item a:hover{
    color: var(--green);
}

/* =========================
   ===== Navbar Mobile ===== 
   ========================= */

.hamburger-closed {
    display: none;
    border: none;
    background: none;
    cursor: pointer;
    padding: 10px;
    transition: all 0.25s;
    position: relative;
}
  
.hamburger-closed .hamburger-top,
.hamburger-closed .hamburger-middle,
.hamburger-closed .hamburger-bottom {
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--light-gray);
}

.hamburger-closed .hamburger-middle {
    transform: translateY(8px);
}
  
.hamburger-closed .hamburger-bottom {
    transform: translateY(16px);
}

.hamburger-opened {
    display: none;
    border: none;
    background: none;
    cursor: pointer;
    padding: 10px;
    transform: rotate(90deg);
    transform: translateY(0px);
    position: relative;
}

.hamburger-opened span {
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 2px;
}
    
.hamburger-opened .hamburger-top {
    background: #fff;
    transform: rotate(45deg) translateY(6px) translate(6px);
}
  
.hamburger-opened .hamburger-bottom {
    transform: translateY(16px);
    background: #fff;
    transform: rotate(-45deg) translateY(6px) translate(-6px);
}

.mobile-panel {
    display: none;
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: var(--green);
    z-index: 2;
    transition: all 1s;
}

.mobile-panel.active {
    position: fixed;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--green);
    z-index: 1000;
}

.mobile-panel .container{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    gap: 50px;
    align-items: center;
    padding: 20px 35px;
}

.mobile-panel .mobilogo {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-panel .mobilogo .logo {
    display: flex;
    justify-content: start;
    align-items: center;
}

.mobile-panel .mobile-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mobile-panel .mobile-menu ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mobile-panel .mobile-menu ul li a {
    padding: 10px 15px;
    display: block;
    font-weight: 600;
    transition: 0.5s;
    color: #fff;
}

.mobile-panel .mobile-menu ul li:last-child a{
    margin-top: 10px;
    color: var(--green);
}

.back-to-top {
    position: fixed;
    visibility: hidden;
    right: 20px;
    bottom: 20px;
    background-color: var(--blue);
    width: 50px;
    height: 50px;
    z-index: 3;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 30px;
    color: #fff;
}

.back-to-top:hover {
    background: var(--green);
    color: #fff;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.3);
}

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

/* =========================
   ===== Hero Carousel ===== 
   ========================= */

.hero {
    position: relative;
    height: 90vh;
    width: 100%;
    margin-top: 100px;
    z-index: -1;
}

.swiper {
    background-color: var(--green);
    width: 100%;
    height: 100%;
} 

.swiper .swiper-wrapper{
    width: 100%;
    height: 100%;
} 

.swiper .swiper-wrapper .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: inline-block;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%; 
    height: 100%; 
    overflow: hidden;
}

.swiper-slide img {
    /* position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    height: auto;
    float: left;  */
    width: 100%;
    height: 100%;
    object-fit: cover;
} 
.swiper-pagination > span{
    background: var(--green);
}

.fixed-content {
    position: absolute;
    /* background: var(--light-gray); */
    border-radius: 5px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 99; 
    color: white;
}

.fixed-content .container{ 
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}

.fixed-content .text-xxl{
    line-height: 40px;
}

/* ==========================
   ======= Activities ======= 
   ========================== */

.activities {
    padding: 40px 0;
    background-color: var(--B5);

}

.activities .container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.activities h4,
.activities p {
    /* color: var(--light-gray); */
    color: var(--B75);
    text-align: center;
}

.activities .activity-items {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
}

.activities .activity-items .activity{
    width: 33%;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.activities i{
    padding: 20px;
    font-size: 5rem;
    color: var(--green);
}

.activities .container{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

/* ==========================
   ======= Page Header ======= 
   ========================== */

.page-header {
    margin-top: 102px;
    padding: 5px;
}

.page-header .container{
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-header p {
    text-align: center;
}

/* ==========================
   ======= Innovation ======= 
   ========================== */

.summary-text {
    text-align: center;
    padding: 30px 0;
}

.innovation {
    padding: 40px 0;
    background-image: url("background.jpg");
    background-attachment: fixed; 
    background-repeat: no-repeat;
}

.innovation p{
    color: var(--B75); 
}
.innovation .container{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    justify-content: space-between;
    padding: 30px;
}

.innovation .container > div {
    padding: 30px 0;
    border-radius: 20px;
    text-align: end;
}

.innovation .container img{
    width: 100%;
}


/* ===========================
   ======= Contact CTA ======= 
   =========================== */

.contact-cta {
    padding: 50px 0;
    background: var(--blue);
}

.contact-cta .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.contact-cta .container p{
   color: var(--W100);
   
}

/* ========================
   ======= About Us ======= 
   ======================== */

.about-us {
    padding: 40px 0;
    background: var(--B5);
}
.about-us i{
    text-align: center;
    font-size: 5rem;
    color: var(--green);
}

.about-us .container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
}

.about-us .container .our-vision{
    display: flex;
    align-items: start;
    justify-content: space-around;
    gap: 20px;
}

.about-us .container .core-value{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.about-us .container .core-value .core-values{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.about-us .container .core-value .core-values p{
    width: 40%;
   background: var(--green);
   padding: 20px 40px;
   color: var(--W100);
}

.about-us .container .our-vision > div{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.about-us .container .virtuous-cycle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.about-us .container .virtuous-cycle img{
    width: 60%;
}

.about-us h4,
.about-us p {
    /* color: var(--light-gray); */
    color: var(--B75);
    text-align: center;
}

.methodology {
    background: var(--W100);
}
 
.methodology .container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 0;
    gap: 100px;
}

.methodology .container .images{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.methodology .container p{
    color: var(--B75);
    text-align: end;
}

.core-elements {
    padding: 50px 0;
    background: var(--B5);
}

.core-elements .container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
}


.core-elements h4{
    color: var(--B75);
}

.core-elements .elements{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.core-elements .elements .element{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    width: 30%; 
}

.core-elements .elements .element p{
    text-align: center;
    color: var(--B75);
}

.core-elements .elements .element i {
    text-align: center;
    font-size: 5rem;
    color: var(--green);
}

/* =======================
   ======= Staff =========
   ======================= */

.members{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;   
    color: var(--B75); 
}

.members .member {
    border: 1px solid var(--B10);
    border-radius: 5px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.members .member > div{
    padding: 20px;
    text-align: center;
}

.board-members, .staff-members{
    text-align: center;
    padding: 40px 0;
}

.board-members .container, .staff-members .container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.board-members .container h4, .staff-members .container h4{
    color: var(--B100);
}

.board-members h4, .staff-members h4{
    text-align: center;
}

/* =======================
   ======= Gallery ======= 
   ======================= */

.photo-gallery, .video-gallery {
    margin: 40px 0;
}

.photo-gallery .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;    
}

.video-gallery .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;    
}

.photo-gallery .gallery-item img{
    border-radius: 0.4rem;
}

.closed {
	display: none;
}

.pagination {
    margin: 40px auto;
}

.pagination .pagination-filters {
    padding: 0;
    margin: 0 auto 50px auto;
    list-style: none;
    text-align: center;
}
  
.pagination .pagination-filters li {
    cursor: pointer;
    display: inline-block;
    padding: 8px 20px 10px 20px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--B75);
    transition: all 0.3s;
    border-radius: 4px;
}
  
.pagination .pagination-filters li:hover,
.pagination .pagination-filters li.filter-active {
    color: var(--W100);
    background: var(--green);
}
  

/* =======================
   ======= Reports ======= 
   ======================= */
  
.reports {
    padding: 40px 0;
}

.reports .container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.reports .container .report{
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--B25);
    padding: 20px 0;
    gap: 10px;
}

.reports .container .report h3{
    color: var(--B75);
}

/* =========================
   ======= Projects ========= 
   ========================= */


.project-entry {
    margin: 30px 0;
}

.project-entry .container p{
    color: var(--B75);
}

.projects .container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
}

.projects .project {
    grid-column: 3/11;
    margin: 40px 0;
    border: 1px solid var(--B10);
    border-radius: 10px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.projects .project .project-img{
    max-height: 440px;
    margin: 0px 0px 20px 0px;
    overflow: hidden;
}

.projects .project .project-img img{
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.projects .project .project-summary {
    background-color: var(--W100);
    padding: 0 20px 20px;
}
.projects .project .project-summary p{
    color: var(--B75);
}

.projects .project .project-summary .project-title a{
    color: var(--B75);
    transition: 0.3s;
}

.projects .project .project-summary .project-title a:hover{
    color: var(--green);
} 

.projects .project .project-summary .project-meta {
    margin-bottom: 15px;
    color: var(--B75);
} 

.projects .project .project-summary .project-meta ul{
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    align-items: center;
} 

.projects .project .project-summary .project-meta ul li+li{
    padding-left: 20px;
} 
.projects .project .project-summary .project-meta ul i{
    font-size: 16px;
    margin-right: 8px;
    line-height: 0;
} 

.projects .project .project-summary .view-project {
    -moz-text-align-last: right;
    text-align-last: right;
}
  
.projects .project .project-summary .view-project a {
    display: inline-block;
    background: var(--green);
    color: var(--W100);
    padding: 6px 20px;
    transition: 0.3s;
    font-size: 14px;
    border-radius: 4px;
}
  
.projects .project .project-summary .view-project a:hover {
    background: var(--blue);
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.project blockquote {
    background: var(--B10);
    padding: 20px;
    border-left: 4px solid var(--B100);
    margin: 10px 0;
    text-align: center;
    border-radius: 10px;
}

/* =========================
   ======= Contact ========= 
   ========================= */

.contact {
    margin: 20px auto;
}


.contact .info-wrap {
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
}
  
.contact .info-wrap .row{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
  
.contact .info {
    background: var(--W100);
}
  
  .contact .info i {
    font-size: 20px;
    color: var(--green);
    float: left;
    width: 44px;
    height: 44px;
    border: 1px solid var(--green);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s;
  }
  
  .contact .info h4 {
    text-align: left;
    padding: 0 0 0 60px;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--B75);
  }
  
  .contact .info p {
    padding: 0 0 0 60px;
    margin-bottom: 0;
    font-size: 14px;
    color: var(--light-gray);
  }
  
  .contact .info:hover i {
    background: var(--green);
    color: #fff;
  }
  
  .contact .contact-form {
    width: 100%;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.05);
    padding: 30px;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
.contact .contact-form .form-group {
    padding-bottom: 8px;
}

  .contact .contact-form input,
  .contact .contact-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    border-radius: 4px;
   
  }
  
  .contact-form input:focus,
  .contact-form textarea:focus {
    border-color: var(--green);
  }
  
  .contact-form input {
    padding: 10px 12px;
    height: 44px;
    border: 1px solid var(--green);
  }
  
  .contact-form textarea {
    border: 1px solid var(--green);
    padding: 10px 12px;
    height: 150px;
  }


  .contact-title {
    display: flex;
    justify-content: center;
    color: var(--B75);
  }


  .contact .d-flex {
    margin: 40px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

/* =========================
   ======== Footer ========= 
   ========================= */

.footer {
    padding: 30px 0;
}

.footer h4 {
    margin-bottom: 10px;
}

.footer ul li {
    line-height: 2.5;
}

.footer a{
    color: #fff;
}

.footer i{
    font-size: 1.5rem;
    margin-right: 10px;
    color: #fff;
}
.footer i:hover{
    color: #eee;
}

.footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: start;
    padding: 20px 0;
    border-top: 0.5px solid rgba(255, 255, 255, 0.5);
}

.footer-flex > div{
    width: 40%;
    padding: 20px;
}

.footer-flex .sitemap{
   display: flex;
   flex-direction: column;
   justify-content: start;
   align-items: end;
   text-align: end;
}

.footer .footer-end {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.footer .footer-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    
}

.footer .footer-flex .social-links{
    display: none;
}

/* =========================
   ==== Media classes ==== 
   ========================= */

.media-selection{
    width: 100%;
    display: flex;
    justify-content: center;
}


.media-selection .container{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0;
}

.media-selection .container ul{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.media-selection .container ul li{
    padding: 5px 10px;
    cursor: pointer;  
   	color: var(--B75);
}

.media-selection .container ul .active{
    color: #fff;
    background: var(--green);
    border-radius: 5px;
    padding: 7px 15px;
}

/* =========================
   ==== Utility classes ==== 
   ========================= */

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
}

.container-sm {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
}
/* Card */
.card {
    background: #fff;
    color: #000;
    border-radius: 10px;
    padding: 20px;
}

.img-fluid {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

/* Buttons */

.btn {
    display: inline-block;
    padding: 13px 20px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    text-align: center;
    transition: 0.5s;
}
.btn:hover {
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: var(--green);
    color: #fff;
}

.btn-primary:hover {
    background: var(--blue);
    color: #fff;
}

.btn-secondary {
    background: var(--blue);
    color: #fff;
}

.btn-white {
    background: #fff;
    color: var(--green);
}


.btn-dark {
    background: var(--dark-color);
    color: #fff;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Text classes */
.text-xxl {
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 600;
    margin: 40px 0 20px;
}

.text-xl {
    font-size: 2.2rem;
    line-height: 1.4;
    font-weight: normal;
    margin: 40px 0 20px;
}

.text-lg {
    font-size: 1.8rem;
    line-height: 1.4;
    font-weight: normal;
    margin: 30px 0 20px;
}

.text-md {
    font-size: 1.2rem;
    line-height: 1.4;
    font-weight: normal;
    margin: 20px 0 10px;
}

.text-sm {
    font-size: 0.9rem;
    line-height: 1.4;
    font-weight: normal;
    margin: 10px 0 5px;
}

.text-center {
    text-align: center;
}

/* Background */

.bg-primary {
    background: var(--primary-color);
    color: #fff;
}

.bg-light {
    background: var(--light-color);
    color: #333;
}


.bg-dark {
    background: var(--dark-color);
    color: #fff;
}


.bg-black {
    background: #000;
    color: #fff;
}

.bg-green {
    background: var(--green);
    color: #fff;
}

/* =========================
   ===== Media queries ===== 
   ========================= */

@media (max-width: 960px){
 
    .nav-bar .main-menu {
        display: none;
    }

    .hamburger-closed, .hamburger-opened {
        display: block;
    }

    .mobile-panel {
        display: block;
    }

    .text-xxl {
        font-size: 2.5rem;
    }

    .contact-cta .container{
        flex-direction: column;
        gap: 30px;
    }

    .contact-cta .container p{
        text-align: center;
     }

    .fixed-content .container{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        height: 100%;
    }
 
    .innovation {
        padding: 40px 0;
        background-image: url("background.jpg");
        background-attachment: fixed; 
    }
    
    .innovation .container{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        align-items: center;
        justify-content: center;
        padding: 0 30px;
    }
    
    .innovation .container > div {
        padding: 30px 0;
        text-align: center;
    }
    
    .innovation .container img{
        width: 100%;
    }
    .about-us .container .our-vision{
       flex-direction: column;
       justify-content: center;
       align-items: center;
    }
    .about-us .container .core-value .core-values{
        flex-direction: column;
    }
    .about-us .container .core-value .core-values p{
        width: 100%;
    }


    .methodology .container {
         flex-direction: column;
        gap: 40px;
     }
     
     .methodology .container .images{
        display: flex;
        align-items: center;
        justify-content: center;
     }
     .methodology .container .images img{
        width: 80%;
     }
    
     .methodology .container p{
        padding: 20px;
        text-align: center;
     }
  
    .projects .project {
        grid-column: 2/12;
    }

    .contact .info-wrap .row{
        display: grid;
        grid-template-columns: 1fr;
        grid-auto-rows:minmax(100px, auto);
        grid-gap:1em;
        justify-items:stretch;
        align-items:stretch;
      }
    
}


@media (max-width: 670px){
  
    .testimonials .testimonials-heading {
        max-width: 100%;
        text-align: center;
    }

    .testimonials .testimonials-grid, .pricing .pricing-grid, .footer .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer .footer-flex > div {
        text-align: center;
    }

/* activities */


.activities .activity-items {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 5px;
}

.activities .activity-items .activity{
    width: 100%;
}

.footer-flex {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    border-top: none;
}

.footer-flex > div{
    width: 100%;
    padding: 20px;
}

.footer-flex .sitemap{
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   text-align: center;
}

.footer .footer-end {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.footer .footer-logo{
    align-items: center;
    justify-content: center;
}
.footer .footer-logo .social-links{
    display: none;
}

.footer .footer-flex .social-links{
    display: block;
}

.about-us .container .virtuous-cycle img{
    width: 100%;
}

.core-elements .elements{
    flex-direction: column;
 }

/* Text */
.text-xl {
    font-size: 1.9rem;
}

.text-lg {
    font-size: 1.5rem;
}

.text-md {
    font-size: 1.1rem;
}
.swiper-slide img {
    width: auto;
    height: 100%;
    } 

    .projects .project {
    grid-column: 1/13;
}

.contact-details .container .contact-card .contacts {
    display: flex;
    flex-direction: column;
    align-items: start;
    }
}


@media (max-width: 500px){
    .text-xxl {
        font-size: 2rem;
    }
}



  




  /* .dropdown-content {
    display: none;
    position: absolute;
    background-color: #000;
    min-width: 160px;
    z-index: 1;
  }
   */
  /* .dropdown:hover .dropdown-content {
    display: block;
  }
   */


/* 
.hamburger {
    display: none;
    border: none;
    background: none;
    cursor: pointer;
    padding: 10px;
    transition: all 0.25s;
    position: relative;
    z-index: 2000;
  }
  
  .hamburger-top,
  .hamburger-middle,
  .hamburger-bottom {
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--light-gray);
    transform: rotate(0);
    transition: all 1s;
  }
  
  .hamburger-middle {
    transform: translateY(8px);
  }
  
  .hamburger-bottom {
    transform: translateY(16px);
  }
  
  .open {
    transform: rotate(90deg);
    transform: translateY(0px);
  }
  
  .open .hamburger-top {
    background: #fff;
    transform: rotate(45deg) translateY(6px) translate(6px);
  }
  
  .open .hamburger-middle {
    background: #fff;
    display: none;
  }
  
  .open .hamburger-bottom {
    background: #fff;
    transform: rotate(-45deg) translateY(6px) translate(-6px);
  }


*/