#bvs-main-wrap {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    background-repeat: no-repeat;
    background-size: cover;
}

#bvs-main-wrap .grid-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px; 
    grid-template-areas: 
    "grid-item1 grid-item2"
    "grid-item3 grid-item4";
}

#bvs-main-wrap .slider-wrap, #bvs-main-wrap .grid-wrap {
    width: 50%;
}

#bvs-main-wrap .slider-wrap {
    padding: 40px;
    padding-top: 40px;
}

#bvs-main-wrap .slider-wrap .slide p {
    max-width: 75%;
}

#bvs-main-wrap .slider-grid-inner {
    margin-bottom: 20px;
}

.grid-item1 {
    grid-area: grid-item1;
}

.grid-item2 {
    grid-area: grid-item2;
}

.grid-item3 {
    grid-area: grid-item3;
}

.grid-item4 {
    grid-area: grid-item4;
}


/* From precoded component */
.owl-carousel .slide {
  color: white;
  text-align: left;
  display: flex;
}

.owl-carousel .slide h2 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: white;
}

.owl-carousel .slide p {
  font-size: 1rem;
  line-height: 1.5;
  max-width: 400px;
}

.owl-nav button {
  position: absolute;
  bottom: 30px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.owl-nav .owl-prev {
  left: 50%;
  transform: translateX(-80px);
}

.owl-nav .owl-next {
  right: 50%;
  transform: translateX(80px);
}

.owl-dots {
  position: absolute;
  bottom: 10px;
  width: 100%;
  text-align: center;
}

.owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background: white;
  opacity: 0.7;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}

.owl-dots .owl-dot.active {
  opacity: 1;
}

.owl-dot {
    background: transparent;
    padding: 4px;
}

.owl-dot:hover {
    background: transparent;
}

.owl-dot span {
    width: 8px;
    height: 8px;
    background: white;
    opacity: 0.7;
    border-radius: 50%;
}

.owl-dot.active span {
        width: 10px;
    height: 10px;
    opacity: 1;
}


.owl-prev, .owl-next {
    border-radius: 50%;
    min-height: none;
    padding: 0;
    height: 55px;
    width: 55px;
    background-color: white;
}

.owl-prev {
    margin-right: 15px;
}

.owl-prev.disabled, .owl-next.disabled {
    background-color: transparent;
    border: 2px solid white;
}

.owl-prev svg, .owl-next svg {
    max-width: 30px;
}

.owl-prev.disabled  svg path, .owl-next.disabled svg path {
    stroke: white;
}

.owl-next svg path, .owl-prev svg path {
    stroke: #002c86;
}
/* End of precoded component */

#bvs-main-wrap .grid-wrap .bvs-grid-item {
    padding-left: 40px;
    padding-top: 40px;
    padding-bottom: 40px;
    padding-right: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Link style button - bottom  */
.buttonWithoutBottomLine .btn.btn-style-link {
	border-bottom: none;
	font-size: 16px;
	text-transform:none;
	font-weight: 500;
}

.buttonWithoutBottomLine .fa-chevron-right::before {
  content: "\f054";
}
.buttonWithoutBottomLine .fas {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.slider-wrap-outer {
    width: 100%;
}

.owl-controls-b, .owl-controls-a {
    padding-left: 40px;
    /*transform: translateY(-140px);*/
    z-index: 90;
    width: 200px;
    position: absolute;
    left: 0;
    bottom: 20px;
}

.buttonWithoutBottomLine {
    z-index: 99;
    position: relative;
}

@media(max-width: 1000px){
    .owl-carousel .slide {
        flex-direction: column;
    }
    #bvs-main-wrap .slider-wrap, #bvs-main-wrap .grid-wrap {
        width: 100%;
    }
    .owl-carousel .slide p {
        max-width: 100%;
    }
    #bvs-main-wrap .slider-wrap {
        padding: 20px 0px;
    }
    
    .owl-controls-b, .owl-controls-a {
        position: static;
        padding-bottom: 10px;
    }
}

@media(max-width: 600px) {
    #bvs-main-wrap {
        margin-bottom: 0px;
    }
    .owl-controls-b, .owl-controls-a {
        padding-left: 0px;
        transform: translateY(0px);
        position: static;
        padding-bottom: 10px;
    }

    #bvs-main-wrap .grid-wrap {
      display: grid;
      grid-template-columns: repeat(1, 1fr);
      grid-template-rows: repeat(1, 1fr);
      grid-column-gap: 5px;
      grid-row-gap: 5px;
      grid-template-areas: 
      "grid-item1"
      "grid-item2"
      "grid-item4"
      "grid-item3";
    }
    
}