:root {
    --primary: #86b817;
    --secondary: #fe8800;
    --light: #f5f5f5;
    --dark: #14141f;
}

.btn-sm-sqaure {
    width: 48px;
    height: 32px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 0px;
}

.hero-header {
    background: linear-gradient(rgba(20,20,31,0.7), rgba(20,20,31,0.7)), url(./imagess/accra.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
    transition: 0.5s;
}
.service-item:hover {
    background: var(--secondary);
}
.service-item *{
    transition: 0.5s;
}
.service-item:hover {
    color: var(--light) !important;
}

.destination img{
    transition: 0.5s;
}
.destination a:hover img {
    transform: scale(1.1);
}

.package-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
}
.package-item img {
    transition: 0.5s;
}
.package-item:hover img{
    transform: scale(1.1);
}

.btn {
    font-family: 'Courier New', Courier, monospace;
    font-weight: 600;
    transform: 0.5s;
}
.btn.btn-primary, .btn.btn-secondary {
    color: #ffffff;
}
.btn-sqaure {
    width: 38px;
    height: 38px;
}

.booking {
    background: linear-gradient(rgba(15, 23, 43, 0.7), rgba(15, 23, 43, 0.7)), url(./imagess/star.jpg);
    background-position: center center;
    background-repeat: no-repeat;
     background-size: cover;
}

.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
}
.team-item img {
    transition: 0.5s;
}
.team-item:hover img {
    transform: scale(1.1);
}
.team-item .btn {
    background: #ffffff;
    color: var(--primary);
    border-radius: 20px;
    border-bottom: 1px solid var(--primary);
}
.team-item .btn:hover{
    background: var(--primary)
} 
.cit {
    height: 50vh;
}

.testimonial-carousel::before, .testimonial-carousel::after {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1)0%, rgba(255, 255, 255, 0)100%);
    z-index: 1;
}

.testimonial-carousel span {
    font-size: 50px;
    color: #14141f;
}

@media (min-width: 768px){
    .testimonial-carousel::before{
        width: 200px;
    }
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item .testimonial-item *{
    transition: 0.5s;
}
.testimonial-carousel .owl-item.center .testimonial-item{
    background: var(--primary) !important;
    border-color: var(--primary) !important;
}
.testimonial-carousel .owl-item.center .testimonial-item *{
    color: #ffffff !important;
}


.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-weight: normal;
    border: 1px solid #ffffff;
    border-radius: 35px;
    transition: 0.3s;
}
.footer .btn.btn.btn-social:hover {
    color: var(--primary)
}
.footer .btn.btn-link {
    display: block ;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #ffffff;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: 0.3s;
}
.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: 'Courier New', Courier, monospace;
    font-weight: 900;
    margin-right: 10px;
}
.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(255, 255, 255, .1);
}
.footer .footer-menu a{
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}
.footer .footer-menu a:last-child{
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

