
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    background-color: #f8f8f8;
}


  /* started of the prelopader css code */
  .main-preloader{
    position: absolute;
    width: 100%;
    height: 100vh;
    background-color: #FFFFFF;
    z-index: 99999;
    overflow: hidden!important;
    padding-top: 3em;
    display: none;
  }
  .main-section{
    width: 100%;
    display: none;
  }
  .loader{
    width: 100px;
    height: 100px; 
    margin: 0 auto;
    position: relative; 
  } 
  .loader div{
    background: #f58220;
    width: 4px;
    height: 10px;
    border-radius: 5px;
    transform-origin: 5px 35px;
    transform: rotate(0deg);
    position: absolute;
    left: 45px;
    top: 15px;
    animation: loader 0.8s infinite;
  }
  .loader div:nth-child(2){
    transform: rotate(45deg);
    animation-delay: 0.1s;
  }
  .loader div:nth-child(3){
    transform: rotate(90deg);
    animation-delay: 0.2s;
  }
  .loader div:nth-child(4){
    transform: rotate(135deg);
    animation-delay: 0.3s;
  }
  .loader div:nth-child(5){
    transform: rotate(180deg);
    animation-delay: 0.4s;
  }
  .loader div:nth-child(6){
    transform: rotate(225deg);
    animation-delay: 0.5s;
  }
  .loader div:nth-child(7){
    transform: rotate(270deg);
    animation-delay: 0.6s;
  }
  .loader div:nth-child(8){
    transform: rotate(315deg);
    animation-delay: 0.7s;
  }
  @keyframes loader{
    0%{
        background: transparent;
        transform-origin: 10px 35px;
        left: 45px;
    }
    30%{ background: #f58220;}
    100%{
        background: transparent;
        transform-origin: -10px 35px;
        left: 55px;
    }
  }
    /* _________________ pre loader css code has been ended heree__________________ */

    
.menu-nav{
    position: fixed;
    width: 100%;
    height: 70px;
    z-index: 9999;
}
.nav { 
    display: flex;
    flex-direction: column;
    position: sticky;
    width: 100%;
    background-color: #fff;
    height: 70px;
    position: relative;
    z-index: 999;
}
.logo {
    display: flex;
    flex-direction: column-reverse;
}
.nav img {
    width: 120px;
    margin-left: 3em;
}
.nav .img img {
    width: 80px;
    height: 40px;
}
.ul-div {
    position: relative;
    display: flex;
    justify-content: flex-end;
}
.nav ul {
    list-style: none;
    position: absolute;
    padding-right: 3em;
}
.nav ul li{
     float: left;
     margin-top: 20px;
}
.nav ul li a{
    width: 120px;
    color: rgb(14, 14, 14);
    text-transform: uppercase;
    display: block;
    text-decoration: none;
    font-size: .9rem;
    text-align: center;
    padding: 10px;
    font-family: century Gothic;
    font-weight: bold;
}
.nav ul li a:hover{
    border-bottom: 3px solid #f58220;
}
.nav li ul li {
    background-color: #fff;
    margin-top: 0;
}
.nav li ul a{
    font-size: .77rem;
    font-weight: 450;
}
.nav li ul li {
    float: none;
}
.nav ul li ul {
    display: none;
}
.nav ul li:hover ul {
    display: block;
}


.hamburger{
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: hwb(0 94% 4%);
    border: none;
    outline: none;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 4px;
    z-index: 99;
    visibility: hidden;
}
.hamburger .line {
    display: block;
    width: 30px;
    height: 2px;
    background-color: rgb(73, 72, 72);
    margin:  7px;
    border-radius: 40px;
    transition: transform .5s,
    opacity .25s;
}
.hamburger .line:nth-child(2){
    width: 17px;
}
.hamburger.active .line:nth-child(1){
    transform: translateY(7px)
    rotate(45deg);
}
.hamburger.active .line:nth-child(2){
    opacity: 0;
}
.hamburger.active .line:nth-child(3){
    transform: translateY(-10px)
    rotate(-45deg);
}

@media screen and (max-width: 995px) {
    .hamburger {
    visibility: visible;
    }
    .nav { 
        position: relative;
        display: flex;
        flex-direction: row;
        position: sticky;
        width: 100%;
        background-color: rgb(211, 106, 106);
        height: 70px;
        z-index: 9999;
    }
    .ul-div {
        top: 0;
        position:absolute;
        display: flex;
        flex-direction: row;
        width: 100%;
        height: 100vh;
        overflow: hidden;
        transition: .3s ease-in-out;
        display: none;
    }
    .logo {
        display: unset!important;
    }
        .nav img {
            width: 70px;
            margin-left: 1em;
        }
    .nav ul { 
        list-style: none;
        position: fixed;
        top: 0;
        bottom: 0;
        display: flex;
        width: 100%;
        height: 100vh;
        flex-direction: column;
        background-color: rgb(211, 106, 106);
        text-align: center;
        align-items: center;
        visibility: hidden;
        transition: 3s ease-end;
    }
    .nav ul li a:hover{
        color: #f58220;
    }
    .nav li ul { 
        display: none;
        visibility: hidden;
        
    }
}  

/*MAIN BODY STARTED HERE ESPECIALLY MAIN PITURE*/
.head-body{
    position: relative;
    width: 100%;
    height: 450px;
    background-color: #fff;
    overflow: hidden;
    top: 70px;
}
.head {
    position: relative;
    justify-content: center;
    text-align: center;
    align-items: center;
    background-color: transparent;
    background-image: url("../images/last/image13.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    transition: background-image 1s ease-in-out;
    width: 100%;
    height: 100%;
    text-align: center;
    cursor: pointer;
}
.head-2{
    width: 100%;
    display: grid;
    text-align: center;
    justify-content: center;
    align-items: center;
    align-content: center;
    transform: translateY(10px);
}
  .head.fadeout {
    animation: fadeOut 1s ease-in-out backwards;
  }

  .head.fadein {
    animation: fadeIn 1s ease-in-out forwards;
  }

  @keyframes fadeOut {
    from {
      opacity: 1;
    }
    to {
      opacity: 0;
    }
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
.head-2 {
    padding-top: 6em;
}
.head-2 h3{
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: .3em;
    color: #fff;
}
.head-2 h5{
    font-size: 3rem;
    text-transform: uppercase;
    padding: 1em;
    line-height: 30px;
    letter-spacing: 5px;
    color: #0a0600;
    font-weight: bold;
}
.head-3 {
    padding-bottom: 10em;
}
.head-3 p{
    padding-top: 2em;
    margin-left: 15%;
    margin-right: 15%;
    font-size: 1rem;
    line-height: 25px;
    color: #fff;
}
.help {
    background-color: #0a0600 !important;
    display: flex;
    height: 80px;
    flex-direction: row;
}
.help1 {
    padding: 1em;
}
.help1 button {
    margin-left: 4em;
    padding: 1em;
    width: 250px;
    height: 45px;
    background-color: #f58220;
    border: 2px solid #fff;
    border-radius: 10px;
    color: #fff;
    text-transform: uppercase;

}
.help1 button a{
    text-decoration: none;
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
}
.help2 {
    margin-left: auto;
}
.help2 p{ 
    font-size: 1.5rem;
    color: #f58220;
    float: right;
    padding-right: 2em;
    padding-top: 1em;
    text-transform: uppercase;
}


.sereh0 h5{
     text-align: center;
     margin-top: 4em;
     margin-bottom: 1em;
     font-size: 2rem;
}
.serh1 {
    text-align: center;
    background-color: #7b4a39;
    padding: 1em;
}
.serh1 h4{
    font-size: 1rem;
    text-transform: initial;
    font-weight: 400;
    color: #fff;
}
.serh1 h4 span{
    color: #fff;
    text-transform: uppercase;
}
.serh1 h5{
    font-size: 2rem;
    text-transform: capitalize;
    font-weight: 700;
    color: #0a0600;
    padding-top: .6em;
    letter-spacing: 4px;
}


/*head main page css started here*/

@media screen and (max-width: 820px) {
    .head-body{
        width: 100%;
        height: 320px;
    }
     .head {
        background-image: url("../images/last/image1.jpg");
    }
    .head-2 h3 {
        font-size: 1rem;
        text-transform: uppercase;
        letter-spacing: .1em;
        color: #fff;
    } 
    .head-2 h5 {
        font-size: 2rem;
        text-transform: uppercase;
        padding: 1em;
        line-height: 35px;
        letter-spacing: 5px;
        color: #0a0600;
        font-weight: 700;
    }
    .head-3 {
        padding-bottom: 5em;
    }


/*design your tour div*/
    .sereh0 h5 {
        text-align: center;
        margin-top: 4em;
        margin-bottom: 1em;
        font-size: 2rem;
        font-size: 1.5rem;
    }
    
    .serh1 {
        margin-top: 1.5em;
        justify-content: center;
        align-items: center;
        text-align: center;
        background-color: #7b4a39;
        padding: 1em;
    }

.serh1 h4 {
    font-size: 1rem;
    font-weight: 400;
    color: #fff;
}

.serh1 h5 {
    font-size: 1.7rem;
    text-transform: uppercase;
    font-weight: 700;
    color: #0a0600;
    padding-top: .6em;
    letter-spacing: 2px;
}

}

@media screen and (max-width: 400px) {
    .head-2 h5 {
        font-size: 1.8rem;
        text-transform: uppercase;
        padding: 2em .9e .9em .9em;
        line-height: 30px;
        letter-spacing: 5px;
        font-family: serif;
        color: #f58220;
        font-weight: 700;
    }
    
    .head-3 {
        padding-bottom: 10em;
    }
    
    .head-3 p {
        padding-top: .8em;
        margin-left: 2%;
        margin-right: 2%;
        font-size: .8rem;
        line-height: 17px;
        color: #fff;
    }
}

/*KILIMAJARO DIV MAIN*/
.kili-main {
    margin-top: 2em;
    padding-top: 2em;
    text-align: center;
}

.kili-main p {
    font-size: 2rem;
    text-align: center;
    padding-top: 3em;
    color: #f58220;
    font-weight: 600;
    line-height: 25px;
    font-family: 'Comic Sans MS', sans-serif;
}

.kili-main h5 {
    font-size: 1.2em;
    text-align: center;
    font-weight: 100;
    margin-left: 10%;
    margin-right: 10%;
    padding-top: 2em;
}

.kili-divs {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.kili {
    flex: 0 0 250px;
    border-radius: 5px;
    background-color: #fff;
    margin-top: 3em;
    margin-right: 2em;
}

.kiliimg {
    height: 230px;
}

.kiliimg img {
    width: 100%;
    height: 230px;
}

.kiliimg p {
    font-size: .95rem;
    color: #fff;
    transform: translateY(-130px);
    font-weight: bold;
}

.kili2 {
    background-color: #fff;
    justify-content: center;
    text-align: center;
    align-items: center;
    padding-bottom: 1.5em;
}

.kili2 p {
    color: #333;
    font-size: .95rem;
    font-weight: 200;
    text-transform: lowercase;
    padding: 1em;
}

.kili2 button {
    width: 130PX;
    height: 30px;
    background-color: #f58220;
    border-radius: 10px;
    border: none;
    color: #fff;
    font-weight: bold;

}

@media screen and (max-width: 820px) {
    .kili-main {
        margin-top: 2.5em;
        padding-top: 2em;
        text-align: center;
    }

    .kili-main p {
        text-align: center;
        font-size: 1.7rem;
        text-align: center;
        padding-top: 0em;
        color: #f58220;
        font-weight: 600;
        line-height: 35px;
    }

    .kili-main h5 {
        font-size: 1em;
        margin-left: 3%;
        margin-right: 3%;
        padding-top: 2em;
        font-weight: 400;
        font-size: 1.2em;
    }

    .kili-divs {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: center;
    }

    .kili {
        flex: 1;
        border-radius: 5px;
        background-color: #fff;
        margin-top: 3em;
        margin-right: initial;
        margin-left: 5%;
        margin-right: 5%;
    }

    .kiliimg {
        height: 230px;
    }

    .kiliimg img {
        width: 100%;
        height: 200px;
    }

    .kiliimg p {
        font-size: .95rem;
        color: #fff;
        transform: translateY(-50px);
        font-weight: bold;
    }

    .kili2 {
        background-color: #fff;
        justify-content: center;
        text-align: center;
        align-items: center;
        padding-bottom: 1.5em;
    }

    .kili2 p {
        color: #333;
        font-size: .85rem;
        font-weight: 400;
        text-transform: lowercase;
        padding: .5em;
        line-height: 25px;
    }

    .kili2 button {
        width: 130PX;
        height: 30px;
        background-color: #f58220;
        border-radius: 10px;
        border: none;
        color: #fff;
        font-weight: bold;

    }
}


/*serengeti card started here*/
.safarip {
    margin-top: 4em;
}
.safarip h4{
    font-size: 2rem;
    text-align: center;
    padding-top: 3em;
    color: #f58220;
    font-weight: 600;
    line-height: 25px;
    font-family: 'Comic Sans MS', sans-serif;
}
.safarip h5 {
    font-size: 1.2em;
    text-align: center;
    font-weight: 100;
    margin-left: 10%;
    margin-right: 10%;
    padding-top: 2em;
}
.sere-card {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 1.5em;
    justify-content: center;
    text-align: center;
}
.card1 {
    flex: 0 0 250px;
    margin-top: 3em;
    background-color: #fff;
    border: 1px solid #333;
    border-radius: 10px 10px 0px 0px;
    margin-left: 3em;
    /* box-shadow: 0 10px 20px rgba(0,0,0,0.08); */
}
.card1 img{
    width: 100%;
    height: 200px;
    border-radius: 10px 10px 0px 0px;
    object-fit: cover;
    transition: transform .25s
    ease-in-out;
}
/*
.card1:hover img{
    transform: 
    scale(1.05) rotate(10deg);
}
*/

.head-div h4{
    text-transform: uppercase;
    padding: 1em;
    font-size: .9rem;
    color: #f58220;
}
.head-div h5{
    text-transform: uppercase;
    padding: initial;
    padding-left: .5em;
    padding-right: .5em;
    font-size: 1rem;
    padding-bottom: 1em;
}
.head-div h6{
    color: #333;
    font-size: .9rem;
    font-weight: 200;
    text-transform: lowercase;
    padding: .4em;
}
.foot {
    display: flex;
    flex-direction: row;
}
.btn {
    padding: 1em;
}
.btn button {
    width: 100px;
    height: 30px;
    background-color: #f58220;
    text-transform: uppercase;
    border-radius: 10px;
    padding: .3em;
    border: none;
    cursor: pointer;
}
.btn button a{
    text-decoration: none;
    color: #fff;
    font-size: .9rem;
}
.more {
    margin-left: auto;
    float: right;
} 
.more p {
    padding: 1em;
    float: right;
    margin-right: 10px;
    cursor: pointer;
    color: red;
}
.more p i a{
    text-decoration: none;
    color: red;
}

/*SERENGETI CARD CSS STARTED HERE*/

@media screen and (max-width: 820px) {
    .safarip {
        margin-top: 3em;
    }
    
    .safarip h4 {
        text-align: center;
        font-size: 1.7rem;
        text-align: center;
        padding-top: 0em;
        color: #f58220;
        font-weight: 600;
        line-height: 35px;
    }
    .safarip h5 {
        color: #333;
        font-size: .85rem;
        font-weight: 400;
        text-transform: lowercase;
        padding: .2em;
        font-size: 1.2em;
        margin-left: 4%;
        padding-top: 2em;
        margin-right: 4%;
    }
.sere-card {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin-top: 1.8em;
    justify-content: center;
    text-align: center;
    }
    .card1 {
        flex: 1;
        margin-top: 3em;
        background-color: #fff;
        border: 1px solid #333;
        border-radius: 10px 10px 0px 0px;
        margin-left: 5%;
        margin-right: 5%;
        /* box-shadow: 0 10px 20px rgba(0,0,0,0.08); */
    }
    .card1 img {
        width: 100%;
        height: 200px;
        border-radius: 10px 10px 0px 0px;
        object-fit: cover;
        transition: transform .25s ease-in-out;
    }
    
    
    .head-div h4 {
        text-transform: uppercase;
        padding: 1em;
        font-size: .9rem;
        color: #f58220;
    }
    
    .head-div h5 {
        text-transform: uppercase;
        padding: initial;
        padding-left: .5em;
        padding-right: .5em;
        font-size: .9rem;
        padding-bottom: 1em;
    }
    
    .head-div h6 {
        color: #0a0600;
        font-size: .9rem;
        font-weight: 400;
        text-transform: lowercase;
        padding: .4em;
    }
    .foot {
        display: flex;
        flex-direction: row;
    }
    
    .btn {
        padding: 1em;
    }
    
    .btn button {
        width: 100px;
        height: 30px;
        background-color: #f58220;
        text-transform: uppercase;
        border-radius: 10px;
        padding: .3em;
        border: none;
        cursor: pointer;
    }
    .more p {
        padding: 1em;
        float: right;
        margin-right: 10px;
        cursor: pointer;
        color: red;
    }
    
    .more p i a {
        text-decoration: none;
        color: red;
    }
}

/*END OF SERENGET DIV CSS*/ 



/*MOUNT MERU MAIN DIV*/

.mount-meru-main {
    margin-top: 2em;
    padding-top: 2em;
    text-align: center;
}

.mount-meru-main p {
    font-size: 2rem;
    text-align: center;
    padding-top: 1.5em;
    color: #f58220;
    font-weight: 600;
    line-height: 25px;
    font-family: 'Comic Sans MS', sans-serif;
}

.mount-meru-main h5 {
    font-size: 1.2em;
    text-align: center;
    font-weight: 100;
    margin-left: 10%;
    margin-right: 10%;
    padding-top: 2em;
}
.meru-kili {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.kilii {
    flex: 0 0 350px;
    border-radius: 5px;
    background-color: #fff;
    margin-top: 3em;
    margin-right: 4em;
}

.kiliimg {
    height: 230px;
}

.kiliiimg img {
    width: 100%;
    height: 230px;
}

.kiliiimg p {
    font-size: .95rem;
    color: #fff;
    transform: translateY(-60px);
    font-weight: bold;
}

.kilii2 {
    background-color: #fff;
    justify-content: center;
    text-align: center;
    align-items: center;
    padding-bottom: 1.5em;
}

.kilii2 p {
    font-size: .9rem;
    font-weight: 300;
    padding: 1em;
}

.kilii2 button {
    width: 130PX;
    height: 30px;
    background-color: #f58220;
    border-radius: 10px;
    border: none;
    color: #fff;
    font-weight: bold;

}

/*MOUNT MERU CSS*/
@media screen and (max-width: 820px) {
.mount-meru-main {
        margin-top: 1em;
        padding-top: 1em;
        text-align: center;
    }
.mount-meru-main p {
    text-align: center;
    font-size: 1.7rem;
    text-align: center;
    padding-top: 1.5em;
    color: #f58220;
    font-weight: 600;
    line-height: 35px;
}
.mount-meru-main h5 {
        font-size: 1.15em;
        margin-left: 3%;
        margin-right: 3%;
        padding-top: 2em;
        color: #0a0600;
        font-weight: 400;
    }

.meru-kili{
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: center;
    }

.kilii {
    flex: 1;
    border-radius: 5px;
    background-color: #fff;
    margin-top: 3em;
    margin-right: 5%;
    margin-left: 5%;
}
    .kiliIimg {
        height: 230px;
    }

    .kiliiImg img {
        width: 100%;
        height: 200px;
    }

    .kiliiImg p {
        font-size: .95rem;
        color: #fff;
        transform: translateY(-100px);
        font-weight: bold;
    }

    .kiliI2 {
        background-color: #fff;
        justify-content: center;
        text-align: center;
        align-items: center;
        padding-bottom: 1.5em;
    }

    .kiliI2 p {
        font-size: .9rem;
        font-weight: 300;
        padding: 1em;
    }

    .kiliI2 button {
        width: 130PX;
        height: 30px;
        background-color: #f58220;
        border-radius: 10px;
        border: none;
        color: #fff;
        font-weight: bold;

    }
}

/*ZANZIBAR MAIN DIV STARTED HERE*/
.four{
    margin-top: 4em;
    margin-bottom: 4em;
}
.four h4 {
    font-size: 2rem;
    text-align: center;
    padding-top: 3em;
    color: #f58220;
    font-weight: 600;
    line-height: 25px;
    font-family: 'Comic Sans MS', sans-serif;
    padding: 1em;
    font-weight: bold;
}
.four h5 {
    font-size: 1.2em;
    text-align: center;
    font-weight: 100;
    margin-left: 10%;
    margin-right: 10%;
    padding-top: 2em;
}
.babay {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 4em;
    margin-bottom: 4em;
}
.babadiv {
    flex: 0 0 300px;
    flex-direction: column;
    margin-left: 3em;
    height: auto;
}

.bjuu {
    width: 100%;
    height: auto;
}

.bjuu img {
    width: 100%;
    height: 150px;
}

.bchin {
    background-color: #fff;
    padding: 1em;
}

.bchin p {
    color: #fff;
    font-size: 1.2rem;
    text-transform: uppercase;
    transform: translateY(-50px);
    font-weight: bold;
}

.bchin h5 {
    color: unset;
    font-weight: unset;
    font-size: .9rem;
    padding: .2em;
    transform: translateY(-20px);
    margin-left: unset;
    margin-right: unset;
    padding-top: .5em !important;
}

.bchin h6 {
    text-align: center;
    background-color: #f58220;
    color: #fff;
    padding: .6em;
    font-size: 1rem;
    font-weight: bold;
    margin-left: 10%;
    margin-right: 10%;
    border-radius: 8px;
}

/*ZANZIBAR MAIN MENU CSS*/
@media screen and (max-width: 820px) {
    .four {
        margin-top: 2em;
        margin-bottom: 2em;
    }
    .four h4 {
    text-align: center;
    font-size: 1.8rem;
    text-align: center;
    padding-top: 1.5em;
    color: #f58220;
    font-weight: 700;
    line-height: 30px;
    }
.four h5 {
    color: #333;
    font-size: .95rem;
    font-weight: 400;
    text-transform: lowercase;
    padding: .5em;
    line-height: 20px;
    margin-left: 3%;
    margin-right: 3%;
    }
.babay {
    height: auto;
    margin-top: 2em;
    margin-bottom: 2em;
}
  .babadiv {
      display: flex;
      flex-direction: column;
      margin-left: 3%;
      margin-right: 3%;
      margin-bottom: 5em;
  }
  .bjuu {
      width: 100%;
      height: auto;
  }
  .bjuu img {
      width: 100%;
      height: 150px;
  }
  .bchin {
      background-color: #fff;
      padding: 1em;
  }
}                

/* whatsappp link hereee */
.whsapp {
    position: fixed;
    margin-left: 0;
    bottom: 50px;
    cursor: pointer;
    margin-left: auto;
    float: right;
    right: 2em;
    background-color: transparent!important;
}
.whsapp img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: transparent!important;
    
}



/*FOOTER STARTED HER padding-bottom: 2em;
    padding-top: 2em;E*/

    footer {
        width: 100%;
        height: auto;
        padding-bottom: 2em;
        background-image: url(../images/bac2.jpeg);
        background-size: cover;
        background-repeat: no-repeat;
        overflow: hidden;
        /* background-color:  linear-gradient(to top, rgb(0, 0, 0.3) 0%, #FC0 100%); */
    }
    
    .footer-span {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }
    
    .span {
        flex: 0 0 350px;
        margin-top: 2em;
    }
    
    .span p {
        color: #fff;
        font-size: 1rem;
        font-weight: 700;
    }
    
    .span li {
        list-style: none;
        padding: .2em;
        margin: unset!important;
    }
    
    .span li a {
        text-decoration: none;
        color: #fff;
    }
    .span li a img{
        width: 25px;
        height: 25px;
        border-radius: 5px;
        background-color: #fff;
    }
    .copym {
        width: 100%;
        height: 120px;
        background-color: #0a0600;
        display: flex;
        text-align: center;
        align-items: center;
        justify-content: center;
    }
    .copy {
        color: #FFFF;
        font-size: .9rem;
    }
    /*FOOTER CSS*/
    @media screen and (max-width: 900px) {
        footer {
            background-image: url(../images/bac2.jpeg);
            background-size: cover;
            background-repeat: no-repeat;
            background-color: transparent rgb(0, 0, 0.3);
        }
    
        .footer-span {
            display: flex;
            flex-direction: column;
            justify-content: initial;
            padding-left: 3em;
        }
    
        .span {
            flex: 1;
            margin-top: .2em;
            margin: unset!important;
        }
    
        .span p {
            color: #fff;
            font-size: 1rem;
            font-weight: 700;
            padding: 1em;
            margin: unset!important;
        }
        .span li a {
            font-size: .9rem;
            ;
        }
    }