.pages {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.4)), to(rgba(0, 0, 0, 0.7))), url(img/tools.jpg);
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4)), url(img/tools.jpg);
    padding: 40px;
    height: 200px;
    background-size: cover;
    background-position: center;

}

.grid {
    display: block;
    margin: 0 180px 0;
    padding: 0;
    grid-template-columns: 20% 10% 60%;
    
}
.grid div:nth-child(1) {

    background-color: #fff;
    
}
.grid div:nth-child(2) {

    background-color: #fff;
    
}

.grid div:nth-child(3) {

    background-color: #fff;
    margin-top: 40px;
}

.container {
    
    display: inline-grid;
    padding: 50px;
    grid-template-columns: 50% 50%;
}

.a-details {
    margin-right: 50px;
}


.b-details {
    margin-left: 50px;
}

.grid-attraction1 {
    
    display: grid;
    margin: 0 200px 0;
    padding: 0px;
    grid-template-columns: 30% 40% 30%; 
}


.gallery {
    margin: 20px 200px 20px 200px;
    height: 200px;
    margin-bottom: 50px;
}

.gallery img {
    width: 250px;
    height: 100%;
    padding: 5px;
    filter: grayscale(100%);
    transition: 1s;
}

.gallery img:hover {
    filter: grayscale(0);
    transform: scale(1.1);
    
}

.grid-1a {
    padding-left: 100px;
    padding-right: 100px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.grid-1a,
.grid
{
    font-size: 18px;
    word-spacing: 1px;
    text-align: justify;
    letter-spacing: 1px;
    
}

.attraction-text {
    margin-bottom: 0;
    padding-top: 25px;
    text-align: center;
   
}


.team-img {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 100px 100px;
    height: 100%;
    grid-template-columns: 25% 25% 25% 25%;
    
}

.team-img img {
    width: 350px;
    height: 76%;
    padding: 5px;
    filter: grayscale(100%);
    transition: 1s;
}

.team-img img:hover {
    filter: grayscale(0);
    transform: scale(1.1);
    
}

.team-title {
    margin-top: 100px;
    margin-bottom: 0;
}


.iframe {
    border-width: 0px;
}






















