@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,300;0,400;0,500;0,600;1,100;1,300&display=swap");



:root{
   --crimson:#FF0000;
   --black:#333;
   --white:#fff;
   --light-black:#666;
   --light-bg:#eee;
   --dark-bg:rgba(0,0,0,.7);
   /*--border:1px solid #999;*/
   --box-shadow:0 5px 10px rgba(0,0,0,.1);
}
:root{
    --green:#009E3D;
}

*{
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-style: normal;
    color: #666;
    display: block;
    font-size: 1.7rem;
    margin:0;
    padding:0;
    box-sizing: border-box;
    text-decoration: none;
    outline:none;
    border:none;
    text-transform: none;
    transition: all .2s linear;
}

*::selection{
    background: #009E3D;
    color:#fff;
}

html{
    font-size: 62.5%;
    overflow-x: hidden;
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  top: 0px !important;
}
/* Hide Google top banner completely */
.goog-te-banner-frame.skiptranslate {
    display: none !important;
}
/* Hide the Google translate bar */
iframe.goog-te-banner-frame {
    display: none !important;
}
body.translated-ltr,
body.translated-rtl {
    top: 0 !important;
}
.goog-logo-link,
.goog-te-gadget span {
    display: none !important;
}

.goog-te-gadget {
    font-size: 0px !important;
}

section{
    padding: 0rem 5rem;
}

header{
    position: fixed;
    top:0; left: 0;
    z-index: 1000;
    background:#000;
    box-shadow: 0 .1rem .3rem rgba(0,0,0,.3);
    width:100%;
    height: 80px;
}

header .logo{
    width: 70px;
    height: 70px;
    padding: 1rem;
   
}
header .main-header{
  align-items: center;
  text-align: center;
  width: 100%;
  height:70px;
  padding: 5px;
}
header .heading{
    padding: 5px;
    font-size: 5rem;
    color:#FFF;
    /*padding:1rem;*/
    text-align: center;
    
}
.divider {
  display: flex;
  align-items: center;
  text-align: center;
  width: 100%;
 
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height:40px;
  background-color: #FF0000;
}

.divider span {
  padding: 10px 15px;
  color: white;
  font-size: 2rem;
  /* font-weight: bold; */
  height: 40px;
  background: #FF0000;
  /* text-transform: uppercase; */

}
header #menu{
    font-size: 2rem;
    color:#666;
    cursor: pointer;
    margin:1rem;
    display: none;
}

header .navbar ul{
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    background: #009E3D;
    /*padding:1rem;*/
}

header .navbar ul li{
    margin:0 1.5rem;
}

header .navbar ul li a{
    padding: 11px;
    font-size: 15px;
    text-decoration: none;
    color: #fff;
    /* font-weight: 300; */
    border-left: 1px dotted #b82100;
    /* text-transform: uppercase; */
}

header .navbar ul li a:hover{
    color:#FFF;
     background:#000;
    
}

.navbar a:hover, .dropdown:hover .dropbtn {
  background:#009E3D;
}

.dropdown .dropbtn {
  padding: 11px;
  font-size: 15px;
  border: none;
  outline: none;
  color: #fff;
  background:#009E3D;
  margin: 5px;
  /* text-transform: uppercase; */
}

.dropdown-content {
  display: none;
  font-size: 15px;
  position: absolute;
  background:#009E3D;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  /* text-transform: uppercase; */
}

.dropdown-content a {
  float: none;
  font-size: 15px;
  border: none;
  outline: none;
  color: white;
  padding: 11px;
  background:#009E3D;
  font-family: inherit;
  margin: 0;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #000;
   color: white;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Dropdown Base */
.dropdown {
  position: relative;
}

.dropbtn {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Translate icon aligned properly */
.translate-icon {
  width: 20px;
  height: 20px;
  display: inline-block;
}

/* Dropdown content */
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 180px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  z-index: 999;
}

.dropdown-content a {
  display: block;
  padding: 8px 12px;
  text-decoration: none;
  color: black;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Accessibility */
.a11y-item {
  position: relative;
}

#a11y-toggle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #009E3D;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

#a11y-toggle img {
  width: 22px;
  height: 22px;
}

#a11y-toolbar {
  position: absolute;
  top: 45px;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #45ef86;
  padding: 12px;
  border-radius: 8px;
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
  min-width: 170px;
  z-index: 9999;
}

#a11y-toolbar h4 {
  margin: 0 0 5px;
  font-size: 14px;
  text-align: center;
  color: #fff;
}

#a11y-toolbar button {
  padding: 6px;
  font-size: 13px;
  background: #6495ED;
  border: none;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
}

#a11y-toolbar button:hover {
  background: #666;
}

#a11y-container.active #a11y-toolbar {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
/* Make accessibility button inline with nav items */
.navbar ul li.a11y-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
}

/* Toolbar positioning */
#a11y-container {
    position: relative;
}

#a11y-toolbar {
    position: absolute;
    top: 40px; /* adjust based on header height */
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: #45ef86;
    padding: 10px;
    border-radius: 8px;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
    min-width: 170px;
    z-index: 9999;
}

#a11y-container.active #a11y-toolbar {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}
@media (max-width: 768px) {

  /* Top section: logo + heading */
  header .main-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: auto;
    padding: 10px;
  }

  header .logo {
    width: 50px;
    height: 50px;
    padding: 0;
  }

  header .heading {
    font-size: 1.2rem;
    margin: 0;
    text-align: left;
    line-height: 1.3;
  }

  /* Divider below them */
  .divider {
    flex-direction: column;
  }

  .divider span {
    font-size: 0.9rem;
    padding: 6px;
    text-align: center;
  }

  .divider::before,
  .divider::after {
    height: 20px;
  }

}
.home{
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap:1.5rem;
    background:#eee;
    padding-top: 20rem;
    min-height: 85vh;
    
}

/* =========================
   HOME IMAGE SLIDER
========================= */

.home .img-slider {
    width: 100%;
    height: 650px;              /* Adjust height as needed */
    background: #fff;
    border: var(--border);
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    overflow: hidden;           /* Prevent overflow */
    position: relative;
}

.img-slider {
    position: relative;
    float: left;
}

/* Slide container */
.img-slider .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    clip-path: circle(0% at 0 50%);
}

/* Active slide animation */
.img-slider .slide.active {
    clip-path: circle(150% at 0 50%);
    transition: 2s;
    transition-property: clip-path;
}

/* Image styling */
.img-slider .slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;       
    background: transparent;           
    border-radius: 5px;
}

/* Navigation dots */
.img-slider .navigation {
    z-index: 2;
    position: absolute;
    display: flex;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
}

.img-slider .navigation .btn {
    background: #009E3D;
    width: 12px;
    height: 12px;
    margin: 8px;
    border-radius: 50%;
    cursor: pointer;
}

