.vicon{
    display: grid;
    box-sizing: border-box;
    row-gap: 0.5rem;
    column-gap: 0.5em;
    height: 100%;
    width: 100vw;
    background-color: black;
    grid-template-rows:repeat(2,250px);
    grid-template-columns:repeat(2,50%);
}
.viitem{
    background-color: rgb(208, 67, 208);
}
.vitem1{
 grid-row-start: 1;
 grid-row-end: 3;
}
.vitem2{
  color: white;
  padding: 1rem;
  box-sizing: border-box;
}
.vitem3{
   color: white;
   padding: 1rem;
   box-sizing: border-box;
}
.vislider{
    width: 100%;
    max-width: 100%;
    height: 500px;
    position: relative;
    overflow: hidden;
}
.vilist{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    display: flex;
    width: max-content;
    transition: 1s;
}
.vilist img{
    width: 100vw;
    max-width: 100vw;
    height: 100%;
    object-fit: cover;
}
.vibuttons{
    position: absolute;
    top: 45%;
    left: 5%;
    width: 90%;
    display: flex;
    justify-content: space-between;
}
.vibuttons button{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    outline: none;
    font-weight:600;
    border: none;
    background-color: #fff5;
}
.vidots{
    position: absolute;
    top: 90%;
    left: 0;
    width: 97%;
    color: #fff;
    padding: 0;
    margin: 0;
    justify-content: center;
    display: flex;
}
.vidots li{
    list-style: none;
    width: 10px;
    height: 10px;
     background-color: #fff;
     margin: 20px;
     border-radius: 20px;
     transition: 1s;
}
.vidots li.viactive{
    background-color: black;
    width: 30px;
}
.is_nav{
    display: flex;
    flex-direction: row;
    padding:0 2rem;
    justify-content: space-between;
    flex-wrap: wrap;
}
.is_nav .is_nav_item{
    padding: 12px 2rem;
    text-decoration: none;
    font-size: 18px;
    background:none;
}
.is_nav .is_nav_item:hover:not(.is_active) {
    color: white;
    background-color: #1d3350 !important;
    border-radius: 5px;
    color: white;
}

.is_active{
    background-color: #1d3350 !important;
    border-radius: 5px;
    color: white!important;
}
.custom_pad a{
    text-align:center;
    margin-bottom:10px;
}