*{margin:0;
  padding:0;
  box-sizing: border-box;
}

body {
    font-family: lato, sans-serif;
   
    
}

html {
    scroll-behavior: smooth;
  }












/*
.mylogo {
    position: fixed;
    top:5%;
    left:4%;
    width: 10rem;
    z-index: 1000;
}*/









    

    





.banner{
    text-align: center;
    position: absolute;
    top:50%;
    left: 50%;
    transform: translate(-50%,-50%);
     
    
}



h1, h2,h3 {
    letter-spacing: 0.1rem;
}

.banner-h1 {
    text-transform: uppercase;
    font-size: 3rem;
   
    animation: slideFromRight ease-in-out 5s 1;
   
}

.banner-h2 {
    margin-top: 1rem;
    animation: slideFromLeft ease-in-out 5s 1;
    color: white;
    text-shadow: 0 0 0.3rem rgb(6, 6, 80);
    font-style: italic;
    font-size: 2rem;

}



.banner-link {
    text-decoration: none;
    margin-top: 1.5rem ;
    display: inline-block;
    color: whitesmoke;
    padding: 0.8rem 1rem;
    background-color: #a56a0c;;
    box-shadow: 0.2rem 0.1rem 0.3rem black;
    animation: show 5s linear 1;
    transition: 1s all;
    
}

.banner-link:hover {
  
    background-color: rgb(207, 177, 45);
    
}


   

    .banner-h1 { 
        margin-top: 3rem;
        font-size: 2rem;    
    }

    .banner-h2 { 
        font-size: 0.95rem;    
    }

    .banner-link {
       
        padding: 0.5rem 1rem;
       
    }



@media  screen and (min-width:481px)  and (max-width:767px){

    .banner-h1 { 
        font-size: 3rem;    
    }

    .banner-link {
       
        padding: 0.6rem 1rem;
       
    }
}

@media  screen and (min-width:768px)  and (max-width:1023px){

    .banner-h1 { 
        font-size: 3.5rem;    
    }

    .banner-link {
       
        padding: 0.7rem 1rem;
       
    }
}





  
  /*********************/
/*----FOOTER----**/
/********************/

.email-link {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background-color: rgb(240, 240, 240);
    margin-bottom: 2rem;
    color:rgb(82, 58, 12);
    font-weight: 600;
    text-decoration: none;
}
 
.facebook-icon,.twitter-icon, .linkedin-icon {
    width: 2.5rem;
}

.social-icons{
    text-align: center;
}

.social-icons span {
    padding: 0.5rem;
}

.footer {
    padding: 3rem 0;
    background-color: rgb(16, 62, 10);
    text-align: center;
    border-top: 0.4rem solid rgb(199, 199, 38);
   
    
}

.footer-text{
    text-align: center;
    margin-top: 1.5rem;
    color: rgb(248, 214, 20);
}

.footer-text .span-1 {
    color:cornsilk
}

.footer-text a {
    color:rgb(237, 245, 126);
    text-decoration: none;
}


.contact-footer {
   background-color:#0e6277;
}


/*PARTNERS*/

.partners-section{
    background-color: rgb(255, 255, 255);
    padding: 3rem 0;
    text-align: center;

}

.all-partners{
    width: 85%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
}



.partner-image {
  width: 10rem; 
}

.partner-logo{
    width: 100%;
}

