@import url('https://fonts.googleapis.com/css?family=Rajdhani:300,400,500,600,700&display=swap');
h1, h2, h3, h4, h5, h6, p, a, span, input, ul, li, select{
	margin: 0;
	padding: 0;
	font-family:'Rajdhani', sans-serif;

}

*{
    transition: all 0.2s ease-in-out;
}

.container {
    max-width: 99%;
    opacity:1;
}


.top_bar {
    background:#fff;
    opacity:1;
}
.top_bar a {

    color: #000;
    padding: 20px 0 20px;
    display: block;
    text-decoration: none;

}

.row {
    align-items: center;

}
.top_bar a i, .top_bar a img {
    color: #000;
    margin-right: 8px;

}
.top_bar ul li {
    list-style: none;
    display: inline-block;
    margin: 0 0 0 40px;

}


.Top_Navigation {
    background:#fff;
    margin-top: -10px;
    min-height: 100px;
    opacity: 1;
}
.Top_Navigation .row, {
    align-items: center;

}
.Top_Navigation ul li {
    list-style: none;
    display: inline-block;

}
.Top_Navigation ul li a {
    padding: 30px 20px;
    display: block;
    font-size: 20px;
    color: #000;
    text-decoration: none;
    position: relative;
}



.Top_Navigation ul li a:before {
    content: "";
    display: block;
    background: #5a005a;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;


}
.Top_Navigation ul li a:hover {
    background:#c2acc0;
    color: #4b0082;

}
/*End header css*/
/*Start main section css*/

.row2 {
    align-items: center;
    padding:10px;
}

.worklist ul li{
    list-style: none;
    display: inline-block;
    position:relative;
    margin-right: 10px; 
    margin-left:20px;


}

.worklist ul li a img{
    border:none;
    height: 380px; 

    position: relative;
    display: block;
}


.worklist ul li a img:hover {
    box-shadow: 0px 0px 10px 1px #c2acc0;
}



.bottom_bar {
    text-align: center;
    color: #000;
    font-weight: 600;
}



.about h2{
    color: #000;
    font-size:30px;
    line-height:40px;
    font-weight: 600;
    margin-bottom: 10px;
}

.about p{
    color: #000;
    font-size: 20px;
    line-height: 32px;
    font-weight: 400;
    margin-bottom: 20px;
}

.about h3{
    color: #000;
    font-size: 15px;
    line-height: 32px;
    font-weight: 400;
    margin-bottom: 20px;
}
.about h4{
    color: #000;
    font-size: 20px;
    line-height: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}
.about h5{
    color: #000;
    font-size: 15px;
    line-height: 20px;
    font-weight: 400;
    margin-bottom: 10px;
}

.img{
    float: right;
    padding:0px 0 0 0;
}

.testimonial {
    z-index: 9;
    max-width: 100%;
    padding: 10px 8px;
    border: 1px solid #000;

}

.image-bot ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.image-bot li{
    padding: 15px;
    float: left;
    flex: 0 0 25;
    max-width: 100%;
    list-style: none;
    position: relative;

}

.image-bot figure {
    position: relative;
    margin: 0;
}
.figures li{
    list-style:none;
    padding: 0 0px 0 0px;
}
.figures {
    display: flex;
    justify-content:space-between;

}
.figures ul {
    max-width: 50%;
    flex: 0 0 50%;
}
.image-grid {
    --gap: 16px;
    --num-cols: 4;
    --row-height: 300px;

    box-sizing: border-box;
    padding: var(--gap);

    display: grid;
    grid-template-columns: repeat(var(--num-cols), 1fr);
    grid-auto-rows: var(--row-height);
    gap: var(--gap);
}

.image-grid>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-grid-col-2 {
    grid-column: span 2;
}

.image-grid-row-2 {
    grid-row: span 2;
}

/* Anything udner 1024px */
@media screen and (max-width: 1024px) {
    .image-grid {
        --num-cols: 2;
        --row-height: 200px;
    }
}