.img-slider .navigation .btn.active {
    background: #007bff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
/* =========================
   SLIDE CAPTION (FULL WIDTH BELOW NAV)
========================= */

.img-slider .slide .slide-caption {
    position: absolute;
    bottom: 0;                 /* Stick to bottom of image */
    left: 0;
    width: 100%;               /* Full image width */
    text-align: center;
    background: rgba(0, 0, 0, 0.6); /* Transparent background */
    padding: 10px;
    color: #FFF;
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s ease;
}
.img-slider .slide .slide-caption h2{
    color: #6495ED;
    font-style: italic;
}
/* Show caption when slide active */
.img-slider .slide.active .slide-caption {
    opacity: 1;
    transform: translateY(0);
}

/* Adjust navigation to sit ABOVE caption */
.img-slider .navigation {
    z-index: 3;
    position: absolute;
    bottom: 10px;  /* Move it above caption */
    left: 50%;
    transform: translateX(-50%);
}




.quicklinks {
    border:var(--border);
    border-radius: .5rem;
    overflow:hidden;
    background:#fff;
    margin-bottom: 1.5rem;
    
}

.quicklinks .sidebar .box{
    border:var(--border);
    border-radius: .5rem;
    overflow:hidden;
    background:#fff;
    margin-bottom: 1.5rem;
}

.quicklinks .sidebar .box .title{
    padding:1.5rem;
    font-size: 2rem;
    color:#fff;
    background:#FF0000;
    text-transform: capitalize;
}


.cquicklinks .sidebar .box .about{
    text-align: center;
    padding:1rem 1.5rem;
}

.quicklinks .sidebar .box .about img{
    height: 15rem;
    width: 15rem;
    border-radius: 50%;
    object-fit: cover;
    margin:1rem 0;
}

.quicklinks .sidebar .box .about h3{
    color:var(--orange);
    font-size: 2rem;
}

.quicklinks .sidebar .box .about p{
    color:var(--light-color);
    font-size: 1.7rem;
    line-height: 1.0;
    padding:1rem;
}

.quicklinks .sidebar .box .about .follow{
    padding:1rem 0;
}

.quicklinks .sidebar .box .about .follow a{
    height: 4rem;
    line-height: 4rem;
    width: 4rem;
    border-radius: 50%;
    background:var(--black);
    color:#fff;
    font-size: 1.7rem;
    margin:0 .1rem;
}

.quicklinks .sidebar .box .about .follow a:hover{
    background:var(--orange);
}

.quicklinks .sidebar .box .category{
    padding:1rem 1.5rem;
}

.quicklinks .sidebar .box .category a{
    padding:.4rem 0;
    font-size: 1.7rem;
    color:var(--black);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.quicklinks .sidebar .box .category a span{
    background:var(--light-color);
    color:#fff;
    border-radius: .5rem;
    padding:.5rem;
}

.quicklinks .sidebar .box .category a:hover{
     color: #009E3D;
}

.quicklinks .sidebar .box .category a:hover span{
     color: #009E3D;
}

.quicklinks .sidebar .box .p-post{
    padding:1rem 2rem;
}

.quicklinks .sidebar .box .p-post a{
    padding:1rem 0;
    display: block;
}

.quicklinks .sidebar .box .p-post a h3{
    display: inline-block;
    padding:1rem 1.5rem;
    font-size: 1.7rem;
    color:#6495ED;
    border-radius: .5rem;
    margin:.5rem;
    background: #eee;
}

.quicklinks .sidebar .box .p-post a span{
    color:#000;
    font-size: 1.7rem;
}

.quicklinks .sidebar .box .p-post a span i{
    padding-right: .2rem;
}

.quicklinks .sidebar .box .p-post a:hover h3{
     color: #219150;
}

.quicklinks .sidebar .box .tags{
    padding:0 2rem;
}

.quicklinks .sidebar .box .tags a{
    display: inline-block;
    padding:1rem 2rem;
    font-size: 1.7rem;
    color:#6495ED;
    
    border-radius: .5rem;
    margin:.5rem;
    background: #eee;
}

.quicklinks .sidebar .box .tags:hover a{
    background: #FF4000;
    color:#fff;
}

@media (max-width: 700px) {
    .quicklinks {
        width: 100%;
        padding: 0px 16px;
    }

    
}


@media (max-width: 550px) {
    .quicklinks .sidebar {
        flex-direction: column;
        margin-top: 0;
    }

    .quicklinks .sidebar .sidebar {
        margin: 8px 0;
    }

    .quicklinks h2{
        display: block;
        margin-top: 32px;
    }
}
/* history, message and magical Kenya section */
.cards {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  width: 100%;
  gap: 20px;
  padding: 20px 42px;
}

@media (max-width: 992px) {
  .cards {
    grid-template-columns: 1fr 1fr; /* 2 columns on tablet */
  }
}

@media (max-width: 600px) {
  .cards {
    grid-template-columns: 1fr; /* 1 column on mobile */
  }
}

.card {
  padding: 20px;
  background: #f4f4f4;
  border: transparent;
  display: block;
}
.card .content h1{
    font-size: 2rem;
    color: #219150;
    padding: 1rem 0;
    text-align: center;
}

.card .content p{
    font-size: 15px;
    color: #10221b;
    /* padding: 0.5rem 0; */
    line-height: 26px;
    font-weight: 300; 

}

.message{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    text-align: justify;
     background:#eee;

    
}

.message .image{
    flex:1 1 42rem;
}

.message .image img{
    width: 100%;
    flex: 1 1 22rem;
    padding-right: 1rem;
    padding-bottom: 2rem;
}

.message .content{
    flex:1 1 40rem;
}

.message .content h1{
    font-size: 2rem;
    color: #219150;
}

.message .content p{
    font-size: 1.7rem;
    color: #10221b;
    padding: 1rem 0;
    line-height: 1.0;
    display: block;
    font-weight: 300;

}

.history{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    text-align: justify;
   
}

.history .image{
    flex:1 1 42rem;
}

.history .image img{
    width: 100%;
    flex: 1 1 42rem;
    

}

.history .content{
    flex:1 1 40rem;
}

.history .content h1{
    font-size: 2rem;
    color: #219150;
}

.history .content p{
    font-size: 1.4rem;
    color: #10221b;
    padding: 1rem 0;
    line-height: 1.0;
    padding-right: 5rem;
    font-weight: 300;

}

.about{
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    text-align: justify;
    padding: 1rem 5rem;
    background:#eee;

}

.about .image{
    flex:1 1 40rem;
}

.about .image img{
    width: 100%;
    flex: 1 1 42rem;
    padding-right: 5rem;
    padding-bottom: 5rem;
}

.about .content{
    flex:1 1 40rem;
}

.about .content h1{
    font-size: 2rem;
    color: #219150;
}

.about .content p{
    font-size: 1.4rem;
    color: #10221b;
    padding: 1rem 0;
    line-height: 1.0;
    font-weight: 300;
}

.service{
    background:#eee;
    padding-top: 20rem;

   
}
.service h1{
    font-size: 2rem;
    color: #219150;
    text-align: center;
   
}


.service .box-container{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding:2rem 0;
}

.service .box-container .box{
    background:#fff;
    border-radius: 6px;
    margin:2rem;
    padding:1rem;
    width:30rem;
    text-align: center;
    box-shadow: 0 0 .3rem rgba(0,0,0,.3);
}

.service .box-container .box:hover {
  background: #009E3D;
}

.service .box-container .box:hover h3{
  color: #fff;
}

.service .box-container .box:hover p{
  color: #fff;
}

.service .box-container .box i{
    font-size: 4rem;
    padding:1rem;
    color: #ffc602;
     background: #007bff;
    
}

.service .box-container .box h3{
    font-size: 2rem;
    color:#444;
}

.service .box-container .box p{
    font-size: 1.7rem;
    color:#666;
    padding:1rem;
    text-align: left;
    font-weight: 300;
}
.service .btn{
    border-radius: 0.5rem;
    cursor: pointer;
    background-color: #007bff;
    font-size: 1.7rem;
    padding: 3px;
    color: #FFF;
    margin: 1rem 0;
    height: 3.5rem;
    width: 15rem;
    text-transform: capitalize;
}


.amb{
    background:#eee;
    padding-top: 20rem;
}

.trade h1{
    font-size: 2rem;
    color: #219150;
    text-align: center;
   
}

.amb .box-container{
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    text-align: justify;
    padding: 1rem 5rem;
     background:#CFFFDC;
    margin:2rem;
    box-shadow: 0 0 .3rem rgba(0,0,0,.3);

}

.amb .image{
    flex:1 1 40rem;
}

.amb .image img{
    width: 100%;
    object-fit: cover;
    border-radius: 6px;
    height: 35rem;
    object-fit: cover;
    /*flex: 1 1 42rem;*/
    padding-right: 5rem;
    padding-bottom: 2rem;
    padding-top: 2rem;
}

.amb .content{
    flex:1 1 40rem;
}

.amb .content h3{
    font-size: 2rem;
    color: #219150;

}
.amb .content h2{
    font-size: 2rem;
     padding: 1rem 0;
    color: #000;
    line-height: 1.0;
    font-style: italic;
}
.amb .content p{
    font-size: 1.4rem;
    color: #10221b;
    padding: 1rem 0;
    line-height: 1.0;
}


.staff{
    background:#eee;
    padding-top: 1rem;

   
}
.staff h1{
    font-size: 2rem;
    color: #219150;
    text-align: center;

    padding: 1rem 0;
   
}


/* Stack items vertically */
.staff .box-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 1rem 0;
  max-width: 600px;   /* controls width */
  margin: 0 auto;     /* centers horizontally */
}

/* Each staff row */
.staff .box {
  display: flex;
  align-items: stretch;   /* makes image full height */
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  min-height: 90px;       /* controls row height */
  
}

/* Image full height */
.staff .box img {
  width: 100px;           /* control image width */
  height: 100%;
  object-fit: cover;
}

/* Text content */
.staff .content {
  padding: 15px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.staff .content h3 {
  margin: 0;
  font-size: 18px;
}

.content p {
  margin: 5px 0 0;
  color: #666;
  font-size: 14px;
}

@media (max-width: 600px) {
  .staff .box {
    flex-direction: column;
  }

  .staff .box img {
    width: 100%;
    height: 200px;
  }
}

.charter{
    background:#eee;
    padding-top: 20rem;
    flex: 1;
}
.charter h1{
    font-size: 2rem;
    color: #219150;
    text-align: center;
   
}


.charter .box-container{
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    text-align: justify;
    padding: 1rem 5rem;

}

.charter .image img{
    width: 100%;
   
}



.bilateral{
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap:1.5rem;
    background:#eee;
    padding-top: 20rem;
    flex: 1;

    
}

.bilateral .posts-container .post{
    width:100%;
    padding:2rem;
    background:#fff;
    border:var(--border);
    border-radius: .5rem;
    margin-bottom: 1.5rem;
}

.bilateral .posts-container .post .image{
    height: 60rem;
    width:100%;
    border-radius: .5rem;
    object-fit: cover;
}

.bilateral .posts-container .post .date{
    padding-top: 2rem;
    font-size: 1.7rem;
    color:#009E3D;
}

.bilateral .posts-container .post .title{
    padding-top: 1.5rem;
    font-size: 2.5rem;
    color:#009E3D;
}

.bilateral .posts-container .post .text{
    color:var(--light-color);
    font-size: 1.6rem;
    line-height: 1.7;
    padding:1rem 0;
}


.bilateral .posts-container .links{
    border-top: var(--border);
    margin-top: .5rem;
    padding-top: 1.5rem;
    display: flex;
    align-items: center;
}

.bilateral .posts-container .links .user{
    margin-right: auto;
}

.bilateral .posts-container .links .icon{
    padding-right: 1rem;
}

.bilateral .posts-container .links a{
    font-size: 1.7rem;
    color:#009E3D;
}

.bilateral .posts-container .links a i{
    padding-right: .2rem;
    color: #FF4C60;
}

.bilateral .posts-container .links a:hover{
    color:#000;
}

.bilateral .posts-container .links a:hover i{
    color: #009E3D;
}

.bilateral .sidebar .box{
    border:var(--border);
    border-radius: .5rem;
    overflow:hidden;
    background:#fff;
    margin-bottom: 1.5rem;
}

.bilateral .sidebar .box .title{
    padding:1.5rem;
    font-size: 2rem;
    color:#fff;
    background:#007bff;
    text-transform: capitalize;
}

.bilateral .sidebar .box .about{
    text-align: center;
    padding:1rem 1.5rem;
}

.bilateral .sidebar .box .about img{
    height: 15rem;
    width: 15rem;
    border-radius: 50%;
    object-fit: cover;
    margin:1rem 0;
}

.bilateral .sidebar .box .about h3{
    color:var(--orange);
    font-size: 2rem;
}

.bilateral .sidebar .box .about p{
    color:var(--light-color);
    font-size: 1.7rem;
    line-height: 1.0;
    padding:1rem;
}

.bilateral.sidebar .box .about .follow{
    padding:1rem 0;
}

.bilateral .sidebar .box .about .follow a{
    height: 4rem;
    line-height: 4rem;
    width: 4rem;
    border-radius: 50%;
    background:var(--black);
    color:#fff;
    font-size: 1.7rem;
    margin:0 .1rem;
}

.bilateral .sidebar .box .about .follow a:hover{
    background:var(--orange);
}

.bilateral .sidebar .box .category{
    padding:1rem 1.5rem;
}

.bilateral .sidebar .box .category a{
    padding:.4rem 0;
    font-size: 1.7rem;
    color:var(--black);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bilateral .sidebar .box .category a span{
    background:var(--light-color);
    color:#fff;
    border-radius: .5rem;
    padding:.5rem;
}

.bilateral .sidebar .box .category a:hover{
     color: #009E3D;
}

.bilateral .sidebar .box .category a:hover span{
     color: #009E3D;
}

.bilateral .sidebar .box .p-post{
    padding:1rem 2rem;
}

.bilateral .sidebar .box .p-post a{
    padding:1rem 0;
    display: block;
}

.bilateral .sidebar .box .p-post a h3{
    color:#009E3D;
    font-size: 2rem;
    padding-bottom: 1rem;
}

.bilateral .sidebar .box .p-post a span{
    color:#000;
    font-size: 1.7rem;
}

.bilateral .sidebar .box .p-post a span i{
    padding-right: .2rem;
}

.bilateral .sidebar .box .p-post a:hover h3{
     color: #007bff;
}

.bilateral.sidebar .box .tags{
    padding:1rem;
}

.bilateral .sidebar .box .tags a{
    display: inline-block;
    padding:1rem 1.5rem;
    font-size: 1.7rem;
    color:#009E3D;
    border-radius: .5rem;
    margin:.5rem;
    background: #eee;
}

.bilateral .sidebar .box .tags a:hover{
    background: #009E3D;
    color:#fff;
}




.bilaterals{
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap:1.5rem;
    background:#eee;
    padding-top: 20rem;
    min-height: 85vh;
    
}

.bilaterals .img-slider h3{
    color: #000;
    font-size: 2rem;
    padding-bottom: 1rem;
    font-style: italic;
}

.bilaterals .img-slider{
    width: 100%;
    padding: 2rem;
    background: #fff;
    border: var(--border);
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    height: 70rem;


}

.bilaterals .img-slider img{
    width: 100%;
    height: 65rem;
    object-fit: contain;
    padding-right: 5rem;
    padding-bottom: 5rem;

}

.bilaterals .sidebar .box{
    border:var(--border);
    border-radius: .5rem;
    overflow:hidden;
    background:#fff;
    margin-bottom: 1.5rem;
}

.bilaterals .sidebar .box .title{
    padding:1.5rem;
    font-size: 2rem;
    color:#fff;
    background:#AFDB0B;
    text-transform: capitalize;
}

.bilaterals .sidebar .box .btn{
    border-radius: 0.5rem;
    cursor: pointer;
    background-color: #007bff;
    font-size: 1.7rem;
    padding: 3px 3px;
    color: #FFF;
    margin: 1rem 0;
    height: 3.5rem;
    width: 15rem;
    text-transform: capitalize;
}
.bilaterals .sidebar .box .btn:hover{
    color: #fff;
    letter-spacing: .1rem;
    background: #009E3D;
}
.bilaterals .sidebar .box .about img{
    height: 15rem;
    width: 15rem;
    border-radius: 50%;
    object-fit: cover;
    margin:1rem 0;
}

.bilaterals .sidebar .box .about h3{
    color:var(--orange);
    font-size: 2rem;
}

.bilaterals .sidebar .box .about p{
    color:var(--light-color);
    font-size: 1.7rem;
    line-height: 1.0;
    padding:1rem;
}

.bilaterals .sidebar .box .about .follow{
    padding:1rem 0;
}

.bilaterals .sidebar .box .about .follow a{
    height: 4rem;
    line-height: 4rem;
    width: 4rem;
    border-radius: 50%;
    background:var(--black);
    color:#fff;
    font-size: 1.7rem;
    margin:0 .1rem;
}

.bilaterals .sidebar .box .about .follow a:hover{
    background:var(--orange);
}

.bilaterals .sidebar .box .category{
    padding:1rem 1.5rem;
}

.bilaterals .sidebar .box .category a{
    padding:.4rem 0;
    font-size: 1.7rem;
    color:var(--black);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bilaterals .sidebar .box .category a span{
    background:var(--light-color);
    color:#fff;
    border-radius: .5rem;
    padding:.5rem;
}

.bilaterals .sidebar .box .category a:hover{
     color: #009E3D;
}

.bilaterals .sidebar .box .category a:hover span{
     color: #009E3D;
}

.bilaterals .sidebar .box .p-post{
    padding:1rem 2rem;
}

.bilaterals .sidebar .box .p-post a{
    padding:1rem 0;
    display: block;
}

.bilaterals .sidebar .box .p-post a h3{
    color:#219150;
    font-size: 2rem;
    padding-bottom: 1rem;
}

.bilaterals .sidebar .box .p-post a span{
    color:#000;
    font-size: 1.7rem;
}

.bilaterals .sidebar .box .p-post a span i{
    padding-right: .2rem;
}

.bilaterals .sidebar .box .p-post a:hover h3{
     color:#007bff; 
}

.bilaterals .sidebar .box .tags{
    padding:1rem;
}

.bilaterals .sidebar .box .tags a{
    display: inline-block;
    padding:1rem 1.5rem;
    font-size: 1.7rem;
    color:#009E3D;
    border-radius: .5rem;
    margin:.5rem;
    background: #eee;
}

.bilaterals .sidebar .box .tags a:hover{
    background: #009E3D;
    color:#fff;
}



.container{
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap:1.5rem;
    background:#eee;
    padding-top: 20rem;
   flex: 1;
    
}

.container .posts-container .post{
    width:100%;
    padding:2rem;
    background:#fff;
    border:var(--border);
    border-radius: .5rem;
    margin-bottom: 1.5rem;
}

.container .posts-container .post .image{
    height: 40rem;
    width:100%;
    border-radius: .5rem;
    object-fit: cover;
}

.container .posts-container .post .date{
    padding-top: 2rem;
    font-size: 1.7rem;
    color:#009E3D;
}

.container .posts-container .post .title{
    padding-top: 1.5rem;
    font-size: 2.5rem;
    color:#009E3D;
}

.container .posts-container .post .text{
    color:var(--light-color);
    font-size: 1.6rem;
    line-height: 1.7;
    padding:1rem 0;
}

.container .posts-container .links{
    border-top: var(--border);
    margin-top: .5rem;
    padding-top: 1.5rem;
    display: flex;
    align-items: center;
}

.container .posts-container .links .user{
    margin-right: auto;
}

.container .posts-container .links .icon{
    padding-right: 1rem;
}

.container .posts-container .links a{
    font-size: 1.7rem;
    color:#009E3D;
}

.container .posts-container .links a i{
    padding-right: .2rem;
    color: #FF4C60;
}

.container .posts-container .links a:hover{
    color:#000;
}

.container .posts-container .links a:hover i{
    color: #009E3D;
}

.container .sidebar .box{
    border:var(--border);
    border-radius: .5rem;
    overflow:hidden;
    background:#fff;
    margin-bottom: 1.5rem;
}

.container .sidebar .box .title{
    padding:1.5rem;
    font-size: 2rem;
    color:#fff;
    background:#007bff;
    text-transform: capitalize;
}

.container .sidebar .box .about{
    text-align: center;
    padding:1rem 1.5rem;
}

.container .sidebar .box .about img{
    height: 15rem;
    width: 15rem;
    border-radius: 50%;
    object-fit: cover;
    margin:1rem 0;
}

.container .sidebar .box .about h3{
    color:var(--orange);
    font-size: 2rem;
}

.container .sidebar .box .about p{
    color:var(--light-color);
    font-size: 1.7rem;
    line-height: 1.0;
    padding:1rem;
}

.container .sidebar .box .about .follow{
    padding:1rem 0;
}

.container .sidebar .box .about .follow a{
    height: 4rem;
    line-height: 4rem;
    width: 4rem;
    border-radius: 50%;
    background:var(--black);
    color:#fff;
    font-size: 1.7rem;
    margin:0 .1rem;
}

.container .sidebar .box .about .follow a:hover{
    background:var(--orange);
}

.container .sidebar .box .category{
    padding:1rem 1.5rem;
}

.container .sidebar .box .category a{
    padding:.4rem 0;
    font-size: 1.7rem;
    color:var(--black);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.container .sidebar .box .category a span{
    background:var(--light-color);
    color:#fff;
    border-radius: .5rem;
    padding:.5rem;
}

.container .sidebar .box .category a:hover{
     color: #009E3D;
}

.container .sidebar .box .category a:hover span{
     color: #009E3D;
}

.container .sidebar .box .p-post{
    padding:1rem 2rem;
}

.container .sidebar .box .p-post a{
    padding:1rem 0;
    display: block;
}

.container .sidebar .box .p-post a h3{
    color:#009E3D;
    font-size: 2rem;
    padding-bottom: 1rem;
}

.container .sidebar .box .p-post a span{
    color:#000;
    font-size: 1.7rem;
}

.container .sidebar .box .p-post a span i{
    padding-right: .2rem;
}

.container .sidebar .box .p-post a:hover h3{
     color: #000;
}

.container .sidebar .box .tags{
    padding:1rem;
}

.container .sidebar .box .tags a{
    display: inline-block;
    padding:1rem 1.5rem;
    font-size: 1.7rem;
    color:#009E3D;
    border-radius: .5rem;
    margin:.5rem;
    background: #eee;
}

.container .sidebar .box .tags a:hover{
    background: #009E3D;
    color:#fff;
}


.trade{
    background:#eee;
    padding-top: 20rem;
    flex: 1;
}

.trade h1{
    font-size: 2rem;
    color: #219150;
    text-align: center;
   
}

.trade .box-container{
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    text-align: justify;
    padding: 1rem 5rem;

}

.trade .image{
    flex:1 1 40rem;
}

.trade .image img{
    width: 100%;
    flex: 1 1 42rem;
    padding-right: 5rem;
    padding-bottom: 5rem;
}

.trade .content{
    flex:1 1 40rem;
}

.trade .content h3{
    font-size: 2rem;
    color: #219150;
}

.trade .content p{
    font-size: 1.4rem;
    color: #10221b;
    padding: 1rem 0;
    line-height: 1.0;
    font-weight: 300;
}
.tradegallery{
  display: flex;
  flex-wrap: wrap;
  margin-top: 0px;
  border-radius: 6px;
}
.tradegallery .image{
  width: calc(100% / 4);
  padding: 7px;

}
.tradegallery .image span{
  display: flex;
  width: 100%;
  overflow: hidden;
}
.tradegallery .image img{
  width: 100%;
  vertical-align: middle;
  transition: all 0.3s ease;
}
.tradegallery .image:hover img{
  transform: scale(1.1);
}
.tradegallery .image.hide{
  display: none;
}
.tradegallery .image.show{
  animation: animate 0.4s ease;
}
@keyframes animate {
  0%{
    transform: scale(0.5);
  }
  100%{
    transform: scale(1);
  }
}



.diaspora {
    background:#eee;
    padding-top: 20rem;
    flex: 1;
}


.diaspora .img-responsive{
    margin: 8px;
    transition: 0.5s ease;
}   

.diaspora .img-responsive:hover{
    box-shadow: 4px 5px 5px 4px #888888;
    border-radius: 10px;
}



.diaspora h1{
    text-align: center;
    font-weight: bold;
    font-family: monospace;
    font-size: 2rem;
    color: #219150;
}

.diaspora .btn{
    border-radius: 0.5rem;
    cursor: pointer;
    background-color: #009E3D;
    font-size: 1.7rem;
    padding: 3px 3px;
    color: #000;
    margin: 1rem 0;
    height: 3.5rem;
    width: 15rem;
    text-transform: capitalize;
}
  .diaspora .container .sidebar .box{
    border:var(--border);
    border-radius: .5rem;
    overflow:hidden;
    background:#fff;
    margin-bottom: 1.5rem;
}

.diaspora .container .sidebar .box .title{
    padding:1.5rem;
    font-size: 2rem;
    color:#fff;
    background:#de0022;
    text-transform: capitalize;
}

.diaspora .container .sidebar .box .about{
    text-align: center;
    padding:1rem 1.5rem;
}

.container .sidebar .box .about img{
    height: 15rem;
    width: 15rem;
    border-radius: 50%;
    object-fit: cover;
    margin:1rem 0;
}

.container .sidebar .box .about h3{
    color:var(--orange);
    font-size: 2rem;
}

.container .sidebar .box .about p{
    color:var(--light-color);
    font-size: 1.7rem;
    line-height: 1.0;
    padding:1rem;
}

.container .sidebar .box .about .follow{
    padding:1rem 0;
}

.container .sidebar .box .about .follow a{
    height: 4rem;
    line-height: 4rem;
    width: 4rem;
    border-radius: 50%;
    background:var(--black);
    color:#fff;
    font-size: 1.7rem;
    margin:0 .1rem;
}

.container .sidebar .box .about .follow a:hover{
    background:var(--orange);
}

.container .sidebar .box .category{
    padding:1rem 1.5rem;
}

.container .sidebar .box .category a{
    padding:.4rem 0;
    font-size: 1.7rem;
    color:var(--black);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.container .sidebar .box .category a span{
    background:var(--light-color);
    color:#fff;
    border-radius: .5rem;
    padding:.5rem;
}

.container .sidebar .box .category a:hover{
     color: #009E3D;
}

.container .sidebar .box .category a:hover span{
     color: #009E3D;
}

.container .sidebar .box .p-post{
    padding:1rem 2rem;
}

.container .sidebar .box .p-post a{
    padding:1rem 0;
    display: block;
}

.container .sidebar .box .p-post a h3{
    color:#009E3D;
    font-size: 2rem;
    padding-bottom: 1rem;
}

.container .sidebar .box .p-post a span{
    color:#000;
    font-size: 1.7rem;
}

.container .sidebar .box .p-post a span i{
    padding-right: .2rem;
}

.container .sidebar .box .p-post a:hover h3{
     color: #000;
}


.register{
    background:#eee;
    padding-top: 20rem;
    padding-bottom: 5rem;
}

.register h3{
    font-size: 2rem;
    color: #219150;
    text-align: center;
}


.register form{
    display: flex;
   flex-wrap: wrap;
   
    /*max-width:90rem;*/
    border-radius: .5rem;
    box-shadow: var(--box-shadow);
    border:.1rem solid rgba(0,0,0,.2);
    background:#fff;
    padding:1.0rem;
    margin:0 auto;
}

.register form .inputBox{
    /*display: flex;
    flex-wrap: wrap;
    justify-content: space-between;*/
    flex:1 1 35rem;

}

.register form .inputBox .input{
    width:80%;
    
}

.register form .inputBox .input span{
    display:block;
    padding:2rem 0;
    font-size: 1.7rem;
    color:var(--light-color);
    

}

.register form .inputBox .input input, select,
.register form .inputBox .input textarea{
    background:#eee;
    border:.1rem solid var(--green);
    border-radius: .5rem;
    padding:1rem;
    font-size: 1.6rem;
    color:#000;
    text-transform: none;
    margin-bottom: 1rem;
    width:100%;
    
}

.register form .inputBox .input input:focus,
.register form .inputBox .input textarea:focus{
    border-color:#de0022;
}

.register form .inputBox .input textarea{
    height:20rem;
    resize: none;
}

.register form .btn{
    align-content: center;
    display: inline-block;
    font-size: 1.7rem;
    color: #fff;
    background: var(--green);
    border-radius: 0.5rem;
    cursor: pointer;
    padding: 0.8rem 3rem;
}
.register .btn:hover{
    color: #fff;
    letter-spacing: .1rem;
    background: #de0022;
}

.register form .btn hover{
    background: var(--green);
    
}

.review{
    background:#eee;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.review h3{
    font-size: 2rem;
    color: #219150;
    text-align: center;
}

.review .slide{
    padding:2rem;
    box-shadow:var(--box-shadow);
    border:.1rem solid rgba(0,0,0,.2);
    border-radius: .5rem;
    position: relative;    
}

.review .slide .fa-quote-right{
    position: absolute;
    top:2rem; right:2rem;
    font-size: 6rem;
    color:#ccc;
}

.review .slide .user{
    display: flex;
    gap:1.5rem;
    align-items: center;
    padding-bottom: 1.5rem;
}

.card-img-top img{
    height: 15rem;
    width: 15rem;
    border-radius: 50%;
    object-fit: cover;
    margin: 1rem 0;

}

.review .slide .user img{
    height: 7rem;
    width: 7rem;
    border-radius: 50%;
    object-fit: cover;

}

.review .slide .user h3{
    color:var(--black);
    font-size: 2rem;
    padding-bottom: .5rem;
}

.review .slide .user i{
    font-size: 1.3rem;
    color:var(--green);
}

.review .slide p{
    font-size: 1.7rem;
    line-height: 1.8;
    color:var(--light-color);
}




.speechcontainer{
   max-width: 1200px;
   margin:100px auto;
   display: flex;
   flex-wrap: wrap;
   align-items: flex-start;
   gap:20px;
   background:#fff;
    padding-top: 10rem;
    padding-bottom: 5rem;
}

.speechcontainer .main-video-container{
   flex:1 1 700px;
   border-radius: 5px;
   box-shadow: 0 5px 15px rgba(0,0,0,.1);
   background-color: #fff;
   padding:15px;
}

.speechcontainer .main-video-container .main-video{
   margin-bottom: 7px;
   border-radius: 5px;
   width: 100%;
}

.speechcontainer .main-video-container .main-vid-title{
   font-size: 20px;
   color:#444;
}

.speechcontainer .video-list-container{
   flex:1 1 350px;
   height: 485px;
   overflow-y: scroll;
   border-radius: 5px;
   box-shadow: 0 5px 15px rgba(0,0,0,.1);
   background-color: #fff;
   padding:15px;
}

.speechcontainer .video-list-container::-webkit-scrollbar{
   width: 10px;
}

.speechcontainer .video-list-container::-webkit-scrollbar-track{
   background-color: #fff;
   border-radius: 5px;
}

.speechcontainer .video-list-container::-webkit-scrollbar-thumb{
   background-color: #444;
   border-radius: 5px;
}

.speechcontainer .video-list-container .list{
   display: flex;
   align-items: center;
   gap:15px;
   padding:10px;
   background-color: #eee;
   cursor: pointer;
   border-radius: 5px;
   margin-bottom: 10px;
}

.speechcontainer .video-list-container .list:last-child{
   margin-bottom: 0;
}

.speechcontainer .video-list-container .list.active{
   background-color: #444;
}

.speechcontainer .video-list-container .list.active .list-title{
   color:#fff;
}

.speechcontainer .video-list-container .list .list-video{
   width: 100px;
   border-radius: 5px;
}

.speechcontainer .video-list-container .list .list-title{
   font-size: 17px;
   color:#444;
}


.magazine{
    background:#eee;
    padding-top: 20rem;
}

.magazine h1{
    font-size: 2rem;
    color: #219150;
    text-align: center;
   
}

.magazine .box-container{
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    text-align: justify;
    padding: 1rem 5rem;

}





@media (max-width:1200px){

   .speechcontainer{
      margin:0;
   }

}

@media (max-width:450px){

   .speechcontainer .main-video-container .main-vid-title{
      font-size: 15px;
      text-align: center;
   }

   .speechcontainer .video-list-container .list{
      flex-flow: column;
      gap:10px;
   }

   .speechcontainer .video-list-container .list .list-video{
      width: 100%;
   }

   .speechcontainer .video-list-container .list .list-title{
      font-size: 15px;
      text-align: center;
   }

}


.countries{
    background:#eee;
    padding-top: 20rem;
}

.countries h1{
    font-size: 2rem;
    color: #219150;
    text-align: center;
   
}

.countries .box-container{
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    text-align: justify;
    padding: 1rem 5rem;

}

.countries .image{
    flex:1 1 20rem;
}

.countries .image img{
    width: 100%;
    height: 30rem;
    flex: 1 1 22rem;
    padding-right: 5rem;
    padding-bottom: 5rem;
}

.countries .content{
    flex:1 1 80rem;
}

.countries .content h3{
    font-size: 2rem;
    color: #219150;
}

.countries .content p{
    font-size: 1.4rem;
    color: #10221b;
   font-weight: 300;
    line-height: 1.0;
}


.post{

    padding-top: 20rem;
}

.post h1{
    font-size: 2rem;
    color: #219150;
    text-align: center;
   
}
.post .box-container{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  text-align: justify;

}

.post .box-container .box{
  width:35rem;
  margin:2rem 1rem;
  overflow: hidden;
  border-radius: .5rem;
  box-shadow: 0 .3rem .5rem rgba(0,0,0,.3);
}

.post .box-container .box img{
  height:20rem;
  width: 100%;
  object-fit: cover;
}

.post .box-container .box .content{
  padding:0 1.5rem;
}

.post .box-container .box .content span{
  color:#666;
  font-size: 1.7rem;
  display: block;
  padding:1rem 0;
}

.post .box-container .box .content h3{
  font-size: 2rem;
    color: #219150;
}

.post .box-container .box .content:hover h3{
    color: #007bff;
}

.post .box-container .box .content p{
  font-size: 1.4rem;
  color:#000;
}


.plan{
    min-height: 100vh;
    background:#eee;
}

.plan .box-container{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding:2rem 0;
}

.plan .box-container .box{
    background:#fff;
    margin:1rem;
    padding:2rem;
    width:35rem;
    text-align: center;
    box-shadow: 0 0 .3rem rgba(0,0,0,.3);
    position: relative;
}

.plan .box-container .box .title{
    font-size: 2rem;
    color:#666;
    padding:1rem 0;
}

.plan .box-container .box .price{
    background:var(--orange);
    color:#fff;
    border-radius: 50%;
    margin:1rem auto;
    height:13rem;
    width:13rem;
    line-height: 13rem;
    text-align: center;
    font-size: 2.9rem;
}

.plan .box-container .box .price span{
    font-size: 2rem;
}

.plan .box-container .box ul li{
    color:#666;
    list-style: none;
    font-size: 1.7rem;
    padding:1rem 0;
}


.contactus{
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 2rem;
  background-color: #fafafa;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.contactus .form {
  width: 100%;
  max-width: 820px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.contactus .contact-form {
  background-color: #219150;
  position: relative;
}

.contactus .circle {
  border-radius: 50%;
  background: linear-gradient(135deg, transparent 20%, #219150);
  position: absolute;
}

.contactus .circle.one {
  width: 130px;
  height: 130px;
  top: 130px;
  right: -40px;
}

.contactus .circle.two {
  width: 80px;
  height: 80px;
  top: 10px;
  right: 30px;
}

.contactus .contact-form:before {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  background-color: #219150;
  transform: rotate(45deg);
  top: 50px;
  left: -13px;
}

.contactus form {
  padding: 2.3rem 2.2rem;
  z-index: 10;
  overflow: hidden;
  position: relative;
}

.contactus .title {
  color: #fff;
  font-size: 2rem;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 0.7rem;
}

.contactus .input-container {
  position: relative;
  margin: 1rem 0;
}

.contactus .input {
  width: 100%;
  outline: none;
  border: 2px solid #fafafa;
  background: none;
  padding: 0.6rem 1.2rem;
  color: #fff;
  font-weight: 500;
  font-size: 2rem;
  letter-spacing: 0.5px;
  border-radius: 5px;
  transition: 0.3s;
}

.contactus textarea.input {
  padding: 0.8rem 1.2rem;
  min-height: 150px;
  border-radius: 5px;
  resize: none;
  overflow-y: auto;
}

.contactus .input-container label {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  padding: 0 0.4rem;
  color: #fafafa;
  font-size: 2rem;
  font-weight: 400;
  pointer-events: none;
  z-index: 1000;
  transition: 0.5s;
}

.contactus .input-container.textarea label {
  top: 1rem;
  transform: translateY(0);
}

.contactus .btn {
  padding: 0.6rem 1.3rem;
  background-color: #fff;
  border: 2px solid #fafafa;
  font-size: 2rem;
  color: #1abc9c;
  line-height: 1;
  border-radius: 5px;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
  margin: 0;
  width: 100%;
}

.contactus .btn:hover {
  background-color: #AFDB0B;
  color: #000;
}

.contactus .input-container span {
  position: absolute;
  top: 0;
  left: 25px;
  transform: translateY(-50%);
  font-size: 0.8rem;
  padding: 0 0.4rem;
  color: transparent;
  pointer-events: none;
  z-index: 500;
}

.contactus .input-container span:before,
.contactus .input-container span:after {
  content: "";
  position: absolute;
  width: 10%;
  opacity: 0;
  transition: 0.3s;
  height: 5px;
  background-color: #1abc9c;
  top: 50%;
  transform: translateY(-50%);
}

.contactus .input-container span:before {
  left: 50%;
}

.contactus .input-container span:after {
  right: 50%;
}

.contactus .input-container.focus label {
  top: 0;
  transform: translateY(-50%);
  left: 25px;
  font-size: 0.8rem;
}

.contactus .input-container.focus span:before,
.contactus .input-container.focus span:after {
  width: 50%;
  opacity: 1;
}

.contactus .contact-info {
  padding: 2.3rem 2.2rem;
  position: relative;
}

.contactus .contact-info .title {
  color: #219150;
  font-size: 2rem;
}

.contactus .text {
  color: #333;
  margin: 1.5rem 0 2rem 0;
}

.contactus .information {
  display: flex;
  color: #555;
  margin: 0.7rem 0;
  align-items: center;
  font-size: 2rem;
}

.contactus .icon {
  width: 28px;
  margin-right: 0.7rem;
}

.contactus .social-media {
  padding: 2rem 0 0 0;
}

.contactus .social-media p {
  color: #333;
}

.contactus .social-icons {
  display: flex;
  margin-top: 0.5rem;
}

.contactus .social-icons a {
  width: 35px;
  height: 35px;
  border-radius: 5px;
  background: linear-gradient(45deg, #1abc9c, #219150);
  color: #fff;
  text-align: center;
  line-height: 35px;
  margin-right: 0.5rem;
  transition: 0.3s;
}

.contactus .social-icons a:hover {
  transform: scale(1.05);
}

.contactus .contact-info:before {
  content: "";
  position: absolute;
  width: 110px;
  height: 100px;
  border: 22px solid #1abc9c;
  border-radius: 50%;
  bottom: -77px;
  right: 50px;
  opacity: 0.3;
}

.contactus .big-circle {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: linear-gradient(to bottom, #1cd4af, #219150);
  bottom: 50%;
  right: 50%;
  transform: translate(-40%, 38%);
}

.contactus .big-circle:after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  background-color: #fafafa;
  border-radius: 50%;
  top: calc(50% - 180px);
  left: calc(50% - 180px);
}

.contactus .square {
  position: absolute;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(181%, 11%);
  opacity: 0.2;
}

@media (max-width: 850px) {
  .contactus .form {
    grid-template-columns: 1fr;
  }

  .contactus .contact-info:before {
    bottom: initial;
    top: -75px;
    right: 65px;
    transform: scale(0.95);
  }

  .contactus .contact-form:before {
    top: -13px;
    left: initial;
    right: 70px;
  }

  .contactus .square {
    transform: translate(140%, 43%);
    height: 350px;
  }

  .contactus .big-circle {
    bottom: 75%;
    transform: scale(0.9) translate(-40%, 30%);
    right: 50%;
  }

  .contactus .text {
    margin: 1rem 0 1.5rem 0;
  }

  .contactus .social-media {
    padding: 1.5rem 0 0 0;
  }
}

@media (max-width: 480px) {
  .contactus .container {
    padding: 1.5rem;
  }

  .contactus .contact-info:before {
    display: none;
  }

  .contactus .square,
  .contactus .big-circle {
    display: none;
  }

  .contactus form,
  .contact-info {
    padding: 1.7rem 1.6rem;
  }

  .contactus .text,
  .information,
  .social-media p {
    font-size: 2rem;
  }

  .contactus .title {
    font-size: 2rem;
  }

  .contactus .social-icons a {
    width: 30px;
    height: 30px;
    line-height: 30px;

  }

  .contactus .icon {
    width: 23px;
     padding: 0.45rem 1.2rem;
  }

  .contactus .input {
    padding: 0.45rem 1.2rem;
  }

  .contactus .btn {
    padding: 0.45rem 1.2rem;
  }
}



.contact{
    min-height: 100vh;
    padding-top: 10rem;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
}

.contact form{
    flex:1 1 40rem;
    padding:2rem;
    margin:1rem;
    margin-top: 4rem;
    border-radius: 0.5rem;
    box-shadow: 0 0 .5rem rgba(0,0,0,.3);

}

.contact .content{
    flex:1 1 40rem;
    padding:3rem 1rem;
}

.contact form .box{
    width:100%;
    color:#333;
    background: #eee;
    height:4rem;
    font-size: 1.7rem;
    border-bottom: .2rem solid rgba(0,0,0,.3);
    text-transform: none;
    margin:1rem 0;
    border-radius: 0.5rem;
}

.contact form .box::placeholder{
    text-transform: capitalize;
}

.contact form .box:focus{
    border-color: #de0022;
}

.contact form .message{
    height:15rem;
    resize: none;
    border-radius: 0.5rem;
}

.contact .content h3{
    font-size: 4rem;
    color:#444;
}

.contact .content p{
    font-size: 1.4rem;
    color:#666;
    padding:1rem 0;
}

.contact .content .icons{
    font-size: 1.7rem;
    color:#333;
    padding:.7rem 0;
}

.contact .content .icons i{
    padding-right: .5rem;
    color:var(--green);
}

.contact .btn{

    border-radius: 0.5rem;
    cursor: pointer;
    background-color: #009E3D;
    font-size: 1.7rem;
    padding: 3px 3px;
    color: #FFF;
    margin: 1rem 0;
    height: 3.5rem;
    width: 15rem;
    text-transform: capitalize;
   
  
}
    

.contact .btn:hover{
    color: #fff;
    letter-spacing: .1rem;
    background: #007bff;
}


.wrapper{
  margin: 100px auto;

}
.wrapper nav{
  display: flex;
 
}
.wrapper .items{
  display: flex;
 
 
}
.items span{
  padding: 3px 3px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  color: #007bff;
  border-radius: 50px;
  border: 2px solid #007bff;
  transition: all 0.3s ease;
}
.items span.active,
.items span:hover{
  color: #fff;
  background: #007bff;
}

.gallery{
  display: flex;
  flex-wrap: wrap;
  margin-top: 0px;
  border-radius: 6px;
}
.gallery .image{
  width: calc(100% / 4);
  padding: 7px;

}
.gallery .image span{
  display: flex;
  width: 100%;
  overflow: hidden;
}
.gallery .image img{
  width: 100%;
  vertical-align: middle;
  transition: all 0.3s ease;
}
.gallery .image:hover img{
  transform: scale(1.1);
}
.gallery .image.hide{
  display: none;
}
.gallery .image.show{
  animation: animate 0.4s ease;
}
@keyframes animate {
  0%{
    transform: scale(0.5);
  }
  100%{
    transform: scale(1);
  }
}

.preview-box{
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: #fff;
  max-width: 700px;
  width: 100%;
  z-index: 5;
  opacity: 0;
  pointer-events: none;
  border-radius: 3px;
  padding: 0 5px 5px 5px;
  box-shadow: 0px 0px 15px rgba(0,0,0,0.2);
}
.preview-box.show{
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
  transition: all 0.3s ease;
}
.preview-box .details{
  padding: 13px 15px 13px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.preview-box .details .title{
  display: flex;
  font-size: 18px;
  font-weight: 400;
}
.preview-box .details .title p{
  font-weight: 500;
  margin-left: 5px;
}
.preview-box .details .icon{
  color: #007bff;
  font-style: 22px;
  cursor: pointer;
}
.preview-box .image-box{
  width: 100%;
  display: flex;
}
.image-box img{
  width: 100%;
  border-radius: 0 0 3px 3px;
}
.shadow{
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 2;
  display: none;
  background: rgba(0,0,0,0.4);
}
.shadow.show{
  display: block;
}

@media (max-width: 1000px) {
  .gallery .image{
    width: calc(100% / 3);
  }
}
@media (max-width: 800px) {
  .gallery .image{
    width: calc(100% / 2);
  }
}
@media (max-width: 700px) {
  .wrapper nav .items{
    max-width: 600px;
  }
  nav .items span{
    padding: 7px 15px;
  }
}
@media (max-width: 600px) {
  .wrapper{
    margin: 30px auto;
  }
  .wrapper nav .items{
    flex-wrap: wrap;
    justify-content: center;
  }
  nav .items span{
    margin: 5px;
  }
  .gallery .image{
    width: 100%;
  }
}


.gallerys{
    flex: 1;
    padding-top: 20rem;
    background:#eee;
    padding-bottom: 100px;
}

.gallerys .controls{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding:20px 0;
    list-style: none;
}

.gallerys .controls .buttons{
    height:40px;
    width: 200px;
    background:#fff;
    font-size: 15px;
    line-height: 40px;
    cursor: pointer;
    margin:10px;
    box-shadow: 0 3px 5px rgba(0,0,0,.3);
    text-align: center;
    color: #007bff;
    border-radius: 50px;
    border: 2px solid #fff;
    transition: all 0.3s ease;
}

.gallerys .controls .buttons.active{
    background:#FF4000;
    color:#fff;
}

.gallerys .image-container{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.gallerys .image-container .image{
    height:250px;
    width: 350px;
    overflow: hidden;
    border:2px solid #fff;
    box-shadow: 0 3px 5px rgba(0,0,0,.3);
    margin: 3px;
}

.gallerys .image-container .image img{
    height: 100%;
    width:100%;
    object-fit: cover;
}

.gallerys .image-container .image:hover img{
    transform: scale(1.4);
}


  .footer {

      background:#000;
    }

    .footer .box-container {
      align-items: center;
      display: -ms-grid;
      display: grid;
      -ms-grid-columns: (minmax(25rem, 1fr))[auto-fit];
          grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
      gap: 1.5rem;
    }

    .footer .box-container .box h3 {
      font-size: 2rem;
      padding: 1.5rem 0;
      color: #219150;
    }

    .footer .box-container .box a {
      display: block;
      font-size: 1.4rem;
      color: #fff;
      padding: 1rem 0;
    }

    .footer .box-container .box a i {
      color: #009E3D;
      padding-right: .5rem;
    }

    .footer .box-container .box a:hover {
    color: #009E3D;
    }

    .footer .box-container .box a:hover i {
      padding-right: 2rem;
    }

    .footer .credit {
      text-align: center;
      margin-top: 0.5rem;
      padding: 1rem;
      padding-top: 0.0rem;
      font-size: 1.4rem;
      color: #fff;
    }

    .footer .credit span {
      color: #009E3D;
      display: inline;
      vertical-align: middle;
      font-size: 1.4rem;
    }

    /* keep credit on a single line; shrink on small screens if needed */
    .footer .credit {
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      font-size: 1.4rem;
    }

    /* ensure link doesn't break line and matches footer color */
    .footer .credit a {
      display: inline;
      color: inherit;
      text-decoration: none;
      font-size: 1.4rem;
    }

    .footer .credit a:hover{
      color: #009E3D;
      text-decoration: underline;
    }

    @media (max-width: 480px) {
      .footer .credit {
        font-size: 1.6rem;
        padding-top: 1.2rem;
      }
    }



/* media queries  */

@media (max-width: 820px){
  .img-slider{
    width: 600px;
    height: 375px;
  }

  .img-slider .navigation{
    bottom: 25px;
  }

  .img-slider .navigation .btn{
    width: 10px;
    height: 10px;
    margin: 8px;
  }
}

@media (max-width: 620px){
  .img-slider{
    width: 400px;
    height: 250px;
  }

  .img-slider .navigation{
    bottom: 15px;
  }

  .img-slider .navigation .btn{
    width: 8px;
    height: 8px;
    margin: 6px;
  }
}

@media (max-width: 420px){
  .img-slider{
    width: 320px;
    height: 200px;
  }
  .img-slider .navigation{
    bottom: 10px;
  }
}

@media (max-width: 991px) {
      html {
        font-size: 55%;
        scroll-padding-top: 7rem;
      }

       .home{
        grid-template-columns: 2fr 1fr;
    }
      .home .box {
        padding: 2rem;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        background-position: right !important;
      }
      .home .box.second {
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        background-position: left !important;
      }
      .home .box .content {
        text-align: center;
      }
      .home .box .content span {
        font-size: 2rem;
      }
      .home .box .content h3 {
        font-size: 4rem;
      }

      section{
        padding:2rem;
    }    

    .container{
        grid-template-columns: 2fr 1fr;
    }
    }

@media (max-width:768px){

    html{
        font-size: 55%;
    }

    .home {
        grid-template-columns: 1fr;
        gap:0;
    }
    .home .img-slider {
        height: 300px;
    }

    .home .content{
        text-align: center;
    }

    .home .content h1{
        font-size: 4rem;
    }

    .about .content h1{
        font-size: 4rem;
    }

    .amb .content h1{
        font-size: 4rem;
    }
    .amb .content h2{
        font-size: 2rem;
    }


     .bilateral{
        grid-template-columns: 1fr;
        gap:0;
        flex: 1;
    }

    .bilaterals{
        grid-template-columns: 1fr;
        gap:0;
    }

      .container{
        grid-template-columns: 1fr;
        gap:0;
        flex: 1;
    }

    .container .posts-container .post .image{
        height: 30rem;;
    }

}

@media (max-width: 991px) {

  header #menu {
    display: block;
    position: absolute;
    right: 20px;
    top: 25px;
    color: #fff;
    font-size: 28px;
  }

  header .navbar {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    display: none;
  }

  header .navbar ul {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  header .navbar ul li {
    width: 100%;
    margin: 0;
  }

  header .navbar ul li a,
  .dropdown .dropbtn {
    display: block;
    width: 100%;
    padding: 15px;
    border-left: none;
  }

  .dropdown-content {
    position: static;
    width: 100%;
    box-shadow: none;
  }

  .dropdown-content a {
    padding-left: 30px;
  }

  /* THIS matches your jQuery */
  header .navbar.nav-toggle {
    display: block;
  }

}