.partner {
    flex: 1 20rem;
    max-width: 20rem;
    margin:1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.partner-name{
    color: rgb(47, 108, 165);
    text-transform: uppercase;
    text-align: center;
}

 


 /*********************/
/*----NAV BAR----**/
/********************/

.nav {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    background-color: rgba(0, 0, 0, 0.198);
    background-color: white;
    z-index: 10;
}

.nav-content{
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    
   
}

.logo-box{
    width: 5rem;
}

.logo-image{
    width:100%;
}

.menu-items{
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
   
    margin-top: 1rem;
    
    
}

.menu-item{
    margin-left: 2rem;
    
}

.menu-link{
    color:rgb(61, 156, 23);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1.2rem;
    font-weight: 500;
    transition: 0.5s;

/*underlining*/
position: relative;


/*underlining*/

}

.menu-link::before{
    content: "";
   position: absolute;
   width: 100%;
   height: 3px;
   bottom: 0;
   top:1.7rem;
   left: 0;
   background-color: #a5d6ec;
   visibility: hidden;
   -webkit-transform: scaleX(0);
       transform: scaleX(0);
      -webkit-transition: all 0.3s ease-in-out 0s;
      transition: all 0.3s ease-in-out 0s;
}

.menu-link:hover::before{
    visibility: visible;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

.menu-link:hover{
    color:#39aadf;
   
}



.mobile-nav{
   
    display: none;
}




.close-icon-box{
    width: 3.5rem;
    position: fixed;
    top:2rem;
    right:2rem;
    cursor: pointer;
}

.close-icon{
    width:100%;
}

.menu-icon{
    position: fixed;
    top:1rem;
    right:2rem;
    width:3rem;
    z-index: 15;
    display: none;
    cursor: pointer;

}

.menu-icon span, .close-icon-box span{
    color:rgb(168, 94, 25);
    font-size: 3.5rem;
}

.menu-open{
    width:100%;
}

@media screen and (max-width:1080px) {

.menu-icon{
    display: block;
} 
.mobile-nav{
    position: absolute;
    z-index: 20;
    background-color: rgb(255, 243, 227);
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(-110%);
    transition: 0.5s;
    
}

.mobile-nav.show {
    transform:translateX(0); ;
}
    
    .menu-items {
        display: none;
    } 
    
    .mobile-menu-items{
        list-style: none;
    }

    .mobile-menu-item{
        margin-bottom: 1rem;
text-align: center;
    }
    
    .mobile-menu-link{
        text-decoration: none;
        text-transform: uppercase;
        font-size: 1.3rem;
        font-weight: 500;
        color:rgb(168, 94, 25);
        
    }
    

    
       
   

    
}





  
  




/*********************/
/*----ANIMATION----**/
/********************/

@keyframes bounce {
0%{
transform: scale(1);
}

50%{
transform: scale(1.2);

}

100%{
transform: scale(1);

}

}



/*********************/
/*----CIRCLES----**/
/********************/

.circle1, .circle2 {
    position: absolute;
    width: 2rem;
    height: 2rem;
    border-radius: 100%;
    background-color: blue;
}


.circle1 {
    animation: movingcircles 20s ease infinite;
    transition: 3s all;
}

.circle2 {
    animation: movingcircles2 20s ease infinite;
    transition: 3s all;
}


@keyframes movingcircles {
    0%{ top: 90%;
        left:5%;
        background-color: rgba(0, 255, 42, 0.822);
        transform: scale(1);
    }
        

    20% { top: 70%;
          left: 5%;
          background-color: rgba(187, 165, 70, 0.746);
          transform: scale(1.3);
        }
        
    40%{
          top: 50%;
          left: 5%;
          background-color: rgba(251, 255, 0, 0.931);
          transform: scale(1.5);
          border: 1rem solid rgb(218, 131, 60);
        
        }
        
    60%{
         top:30%;
         left:5%;
         background-color: rgba(117, 218, 134, 0.575);
         transform: scale(1.4);
         border: 1rem solid rgb(109, 108, 108);
        }

        80%{
            top:10%;
            left:5%;
            background-color: rgba(12, 78, 18, 0.897);
            transform: scale(1.3);
            
        
        }

    100%{
        top:5%;
        left:5%;
        background-color: rgb(187, 255, 0);
        transform: scale(1.1);
        
        
        }
}


@keyframes movingcircles2 {
    0%{ top: 90%;
        right:5%;
        background-color: rgba(179, 255, 0, 0.575);
        transform: scale(1);
    }
        

    30% { top: 70%;
         right: 5%;
          background-color: rgba(2, 243, 82, 0.746);
          transform: scale(1.2);
        }
        
    45%{
          top: 60%;
          right: 5%;
          background-color: rgba(255, 238, 0, 0.979);
          transform: scale(1.2);
        
        }
        
    65%{
         top:50%;
         right:5%;
         background-color: rgba(167, 90, 18, 0.986);
         transform: scale(1.3);
        }

        70%{
            top:40%;
            right:5%;
            background-color: rgba(21, 255, 0, 0.959);
            box-shadow: 0 0 1rem rgb(133, 255, 18);
            transform: scale(1.4);
        
        }

    100%{
        top:10%;
        right:5%;
        background-color: rgba(255, 230, 0, 0.787);
        box-shadow: 0 0 1rem rgb(110, 165, 8);
        transform: scale(1.5);
        
        }
}


@keyframes slideFromRight{
0%{
    transform: translateX(1000px);
    opacity: 0;
}

50%{
    transform: translateX(-100px);
    opacity: 0.5;
}

75%{
    transform: translateX(50px);
    opacity: 0.75;
}


100%{
    transform: translateX(0);
    opacity: 1;
}


}


@keyframes slideFromLeft{
    0%{
        transform: translateX(-1000px);
        opacity: 0;
    }
    
    50%{
        transform: translateX(100px);
        opacity: 0.5;
    }
    
    75%{
        transform: translateX(-50px);
        opacity: 0.75;
    }
    
    
    100%{
        transform: translateX(0);
        opacity: 1;
    }
    
    
    }


    @keyframes show{
        0%{
            transform: scale(1.5);
            opacity: 0;
        }
        
        50%{
            transform: scale(2);
            opacity: 0.5;
        }
        
       
        
        
        100%{
            transform: scale(1);
            opacity: 1;
        }
        
        
        }

      

        #preloader{
            background: rgb(255, 255, 255) url('loading.gif');
            background-position: center;
            background-repeat: no-repeat;
            background-size: 20rem;
            width: 100%;
            height: 100vh;
            position: fixed;
            z-index: 3;
        }

        .bensites {
          animation: bensites-animation 3s linear infinite;
          transition: 2s all;
        }

        .uganda {
            animation: uganda-animation 3s linear infinite;
            transition: 2s all;
        }

        @keyframes bensites-animation{
          0% {
                 text-shadow: 0 0 0rem white;
                 /*color:rgb(57, 160, 26);*/
                 color:rgb(31, 117, 230);
          }


          50% {
            text-shadow: 0 0 0rem rgb(48, 212, 19);
            /*color:rgb(57, 160, 26);*/
            color:rgb(255, 255, 255);
     }

          100%{
            text-shadow: 0.2rem 0 0.4rem rgb(180, 149, 12);
            color: rgb(255, 255, 255);
          }

        }

        @keyframes uganda-animation{
            0% {
                text-shadow: 0.2rem 0 0.4rem rgb(197, 163, 8);
                   color: rgb(255, 255, 255);
            }


            50% {
                text-shadow: 0 0 0rem rgb(74, 197, 17);
                /*color:rgb(57, 160, 26);*/
                color:rgb(255, 255, 255);
         }
  
            100%{
              text-shadow: 0 0 0rem white;
              /*color:rgb(7, 121, 7);*/
              color:rgb(230, 177, 31);
            }
  
          }

          .section-center {
                    padding:3.5rem 0; 
                    margin: 0 auto;
                    /* width: 85%; */
                    text-align: center;
background: linear-gradient(to bottom right, rgb(129, 200, 129), white,white,white, white,white,rgb(112, 187, 112));
background-size: cover;
background-position: center;
                  
                    
          }
          
          .who-we-are{
             /* display: flex;
             flex-direction: column;
             justify-content: center;
             align-items: center; */
             max-width: 85%;
             margin:0 auto;
              
          }

          .who-we-are2{
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            margin-top: -4rem;
             
         }

          .audience {
            text-align: center; 
          }

         
.wwa-link {
    text-decoration: none;
    margin-top: 1.5rem ;
    display: inline-block;
    color: whitesmoke;
    padding: 0.3rem 1rem;
    background-color: rgb(17, 177, 20);
    border: 0.2rem solid rgb(17, 177, 20);
    box-shadow: 0.2rem 0.1rem 0.3rem black;
    transition: 1s all;
    
}

.wwa-link:hover {
  
    background-color: #2ba50c00;
    color:rgb(17, 177, 20);
    
}











.welcome-p{
    color:rgb(35, 67, 33);
    font-size: 1.2rem;
    
    line-height: 1.7rem;
    text-align: justify;
    margin-top: 2rem;
    font-family: 'Poppins', sans-serif;
}

@media screen and (max-width:480px){
    
}


/*********************/
/*-----Home Services-----*/
/*********************/


.home-services, .completed-works, .our-team-members{
    background-color: rgb(253, 210, 158);
    padding:3.5rem 0;
    text-align: center;
}

.services-services{
    padding-top: 0.5rem;
}

.home-services-1 {
    padding-bottom: 0;
}

.home-services-2 {
    padding-top: 1rem;
}





.completed-works{
    background-color: white;
    width:85%;
    margin:0 auto;
}



.completed-works .value {
    width: 14rem;
    
}


.completed-works th {
    text-align: left;
}

.home-services-h2, .works-h2{
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color:rgb(69, 172, 21);
}

.projects-h2, .projects-h3 {
    margin-top: 3rem;
}

.projects-h3{
    font-size: 1.3rem;
    color:#57b30b;
}






.home-services-center{
    padding-top: 3rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
}
  
.clearfix::before, .clearfix::after {
    content: "";
    display: table;
    clear: both;
}

.home-service{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0.5rem rgba(30, 59, 78, 0.541);
  
    width: 24rem; 
    text-align: center;
    margin: 0.5rem;
    background-color: rgb(117, 62, 17);
   
}

.home-image-box{
    background-color: #6fd1f8;
    margin: 1rem;
   
    height: 100%;

    overflow: hidden;
}


.home-service-image{
    width: 100%;
    height: 18rem;
    object-fit: cover;
    transition: 0.5s;
   
}


.home-service-image:hover{
    opacity: 0.8;
    transform: scale(1.1);
}



.home-service-h3{
    letter-spacing: 0.1rem;
    text-align: center;
    color:#ffffff;
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
}


.home-services-link{
    display:inline-block;
    color:#1cb0eb;
    text-decoration: none;
    margin-top: 2rem;
    border: 0.1rem solid #1cb0eb;
    border-radius: 0.8rem;
    padding: 0.5rem 0.8rem;
    transition: 0.5s all;
   line-height: 0.8rem;

}

.home-services-link:hover{
   
    color:#ffffff;
    background-color: #1cb0eb;
    border: 0.1rem solid #1cb0eb;
  

}












/**********************/
/*--ENTERPRISES--**/
/*********************/

.enterprises{
    background-color: rgb(245, 238, 201);
    padding:3.5rem 0;
}

.enterprises-h2{
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color:#a56a0c;
}

.line1 {
    height: 0.4rem;
    width:15rem;
    margin:0 auto;
    background-color:rgb(84, 178, 22);
    position: relative;
}

.projects-line1{
    margin-bottom: 2rem;
}

.line2 {
    height: 1.6rem;
    width:1.6rem;
    background-color:rgb(218, 197, 12) ;
    position: absolute;
    top:50%;
    left:50%;
    border-radius: 50%;
   
    transform: translate(-50%,-50%);
}

.enterprises-center{
    padding-top: 3rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
}
  
.clearfix::before, .clearfix::after {
    content: "";
    display: table;
    clear: both;
}

.enterprise{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 24rem; 
    text-align: center;
    margin: 0.5rem;
   
}

.enterprise-image-box{
    background-color: #d69c1f;
    margin: 1rem;
    height: 18rem;
    overflow: hidden;
}


.enterprise-image{
    width: 100%;
    height: 18rem;
    object-fit: cover;
    transition: 0.5s;
   
}

.enterprise-image:hover{
    opacity: 0.8;
    transform: scale(1.1);
}

.enterprise-h3{
    letter-spacing: 0.1rem;
    text-align: center;
    color:#a56a0c;
}

.enterprise-p{
    line-height: 1.5rem;
    font-size: 1.1rem;
    padding:0 0.5rem;
    margin-top: 0.5rem;
    text-align: justify;
    color:rgb(12, 71, 7);
}

.enterprise-link:link,.enterprise-link:visited {
display: inline-block;

color: white;
text-decoration: none;
color: teal;
margin-top: 0.5rem;
font-weight: 600;

}

.enterprise-link:hover,.enterprise-link:active {
    display: inline-block; 
    text-decoration: none; 
    color:black; 
}


@media  screen and (max-width:480px) {

    .enterprise-image-box{
        
        margin-left: 0;
        margin-right: 0;
        
    }

}

@media  screen and (min-width:481px)  and (max-width:767px){
    .enterprise-image-box{
        
        margin-left: 0;
        margin-right: 0;
        
    }
   
}

@media  screen and (min-width:768px)  and (max-width:1023px){

   

   
}

/**********************/
/*--CONTACT--**/
/*********************/

.contact-section{
    padding: 3rem 0;
    width:85%;
    margin: 0 auto;
    text-align: center;
    padding-top: 0;
}

.contact-details {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 3rem;
    background-color: #d3fdc4;
    padding:2rem 1rem;
    padding-top: 0;

    box-shadow: 0 0 0.3rem rgb(26, 86, 121);
    

}

.contact-h3{
    font-size: 1.4rem;
    letter-spacing: 0.1rem;
    color:#29a20e;
    margin-bottom: 1rem;
}

.contact-p {
    font-size: 1.3rem;
    color: #0c3e13;
}

.contact-detail {
    flex: 1 20rem;
    margin-top: 2rem;
}









.services-header {
    background: linear-gradient(rgba(98, 214, 62, 0.664),rgba(27, 73, 27, 0.445)), url('IMAGE3.jpeg');
    height: 20rem;
    width: 100%;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;  
}

.works-header {
    background: linear-gradient(rgba(82, 192, 55, 0.664),rgba(15, 68, 32, 0.445)), url('IMAGE1.jpeg');
    height: 20rem;
    width: 100%;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;  
}

.other-headers {
    background: linear-gradient(rgba(0, 183, 255, 0.664), rgba(0, 174, 255, 0.589)), url('20200505_150006.jpg');
   width: 100%;
   margin: 0 auto;
   display: flex;
   justify-content: space-around;
align-items: center;
flex-wrap: wrap;
height: 25rem;
color:white;
text-align: center;
    
}

.contact-header {
    background: linear-gradient(rgba(7, 57, 7, 0.664), rgba(13, 54, 6, 0.589)), url('KOB.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.tourism-header {
    background: linear-gradient(rgba(0, 183, 255, 0.664), rgba(0, 174, 255, 0.589)), url('Buffaloes.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.lm2d {
    background: linear-gradient(rgba(47, 85, 43, 0.664), rgba(42, 94, 36, 0.589)), url('zebra2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.qe3d{
    background: linear-gradient(rgba(47, 85, 43, 0.664), rgba(42, 94, 36, 0.589)), url('Elephant3.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.mf3d{
    background: linear-gradient(rgba(47, 85, 43, 0.664), rgba(42, 94, 36, 0.589)), url('Murchison-Falls1X.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.g3d{
    background: linear-gradient(rgba(47, 85, 43, 0.664), rgba(42, 94, 36, 0.589)), url('gorilla-trekking.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.fg3d{
    background: linear-gradient(rgba(47, 85, 43, 0.664), rgba(42, 94, 36, 0.589)), url('Gorrila1.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.sf3d{
    background: linear-gradient(rgba(47, 85, 43, 0.664), rgba(42, 94, 36, 0.589)), url('sipi2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.qe4d{
    background: linear-gradient(rgba(47, 85, 43, 0.664), rgba(42, 94, 36, 0.589)), url('hippop-1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.glc4d{
    background: linear-gradient(rgba(47, 85, 43, 0.664), rgba(42, 94, 36, 0.589)), url('Lion1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.glc4d{
    background: linear-gradient(rgba(47, 85, 43, 0.664), rgba(42, 94, 36, 0.589)), url('Lion1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;

}

.k5d{
    background: linear-gradient(rgba(47, 85, 43, 0.664), rgba(42, 94, 36, 0.589)), url('Giraffe2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;

}

.kq6d{
    background: linear-gradient(rgba(47, 85, 43, 0.664), rgba(42, 94, 36, 0.589)), url('zebra2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;

}

.sg7d{
    background: linear-gradient(rgba(47, 85, 43, 0.664), rgba(42, 94, 36, 0.589)), url('savannah-.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;

}

.mk7d{
    background: linear-gradient(rgba(47, 85, 43, 0.664), rgba(42, 94, 36, 0.589)), url('Murchison-Falls1X.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;

}

.hm7d{
    background: linear-gradient(rgba(47, 85, 43, 0.664), rgba(42, 94, 36, 0.589)), url('IMG/hm.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.cw8d{
    background: linear-gradient(rgba(47, 85, 43, 0.664), rgba(42, 94, 36, 0.589)), url('IMG/k1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.eu9d{
    background: linear-gradient(rgba(47, 85, 43, 0.664), rgba(42, 94, 36, 0.589)), url('DRIVE.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.ps10d{
    background: linear-gradient(rgba(47, 85, 43, 0.664), rgba(42, 94, 36, 0.589)), url('savannah-.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.r10d{
    background: linear-gradient(rgba(47, 85, 43, 0.664), rgba(42, 94, 36, 0.589)), url('r1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}


.fs11d{
    background: linear-gradient(rgba(47, 85, 43, 0.664), rgba(42, 94, 36, 0.589)), url('leop.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.p12d{
    background: linear-gradient(rgba(47, 85, 43, 0.664), rgba(42, 94, 36, 0.589)), url('Chimp2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.h14d{
    background: linear-gradient(rgba(47, 85, 43, 0.664), rgba(42, 94, 36, 0.589)), url('r2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.n15d{
    background: linear-gradient(rgba(47, 85, 43, 0.664), rgba(42, 94, 36, 0.589)), url('uganda-kob-resting.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.ns16d{
    background: linear-gradient(rgba(47, 85, 43, 0.664), rgba(42, 94, 36, 0.589)), url('IMG/k2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.eu21d{
    background: linear-gradient(rgba(47, 85, 43, 0.664), rgba(42, 94, 36, 0.589)), url('Bird1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.kibale-header {
    background: linear-gradient(rgba(0, 183, 255, 0.664), rgba(0, 174, 255, 0.589)), url('Chimp2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.kidepo-header {
    background: linear-gradient(rgba(0, 183, 255, 0.664), rgba(0, 174, 255, 0.589)), url('Lion1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.mburo-header {
    background: linear-gradient(rgba(0, 183, 255, 0.664), rgba(0, 174, 255, 0.589)), url('savannah-.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.rwenzori1-header {
    background: linear-gradient(rgba(0, 183, 255, 0.664), rgba(0, 174, 255, 0.589)), url('IMG-20211013-WA0015.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.rwenzori2-header {
    background: linear-gradient(rgba(0, 183, 255, 0.664), rgba(0, 174, 255, 0.589)), url('m1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.rwenzori4-header {
    background: linear-gradient(rgba(0, 183, 255, 0.664), rgba(0, 174, 255, 0.589)), url('h2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.rwenzori6-header {
    background: linear-gradient(rgba(0, 183, 255, 0.664), rgba(0, 174, 255, 0.589)), url('r1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.packages-header {
    background: linear-gradient(rgba(0, 183, 255, 0.664), rgba(0, 174, 255, 0.589)), url('KAZINGA2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}




.headers-h1{
    font-size: 2.4rem;
    letter-spacing: 0.1rem;
    text-shadow: 0.2rem 0.2rem 0.2rem rgb(11, 57, 78);
}

.headers-p {
    font-size: 1.8rem;
    font-style: italic;
}

.left-content, .right-content {
    
    margin-top: 4.5rem;
}

.partners-header {
    background: linear-gradient(rgba(42, 231, 238, 0.664),rgba(11, 76, 102, 0.445)), url('pexels-photo-955395.jpeg');
    height: 20rem;
    width: 100%;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;  
}



.headers-h2 {
    font-size: 2.5rem;
    color: rgb(255, 255, 255);
    text-shadow: 0.2rem 0 0.3rem rgb(0, 0, 0);
    font-family: 'Lato', sans-serif;
}


@media screen and (max-width:639px){
    .headers-h1 {
        margin-top: 2.5rem;
    }

    .headers-h2 {
        margin-top: -3rem;
    }
}

.vision, .mission {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;    
}


.mission {
    flex-direction: row-reverse;
}





.vision-text, .vision-image, .mission-text, .mission-image {
    flex: 1 25rem;
    margin: 0.5rem;
    max-width: 30rem;
}





.vision-h2, .mission-h2, .values-h2 {
    font-size: 2.5rem;
    color:rgb(65, 243, 59);
    text-align: center;
    text-shadow: 0.2rem 0 0.2rem rgb(13, 53, 22);
}


.vision-p, .mission-p, .values-p {
    font-size: 1.5rem;
    font-style: italic;
    margin-top: 1rem;
    color:rgb(28, 87, 155);
    text-align: center;
}

.philosophy-p{
    font-size: 1.3rem;
    
    margin-top: 1rem;
    color:rgb(28, 87, 155);
    text-align: justify;
    line-height: 1.8rem;
}


.vision-photo, .mission-photo {
    width: 100%;
    border-radius: 0.3rem;
}

.values, .philosophy {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 2.5rem;
}

.core-values, .philosophies {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    margin-top: 1.2rem;
    
}





.value-name-p, .value-icon, .philosophy-icon, .philosophy-name-p{
    margin-left: 0.5rem;
    font-size: 1.4rem;
    color:rgb(28, 87, 155);
}


.value, .philosophy-item{
    display: flex;
    
    justify-content: flex-start;
    align-items: center;
    width: 12rem;
  
}

.philosophy-item{
    width: 100%;
    align-items: flex-start;
}


   

    








.audience-p ol {
      
            color:#a56a0c;
            font-size: 1.2rem;
            line-height: 1.7rem;
            display: flex;
            align-items: center;
            justify-content: center;
            
        }

        .audience-h2{
            text-align: center;
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color:#a56a0c;
        }



.audience-content li {
    color:#a56a0c;
    font-size: 1.2rem;
    line-height: 1.7rem;
}

.audience-content ol {
    margin-top: 2rem;
}
    

  


    
 
  

  
/************************/
/*--ENTERPRISES PAGE--**/
/***********************/
.enterprise1  {
    display: flex;
    
    background-color: rgba(233, 176, 122, 0.239);
    justify-content: space-around;
    box-shadow: 0rem 0rem 0.5rem rgb(189, 113, 13);
    margin: 2rem 0;
}

.enterprise1-image{
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;

}

.cow-image{
    width:100%;
}

.enterprise1-text{
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color:rgb(143, 85, 30);
}

.enterprise1-text h2 {
    letter-spacing: 0.1rem;
    font-size: 2.2rem;
}



@media screen and (max-width:480px){

    .enterprise1  {
        flex-direction: column;
    }

    .enterprise1-text h2 {
        
        font-size: 1.8rem;
    }

    .enterprise1-image{
        width: 100%;
      
    }


    .enterprise1-text{
        margin: 1rem 0;
        width: 100%;
        text-align: center;
    }


}

@media screen and (min-width:481px) and (max-width:767px){
    .enterprise1-text h2 {
        
        font-size: 1.8rem;
    }
    .enterprise1  {
        flex-direction: column;
    }

    .enterprise1-image{
        width: 100%;
      
    }

    .cow-image {
        max-width: 25rem;
    }


    .enterprise1-text{
        margin: 1rem 0;
        width: 100%;
        text-align: center;
    }


}

@media screen and (min-width:768px) and (max-width:1023px){
    .enterprise1-text{
        
        text-align: center;
    }  
}



/**********************/
   /*--HEADER SLIDER--**/
/*********************/

.d-block{
    height:100vh;
    object-fit: cover;
}

.project-1-slide {
    height: 70vh;
}


.slide-link {
   /* background-color:rgb(108, 235, 35) ;*/
    /*background-color:rgb(76, 163, 25) ;*/
    background-color: rgb(17, 132, 177);


    color: white;
    display: inline-block;
    padding: 0.5rem 0.9rem;
    box-shadow: 0.1rem 0.2rem 0.3rem black;
    text-decoration: none;
}

.slide-link:hover {
    background-color:rgb(13, 88, 117);
    color:white;
}

.slide-h1 {
    background-color: rgba(0, 0, 0, 0);
    padding: 1rem 0;
    /*color: rgb(67, 245, 67);*/
    color:rgb(64, 220, 25);
    font-family: 'Domine', serif;
    font-weight: 700;
    font-size: 3.8rem;
    text-shadow: 0.1rem 0.1rem 0.4rem black;
}


.slide-p {
    font-size: 2rem;
    font-weight: 600;
    text-shadow: 0.1rem 0 0.1rem black;
}

.carousel-indicators{
    color: rgb(133, 202, 30) !important;
}

@media screen and (max-width:1023px){
.slide-h1 {
    font-size: 2.5rem;
    line-height: 2.9rem;
   
}

.slide-p{
    font-size: 1.5rem;
    line-height: 1.8rem;
}

}


@media screen and (max-width:480px){
    .slide-h1-2, .slide-h1-3, .slide-h1-4 {
        font-size: 2rem;
        line-height: 2.5rem;
    }
}


  


 



.slogan {
    width:100%;
   
    z-index: 1;
    top:4.8rem;  
    position:relative;
}

.slogan h2 {
    text-align: center;
    background-color: white;
    background-color: rgb(39, 156, 39);
    color: rgb(39, 156, 39);
    color: white;
    max-width: 35rem;
    padding: 0.3rem 0;
    font-style: italic;
    margin: 0 auto;
    box-shadow: 0.4rem 0.4rem 0.5rem rgb(8, 63, 8);
}

@media screen and (max-width:480px){
    .slogan h2 {
        max-width: 15rem;
    }  
}

  /**********************/
   /*--CONTACT FORM--**/
   /*********************/
  .contact-form {
    background:linear-gradient(rgba(0, 0, 0, 0.774),rgba(0, 0, 0, 0.808)), url('zebra1.jpg');
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100%;
    background-attachment: fixed;
    
 }
 
 
 
 
 
 
 
 form {
 display: flex;
 flex-direction: column;
 padding:3rem 0;
 
 
 }
 
 .form-control {
     width: 25rem;
    
     font-size: 1.5rem;
     outline: none;
     border: none;
     box-shadow: 0 0 0.4rem rgb(63, 62, 61);
     border-radius: 0.2rem;
     
     padding: 0.5rem 0;
     padding-left: 0.5rem;
     color:rgb(146, 81, 7);
 }
 
 .submit{
     border:none;
     background-color: rgb(146, 81, 7);
     color:rgb(255, 255, 255);
     padding: 0.8rem 0;
     border:0.2rem solid rgb(146, 81, 7);
     font-size: 1.3rem;
     transition: 0.5s all;
     
 }
 
 .submit:hover {
     border:0.2rem solid rgb(146, 81, 7);
     color: rgb(146, 81, 7);
     background-color: transparent; 
 }
 
 @media screen and (max-width:507px){
     .form-control {
         width: 100%;
        
     }
 
     form {
         padding-left:0.5rem;
         padding-right:0.5rem;
     }
 
 }

 @media screen and (max-width:480px){
     .contact-email {
         font-size: 1.1rem;
     }

     .contact-section{
      
        width:95%;
        
    }


     .contact-details {
      
        
        background-color: #e7f7f8;
        padding:2rem 0rem;
       
    
     
    
    }




 }
 
 
 
 /*.contact-h3 {
     color:rgb(5, 85, 5);
     letter-spacing: 0.1rem;
 }
 .contact-p {
     margin-top: 1rem;
     font-size: 1.2rem;
     color:rgb(117, 76, 9);
     line-height: 1.5rem;
 }*/
 /*
 .contact-detail {
    width: 22rem;
    background-color: rgba(253, 186, 63, 0.548);
    margin:0.5rem;
    padding:1rem;
    box-shadow: 0 0 0.3rem rgb(129, 82, 7);
 }*/


  /**********************/
   /*--POP UP--**/
   /*********************/
.lightbox {
   
    padding-top: 2rem;
    display: none;
    
}

.popup-h2 {
    text-align: center;
    letter-spacing: 0.1rem;
    color: rgb(34, 150, 185);
    margin-bottom: 1rem;
}

.popup-p {
    text-align: justify;
    font-size: 1.1rem;
}
.popup-p, .lightbox ol, .lightbox ul{
    color: rgb(12, 51, 82);
    line-height: 1.5rem;
    font-size: 1.1rem;
}

.lightbox ol, .lightbox ul {
    width:60%;
    margin: 0 auto;
}
 
 /******Services******/
 .services-page{
    background-color: rgb(219, 219, 250);
 }


 .services {
     padding:3rem 0;
     width: 85%;
     margin: 0 auto;
     text-align: center;
    
 }

 .service, .service2  {
     display: flex;
     
     align-items: center;
     justify-content: center;
     flex-wrap: wrap;
     padding:1rem 0;
 }

.service-photo, .service-info {
    flex: 1 20rem;
}

.service-info {
    text-align: center;
    font-size: 2rem;
    text-transform: uppercase;    
}

.service-h3 {
    letter-spacing: 0.1rem;
    color:#060a4d;
    font-size: 1.5rem;
}


 .service-image {
     width: 100%;
     box-shadow:0 0 0.8rem #030524  ;
     border-radius: 0.2rem;
 }

 .services-link, .team-link{
     display: inline-block;
     text-decoration: none;
     color:#060a4d;
     padding: 0.5rem 1rem;
     border: 0.2rem solid #060a4d;
     margin-top: 2rem;
     font-size: 1.2rem; 
     transition: 0.5s;  
 }

 .services-link:hover, .team-link:hover {
     background-color: #060a4d ;
     color:white;
 }

 @media screen and (min-width:752px){
    .service2 {
        flex-direction: row-reverse;
    }
 }


 @media screen and (max-width:760px){

    .services-link {
        margin-bottom: 2rem;
        margin-top: -4rem;
    }


   .service-h3 {
       margin-top: 1rem;
       margin-bottom: 2rem;
   }

   .service-photo {
       max-width: 30rem;
       text-align: center;
   }

   .services {
       padding-bottom: 0;
       
   }
 }








/*******COMPLETED WORKS*******/

.works-h2 {
    margin-bottom: 2rem;
    letter-spacing: 0.2rem;
}

.supplies-h2{
    margin-top: 3rem;
}

.works-table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 95%;
    border: 1px solid #ddd;
    margin: 0 auto;
    margin-top: 2rem;
  }

 .project-2-table {
     margin-bottom: 2rem;
 } 
  
  th, td {
    text-align: left;
    padding: 8px;
  }

  th {
      color: white;
      background-color: rgb(52, 134, 240);
      letter-spacing: 0.1rem;
  }
  
  tr:nth-child(even){background-color: #d7eaff}
  tr:nth-child(odd){background-color: #ffffff}

tr {
    color:rgb(21, 42, 110);
}

.desc{
    min-width: 15rem;
}

.client {
    min-width: 10rem;
}











.bottom-links{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.services-link {
   width: 13rem;
   margin-top: 0.5rem;
}

 


/***GALLERY***/
.gallery-center{
    margin: 0 auto;
    width: 90%;
    padding: 3rem 0;
    display: flex;
    align-content: center;
    justify-content: center;
    flex-wrap: wrap;
}

.gallery-image-box{
    flex:1 30rem;
    margin: 0.5rem;
    max-width: 35rem;
    background-color: rgb(19, 68, 173);
    box-shadow: 0 0 0.4rem rgba(8, 8, 83, 0.513);
   
}

.gallery-image{
    overflow: hidden;
}

.gallery-photo {
    width: 100%;
    height: 30rem;
    object-fit: cover;
    transition: 0.5s all;  
}

.gallery-photo:hover{
    transform: scale(1.2);
}

.gallery-p{
    text-align: center;
    font-size: 1.5rem;
    color: white;
    padding: 1rem 0;
    text-transform: uppercase;
}

/*********************/
/*--------TEAM-------**/
/*********************/
.team-table {
    overflow-x: auto;
    margin-top: 2.5rem;
   
}

.qualifications{
    
    min-width: 35rem;
   padding-left: 2rem;
    
    
}

/*CLIENT'S SLIDE*/

.slick-slide {
    margin: 0px 20px;
}

.slick-slide img {
    width: 100%;
}

.slick-slider
{
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
            user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list

{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;
    display: block;
}
.slick-track:before,
.slick-track:after
{
    display: table;
    content: '';
}
.slick-track:after
{
    clear: both;
}

.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}

.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

/*********************/
/*----ITINERARY-----**/
/*********************/

.itinerary-section{
    width: 85%;
    margin: 0 auto;
    padding: 3rem 0;
    text-align: center;
}

/*.itineraries{
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}*/

.itinerary-even, .itinerary-odd{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(206, 255, 195);
   
}

.itinerary-odd{
    margin-top: 2rem;
}

.itinerary-middle{
    margin-top: 2rem;
}



.itinerary-image, .itinerary-content{
    flex:1 25rem;
    
}

.itinerary-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 2rem;
    text-align: center;
    
    
    
}

.itinerary-odd {
    flex-direction: row-reverse;
}



.itineraries .d-block{
    height: 25rem;
}

.itineraries .slide-h1, .itineraries p, .itineraries .slide-link, .itineraries .carousel-indicators

 {
    display: none;
}

.itinerary-link{
    display: inline-block;
    padding: 0.5rem 1rem;
    border:0.2rem solid rgb(117, 62, 17);
    color:rgb(117, 62, 17);
    text-decoration: none;
    font-weight: 600;
    margin-top: 1.5rem;
    transition: 0.5s all;
}

.itinerary-link:hover{
   
    border:0.2rem solid rgb(117, 62, 17);
    color:rgb(255, 255, 255);
    background-color: rgb(117, 62, 17);
   
}

.itinerary-h3{
    color:rgb(50, 77, 39);
    font-weight: 800;
    letter-spacing:0.1rem ;
    text-align: center;
    font-size: 1.2rem;
    font-family: 'Lato', sans-serif;
    
}

.itinerary-h3 span {
    font-size: 1.1rem;
    color:#185f88;
}


@media screen and (max-width:1085px){

    .itinerary-even, .itinerary-odd{
       
        justify-content: space-around;   
    }

    .itinerary-h3{
        margin-top: 3rem;
    }

    .itinerary-link{
        margin-bottom: 3rem;
    }

    .itinerary-image, .itinerary-content{
        max-width: 30rem;
        
    }
  
    .itineraries .d-block{
        height: 20rem;
    }

}

.kibale-cover {
    background-color: rgb(255, 247, 232);
}

.kibale-content{
    background-color: rgb(255, 247, 232);
    padding: 3rem 0;
    padding-top: 0;
    color:rgb(8, 92, 141);
    font-size: 1.3rem;
    text-align: center;
}

.center-content{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    
}


.kibale-center{
    width:85%;
    margin:0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
}

.flex-start {
    align-items: flex-start;
    max-width: 35rem;
}

.flex-start .kibale-p{
    text-align: left;
}

.kibale-destinations{

    margin-top: 1rem;
    text-align: left;
}

.kibale-destination{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: -0.8rem;
}

.kibale-destination-icon p {
    margin-right: 0.5rem;
}

.booking-link{
    margin-top: 1.5rem;
    display: inline-block;
    padding: 0.5rem 1.2rem;
    border: 0.2rem solid rgb(22, 137, 204);
    color:rgb(22, 137, 204);
    text-decoration: none;
    transition: 0.5s;
}

.booking-link:hover{
    
    border: 0.2rem solid rgb(22, 137, 204);
    background-color: rgb(22, 137, 204);;
    color:rgb(255, 255, 255);

}

.kibale-p{
    text-align:justify;
    color:rgb(59, 33, 8);
    
}


.itinerary-link1{
    color:#185f88;
    padding: 0.3rem 0.8rem;
    display: inline-block;
    margin-top:2.5rem;
    text-decoration: none;
    border: 0.2rem solid#185f88;
    font-size: 1.3rem;
    transition: 0.5s;  
}

.itinerary-link1:hover{
    color:#ffffff;
  
    border: 0.2rem solid#185f88;
   background-color:#185f88; 
    
}



/*********************/
/*----ABOUT US-----**/
/*********************/


.about-header {
    background: linear-gradient(rgba(190, 97, 10, 0.664), rgba(73, 53, 15, 0.589)), url('Giraffe2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.qe {
    background: linear-gradient(rgba(190, 97, 10, 0.664), rgba(73, 53, 15, 0.589)), url('Elephant4.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.kbnp {
    background: linear-gradient(rgba(190, 97, 10, 0.664), rgba(73, 53, 15, 0.589)), url('MONKEY.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.kidepo-valley{
    background: linear-gradient(rgba(190, 97, 10, 0.664), rgba(73, 53, 15, 0.589)), url('leo.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.l-mburo{
    background: linear-gradient(rgba(190, 97, 10, 0.664), rgba(73, 53, 15, 0.589)), url('zebra1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.bwindi{
    background: linear-gradient(rgba(190, 97, 10, 0.664), rgba(73, 53, 15, 0.589)), url('Gorrila1.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.elgon{
    background: linear-gradient(rgba(190, 97, 10, 0.664), rgba(73, 53, 15, 0.589)), url('Bird1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.mgahinga{
    background: linear-gradient(rgba(190, 97, 10, 0.664), rgba(73, 53, 15, 0.589)), url('Gorrila1.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.jinja{
    background: linear-gradient(rgba(190, 97, 10, 0.664), rgba(73, 53, 15, 0.589)), url('jinja1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.bunyonyi{
    background: linear-gradient(rgba(190, 97, 10, 0.664), rgba(73, 53, 15, 0.589)), url('Bunyonyi.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.ziwa{
    background: linear-gradient(rgba(190, 97, 10, 0.664), rgba(73, 53, 15, 0.589)), url('rhino2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}


.rwenzori{
    background: linear-gradient(rgba(190, 97, 10, 0.664), rgba(73, 53, 15, 0.589)), url('Elephant3.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.sipi{
    background: linear-gradient(rgba(190, 97, 10, 0.664), rgba(73, 53, 15, 0.589)), url('Sipi-Falls-750x450.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.semiliki{
    background: linear-gradient(rgba(190, 97, 10, 0.664), rgba(73, 53, 15, 0.589)), url('Chimp2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.ssezibwa{
    background: linear-gradient(rgba(190, 97, 10, 0.664), rgba(73, 53, 15, 0.589)), url('The-Ssezibwa-Falls1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}



.about-p{
    color:rgb(13, 88, 117);
}

.about-h5{
    color:rgb(51, 113, 53);
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.8rem;
}

@media screen and (max-width:964px){


    .itinerary-even, .itinerary-odd{
       padding-bottom: 3rem;
       
    }

}

/*DESTINATIONS USING TILES*/


.tiles{
    padding:4rem 0;
}


.tiles-title{
    text-align: center;
}

.all-tiles{
    width:80%;
    margin:2rem auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(17rem, 1fr));
    gap:2rem;
    row-gap: 6rem;
    
}

@media screen and (min-width:1170px){


    .all-tiles{
       
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(9, 12rem);
        grid-template-areas: 
        "a a b b"
        "a a c c"
        "d d e e"
        "f f h h"
        "g g h h"
        "i i j j"
        "k k l l"
        "k k m m"
        "n n o o" 

        

        ;}

    .tile-1{
        grid-area: a;
        background-color: #d6681f;
        
    }

    .tile-2{
        grid-area: b;
        background-color: #d6681f;
    }

    .tile-3{
        grid-area: c;
        
        background-color: #d6681f;
    }

    .tile-4{
        grid-area: d;
        background-color: #d6681f;
    }

    .tile-5{
        grid-area: e;
        background-color: #d6681f;
    }

    .tile-6{
        grid-area: f;
        background-color: #d6681f;
    }

    .tile-7{
        grid-area: g;
        background-color: #d6681f;
    }

    .tile-8{
        grid-area: h;
        background-color: #d6681f;
    }

    .tile-9{
        grid-area: i;
        background-color: #d6681f;
    }

    .tile-10{
        grid-area: j;
        background-color: #d6681f;
    }


    .tile-11{
        grid-area: k;
        background-color: #d6681f;
    }

    .tile-12{
        grid-area: l;
        background-color: #d6681f;
    }

    .tile-13{
        grid-area: m;
        background-color: #d6681f;
    }

    .tile-14{
        grid-area: n;
        background-color: #d6681f;
    }

    .tile-15{
        grid-area: o;
        background-color: #d6681f;
    }



  
    

    }

    .tile-h3{
        color: rgb(165, 97, 42);
        text-align: center;
        font-size: 1.5rem;
        transition: 0.5s; 
        margin-top: 0.5rem;
       
    }

    .tile-link{
    text-decoration: none;
    
}

.tile-h3:hover{
    text-decoration: none;
    color:#331609;
}

.tile-photo{
    width:100%;
     height: 100%; 
    object-fit: cover;
    transition: 0.5s;
    
}

.tile-photo:hover{
   opacity: 0.8;
    
}

.top-image{
    max-width: 40rem;
    margin:0 auto;
    padding: 2rem 1rem;
    
}

.top-photo{
    width:100%;
    height: 25rem;
    object-fit: cover;
    border-radius: 0.5rem;
    
}


/****SHORT SAFARIS****/

.short-safaris-header{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8rem 1rem;
    padding-bottom: 4rem;
}

.short-safaris-h1{
    color:rgb(31, 179, 26);
    font-size: 3rem;
    text-shadow: 0.2rem 0 0.2rem rgb(0, 0, 0);
    text-align: center;
    
}

.safari-cover{
    padding:3rem 0;
    background-color: #e1f3d1;
    text-align: center;
}

.safari-content{
    width: 90%;
    margin:0 auto;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
}

.safari{
    flex:1 20rem;
    max-width:25rem;
    margin: 1rem;
    padding:1rem;
    background-color: white;
    box-shadow:0 0 0.5rem rgb(37, 108, 7);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


.safari-photo{
    width:100%;
    height:15rem;
    object-fit: cover;
}

.safari-h3{
    color:#41a526;
    text-align: center;
    font-size: 1.4rem;
    margin-top: 1rem;
    
}

.safari-a{
    color:#ffffff;
    display: inline-block;
    border: 0.2rem solid rgb(37, 137, 21);
    padding:0.5rem 0.9rem;
    text-decoration: none;
    transition: 0.5s; 
    text-align: center;
    background-color: rgb(37, 137, 21);
}

.safari-a:hover{
    color: rgb(37, 137, 21);
   background-color: #ffffff;
   
  
}

.safari-p{
    color:#166216;
    font-size: 1.1rem;
    text-align: justify;
}

/* .safari-text{
    margin-top: 1rem;
} */

.itinerary-photo{
    width:100%;
}

.itinerary-p{
    display: block;
}

/*NEW SAFARI*/

.safari-container{
    padding:3rem 0;
    text-align: center;
}

.safari-center{
    max-width: 90%;
    margin:0 auto;
}

.safari-even{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
   
}

.safari-odd{
    flex-direction: row-reverse;
    margin-top: 2rem;
   
}

.safari-even-inner{
    margin-top: 2rem;
}

.safari-image{
    flex: 1 15rem;
    max-width: 20rem;
    margin: 1rem;
}
 

.safari-text{
    flex: 1 40rem;
    max-width: 50rem;
    margin: 1rem;
}

.safari-photo1{
    width:100%;
}

.new-safari-h3{
    color:#166216;
    text-align: center;
    font-size: 1.5rem;
}

.new-safari-p{
    color:#3c3c3c;
    font-size: 1.15rem;
    text-align: justify;
}

.safari-line{
    height:0.3rem;
    width:100%;
    background-color: #d6da1b;
    margin:1rem 0;
}

.safari-booking-link{
    display: inline-block;
    text-decoration: none;
    padding:0.3rem 0.8rem;
    border: 0.2rem solid #166216;
    color:#166216;
    transition: 0.5s;
}

.safari-booking-link:hover{
  
   background-color: #166216;;
    color:#ffffff;
}



